:root {
  --paper: #f2efe6;
  --paper-light: #faf8f2;
  --ink: #111311;
  --ink-soft: #323632;
  --pine: #173c32;
  --pine-light: #285c4e;
  --orange: #ff5a2a;
  --orange-soft: #ff8a67;
  --orange-text: #a93212;
  --blueprint: #c7cfcc;
  --line: rgba(17, 19, 17, 0.17);
  --line-light: rgba(255, 255, 255, 0.2);
  --white: #fffdf8;
  --header-offset: 36px;
  --max: 1440px;
  --pad: clamp(20px, 4vw, 64px);
  --ease: cubic-bezier(.22, 1, .36, 1);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Helvetica Neue", "Neue Haas Grotesk Text Pro", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
button { color: inherit; }

::selection { color: var(--white); background: var(--orange); }

.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;
  left: 16px;
  top: 12px;
  z-index: 1000;
  padding: 12px 16px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

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

.section-shell {
  width: min(var(--max), 100%);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.topline {
  position: relative;
  z-index: 80;
  min-height: 36px;
  color: var(--paper);
  background: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.topline-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--max), 100%);
  min-height: 36px;
  margin-inline: auto;
  padding-inline: var(--pad);
}
.topline span { display: inline-flex; align-items: center; gap: 9px; }
.topline span i { width: 6px; height: 6px; border-radius: 50%; background: #5ef0b0; box-shadow: 0 0 12px rgba(94, 240, 176, .65); }
.motion-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.motion-toggle span { width: 15px; }

.site-header {
  position: fixed;
  top: var(--header-offset);
  left: 0;
  right: 0;
  z-index: 70;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 76px;
  padding: 0 var(--pad);
  border-bottom: 1px solid transparent;
  transition: min-height .35s var(--ease), background-color .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.site-header.scrolled {
  min-height: 66px;
  border-bottom-color: var(--line);
  background: rgba(242, 239, 230, .92);
  box-shadow: 0 12px 40px rgba(17, 19, 17, .06);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-mark { width: 37px; height: 36px; flex: 0 0 auto; }
.brand-name { display: grid; gap: 1px; line-height: 1; }
.brand-name strong { font-family: var(--serif); font-size: 18px; font-weight: 400; letter-spacing: -.02em; }
.brand-name b { color: var(--pine); font-size: 8px; font-weight: 900; letter-spacing: .36em; }
.site-nav { display: flex; justify-content: center; gap: clamp(22px, 3vw, 48px); }
.site-nav a { position: relative; font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--orange);
  transition: right .35s var(--ease);
}
.site-nav a:hover::after, .site-nav a:focus-visible::after { right: 0; }
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 12px 15px 12px 18px;
  border: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: color .25s ease, background .25s ease, transform .25s var(--ease);
}
.header-cta:hover { color: var(--paper); background: var(--ink); transform: translateY(-2px); }
.menu-toggle { display: none; }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(430px, .86fr);
  align-items: center;
  gap: clamp(40px, 7vw, 110px);
  min-height: 100svh;
  padding: clamp(136px, 16vh, 190px) var(--pad) clamp(76px, 10vh, 120px);
  overflow: hidden;
}
.hero-grid, .preview-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: clamp(54px, 5vw, 76px) clamp(54px, 5vw, 76px);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.7), rgba(0,0,0,.12) 78%, transparent);
}
.hero::before {
  content: "";
  position: absolute;
  width: 52vw;
  height: 52vw;
  left: -18vw;
  top: -25vw;
  z-index: -1;
  border: 1px solid rgba(255, 90, 42, .18);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(255,90,42,.018), 0 0 0 160px rgba(255,90,42,.015);
}
.hero-copy { position: relative; z-index: 2; max-width: 780px; }
.section-kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 38px;
  padding-bottom: 11px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.section-kicker b { color: var(--orange-text); }
