:root {
  --ink: #070b09;
  --ink-2: #0e1612;
  --paper: #e7f2ea;
  --leaf: #1a5c40;
  --leaf-bright: #3dbe7a;
  --ember: #d4622a;
  --mist: #9fb5a8;
  --white: #f6fbf7;
  --line: rgba(159, 181, 168, 0.18);
  --glow: rgba(61, 190, 122, 0.35);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  font-family: "Sora", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--ink);
  color: var(--white);
  line-height: 1.5;
  overflow-x: clip;
  min-width: 0;
  padding-left: env(safe-area-inset-left, 0);
  padding-right: env(safe-area-inset-right, 0);
}
@supports not (overflow: clip) {
  body { overflow-x: hidden; }
}

.skip {
  position: absolute; left: -999px; top: 0;
  background: var(--leaf-bright); color: #04150c; padding: 0.5rem 1rem; z-index: 100;
}
.skip:focus { left: 0; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; height: auto; }
code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  color: var(--leaf-bright);
  font-size: 0.92em;
}

.eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mist);
}

/* —— Top nav —— */
.top {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 0.75rem;
  padding:
    max(0.75rem, env(safe-area-inset-top, 0px))
    clamp(1rem, 4vw, 3rem)
    1rem;
  background: linear-gradient(to bottom, rgba(7, 11, 9, 0.92), rgba(7, 11, 9, 0));
  pointer-events: none;
}
.top a { pointer-events: auto; }
.logo {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700; font-size: 1.35rem; letter-spacing: -0.03em;
}
.logo span, h1 span, .slide-brand span { color: var(--leaf-bright); }
.top nav { display: flex; gap: 1.25rem; align-items: center; }
.top nav a { font-size: 0.88rem; color: var(--mist); font-weight: 500; }
.top nav a:hover { color: var(--white); }
.top .cta {
  background: var(--leaf-bright); color: #04150c !important;
  padding: 0.55rem 1rem; border-radius: 999px; font-weight: 700;
  box-shadow: 0 0 0 0 var(--glow);
  transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease);
  white-space: nowrap;
  min-height: 44px;
  display: inline-flex; align-items: center;
}
.top .cta:hover { box-shadow: 0 0 28px var(--glow); transform: translateY(-1px); }

/* —— Full-bleed hero —— */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  padding: 0;
  isolation: isolate;
}
.hero-plane {
  position: absolute; inset: 0; z-index: -2;
  overflow: hidden;
}
.hero-plane img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: 70% center;
  transform: scale(1.06);
  animation: heroDrift 18s ease-in-out infinite alternate;
  filter: saturate(1.05) contrast(1.05);
}
.hero-veil {
  position: absolute; inset: 0; z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(100deg, rgba(7, 11, 9, 0.97) 0%, rgba(7, 11, 9, 0.78) 34%, rgba(7, 11, 9, 0.28) 58%, rgba(7, 11, 9, 0.45) 100%),
    linear-gradient(to top, rgba(7, 11, 9, 0.96) 0%, transparent 48%),
    radial-gradient(600px 400px at 18% 78%, rgba(61, 190, 122, 0.2), transparent 60%);
}
@keyframes heroDrift {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to { transform: scale(1.12) translate3d(-1.5%, -1%, 0); }
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding: clamp(5rem, 12vh, 8rem) clamp(1.25rem, 5vw, 4rem) clamp(4rem, 10vh, 6rem);
  max-width: 760px;
}
h1 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  font-size: clamp(4.2rem, 14vw, 8.5rem);
  letter-spacing: -0.045em;
  line-height: 0.88;
  margin: 0.35rem 0 1rem;
  text-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}
