/* =========================================================
   Seasn — marketing site
   Design tokens: ink #16170F, cream #F2F0E6, lime #D6FF3F
   Display: Unbounded (700/800)  Body: Manrope (400–700)
   ========================================================= */

:root{
  --ink: #16170F;
  --cream: #F2F0E6;
  --lime: #D6FF3F;

  --ink-85: rgba(22,23,15,.85);
  --ink-70: rgba(22,23,15,.7);
  --ink-50: rgba(22,23,15,.5);
  --ink-30: rgba(22,23,15,.3);
  --ink-14: rgba(22,23,15,.14);
  --ink-08: rgba(22,23,15,.08);

  --cream-85: rgba(242,240,230,.85);
  --cream-70: rgba(242,240,230,.7);
  --cream-55: rgba(242,240,230,.55);
  --cream-30: rgba(242,240,230,.3);
  --cream-14: rgba(242,240,230,.14);
  --cream-08: rgba(242,240,230,.08);

  --lime-90: rgba(214,255,63,.9);
  --lime-30: rgba(214,255,63,.3);
  --lime-18: rgba(214,255,63,.18);
  --lime-10: rgba(214,255,63,.1);

  --ff-display: "Unbounded", sans-serif;
  --ff-body: "Manrope", sans-serif;

  --container: 1240px;
  --edge: clamp(24px, 6vw, 64px);
  --section-pad: clamp(88px, 11vw, 160px);

  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 28px;
  --r-pill: 999px;

  --ease: cubic-bezier(.16,.8,.28,1);
  --dur-fast: .22s;
  --dur-med: .5s;
  --dur-slow: .8s;
}

/* ---------- reset ---------- */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *{ animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}
body, h1, h2, h3, h4, p, figure, blockquote{ margin: 0; }
ul{ list-style: none; margin: 0; padding: 0; }
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
button{ font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
svg{ display: block; }

html, body{ height: 100%; }
body{
  background: var(--cream);
  color: var(--ink);
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* visible keyboard focus, everywhere */
:focus{ outline: none; }
:focus-visible{
  outline: 2px solid var(--lime);
  outline-offset: 3px;
  border-radius: 4px;
}
a:focus-visible, button:focus-visible{
  outline: 2px solid var(--lime);
  outline-offset: 3px;
}

.container{
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--edge);
}

section{ position: relative; }

.sr-only{
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link{
  position: fixed;
  top: 12px; left: 12px;
  z-index: 1000;
  background: var(--lime);
  color: var(--ink);
  font-weight: 700;
  font-size: .875rem;
  padding: 10px 18px;
  border-radius: var(--r-sm);
  transform: translateY(-140%);
  transition: transform var(--dur-fast) var(--ease);
}
.skip-link:focus-visible{ transform: translateY(0); outline-offset: 2px; }

/* ---------- typography ---------- */
h1, h2, h3, h4{
  font-family: var(--ff-display);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.05;
}
.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: .8125rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-50);
}
.eyebrow::before{
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px var(--lime-18);
  flex: none;
}
.on-dark .eyebrow{ color: var(--cream-70); }

.lede{
  font-size: clamp(1.0625rem, 1.3vw, 1.25rem);
  line-height: 1.55;
  color: var(--ink-70);
  font-weight: 400;
  max-width: 42ch;
}
.on-dark .lede{ color: var(--cream-70); }

