:root {
  --cream: #fff4d6;
  --cream-2: #fff8e8;
  --green: #073d20;
  --green-2: #0e5a2d;
  --orange: #e84515;
  --gold: #ff c94a;
  --shadow: 0 18px 60px rgba(20, 40, 20, 0.18);
  --radius: 28px;
  --hero-display-width: 83%;
  --hero-max-width: 1588.4px; /* 95% of the 1672px desktop mockup width */
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 14% 4%, rgba(255, 210, 91, 0.35), transparent 34rem),
    radial-gradient(circle at 88% 12%, rgba(232, 69, 21, 0.08), transparent 30rem),
    linear-gradient(180deg, var(--cream), var(--cream-2));
  color: var(--green);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 999;
  transform: translateY(-160%);
  background: var(--green);
  color: white;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.hero-stage {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: clamp(0.75rem, 2vw, 2rem);
}

.hero-map,
.mobile-map {
  position: relative;
  width: min(var(--hero-display-width), var(--hero-max-width));
  border-radius: clamp(18px, 2vw, 34px);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--cream);
  isolation: isolate;
}

.hero-map img,
.mobile-map img {
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
  -webkit-user-drag: none;
}

.hotspot {
  position: absolute;
  z-index: 2;
  display: block;
  text-decoration: none;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(232, 69, 21, 0.24);
}

.hotspot:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

/* Exact clickable zones for the supplied 2048 × 1143 desktop image. */
.logo-hotspot {
  left: 2.6%;
  top: 2.1%;
  width: 18.6%;
  height: 13.6%;
}

.nav-overview {
  left: 27.0%;
  top: 3.8%;
  width: 8.0%;
  height: 6.9%;
}

.nav-how {
  left: 36.2%;
  top: 3.8%;
  width: 10.2%;
  height: 6.9%;
}

.nav-schedule {
  left: 47.4%;
  top: 3.8%;
  width: 8.6%;
  height: 6.9%;
}

.nav-players {
  left: 56.5%;
  top: 3.8%;
  width: 7.8%;
  height: 6.9%;
}

.nav-prize {
  left: 64.6%;
  top: 3.8%;
  width: 6.2%;
  height: 6.9%;
}

.nav-faq {
  left: 70.7%;
  top: 3.8%;
  width: 5.6%;
  height: 6.9%;
}

.button-how {
  left: 6.6%;
  top: 70.6%;
  width: 16.5%;
  height: 6.6%;
}

.button-schedule {
  left: 24.6%;
  top: 70.6%;
  width: 16.4%;
  height: 6.6%;
}

.prize-hotspot {
  left: 81.6%;
  top: 52.8%;
  width: 18.0%;
  height: 31%;
}

/* Hover effects layered over the image. */
.nav-hotspot::after {
  content: "";
  position: absolute;
  left: 11%;
  right: 11%;
  bottom: 18%;
  height: clamp(2px, 0.32vw, 5px);
  border-radius: 999px;
  background: var(--orange);
  opacity: 0;
  transform: scaleX(0.2);
  transform-origin: left center;
  transition: opacity 160ms ease, transform 200ms ease;
}


.nav-how::after {
  left: 5%;
  right: 14%;
}


.nav-schedule::after {
  left: 6%;
  right: 16%;
}


.nav-players::after {
  left: 4%;
  right: 18%;
}

.nav-prize::after {
  left: 0%;
  right: 16%;
}

.nav-faq::after {
  left: 6%;
  right: 22%;
}

.nav-hotspot:hover::after,
.nav-hotspot:focus-visible::after,
.nav-hotspot.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.logo-hotspot::after,
.pill-hotspot::after,
.prize-hotspot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 170ms ease, transform 170ms ease, box-shadow 170ms ease, background 170ms ease;
  pointer-events: none;
}

.logo-hotspot::after {
  border-radius: 24px;
}

.logo-hotspot:hover::after,
.logo-hotspot:focus-visible::after {
  opacity: 1;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 0 35px rgba(255, 201, 74, 0.35);
}

.pill-hotspot {
  border-radius: 999px;
}

.pill-hotspot::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 999px;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.65) 45%, transparent 70%);
  opacity: 0;
  transform: translateX(-70%);
  transition: opacity 160ms ease, transform 450ms ease;
  pointer-events: none;
}

.pill-hotspot:hover::before,
.pill-hotspot:focus-visible::before {
  opacity: 1;
  transform: translateX(70%);
}

.pill-hotspot:hover::after,
.pill-hotspot:focus-visible::after {
  opacity: 1;
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.18);
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.78),
    0 0 22px rgba(232, 69, 21, 0.42),
    0 12px 24px rgba(47, 28, 0, 0.18);
}

.button-schedule:hover::after,
.button-schedule:focus-visible::after {
  box-shadow:
    0 0 0 2px rgba(7, 61, 32, 0.55),
    0 0 24px rgba(255, 201, 74, 0.42),
    0 12px 24px rgba(47, 28, 0, 0.15);
}

.prize-hotspot {
  border-radius: 34px;
}

.prize-hotspot:hover::after,
.prize-hotspot:focus-visible::after {
  opacity: 1;
  transform: scale(1.02);
  background: rgba(255, 201, 74, 0.12);
  box-shadow:
    0 0 0 3px rgba(255, 201, 74, 0.55),
    0 0 34px rgba(255, 201, 74, 0.42);
}

