:root {
  --paper: #f9f8f4;
  --paper-deep: #f2f0e9;
  --cream: #fffdf8;
  --forest: #2d3a31;
  --forest-soft: #4a594f;
  --sage: #8c9a84;
  --sage-pale: #dfe4da;
  --moss: #65735f;
  --clay: #dccfc2;
  --clay-light: #eee6de;
  --terracotta: #b96f59;
  --stone: #e6e2da;
  --gold: #e89d3d;
  --white: #fff;
  --shadow-soft: 0 18px 50px -28px rgba(45, 58, 49, .22);
  --shadow-float: 0 30px 70px -28px rgba(45, 58, 49, .32);
  --serif: "Noto Serif SC", "Songti SC", "STSong", serif;
  --display: "Playfair Display", "Noto Serif SC", serif;
  --sans: "Source Sans 3", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--forest);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 8% 10%, rgba(220, 207, 194, .22), transparent 30%),
    radial-gradient(circle at 95% 34%, rgba(140, 154, 132, .13), transparent 34%),
    linear-gradient(180deg, var(--paper) 0%, #f7f5ef 100%);
  content: "";
}

.paper-grain {
  position: fixed;
  inset: 0;
  z-index: 100;
  opacity: .024;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  background-repeat: repeat;
}

::selection { color: var(--cream); background: var(--terracotta); }

button,
a { -webkit-tap-highlight-color: transparent; }

button { color: inherit; font: inherit; }
a { color: inherit; text-decoration: none; }
img,
video { display: block; max-width: 100%; height: auto; }
figure,
blockquote { margin: 0; }

h1,
h2,
h3,
p { margin-top: 0; }

h1,
h2,
h3 {
  margin-bottom: 0;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: 1.15;
}

h1 em,
h2 em,
h3 em {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -.025em;
}

button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 5px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  padding: 10px 16px;
  border-radius: 100px;
  color: var(--white);
  background: var(--forest);
  transform: translateY(-160%);
  transition: transform .25s ease;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(calc(100% - 48px), 1440px);
  min-height: 78px;
  margin: 14px auto 0;
  padding: 0 18px 0 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: background .45s ease, box-shadow .45s ease, border-color .45s ease, transform .45s var(--ease);
}

.site-header.is-scrolled {
  border-color: rgba(45, 58, 49, .08);
  background: rgba(249, 248, 244, .84);
  box-shadow: 0 12px 42px rgba(45, 58, 49, .08);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  backdrop-filter: blur(16px) saturate(120%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
  font-family: var(--display);
  font-size: 23px;
  font-weight: 600;
  letter-spacing: -.025em;
}

.brand__mark {
  display: grid;
  width: 42px;
  height: 42px;
  overflow: hidden;
  place-items: center;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(184, 111, 89, .16);
  transition: transform .45s var(--ease), border-radius .45s var(--ease);
}

.brand:hover .brand__mark { border-radius: 50%; transform: rotate(-6deg); }
.brand__mark img { width: 100%; height: 100%; }

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 42px);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .025em;
}

.primary-nav a {
  position: relative;
  padding: 12px 0;
}

.primary-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 7px;
  height: 1px;
  background: var(--terracotta);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
}

.primary-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.header-actions {
  display: flex;
  justify-self: end;
  align-items: center;
  gap: 18px;
}

.text-link {
  font-size: 14px;
  font-weight: 500;
}

.text-link span { color: var(--terracotta); }

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 27px;
  border: 1px solid var(--forest);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: color .35s ease, background .35s ease, border-color .35s ease, box-shadow .35s ease, transform .35s var(--ease);
}

.button:hover { transform: translateY(-2px); }
.button--small { min-height: 44px; padding: 0 20px; color: var(--white); background: var(--forest); font-size: 12px; }
.button--small:hover,
.button--primary:hover { border-color: var(--terracotta); background: var(--terracotta); box-shadow: 0 13px 26px -15px var(--terracotta); }
.button--primary { color: var(--white); background: var(--forest); }
.button--primary span { font-size: 18px; line-height: 1; }
.button--ghost { border-color: var(--sage); color: var(--forest); background: rgba(255,255,255,.14); }
.button--ghost:hover { border-color: var(--forest); background: rgba(255,255,255,.6); }

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--stone);
  border-radius: 50%;
  background: var(--cream);
}

.menu-toggle span {
  display: block;
  width: 17px;
  height: 1px;
  margin: 5px auto;
  background: var(--forest);
  transition: transform .3s ease;
}

.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3px) rotate(-45deg); }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .93fr) minmax(520px, 1.07fr);
  min-height: 100svh;
  width: min(calc(100% - 80px), 1400px);
  margin: 0 auto;
  padding: 148px 0 100px;
  align-items: center;
  gap: clamp(48px, 8vw, 132px);
}

.hero::before {
  position: absolute;
  top: 10%;
  left: -18vw;
  width: 46vw;
  height: 46vw;
  border: 1px solid rgba(140, 154, 132, .15);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.hero__copy { position: relative; z-index: 4; padding-bottom: 16px; }

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 23px;
  color: var(--moss);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .2em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 50% 50% 50% 0;
  background: var(--terracotta);
  transform: rotate(-45deg);
}

.hero h1 {
  max-width: 700px;
  font-size: clamp(58px, 5.7vw, 94px);
  line-height: 1.04;
}

.hero h1 em { color: var(--terracotta); }

.hero__lede {
  max-width: 600px;
  margin: 32px 0 36px;
  color: var(--forest-soft);
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.75;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }

.hero__meta {
  display: flex;
  align-items: center;
  gap: 23px;
  margin-top: 27px;
  color: #6d786f;
  font-size: 12px;
  letter-spacing: .06em;
}

.hero__meta span:first-child { display: flex; align-items: center; gap: 8px; }
.hero__meta i,
.product-float figcaption i,
.workflow-panel__screen figcaption i,
.models__status i {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #80a271;
  box-shadow: 0 0 0 4px rgba(128, 162, 113, .13);
}

.hero__visual {
  position: relative;
  align-self: center;
  width: min(100%, 660px);
  min-height: 720px;
  justify-self: end;
}