mark.accent{
  background: none;
  color: inherit;
  position: relative;
  white-space: nowrap;
}
mark.accent::after{
  content: "";
  position: absolute;
  left: -.03em; right: -.03em; bottom: -.06em;
  height: .16em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 28' preserveAspectRatio='none'%3E%3Cpath d='M8,18 C120,6 280,26 392,12' fill='none' stroke='%23D6FF3F' stroke-width='12' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.text-lime{ color: var(--lime); }

/* ---------- buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  height: 56px;
  padding-inline: 32px;
  border-radius: var(--r-pill);
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: .9375rem;
  letter-spacing: .01em;
  white-space: nowrap;
  transition: transform var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
  will-change: transform;
}
.btn:active{ transform: translateY(1px) scale(.99); }

.btn-primary{
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 1px 0 rgba(0,0,0,.05);
}
.btn-primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -8px var(--lime-30);
}

.btn-outline{
  background: transparent;
  border: 1.5px solid var(--ink-30);
  color: var(--ink);
}
.btn-outline:hover{
  border-color: var(--ink);
  transform: translateY(-2px);
}
.on-dark .btn-outline{
  border-color: var(--cream-30);
  color: var(--cream);
}
.on-dark .btn-outline:hover{
  border-color: var(--cream);
}

.btn-ghost{
  height: auto;
  padding: 0;
  border-radius: 0;
  font-weight: 600;
  color: var(--ink-70);
}
.btn-ghost:hover{ color: var(--ink); }
.on-dark .btn-ghost{ color: var(--cream-70); }
.on-dark .btn-ghost:hover{ color: var(--cream); }

.btn-sm{ height: 46px; padding-inline: 24px; font-size: .875rem; }

/* ---------- nav ---------- */
.nav{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: padding var(--dur-med) var(--ease), background var(--dur-med) var(--ease), box-shadow var(--dur-med) var(--ease), border-color var(--dur-med) var(--ease);
  border-bottom: 1px solid transparent;
}
.nav-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav.is-scrolled{
  padding: 14px 0;
  background: rgba(22,23,15,.72);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--cream-08);
}
.nav-logo{ display: flex; align-items: center; height: 26px; }
.nav-logo img{ height: 100%; width: auto; }

/* pages with no dark hero under the nav (e.g. request-pilot): keep the
   bar solid and legible against a light section from the very first frame,
   instead of the transparent-until-scrolled treatment used on the homepage. */
.nav.nav-on-light,
.nav.nav-on-light.is-scrolled{
  background: var(--cream-85);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--ink-08);
}
.nav-on-light .nav-links a{ color: var(--ink-70); }
.nav-on-light .nav-links a:hover{ color: var(--ink); }
.nav-on-light .nav-login{ color: var(--ink-50); }
.nav-on-light .nav-login:hover{ color: var(--ink); }
.nav-on-light .nav-burger{ color: var(--ink); }

.nav-links{
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-links a{
  font-size: .9375rem;
  font-weight: 600;
  color: var(--cream-70);
  transition: color var(--dur-fast) var(--ease);
  position: relative;
  padding: 6px 0;
}
.nav-links a:hover{ color: var(--cream); }

.nav-actions{ display: flex; align-items: center; gap: 20px; }
.nav-login{ font-size: .9375rem; font-weight: 600; color: var(--cream-70); transition: color var(--dur-fast) var(--ease); }
.nav-login:hover{ color: var(--cream); }

.nav-burger{
  display: none;
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  align-items: center; justify-content: center;
  color: var(--cream);
}

.mobile-menu{
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
  padding: var(--edge);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-med) var(--ease), transform var(--dur-med) var(--ease);
}
.mobile-menu.is-open{ opacity: 1; transform: translateY(0); pointer-events: auto; }
.mobile-menu a{
  font-family: var(--ff-display);
  font-size: clamp(1.75rem, 8vw, 2.5rem);
  color: var(--cream);
}
.mobile-menu .btn{ align-self: flex-start; margin-top: 12px; }
.mobile-menu-login{
  font-family: var(--ff-display);
  font-size: clamp(1.75rem, 8vw, 2.5rem);
  color: var(--cream);
}
.mobile-menu-close{ position: absolute; top: 22px; right: var(--edge); width: 44px; height: 44px; color: var(--cream); }

body.menu-open{ overflow: hidden; }

/* ---------- hero ---------- */
.hero{
  background: var(--ink);
  color: var(--cream);
  padding-top: calc(var(--section-pad) + 40px);
  padding-bottom: var(--section-pad);
  overflow: clip;
}
.hero-glow{
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(60% 50% at 78% 8%, var(--lime-18), transparent 60%),
    radial-gradient(45% 40% at 12% 30%, var(--lime-10), transparent 65%);
  animation: glow-shift 16s ease-in-out infinite alternate;
}
@keyframes glow-shift{
  0%{ transform: translate3d(0,0,0) scale(1); }
  100%{ transform: translate3d(-2%, 2%, 0) scale(1.06); }
}
.hero-inner{ position: relative; z-index: 1; text-align: center; }
.hero .eyebrow{ justify-content: center; margin-bottom: 28px; }
.hero h1{
  font-size: clamp(2.5rem, 6.4vw, 5.5rem);
  max-width: 17ch;
  margin-inline: auto;
  color: var(--cream);
}
.hero .lede{
  margin: 32px auto 0;
  max-width: 46ch;
  text-align: center;
  font-size: clamp(1.0625rem, 1.6vw, 1.25rem);
}
.hero-ctas{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 44px;
}
.hero-caption{
  margin-top: 28px;
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--cream-55);
}
.hero-caption span{ margin-inline: .6em; color: var(--cream-30); }
.hero-caption span:first-child{ margin-inline-start: 0; }