.hotspot.is-pressed::after {
  opacity: 1;
  transform: scale(0.985);
}

/* Debug mode: add ?debug=1 to URL or press D. */
body.debug-hotspots .hotspot {
  background: rgba(232, 69, 21, 0.2);
  outline: 2px solid rgba(232, 69, 21, 0.85);
}

body.debug-hotspots .hotspot::before {
  content: attr(data-label);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 4;
  max-width: 18rem;
  padding: 0.18rem 0.35rem;
  border-radius: 5px;
  background: rgba(7, 61, 32, 0.92);
  color: white;
  font-size: 11px;
  line-height: 1.1;
  transform: none;
  opacity: 1;
}





.how-section h1 {
  max-width: 900px;
}

.how-intro {
  max-width: 900px;
  margin: 0 0 1.1rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(7, 61, 32, 0.8);
}

.how-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0 0 1.6rem;
}

.how-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 2.2rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(7, 61, 32, 0.12);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--green);
}

.how-stack {
  display: grid;
  gap: 1rem;
}

.how-block {
  padding: 1.4rem 1.5rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(7, 61, 32, 0.12);
}

.how-block h2 {
  margin: 0 0 0.8rem;
  font-size: 1.45rem;
  line-height: 1.15;
  color: var(--green);
}

.how-block h3 {
  margin: 0 0 0.3rem;
  font-size: 1.1rem;
  color: var(--green);
}

.how-block p,
.how-block li {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(7, 61, 32, 0.82);
}

.how-block ul,
.how-block ol {
  margin: 0.4rem 0 0;
  padding-left: 1.2rem;
}

.how-example,
.how-note,
.how-reminder {
  margin-top: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  background: rgba(255, 244, 214, 0.72);
  border: 1px solid rgba(7, 61, 32, 0.1);
  line-height: 1.6;
  color: rgba(7, 61, 32, 0.84);
}

.how-two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.how-two-col > div {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(7, 61, 32, 0.1);
}

.mini-note {
  margin: 0 0 0.7rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(7, 61, 32, 0.7);
}

.pair-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pair-list li {
  padding: 0.45rem 0;
  border-top: 1px solid rgba(7, 61, 32, 0.08);
}

.pair-list li:first-child {
  border-top: 0;
}

.tie-list {
  margin-bottom: 1rem;
}

@media (max-width: 900px) {
  .how-two-col {
    grid-template-columns: 1fr;
  }
}

.mobile-nav {
  display: none;
}

.content-section {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto 2rem;
  padding: clamp(2rem, 4vw, 4.5rem);
  border: 1px solid rgba(7, 61, 32, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 12px 36px rgba(7, 61, 32, 0.09);
  scroll-margin-top: 1rem;
}

.eyebrow {
  margin: 0 0 0.6rem;
  color: var(--orange);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.content-section h1 {
  max-width: 780px;
  margin: 0 0 1.3rem;
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.info-card {
  min-height: 210px;
  padding: 1.2rem;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,244,214,.72));
  border: 1px solid rgba(7, 61, 32, 0.12);
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 3.1rem;
  height: 3.1rem;
  margin-bottom: 0.8rem;
  border-radius: 50%;
  background: rgba(232, 69, 21, 0.1);
  font-size: 1.55rem;
}

.info-card h2 {
  margin: 0 0 0.55rem;
  font-size: 1.1rem;
}

.info-card p,
.big-copy,
.faq-section p {
  margin: 0;
  color: rgba(7, 61, 32, 0.76);
  line-height: 1.55;
}

.schedule-card {
  display: grid;
  gap: 0.75rem;
  max-width: 720px;
  margin-bottom: 1.2rem;
}

.schedule-row {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: white;
  border: 1px solid rgba(7, 61, 32, 0.12);
}

.schedule-row strong {
  color: var(--orange);
}

.real-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.25rem;
  padding: 0 1.4rem;
  border-radius: 999px;
  background: var(--green);
  color: white;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(7, 61, 32, 0.18);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.real-button:hover,
.real-button:focus-visible {
  transform: translateY(-2px);
  background: var(--green-2);
  box-shadow: 0 16px 32px rgba(7, 61, 32, 0.24);
}

.faq-section details {
  max-width: 760px;
  margin: 0 0 0.75rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: white;
  border: 1px solid rgba(7, 61, 32, 0.12);
}

.faq-section summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-section details p {
  padding-top: 0.8rem;
}

.reveal-section {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Expanded How It Works section */
.how-section {
  overflow: hidden;
}

.how-lede {
  max-width: 860px;
  margin-bottom: 1.35rem;
  font-size: clamp(1rem, 1.25vw, 1.18rem);
}

.how-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0 0 1.35rem;
}

.how-pill-row span {
  display: inline-flex;
  align-items: center;
  min-height: 2.35rem;
  padding: 0 0.85rem;
  border: 1px solid rgba(7, 61, 32, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 900;
}

.how-cards {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-bottom: 1.2rem;
}

.score-example,
.playoff-panel,
.tiebreaker-card,
.reminder-banner {
  border: 1px solid rgba(7, 61, 32, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 10px 28px rgba(7, 61, 32, 0.08);
}

.score-example {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.4fr);
  gap: 1.25rem;
  align-items: center;
  margin: 0 0 1rem;
  padding: 1.35rem;
}

.score-example h2,
.playoff-copy h2,
.tiebreaker-card h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.1vw, 2.2rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.score-example p:last-child,
.playoff-copy p,
.bracket-note,
.tiebreaker-card li {
  color: rgba(7, 61, 32, 0.78);
  line-height: 1.55;
}

.score-example p:last-child {
  margin: 0;
}

.score-example strong,
.bracket-note strong {
  color: var(--orange);
}

.mini-eyebrow {
  margin-bottom: 0.4rem;
  font-size: 0.78rem;
}

.playoff-panel {
  display: grid;
  gap: 1.1rem;
  margin: 0 0 1rem;
  padding: 1.35rem;
}

.playoff-copy {
  max-width: 850px;
}

.playoff-copy p {
  margin: 0.75rem 0 0;
}

.tier-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.tier-card {
  padding: 1rem;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,244,214,.72));
  border: 1px solid rgba(7, 61, 32, 0.12);
}

