.field-guide-page .top {
  position: sticky;
}

.fg-hero {
  padding-top: 18px;
}

.fg-hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 14px;
  align-items: stretch;
}

.fg-hero__copy {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 94, 127, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 52, 97, 0.18), rgba(255, 255, 255, 0.03)),
    radial-gradient(740px 260px at 6% -6%, rgba(255, 108, 141, 0.24), transparent 60%);
  padding: 22px;
  box-shadow: var(--shadow-hard);
}

.fg-hero__copy .hero__title {
  margin: 6px 0 10px;
  font-size: clamp(34px, 5vw, 66px);
  line-height: 1.02;
}

.fg-hero__lede {
  max-width: 68ch;
}

.fg-hero__panel {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(247, 251, 255, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03)),
    radial-gradient(420px 180px at 100% 0%, rgba(255, 68, 109, 0.2), transparent 62%);
  padding: 20px 18px;
  box-shadow: var(--shadow-soft);
}

.fg-hero__stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.fg-hero__stat {
  border-radius: 14px;
  border: 1px solid rgba(247, 251, 255, 0.16);
  padding: 10px;
  background: rgba(4, 6, 10, 0.38);
}

.fg-hero__stat-label {
  margin: 0;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(247, 251, 255, 0.7);
}

.fg-hero__stat-value {
  margin: 4px 0 0;
  font-family: "Fraunces", ui-serif, Georgia, serif;
  font-size: 22px;
  letter-spacing: -0.01em;
}

.fg-pitch {
  margin-top: 12px;
  color: var(--fg1);
}

.fg-section {
  padding-top: 20px;
}

.fg-section__head {
  max-width: 74ch;
}

.fg-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.fg-card {
  position: relative;
  border-radius: var(--radius);
  border: 1px solid rgba(247, 251, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
    radial-gradient(460px 180px at 100% 0%, rgba(255, 56, 95, 0.14), transparent 66%);
  padding: 16px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.27);
}

.fg-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 112, 143, 0.88), transparent);
  opacity: 0.7;
}

.fg-card h3 {
  margin: 0;
  font-family: "Fraunces", ui-serif, Georgia, serif;
  font-size: 26px;
  line-height: 1.06;
}

.fg-card p {
  margin: 8px 0 0;
  color: var(--fg1);
  font-size: 15px;
}

.fg-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.fg-step {
  border-radius: 16px;
  border: 1px solid rgba(247, 251, 255, 0.14);
  background: rgba(5, 7, 12, 0.44);
  padding: 14px 12px;
}

.fg-step__idx {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(255, 84, 120, 0.66);
  background: linear-gradient(180deg, rgba(255, 82, 124, 0.34), rgba(122, 12, 35, 0.52));
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.04em;
}

.fg-step h3 {
  margin: 10px 0 0;
  font-family: "Fraunces", ui-serif, Georgia, serif;
  font-size: 24px;
  line-height: 1.08;
}

.fg-step p {
  margin: 8px 0 0;
  color: var(--fg1);
  font-size: 14px;
}

.fg-order-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.fg-footnote {
  margin-top: 10px;
  color: rgba(247, 251, 255, 0.68);
  font-size: 13px;
}

@media (max-width: 1000px) {
  .fg-hero__grid,
  .fg-steps {
    grid-template-columns: 1fr;
  }

  .fg-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .fg-hero__copy {
    padding: 18px;
  }

  .fg-hero__stat-grid {
    grid-template-columns: 1fr;
  }
}