.tagline {
  font-size: clamp(1.2rem, 2.8vw, 1.65rem);
  color: var(--paper);
  font-weight: 500;
  max-width: 28ch;
  line-height: 1.35;
}
.value {
  margin-top: 1rem;
  color: var(--mist);
  max-width: 38rem;
  font-size: clamp(0.98rem, 1.8vw, 1.08rem);
  line-height: 1.55;
}
.value strong { color: var(--paper); font-weight: 600; }
.why-line {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.1rem;
  margin: 1.25rem 0 0;
  padding: 0;
}
.why-line li {
  position: relative;
  color: var(--paper);
  font-size: 0.88rem;
  font-weight: 500;
  padding-left: 1rem;
}
.why-line li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.45em;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--leaf-bright);
  box-shadow: 0 0 10px var(--glow);
}
.hero-ctas {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.story-block {
  margin-top: 1.15rem;
  max-width: 40rem;
  display: grid;
  gap: 0.75rem;
}
.story-block p {
  color: var(--mist);
  font-size: clamp(0.98rem, 1.7vw, 1.08rem);
  line-height: 1.55;
}
.story-block strong {
  color: var(--paper);
  font-weight: 600;
}

.for-whom {
  padding: clamp(3rem, 7vw, 5rem) clamp(1rem, 4vw, 3rem);
  max-width: 1100px;
  margin: 0 auto;
}
.for-whom h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.7rem, 3.8vw, 2.5rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0.5rem 0 1.75rem;
  max-width: 22ch;
}
.job-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.35rem;
}
.job-list li {
  padding: 0 0 1.25rem;
  border-bottom: 1px solid var(--line);
}
.job-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.job-label {
  font-family: "Sora", system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent, #2f9a68);
  margin: 0 0 0.45rem;
}
.job {
  margin: 0;
  color: var(--mist);
  font-size: 1.02rem;
  line-height: 1.55;
  max-width: 52rem;
}
.job strong {
  color: var(--paper);
  font-weight: 600;
}
.aside {
  margin-top: 1.75rem;
  color: var(--mist);
  font-size: 0.92rem;
  max-width: 46rem;
  line-height: 1.55;
  padding: 1rem 1.15rem;
  border-left: 2px solid rgba(61, 190, 122, 0.45);
  background: rgba(61, 190, 122, 0.05);
  border-radius: 0 12px 12px 0;
}

.desk-facts {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
  max-width: 38rem;
}
.desk-facts li {
  color: var(--mist);
  font-size: 0.98rem;
  line-height: 1.5;
  padding-left: 0.9rem;
  border-left: 2px solid rgba(61, 190, 122, 0.4);
}
.desk-facts strong { color: var(--paper); }
.start-prices { max-width: 1100px; }

.caps-band {
  padding: 4.5rem clamp(1.25rem, 4vw, 3rem) 4rem;
  max-width: 1100px;
  margin: 0 auto;
}
.caps-band h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.75rem, 3.5vw, 2.45rem);
  margin: 0.35rem 0 1.5rem;
  max-width: 18ch;
}
.caps-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem 1.1rem;
}
.caps-grid li {
  padding: 0.95rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.9rem;
  color: var(--mist);
  line-height: 1.4;
}
.caps-grid strong {
  display: block;
  color: var(--paper);
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
  font-weight: 600;
}
@media (max-width: 820px) {
  .caps-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .caps-grid { grid-template-columns: 1fr; }
}

@media (max-width: 960px) {
  .job-list { gap: 1.1rem; }
}
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.85rem 1.35rem; border-radius: 999px;
  font-weight: 700; font-size: 0.95rem;
  border: 1px solid var(--line);
  transition: transform 0.25s var(--ease), background 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.btn.primary {
  background: var(--leaf-bright); border-color: transparent; color: #04150c;
  box-shadow: 0 12px 40px rgba(61, 190, 122, 0.25);
}
.btn.primary:hover { transform: translateY(-2px); box-shadow: 0 18px 50px rgba(61, 190, 122, 0.4); }
.btn.ghost { background: rgba(255, 255, 255, 0.04); }
.btn.ghost:hover { border-color: var(--leaf-bright); }

.reveal {
  opacity: 0; transform: translateY(18px);
  animation: rise 0.9s var(--ease) forwards;
}
.delay-1 { animation-delay: 0.12s; }
.delay-2 { animation-delay: 0.24s; }
.delay-3 { animation-delay: 0.36s; }
.delay-4 { animation-delay: 0.7s; }
@keyframes rise {
  to { opacity: 1; transform: none; }
}

