:root {
  --forest: #103f30;
  --forest-deep: #08281f;
  --forest-soft: #2a6a52;
  --cream: #f5f1e8;
  --cream-deep: #e8e7dc;
  --ink: #11251d;
  --gold: #c38322;
  --gold-light: #f2be57;
  --lime: #ccff65;
  --line-dark: rgba(17,37,29,.15);
  --line-light: rgba(245,241,232,.17);
  --display: "Manrope", sans-serif;
  --body: "DM Sans", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--forest-deep); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, a, summary { -webkit-tap-highlight-color: transparent; }
::selection { color: var(--forest-deep); background: var(--lime); }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 11px 16px;
  color: var(--forest-deep);
  background: var(--lime);
  transform: translateY(-180%);
  transition: transform .2s;
}
.skip-link:focus { transform: none; }

.page-progress {
  position: fixed;
  z-index: 120;
  inset: 0 0 auto;
  height: 3px;
  background: rgba(255,255,255,.06);
}
.page-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
}
.cursor-orbit {
  position: fixed;
  z-index: 0;
  width: 34rem;
  height: 34rem;
  border: 1px solid rgba(16,63,48,.08);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(204,255,101,.08), transparent 65%);
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity .3s;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: 84px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto;
  align-items: center;
  gap: clamp(20px, 4vw, 64px);
  padding: 0 clamp(20px, 4vw, 68px);
  color: var(--cream);
  transition: height .35s, background .35s, border-color .35s;
}
.site-header.is-scrolled {
  height: 68px;
  background: rgba(8,40,31,.88);
  border-bottom: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(18px);
}
.studio-brand,
.product-brand { width: max-content; display: inline-flex; align-items: center; }
.studio-brand { gap: 10px; font: 700 11px/1 var(--display); letter-spacing: .12em; }
.studio-brand b { color: var(--lime); }
.domino-mark { display: flex; width: 24px; height: 22px; gap: 2px; }
.domino-mark i { width: 7px; height: 21px; border: 1.4px solid currentColor; border-radius: 2px; transform-origin: bottom; }
.domino-mark i:first-child { transform: rotate(-16deg); }
.domino-mark i:last-child { transform: rotate(16deg); }
.product-brand { gap: 9px; }
.product-brand strong { font: 800 17px/1 var(--display); letter-spacing: -.04em; }
.product-brand strong span { color: var(--gold-light); }
.leaf-mark {
  position: relative;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}
.leaf-mark::before {
  content: "";
  width: 11px;
  height: 14px;
  border: 1.5px solid currentColor;
  border-radius: 90% 5% 90% 5%;
  transform: rotate(42deg);
}
.leaf-mark i { position: absolute; width: 10px; height: 1px; background: currentColor; transform: rotate(-42deg); }
.site-header nav { display: flex; justify-content: flex-end; gap: 28px; }
.site-header nav a { position: relative; font-size: 12px; }
.site-header nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 -7px;
  height: 1px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s;
}
.site-header nav a:hover::after,
.site-header nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: var(--forest-deep);
  border-radius: 100px;
  background: var(--lime);
  font-size: 12px;
  font-weight: 700;
}
.header-cta span { font-size: 17px; transition: transform .2s; }
.header-cta:hover span { transform: translate(3px, -3px); }

.hero {
  position: relative;
  min-height: 150vh;
  padding: 150px clamp(20px, 6vw, 100px) 0;
  color: var(--cream);
  background: var(--forest-deep);
  isolation: isolate;
  overflow: clip;
}
.hero-grid {
  position: absolute;
  z-index: -3;
  inset: 0;
  opacity: .34;
  background-image:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 7vw 7vw;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}