/* ---------- reveal-on-scroll ---------- */
[data-reveal]{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease);
}
[data-reveal].is-visible{ opacity: 1; transform: translateY(0); }
[data-reveal-group] > *{ transition-delay: calc(var(--i, 0) * 70ms); }

/* ---------- hook ---------- */
.hook{
  padding-block: var(--section-pad);
  text-align: center;
}
.hook-statement{
  font-family: var(--ff-display);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.08;
  font-size: clamp(2rem, 5vw, 3.5rem);
  max-width: 18ch;
  margin-inline: auto;
}
.hook-sub{
  margin: 28px auto 0;
  max-width: 44ch;
  color: var(--ink-70);
  font-size: clamp(1.0625rem, 1.4vw, 1.1875rem);
}

/* ---------- section heads ---------- */
.section-head{
  margin-bottom: clamp(48px, 6vw, 80px);
}
.section-head h2{
  font-size: clamp(2rem, 4.4vw, 3.25rem);
  margin-top: 20px;
  max-width: 16ch;
}
.section-head.center{ text-align: center; }
.section-head.center h2{ margin-inline: auto; }
.section-head.center .lede{ margin-inline: auto; text-align: center; }
.section-head .lede{ margin-top: 18px; }

/* ---------- the loop (at a glance) ---------- */
.loop{
  background: var(--ink);
  color: var(--cream);
  padding-block: calc(var(--section-pad) * .62);
  overflow: clip;
}
.loop-glow{
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(60% 70% at 50% 40%, var(--lime-10), transparent 65%);
}
.loop .container{ position: relative; z-index: 1; }
.loop-caption{
  text-align: center;
  font-family: var(--ff-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
  font-size: clamp(2rem, 4.4vw, 3.25rem);
  color: var(--cream);
  margin-bottom: clamp(48px, 6vw, 72px);
}

.loop-diagram{ position: relative; }
.loop-line{ position: absolute; overflow: visible; }
.loop-line-bg{ fill: none; stroke: var(--cream-14); stroke-width: 1.5; stroke-linecap: round; }
.loop-line-fg{
  fill: none;
  stroke: var(--lime);
  stroke-width: 1.5;
  stroke-linecap: round;
  filter: drop-shadow(0 0 3px var(--lime-18));
  transition: stroke-dashoffset .85s var(--ease);
  /* hidden until JS measures the path and reveals it in stages; if JS
     never runs for any reason, this stays invisible rather than showing
     a fully-lit line with none of its story told */
  opacity: 0;
}
.loop-pulse-dot{
  fill: var(--lime);
  filter: drop-shadow(0 0 8px var(--lime-90));
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.loop-pulse-dot.is-active{ opacity: 1; }

.loop-line-h{ inset: 0; width: 100%; height: 100%; }
.loop-line-v{ display: none; }

.loop-nodes{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* stretch (the default) so every node column shares the same height —
     that's what lets the captions share one baseline below, regardless
     of whether the content above is a small icon or a taller card */
  align-items: stretch;
  gap: 20px;
}
.loop-node{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
}
.loop-node-visual{
  flex: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loop-node-label{
  margin-top: 16px;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--cream-55);
}

.loop-icon-wrap{
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  border: 1.5px solid var(--cream-14);
  color: var(--cream-30);
  transition: color .5s var(--ease), border-color .5s var(--ease), background .5s var(--ease);
}
.loop-node.is-lit .loop-icon-wrap{
  color: var(--lime);
  border-color: var(--lime);
}
.loop-glow-ring{
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 2px solid var(--lime);
  opacity: 0;
  transform: scale(.7);
  pointer-events: none;
}
@keyframes loopGlowPulse{
  0%{ opacity: .9; transform: scale(.7); }
  100%{ opacity: 0; transform: scale(1.6); }
}
.loop-node.is-pulsing .loop-glow-ring{ animation: loopGlowPulse .8s var(--ease) forwards; }

.loop-check{
  position: absolute;
  top: -8px;
  left: 50%;
  color: var(--lime);
  opacity: 0;
  transform: translate(-50%, 6px);
  pointer-events: none;
}
@keyframes loopCheckFlash{
  0%{ opacity: 0; transform: translate(-50%, 6px); }
  25%{ opacity: 1; transform: translate(-50%, -20px); }
  70%{ opacity: 1; transform: translate(-50%, -20px); }
  100%{ opacity: 0; transform: translate(-50%, -28px); }
}
.loop-node.is-pulsing .loop-check{ animation: loopCheckFlash .9s var(--ease) forwards; }

.loop-board-card{
  position: relative;
  width: 100%;
  max-width: 180px;
  background: var(--ink);
  border: 1px solid var(--cream-14);
  border-radius: var(--r-md);
  padding: 10px;
  overflow: hidden;
}
.loop-board-row{
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 6px;
  border-radius: 8px;
  transition: transform .5s var(--ease), background .35s var(--ease);
}
.loop-board-row.is-boost{ background: var(--lime-18); }
.loop-board-row.is-boost .loop-board-pts{ color: var(--lime); }
.loop-board-rank{
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--cream-14);
  color: var(--cream-70);
  font-size: .6875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.loop-board-name{
  flex: 1;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--cream-85);
  text-align: left;
}
.loop-board-pts{
  font-size: .75rem;
  font-weight: 700;
  color: var(--cream-55);
  font-variant-numeric: tabular-nums;
  transition: color .35s var(--ease);
}
.loop-board-plus{
  position: absolute;
  left: 8px;
  top: 4px;
  font-size: .6875rem;
  font-weight: 700;
  color: var(--lime);
  opacity: 0;
  transform: translateY(4px);
  pointer-events: none;
}
@keyframes loopPlusFloat{
  0%{ opacity: 0; transform: translateY(6px); }
  30%{ opacity: 1; transform: translateY(0); }
  75%{ opacity: 1; transform: translateY(-6px); }
  100%{ opacity: 0; transform: translateY(-14px); }
}
.loop-board-plus.is-active{ animation: loopPlusFloat 1s var(--ease) forwards; }

.loop-counter-card{
  background: var(--ink);
  border: 1px solid var(--cream-14);
  border-radius: var(--r-md);
  padding: 14px 20px;
  text-align: center;
  min-width: 150px;
  transition: border-color .4s var(--ease);
}
.loop-node.is-lit .loop-counter-card{ border-color: var(--lime); }
.loop-counter-label{
  display: block;
  font-size: .75rem;
  color: var(--cream-55);
  margin-bottom: 6px;
}
.loop-counter-value{
  font-family: var(--ff-display);
  font-size: 1.75rem;
  color: var(--cream);
  transition: color .3s var(--ease);
}
.loop-counter-value.is-bump{ color: var(--lime); }

/* ---------- how it works ---------- */
.how{ padding-block: var(--section-pad); }

.tabs{
  display: inline-flex;
  padding: 6px;
  border-radius: var(--r-pill);
  background: var(--ink-08);
  gap: 4px;
  margin-bottom: 56px;
}
.tab-btn{
  padding: 12px 26px;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: .9375rem;
  color: var(--ink-50);
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.tab-btn:hover{ color: var(--ink); }
.tab-btn[aria-selected="true"]{
  background: var(--ink);
  color: var(--cream);
}

.tab-panel{ display: none; }
.tab-panel.is-active{ display: block; }

.steps{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 32px);
}
.step-card{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
}
.step-phone{
  width: 100%;
  display: flex;
  justify-content: center;
  transition: transform var(--dur-med) var(--ease);
}
.step-card:hover .step-phone{ transform: translateY(-8px); }
.step-phone img{
  width: min(62%, 220px);
  height: auto;
  display: block;
  filter: drop-shadow(0 28px 32px var(--ink-14));
}
.step-copy{ max-width: 30ch; }
.step-copy h3{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 1.0625rem;
}
.step-index{
  width: 26px; height: 26px;
  flex: none;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  font-family: var(--ff-display);
  font-size: .75rem;
  display: flex; align-items: center; justify-content: center;
}
.step-copy p{
  margin-top: 10px;
  color: var(--ink-70);
  font-size: .9375rem;
  line-height: 1.5;
}

/* ---------- scroll-pinned phone (For your team, desktop/tablet) ---------- */
.phone-scroll{
  position: relative;
  height: 280vh;
}
.phone-scroll-sticky{
  position: sticky;
  top: 90px;
  height: calc(100vh - 90px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone-frame{
  position: relative;
  width: 280px;
  height: 580px;
  background: #0c0d09;
  border-radius: 44px;
  box-shadow: 0 50px 90px -24px var(--ink-30), 0 0 0 2px var(--ink-14);
}
.phone-notch{
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 22px;
  background: #0c0d09;
  border-radius: 0 0 14px 14px;
  z-index: 3;
}
.phone-home-indicator{
  position: absolute;
  bottom: 9px; left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 4px;
  border-radius: 99px;
  background: var(--cream-30);
  z-index: 3;
}
.phone-screen{
  position: absolute;
  inset: 10px;
  background: var(--cream);
  border-radius: 34px;
  overflow: hidden;
  padding: 30px 18px 20px;
  display: flex;
  flex-direction: column;
}

.ph-progress{ display: flex; gap: 6px; margin-bottom: 16px; flex: none; }
.ph-progress-seg{
  flex: 1;
  height: 4px;
  border-radius: 99px;
  background: var(--ink-14);
  transition: background .35s var(--ease);
}
.ph-progress-seg.is-done{ background: var(--lime); }

.ph-screens{ position: relative; flex: 1; }
.ph-screen{
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s var(--ease);
}
.ph-screen.is-active{ opacity: 1; pointer-events: auto; }

.ph-title{
  font-family: var(--ff-body);
  font-weight: 800;
  font-size: .9375rem;
  color: var(--ink);
  line-height: 1.25;
}
.ph-title-center{ text-align: center; margin-top: 14px; }
.ph-sub{ margin-top: 4px; font-size: .6875rem; color: var(--ink-50); line-height: 1.4; }
.ph-sub-center{ text-align: center; margin-inline: auto; max-width: 22ch; }
.ph-hint{ margin-top: 10px; font-size: .625rem; color: var(--ink-30); }

.ph-card{
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--ink-14);
  background: #fff;
  transition: border-color .3s var(--ease), background .3s var(--ease), transform .3s var(--ease);
}
.ph-card-bonus{ border-style: dashed; }
.ph-card.is-tapped{
  border-color: var(--lime);
  background: var(--lime-10);
  transform: scale(.97);
}
.ph-card-top{ display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.ph-card-name{ font-size: .6875rem; font-weight: 700; color: var(--ink); }
.ph-card-desc{ margin-top: 3px; font-size: .5625rem; color: var(--ink-50); line-height: 1.35; }
.ph-tag{
  flex: none;
  font-size: .5rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 2px 6px;
  border-radius: 99px;
  color: var(--ink-50);
  background: var(--ink-08);
}
.ph-tag-bonus{ color: var(--ink); background: var(--lime); }

.ph-back{ font-size: .625rem; font-weight: 700; color: var(--ink-30); }
.ph-back + .ph-title{ margin-top: 8px; }
.ph-label{
  display: block;
  margin-top: 12px;
  margin-bottom: 6px;
  font-size: .625rem;
  font-weight: 700;
  color: var(--ink);
}
.ph-optional{ font-weight: 500; color: var(--ink-30); }

.ph-select{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  border-radius: 9px;
  border: 1.5px solid var(--ink-14);
  background: #fff;
  font-size: .6875rem;
  color: var(--ink-30);
  transition: border-color .3s var(--ease);
}
.ph-select.is-open{ border-color: var(--ink); }
.ph-select.has-value{ color: var(--ink); font-weight: 600; }
.ph-select-chevron{
  width: 7px; height: 7px;
  flex: none;
  border-right: 1.5px solid var(--ink-30);
  border-bottom: 1.5px solid var(--ink-30);
  transform: rotate(45deg);
  transition: transform .25s var(--ease);
  margin-top: -3px;
}
.ph-select.is-open .ph-select-chevron{ transform: rotate(-135deg); margin-top: 3px; }
.ph-select-menu{
  position: absolute;
  left: 0; right: 0; top: calc(100% + 4px);
  background: #fff;
  border: 1px solid var(--ink-14);
  border-radius: 9px;
  box-shadow: 0 14px 28px -10px var(--ink-30);
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height .35s var(--ease), opacity .3s var(--ease);
  z-index: 4;
}
.ph-select.is-open .ph-select-menu{ max-height: 160px; opacity: 1; }
.ph-select-option{
  padding: 7px 10px;
  font-size: .625rem;
  color: var(--ink-70);
  transition: background .2s var(--ease), color .2s var(--ease);
}
.ph-select-option.is-picked{ background: var(--lime-18); color: var(--ink); font-weight: 700; }

.ph-textarea{
  min-height: 46px;
  padding: 8px 10px;
  border-radius: 9px;
  border: 1.5px solid var(--ink-14);
  background: #fff;
  font-size: .625rem;
  line-height: 1.5;
  color: var(--ink);
}
.ph-caret{
  display: inline-block;
  width: 1px;
  height: 10px;
  background: var(--ink-50);
  margin-left: 1px;
  vertical-align: -1px;
  animation: phCaretBlink 1s step-end infinite;
}
@keyframes phCaretBlink{ 50%{ opacity: 0; } }

.ph-file{
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 9px;
  border: 1px solid var(--ink-14);
  background: #fff;
}
.ph-file-btn{
  font-size: .5625rem;
  font-weight: 700;
  color: var(--ink-70);
  background: var(--ink-08);
  padding: 3px 8px;
  border-radius: 99px;
}
.ph-file-status{ font-size: .5625rem; color: var(--ink-30); }
.ph-microcopy{ margin-top: 6px; font-size: .5625rem; color: var(--ink-30); }

.ph-submit{
  margin-top: 14px;
  padding: 10px;
  border-radius: 10px;
  background: var(--lime);
  color: var(--ink);
  font-size: .75rem;
  font-weight: 700;
  text-align: center;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.ph-submit.is-pressed{ transform: scale(.96); box-shadow: 0 0 0 4px var(--lime-18); }

.ph-check-circle{
  width: 44px; height: 44px;
  margin: 0 auto;
  border-radius: 50%;
  background: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(.4);
  opacity: 0;
  transition: transform .45s cubic-bezier(.34,1.56,.64,1), opacity .3s var(--ease);
}
.ph-screen-done.is-active .ph-check-circle{ transform: scale(1); opacity: 1; }
.ph-check-path{
  stroke-dasharray: 20;
  stroke-dashoffset: 20;
  transition: stroke-dashoffset .4s var(--ease) .15s;
}
.ph-screen-done.is-active .ph-check-path{ stroke-dashoffset: 0; }
.ph-outline-btn{
  margin: 16px auto 0;
  max-width: 140px;
  padding: 8px;
  border-radius: 9px;
  border: 1px solid var(--ink-14);
  color: var(--ink-50);
  font-size: .6875rem;
  font-weight: 700;
  text-align: center;
}

.steps-fallback{ display: none; }

@media (max-width: 720px){
  .phone-scroll{ display: none; }
  .steps-fallback{ display: grid; }
}

.admin-grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(24px, 3vw, 40px);
  align-items: stretch;
}
.admin-shot{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  height: 100%;
}
.admin-shot img{
  width: 100%;
  height: auto;
  filter: drop-shadow(0 30px 40px var(--ink-14));
}
.admin-shot figcaption{
  font-size: .8125rem;
  font-weight: 600;
  color: var(--ink-50);
}
.admin-side{
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.admin-card{
  background: var(--cream);
  border: 1px solid var(--ink-14);
  border-radius: var(--r-md);
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}
.admin-card .tag{
  align-self: flex-start;
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--lime);
  padding: 5px 12px;
  border-radius: var(--r-pill);
}
.admin-card h3{
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 1.1875rem;
}
.admin-card p{ color: var(--ink-70); font-size: .9375rem; line-height: 1.55; }

/* ---------- competition (centerpiece) ---------- */
.competition{
  background: var(--ink);
  color: var(--cream);
  padding-block: calc(var(--section-pad) + 16px);
  overflow: clip;
}
.competition-glow{
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(50% 60% at 90% 100%, var(--lime-18), transparent 60%),
    radial-gradient(40% 40% at 5% 0%, var(--lime-10), transparent 60%);
}
.competition .container{ position: relative; z-index: 1; }

.leagues{
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: clamp(20px, 3vw, 32px);
  margin-bottom: clamp(56px, 6vw, 88px);
}
.league-card{
  background: var(--cream-08);
  border: 1px solid var(--cream-14);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 36px);
  transition: transform var(--dur-med) var(--ease), border-color var(--dur-med) var(--ease), background var(--dur-med) var(--ease);
}
.league-card:hover{
  transform: translateY(-6px);
  border-color: var(--lime-30);
  background: var(--cream-14);
}
.league-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  gap: 12px;
}
.league-head h3{
  font-family: var(--ff-body);
  font-weight: 800;
  font-size: 1.375rem;
}
.league-badge{
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--lime);
  padding: 6px 14px;
  border-radius: var(--r-pill);
  white-space: nowrap;
}
.league-badge.ghost{
  color: var(--cream-70);
  background: var(--cream-08);
  border: 1px solid var(--cream-14);
}
.league-shot{
  border-radius: var(--r-md);
  overflow: hidden;
  background: #fff;
}
.league-shot img{ width: 100%; height: auto; display: block; }