.scroll-hint {
  position: absolute; bottom: 1.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  color: var(--mist); font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase;
}
.scroll-hint i {
  width: 1px; height: 28px;
  background: linear-gradient(to bottom, var(--leaf-bright), transparent);
  animation: drip 1.6s ease-in-out infinite;
}
@keyframes drip {
  0%, 100% { transform: scaleY(0.4); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* —— Deck stage —— */
.deck-stage {
  padding: clamp(2.5rem, 8vw, 5rem) clamp(0.75rem, 4vw, 3rem) 2rem;
  background:
    radial-gradient(900px 500px at 80% 0%, rgba(61, 190, 122, 0.1), transparent 55%),
    var(--ink-2);
}
.deck-chrome {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem 1.5rem;
  align-items: end;
  margin-bottom: 1rem;
  max-width: 1200px;
  margin-inline: auto;
  min-width: 0;
}
.deck-progress {
  grid-column: 1 / -1;
  height: 3px; background: rgba(255, 255, 255, 0.08); border-radius: 99px; overflow: hidden;
}
.deck-progress i {
  display: block; height: 100%; width: 8.333%;
  background: linear-gradient(90deg, var(--leaf), var(--leaf-bright));
  transition: width 0.45s var(--ease);
  box-shadow: 0 0 16px var(--glow);
}
.deck-count { color: var(--mist); font-variant-numeric: tabular-nums; font-size: 0.9rem; }

.deck {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  min-width: 0;
  border-radius: clamp(16px, 3vw, 28px);
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(700px 400px at 0% 100%, rgba(212, 98, 42, 0.08), transparent 50%),
    radial-gradient(800px 500px at 100% 0%, rgba(61, 190, 122, 0.12), transparent 55%),
    #050807;
  outline: none;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.45);
  -webkit-user-select: none;
  user-select: none;
  touch-action: pan-y;
}
.deck:focus-visible { border-color: rgba(61, 190, 122, 0.55); }
.deck a, .deck button { -webkit-user-select: auto; user-select: auto; }

/* Flow layout (not absolute) so every viewport sizes to the active slide. */
.slide {
  display: none;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1rem, 3vw, 2.5rem);
  padding: clamp(1.1rem, 3.5vw, 2.75rem);
  align-items: center;
  min-width: 0;
}
.slide.on {
  display: grid;
  animation: slideIn 0.5s var(--ease) both;
}
.slide-copy { min-width: 0; }
@keyframes slideIn {
  from { opacity: 0; transform: translate3d(18px, 0, 0); }
  to { opacity: 1; transform: none; }
}

.slide-copy h2, .slide-brand {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  font-size: clamp(1.85rem, 3.8vw, 3rem);
  margin: 0.4rem 0 0.85rem;
}
.slide-brand { font-size: clamp(2.8rem, 6vw, 4.5rem); line-height: 0.92; }
.slide-copy .lead { color: var(--paper); font-size: 1.15rem; font-weight: 500; margin-bottom: 0.65rem; }
.slide-copy p { color: var(--mist); max-width: 36rem; }
.slide-copy.wide { max-width: none; }
.slide-copy .btn { margin-top: 1.25rem; }

.loop { list-style: none; display: grid; gap: 0.85rem; margin-top: 1rem; }
.loop li {
  display: grid; grid-template-columns: 2.2rem 1fr; gap: 0.75rem; align-items: start;
  color: var(--mist);
}
.loop b {
  width: 2.2rem; height: 2.2rem; border-radius: 999px;
  display: grid; place-items: center;
  background: var(--leaf); color: var(--white); font-size: 0.8rem;
  box-shadow: 0 0 20px rgba(61, 190, 122, 0.25);
}

.starter-list {
  margin: 0.85rem 0 0 1.1rem;
  color: var(--mist);
  display: grid; gap: 0.4rem;
}

.price-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 1rem;
}
.price-row > div {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
}
.price-row .hi {
  border-color: rgba(61, 190, 122, 0.45);
  background: rgba(61, 190, 122, 0.08);
}
.price-row h3 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.05rem; margin-bottom: 0.25rem;
}
.price {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.85rem; color: var(--leaf-bright); margin: 0.2rem 0;
}
.price span { font-size: 0.85rem; color: var(--mist); }
.price-row p:last-child { font-size: 0.85rem; }

.slide-visual {
  justify-self: end;
  width: min(100%, 520px);
  position: relative;
  min-width: 0;
}
.slide-visual::after {
  content: "";
  position: absolute; inset: -8% -6%;
  background: radial-gradient(circle at 50% 50%, var(--glow), transparent 65%);
  z-index: -1; opacity: 0.55;
  animation: pulse 4.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes pulse {
  0%, 100% { opacity: 0.35; transform: scale(0.96); }
  50% { opacity: 0.65; transform: scale(1.02); }
}
.slide-visual img {
  width: 100%;
  max-height: min(52vh, 540px);
  object-fit: cover;
  border-radius: clamp(14px, 2.5vw, 20px);
  border: 1px solid var(--line);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
}

.deck-nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 0.5rem;
  max-width: 1200px; margin: 1.1rem auto 0;
  min-width: 0;
}
.deck-nav button {
  font: inherit; font-weight: 600;
  border: 1px solid var(--line); background: rgba(255, 255, 255, 0.03);
  color: var(--paper); padding: 0.7rem 1.1rem; border-radius: 999px; cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
  min-height: 44px;
  min-width: 44px;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}