.tier-card h3 {
  margin: 0 0 0.3rem;
  color: var(--green);
  font-size: 1.22rem;
}

.tier-card p {
  margin: 0 0 0.85rem;
  color: rgba(7, 61, 32, 0.68);
  font-weight: 800;
}

.mini-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 14px;
  font-size: 0.95rem;
}

.mini-table tr + tr {
  border-top: 1px solid rgba(7, 61, 32, 0.1);
}

.mini-table th,
.mini-table td {
  padding: 0.68rem 0.75rem;
  text-align: left;
  background: rgba(255, 255, 255, 0.76);
}

.mini-table th {
  width: 36%;
  color: var(--orange);
  font-weight: 900;
}

.mini-table td {
  color: var(--green);
  font-weight: 900;
}

.bracket-note {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 201, 74, 0.16);
}

.tiebreaker-card {
  display: grid;
  grid-template-columns: minmax(230px, 0.8fr) minmax(0, 1.2fr);
  gap: 1.2rem;
  margin: 0 0 1rem;
  padding: 1.35rem;
}

.tiebreaker-card ol {
  margin: 0;
  padding-left: 1.25rem;
}

.tiebreaker-card li + li {
  margin-top: 0.35rem;
}

.reminder-banner {
  margin: 0;
  padding: 1rem 1.15rem;
  background: linear-gradient(90deg, rgba(7, 61, 32, 0.94), rgba(14, 90, 45, 0.92));
  color: white;
  font-weight: 800;
  line-height: 1.5;
}

.reminder-banner strong {
  color: var(--gold);
}

@media (max-width: 900px) {
  .hero-stage {
    min-height: auto;
    padding: 0.75rem;
  }

  .hero-map {
    border-radius: 22px;
  }

  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mobile-nav {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    gap: 0.45rem;
    overflow-x: auto;
    padding: 0.65rem 0.75rem;
    background: rgba(255, 244, 214, 0.9);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(7, 61, 32, 0.12);
  }

  .mobile-nav a {
    flex: 0 0 auto;
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.74);
    color: var(--green);
    font-size: 0.88rem;
    font-weight: 900;
    text-decoration: none;
  }

  .content-section {
    width: min(100% - 1rem, 760px);
    padding: 1.35rem;
    border-radius: 22px;
    scroll-margin-top: 4.5rem;
  }
}

@media (max-width: 640px) {
  body {
    background: var(--cream);
  }

  .hero-stage {
    padding: 0;
  }

  .hero-map,
  .mobile-map {
    width: 100%;
    max-width: none;
    border-radius: 0 0 24px 24px;
    box-shadow: 0 12px 28px rgba(7, 61, 32, 0.14);
  }

  /* Mobile users do not get useful hover. Hide the desktop image hotspots and use the sticky HTML nav/details below. */
  .hero-map .hotspot {
    display: none;
  }

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

  .info-card {
    min-height: auto;
  }

  .schedule-row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
}

@media (max-width: 1100px) {
  .how-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .how-cards .info-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .score-example,
  .tiebreaker-card {
    grid-template-columns: 1fr;
  }

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

  .how-pill-row span {
    font-size: 0.84rem;
  }
}


/* Full Schedule section */
.schedule-section h1 {
  max-width: 900px;
}

.schedule-intro {
  max-width: 850px;
  margin: 0 0 1.1rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(7, 61, 32, 0.8);
}

.score-entry-callout {
  display: flex;
  justify-content: center;
  margin: -0.25rem 0 1.5rem;
}

.score-entry-callout a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  color: white;
  background: linear-gradient(180deg, #0e5a2d, #073d20);
  box-shadow: 0 14px 28px rgba(7, 61, 32, 0.2);
  font-weight: 900;
  text-decoration: none;
}

.schedule-board {
  display: grid;
  gap: 1rem;
}

.event-row {
  display: grid;
  grid-template-columns: 145px minmax(0, 1fr);
  gap: 1rem;
  padding: 1.15rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(7, 61, 32, 0.12);
}