.competition-facts{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 3vw, 24px);
}
.fact-card{
  background: var(--cream-08);
  border: 1px solid var(--cream-14);
  border-radius: var(--r-md);
  padding: 28px 26px;
}
.fact-card .stat{
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3vw, 2.75rem);
  color: var(--lime);
  line-height: 1;
}
.fact-card p{
  margin-top: 12px;
  color: var(--cream-70);
  font-size: .9375rem;
  line-height: 1.55;
}
.fact-card.wide{
  grid-column: span 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.fact-card.quiet-line{
  display: flex;
  align-items: center;
}
.fact-card.quiet-line p{
  margin: 0;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--cream);
  line-height: 1.4;
}
.fact-card.quiet-line p .text-lime{ font-family: var(--ff-display); }

/* ---------- capture ---------- */
.capture{ padding-block: var(--section-pad); }
.capture-single{ max-width: 760px; }
.capture-single .section-head{ margin-bottom: clamp(40px, 5vw, 64px); }

.capture-board{
  background: #fff;
  border: 1px solid var(--ink-08);
  border-radius: var(--r-lg);
  box-shadow: 0 30px 70px -32px var(--ink-30);
  padding: clamp(28px, 4vw, 40px);
}
.board-head{
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 20px;
  margin-bottom: 6px;
  border-bottom: 1px solid var(--ink-08);
}
.board-head h3{
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 1.0625rem;
}
.board-rows{ display: flex; flex-direction: column; }
.board-row{ padding-block: 16px; }
.board-row + .board-row{ border-top: 1px solid var(--ink-08); }
.board-row-top{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.board-label{
  font-size: .9375rem;
  font-weight: 600;
  color: var(--ink-85);
}
.board-value{
  font-size: .9375rem;
  font-weight: 700;
  color: var(--ink-50);
  font-variant-numeric: tabular-nums;
}
.board-track{
  height: 8px;
  border-radius: 99px;
  background: var(--ink-08);
  overflow: hidden;
}
.board-fill{
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--lime);
  width: 0%;
  transition: width 1.1s var(--ease);
}