.deck-nav button:hover { border-color: var(--leaf-bright); transform: translateY(-1px); }
.deck-nav button:focus-visible {
  outline: 2px solid var(--leaf-bright);
  outline-offset: 2px;
}
.dots {
  display: flex; gap: 0.2rem; flex-wrap: wrap; justify-content: center;
  align-items: center;
  flex: 1;
  min-width: 0;
  max-width: 100%;
  padding: 0 0.25rem;
}
.dots button {
  width: 44px; height: 44px; border-radius: 50%; padding: 0; border: 0;
  background: transparent; cursor: pointer;
  position: relative;
  flex: 0 0 auto;
  -webkit-tap-highlight-color: transparent;
}
.dots button::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 8px; height: 8px;
  margin: -4px 0 0 -4px;
  border-radius: 50%;
  background: rgba(159, 181, 168, 0.4);
}
.dots button.on::after {
  background: var(--leaf-bright);
  box-shadow: 0 0 12px var(--glow);
  transform: scale(1.35);
  transform-origin: center;
}
.deck-hint {
  text-align: center; color: rgba(159, 181, 168, 0.55);
  font-size: 0.78rem; margin-top: 0.75rem;
  padding: 0 0.75rem;
}
.deck-hint .kbd-hint { display: inline; }
.deck-hint .touch-hint { display: none; }

/* —— Proof rail —— */
.proof {
  padding: clamp(3rem, 7vw, 5rem) clamp(1rem, 4vw, 3rem);
}
.proof h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: -0.02em; margin: 0.4rem 0 1.5rem;
}
.proof-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.proof-rail figure {
  overflow: hidden; border-radius: 18px; border: 1px solid var(--line);
  background: #050807;
  transition: transform 0.4s var(--ease), border-color 0.3s;
}
.proof-rail figure:hover {
  transform: translateY(-6px);
  border-color: rgba(61, 190, 122, 0.4);
}
.proof-rail img {
  aspect-ratio: 1; object-fit: cover; width: 100%;
  transition: transform 0.6s var(--ease);
}
.proof-rail figure:hover img { transform: scale(1.04); }
.proof-rail figcaption {
  padding: 0.85rem 1rem 1rem; color: var(--mist); font-size: 0.9rem;
}

/* —— Voice / Desk / start —— */
.voice-band, .desk-band, .start-band {
  padding: clamp(3rem, 7vw, 5rem) clamp(1rem, 4vw, 3rem);
}
.voice-band, .desk-band {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 2rem; align-items: center;
}
.voice-band {
  background: linear-gradient(180deg, transparent, rgba(212, 98, 42, 0.06), transparent);
}
.desk-band {
  background: linear-gradient(180deg, transparent, rgba(61, 190, 122, 0.05), transparent);
}
.voice-band h2, .desk-band h2, .start-band h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: -0.02em; margin: 0.4rem 0 0.85rem;
}
.voice-copy p, .desk-copy p { color: var(--mist); max-width: 38rem; }
.voice-visual img, .desk-visual img {
  border-radius: 22px; border: 1px solid var(--line);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}