.hero-arch {
  position: absolute;
  top: 0;
  right: 0;
  width: min(64%, 405px);
  height: auto;
  aspect-ratio: 31 / 54;
  overflow: hidden;
  border: 10px solid rgba(255,255,255,.46);
  border-radius: 250px 250px 32px 32px;
  background: var(--clay);
  box-shadow: var(--shadow-float);
}

.hero-arch::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 56%, rgba(34, 35, 28, .33));
  content: "";
  pointer-events: none;
}

.hero-arch video { width: 100%; height: 100%; aspect-ratio: 31 / 54; object-fit: cover; }

.hero-arch__label {
  position: absolute;
  right: 24px;
  bottom: 22px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
}

.hero-arch__label i { width: 18px; height: 1px; background: currentColor; }

.product-float {
  position: absolute;
  z-index: 5;
  left: 0;
  bottom: 10px;
  width: min(74%, 470px);
  overflow: hidden;
  border: 8px solid rgba(255,255,255,.7);
  border-radius: 25px;
  background: #151713;
  box-shadow: var(--shadow-float);
  transform: rotate(-2.4deg);
  transition: transform .8s var(--ease);
}

.hero__visual:hover .product-float { transform: rotate(-.5deg) translateY(-8px); }

.window-bar {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  color: rgba(255,255,255,.67);
  background: #22251f;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .08em;
}

.window-bar > span { display: flex; gap: 5px; }
.window-bar i { width: 6px; height: 6px; border-radius: 50%; background: #5d625a; }
.window-bar i:first-child { background: #ad6a55; }
.product-float img { width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: contain; }

.product-float figcaption,
.workflow-panel__screen figcaption {
  display: flex;
  min-height: 40px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 13px;
  color: rgba(255,255,255,.65);
  background: #22251f;
  font-size: 9px;
  letter-spacing: .04em;
}

.product-float figcaption span,
.workflow-panel__screen figcaption span { display: flex; align-items: center; gap: 8px; }
.product-float figcaption strong,
.workflow-panel__screen figcaption strong { color: #e4e8df; font-weight: 500; }

.hero-note {
  position: absolute;
  z-index: 6;
  top: 90px;
  left: -28px;
  width: 190px;
  padding: 22px 24px 18px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 24px;
  background: rgba(255,253,248,.7);
  box-shadow: var(--shadow-soft);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transform: rotate(-4deg);
}

.hero-note p { margin-bottom: 12px; font-family: var(--serif); font-size: 17px; line-height: 1.65; }
.hero-note span { color: var(--terracotta); font-size: 9px; font-weight: 600; letter-spacing: .16em; }

.hero-leaf {
  position: absolute;
  z-index: -1;
  display: block;
  width: 92px;
  height: 172px;
  border-radius: 100% 0 100% 0;
  background: var(--sage-pale);
}

.hero-leaf--one { top: 38px; right: -45px; transform: rotate(18deg); }
.hero-leaf--two { right: -23px; bottom: 24px; width: 60px; height: 115px; background: var(--clay); transform: rotate(67deg); }

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--moss);
  font-family: var(--display);
  font-size: 11px;
  font-style: italic;
  letter-spacing: .08em;
}

.scroll-cue i { position: relative; width: 58px; height: 1px; overflow: hidden; background: var(--stone); }
.scroll-cue i::after { position: absolute; inset: 0; background: var(--terracotta); content: ""; animation: scrollLine 2.4s var(--ease) infinite; }

@keyframes scrollLine {
  0% { transform: translateX(-100%); }
  45%, 55% { transform: translateX(0); }
  100% { transform: translateX(100%); }
}

.reveal-sequence {
  opacity: 0;
  transform: translateY(24px);
  animation: heroReveal .9s var(--ease) forwards;
}

.reveal-sequence:nth-child(2) { animation-delay: .12s; }
.reveal-sequence:nth-child(3) { animation-delay: .22s; }
.reveal-sequence:nth-child(4) { animation-delay: .32s; }
.reveal-sequence:nth-child(5) { animation-delay: .42s; }
.hero__visual.reveal-sequence { animation-delay: .18s; }

@keyframes heroReveal { to { opacity: 1; transform: translateY(0); } }

.growth-line {
  display: flex;
  width: min(calc(100% - 80px), 1400px);
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: 0 8px;
  border-top: 1px solid var(--stone);
  border-bottom: 1px solid var(--stone);
  color: #6e786f;
  font-family: var(--serif);
  font-size: 15px;
}

.growth-line > b {
  flex: 0 0 auto;
  margin-right: 24px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--cream);
  background: var(--forest);
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.growth-line i { position: relative; flex: 1; height: 1px; margin: 0 24px; background: var(--stone); }
.growth-line i::after { position: absolute; top: -3px; right: 0; width: 7px; height: 7px; border-radius: 50% 50% 50% 0; background: var(--sage); content: ""; transform: rotate(-45deg); }

.omni {
  width: min(calc(100% - 80px), 1400px);
  isolation: isolate;
  padding-top: 145px;
  padding-bottom: 145px;
}

.omni::before {
  position: absolute;
  inset: 58px -10px;
  z-index: -2;
  border: 1px solid rgba(45,58,49,.055);
  border-radius: 54px;
  background:
    radial-gradient(circle at 91% 12%, rgba(140,154,132,.19), transparent 24%),
    linear-gradient(135deg, #f0e9e1 0%, #f3efe8 48%, #ebece4 100%);
  box-shadow: 0 24px 70px -50px rgba(45,58,49,.35);
  content: "";
}

.vine-line--omni {
  top: 55px;
  right: -50px;
  z-index: -1;
  width: 630px;
}

.omni__intro {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .68fr);
  align-items: end;
  gap: clamp(70px, 10vw, 150px);
  padding: 0 55px;
}

.omni__intro h2 {
  max-width: 760px;
  font-size: clamp(45px, 5.1vw, 76px);
}

.omni__summary > p {
  max-width: 510px;
  margin: 0;
  color: var(--forest-soft);
  font-size: 18px;
  line-height: 1.85;
}

.omni__signals {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 26px;
}

.omni__signals span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border: 1px solid rgba(45,58,49,.09);
  border-radius: 999px;
  color: var(--forest-soft);
  background: rgba(255,255,255,.34);
  font-size: 11px;
  letter-spacing: .04em;
}