/* ---------- pricing ---------- */
.pricing{ padding-block: var(--section-pad); }
.price-card{
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--r-lg);
  padding: clamp(36px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  max-width: 1040px;
  margin-inline: auto;
  position: relative;
  overflow: clip;
}
.price-card::before{
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(60% 80% at 100% 0%, var(--lime-18), transparent 65%);
  pointer-events: none;
}
.price-card > *{ position: relative; z-index: 1; }
.price-plan-name{ font-size: .875rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--lime); margin-bottom: 16px; }
.price-card h2{ font-size: clamp(1.5rem, 2.6vw, 2rem); max-width: 20ch; color: var(--cream); }
.price-list{ margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.price-list li{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .9375rem;
  color: var(--cream-85);
}
.price-list li svg{ flex: none; margin-top: 3px; }
.price-side{ text-align: right; min-width: 260px; }
.price-amount{
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 4vw, 3.25rem);
  line-height: 1;
}
.price-amount span{ font-size: .45em; font-weight: 700; color: var(--cream-55); font-family: var(--ff-body); }
.price-note{
  margin-top: 10px;
  font-size: .8125rem;
  color: var(--cream-55);
  max-width: 26ch;
  margin-left: auto;
}
.price-side .btn{ margin-top: 26px; width: 100%; }