.event-meta {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.event-time {
  font-size: 1rem;
  font-weight: 900;
  color: var(--orange);
}

.event-round {
  display: inline-flex;
  width: fit-content;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 244, 214, 0.86);
  border: 1px solid rgba(7, 61, 32, 0.1);
  font-size: 0.82rem;
  font-weight: 900;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.court-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.court-box {
  min-height: 116px;
  padding: 0.9rem;
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(7, 61, 32, 0.1);
}

.court-box h3 {
  margin: 0 0 0.45rem;
  font-size: 0.78rem;
  color: rgba(7, 61, 32, 0.62);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.court-box p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.45;
  font-weight: 760;
  color: var(--green);
}

.court-box.muted {
  background: rgba(255, 244, 214, 0.5);
}

.court-box.muted p {
  color: rgba(7, 61, 32, 0.62);
}

.sitout {
  grid-column: 2;
  margin: 0;
  padding: 0.75rem 0.9rem;
  border-radius: 15px;
  background: rgba(255, 244, 214, 0.68);
  border: 1px solid rgba(7, 61, 32, 0.08);
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(7, 61, 32, 0.78);
}

.sitout strong {
  color: var(--orange);
}

.event-break {
  background: rgba(255, 255, 255, 0.82);
}

.playoff-row {
  border-color: rgba(232, 69, 21, 0.22);
}

.playoff-row .event-round {
  background: rgba(232, 69, 21, 0.08);
  color: var(--orange);
}

@media (max-width: 900px) {
  .event-row {
    grid-template-columns: 1fr;
  }

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

  .sitout {
    grid-column: auto;
  }

  .court-box {
    min-height: auto;
  }
}


/* Schedule matchup formatting */
.matchup {
  display: grid;
  gap: 0.22rem;
  margin: 0;
  line-height: 1.25;
}

.matchup .team {
  display: block;
  color: var(--green);
  font-size: 1.02rem;
  font-weight: 900;
}

.matchup .vs {
  display: block;
  width: fit-content;
  margin: 0.05rem 0;
  color: rgba(7, 61, 32, 0.52);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.match-label {
  display: block;
  margin-bottom: 0.3rem;
  color: rgba(232, 69, 21, 0.78);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.court-note {
  margin: 0;
  font-size: 1rem;
  line-height: 1.45;
  font-weight: 800;
  color: var(--green);
}

.playoff-match .team {
  font-size: 0.98rem;
}

/* Prize section */
.prize-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 1.15fr);
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: center;
}

.prize-copy {
  display: grid;
  gap: 0.9rem;
}

.prize-copy p {
  margin: 0;
  color: rgba(7, 61, 32, 0.78);
  font-size: 1.05rem;
  line-height: 1.65;
}

.prize-image-card {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(7, 61, 32, 0.12);
  box-shadow: 0 12px 32px rgba(7, 61, 32, 0.12);
}

.prize-image-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.prize-image-card figcaption {
  padding: 0.85rem 1rem 1rem;
  color: rgba(7, 61, 32, 0.72);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.4;
}

/* FAQ section */
.faq-section {
  display: grid;
  gap: 0.75rem;
}

.faq-section h1,
.faq-section .eyebrow {
  margin-bottom: 0;
}

.faq-section details {
  max-width: none;
}

.faq-section summary {
  list-style-position: outside;
  line-height: 1.35;
}

@media (max-width: 900px) {
  .prize-layout {
    grid-template-columns: 1fr;
  }
}



/* Final FAQ spacing polish */
.faq-section {
  padding-top: clamp(2.75rem, 4.5vw, 4.75rem);
}

.faq-section .eyebrow {
  margin-bottom: 1rem;
}

.faq-section h1 {
  margin-bottom: 0.95rem;
  line-height: 1.02;
}

.faq-intro {
  max-width: 900px;
  margin-bottom: 2rem;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.55;
}

.faq-groups {
  gap: 1.55rem;
}

.faq-group {
  padding: clamp(1.35rem, 2.4vw, 2rem);
}

.faq-group h2 {
  margin-bottom: 1.15rem;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.faq-section details {
  margin-bottom: 1rem;
}

.faq-section summary {
  padding: 1.3rem 1.55rem;
}

.faq-answer {
  padding: 1.2rem 1.55rem 1.45rem;
}

@media (max-width: 760px) {
  .faq-section {
    padding-top: 2.25rem;
  }

  .faq-intro {
    margin-bottom: 1.35rem;
  }

  .faq-section summary {
    padding: 1.1rem 1.15rem;
  }

  .faq-answer {
    padding: 1rem 1.15rem 1.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
    scroll-behavior: auto !important;
  }
}


/* Section navigation */
.mobile-nav {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  overflow-x: auto;
  padding: 0.65rem 0.75rem;
  background: rgba(255, 244, 214, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(7, 61, 32, 0.12);
}

.mobile-nav a {
  flex: 0 0 auto;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--green);
  font-size: 0.88rem;
  font-weight: 900;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.mobile-nav a:hover,
.mobile-nav a:focus-visible,
.mobile-nav a.is-active {
  background: var(--green);
  color: white;
  transform: translateY(-1px);
}

/* Players / Roster section */

/* Players is a tall section, so do not depend on a percentage-based reveal threshold. */
.players-section.reveal-section {
  opacity: 1;
  transform: none;
}

.players-section h1 {
  max-width: 900px;
}

.players-intro,
.personal-intro {
  max-width: 850px;
  margin: 0 0 1.1rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(7, 61, 32, 0.8);
}

.roster-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 0 0 1.6rem;
}

.roster-group {
  padding: 1.25rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(7, 61, 32, 0.12);
}

.roster-group h2 {
  margin: 0 0 0.85rem;
  font-size: 1.35rem;
  line-height: 1.15;
  color: var(--green);
}

.roster-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.roster-links a {
  display: inline-flex;
  align-items: center;
  min-height: 2.35rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 244, 214, 0.72);
  border: 1px solid rgba(7, 61, 32, 0.12);
  color: var(--green);
  font-weight: 900;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.roster-links a:hover,
.roster-links a:focus-visible {
  transform: translateY(-2px);
  background: white;
  box-shadow: 0 10px 22px rgba(7, 61, 32, 0.1);
}

.personal-schedules {
  margin-top: 1.6rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(7, 61, 32, 0.12);
}

.personal-schedules > h2 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.55rem, 2.2vw, 2.25rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.player-card-grid {
  display: grid;
  gap: 1rem;
}

.player-card {
  scroll-margin-top: 5.2rem;
  padding: 1.2rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(7, 61, 32, 0.12);
}

.player-card-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
  margin-bottom: 0.65rem;
}

.player-label {
  margin: 0 0 0.2rem;
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.player-card h3 {
  margin: 0;
  color: var(--green);
  font-size: 1.55rem;
  line-height: 1.1;
}

.back-to-roster {
  flex: 0 0 auto;
  color: rgba(7, 61, 32, 0.72);
  font-size: 0.88rem;
  font-weight: 900;
  text-decoration: none;
}

.back-to-roster:hover,
.back-to-roster:focus-visible {
  color: var(--orange);
}

.player-summary {
  margin: 0 0 0.9rem;
  color: rgba(7, 61, 32, 0.72);
  font-weight: 800;
}

.personal-list {
  display: grid;
  gap: 0.55rem;
}

.personal-row {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 0.85rem;
  align-items: start;
  padding: 0.85rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(7, 61, 32, 0.08);
}

.personal-row.rest-row {
  background: rgba(255, 244, 214, 0.55);
}

.round-meta {
  display: grid;
  gap: 0.25rem;
}

.round-meta span {
  width: fit-content;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: rgba(232, 69, 21, 0.08);
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.round-meta time {
  color: rgba(7, 61, 32, 0.68);
  font-size: 0.9rem;
  font-weight: 800;
}

.round-detail strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--green);
  font-size: 1.02rem;
}

.round-detail p {
  margin: 0.12rem 0 0;
  color: rgba(7, 61, 32, 0.78);
  line-height: 1.45;
}

.round-detail p span {
  color: rgba(7, 61, 32, 0.58);
  font-weight: 900;
}

@media (max-width: 900px) {
  .roster-board {
    grid-template-columns: 1fr;
  }

  .player-card {
    scroll-margin-top: 4.8rem;
  }

  .personal-row {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }
}

@media (max-width: 640px) {
  .player-card-header {
    display: grid;
  }

  .mobile-nav {
    justify-content: flex-start;
  }
}

/* FAQ refresh: grouped questions, more padding, better readability */
.faq-section {
  display: block;
}

.faq-section h1 {
  max-width: 900px;
}

.faq-intro {
  max-width: 820px;
  margin: 0 0 1.35rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(7, 61, 32, 0.8);
}

.faq-groups {
  display: grid;
  gap: 1.25rem;
}

.faq-group {
  padding: 1.25rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(7, 61, 32, 0.12);
}

.faq-group h2 {
  margin: 0 0 0.9rem;
  font-size: 1.25rem;
  line-height: 1.15;
  color: var(--green);
}

.faq-section details {
  max-width: none;
  margin: 0 0 0.8rem;
  padding: 0;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(7, 61, 32, 0.12);
}

.faq-section details:last-child {
  margin-bottom: 0;
}

.faq-section summary {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 1.1rem 1.3rem;
  cursor: pointer;
  list-style: none;
  font-size: 1.04rem;
  font-weight: 900;
  line-height: 1.35;
  color: var(--green);
}

.faq-section summary::-webkit-details-marker {
  display: none;
}

.faq-section summary::before {
  content: "";
  width: 0;
  height: 0;
  flex: 0 0 auto;
  border-top: 0.38rem solid transparent;
  border-bottom: 0.38rem solid transparent;
  border-left: 0.5rem solid var(--green);
  transform: translateY(1px);
  transition: transform 160ms ease;
}

.faq-section details[open] summary::before {
  transform: rotate(90deg) translateX(1px);
}

.faq-section details[open] summary {
  border-bottom: 1px solid rgba(7, 61, 32, 0.09);
}

.faq-answer {
  padding: 1.05rem 1.3rem 1.25rem;
}

.faq-answer p,
.faq-answer li {
  margin: 0;
  color: rgba(7, 61, 32, 0.8);
  font-size: 1rem;
  line-height: 1.65;
}

.faq-answer p + p,
.faq-answer p + ul,
.faq-answer p + ol,
.faq-answer ul + p,
.faq-answer ol + p,
.faq-example + p {
  margin-top: 0.8rem;
}

.faq-answer ul,
.faq-answer ol {
  margin: 0.65rem 0 0;
  padding-left: 1.25rem;
}

.faq-answer strong {
  color: var(--green);
}

.faq-example {
  margin: 0.95rem 0 0;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  background: rgba(255, 244, 214, 0.74);
  border: 1px solid rgba(7, 61, 32, 0.1);
  color: rgba(7, 61, 32, 0.84);
  line-height: 1.6;
}

.faq-two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 0.95rem;
}