.omni__signals span::before {
  width: 5px;
  height: 5px;
  border-radius: 50% 50% 50% 0;
  background: var(--terracotta);
  content: "";
  transform: rotate(-45deg);
}

.omni__prelude {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 54px minmax(260px, 1fr) minmax(120px, .72fr) auto;
  align-items: center;
  gap: 20px;
  margin: 70px 55px 20px;
  padding: 22px 26px;
  border: 1px solid rgba(45,58,49,.075);
  border-radius: 23px;
  background: rgba(255,255,255,.43);
}

.omni__prelude-index {
  color: var(--terracotta);
  font-family: var(--display);
  font-size: 10px;
  font-style: italic;
  letter-spacing: .13em;
}

.omni__prelude > div { display: grid; gap: 2px; }
.omni__prelude strong { font-family: var(--serif); font-size: 15px; font-weight: 600; }
.omni__prelude p { margin: 0; color: #7b847d; font-size: 12px; }

.omni__prelude > i {
  position: relative;
  height: 1px;
  background: rgba(45,58,49,.15);
}

.omni__prelude > i::before,
.omni__prelude > i::after {
  position: absolute;
  top: -3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sage);
  content: "";
}

.omni__prelude > i::before { left: 0; }
.omni__prelude > i::after { right: 0; }
.omni__prelude > b { color: var(--moss); font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }

.omni__workspace {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(245px, .31fr) minmax(0, 1fr);
  gap: 26px;
  margin: 0 55px;
  padding: 27px;
  border: 1px solid rgba(255,255,255,.62);
  border-radius: 34px;
  background: rgba(255,255,255,.52);
  box-shadow: var(--shadow-float);
}

.omni__steps {
  display: grid;
  align-content: center;
  gap: 7px;
}

.omni__steps button {
  position: relative;
  display: grid;
  grid-template-columns: 38px 1fr;
  grid-template-rows: auto auto;
  min-height: 108px;
  align-content: center;
  column-gap: 14px;
  padding: 18px 20px 18px 15px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 21px;
  color: #7d857f;
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: color .35s ease, border-color .35s ease, background .35s ease, transform .45s var(--ease);
}

.omni__steps button::after {
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 0;
  width: 2px;
  border-radius: 99px;
  background: var(--terracotta);
  content: "";
  opacity: 0;
  transform: scaleY(.25);
  transition: opacity .3s ease, transform .45s var(--ease);
}

.omni__steps button:hover { transform: translateX(4px); }
.omni__steps button.is-active { border-color: rgba(45,58,49,.07); color: var(--forest); background: rgba(255,255,255,.78); box-shadow: 0 14px 30px -25px rgba(45,58,49,.5); }
.omni__steps button.is-active::after { opacity: 1; transform: scaleY(1); }
.omni__steps button > span { grid-row: 1 / 3; align-self: center; color: var(--terracotta); font-family: var(--display); font-size: 12px; font-style: italic; }
.omni__steps strong { font-family: var(--serif); font-size: 17px; font-weight: 600; }
.omni__steps small { margin-top: 3px; overflow: hidden; font-size: 11px; line-height: 1.35; text-overflow: ellipsis; white-space: nowrap; }