/* ---------- closing ---------- */
.closing{
  background: var(--ink);
  color: var(--cream);
  padding-block: var(--section-pad);
  text-align: center;
  overflow: clip;
}
.closing-glow{
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(55% 60% at 50% 0%, var(--lime-18), transparent 65%);
}
.closing .container{ position: relative; z-index: 1; }
.closing h2{
  font-size: clamp(2.25rem, 5vw, 4rem);
  max-width: 18ch;
  margin-inline: auto;
  color: var(--cream);
}
.closing .lede{ margin: 24px auto 0; text-align: center; }
.closing .hero-ctas{ margin-top: 40px; }

/* ---------- footer ---------- */
.footer{
  background: var(--ink);
  color: var(--cream-70);
  padding-top: 72px;
  padding-bottom: 32px;
  border-top: 1px solid var(--cream-08);
}
.footer-top{
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 56px;
}
.footer-logo{ height: 24px; width: auto; margin-bottom: 18px; }
.footer-tagline{ font-size: .9375rem; max-width: 32ch; color: var(--cream-55); }
.footer-col h4{
  font-family: var(--ff-body);
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--cream-55);
  margin-bottom: 18px;
}
.footer-col ul{ display: flex; flex-direction: column; gap: 12px; }
.footer-col a{ font-size: .9375rem; transition: color var(--dur-fast) var(--ease); }
.footer-col a:hover{ color: var(--cream); }
.footer-login{ font-size: .9375rem; transition: color var(--dur-fast) var(--ease); }
.footer-login:hover{ color: var(--cream); }
.footer-bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid var(--cream-08);
  font-size: .8125rem;
  color: var(--cream-30);
  flex-wrap: wrap;
}