.codeblock {
  margin-top: 1.25rem;
  background: #030605;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.1rem 1.25rem;
  overflow-x: auto;
  color: var(--paper);
  font-size: 0.86rem;
  line-height: 1.65;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.start-ctas { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1.25rem; }

footer {
  padding: 2rem clamp(1rem, 4vw, 3rem) max(3rem, env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--line);
  color: var(--mist); font-size: 0.88rem;
}

/* —— Responsive —— */
@media (max-width: 1100px) {
  .price-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 960px) {
  .slide,
  .voice-band,
  .desk-band { grid-template-columns: 1fr; }
  .proof-rail { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .slide {
    align-items: start;
    padding: 1.15rem 1.1rem 1.35rem;
    gap: 1.1rem;
  }
  .slide-copy h2,
  .slide-brand {
    font-size: clamp(1.65rem, 5.5vw, 2.35rem);
  }
  .slide-brand { font-size: clamp(2.4rem, 10vw, 3.4rem); }
  .slide-visual { justify-self: stretch; width: 100%; order: -1; }
  .slide-visual img { max-height: min(38vh, 360px); }
  .top nav a:not(.cta) { display: none; }

  /* Phone/tablet hero: keep brand readable; kill photo-text bleed */
  .hero {
    align-items: end;
    min-height: 100svh;
    min-height: 100dvh;
  }
  .hero-plane img {
    object-position: 88% 40%;
    animation: none;
    transform: scale(1.08) translate3d(8%, 0, 0);
    filter: saturate(1.02) contrast(1.08) brightness(0.72);
  }
  .hero-veil {
    background:
      linear-gradient(
        180deg,
        rgba(7, 11, 9, 0.88) 0%,
        rgba(7, 11, 9, 0.72) 28%,
        rgba(7, 11, 9, 0.92) 62%,
        rgba(7, 11, 9, 0.98) 100%
      ),
      linear-gradient(
        90deg,
        rgba(7, 11, 9, 0.97) 0%,
        rgba(7, 11, 9, 0.92) 55%,
        rgba(7, 11, 9, 0.55) 78%,
        rgba(7, 11, 9, 0.35) 100%
      );
  }
  .hero-inner {
    padding:
      clamp(4.75rem, 14vw, 6rem)
      clamp(1.1rem, 5vw, 1.5rem)
      clamp(1.75rem, 5vh, 2.5rem);
    max-width: none;
  }
  h1 {
    font-size: clamp(3rem, 15vw, 4.25rem);
    line-height: 0.92;
    margin: 0.25rem 0 0.75rem;
    text-shadow: 0 12px 40px rgba(0, 0, 0, 0.7);
  }
  .tagline {
    font-size: clamp(1.05rem, 4.2vw, 1.25rem);
    max-width: none;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.65);
  }
  /* Keep first viewport light: long “what/why” copy moves below the fold feel */
  .story-block {
    margin-top: 0.85rem;
    gap: 0.55rem;
  }
  .story-block p {
    font-size: 0.92rem;
    line-height: 1.45;
  }
  .why-line {
    margin-top: 1rem;
  }
  .hero-ctas {
    margin-top: 1.15rem;
  }
  .scroll-hint { display: none; }
  .deck-hint .kbd-hint { display: none; }
  .deck-hint .touch-hint { display: inline; }
  .btn {
    min-height: 44px;
    padding: 0.8rem 1.2rem;
  }
}

@media (max-width: 720px) {
  .deck-nav button { padding: 0.65rem 0.85rem; font-size: 0.9rem; }
  .starter-list { margin-left: 1rem; font-size: 0.92rem; }
  .price-row > div { padding: 0.85rem; }
  .price { font-size: 1.55rem; }
}

@media (max-width: 600px) {
  .proof-rail { grid-template-columns: 1fr; }
  .price-row { grid-template-columns: 1fr; }
  .hero-ctas .btn,
  .start-ctas .btn { width: 100%; }
  .tagline { max-width: none; }
  .why-line { gap: 0.45rem 0.85rem; }
  .dots button { width: 36px; height: 36px; }
  .deck-chrome {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .deck-count { justify-self: start; }

  /* iPhone-class: brand + tagline + CTA first; dense copy after */
  .story-block p:nth-child(n + 2) {
    display: none;
  }
  .hero-plane img {
    object-position: 92% 35%;
    transform: scale(1.1) translate3d(12%, 0, 0);
    brightness: 0.65;
    filter: saturate(1.02) contrast(1.1) brightness(0.62);
  }
  .hero-veil {
    background:
      linear-gradient(
        180deg,
        rgba(7, 11, 9, 0.9) 0%,
        rgba(7, 11, 9, 0.78) 22%,
        rgba(7, 11, 9, 0.94) 58%,
        rgba(7, 11, 9, 0.99) 100%
      ),
      linear-gradient(
        100deg,
        rgba(7, 11, 9, 0.98) 0%,
        rgba(7, 11, 9, 0.95) 62%,
        rgba(7, 11, 9, 0.6) 100%
      );
  }
}

@media (max-width: 380px) {
  .logo { font-size: 1.2rem; }
  .top .cta { padding: 0.5rem 0.85rem; font-size: 0.85rem; }
  .slide-visual img { max-height: 30vh; }
}

/* Short landscape phones / tablets */
@media (max-height: 520px) and (orientation: landscape) {
  .hero { min-height: auto; }
  .hero-inner { padding-top: 4rem; padding-bottom: 2rem; }
  .slide-visual img { max-height: 55vh; }
  .scroll-hint { display: none; }
}

/* Coarse pointers (touch) — keep targets comfortable */
@media (pointer: coarse) {
  .dots button { width: 44px; height: 44px; }
  .deck-nav button { min-height: 48px; }
  .deck-hint .kbd-hint { display: none; }
  .deck-hint .touch-hint { display: inline; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal,
  .slide.on,
  .hero-plane img,
  .slide-visual::after,
  .scroll-hint i {
    animation: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .deck-progress i,
  .proof-rail figure,
  .proof-rail img,
  .btn,
  .top .cta {
    transition: none !important;
  }
}