.hero::after {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background: linear-gradient(145deg, transparent 25%, rgba(41,112,83,.4) 72%, transparent);
}
.hero-glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  will-change: transform;
}
.glow-one { top: -20vw; right: -12vw; width: 52vw; aspect-ratio: 1; border: 1px solid rgba(204,255,101,.18); box-shadow: inset 0 0 110px rgba(204,255,101,.04); }
.glow-two { top: 35%; left: -15vw; width: 45vw; aspect-ratio: 1; background: rgba(69,145,111,.16); filter: blur(80px); }
.hero-copy { position: relative; z-index: 2; width: min(1380px, 100%); margin: auto; }
.eyebrow { margin: 0; font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow span { color: var(--gold-light); padding-inline: 7px; }
.hero h1 {
  max-width: 1380px;
  margin: clamp(32px, 5vh, 64px) 0 0;
  font: 600 clamp(60px, 9.4vw, 150px)/.88 var(--display);
  letter-spacing: -.072em;
}
.title-line { display: block; overflow: hidden; padding-bottom: .09em; }
.title-line > span { display: block; transform: translateY(112%); animation: title-in 1.05s cubic-bezier(.16,.8,.24,1) forwards; }
.title-line:nth-child(2) > span { animation-delay: .14s; }
.title-line.accent { color: var(--lime); padding-left: clamp(0px, 9vw, 140px); }
@keyframes title-in { to { transform: none; } }
.hero-actions {
  width: min(760px, 100%);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 42px;
  margin: 42px 0 18px auto;
}
.hero-actions > p { margin: 0; color: rgba(245,241,232,.69); font-size: clamp(17px, 1.4vw, 21px); line-height: 1.65; }
.button-row { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; }
.button {
  min-height: 54px;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 0 22px;
  border: 1px solid currentColor;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  transition: color .25s, background .25s, transform .25s;
}
.button span { font-size: 20px; transition: transform .25s; }
.button:hover span { transform: translate(4px, -4px); }
.button-primary { color: var(--forest-deep); background: var(--lime); border-color: var(--lime); }
.button-primary:hover { background: var(--cream); border-color: var(--cream); transform: translateY(-2px); }
.text-link { width: max-content; display: inline-flex; align-items: center; gap: 14px; padding-bottom: 7px; border-bottom: 1px solid currentColor; font-size: 12px; font-weight: 600; }
.text-link span { transition: transform .25s; }
.text-link:hover span { transform: translateY(3px); }

.hero-product {
  position: relative;
  z-index: 3;
  width: min(1250px, 89vw);
  margin: 0 auto;
  perspective: 1500px;
  transform-style: preserve-3d;
  transition: transform .12s ease-out;
}
.browser-window {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: clamp(15px, 2vw, 28px);
  background: #f8f6ef;
  box-shadow: 0 65px 130px rgba(0,0,0,.48);
  transform: rotateX(2deg);
}
.browser-bar {
  height: 44px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  padding: 0 15px;
  color: #6a7771;
  border-bottom: 1px solid #dce2dd;
  background: #f8faf7;
}
.browser-dots { display: flex; gap: 6px; }
.browser-dots i { width: 8px; height: 8px; border-radius: 50%; background: #d2b157; }
.browser-dots i:first-child { background: #d77c61; }
.browser-dots i:last-child { background: #6cb17a; }
.browser-url { min-width: 220px; padding: 7px 18px; border: 1px solid #dfe5e0; border-radius: 100px; background: white; font-size: 9px; text-align: center; }
.live-state { justify-self: end; display: flex; align-items: center; gap: 6px; color: #34765a; font-size: 8px; font-weight: 800; letter-spacing: .12em; }
.live-state i { width: 6px; height: 6px; border-radius: 50%; background: #37a16f; box-shadow: 0 0 0 5px rgba(55,161,111,.12); }
.browser-window > img { width: 100%; aspect-ratio: 1.777; object-fit: cover; object-position: top; }
.floating-card {
  position: absolute;
  z-index: 4;
  display: grid;
  gap: 5px;
  padding: 16px 19px;
  color: var(--ink);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 14px;
  background: rgba(250,248,241,.88);
  box-shadow: 0 18px 50px rgba(0,0,0,.2);
  backdrop-filter: blur(15px);
  transform: translateZ(55px);
}
.floating-card span { color: #95661f; font-size: 8px; letter-spacing: .15em; }
.floating-card b { font: 700 14px/1 var(--display); }
.card-trust { left: -4%; top: 17%; }
.card-city { right: -3%; bottom: 14%; }
.image-note { margin: 16px 0 0; color: rgba(245,241,232,.5); font-size: 10px; letter-spacing: .08em; text-align: right; }

.proof-rail {
  position: relative;
  z-index: 4;
  width: min(1280px, calc(100% - 6vw));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 100px auto 0;
  color: var(--ink);
  border-radius: 18px 18px 0 0;
  background: var(--cream);
  box-shadow: 0 -20px 60px rgba(0,0,0,.12);
}
.proof-rail > div { display: grid; grid-template-columns: auto 1fr; gap: 6px 15px; padding: 28px 30px; border-right: 1px solid var(--line-dark); }
.proof-rail > div:last-child { border-right: 0; }
.proof-rail span { grid-row: span 2; color: var(--gold); font-size: 10px; }
.proof-rail strong { font: 700 15px/1.2 var(--display); }
.proof-rail small { color: #68756f; font-size: 11px; }

.section-label { display: flex; align-items: center; gap: 13px; color: #61706a; font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.section-label span { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; letter-spacing: 0; }
.section-label.light { color: rgba(245,241,232,.63); }

.why { padding: clamp(110px, 14vw, 220px) clamp(20px, 7vw, 120px); background: var(--cream); }
.why-heading { display: grid; grid-template-columns: 1.4fr .6fr; align-items: end; gap: clamp(40px, 8vw, 140px); margin: 70px 0 120px; }
.why h2,
.trust h2,
.faq h2 { margin: 0; font: 600 clamp(54px, 7.5vw, 116px)/.95 var(--display); letter-spacing: -.065em; }
.why h2 em,
.trust h2 em,
.faq h2 em { color: var(--forest-soft); font-style: normal; }
.why-heading > p,
.trust-heading > p { margin: 0 0 10px; color: #68756f; font-size: 18px; line-height: 1.7; }
.why-cards { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-dark); }
.why-cards article { min-height: 330px; display: flex; flex-direction: column; padding: 28px clamp(20px, 3vw, 48px) 0 0; border-right: 1px solid var(--line-dark); }
.why-cards article + article { padding-left: clamp(20px, 3vw, 48px); }
.why-cards article:last-child { border-right: 0; }
.why-cards article > span { color: var(--gold); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.why-cards h3 { margin: auto 0 16px; font: 600 clamp(24px, 2.3vw, 36px)/1.12 var(--display); letter-spacing: -.04em; }
.why-cards p { margin: 0; color: #68756f; line-height: 1.6; }

.story { position: relative; height: 320vh; color: var(--cream); background: var(--forest-deep); }
.story-sticky {
  position: sticky;
  top: 0;
  min-height: 100svh;
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  align-items: center;
  gap: clamp(50px, 8vw, 130px);
  padding: 95px clamp(20px, 6vw, 100px) 70px;
  overflow: hidden;
}
.story-sticky::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .38;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 8vw 8vw;
  mask-image: linear-gradient(120deg, black, transparent 72%);
}
.story-copy,
.story-stage { position: relative; z-index: 2; }
.story-copy h2 { margin: 38px 0 55px; font: 600 clamp(46px, 5vw, 78px)/.98 var(--display); letter-spacing: -.055em; }
.story-copy h2 em { color: var(--lime); font-style: normal; }
.story-steps { margin: 0; padding: 0; list-style: none; }
.story-steps li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 16px;
  padding: 20px 0;
  color: rgba(245,241,232,.35);
  border-top: 1px solid var(--line-light);
  transition: color .5s, opacity .5s, transform .5s;
}
.story-steps li:last-child { border-bottom: 1px solid var(--line-light); }
.story-steps li.is-active { color: var(--cream); transform: translateX(10px); }
.story-steps li > span { color: var(--gold-light); font-size: 10px; padding-top: 5px; }
.story-steps h3 { margin: 0 0 8px; font: 600 18px/1.2 var(--display); }
.story-steps p { margin: 0; color: inherit; font-size: 13px; line-height: 1.55; }
.story-stage { min-height: min(72vh, 710px); perspective: 1500px; }
.story-screen {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(820px, 100%);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: clamp(14px, 2vw, 26px);
  background: var(--cream);
  box-shadow: 0 50px 110px rgba(0,0,0,.5);
  opacity: .08;
  transform: translate(-50%, -50%) translate3d(0, 80px, -120px) rotateX(5deg) scale(.88);
  transition: opacity .65s, transform .8s cubic-bezier(.16,.8,.24,1);
}
.story-screen figcaption {
  height: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  color: #5c6b65;
  border-bottom: 1px solid #dde4df;
  background: #f8faf7;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.story-screen figcaption span { color: var(--gold); }
.story-screen img { width: 100%; aspect-ratio: 1.777; object-fit: cover; object-position: top; }
.story[data-active="0"] .screen-search,
.story[data-active="1"] .screen-map,
.story[data-active="2"] .screen-stores { z-index: 3; opacity: 1; transform: translate(-50%, -50%) translate3d(0, 0, 0) rotateX(0) scale(1); }
.story[data-active="1"] .screen-search,
.story[data-active="2"] .screen-map { opacity: .22; transform: translate(-50%, -50%) translate3d(-70px, -70px, -100px) rotate(-4deg) scale(.86); }
.story[data-active="0"] .screen-map,
.story[data-active="1"] .screen-stores { opacity: .14; transform: translate(-50%, -50%) translate3d(70px, 70px, -100px) rotate(4deg) scale(.86); }
.stage-counter { position: absolute; z-index: 6; right: 0; bottom: 0; color: rgba(245,241,232,.5); font: 500 12px/1 var(--display); letter-spacing: .15em; }
.stage-counter span { color: var(--lime); font-size: 27px; }

.taxonomy { padding: 42px 0; color: var(--forest-deep); background: var(--lime); overflow: hidden; }
.taxonomy-row { width: 100%; overflow: hidden; }
.taxonomy-row > div { width: max-content; display: flex; align-items: center; animation: marquee 26s linear infinite; }
.taxonomy-row span { padding: 8px 22px; font: 700 clamp(20px, 2.6vw, 38px)/1 var(--display); letter-spacing: -.04em; }
.taxonomy-row i { font-style: normal; }
.taxonomy-row.categories { margin-top: 12px; color: rgba(8,40,31,.66); }
.taxonomy-row.categories > div { animation-direction: reverse; animation-duration: 34s; }
.taxonomy-row.categories span { padding-inline: 16px; font: 600 12px/1 var(--body); letter-spacing: .08em; text-transform: uppercase; }
@keyframes marquee { to { transform: translateX(-50%); } }

.trust { padding: clamp(110px, 14vw, 220px) clamp(20px, 7vw, 120px); background: #e9ece4; }
.trust-heading { display: grid; grid-template-columns: 1.35fr .65fr; align-items: end; gap: clamp(40px, 8vw, 140px); margin: 70px 0 100px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.feature {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid rgba(17,37,29,.12);
  border-radius: 20px;
  background: rgba(255,255,255,.47);
  transition: color .3s, background .3s, transform .3s;
}
.feature:hover { color: var(--cream); background: var(--forest); transform: translateY(-5px); }
.feature-number { color: #728079; font-size: 10px; }
.feature-icon { width: 56px; height: 56px; display: grid; place-items: center; margin: 48px 0 auto; border: 1px solid currentColor; border-radius: 50%; font-size: 22px; }
.feature h3 { margin: 40px 0 12px; font: 600 23px/1.15 var(--display); letter-spacing: -.035em; }
.feature p { margin: 0; color: #69766f; line-height: 1.6; }
.feature:hover p,
.feature:hover .feature-number { color: rgba(245,241,232,.67); }
.feature-large { grid-row: span 2; min-height: 672px; background: var(--forest); color: var(--cream); }
.feature-large p,
.feature-large .feature-number { color: rgba(245,241,232,.63); }
.feature-large .feature-icon { width: 92px; height: 92px; margin-top: auto; font-size: 34px; }
.feature-large h3 { font-size: clamp(30px, 3vw, 46px); }
.feature-wide { grid-column: span 2; min-height: 300px; }

.statement {
  min-height: 110svh;
  display: grid;
  place-content: center;
  justify-items: center;
  padding: 120px 22px;
  color: var(--forest-deep);
  background: var(--gold-light);
  text-align: center;
}
.statement h2 { margin: 38px 0; font: 600 clamp(58px, 9vw, 142px)/.88 var(--display); letter-spacing: -.075em; }
.statement h2 em { color: var(--forest); font-style: normal; }
.statement > p:not(.eyebrow) { max-width: 680px; margin: 0 0 36px; color: rgba(8,40,31,.7); font-size: 18px; line-height: 1.7; }
.text-link.dark { font-size: 13px; }
.text-link.dark:hover span { transform: translate(3px, -3px); }

.paths { padding: clamp(110px, 13vw, 200px) clamp(20px, 6vw, 100px); background: var(--cream); }
.path-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 65px; }
.path { position: relative; min-height: 600px; display: flex; flex-direction: column; overflow: hidden; padding: clamp(28px, 4vw, 60px); border-radius: 26px; }
.path::before { content: ""; position: absolute; width: 430px; aspect-ratio: 1; right: -140px; bottom: -160px; border: 1px solid currentColor; border-radius: 50%; opacity: .16; }
.path-user { color: var(--cream); background: var(--forest); }
.path-owner { color: var(--forest-deep); background: var(--lime); }
.path-index { width: 45px; height: 45px; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; }
.path > p { margin: auto 0 18px; font-size: 11px; letter-spacing: .15em; text-transform: uppercase; opacity: .67; }
.path h2 { max-width: 650px; margin: 0 0 45px; font: 600 clamp(38px, 4vw, 64px)/1 var(--display); letter-spacing: -.055em; }
.path a { width: max-content; display: flex; align-items: center; gap: 28px; padding-bottom: 10px; border-bottom: 1px solid currentColor; font-weight: 700; }
.path a span { transition: transform .25s; }
.path a:hover span { transform: translate(4px, -4px); }

.faq { padding: clamp(110px, 14vw, 220px) clamp(20px, 7vw, 120px); background: #e9ece4; }
.faq-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(50px, 10vw, 160px); margin-top: 70px; }
.faq h2 { font-size: clamp(48px, 6vw, 90px); }
.faq-list { border-top: 1px solid var(--line-dark); }
details { border-bottom: 1px solid var(--line-dark); }
summary { display: flex; justify-content: space-between; align-items: center; gap: 30px; padding: 26px 0; cursor: pointer; font: 600 18px/1.35 var(--display); list-style: none; }
summary::-webkit-details-marker { display: none; }
summary span { flex: 0 0 36px; width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; transition: transform .3s, color .3s, background .3s; }
details[open] summary span { color: var(--cream); background: var(--forest); transform: rotate(45deg); }
details p { margin: -4px 70px 28px 0; color: #67746e; line-height: 1.7; }

.final-cta {
  position: relative;
  min-height: 105svh;
  display: grid;
  place-content: center;
  justify-items: center;
  overflow: hidden;
  padding: 130px 22px;
  color: var(--cream);
  background: var(--forest-deep);
  text-align: center;
}
.final-cta > *:not(.final-rings) { position: relative; z-index: 2; }
.final-rings { position: absolute; inset: 0; display: grid; place-items: center; }
.final-rings i { position: absolute; width: min(80vw, 1000px); aspect-ratio: 1; border: 1px solid rgba(204,255,101,.14); border-radius: 50%; }
.final-rings i:nth-child(2) { width: min(58vw, 760px); border-style: dashed; animation: orbit 24s linear infinite; }
.final-rings i:nth-child(3) { width: min(37vw, 510px); background: rgba(41,112,83,.12); }
@keyframes orbit { to { transform: rotate(360deg); } }
.final-cta h2 { margin: 42px 0 55px; font: 600 clamp(55px, 8.5vw, 132px)/.89 var(--display); letter-spacing: -.07em; }
.final-cta h2 em { color: var(--lime); font-style: normal; }
.button-final { color: var(--forest-deep); background: var(--lime); border-color: var(--lime); }
.button-final:hover { background: var(--cream); border-color: var(--cream); transform: translateY(-3px); }
.final-cta small { margin-top: 20px; color: rgba(245,241,232,.52); }

footer {
  display: grid;
  grid-template-columns: 1.3fr 1fr auto;
  gap: 50px;
  padding: 70px clamp(20px, 6vw, 100px) 35px;
  color: var(--cream);
  border-top: 1px solid var(--line-light);
  background: #061d17;
}
.footer-product .product-brand { margin-bottom: 22px; }
.footer-product p { max-width: 360px; margin: 0; color: rgba(245,241,232,.51); font-size: 13px; line-height: 1.6; }
footer nav { display: grid; gap: 13px; align-content: start; color: rgba(245,241,232,.65); font-size: 12px; }
footer nav a:hover { color: var(--lime); }
.footer-studio { display: flex; align-items: center; gap: 10px; color: rgba(245,241,232,.5); font-size: 11px; }
.copyright { grid-column: 2 / -1; margin: 10px 0 0; color: rgba(245,241,232,.35); font-size: 10px; }

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .8s cubic-bezier(.16,.8,.24,1), transform .8s cubic-bezier(.16,.8,.24,1);
}
.reveal.is-visible { opacity: 1; transform: none; }
.why-cards article:nth-child(2),
.feature:nth-child(2) { transition-delay: .08s; }
.why-cards article:nth-child(3),
.feature:nth-child(3) { transition-delay: .16s; }
.feature:nth-child(4) { transition-delay: .24s; }
.feature:nth-child(5) { transition-delay: .32s; }

@media (max-width: 1100px) {
  .site-header { grid-template-columns: 1fr auto auto; }
  .site-header nav { display: none; }
  .hero { min-height: auto; }
  .why-heading,
  .trust-heading { grid-template-columns: 1fr; }
  .why-heading > p,
  .trust-heading > p { max-width: 650px; }
  .story-sticky { grid-template-columns: .8fr 1.2fr; gap: 45px; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .feature-large { grid-row: span 2; }
  .feature-wide { grid-column: span 1; }
}

@media (max-width: 800px) {
  .site-header { height: 70px; grid-template-columns: 1fr auto; padding-inline: 17px; }
  .site-header > .product-brand { display: none; }
  .header-cta { padding: 10px 13px; }
  .header-cta span { display: none; }
  .hero { padding: 120px 18px 0; }
  .hero-grid { background-size: 22vw 22vw; }
  .hero h1 { font-size: clamp(45px, 13.6vw, 70px); line-height: .92; }
  .title-line.accent { padding-left: 0; }
  .hero-actions { grid-template-columns: 1fr; gap: 28px; margin-block: 38px 55px; }
  .button-row { flex-direction: row; flex-wrap: wrap; align-items: center; }
  .hero-product { width: 100%; }
  .browser-bar { height: 30px; padding-inline: 9px; }
  .browser-url { min-width: 110px; padding: 4px 10px; }
  .floating-card { padding: 10px 12px; }
  .floating-card b { font-size: 11px; }
  .card-trust { left: -4%; top: -12%; }
  .card-city { right: -2%; bottom: -18%; }
  .image-note { margin-top: 35px; font-size: 8px; }
  .proof-rail { width: calc(100% + 36px); grid-template-columns: 1fr; margin: 85px -18px 0; border-radius: 0; }
  .proof-rail > div { border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .proof-rail > div:last-child { border-bottom: 0; }
  .why-heading { margin: 50px 0 70px; }
  .why h2,
  .trust h2 { font-size: clamp(44px, 13vw, 68px); }
  .why-cards { grid-template-columns: 1fr; }
  .why-cards article,
  .why-cards article + article { min-height: 260px; padding: 25px 0; border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .why-cards h3 { margin-top: auto; }
  .story { height: auto; }
  .story-sticky { position: relative; min-height: auto; grid-template-columns: 1fr; padding: 105px 20px; }
  .story-copy h2 { margin-bottom: 40px; }
  .story-steps li { color: var(--cream); transform: none !important; }
  .story-stage { min-height: auto; display: grid; gap: 22px; }
  .story-screen,
  .story[data-active] .story-screen {
    position: relative;
    inset: auto;
    width: 100%;
    opacity: 1;
    transform: none;
  }
  .stage-counter { display: none; }
  .taxonomy { padding-block: 32px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature,
  .feature-large,
  .feature-wide { grid-column: auto; grid-row: auto; min-height: 330px; }
  .feature-large { min-height: 440px; }
  .statement { min-height: auto; padding-block: 130px; }
  .statement h2 { font-size: clamp(54px, 15vw, 80px); }
  .path-grid { grid-template-columns: 1fr; }
  .path { min-height: 520px; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq h2 { font-size: clamp(46px, 12.5vw, 68px); }
  details p { margin-right: 0; }
  .final-rings i { width: 135vw; }
  .final-rings i:nth-child(2) { width: 100vw; }
  .final-rings i:nth-child(3) { width: 68vw; }
  .final-cta h2 { font-size: clamp(49px, 14vw, 76px); }
  footer { grid-template-columns: 1fr; }
  .copyright { grid-column: auto; }
}

@media (max-width: 430px) {
  .studio-brand { font-size: 10px; }
  .header-cta { font-size: 10px; }
  .hero h1 { font-size: 12.7vw; }
  .button { width: 100%; }
  .text-link { margin-left: 4px; }
  .card-trust { display: none; }
  .card-city { bottom: -25%; }
  .why,
  .trust,
  .paths,
  .faq { padding-inline: 18px; }
  summary { font-size: 16px; }
}

@media (pointer: coarse) {
  .cursor-orbit { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .title-line > span,
  .reveal { opacity: 1; transform: none; }
}