/* ---------- request a pilot ---------- */
.pilot{ padding-block: calc(var(--section-pad) + 24px) var(--section-pad); }
.pilot-grid{
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.pilot-intro h1{
  font-size: clamp(2rem, 4vw, 3rem);
  margin-top: 20px;
  max-width: 14ch;
}
.pilot-intro .lede{ margin-top: 18px; }

.pilot-form-card{
  background: #fff;
  border: 1px solid var(--ink-08);
  border-radius: var(--r-lg);
  padding: clamp(28px, 4vw, 40px);
  box-shadow: 0 30px 70px -32px var(--ink-30);
}
.field-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
}
.field{ display: flex; flex-direction: column; gap: 8px; }
.field-full{ grid-column: 1 / -1; }
.field label{ font-size: .8125rem; font-weight: 700; color: var(--ink-70); }
.field-optional{ font-weight: 500; color: var(--ink-30); }
.field input, .field textarea{
  font-family: var(--ff-body);
  font-size: 1rem;
  padding: 13px 16px;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--ink-14);
  background: var(--cream);
  color: var(--ink);
  transition: border-color var(--dur-fast) var(--ease);
  resize: vertical;
}
.field input:focus, .field textarea:focus{ border-color: var(--ink); }
.field input::placeholder, .field textarea::placeholder{ color: var(--ink-30); }