.faq-two-col > div {
  padding: 0.95rem;
  border-radius: 16px;
  background: rgba(255, 244, 214, 0.42);
  border: 1px solid rgba(7, 61, 32, 0.1);
}

.faq-two-col h3 {
  margin: 0 0 0.6rem;
  font-size: 1rem;
  line-height: 1.2;
  color: var(--green);
}

.compact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.compact-list li {
  padding: 0.42rem 0;
  border-top: 1px solid rgba(7, 61, 32, 0.08);
}

.compact-list li:first-child {
  border-top: 0;
  padding-top: 0;
}

.seed-example {
  display: grid;
  margin-top: 0.8rem;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(7, 61, 32, 0.1);
  background: rgba(255, 255, 255, 0.68);
}

.seed-row {
  display: grid;
  grid-template-columns: 0.7fr 1.5fr 0.55fr 0.7fr;
  gap: 0.5rem;
  align-items: center;
  padding: 0.7rem 0.8rem;
  border-top: 1px solid rgba(7, 61, 32, 0.08);
}

.seed-row:first-child {
  border-top: 0;
}

.seed-head {
  background: rgba(7, 61, 32, 0.08);
  color: var(--green);
  font-size: 0.83rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.seed-row span {
  min-width: 0;
  font-size: 0.95rem;
  line-height: 1.35;
  color: rgba(7, 61, 32, 0.84);
}

.seed-row:not(.seed-head) span:first-child,
.seed-row:not(.seed-head) span:last-child {
  font-weight: 900;
  color: var(--green);
}

@media (max-width: 760px) {
  .faq-group {
    padding: 0.85rem;
    border-radius: 20px;
  }

  .faq-section summary {
    padding: 1rem;
    font-size: 0.98rem;
  }

  .faq-answer {
    padding: 0.95rem 1rem 1.1rem;
  }

  .faq-two-col {
    grid-template-columns: 1fr;
  }

  .seed-row {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .seed-head {
    display: none;
  }

  .seed-row span {
    font-size: 0.94rem;
  }
}


/* Mobile image-map hero + image-based slide-out menu */
button.hotspot {
  appearance: none;
  border: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  background: transparent;
}

.mobile-hero-map {
  display: none;
}

.mobile-map-hotspot::after,
.mobile-menu-hotspot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.mobile-map-hotspot:hover::after,
.mobile-map-hotspot:focus-visible::after,
.mobile-map-hotspot.is-pressed::after,
.mobile-menu-hotspot:hover::after,
.mobile-menu-hotspot:focus-visible::after,
.mobile-menu-hotspot.is-pressed::after {
  opacity: 1;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 0 0 2px rgba(255, 201, 74, 0.45), 0 0 24px rgba(232, 69, 21, 0.26);
}

.mobile-hamburger-hotspot {
  left: 82.5%;
  top: 6.15%;
  width: 12.5%;
  height: 6.6%;
  border-radius: 18px;
}

.mobile-button-how {
  left: 9.7%;
  top: 56.3%;
  width: 82.7%;
  height: 6.7%;
  border-radius: 999px;
}

.mobile-button-schedule {
  left: 9.7%;
  top: 63.7%;
  width: 82.7%;
  height: 6.7%;
  border-radius: 999px;
}

body.mobile-menu-open {
  overflow: hidden;
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background: rgba(7, 61, 32, 0.24);
}

.mobile-menu-overlay[hidden] {
  display: none;
}

.mobile-menu-map {
  position: relative;
  width: min(100vw, 520px);
  height: 100svh;
  overflow: hidden;
  background: var(--cream);
  box-shadow: 0 24px 80px rgba(7, 61, 32, 0.24);
}

.mobile-menu-map img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: fill;
  user-select: none;
  -webkit-user-drag: none;
}

.mobile-menu-hotspot {
  border-radius: 18px;
}

.mobile-menu-close {
  left: 88.8%;
  top: 1.25%;
  width: 9.5%;
  height: 6.1%;
}

.mobile-menu-how,
.mobile-menu-players,
.mobile-menu-schedule,
.mobile-menu-prize,
.mobile-menu-faq {
  left: 58.5%;
  width: 39.2%;
}

.mobile-menu-how {
  top: 12.6%;
  height: 7.6%;
}

.mobile-menu-players {
  top: 20.5%;
  height: 6.3%;
}

.mobile-menu-schedule {
  top: 27.7%;
  height: 6.4%;
}

.mobile-menu-prize {
  top: 35.0%;
  height: 6.2%;
}

.mobile-menu-faq {
  top: 42.2%;
  height: 6.2%;
}

@media (max-width: 900px) {
  .mobile-nav {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .hero-stage {
    display: block;
    min-height: auto;
    padding: 0;
  }

  .desktop-hero-map {
    display: none;
  }

  .mobile-hero-map {
    display: block;
    width: 100%;
    max-width: none;
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;
  }

  .mobile-hero-map img {
    width: 100%;
  }
}

/* Tablets held vertically (portrait) use the mobile hero image, not the wide desktop one. */
@media (min-width: 768px) and (orientation: portrait) {
  .hero-stage {
    display: block;
    min-height: auto;
    padding: 0;
  }

  .desktop-hero-map {
    display: none;
  }

  .mobile-hero-map {
    display: block;
    width: 100%;
    max-width: none;
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;
  }

  .mobile-hero-map img {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .mobile-menu-overlay {
    display: none !important;
  }
}

/* =========================================================
   MOBILE NAV + HOTSPOT CONTROL PANEL
   Edit the values below to tune the mobile image-map click areas.
   Tip: add ?debug=1 to the URL or press D to see the hotspot boxes.
   ========================================================= */
:root {
  /* Mobile hero hotspots on assets/mobile.png */
  --mh-hamburger-left: 81.85%;
  --mh-hamburger-top: 5.0%;
  --mh-hamburger-width: 12.5%;
  --mh-hamburger-height: 6.6%;

  --mh-how-left: 12.5%;
  --mh-how-top: 47.4%;
  --mh-how-width: 77.0%;
  --mh-how-height: 6.0%;

  --mh-schedule-left: 12.5%;
  --mh-schedule-top: 54.4%;
  --mh-schedule-width: 77.0%;
  --mh-schedule-height: 6.0%;

  /* Mobile menu hotspots on assets/mobile-menu.png */
  --mm-close-left: 88.8%;
  --mm-close-top: 1.25%;
  --mm-close-width: 9.5%;
  --mm-close-height: 6.1%;

  --mm-link-left: 58.5%;
  --mm-link-width: 39.2%;

  --mm-how-top: 18%;
  --mm-how-height: 6.1%;

  --mm-players-top: 24.9%;
  --mm-players-height: 6.1%;

  --mm-schedule-top: 31.8%;
  --mm-schedule-height: 6.1%;

  --mm-prize-top: 38.7%;
  --mm-prize-height: 6.1%;

  --mm-faq-top: 45.6%;
  --mm-faq-height: 6.1%;
}

/* Phone quick nav: real links, styled like rounded pills. */
.mobile-nav {
  display: none;
}

@media (max-width: 767px) {
  .mobile-nav {
    position: sticky;
    top: 0;
    z-index: 80;
    display: flex !important;
    justify-content: flex-start;
    gap: 0.55rem;
    overflow-x: auto;
    padding: 0.7rem 0.75rem;
    background: rgba(255, 244, 214, 0.94);
    backdrop-filter: blur(14px);
    border-top: 1px solid rgba(7, 61, 32, 0.08);
    border-bottom: 1px solid rgba(7, 61, 32, 0.12);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .mobile-nav::-webkit-scrollbar {
    display: none;
  }

  .mobile-nav a {
    flex: 0 0 auto;
    padding: 0.6rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    color: var(--green);
    font-size: 0.95rem;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    box-shadow: 0 1px 0 rgba(7, 61, 32, 0.08) inset;
    transition: transform 160ms ease, background 160ms ease, color 160ms ease, box-shadow 160ms ease;
  }

  .mobile-nav a:hover,
  .mobile-nav a:focus-visible,
  .mobile-nav a.is-active {
    background: var(--green);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(7, 61, 32, 0.18);
  }
}

/* Mobile hero image hotspots. */
.mobile-hamburger-hotspot {
  left: var(--mh-hamburger-left);
  top: var(--mh-hamburger-top);
  width: var(--mh-hamburger-width);
  height: var(--mh-hamburger-height);
  border-radius: 18px;
}

.mobile-button-how {
  left: var(--mh-how-left);
  top: var(--mh-how-top);
  width: var(--mh-how-width);
  height: var(--mh-how-height);
  border-radius: 999px;
}

.mobile-button-schedule {
  left: var(--mh-schedule-left);
  top: var(--mh-schedule-top);
  width: var(--mh-schedule-width);
  height: var(--mh-schedule-height);
  border-radius: 999px;
}

/* Mobile menu image hotspots. */
.mobile-menu-close {
  left: var(--mm-close-left);
  top: var(--mm-close-top);
  width: var(--mm-close-width);
  height: var(--mm-close-height);
}

.mobile-menu-how,
.mobile-menu-players,
.mobile-menu-schedule,
.mobile-menu-prize,
.mobile-menu-faq {
  left: var(--mm-link-left);
  width: var(--mm-link-width);
}

.mobile-menu-how {
  top: var(--mm-how-top);
  height: var(--mm-how-height);
}

.mobile-menu-players {
  top: var(--mm-players-top);
  height: var(--mm-players-height);
}

.mobile-menu-schedule {
  top: var(--mm-schedule-top);
  height: var(--mm-schedule-height);
}

.mobile-menu-prize {
  top: var(--mm-prize-top);
  height: var(--mm-prize-height);
}

.mobile-menu-faq {
  top: var(--mm-faq-top);
  height: var(--mm-faq-height);
}

/* =========================================================
   RESTORED FLOATING SECTION MENU
   Matches the older pill-style menu. This override is placed
   at the end so it wins over the newer mobile-only menu rules.
   ========================================================= */
.mobile-nav {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex !important;
  justify-content: center;
  gap: 0.45rem;
  overflow-x: auto;
  padding: 0.65rem 0.75rem;
  background: rgba(255, 244, 214, 0.92);
  backdrop-filter: blur(14px);
  border-top: 0;
  border-bottom: 1px solid rgba(7, 61, 32, 0.12);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: auto;
}

.mobile-nav::-webkit-scrollbar {
  display: initial;
}

.mobile-nav a {
  flex: 0 0 auto;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--green);
  font-size: 0.88rem;
  font-weight: 900;
  line-height: normal;
  text-decoration: none;
  box-shadow: none;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.mobile-nav a:hover,
.mobile-nav a:focus-visible,
.mobile-nav a.is-active {
  background: var(--green);
  color: white;
  transform: translateY(-1px);
  box-shadow: none;
}

@media (max-width: 640px) {
  .mobile-nav {
    justify-content: flex-start;
  }
}

/* Nav icons + phone-only labels are hidden by default so desktop/tablet keep the current text pills. */
.mobile-nav .mn-ico {
  display: none;
}

.mobile-nav .mn-ico svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mobile-nav .mn-phone {
  display: none;
}


/* =========================================================
   MOBILE BOTTOM NAV + RIGHT-SCROLL INDICATOR
   Keeps the restored desktop floating menu, but pins the same
   section nav to the bottom only on phone-sized screens.
   ========================================================= */
.mobile-nav-more {
  display: none;
}

@media (max-width: 767px) {
  body {
    padding-bottom: calc(6.3rem + env(safe-area-inset-bottom));
  }

  .content-section {
    scroll-margin-top: 1rem;
  }

  .mobile-nav {
    position: fixed !important;
    top: auto !important;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: grid !important;
    grid-auto-flow: column;
    grid-auto-columns: 20%;
    gap: 0;
    width: 100%;
    max-width: none;
    overflow-x: auto;
    padding: 0.5rem 0.5rem calc(0.5rem + env(safe-area-inset-bottom)) 0.5rem;
    background: rgba(255, 244, 214, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid rgba(7, 61, 32, 0.14);
    border-bottom: 0 !important;
    box-shadow: 0 -12px 34px rgba(7, 61, 32, 0.14);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .mobile-nav::-webkit-scrollbar {
    display: none !important;
  }

  .mobile-nav a {
    min-height: 3.75rem;
    display: grid;
    gap: 3px;
    justify-items: center;
    align-content: center;
    padding: 2px 3px;
    border-radius: 14px;
    background: transparent;
    color: var(--ink);
    font-size: 0.78rem;
    font-weight: 900;
    line-height: 1.05;
    text-align: center;
    text-decoration: none;
    box-shadow: none;
    transition: background 160ms ease, color 160ms ease;
  }

  .mobile-nav a:hover,
  .mobile-nav a:focus-visible,
  .mobile-nav a.is-active {
    background: rgba(7, 61, 32, 0.08);
    color: var(--green);
    transform: none;
    box-shadow: none;
  }

  .mobile-nav .mn-ico {
    display: inline-flex;
  }

  .mobile-nav .mn-ico svg {
    width: 28px;
    height: 28px;
  }

  .mobile-nav .mn-wide {
    display: none;
  }

  .mobile-nav .mn-phone {
    display: inline;
  }

  .mobile-nav .mn-label {
    display: block;
  }

  .mobile-nav-more {
    position: fixed;
    right: 0.2rem;
    bottom: calc(1.6rem + env(safe-area-inset-bottom));
    z-index: 101;
    display: inline-grid;
    place-items: center;
    width: 1.6rem;
    height: 1.6rem;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: var(--green);
    color: white;
    box-shadow: 0 4px 12px rgba(7, 61, 32, 0.3);
    font: inherit;
    font-size: 1.1rem;
    font-weight: 900;
    line-height: 1;
    cursor: pointer;
    animation: mobile-nav-nudge 1.8s ease-in-out infinite;
  }

  .mobile-nav-more::before {
    content: "";
    position: absolute;
    top: -0.5rem;
    right: 100%;
    bottom: -0.5rem;
    width: 1.5rem;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(255, 244, 214, 0), rgba(255, 244, 214, 0.97));
  }

  .mobile-nav-more:hover,
  .mobile-nav-more:focus-visible {
    background: var(--green-2);
  }

  .mobile-nav-more[hidden] {
    display: none !important;
  }
}

@keyframes mobile-nav-nudge {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(4px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-nav-more {
    animation: none;
  }
}


/* FAQ heading/link polish */
.faq-section h1 {
  color: var(--orange);
}

.faq-section details,
.faq-section summary,
.faq-answer {
  overflow-anchor: none;
}

.faq-answer a {
  color: var(--orange);
  font-weight: 900;
  text-decoration-thickness: 0.12em;
  text-underline-offset: 0.18em;
}