.section-kicker-light { color: rgba(255,255,255,.6); border-bottom-color: var(--line-light); }
.section-kicker-light b { color: var(--orange-soft); }
.hero h1 {
  max-width: 900px;
  margin-bottom: 28px;
  font-size: clamp(3.55rem, 6.35vw, 7.1rem);
  line-height: .88;
  letter-spacing: -.066em;
  text-wrap: balance;
}
h1 em, h2 em { color: var(--pine); font-family: var(--serif); font-weight: 400; letter-spacing: -.045em; }
.hero-lede {
  max-width: 665px;
  margin-bottom: 32px;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.4vw, 1.28rem);
  line-height: 1.65;
}
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 24px; margin-bottom: 32px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 56px;
  padding: 0 14px 0 21px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .065em;
  text-transform: uppercase;
  transition: transform .3s var(--ease), color .25s ease, background .25s ease, box-shadow .3s ease;
}
.button i { display: grid; place-items: center; width: 32px; height: 32px; color: var(--ink); background: var(--paper); font-style: normal; transition: transform .3s var(--ease); }
.button:hover { transform: translateY(-3px); }
.button:hover i { transform: rotate(45deg); }
.button-dark { color: var(--paper); background: var(--ink); box-shadow: 0 18px 44px rgba(17,19,17,.14); }
.button-dark:hover { background: var(--pine); }
.text-action { display: inline-flex; gap: 20px; align-items: center; font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.text-action span { color: var(--orange); transition: transform .3s var(--ease); }
.text-action:hover span { transform: translateY(5px); }
.hero-trust { display: flex; flex-wrap: wrap; gap: 8px 22px; margin: 0; padding: 0; color: var(--ink-soft); font-size: 11px; font-weight: 700; letter-spacing: .06em; list-style: none; text-transform: uppercase; }
.hero-trust li { display: inline-flex; align-items: center; gap: 10px; }
.hero-trust li::before { content: ""; width: 5px; height: 5px; background: var(--orange); }

.hero-stage { position: relative; min-height: 610px; perspective: 1400px; }
.hero-browser {
  --rx: -4deg;
  --ry: -6deg;
  --tz: 0px;
  position: absolute;
  width: min(610px, 92%);
  aspect-ratio: 1 / .79;
  left: 2%;
  top: 7%;
  border: 1px solid var(--ink);
  background: var(--white);
  box-shadow: 30px 38px 0 rgba(23,60,50,.12), 0 38px 100px rgba(17,19,17,.18);
  transform: rotateX(var(--rx)) rotateY(var(--ry)) translateZ(var(--tz));
  transform-style: preserve-3d;
  transition: transform .18s ease-out;
}
.browser-chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 40px;
  padding: 0 13px;
  border-bottom: 1px solid var(--ink);
  background: var(--paper-light);
}
.browser-chrome > span { width: 7px; height: 7px; border: 1px solid var(--ink); border-radius: 50%; }
.browser-chrome p { flex: 1; margin: 0 0 0 10px; font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.browser-chrome i { width: 30px; height: 1px; background: var(--ink); }
.browser-page { position: relative; height: calc(100% - 40px); padding: clamp(18px, 3vw, 35px); overflow: hidden; background: #e9dfcf; }
.page-nav-demo { display: flex; justify-content: space-between; font-size: clamp(6px, .62vw, 9px); letter-spacing: .09em; }
.page-nav-demo span { opacity: .62; }
.page-hero-demo { position: relative; padding-top: clamp(30px, 5vw, 68px); }
.page-hero-demo::after { content: ""; position: absolute; width: 45%; aspect-ratio: 1; right: -10%; top: 14%; border-radius: 50%; background: radial-gradient(circle at 35% 35%, #d6a073 0 7%, #26382e 8% 20%, #b47b52 21% 37%, #173c32 38% 50%, #e9dfcf 51%); box-shadow: 0 0 0 18px rgba(17,19,17,.06); }
.page-hero-demo small { display: block; margin-bottom: 12px; color: var(--pine); font-size: clamp(6px, .55vw, 8px); font-weight: 800; letter-spacing: .13em; }
.page-hero-demo strong { position: relative; z-index: 1; display: block; font-family: var(--serif); font-size: clamp(30px, 4.1vw, 62px); line-height: .83; letter-spacing: -.06em; }
.page-hero-demo p { position: relative; z-index: 1; max-width: 43%; margin: 16px 0; font-size: clamp(8px, .75vw, 11px); line-height: 1.45; }
.page-hero-demo button { position: relative; z-index: 2; padding: 11px 13px; border: 0; color: var(--paper); background: var(--pine); font-size: clamp(6px, .56vw, 8px); font-weight: 800; letter-spacing: .08em; }
.page-hero-demo button span { margin-left: 18px; }
.page-proof-demo { position: absolute; left: 0; right: 0; bottom: 0; display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid rgba(17,19,17,.3); }
.page-proof-demo span { padding: 10px; border-right: 1px solid rgba(17,19,17,.3); font-size: clamp(6px, .54vw, 8px); font-weight: 800; text-align: center; letter-spacing: .1em; }
.build-layer { position: absolute; inset: 12%; display: flex; align-items: flex-end; padding: 11px; border: 1px solid; pointer-events: none; transform-style: preserve-3d; }
.build-layer span { padding: 6px 8px; font-size: 7px; font-weight: 800; letter-spacing: .1em; }
.layer-grid { border-color: rgba(255,90,42,.75); color: var(--orange); transform: translate3d(-38px, 25px, 85px); }
.layer-type { inset: 20% 8% 7% 19%; border-color: rgba(23,60,50,.8); color: var(--pine); transform: translate3d(32px, -17px, 135px); }
.layer-action { inset: 54% 33% 14% 9%; border-color: rgba(17,19,17,.8); color: var(--ink); transform: translate3d(-21px, 16px, 175px); }
.stage-note { position: absolute; z-index: 4; padding: 9px 11px; border: 1px solid var(--ink); background: var(--paper); font-size: 9px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.stage-note b { margin-right: 9px; color: var(--orange-text); }
.stage-note-a { left: 0; top: 2%; }
.stage-note-b { right: 0; top: 64%; }
.stage-index { position: absolute; right: 2%; bottom: 0; display: flex; align-items: flex-end; gap: 12px; writing-mode: vertical-rl; transform: rotate(180deg); }
.stage-index span { font-size: 8px; font-weight: 800; letter-spacing: .14em; }
.stage-index strong { color: var(--pine); font-family: var(--serif); font-size: 19px; line-height: .9; }
.scroll-cue { position: absolute; left: var(--pad); bottom: 26px; display: flex; align-items: center; gap: 12px; font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.scroll-cue span { position: relative; width: 44px; height: 1px; overflow: hidden; background: var(--line); }
.scroll-cue span::after { content: ""; position: absolute; inset: 0; background: var(--orange); transform: translateX(-100%); animation: cue 2.2s ease-in-out infinite; }
@keyframes cue { 50%,100% { transform: translateX(100%); } }

.marquee { overflow: hidden; border-block: 1px solid var(--ink); background: var(--orange); }
.marquee-track { display: flex; width: max-content; gap: 0; animation: marquee 32s linear infinite; }
.marquee-group { display: flex; flex-shrink: 0; align-items: center; justify-content: space-between; min-width: 100vw; gap: 34px; padding: 15px 34px 15px 0; box-sizing: border-box; }
.marquee-group span { font-family: var(--serif); font-size: clamp(1.3rem, 2vw, 2rem); font-style: italic; letter-spacing: -.03em; }
.marquee-group i { font-style: normal; font-size: 11px; }
@keyframes marquee { to { transform: translateX(-50%); } }

.intro { padding-top: clamp(90px, 12vw, 180px); padding-bottom: clamp(100px, 13vw, 190px); }
.intro-layout { display: grid; grid-template-columns: minmax(0, 1.22fr) minmax(320px, .58fr); gap: clamp(50px, 10vw, 170px); align-items: end; }
.intro h2, .work h2, .pricing h2, .about h2 {
  margin-bottom: 0;
  font-size: clamp(3.1rem, 6.2vw, 6.8rem);
  line-height: .92;
  letter-spacing: -.06em;
}
.intro-copy { padding-bottom: 8px; }
.intro-copy p { color: var(--ink-soft); font-size: clamp(1rem, 1.3vw, 1.18rem); line-height: 1.7; }
.intro-copy p:last-child { margin-bottom: 0; }
.signal-rail { display: grid; grid-template-columns: auto 1fr auto 1fr auto 1fr auto; align-items: center; gap: 15px; margin-top: clamp(70px, 10vw, 130px); font-size: 9px; font-weight: 900; letter-spacing: .12em; }
.signal-rail i { position: relative; height: 1px; overflow: hidden; background: var(--line); }
.signal-rail i::after { content: ""; position: absolute; width: 22%; height: 3px; top: -1px; left: -22%; background: var(--orange); animation: signal 3.4s linear infinite; }
.signal-rail i:nth-of-type(2)::after { animation-delay: .7s; }
.signal-rail i:nth-of-type(3)::after { animation-delay: 1.4s; }
@keyframes signal { to { left: 110%; } }
.signal-destination { padding: 10px 12px; color: var(--paper); background: var(--pine); }

.build-story { color: var(--paper); background: var(--ink); }
.build-shell { display: grid; grid-template-columns: minmax(360px, .72fr) minmax(470px, 1.1fr); gap: clamp(55px, 8vw, 130px); padding-top: clamp(100px, 11vw, 160px); padding-bottom: clamp(100px, 11vw, 160px); }
.build-copy h2 { margin-bottom: 22px; font-size: clamp(3.3rem, 5.8vw, 6.8rem); line-height: .9; letter-spacing: -.06em; }
.build-intro { max-width: 470px; color: rgba(255,255,255,.6); font-size: 1.1rem; }
.build-steps { margin-top: 70px; }
.build-step { display: grid; grid-template-columns: 42px 1fr; gap: 24px; min-height: 46vh; padding: 30px 0; border-top: 1px solid var(--line-light); opacity: 1; }
.build-step:last-child { min-height: 30vh; border-bottom: 1px solid var(--line-light); }
.build-step.active { opacity: 1; }
.build-step > span { color: var(--orange-soft); font-size: 11px; font-weight: 900; }
.build-step h3 { margin-bottom: 10px; color: rgba(255,255,255,.68); font-family: var(--serif); font-size: clamp(2rem, 3.2vw, 3.8rem); font-style: italic; font-weight: 400; letter-spacing: -.04em; transition: color .35s ease; }
.build-step.active h3 { color: var(--paper); }
.build-step p { max-width: 390px; color: rgba(255,255,255,.63); font-size: 1rem; line-height: 1.65; }
.build-visual-wrap { position: relative; min-width: 0; }
.build-visual-wrap > * { position: sticky; }
.build-progress { top: 110px; z-index: 4; display: flex; align-items: center; gap: 14px; height: 26px; margin-bottom: 12px; }
.build-progress > span { flex: 1; height: 2px; background: var(--line-light); }
.build-progress > span::after { content: ""; display: block; width: var(--build-progress, 25%); height: 100%; background: var(--orange); transition: width .45s var(--ease); }
.build-progress b { width: 56px; color: rgba(255,255,255,.55); font-size: 9px; letter-spacing: .1em; }
.workbench { top: 148px; width: 100%; aspect-ratio: 1.08 / .78; border: 1px solid rgba(255,255,255,.42); background: #d7d0c0; overflow: hidden; transition: background .6s ease; }
.workbench-label { display: flex; justify-content: space-between; align-items: center; height: 34px; padding: 0 12px; border-bottom: 1px solid rgba(17,19,17,.4); color: var(--ink); font-size: 8px; letter-spacing: .12em; }
.workbench-canvas { position: relative; height: calc(100% - 34px); overflow: hidden; color: var(--ink); background: #efeadf; }
.guide { position: absolute; z-index: 0; background: rgba(255,90,42,.48); opacity: 1; transition: opacity .45s ease; }
.guide-v { top: 0; bottom: 0; width: 1px; }
.guide-v.one { left: 9%; }.guide-v.two { left: 56%; }.guide-h { left: 0; right: 0; top: 73%; height: 1px; }
.wb-nav { position: absolute; z-index: 2; left: 6%; right: 6%; top: 6%; display: flex; justify-content: space-between; padding-bottom: 8px; border-bottom: 1px solid var(--ink); color: var(--ink); font-size: clamp(6px, .62vw, 9px); letter-spacing: .1em; transform: translateY(-8px); transition: transform .6s var(--ease); }
.wb-copy { position: absolute; z-index: 3; left: 8%; top: 24%; width: 55%; }
.wb-copy small { display: block; margin-bottom: 11px; color: var(--pine); font-size: clamp(6px,.57vw,8px); font-weight: 900; letter-spacing: .12em; }
.wb-copy strong { display: grid; min-height: 2.05em; font-family: var(--serif); font-size: clamp(31px, 4.4vw, 68px); line-height: .83; font-weight: 400; letter-spacing: -.06em; }
.wb-copy strong span { display: block; grid-area: 1 / 1; align-self: start; }
.rough-copy { color: rgba(17,19,17,.72); font-family: var(--sans); font-size: .6em; letter-spacing: -.03em; transition: opacity .35s ease; }
.final-copy { position: static; opacity: 0; transform: translateY(15px); transition: opacity .6s ease, transform .7s var(--ease); }
.wb-copy p { max-width: 270px; margin: 16px 0 18px; color: var(--ink); font-size: clamp(7px, .72vw, 11px); line-height: 1.5; }
.wb-copy button { padding: 10px 12px; border: 0; color: var(--paper); background: var(--pine); font-size: clamp(6px,.55vw,8px); font-weight: 900; letter-spacing: .09em; opacity: 0; transform: translateY(12px); transition: opacity .5s ease, transform .55s var(--ease); }
.wb-copy button span { margin-left: 18px; }
.wb-image { position: absolute; right: 6%; top: 20%; width: 33%; aspect-ratio: .78; overflow: hidden; border: 1px dashed rgba(17,19,17,.4); background: rgba(23,60,50,.05); transform: scale(.9) rotate(2deg); transition: transform .7s var(--ease), border .5s ease; }
.wb-image span { position: absolute; left: 8px; bottom: 8px; z-index: 2; padding: 2px 3px; color: var(--paper); background: var(--pine); font-size: 6px; font-weight: 900; letter-spacing: .1em; }
.image-sun { position: absolute; width: 46%; aspect-ratio: 1; right: -8%; top: 7%; border-radius: 50%; background: var(--orange); }
.image-land { position: absolute; left: -10%; right: -10%; bottom: -8%; height: 65%; border-radius: 52% 62% 0 0; background: var(--pine); transform: rotate(-8deg); }
.wb-proof { position: absolute; left: 0; right: 0; bottom: 0; display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid rgba(17,19,17,.4); opacity: 0; transform: translateY(100%); transition: opacity .5s ease, transform .65s var(--ease); }
.wb-proof span { padding: 10px; border-right: 1px solid rgba(17,19,17,.3); font-size: clamp(5px,.52vw,8px); font-weight: 900; letter-spacing: .09em; text-align: center; }
.cursor-dot { position: absolute; z-index: 8; width: 14px; height: 14px; border: 2px solid var(--orange); border-radius: 50%; left: 13%; top: 62%; opacity: 0; transition: opacity .4s ease, left .7s var(--ease), top .7s var(--ease); }
.workbench[data-build-state="1"] .wb-nav, .workbench[data-build-state="2"] .wb-nav, .workbench[data-build-state="3"] .wb-nav { opacity: 1; transform: none; }
.workbench[data-build-state="1"] .rough-copy, .workbench[data-build-state="2"] .rough-copy, .workbench[data-build-state="3"] .rough-copy { opacity: 0; }
.workbench[data-build-state="1"] .final-copy, .workbench[data-build-state="2"] .final-copy, .workbench[data-build-state="3"] .final-copy { opacity: 1; transform: none; }
.workbench[data-build-state="1"] .wb-copy small, .workbench[data-build-state="1"] .wb-copy p, .workbench[data-build-state="2"] .wb-copy small, .workbench[data-build-state="2"] .wb-copy p, .workbench[data-build-state="3"] .wb-copy small, .workbench[data-build-state="3"] .wb-copy p { opacity: 1; }
.workbench[data-build-state="2"] .wb-image, .workbench[data-build-state="3"] .wb-image { opacity: 1; transform: none; border-style: solid; }
.workbench[data-build-state="2"] .guide, .workbench[data-build-state="3"] .guide { opacity: .12; }
.workbench[data-build-state="3"] .wb-copy button { opacity: 1; transform: none; }
.workbench[data-build-state="3"] .wb-proof { opacity: 1; transform: none; }
.workbench[data-build-state="3"] .cursor-dot { opacity: 1; left: 44%; top: 66%; }
.build-caption { top: calc(148px + min((100vw - 120px) * .72, 610px)); margin: 14px 0 0; color: rgba(255,255,255,.54); font-size: 10px; letter-spacing: .08em; text-align: right; text-transform: uppercase; }
.build-visual-wrap > .build-caption { position: static; top: auto; }
.build-caption span { color: var(--orange-soft); }

.work { padding-top: clamp(110px, 12vw, 180px); padding-bottom: clamp(110px, 12vw, 180px); }
.work-heading, .pricing-heading { display: grid; grid-template-columns: minmax(0,1.2fr) minmax(300px,.5fr); gap: clamp(40px,9vw,140px); align-items: end; margin-bottom: 75px; }
.work-heading p, .pricing-heading p { margin-bottom: 6px; color: var(--ink-soft); font-size: 1.05rem; line-height: 1.7; }
.concept-grid { display: grid; grid-template-columns: repeat(12,1fr); gap: 28px; }
.concept-card { grid-column: span 6; }
.concept-card:last-child { grid-column: 4 / span 6; margin-top: 48px; }
.concept-meta { display: flex; justify-content: space-between; margin-bottom: 11px; font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.concept-meta span { color: var(--orange-text); font-weight: 900; }
.concept-window { position: relative; aspect-ratio: 1.18; overflow: hidden; border: 1px solid var(--ink); transform: translateZ(0); }
.concept-footer { display: flex; justify-content: space-between; gap: 24px; padding-top: 13px; }
.concept-footer p { max-width: 380px; margin: 0; font-family: var(--serif); font-size: 1.04rem; font-style: italic; }
.concept-footer span { color: var(--ink-soft); font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }
.concept-nav { position: absolute; z-index: 4; left: 5%; right: 5%; top: 5%; display: flex; justify-content: space-between; padding-bottom: 9px; border-bottom: 1px solid currentColor; font-size: clamp(6px,.6vw,9px); font-weight: 800; letter-spacing: .1em; }
.concept-craft .concept-window { background: #b88d62; }
.concept-craft-copy { position: absolute; z-index: 3; left: 7%; top: 25%; }
.concept-craft-copy small, .concept-clinic-copy small, .concept-food-copy small { display: block; margin-bottom: 11px; font-size: clamp(6px,.6vw,9px); font-weight: 900; letter-spacing: .13em; }
.concept-craft-copy strong { display: block; font-family: var(--serif); font-size: clamp(42px,6vw,90px); line-height: .8; font-weight: 400; letter-spacing: -.07em; }
.concept-craft-copy i { display: block; width: 58px; height: 7px; margin-top: 24px; background: var(--pine); transition: width .6s var(--ease); }
.concept-material { position: absolute; right: -6%; bottom: -8%; width: 54%; height: 76%; transform: rotate(13deg); transition: transform .8s var(--ease); }
.concept-material span { position: absolute; border-radius: 50% 50% 0 0; background: var(--pine); }
.concept-material span:nth-child(1) { inset: 16% 0 0; }.concept-material span:nth-child(2) { inset: 0 15% 8%; background: #d5be99; }.concept-material span:nth-child(3) { inset: 25% 28% -8%; background: #26382e; }
.concept-clinic .concept-window { color: #153746; background: #d5e7e4; }
.concept-clinic-copy { position: absolute; z-index: 3; left: 7%; bottom: 11%; }
.concept-clinic-copy strong { display: block; font-size: clamp(38px,5.3vw,80px); line-height: .84; letter-spacing: -.07em; }
.clinic-orbit { position: absolute; width: 62%; aspect-ratio: 1; right: -10%; top: 3%; }
.clinic-orbit i { position: absolute; inset: 0; border: 1px solid rgba(21,55,70,.5); border-radius: 50%; transition: transform 1s var(--ease); }
.clinic-orbit i:nth-child(2) { inset: 12%; }.clinic-orbit i:nth-child(3) { inset: 29%; background: var(--orange); border: 0; }
.clinic-stat { position: absolute; right: 5%; bottom: 5%; display: flex; align-items: center; gap: 10px; padding: 9px; border: 1px solid; background: rgba(213,231,228,.8); font-size: 8px; letter-spacing: .08em; }
.clinic-stat b { color: var(--orange-text); }
.concept-food .concept-window { color: #f5ead9; background: #321c17; }
.concept-food-copy { position: absolute; z-index: 3; left: 7%; top: 23%; }
.concept-food-copy strong { display: block; font-size: clamp(40px,5.8vw,88px); line-height: .78; letter-spacing: -.07em; }
.concept-food-copy em { color: #ff9b53; font-family: var(--serif); font-weight: 400; }
.food-plate { position: absolute; right: -2%; bottom: -18%; width: 55%; aspect-ratio: 1; border: 1px solid #f5ead9; border-radius: 50%; transition: transform 1s var(--ease); }
.food-plate::before { content: ""; position: absolute; inset: 9%; border: 1px solid rgba(245,234,217,.34); border-radius: 50%; }
.food-plate i { position: absolute; width: 17%; aspect-ratio: 1; border-radius: 50%; background: #ff9b53; }
.food-plate i:nth-child(1) { left: 30%; top: 22%; }.food-plate i:nth-child(2) { right: 21%; top: 38%; background: #70966c; }.food-plate i:nth-child(3) { left: 20%; bottom: 25%; background: #c4472d; }.food-plate i:nth-child(4) { right: 33%; bottom: 18%; width: 10%; background: #f5ead9; }
@media (hover:hover) and (pointer:fine) {
  .concept-card:hover .concept-craft-copy i { width: 112px; }
  .concept-card:hover .concept-material { transform: rotate(5deg) scale(1.06); }
  .concept-card:hover .clinic-orbit i:first-child { transform: rotate(24deg) scale(.92); }
  .concept-card:hover .clinic-orbit i:nth-child(2) { transform: rotate(-30deg) scale(1.12); }
  .concept-card:hover .food-plate { transform: rotate(38deg) scale(1.03); }
}

.manifesto { position: relative; min-height: 105vh; display: grid; place-items: center; padding: 110px var(--pad); overflow: hidden; color: var(--paper); background: var(--pine); }
.manifesto::before, .closing::before { content: ""; position: absolute; width: 65vw; aspect-ratio: 1; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; box-shadow: 0 0 0 9vw rgba(255,255,255,.025), 0 0 0 18vw rgba(255,255,255,.018); }
.manifesto-pin { position: relative; z-index: 2; width: min(1180px,100%); text-align: center; }
.manifesto .section-kicker { max-width: 700px; margin-inline: auto; }
.manifesto h2 { margin-bottom: 55px; font-size: clamp(4rem, 10.5vw, 12rem); line-height: .73; letter-spacing: -.075em; }
.manifesto h2 em { color: var(--orange-soft); }
.manifesto-words { display: flex; justify-content: center; flex-wrap: wrap; gap: 18px; margin-bottom: 45px; color: rgba(255,255,255,.86); font-size: clamp(.75rem,1vw,1rem); font-weight: 900; letter-spacing: .16em; }
.manifesto-words i { color: var(--orange); font-style: normal; }
.manifesto-pin > p:last-child { max-width: 690px; margin: 0 auto; color: rgba(255,255,255,.7); font-family: var(--serif); font-size: clamp(1.2rem,2vw,1.8rem); font-style: italic; line-height: 1.5; }

.pricing { padding-top: clamp(110px,12vw,180px); padding-bottom: clamp(110px,12vw,180px); }
.pricing-layout { display: grid; grid-template-columns: minmax(0,1fr) minmax(300px,.36fr); gap: clamp(35px,6vw,90px); align-items: start; }
.package { display: grid; grid-template-columns: 42px minmax(0,1fr) auto; gap: 24px; padding: 30px 10px 30px 0; border-top: 1px solid var(--line); cursor: pointer; transition: background .3s ease, padding .4s var(--ease); }
.package:last-child { border-bottom: 1px solid var(--line); }
.package:hover, .package.active { padding-left: 14px; padding-right: 14px; background: var(--white); }
.package-index { color: var(--orange-text); font-size: 10px; font-weight: 900; }
.package-title { display: flex; align-items: baseline; gap: 18px; margin-bottom: 18px; }
.package-title h3 { margin: 0; font-family: var(--serif); font-size: clamp(2rem,3vw,3.4rem); font-weight: 400; letter-spacing: -.05em; }
.package-title p { margin: 0; color: var(--ink-soft); font-size: 11px; font-weight: 700; letter-spacing: .04em; }
.package ul { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 7px 20px; margin: 0; padding: 0; list-style: none; color: var(--ink-soft); font-size: 12px; }
.package li::before { content: "↳"; margin-right: 7px; color: var(--orange); }
.package-price { min-width: 138px; text-align: right; }
.package-price small, .package-price strong, .package-price span { display: block; }
.package-price small { margin-bottom: 5px; font-size: 8px; font-weight: 900; letter-spacing: .11em; }
.package-price strong { font-size: clamp(1.55rem,2.5vw,2.7rem); letter-spacing: -.05em; }
.package-price span { color: var(--ink-soft); font-size: 9px; }
.package-blueprint { position: sticky; top: 110px; padding: 20px; border: 1px solid var(--ink); color: var(--paper); background: var(--pine); }
.blueprint-head { display: flex; justify-content: space-between; padding-bottom: 12px; border-bottom: 1px solid var(--line-light); font-size: 8px; letter-spacing: .1em; }
.blueprint-head b { color: var(--orange-soft); }
.blueprint-pages { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin: 38px 0; }
.blueprint-pages i { aspect-ratio: 1 / 1.25; border: 1px solid rgba(255,255,255,.18); transition: background .4s ease, transform .4s var(--ease); }
.blueprint-pages i.active { border-color: var(--orange-soft); background: rgba(255,90,42,.2); transform: translateY(-3px); }
.blueprint-detail { display: flex; justify-content: space-between; gap: 15px; padding: 12px 0; border-top: 1px solid var(--line-light); font-size: 8px; letter-spacing: .08em; }
.blueprint-detail b { text-align: right; }
.package-blueprint a { display: flex; justify-content: space-between; margin-top: 28px; padding: 13px; color: var(--ink); background: var(--orange); font-size: 9px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.pricing-note { max-width: 780px; margin: 35px 0 0; color: var(--ink-soft); font-size: 10px; line-height: 1.6; }

.preview { position: relative; padding: clamp(100px,11vw,160px) 0; overflow: hidden; color: var(--paper); background: var(--ink); }
.preview-grid { z-index: 0; opacity: .18; background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px); }
.preview-content, .preview-form-wrap { position: relative; z-index: 2; }
.preview-content { display: grid; grid-template-columns: minmax(0,1.04fr) minmax(380px,.64fr); gap: clamp(60px,10vw,150px); }
.preview-copy h2 { margin-bottom: 28px; font-size: clamp(3.4rem,7vw,8rem); line-height: .84; letter-spacing: -.07em; }
.preview-copy h2 em { color: var(--orange-soft); }
.preview-copy > p { max-width: 620px; color: rgba(255,255,255,.64); font-size: 1.08rem; line-height: 1.7; }
.preview-terms { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 30px; }
.preview-terms span { padding: 8px 10px; border: 1px solid var(--line-light); font-size: 8px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.preview-steps { margin: 95px 0 0; padding: 0; list-style: none; }
.preview-steps li { display: grid; grid-template-columns: 35px 1fr; gap: 18px; padding: 25px 0; border-top: 1px solid var(--line-light); }
.preview-steps li:last-child { border-bottom: 1px solid var(--line-light); }
.preview-steps > li > span { color: var(--orange-soft); font-size: 9px; font-weight: 900; }
.preview-steps h3 { margin-bottom: 7px; font-family: var(--serif); font-size: 1.5rem; font-weight: 400; }
.preview-steps p { margin: 0; color: rgba(255,255,255,.56); font-size: .9rem; line-height: 1.55; }
.preview-form-wrap { display: grid; grid-template-columns: minmax(260px,.45fr) minmax(0,1fr); gap: clamp(50px,8vw,110px); margin-top: 110px; padding-top: 55px; border-top: 1px solid var(--line-light); }
.form-index { color: var(--orange-soft); font-size: 9px; font-weight: 900; letter-spacing: .12em; }
.form-intro h3 { margin: 18px 0 14px; font-family: var(--serif); font-size: clamp(2.1rem,4vw,4rem); font-weight: 400; line-height: .96; letter-spacing: -.04em; }
.form-intro p { color: rgba(255,255,255,.58); font-size: .9rem; line-height: 1.65; }
.form-intro a { color: var(--paper); text-decoration: underline; text-underline-offset: 4px; }
.preview-form { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px 16px; }
.preview-form label { display: grid; gap: 9px; }
.preview-form label > span { color: rgba(255,255,255,.68); font-size: 9px; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.preview-form input, .preview-form textarea { width: 100%; border: 0; border-bottom: 1px solid rgba(255,255,255,.36); border-radius: 0; padding: 12px 0; outline: 0; color: var(--paper); background: transparent; }
.preview-form textarea { resize: vertical; }
.preview-form input:focus, .preview-form textarea:focus { border-bottom-color: var(--orange); }
.preview-form input::placeholder, .preview-form textarea::placeholder { color: rgba(255,255,255,.3); }
.preview-form .full { grid-column: 1 / -1; }
.button-accent { color: var(--ink); background: var(--orange); }
.button-accent i { color: var(--paper); background: var(--ink); }
.form-status { min-height: 1.2em; margin: 0; color: var(--orange-soft); font-size: 11px; }

.about { padding-top: clamp(110px,12vw,180px); padding-bottom: clamp(110px,12vw,180px); }
.about-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(380px,.65fr); gap: clamp(55px,10vw,160px); }
.about-grid > div:first-child > p { max-width: 650px; margin-top: 34px; color: var(--ink-soft); font-size: 1.08rem; line-height: 1.72; }
.about-values article { display: grid; grid-template-columns: 35px 1fr; grid-template-rows: auto auto; column-gap: 0; padding: 25px 0; border-top: 1px solid var(--line); }
.about-values article:last-child { border-bottom: 1px solid var(--line); }
.about-values article > span { grid-column: 1; grid-row: 1 / 3; color: var(--orange-text); font-size: 9px; font-weight: 900; }
.about-values h3 { grid-column: 2; grid-row: 1; margin-bottom: 8px; font-family: var(--serif); font-size: 1.7rem; font-weight: 400; }
.about-values p { grid-column: 2; grid-row: 2; max-width: 460px; margin: 0; color: var(--ink-soft); font-size: .92rem; line-height: 1.6; }

.closing { position: relative; display: grid; place-items: center; min-height: 92vh; padding: 110px var(--pad); overflow: hidden; color: var(--paper); background: var(--pine); text-align: center; }
.closing-content { position: relative; z-index: 3; }
.closing-content > p { margin-bottom: 35px; color: rgba(255,255,255,.6); font-size: 9px; font-weight: 900; letter-spacing: .15em; }
.closing h2 { margin-bottom: 42px; font-size: clamp(3.4rem,7.3vw,8.4rem); line-height: .84; letter-spacing: -.07em; }
.closing h2 em { color: var(--orange-soft); }
.button-light { color: var(--ink); background: var(--paper); }
.button-light i { color: var(--paper); background: var(--orange); }
.closing-email { display: block; width: max-content; margin: 28px auto 0; border-bottom: 1px solid rgba(255,255,255,.5); font-size: .88rem; }
.closing-orbit { position: absolute; z-index: 2; width: min(41vw,580px); aspect-ratio: 1; }
.closing-orbit span { position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; animation: orbit 14s linear infinite; }
.closing-orbit span::before { content: ""; position: absolute; width: 9px; height: 9px; left: 50%; top: -5px; border-radius: 50%; background: var(--orange); }
.closing-orbit span:nth-child(2) { inset: 13%; animation-duration: 10s; animation-direction: reverse; }.closing-orbit span:nth-child(3) { inset: 28%; animation-duration: 7s; }
.closing-orbit i { position: absolute; inset: 40%; display: grid; place-items: center; border: 1px solid var(--orange-soft); color: var(--orange-soft); font-size: 8px; font-style: normal; font-weight: 900; letter-spacing: .1em; }
@keyframes orbit { to { transform: rotate(360deg); } }

.footer { display: grid; grid-template-columns: 1.2fr .5fr .7fr; gap: 55px; padding: 75px var(--pad) 24px; color: var(--paper); background: var(--ink); }
.footer .brand-name b { color: var(--orange-soft); }
.footer-brand p { max-width: 330px; margin: 24px 0 0; color: rgba(255,255,255,.5); font-family: var(--serif); font-style: italic; }
.footer-links { display: grid; align-content: start; justify-items: start; gap: 9px; font-size: .88rem; }
.footer-links > span { margin-bottom: 8px; color: var(--orange-soft); font-size: 8px; font-weight: 900; letter-spacing: .12em; }
.footer-links p { margin: 0; color: rgba(255,255,255,.5); }
.footer-links a { color: rgba(255,255,255,.78); }
.footer-links a:hover { color: var(--orange-soft); }
.footer-base { grid-column: 1 / -1; display: flex; justify-content: space-between; margin-top: 45px; padding-top: 18px; border-top: 1px solid var(--line-light); color: rgba(255,255,255,.45); font-size: 9px; letter-spacing: .06em; text-transform: uppercase; }
.footer-base p { margin: 0; }.footer-base div { display: flex; gap: 22px; }

/* Keep every section visible even if IntersectionObserver or animation fails. */
.js .reveal-ready { opacity: 1; transform: translateY(22px); }
.js .reveal-ready.revealed { opacity: 1; transform: none; transition: transform .85s var(--ease); }

.motion-paused *, .motion-paused *::before, .motion-paused *::after { animation-play-state: paused !important; }
.motion-paused .hero-browser { transform: none !important; }

@media (max-width: 1100px) {
  .hero { grid-template-columns: minmax(0,1fr) minmax(380px,.75fr); gap: 35px; }
  .hero h1 { font-size: clamp(3.4rem,6.4vw,5.6rem); }
  .hero-stage { min-height: 520px; }
  .build-shell { grid-template-columns: .72fr 1fr; gap: 50px; }
  .pricing-layout { grid-template-columns: 1fr; }
  .package-blueprint { position: relative; top: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 0 25px; }
  .blueprint-head, .blueprint-pages, .package-blueprint a { grid-column: 1 / -1; }
  .blueprint-pages { grid-template-columns: repeat(9,1fr); }
}

@media (max-width: 860px) {
  :root { --header-offset: 32px; }
  .topline { min-height: 32px; }.topline-inner { min-height: 32px; }
  .topline-message { display: none !important; }
  .site-header { grid-template-columns: 1fr auto; min-height: 68px; background: rgba(242,239,230,.94); border-bottom: 1px solid var(--line); backdrop-filter: blur(16px); }
  .site-nav { position: fixed; inset: calc(var(--header-offset) + 68px) 0 auto; display: grid; gap: 0; padding: 12px var(--pad) 26px; background: var(--paper); border-bottom: 1px solid var(--ink); transform: translateY(-130%); opacity: 0; pointer-events: none; transition: transform .45s var(--ease), opacity .3s ease; }
  .site-header.open .site-nav { transform: none; opacity: 1; pointer-events: auto; }
  .site-nav a { padding: 18px 0; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 1.7rem; font-weight: 400; letter-spacing: -.03em; text-transform: none; }
  .header-cta { display: none; }
  .menu-toggle { display: grid; place-items: center; width: 42px; height: 42px; padding: 10px; border: 1px solid var(--ink); background: transparent; cursor: pointer; }
  .menu-toggle > span:not(.sr-only) { display: block; width: 20px; height: 1px; margin: 2px; background: var(--ink); transition: transform .3s ease, opacity .2s ease; }
  .site-header.open .menu-toggle > span:nth-child(1) { transform: translateY(5px) rotate(45deg); }.site-header.open .menu-toggle > span:nth-child(2) { opacity: 0; }.site-header.open .menu-toggle > span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }
  .hero { grid-template-columns: 1fr; padding-top: 140px; min-height: auto; }
  .hero-stage { width: min(680px,100%); min-height: 550px; margin-inline: auto; }
  .hero-browser { left: 4%; }
  .scroll-cue { display: none; }
  .intro-layout, .work-heading, .pricing-heading, .preview-content, .preview-form-wrap, .about-grid { grid-template-columns: 1fr; gap: 38px; }
  .intro-copy { max-width: 650px; }
  .build-shell { grid-template-columns: 1fr; }
  .build-step { min-height: auto; }
  .build-visual-wrap { order: -1; }
  .build-progress, .workbench, .build-caption { position: relative; top: auto; }
  .build-caption { margin-top: 12px; }
  .build-steps { margin-top: 50px; }
  .build-step { cursor: pointer; opacity: 1; }
  .concept-card, .concept-card:last-child { grid-column: 1 / -1; margin-top: 28px; }
  .concept-card:first-child { margin-top: 0; }
  .preview-steps { margin-top: 20px; }
  .preview-form-wrap { margin-top: 80px; }
  .package { grid-template-columns: 35px 1fr; }
  .package-price { grid-column: 2; display: flex; align-items: baseline; flex-wrap: wrap; gap: 5px 12px; text-align: left; }
  .footer { grid-template-columns: 1fr 1fr; }.footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  :root { --pad: 18px; }
  html { scroll-padding-top: 86px; }
  .topline { font-size: 8px; }
  .motion-toggle { font-size: 8px; }
  .site-header, .site-header.scrolled { min-height: 62px; }
  .site-nav { inset: calc(var(--header-offset) + 62px) 0 auto; }
  .brand { gap: 8px; }.brand-mark { width: 33px; height: 32px; }.brand-name strong { font-size: 16px; }.brand-name b { font-size: 7px; }
  .hero { padding-top: 124px; padding-bottom: 80px; }
  .hero h1 { font-size: clamp(3.1rem,14.5vw,5.1rem); line-height: .9; letter-spacing: -.062em; }
  .hero-lede { font-size: 1rem; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .text-action { justify-content: space-between; }
  .hero-stage { min-height: 390px; margin-top: 20px; }
  .hero-browser { width: 94%; left: 3%; top: 8%; box-shadow: 14px 17px 0 rgba(23,60,50,.12), 0 24px 60px rgba(17,19,17,.16); }
  .stage-note { font-size: 7px; }.stage-note-b { top: auto; bottom: 4%; }
  .stage-index { display: none; }
  .build-layer { display: none; }
  .page-hero-demo::after { right: -12%; }
  .section-kicker { margin-bottom: 26px; }
  .intro h2, .work h2, .pricing h2, .about h2 { font-size: clamp(3rem,13.5vw,4.7rem); }
  .signal-rail { grid-template-columns: auto 1fr auto; gap: 10px; }
  .signal-rail span:nth-of-type(2), .signal-rail span:nth-of-type(3), .signal-rail i:nth-of-type(2), .signal-rail i:nth-of-type(3) { display: none; }
  .build-shell { padding-top: 90px; padding-bottom: 90px; }
  .build-copy h2 { font-size: clamp(3rem,13vw,4.8rem); }
  .workbench { aspect-ratio: .88; }
  .wb-nav { font-size: 6px; }
  .wb-copy { width: 67%; top: 22%; }
  .wb-copy strong { font-size: clamp(31px,11.2vw,52px); }
  .wb-image { width: 37%; right: 3%; top: 42%; }
  .build-step { grid-template-columns: 30px 1fr; }
  .concept-window { aspect-ratio: .92; }
  .concept-footer { flex-direction: column; gap: 10px; }
  .concept-craft-copy strong, .concept-clinic-copy strong, .concept-food-copy strong { font-size: clamp(44px,14vw,74px); }
  .concept-material { width: 70%; }.clinic-orbit { width: 80%; right: -23%; }.food-plate { width: 72%; }
  .manifesto { min-height: 90vh; }
  .manifesto h2 { font-size: clamp(4.1rem,20vw,7.2rem); }
  .manifesto-words { gap: 9px; font-size: 9px; }
  .package { grid-template-columns: 27px 1fr; gap: 10px; padding-block: 24px; }
  .package-title { align-items: flex-start; flex-direction: column; gap: 2px; }
  .package ul { grid-template-columns: 1fr; }
  .package-price strong { font-size: 2rem; }
  .package-blueprint { grid-template-columns: 1fr; }.blueprint-head, .blueprint-pages, .package-blueprint a { grid-column: 1; }.blueprint-pages { grid-template-columns: repeat(9,1fr); }
  .preview-copy h2 { font-size: clamp(3.3rem,15vw,5.5rem); }
  .preview-form { grid-template-columns: 1fr; }.preview-form .full { grid-column: 1; }
  .about-grid { gap: 45px; }
  .closing { min-height: 80vh; }.closing h2 { font-size: clamp(3.25rem,14.7vw,5.5rem); }.closing-orbit { width: 92vw; }
  .footer { grid-template-columns: 1fr; gap: 38px; padding-top: 60px; }.footer-brand { grid-column: 1; }.footer-base { flex-direction: column; gap: 14px; }
}

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