.omni__product { min-width: 0; }
.omni__screen { overflow: hidden; border: 7px solid rgba(255,255,255,.78); border-radius: 25px; background: #171915; box-shadow: 0 22px 55px -30px rgba(45,58,49,.48); }
.omni__screen img { width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: contain; background: #171915; }

.omni__product figcaption {
  display: grid;
  grid-template-columns: minmax(240px, .78fr) minmax(300px, 1.22fr);
  align-items: start;
  gap: clamp(30px, 5vw, 70px);
  padding: 21px 5px 2px;
  transition: opacity .18s ease, transform .4s var(--ease);
}

.omni__product.is-changing figcaption { opacity: .25; transform: translateY(5px); }
.omni__product .omni__screen img { opacity: 1; transition: opacity .18s ease, transform .45s var(--ease); }
.omni__product.is-changing .omni__screen img { opacity: .35; transform: scale(.994); }
.omni__product figcaption > div { display: grid; gap: 7px; }
.omni__product figcaption span { color: var(--terracotta); font-family: var(--display); font-size: 10px; font-style: italic; letter-spacing: .11em; }
.omni__product figcaption strong { font-family: var(--serif); font-size: 16px; font-weight: 600; line-height: 1.55; }
.omni__product figcaption p { margin: 0; color: var(--forest-soft); font-size: 13px; line-height: 1.72; }

.section {
  position: relative;
  width: min(calc(100% - 80px), 1320px);
  margin: 0 auto;
  padding: 150px 0;
}

.section-intro h2,
.omni__intro h2,
.story__copy h2,
.models__copy h2,
.questions__intro h2,
.download__copy h2 {
  font-size: clamp(45px, 5.1vw, 76px);
}

.section-intro--split {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(270px, .58fr);
  align-items: end;
  gap: clamp(60px, 10vw, 150px);
}

.section-intro--split > p {
  max-width: 430px;
  margin: 0 0 4px;
  color: var(--forest-soft);
  font-size: 18px;
  line-height: 1.85;
}

.vine-line {
  position: absolute;
  pointer-events: none;
}

.vine-line path { stroke: rgba(101,115,95,.25); stroke-width: 1.2; stroke-linecap: round; stroke-linejoin: round; }
.vine-line path + path { fill: rgba(140,154,132,.1); }
.vine-line--manifesto { top: 32px; right: -120px; width: 480px; }

.feature-garden {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
  gap: 32px;
  margin-top: 96px;
}

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  padding: 40px;
  border: 1px solid rgba(45,58,49,.06);
  border-radius: 34px;
  background: rgba(255,255,255,.72);
  box-shadow: var(--shadow-soft);
  transition: transform .65s var(--ease), box-shadow .65s var(--ease);
}

.feature-card:hover { box-shadow: var(--shadow-float); transform: translateY(-7px) rotate(.15deg); }
.feature-card--large { grid-row: span 2; min-height: 950px; padding: 47px; }
.feature-card--clay { background: var(--clay-light); }
.feature-card--sage { background: #e8ece4; }
.feature-card--offset { transform: translateY(38px); }
.feature-card--offset:hover { transform: translateY(31px) rotate(.15deg); }

.feature-card__number {
  position: absolute;
  top: 32px;
  right: 35px;
  color: rgba(45,58,49,.35);
  font-family: var(--display);
  font-size: 13px;
  font-style: italic;
  letter-spacing: .08em;
}

.line-icon {
  display: grid;
  width: 55px;
  height: 55px;
  margin-bottom: 30px;
  place-items: center;
  border: 1px solid rgba(45,58,49,.14);
  border-radius: 50%;
  background: rgba(255,255,255,.32);
}

.line-icon svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.feature-card h3 { font-size: clamp(30px, 3vw, 46px); }
.feature-card p { max-width: 530px; margin: 22px 0 0; color: var(--forest-soft); font-size: 17px; line-height: 1.8; }
.feature-card--large .feature-card__copy { max-width: 510px; }

.feature-card--large figure {
  position: absolute;
  right: -15%;
  bottom: 45px;
  width: 97%;
  overflow: hidden;
  border: 7px solid rgba(255,255,255,.7);
  border-radius: 28px 0 0 28px;
  box-shadow: var(--shadow-float);
  transform: rotate(-2deg);
}

.feature-card--large figure img { width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: contain; transition: transform 1s var(--ease); }
.feature-card--large:hover figure img { transform: scale(1.025); }
.feature-card--large figcaption { display: flex; justify-content: space-between; padding: 13px 18px; color: rgba(255,255,255,.7); background: #1f211d; font-size: 10px; letter-spacing: .06em; }

.shot-stack { position: relative; height: 110px; margin: 18px 0 24px; }
.shot-stack span {
  position: absolute;
  top: 8px;
  left: calc(50% - 67px);
  display: grid;
  width: 126px;
  height: 88px;
  place-items: center;
  border: 1px solid rgba(45,58,49,.09);
  border-radius: 20px;
  color: rgba(45,58,49,.44);
  background: #f5eee7;
  box-shadow: var(--shadow-soft);
  font-family: var(--display);
  font-size: 26px;
  font-style: italic;
  transform: rotate(-10deg) translateX(-54px);
}

.shot-stack span:nth-child(2) { background: #e7d9cc; transform: rotate(3deg); }
.shot-stack span:nth-child(3) { color: var(--white); background: var(--forest); transform: rotate(9deg) translateX(54px); }
.shot-stack i { position: absolute; right: 12px; bottom: 8px; font-family: var(--sans); font-size: 15px; font-style: normal; }

.route-list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 30px; }
.route-list span { padding: 10px 13px; border: 1px solid rgba(45,58,49,.11); border-radius: 100px; color: var(--forest-soft); background: rgba(255,255,255,.3); font-size: 12px; letter-spacing: .04em; }

.workflow { width: 100%; max-width: none; padding-left: max(40px, calc((100vw - 1320px) / 2)); padding-right: max(40px, calc((100vw - 1320px) / 2)); background: var(--forest); color: #f5f1e9; }
.workflow::before { position: absolute; inset: 0; opacity: .17; background-image: radial-gradient(rgba(249,248,244,.26) .7px, transparent .7px); background-size: 15px 15px; content: ""; }

.section-intro--center { position: relative; z-index: 2; width: min(820px, 100%); margin: 0 auto 75px; text-align: center; }
.section-intro--center .section-kicker { justify-content: center; color: #b6c0b0; }
.section-intro--center h2 { color: var(--cream); }
.section-intro--center h2 em { color: #d9b09f; }
.section-intro--center > p:last-child { max-width: 570px; margin: 27px auto 0; color: #bfc7bd; font-size: 18px; }

.workflow-shell { position: relative; z-index: 2; overflow: hidden; border: 1px solid rgba(255,255,255,.13); border-radius: 38px; background: #f6f3ec; box-shadow: 0 40px 90px -44px rgba(0,0,0,.55); color: var(--forest); }
.workflow-nav { display: grid; grid-template-columns: repeat(7, 1fr); padding: 0 24px; border-bottom: 1px solid var(--stone); background: rgba(255,255,255,.5); }
.workflow-nav button { position: relative; min-height: 89px; padding: 15px 8px; border: 0; color: #858c86; background: transparent; cursor: pointer; transition: color .4s ease; }
.workflow-nav button::after { position: absolute; right: 15%; bottom: -1px; left: 15%; height: 2px; background: var(--terracotta); content: ""; transform: scaleX(0); transition: transform .45s var(--ease); }
.workflow-nav button b { display: block; margin-bottom: 5px; font-family: var(--display); font-size: 10px; font-style: italic; font-weight: 500; }
.workflow-nav button span { font-family: var(--serif); font-size: 14px; }
.workflow-nav button.is-active { color: var(--forest); }
.workflow-nav button.is-active::after { transform: scaleX(1); }

.workflow-panel { display: grid; grid-template-columns: minmax(280px, .72fr) minmax(0, 1.4fr); min-height: 610px; opacity: 1; transition: opacity .18s ease, transform .45s var(--ease); }
.workflow-panel.is-changing { opacity: .42; transform: translateY(5px); }
.workflow-panel__copy { display: flex; flex-direction: column; padding: 60px 40px 40px 50px; }
.step-index { margin-bottom: 30px; color: var(--terracotta); font-family: var(--display); font-size: 12px; font-style: italic; letter-spacing: .12em; }
.workflow-panel__copy h3 { font-size: clamp(33px, 3.4vw, 50px); line-height: 1.25; }
.workflow-panel__copy > p:not(.step-index) { margin: 24px 0 27px; color: var(--forest-soft); font-size: 17px; line-height: 1.85; }
.step-proof { display: flex; align-items: center; gap: 11px; color: var(--moss); font-size: 13px; }
.step-proof i { display: grid; width: 22px; height: 22px; place-items: center; border: 1px solid var(--sage); border-radius: 50%; font-size: 11px; font-style: normal; }
.step-controls { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.step-controls button { display: grid; width: 44px; height: 44px; padding: 0; place-items: center; border: 1px solid var(--stone); border-radius: 50%; background: transparent; cursor: pointer; transition: color .25s ease, background .25s ease; }
.step-controls button:hover { color: var(--white); background: var(--forest); }
.step-controls span { min-width: 52px; color: #969c96; text-align: center; font-family: var(--display); font-size: 11px; font-style: italic; }
.step-controls b { color: var(--forest); font-size: 14px; }

.workflow-panel__screen { align-self: center; width: calc(100% + 22px); overflow: hidden; border: 8px solid var(--white); border-radius: 28px 0 0 28px; background: #171915; box-shadow: 0 30px 60px -35px rgba(45,58,49,.35); }
.workflow-panel__screen img { width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: contain; }

.story { display: grid; grid-template-columns: minmax(470px, 1fr) minmax(340px, .8fr); align-items: center; gap: clamp(70px, 11vw, 160px); }
.story__visual { position: relative; min-height: 710px; }
.story-arch { width: 67%; height: auto; aspect-ratio: 31 / 54; overflow: hidden; border-radius: 220px 220px 24px 24px; box-shadow: var(--shadow-float); }
.story-arch video { width: 100%; height: 100%; aspect-ratio: 31 / 54; object-fit: cover; }
.story-seal { position: absolute; top: 60px; right: 5%; display: grid; width: 128px; height: 128px; padding: 23px; place-items: center; border: 1px solid rgba(45,58,49,.18); border-radius: 50%; background: rgba(249,248,244,.78); box-shadow: var(--shadow-soft); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); color: var(--forest-soft); font-size: 8px; letter-spacing: .22em; line-height: 1; transform: rotate(7deg); }
.story-seal i { color: var(--terracotta); font-size: 15px; font-style: normal; }
.story-seal strong { font-family: var(--display); font-size: 11px; font-style: italic; letter-spacing: .08em; }
.story-frame { position: absolute; right: 0; bottom: 24px; width: 55%; overflow: hidden; padding: 8px 8px 0; border-radius: 22px; background: var(--cream); box-shadow: var(--shadow-float); transform: rotate(4deg); }
.story-frame img { width: 100%; height: auto; aspect-ratio: 16 / 9; border-radius: 15px; object-fit: contain; }
.story-frame figcaption { padding: 10px 5px; color: #858d87; font-family: var(--display); font-size: 10px; font-style: italic; letter-spacing: .08em; }
.story__copy > p:not(.section-kicker),
.models__copy > p:not(.section-kicker),
.questions__intro > p:not(.section-kicker),
.download__copy > p:not(.section-kicker) { max-width: 560px; margin: 30px 0; color: var(--forest-soft); font-size: 18px; line-height: 1.9; }
.story__copy ul { display: grid; gap: 13px; margin: 32px 0 38px; padding: 0; list-style: none; }
.story__copy li { display: flex; align-items: center; gap: 13px; }
.story__copy li i { display: grid; width: 24px; height: 24px; place-items: center; border-radius: 50%; color: var(--white); background: var(--sage); font-size: 11px; font-style: normal; }
.botanical-link { display: inline-flex; align-items: center; gap: 24px; padding: 8px 0 9px; border-bottom: 1px solid var(--sage); font-family: var(--serif); font-size: 16px; transition: color .3s ease, border-color .3s ease; }
.botanical-link span { color: var(--terracotta); transition: transform .3s var(--ease); }
.botanical-link:hover { color: var(--terracotta); border-color: var(--terracotta); }
.botanical-link:hover span { transform: translateX(5px); }

.models { display: grid; grid-template-columns: minmax(320px, .76fr) minmax(520px, 1.24fr); align-items: center; gap: clamp(70px, 9vw, 130px); }
.models::before { position: absolute; inset: 55px -10vw; z-index: -2; border-radius: 48px; background: var(--paper-deep); content: ""; }
.vine-line--models { right: -80px; bottom: 30px; z-index: -1; width: 630px; }
.model-tabs { display: grid; gap: 4px; margin-top: 43px; }
.model-tabs button { display: grid; grid-template-columns: 40px 1fr; align-items: center; gap: 13px; width: 100%; padding: 13px 15px; border: 1px solid transparent; border-radius: 17px; background: transparent; text-align: left; cursor: pointer; transition: border-color .35s ease, background .35s ease, transform .35s var(--ease); }
.model-tabs button:hover { transform: translateX(4px); }
.model-tabs button.is-active { border-color: rgba(45,58,49,.08); background: rgba(255,255,255,.65); box-shadow: 0 10px 30px -25px rgba(45,58,49,.5); }
.model-tabs button > i { display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid rgba(45,58,49,.12); border-radius: 50% 50% 50% 8px; color: var(--moss); background: var(--sage-pale); font-family: var(--display); font-size: 14px; font-style: italic; }
.model-tabs button:nth-child(2) > i { background: #ead9d2; }
.model-tabs button:nth-child(3) > i { background: #dce5e3; }
.model-tabs button:nth-child(4) > i { background: #eee3c9; }
.model-tabs button span { display: grid; }
.model-tabs b { font-family: var(--serif); font-size: 15px; font-weight: 600; }
.model-tabs small { margin-top: 2px; color: #7c847e; font-size: 12px; }

.models__stage { position: relative; padding: 28px; border: 1px solid rgba(255,255,255,.6); border-radius: 34px; background: rgba(255,255,255,.65); box-shadow: var(--shadow-float); }
.models__stage::before { position: absolute; top: -50px; right: -38px; z-index: -1; width: 160px; height: 220px; border-radius: 100% 0 100% 0; background: var(--sage-pale); content: ""; transform: rotate(32deg); }
.models__status { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; color: #7c847e; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.models__status > span { display: flex; align-items: center; gap: 9px; }
.models__status strong { color: var(--forest); font-family: var(--serif); font-size: 15px; font-weight: 600; letter-spacing: 0; text-transform: none; }
.config-screen { overflow: hidden; border-radius: 19px; background: #171915; box-shadow: 0 15px 40px -24px rgba(45,58,49,.45); }
.config-screen img { width: 100%; height: auto; aspect-ratio: 14 / 9; object-fit: contain; }
.models__stage > p { margin: 20px 5px 0; color: var(--forest-soft); font-size: 14px; line-height: 1.75; transition: opacity .2s ease, transform .35s var(--ease); }
.models__stage.is-changing > p { opacity: .25; transform: translateY(4px); }

.questions { display: grid; grid-template-columns: minmax(300px, .7fr) minmax(500px, 1.3fr); gap: clamp(70px, 10vw, 150px); }
.questions__intro { position: relative; }
.questions__leaf { position: relative; width: 200px; height: 150px; margin-top: 55px; }
.questions__leaf::before { position: absolute; left: 95px; bottom: 0; width: 1px; height: 135px; background: var(--sage); content: ""; transform: rotate(12deg); transform-origin: bottom; }
.questions__leaf span,
.questions__leaf i,
.questions__leaf b { position: absolute; display: block; width: 55px; height: 96px; border-radius: 100% 0 100% 0; background: var(--sage-pale); }
.questions__leaf span { top: 2px; left: 45px; transform: rotate(-30deg); }
.questions__leaf i { top: 34px; left: 99px; background: var(--clay); transform: rotate(62deg); }
.questions__leaf b { top: 72px; left: 34px; width: 42px; height: 74px; background: #e9dfc5; transform: rotate(-49deg); }

.faq-list { border-top: 1px solid var(--stone); }
.faq-list details { border-bottom: 1px solid var(--stone); }
.faq-list summary { display: flex; min-height: 102px; align-items: center; justify-content: space-between; gap: 28px; padding: 22px 2px; cursor: pointer; list-style: none; font-family: var(--serif); font-size: 19px; line-height: 1.45; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { display: flex; align-items: center; gap: 22px; }
.faq-list summary i { color: var(--terracotta); font-family: var(--display); font-size: 11px; font-style: italic; letter-spacing: .08em; }
.faq-list summary > b { position: relative; flex: 0 0 34px; width: 34px; height: 34px; border: 1px solid var(--stone); border-radius: 50%; transition: transform .45s var(--ease), background .3s ease; }
.faq-list summary > b::before,
.faq-list summary > b::after { position: absolute; top: 16px; left: 10px; width: 12px; height: 1px; background: var(--forest); content: ""; }
.faq-list summary > b::after { transform: rotate(90deg); transition: transform .4s var(--ease); }
.faq-list details[open] summary > b { background: var(--sage-pale); transform: rotate(45deg); }
.faq-list details[open] summary > b::after { transform: rotate(0); }
.faq-list details > p { max-width: 670px; margin: -4px 55px 31px 57px; color: var(--forest-soft); line-height: 1.8; }

.download { width: min(calc(100% - 80px), 1400px); padding-top: 100px; padding-bottom: 100px; }
.download__shell { position: relative; display: grid; grid-template-columns: minmax(0, .85fr) minmax(450px, 1fr); overflow: hidden; min-height: 600px; padding: 75px 80px; border-radius: 52px; color: var(--cream); background: var(--forest); box-shadow: 0 34px 80px -40px rgba(45,58,49,.55); gap: clamp(70px, 10vw, 150px); }
.download__shell::before { position: absolute; inset: 0; opacity: .19; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.16'/%3E%3C/svg%3E"); content: ""; }
.download__copy,
.download__options { position: relative; z-index: 2; }
.download__logo { display: grid; width: 74px; height: 74px; margin-bottom: 44px; overflow: hidden; place-items: center; border-radius: 24px; box-shadow: 0 12px 30px rgba(0,0,0,.15); }
.download .section-kicker { color: #b7c2b3; }
.download__copy h2 em { color: #deb4a3; }
.download__copy > p:not(.section-kicker) { color: #bdc7bd; }
.download__options { display: flex; flex-direction: column; justify-content: center; }
.download__options > a { display: grid; grid-template-columns: 48px 1fr auto 26px; min-height: 91px; align-items: center; gap: 16px; padding: 13px 4px; border-bottom: 1px solid rgba(255,255,255,.13); transition: padding .35s var(--ease), color .3s ease; }
.download__options > a:first-child { border-top: 1px solid rgba(255,255,255,.13); }
.download__options > a:hover { padding-right: 0; padding-left: 10px; color: #f0c2af; }
.platform-mark { display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; font-size: 18px; }
.download__options > a > span:nth-child(2) { display: grid; }
.download__options strong { font-family: var(--serif); font-size: 16px; font-weight: 600; }
.download__options small { margin-top: 1px; color: #aeb9ae; font-size: 11px; }
.download__options > a > b { color: #aeb9ae; font-size: 10px; letter-spacing: .12em; }
.download__options > a > i { font-size: 18px; font-style: normal; }
.download__options > p { margin: 20px 0 0; color: #94a094; font-size: 11px; line-height: 1.7; }
.download__options > p a { color: #d9e0d7; border-bottom: 1px solid rgba(255,255,255,.2); }
.download__seed { position: absolute; z-index: 1; display: block; width: 220px; height: 390px; border: 1px solid rgba(255,255,255,.07); border-radius: 100% 0 100% 0; }
.download__seed--one { top: -150px; right: -20px; transform: rotate(23deg); }
.download__seed--two { bottom: -290px; left: 35%; width: 280px; height: 450px; background: rgba(140,154,132,.05); transform: rotate(50deg); }

.site-footer { display: grid; grid-template-columns: 1fr auto; width: min(calc(100% - 80px), 1400px); margin: 0 auto; padding: 60px 0 45px; border-top: 1px solid var(--stone); }
.site-footer__brand { display: flex; align-items: center; gap: 28px; }
.site-footer__brand p { margin: 0; color: #7c857e; font-size: 13px; }
.site-footer__nav { display: flex; align-items: center; gap: 32px; font-size: 13px; }
.site-footer__nav a:hover { color: var(--terracotta); }
.site-footer__meta { grid-column: 1 / -1; margin: 45px 0 0; color: #9a9f9b; font-family: var(--display); font-size: 10px; font-style: italic; letter-spacing: .08em; }
.site-footer__meta span { padding: 0 8px; }

[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .85s var(--ease), transform .85s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
.feature-card--offset[data-reveal] { transform: translateY(62px); }
.feature-card--offset[data-reveal].is-visible { transform: translateY(38px); }

@media (max-width: 1180px) {
  .site-header { grid-template-columns: 1fr auto; }
  .primary-nav { display: none; }
  .hero { grid-template-columns: minmax(0, .85fr) minmax(470px, 1fr); gap: 30px; }
  .hero h1 { font-size: clamp(56px, 6.2vw, 76px); }
  .hero-note { left: -8px; }
  .models { gap: 60px; }
  .download__shell { padding: 64px 55px; gap: 60px; }
}

@media (max-width: 960px) {
  .site-header { width: calc(100% - 32px); margin-top: 10px; }
  .menu-toggle { display: block; }
  .header-actions .button--small,
  .header-actions .text-link { display: none; }
  .primary-nav {
    position: fixed;
    top: 78px;
    right: 16px;
    left: 16px;
    display: grid;
    gap: 0;
    padding: 18px;
    border: 1px solid rgba(45,58,49,.08);
    border-radius: 24px;
    background: rgba(249,248,244,.96);
    box-shadow: var(--shadow-float);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-16px) scale(.98);
    transform-origin: top;
    transition: opacity .3s ease, transform .45s var(--ease);
  }
  .primary-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0) scale(1); }
  .primary-nav a { padding: 15px 14px; border-bottom: 1px solid var(--stone); font-family: var(--serif); font-size: 17px; }
  .primary-nav a:last-child { border-bottom: 0; }

  .hero { grid-template-columns: 1fr; width: min(calc(100% - 48px), 760px); padding-top: 145px; gap: 70px; }
  .hero__copy { max-width: 680px; }
  .hero h1 { font-size: clamp(56px, 9vw, 80px); }
  .hero__visual { justify-self: center; width: min(100%, 650px); }
  .hero-arch { right: 3%; }
  .product-float { left: 2%; }
  .scroll-cue { display: none; }
  .growth-line { width: calc(100% - 48px); overflow-x: auto; justify-content: flex-start; gap: 18px; scrollbar-width: none; }
  .growth-line::-webkit-scrollbar { display: none; }
  .growth-line span { flex: 0 0 auto; }
  .growth-line > b { margin-right: 3px; }
  .growth-line i { flex: 0 0 44px; margin: 0; }
  .section { width: min(calc(100% - 48px), 760px); padding: 110px 0; }
  .omni { width: min(calc(100% - 48px), 820px); padding-top: 110px; padding-bottom: 110px; }
  .omni::before { inset: 35px -18px; border-radius: 42px; }
  .vine-line--omni { right: -280px; }
  .omni__intro { grid-template-columns: 1fr; align-items: start; gap: 34px; padding: 0 28px; }
  .omni__summary > p { max-width: 660px; }
  .omni__prelude { grid-template-columns: 48px 1fr 100px auto; margin: 55px 28px 18px; }
  .omni__workspace { grid-template-columns: 1fr; margin: 0 28px; }
  .omni__steps { grid-template-columns: repeat(3, 1fr); align-content: stretch; }
  .omni__steps button { grid-template-columns: 1fr; grid-template-rows: auto auto auto; min-height: 122px; gap: 2px; padding: 17px; }
  .omni__steps button::after { top: auto; right: 18px; bottom: 0; left: 18px; width: auto; height: 2px; transform: scaleX(.25); }
  .omni__steps button.is-active::after { transform: scaleX(1); }
  .omni__steps button > span { grid-row: auto; margin-bottom: 7px; }
  .omni__product figcaption { grid-template-columns: minmax(210px, .8fr) minmax(280px, 1.2fr); }
  .section-intro--split { grid-template-columns: 1fr; align-items: start; gap: 35px; }
  .section-intro--split > p { max-width: 620px; }
  .vine-line--manifesto { right: -260px; }
  .feature-garden { grid-template-columns: 1fr; }
  .feature-card--large { min-height: 850px; }
  .feature-card--offset { transform: none; }
  .feature-card--offset[data-reveal],
  .feature-card--offset[data-reveal].is-visible { transform: translateY(26px); }
  .feature-card--offset[data-reveal].is-visible { transform: translateY(0); }
  .workflow { width: 100%; padding-right: 24px; padding-left: 24px; }
  .workflow-nav { overflow-x: auto; grid-template-columns: repeat(7, 95px); justify-content: start; padding: 0 10px; scrollbar-width: none; }
  .workflow-nav::-webkit-scrollbar { display: none; }
  .workflow-panel { grid-template-columns: 1fr; }
  .workflow-panel__copy { min-height: 430px; padding: 50px; }
  .workflow-panel__screen { width: calc(100% - 48px); margin: 0 24px 24px; border-radius: 26px; }
  .story { grid-template-columns: 1fr; gap: 50px; }
  .story__visual { width: min(100%, 640px); }
  .story__copy { max-width: 660px; }
  .models { grid-template-columns: 1fr; gap: 70px; }
  .models::before { inset: 38px -28px; }
  .questions { grid-template-columns: 1fr; gap: 60px; }
  .questions__leaf { display: none; }
  .download { width: calc(100% - 48px); }
  .download__shell { grid-template-columns: 1fr; min-height: 0; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  html { scroll-padding-top: 78px; }
  .site-header { min-height: 58px; padding: 0 6px 0 9px; }
  .site-header.is-scrolled { border-radius: 19px; }
  .brand { gap: 8px; font-size: 19px; }
  .brand__mark { width: 37px; height: 37px; border-radius: 12px; }
  .menu-toggle { width: 44px; height: 44px; border: 0; background: transparent; }
  .primary-nav { top: 72px; }
  .hero { width: calc(100% - 32px); min-height: auto; padding: 125px 0 80px; gap: 56px; }
  .hero::before { top: 6%; left: -45vw; width: 85vw; height: 85vw; }
  .eyebrow,
  .section-kicker { margin-bottom: 18px; font-size: 10px; }
  .hero h1 { font-size: clamp(49px, 15vw, 67px); line-height: 1.08; }
  .hero__lede { margin: 26px 0 30px; font-size: 17px; line-height: 1.8; }
  .hero__actions { display: grid; }
  .button { width: 100%; min-height: 52px; padding: 0 20px; }
  .hero__meta { justify-content: space-between; gap: 9px; font-size: 10px; }
  .hero__visual { min-height: 485px; }
  .hero-arch { right: 1%; width: 68%; height: auto; aspect-ratio: 31 / 54; border-width: 7px; border-radius: 190px 190px 25px 25px; }
  .product-float { bottom: 0; left: 0; width: 86%; border-width: 5px; border-radius: 18px; }
  .product-float figcaption { display: none; }
  .hero-note { top: 56px; left: -4px; width: 145px; padding: 16px; border-radius: 18px; }
  .hero-note p { margin-bottom: 8px; font-size: 13px; }
  .hero-note span { font-size: 7px; }
  .hero-leaf--one { right: -20px; width: 60px; height: 110px; }
  .growth-line { width: calc(100% - 32px); min-height: 70px; }
  .section { width: calc(100% - 32px); padding: 84px 0; }
  .omni { width: calc(100% - 32px); padding-top: 82px; padding-bottom: 82px; }
  .omni::before { inset: 23px -4px; border-radius: 32px; }
  .omni__intro { padding: 0 16px; }
  .omni__summary > p { font-size: 16px; line-height: 1.85; }
  .omni__signals { gap: 7px; }
  .omni__signals span { padding: 8px 10px; font-size: 10px; }
  .omni__prelude { grid-template-columns: 45px 1fr; gap: 12px; margin: 38px 12px 14px; padding: 18px; }
  .omni__prelude p { margin-top: 4px; line-height: 1.6; }
  .omni__prelude > i,
  .omni__prelude > b { display: none; }
  .omni__workspace { gap: 12px; margin: 0 12px; padding: 12px; border-radius: 25px; }
  .omni__steps { gap: 4px; }
  .omni__steps button { min-height: 91px; padding: 12px 8px; border-radius: 15px; text-align: center; }
  .omni__steps button:hover { transform: none; }
  .omni__steps button > span { margin-bottom: 3px; }
  .omni__steps strong { font-size: 14px; }
  .omni__steps small { display: none; }
  .omni__screen { border-width: 5px; border-radius: 17px; }
  .omni__product figcaption { grid-template-columns: 1fr; gap: 13px; padding: 17px 4px 4px; }
  .omni__product figcaption strong { font-size: 15px; }
  .omni__product figcaption p { font-size: 12px; }
  .section-intro h2,
  .story__copy h2,
  .models__copy h2,
  .questions__intro h2,
  .download__copy h2 { font-size: clamp(40px, 12vw, 56px); line-height: 1.18; }
  .section-intro--split { gap: 25px; }
  .section-intro--split > p,
  .story__copy > p:not(.section-kicker),
  .models__copy > p:not(.section-kicker),
  .questions__intro > p:not(.section-kicker),
  .download__copy > p:not(.section-kicker) { font-size: 16px; line-height: 1.85; }
  .feature-garden { margin-top: 60px; gap: 18px; }
  .feature-card { min-height: 440px; padding: 28px; border-radius: 28px; }
  .feature-card--large { min-height: 700px; padding: 31px; }
  .feature-card__number { top: 24px; right: 25px; }
  .feature-card h3 { font-size: 31px; }
  .feature-card p { font-size: 15px; }
  .feature-card--large figure { right: -27%; bottom: 35px; width: 120%; border-width: 5px; border-radius: 20px 0 0 20px; }
  .shot-stack { transform: scale(.82); }
  .workflow { width: 100%; padding: 84px 16px; }
  .section-intro--center { margin-bottom: 50px; }
  .section-intro--center > p:last-child { font-size: 16px; }
  .workflow-shell { border-radius: 27px; }
  .workflow-nav { grid-template-columns: repeat(7, 82px); }
  .workflow-nav button { min-height: 76px; }
  .workflow-panel__copy { min-height: 440px; padding: 38px 28px 27px; }
  .workflow-panel__copy h3 { font-size: 34px; }
  .workflow-panel__copy > p:not(.step-index) { font-size: 15px; }
  .workflow-panel__screen { width: calc(100% - 24px); margin: 0 12px 12px; border-width: 5px; border-radius: 18px; }
  .workflow-panel__screen figcaption { display: none; }
  .story__visual { min-height: 500px; }
  .story-arch { width: 70%; height: auto; aspect-ratio: 31 / 54; border-radius: 180px 180px 22px 22px; }
  .story-seal { top: 55px; right: -2px; width: 105px; height: 105px; padding: 18px; }
  .story-frame { bottom: 0; width: 63%; }
  .story__copy ul { font-size: 14px; }
  .models::before { inset: 24px -16px; border-radius: 30px; }
  .model-tabs { margin-top: 30px; }
  .models__stage { padding: 16px; border-radius: 25px; }
  .models__stage::before { right: -15px; width: 100px; height: 150px; }
  .config-screen { border-radius: 15px; }
  .faq-list summary { min-height: 88px; gap: 15px; padding: 18px 0; font-size: 16px; }
  .faq-list summary span { align-items: flex-start; gap: 12px; }
  .faq-list summary > b { flex-basis: 30px; width: 30px; height: 30px; }
  .faq-list summary > b::before,
  .faq-list summary > b::after { top: 14px; left: 9px; width: 10px; }
  .faq-list details > p { margin: -2px 35px 25px 29px; font-size: 14px; }
  .download { width: calc(100% - 32px); padding: 60px 0; }
  .download__shell { padding: 40px 25px; border-radius: 32px; gap: 35px; }
  .download__logo { width: 62px; height: 62px; margin-bottom: 30px; border-radius: 20px; }
  .download__options > a { grid-template-columns: 44px 1fr auto 18px; min-height: 80px; gap: 10px; }
  .site-footer { grid-template-columns: 1fr; width: calc(100% - 32px); gap: 35px; padding: 45px 0 35px; }
  .site-footer__brand { display: grid; gap: 10px; }
  .site-footer__nav { flex-wrap: wrap; gap: 18px 28px; }
  .site-footer__meta { margin-top: 5px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal],
  .reveal-sequence { opacity: 1; transform: none; }
  .feature-card--offset[data-reveal],
  .feature-card--offset[data-reveal].is-visible { transform: none; }
}