.pilot-submit{ width: 100%; }
.pilot-form-note{
  margin-top: 14px;
  font-size: .8125rem;
  font-weight: 700;
  color: var(--ink);
  text-align: center;
  min-height: 1.2em;
}

.pilot-success{ text-align: center; padding: 36px 12px; outline: none; }
.pilot-success-icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--lime);
  margin-bottom: 22px;
}
.pilot-success h3{
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 1.1875rem;
  max-width: 30ch;
  margin-inline: auto;
  color: var(--ink);
}

/* ---------- responsive ---------- */
@media (max-width: 980px){
  .nav-links{ display: none; }
  .nav-login, .nav-actions > .btn-primary{ display: none; }
  .nav-burger{ display: inline-flex; }
  .admin-grid, .pilot-grid{ grid-template-columns: 1fr; }
  .leagues{ grid-template-columns: 1fr; }
  .competition-facts{ grid-template-columns: 1fr; }
  .price-card{ grid-template-columns: 1fr; text-align: left; }
  .price-side{ text-align: left; }
  .price-note{ margin-left: 0; }
  .footer-top{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px){
  .steps{ grid-template-columns: 1fr; }
  .field-grid{ grid-template-columns: 1fr; }
  .footer-top{ grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom{ flex-direction: column; align-items: flex-start; }
  .hero-ctas .btn{ width: 100%; }
  .hero-ctas{ flex-direction: column; align-items: stretch; }
  .closing .hero-ctas{ flex-direction: column; align-items: stretch; }

  .loop-nodes{ grid-template-columns: 1fr; gap: 56px; }
  .loop-line-h{ display: none; }
  .loop-line-v{ display: block; inset: 0; width: 100%; height: 100%; }
  .loop-board-card, .loop-counter-card{ max-width: 220px; margin-inline: auto; }
}
