:root {
  --ink: #0d1310;
  --ink-2: #18201c;
  --night: #090a0a;
  --paper: #eeede7;
  --paper-2: #f7f6f1;
  --muted: #677169;
  --line: rgba(13, 19, 16, .13);
  --green: #0cc778;
  --green-bright: #24e895;
  --lime: #b9f650;
  --ease: cubic-bezier(.15, .05, .15, .55);
  --max: 1240px;
  --pad: clamp(20px, 4vw, 64px);
  --section: clamp(88px, 11vw, 160px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
body.chat-open { overflow: hidden; }
main > section:not(.hero):not(.about-hero) { content-visibility: auto; contain-intrinsic-size: auto 900px; }
img, svg { display: block; }
a { color: inherit; text-decoration: none; }
button, summary { font: inherit; }
button { color: inherit; }
[hidden] { display: none !important; }
.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; }
::selection { background: var(--green); color: #06100b; }

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  border-radius: 10px;
  background: white;
  color: black;
  transform: translateY(-140%);
}
.skip-link:focus { transform: none; }

/* Liquid Glass: navigation layer only. Content cards deliberately stay solid. */
.lg {
  --lg-scrim: rgba(28, 28, 30, .46);
  --lg-ink: #fff;
  position: relative;
  isolation: isolate;
  color: var(--lg-ink);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .28), 0 2px 6px rgba(0, 0, 0, .18);
}
.lg--on-dark { --lg-scrim: rgba(28, 28, 30, .46); --lg-ink: #fff; }
.lg--on-light { --lg-scrim: rgba(255, 255, 255, .58); --lg-ink: #161b18; }
.lg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  border-radius: inherit;
  background: var(--lg-scrim);
  -webkit-backdrop-filter: blur(14px) saturate(1.05);
  backdrop-filter: blur(14px) saturate(1.05);
}
@supports (backdrop-filter: url(#x)) {
  .lg[data-lg-filter]::before {
    -webkit-backdrop-filter: var(--lg-filter) blur(10px) saturate(1.05);
    backdrop-filter: var(--lg-filter) blur(10px) saturate(1.05);
  }
}
.lg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, 0) 44%);
  box-shadow:
    inset 1px 1px 1px -.5px rgba(255,255,255,.50),
    inset -1px -1px 1px -.5px rgba(255,255,255,.25),
    inset 0 5px 12px -8px rgba(255,255,255,.40),
    inset 0 -8px 18px -14px rgba(0,0,0,.45);
}
@supports not (backdrop-filter: url(#x)) {
  .lg::after {
    box-shadow:
      inset 1.5px 1.5px 1px -1px rgba(255,255,255,.85),
      inset -1.5px -1.5px 1px -1px rgba(255,255,255,.45),
      inset 0 6px 14px -8px rgba(255,255,255,.50),
      inset 0 -10px 20px -14px rgba(0,0,0,.50);
  }
}
.lg-fill { background: rgba(255,255,255,.14); }
.lg-fill--active { background: rgba(255,255,255,.22); }
.lg--on-light .lg-fill { background: rgba(0,0,0,.07); }
.lg--on-light .lg-fill--active { background: rgba(0,0,0,.12); }
.lg--interactive { transition: transform 333ms var(--ease), box-shadow 333ms var(--ease); }
.lg--interactive:active { transform: scale(.965); box-shadow: 0 4px 16px rgba(0,0,0,.3); }

.site-nav {
  position: fixed;
  z-index: 100;
  top: max(16px, env(safe-area-inset-top));
  left: 50%;
  width: min(calc(100% - 32px), 1180px);
  min-height: 68px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 8px 9px 8px 18px;
  border-radius: 24px;
  transform: translateX(-50%);
  transition: color 333ms var(--ease), box-shadow 333ms var(--ease);
}
.brand { display: inline-flex; align-items: center; gap: 10px; width: max-content; font: 700 15px/1 "Manrope", sans-serif; letter-spacing: -.02em; }
.brand img { width: 34px; height: 34px; padding: 4px; border-radius: 10px; background: #0d1310; }
.nav-links { position: relative; display: flex; align-items: center; height: 48px; padding: 4px; }
.nav-links a { position: relative; z-index: 1; display: grid; place-items: center; height: 40px; padding: 0 16px; border-radius: 16px; font-size: 13px; font-weight: 600; opacity: .82; transition: opacity 180ms ease; }
.nav-links a:hover, .nav-links a:focus-visible { opacity: 1; }
.nav-active-fill { position: absolute; top: 4px; left: 4px; width: 0; height: 40px; border-radius: 16px; background: rgba(255,255,255,.14); opacity: 0; }
.lg--on-light .nav-active-fill { background: rgba(0,0,0,.075); }
.nav-cta { justify-self: end; display: inline-flex; align-items: center; gap: 9px; min-height: 50px; padding: 0 19px; border-radius: 17px; background: var(--green); color: #06110b; font-size: 13px; font-weight: 700; transition: background 180ms ease, transform 333ms var(--ease); }
.nav-cta:hover { background: var(--green-bright); transform: scale(1.02); }
.nav-cta svg, .button svg { width: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.menu-toggle { position: relative; display: none; justify-self: end; width: 48px; height: 48px; border: 0; border-radius: 15px; padding: 0; }
.menu-toggle span { position: absolute; left: 14px; right: 14px; height: 1.5px; background: currentColor; transition: transform 250ms ease, top 250ms ease; }
.menu-toggle span:first-child { top: 19px; }
.menu-toggle span:last-child { top: 28px; }
.menu-toggle[aria-expanded="true"] span:first-child { top: 24px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { top: 24px; transform: rotate(-45deg); }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #090a0a;
  color: #fff;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9,10,10,.12) 0, rgba(9,10,10,.42) 50%, rgba(9,10,10,.10) 100%),
    radial-gradient(circle at 70% 48%, transparent 0 18%, rgba(9,10,10,.46) 76%);
  z-index: 1;
  pointer-events: none;
}
.hero-atmosphere { position: absolute; inset: 0; overflow: hidden; }
.aurora { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .6; animation: breathe 10s ease-in-out infinite alternate; }
.aurora-one { width: 56vw; height: 42vw; top: -16vw; right: -5vw; background: #0cc778; }
.aurora-two { width: 42vw; height: 42vw; bottom: -24vw; right: 18vw; background: #006c5a; animation-delay: -4s; }
.aurora-three { width: 24vw; height: 24vw; top: 35%; left: 45%; background: #b9f650; opacity: .18; animation-delay: -7s; }
@keyframes breathe { from { transform: scale(.92) translate3d(-2%, 2%, 0); opacity: .35; } to { transform: scale(1.08) translate3d(2%, -2%, 0); opacity: .62; } }
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255,255,255,.17) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.17) 1px, transparent 1px),
    repeating-linear-gradient(132deg, transparent 0 72px, rgba(185,246,80,.25) 73px, transparent 74px 146px);
  background-size: 72px 72px, 72px 72px, auto;
  mask-image: radial-gradient(circle at 68% 48%, black 5%, transparent 70%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: min(calc(100% - (var(--pad) * 2)), var(--max));
  min-height: calc(100svh - 40px);
  margin: 0 auto;
  padding: clamp(152px, 16vh, 210px) 0 120px;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(520px, 1.18fr);
  align-items: center;
  gap: clamp(56px, 7vw, 112px);
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: "Manrope", sans-serif; }
.hero h1 { max-width: 720px; margin-bottom: 28px; font-size: clamp(58px, 6.6vw, 104px); line-height: .91; letter-spacing: -.072em; font-weight: 600; }
.hero h1 span { display: block; color: var(--green-bright); font-weight: 500; word-spacing: .07em; }
.hero-lede { max-width: 640px; margin-bottom: 34px; color: rgba(255,255,255,.72); font-size: clamp(17px, 1.45vw, 21px); line-height: 1.58; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 58px; padding: 0 24px; border-radius: 18px; font-weight: 700; font-size: 14px; transition: transform 333ms var(--ease), background 180ms ease; }
.button-primary { background: var(--green); color: #06110b; box-shadow: 0 14px 38px rgba(12,199,120,.22); }
.button-primary:hover { background: var(--green-bright); transform: translateY(-2px); }
.text-link { display: inline-flex; gap: 10px; color: rgba(255,255,255,.78); font-weight: 600; font-size: 14px; }
.text-link span { color: var(--green-bright); }
.text-link-dark { color: var(--ink); }
.text-link-dark span { color: #168554; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px 22px; margin: 38px 0 0; padding: 0; list-style: none; color: rgba(255,255,255,.52); font-size: 12px; }
.hero-trust li { display: flex; align-items: center; gap: 8px; }
.hero-trust i { width: 5px; height: 5px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px rgba(12,199,120,.8); }

.system-visual { position: relative; min-width: 0; }
.system-visual::before { content: ""; position: absolute; inset: 8% -8% -12%; z-index: -1; border-radius: 50%; background: rgba(12,199,120,.25); filter: blur(56px); }
.system-window { position: relative; overflow: hidden; min-height: 560px; border: 1px solid rgba(255,255,255,.15); border-radius: 28px; background: rgba(7,11,9,.93); box-shadow: 0 42px 110px rgba(0,0,0,.46), 0 1px 0 rgba(255,255,255,.08) inset; }
.window-bar { height: 58px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 20px; border-bottom: 1px solid rgba(255,255,255,.09); background: #0e1210; }
.window-dots { display: flex; gap: 6px; }
.window-dots span { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.16); }
.window-dots span:first-child { background: var(--green); }
.window-bar p { margin: 0; color: rgba(255,255,255,.74); font-size: 11px; font-weight: 600; letter-spacing: .04em; }
.live-dot { display: inline-block; width: 6px; height: 6px; margin-right: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 12px var(--green); }
.window-meta { justify-self: end; color: rgba(255,255,255,.28); font: 600 9px/1 "Manrope", sans-serif; letter-spacing: .13em; }
.system-canvas { position: relative; min-height: 430px; overflow: hidden; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 32px 32px; }
.system-canvas::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 48% 50%, rgba(12,199,120,.09), transparent 55%); }
.flow-lines { position: absolute; inset: 0; width: 100%; height: 100%; }
.flow-path { fill: none; stroke: rgba(107,137,121,.32); stroke-width: 1.25; stroke-dasharray: 4 5; }
.path-one { stroke: rgba(12,199,120,.64); stroke-dasharray: 7 5; animation: dash 13s linear infinite; }
@keyframes dash { to { stroke-dashoffset: -300; } }
.flow-node { position: absolute; z-index: 2; width: 196px; min-height: 72px; display: grid; grid-template-columns: 38px 1fr auto; align-items: center; gap: 10px; padding: 12px; border: 1px solid rgba(255,255,255,.12); border-radius: 17px; background: #121814; box-shadow: 0 16px 34px rgba(0,0,0,.3); transition: border-color 333ms var(--ease), transform 333ms var(--ease), box-shadow 333ms var(--ease); }
.flow-node.is-active { border-color: rgba(36,232,149,.55); transform: translateY(-3px); box-shadow: 0 18px 46px rgba(0,0,0,.42), 0 0 28px rgba(12,199,120,.12); }
.node-icon { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px; background: #1d2721; color: var(--green-bright); }
.node-icon svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.flow-node small { display: block; margin-bottom: 5px; color: rgba(255,255,255,.32); font: 600 8px/1 "Manrope", sans-serif; letter-spacing: .1em; text-transform: uppercase; }
.flow-node strong { display: block; color: rgba(255,255,255,.82); font-size: 12px; }
.node-status { align-self: start; padding-top: 3px; color: rgba(255,255,255,.35); font-size: 8px; }
.node-capture { top: 66px; left: 5%; }
.node-respond { top: 153px; left: 35%; }
.node-qualify { right: 5%; bottom: 88px; }
.node-book { left: 18%; bottom: 48px; }
.signal-pulse { position: absolute; z-index: 3; width: 8px; height: 8px; border-radius: 50%; background: var(--green-bright); box-shadow: 0 0 14px var(--green); }
.pulse-one { left: 34%; top: 43%; animation: signal 3.1s ease-in-out infinite; }
.pulse-two { right: 24%; top: 55%; animation: signal 3.1s 1.3s ease-in-out infinite; }
@keyframes signal { 0%, 100% { opacity: 0; transform: scale(.4); } 45% { opacity: 1; transform: scale(1); } 75% { opacity: 0; transform: scale(2.5); } }
.system-footer { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 12px 20px; border-top: 1px solid rgba(255,255,255,.08); background: #0e1210; }
.system-footer p { margin: 0; }
.system-footer strong, .system-footer span { display: block; }
.system-footer strong { margin-bottom: 4px; color: rgba(255,255,255,.82); font-size: 11px; }
.system-footer p span { color: rgba(255,255,255,.35); font-size: 9px; }
.system-health { display: flex; align-items: center; gap: 7px; color: rgba(255,255,255,.4); font-size: 9px; white-space: nowrap; }
.system-health span { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.story-switcher { position: absolute; z-index: 4; left: 50%; bottom: -28px; width: 326px; height: 58px; display: grid; grid-template-columns: repeat(3, 1fr); padding: 5px; border-radius: 22px; transform: translateX(-50%); }
.story-switcher button { position: relative; z-index: 2; border: 0; background: transparent; color: inherit; opacity: .62; font-size: 11px; font-weight: 700; cursor: pointer; }
.story-switcher button.is-active { opacity: 1; }
.story-fill { position: absolute; z-index: 1; top: 5px; left: 5px; width: calc((100% - 10px) / 3); height: 48px; border-radius: 17px; transform-origin: center; }
.hero-edge { position: absolute; z-index: 2; right: var(--pad); bottom: 26px; display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.28); font: 600 8px/1 "Manrope", sans-serif; letter-spacing: .12em; text-transform: uppercase; }
.hero-edge i { width: 22px; height: 1px; background: rgba(255,255,255,.14); }

.section-shell { width: min(calc(100% - (var(--pad) * 2)), var(--max)); margin: 0 auto; padding-block: var(--section); }
.manifesto { padding-bottom: clamp(72px, 9vw, 120px); }
.manifesto-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr); gap: clamp(42px, 8vw, 120px); align-items: end; }
.manifesto h2, .section-heading h2, .work-heading h2, .faq-intro h2 { margin-bottom: 0; font-size: clamp(43px, 6vw, 82px); line-height: .99; letter-spacing: -.062em; font-weight: 600; }
h2 em { color: #168554; font-style: normal; font-weight: 500; }
.manifesto-copy { padding-bottom: 5px; }
.manifesto-copy p { margin: 0 0 16px; color: #59635c; font-size: clamp(17px, 1.6vw, 21px); line-height: 1.62; }
.principle-row { margin-top: clamp(62px, 8vw, 105px); display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.principle-row article { min-height: 190px; padding: 28px clamp(24px, 3vw, 42px) 30px 0; }
.principle-row article + article { padding-left: clamp(24px, 3vw, 42px); border-left: 1px solid var(--line); }
.principle-row span, .card-number { display: block; margin-bottom: 34px; color: #168554; font: 700 10px/1 "Manrope", sans-serif; letter-spacing: .14em; }
.principle-row strong { display: block; margin-bottom: 8px; font-family: "Manrope", sans-serif; font-size: 18px; letter-spacing: -.02em; }
.principle-row p { max-width: 300px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }

.systems { padding-top: clamp(70px, 8vw, 110px); }
.section-heading { display: grid; grid-template-columns: minmax(0, 1fr) 320px; align-items: end; gap: 70px; margin-bottom: clamp(46px, 6vw, 82px); }
.section-heading h2 { max-width: 860px; font-size: clamp(42px, 5.2vw, 72px); }
.section-heading > p { margin: 0 0 4px; color: var(--muted); font-size: 17px; line-height: 1.6; }
.systems-grid { display: grid; grid-template-columns: 1.15fr .85fr; grid-template-rows: repeat(2, minmax(330px, auto)); gap: 16px; }
.system-card { position: relative; overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; min-height: 330px; padding: clamp(24px, 3vw, 38px); border: 1px solid rgba(13,19,16,.11); border-radius: 28px; background: #e4e6df; }
.system-card-feature { grid-row: span 2; display: flex; flex-direction: column; min-height: 676px; background: var(--ink); color: white; }
.card-number { position: absolute; top: 28px; left: 30px; margin: 0; color: currentColor; opacity: .5; }
.card-content { position: relative; z-index: 2; align-self: end; }
.system-card:not(.system-card-feature) .card-content { grid-column: 1; }
.card-content > p { margin: 0 0 10px; color: #167a4d; font: 700 10px/1 "Manrope", sans-serif; letter-spacing: .14em; text-transform: uppercase; }
.system-card-feature .card-content > p { color: var(--green-bright); }
.card-content h3 { max-width: 540px; margin: 0 0 12px; font-size: clamp(27px, 3vw, 44px); line-height: 1.04; letter-spacing: -.048em; font-weight: 600; }
.system-card:not(.system-card-feature) .card-content h3 { font-size: clamp(24px, 2.35vw, 34px); }
.card-content > span { display: block; max-width: 470px; color: rgba(255,255,255,.5); font-size: 14px; line-height: 1.55; }
.system-card:not(.system-card-feature) .card-content > span { color: var(--muted); }
.card-art { position: relative; }
.system-card-feature .card-art { flex: 1; min-height: 370px; margin: 40px 0 30px; }
.browser-frame { position: absolute; inset: 4% 0 0 6%; overflow: hidden; border: 1px solid rgba(255,255,255,.14); border-radius: 20px 20px 0 0; background: #eff1eb; transform: rotate(-3deg); box-shadow: -18px 34px 70px rgba(0,0,0,.38); }
.browser-frame > span { position: relative; z-index: 2; display: inline-block; width: 7px; height: 7px; margin: 14px 0 0 6px; border-radius: 50%; background: #9ca39f; }
.browser-frame > span:first-child { margin-left: 16px; background: var(--green); }
.browser-hero { position: absolute; inset: 40px 10px 10px; overflow: hidden; border-radius: 14px 14px 0 0; background: #101813; }
.browser-hero::before { content: "Make your best first impression."; position: absolute; z-index: 2; top: 16%; left: 9%; width: 70%; color: white; font: 600 clamp(25px, 3vw, 43px)/.96 "Manrope", sans-serif; letter-spacing: -.06em; }
.browser-hero::after { content: ""; position: absolute; width: 270px; height: 270px; right: -20px; bottom: -100px; border-radius: 50%; background: var(--green); filter: blur(12px); }
.browser-hero i { position: absolute; left: 9%; height: 8px; border-radius: 99px; background: rgba(255,255,255,.22); }
.browser-hero i:nth-child(1) { top: 55%; width: 52%; }.browser-hero i:nth-child(2) { top: 60%; width: 38%; }.browser-hero i:nth-child(3) { top: 72%; width: 26%; height: 38px; background: var(--green); }
.system-card:not(.system-card-feature) .card-art { grid-column: 2; grid-row: 1; min-height: 250px; }
.response-art { display: grid; align-content: center; justify-items: end; gap: 10px; }
.message { display: block; width: max-content; max-width: 95%; padding: 11px 14px; border-radius: 14px 14px 4px 14px; background: #fff; color: #344039; font-size: 11px; box-shadow: 0 9px 25px rgba(13,19,16,.08); }
.msg-one { margin-right: 56px; opacity: .66; }.msg-two { margin-right: 26px; background: #ccf7e4; }.msg-three { background: var(--ink); color: white; }
.ops-art { display: grid; place-items: center; }
.ops-dashboard { width: min(100%, 250px); overflow: hidden; border: 1px solid rgba(13,19,16,.12); border-radius: 18px; background: #f7f8f4; box-shadow: 0 18px 42px rgba(13,19,16,.13); transform: rotate(1.5deg); }
.ops-dashboard-head { min-height: 40px; display: flex; align-items: center; justify-content: space-between; padding: 0 13px; border-bottom: 1px solid rgba(13,19,16,.09); color: #58635c; font-size: 9px; font-weight: 700; letter-spacing: .04em; }
.ops-dashboard-head i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(12,199,120,.12); }
.ops-dashboard-summary { display: flex; align-items: end; justify-content: space-between; gap: 12px; padding: 14px 13px 12px; }
.ops-dashboard-summary div { display: grid; gap: 2px; }
.ops-dashboard-summary small { color: #7a847e; font-size: 7px; }
.ops-dashboard-summary strong { color: var(--ink); font: 600 26px/1 "Manrope", sans-serif; letter-spacing: -.06em; }
.ops-dashboard-summary > span { margin-bottom: 2px; padding: 6px 7px; border-radius: 8px; background: #d8f5e7; color: #176f49; font-size: 7px; font-weight: 700; }
.ops-dashboard-list { padding: 0 8px 8px; }
.ops-dashboard-list > div { min-height: 33px; display: grid; grid-template-columns: 8px 1fr auto; align-items: center; gap: 7px; padding: 0 7px; border-top: 1px solid rgba(13,19,16,.07); color: #445048; font-size: 8px; }
.ops-dashboard-list i { width: 5px; height: 5px; border-radius: 50%; background: #98a39c; }
.ops-dashboard-list > div:first-child i { background: var(--green); }
.ops-dashboard-list small { color: #879089; font-size: 7px; }

.offer { padding-top: 0; }
.offer-shell { overflow: hidden; display: grid; grid-template-columns: minmax(360px, .82fr) minmax(520px, 1.18fr); border: 1px solid rgba(13,19,16,.12); border-radius: 32px; background: #dfe3dc; }
.offer-intro { padding: clamp(36px, 5vw, 70px); background: var(--ink); color: white; }
.offer-intro h2 { margin-bottom: 26px; font-size: clamp(42px, 5vw, 68px); line-height: .98; letter-spacing: -.06em; font-weight: 600; }
.offer-intro h2 em { color: var(--green-bright); }
.offer-intro > p { max-width: 520px; color: rgba(255,255,255,.62); font-size: 16px; line-height: 1.65; }
.offer-price { display: flex; align-items: center; gap: 18px; margin: 38px 0 24px; }
.offer-price > span { color: rgba(255,255,255,.28); font-size: 24px; }
.offer-price div { display: grid; gap: 4px; }
.offer-price small { color: rgba(255,255,255,.42); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.offer-price strong { font: 600 clamp(31px, 4vw, 48px)/1 "Manrope", sans-serif; letter-spacing: -.05em; }
.offer-price strong em { color: rgba(255,255,255,.5); font-size: 13px; letter-spacing: 0; }
.offer-intro .offer-measure { margin-bottom: 30px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.48); font-size: 13px; }
.button-dark { width: max-content; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.08); color: white; }
.button-dark:hover { background: rgba(255,255,255,.14); transform: translateY(-2px); }
.offer-delivery { padding: clamp(22px, 3vw, 42px) clamp(26px, 4vw, 54px); }
.offer-delivery article { display: grid; grid-template-columns: 42px 1fr; gap: 20px; padding: 26px 0; border-bottom: 1px solid rgba(13,19,16,.12); }
.offer-delivery article:last-child { border-bottom: 0; }
.offer-delivery article > span { padding-top: 5px; color: #247451; font: 700 10px/1 "Manrope", sans-serif; letter-spacing: .12em; }
.offer-delivery h3 { margin-bottom: 8px; font-size: clamp(20px, 2vw, 27px); line-height: 1.12; letter-spacing: -.035em; }
.offer-delivery p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }

.work { background: var(--night); color: white; }
.work .section-shell { padding-bottom: clamp(100px, 13vw, 180px); }
.work-heading { display: grid; grid-template-columns: 1fr; align-items: end; gap: 70px; padding-bottom: clamp(60px, 8vw, 104px); }
.work-heading h2 { max-width: 820px; font-size: clamp(45px, 6vw, 82px); }
.work-heading h2 em { color: var(--green-bright); }
.work-heading > p:last-child { margin: 0; color: rgba(255,255,255,.52); font-size: 17px; line-height: 1.65; }
.case-list { border-top: 1px solid rgba(255,255,255,.14); }
.case-study { display: grid; grid-template-columns: 140px minmax(330px, .8fr) minmax(420px, 1.2fr); gap: clamp(30px, 5vw, 76px); align-items: center; min-height: 420px; padding: 46px 0; border-bottom: 1px solid rgba(255,255,255,.14); }
.case-index span { display: block; margin-bottom: 65px; color: var(--green-bright); font: 600 11px/1 "Manrope", sans-serif; letter-spacing: .13em; }
.case-index p { margin: 0; color: rgba(255,255,255,.38); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.case-copy h3 { margin-bottom: 28px; font-size: clamp(28px, 3.4vw, 48px); line-height: 1.06; letter-spacing: -.05em; font-weight: 500; }
.case-copy ul { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.case-copy li { padding: 8px 11px; border: 1px solid rgba(255,255,255,.12); border-radius: 99px; color: rgba(255,255,255,.48); font-size: 10px; }
.case-visual { position: relative; min-height: 310px; overflow: hidden; border: 1px solid rgba(255,255,255,.09); border-radius: 26px; background: #111713; }
.garage-visual { background: radial-gradient(circle at 76% 18%, rgba(12,199,120,.55), transparent 34%), linear-gradient(140deg, #132019, #090b0a); }
.case-screen { position: absolute; inset: 16% 13% -10% 16%; padding: 30px; border: 1px solid rgba(255,255,255,.16); border-radius: 20px 20px 0 0; background: #f4f5f0; color: var(--ink); box-shadow: 0 22px 60px rgba(0,0,0,.4); transform: rotate(-3deg); }
.mini-label { display: block; margin-bottom: 24px; color: #718078; font: 700 8px/1 "Manrope", sans-serif; letter-spacing: .12em; }
.case-screen strong { display: block; margin-bottom: 6px; font: 600 28px/1 "Manrope", sans-serif; letter-spacing: -.04em; }
.case-screen p { color: #707972; font-size: 13px; }
.case-screen i { display: block; height: 1px; margin: 30px 0 18px; background: #d6dbd7; }
.case-screen small { display: inline-flex; padding: 9px 12px; border-radius: 10px; background: #cdf7e4; color: #116b43; font-weight: 700; }
.call-visual { background: radial-gradient(circle at 12% 80%, rgba(185,246,80,.26), transparent 38%), #101612; }
.phone-mock { position: absolute; width: 220px; min-height: 360px; top: 36px; left: 50%; padding: 32px 18px; border: 8px solid #282f2b; border-radius: 38px; background: #e9ece7; color: var(--ink); transform: translateX(-50%) rotate(5deg); box-shadow: 0 20px 60px #000; }
.phone-mock > span { display: block; margin: 18px 0 38px; color: #757f78; font-size: 10px; text-align: center; }
.chat-bubble { padding: 13px; border-radius: 16px 16px 4px 16px; background: var(--green); font-size: 12px; line-height: 1.45; }
.phone-mock small { display: block; margin-top: 7px; color: #909891; font-size: 8px; text-align: right; }
.crm-visual { background: linear-gradient(135deg, rgba(12,199,120,.16), transparent 55%), #101612; }
.crm-panel { position: absolute; inset: 14% 10% -8%; padding: 28px; border: 1px solid rgba(255,255,255,.1); border-radius: 20px 20px 0 0; background: #19211c; box-shadow: 0 24px 70px rgba(0,0,0,.4); }
.crm-bars { display: flex; align-items: end; gap: 9px; height: 112px; margin: 15px 0 26px; padding: 16px; border-radius: 14px; background: rgba(255,255,255,.035); }
.crm-bars i { flex: 1; height: 50%; border-radius: 5px 5px 0 0; background: #334038; }.crm-bars i:nth-child(2) { height: 85%; background: var(--green); }.crm-bars i:nth-child(3) { height: 68%; background: #97cc43; }
.crm-panel p { margin: 0 0 5px; color: rgba(255,255,255,.38); font-size: 10px; }.crm-panel strong { color: white; font-size: 24px; }

.systems .section-heading, .process .section-heading { grid-template-columns: 1fr; }
.process-track { display: grid; gap: 14px; margin: 0; padding: 0; list-style: none; }
.process-track li { position: relative; display: grid; grid-template-columns: 60px minmax(0, 1fr) minmax(270px, .7fr); align-items: center; gap: clamp(28px, 5vw, 70px); min-height: 210px; padding: clamp(26px, 4vw, 44px); border: 1px solid var(--line); border-radius: 26px; background: var(--paper-2); }
.process-dot { position: relative; z-index: 1; width: 60px; height: 60px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: var(--paper); color: #287252; font: 700 10px/1 "Manrope", sans-serif; }
.process-track li:hover .process-dot { background: var(--ink); color: var(--green-bright); }
.process-copy h3 { margin: 0 0 13px; font-size: clamp(31px, 3.4vw, 47px); line-height: 1.02; letter-spacing: -.052em; font-weight: 600; }
.process-copy p { max-width: 590px; margin: 0; color: var(--muted); font-size: 16px; line-height: 1.62; }
.process-visual { min-height: 142px; overflow: hidden; border: 1px solid rgba(13,19,16,.09); border-radius: 20px; background: #e5e8e1; }
.process-visual-path { display: flex; align-items: center; justify-content: center; padding: 25px; }
.process-visual-path span { width: 22px; height: 22px; flex: 0 0 auto; border: 6px solid #f7f8f4; border-radius: 50%; background: #aeb8b1; box-shadow: 0 0 0 1px rgba(13,19,16,.15); }
.process-visual-path span:first-child, .process-visual-path span:last-child { background: var(--green); }
.process-visual-path i { width: 38px; height: 1px; background: #9eaaa2; }
.process-visual-fix { display: grid; align-content: center; gap: 8px; padding: 20px; }
.process-visual-fix span, .process-visual-fix i { display: block; padding: 9px 11px; border-radius: 10px; background: #f7f8f4; color: #59645d; font-size: 9px; font-style: normal; }
.process-visual-fix i { margin-left: 24px; background: var(--ink); color: white; }
.process-visual-checks { display: grid; align-content: center; gap: 4px; padding: 16px 18px; }
.process-visual-checks > span { display: flex; align-items: center; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid rgba(13,19,16,.09); color: #59645d; font-size: 9px; }
.process-visual-checks > span:last-child { border-bottom: 0; }
.process-visual-checks i { width: 18px; height: 18px; display: grid; place-items: center; border-radius: 50%; background: var(--green); color: #07110b; font-size: 8px; font-style: normal; font-weight: 800; }
.process-visual-results { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(13,19,16,.1); }
.process-visual-results div { display: grid; place-content: center; gap: 8px; padding: 18px; background: #e5e8e1; }
.process-visual-results small { color: #7a857d; font-size: 8px; }
.process-visual-results strong { color: var(--ink); font: 600 18px/1 "Manrope", sans-serif; letter-spacing: -.04em; }

.faq { display: grid; grid-template-columns: minmax(300px, .7fr) minmax(420px, 1.3fr); gap: clamp(60px, 9vw, 130px); }
.faq-intro { position: sticky; top: 130px; align-self: start; }
.faq-intro h2 { margin-bottom: 32px; font-size: clamp(40px, 5vw, 66px); }
.faq-intro > a { display: inline-flex; gap: 12px; padding-bottom: 5px; border-bottom: 1px solid var(--ink); font-weight: 600; font-size: 14px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 30px; min-height: 92px; padding: 24px 0; list-style: none; cursor: pointer; font: 600 clamp(17px, 1.6vw, 21px)/1.25 "Manrope", sans-serif; letter-spacing: -.025em; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary i { position: relative; flex: 0 0 auto; width: 32px; height: 32px; border: 1px solid var(--line); border-radius: 50%; }
.faq-list summary i::before, .faq-list summary i::after { content: ""; position: absolute; top: 15px; left: 9px; width: 12px; height: 1px; background: currentColor; transition: transform 250ms ease; }
.faq-list summary i::after { transform: rotate(90deg); }
.faq-list details[open] summary i::after { transform: rotate(0); }
.faq-list details > p { max-width: 670px; margin: -6px 55px 0 0; padding: 0 0 30px; color: var(--muted); font-size: 16px; line-height: 1.65; }

.about-hero { position: relative; min-height: 780px; overflow: hidden; background: var(--night); color: white; }
.about-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(9,10,10,.12), rgba(9,10,10,.3)); pointer-events: none; }
.about-hero-grid { position: absolute; inset: 0; opacity: .24; background-image: linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px); background-size: 76px 76px; mask-image: radial-gradient(circle at 72% 42%, black, transparent 72%); }
.about-hero-orb { position: absolute; width: 62vw; height: 62vw; top: -28vw; right: -12vw; border-radius: 50%; background: rgba(12,199,120,.48); filter: blur(120px); }
.about-hero-inner { position: relative; z-index: 2; width: min(calc(100% - (var(--pad) * 2)), var(--max)); min-height: 780px; display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr); align-items: end; gap: clamp(60px, 10vw, 150px); margin: 0 auto; padding: 180px 0 92px; }
.about-hero h1 { max-width: 920px; margin: 0; font-size: clamp(70px, 9.2vw, 140px); line-height: .88; letter-spacing: -.077em; font-weight: 600; }
.about-hero h1 em { display: block; color: var(--green-bright); font-style: normal; font-weight: 500; }
.about-hero-note { padding: 30px 0 8px; border-top: 1px solid rgba(255,255,255,.2); }
.about-hero-note p { margin: 0 0 34px; color: rgba(255,255,255,.68); font-size: clamp(17px, 1.45vw, 20px); line-height: 1.65; }
.about-hero-note a { display: inline-flex; align-items: center; gap: 14px; padding-bottom: 6px; border-bottom: 1px solid rgba(255,255,255,.5); font-size: 13px; font-weight: 700; }
.about-hero-note b { color: var(--green-bright); font-size: 16px; }

.about-story { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, .65fr); gap: clamp(60px, 10vw, 150px); align-items: start; }
.about-story-heading h2 { max-width: 780px; margin: 0; font-size: clamp(48px, 6.4vw, 88px); line-height: .98; letter-spacing: -.064em; font-weight: 600; }
.about-story-body { padding-top: 46px; border-top: 1px solid var(--line); }
.about-story-body p { margin: 0 0 24px; color: #505c54; font-size: clamp(17px, 1.45vw, 20px); line-height: 1.7; }
.about-story-body p:last-child { margin-bottom: 0; color: var(--ink); font-weight: 500; }

.about-belief { background: var(--night); color: white; }
.about-belief-head { display: grid; grid-template-columns: 1fr; gap: clamp(50px, 9vw, 130px); align-items: end; padding-bottom: clamp(66px, 9vw, 112px); }
.about-belief-head h2 { margin: 0; font-size: clamp(58px, 8vw, 112px); line-height: .9; letter-spacing: -.073em; }
.about-belief-head h2 em { color: var(--green-bright); }
.about-belief-head > p:last-child { margin: 0; color: rgba(255,255,255,.56); font-size: 18px; line-height: 1.66; }
.about-principles { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid rgba(255,255,255,.14); border-left: 1px solid rgba(255,255,255,.14); }
.about-principles article { min-height: 280px; padding: clamp(28px, 4vw, 48px); border-right: 1px solid rgba(255,255,255,.14); border-bottom: 1px solid rgba(255,255,255,.14); }
.about-principles article > span { display: block; margin-bottom: clamp(60px, 7vw, 96px); color: var(--green-bright); font: 700 9px/1 "Manrope", sans-serif; letter-spacing: .14em; }
.about-principles h3 { max-width: 480px; margin-bottom: 13px; font-size: clamp(25px, 3vw, 40px); line-height: 1.08; letter-spacing: -.045em; }
.about-principles p { max-width: 520px; margin: 0; color: rgba(255,255,255,.48); font-size: 15px; line-height: 1.65; }

.about-focus { display: grid; grid-template-columns: minmax(0, 1fr) minmax(370px, .72fr); gap: clamp(70px, 11vw, 160px); align-items: center; }
.about-focus-copy h2 { margin-bottom: 30px; font-size: clamp(48px, 6.2vw, 84px); line-height: .98; letter-spacing: -.062em; }
.about-focus-copy > p { max-width: 720px; margin-bottom: 18px; color: #59635c; font-size: 18px; line-height: 1.68; }
.about-fit { padding: clamp(34px, 5vw, 58px); border-radius: 28px; background: var(--ink); color: white; box-shadow: 0 24px 70px rgba(13,19,16,.16); }
.about-fit h3 { margin: 0 0 28px; font-size: clamp(30px, 3.2vw, 44px); line-height: 1.06; letter-spacing: -.046em; }
.about-fit ul { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.about-fit li { position: relative; padding: 17px 0 17px 26px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.63); font-size: 14px; line-height: 1.55; }
.about-fit li::before { content: ""; position: absolute; top: 24px; left: 2px; width: 6px; height: 6px; border-radius: 50%; background: var(--green); }

.closing { position: relative; min-height: 720px; overflow: hidden; padding: clamp(110px, 15vw, 210px) var(--pad) 0; background: #080a09; color: white; }
.closing-grid { position: absolute; inset: 0; opacity: .28; background-image: linear-gradient(rgba(255,255,255,.10) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.10) 1px, transparent 1px), repeating-linear-gradient(130deg, transparent 0 78px, rgba(12,199,120,.24) 79px, transparent 80px 158px); background-size: 76px 76px, 76px 76px, auto; mask-image: radial-gradient(circle at 50% 46%, black, transparent 72%); }
.closing-orb { position: absolute; border-radius: 50%; filter: blur(100px); }
.orb-a { width: 48vw; height: 40vw; left: -12vw; bottom: -20vw; background: rgba(12,199,120,.42); }.orb-b { width: 42vw; height: 35vw; right: -10vw; top: -15vw; background: rgba(185,246,80,.2); }
.closing-inner { position: relative; z-index: 2; width: min(100%, 1000px); margin: 0 auto; text-align: center; }
.closing h2 { margin-bottom: 30px; font-size: clamp(50px, 7vw, 98px); line-height: .96; letter-spacing: -.068em; font-weight: 600; }
.closing h2 em { color: var(--green-bright); }
.closing-inner > p { max-width: 650px; margin: 0 auto 36px; color: rgba(255,255,255,.56); font-size: 18px; line-height: 1.62; }
.footer { position: relative; z-index: 2; width: min(100%, var(--max)); min-height: 150px; display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; gap: 40px; margin: clamp(110px, 15vw, 190px) auto 0; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.42); }
.footer > p { margin: 0; text-align: center; font-size: 12px; }
.footer > div { justify-self: end; display: grid; gap: 7px; text-align: right; font-size: 11px; }
.footer .brand { color: white; }
.mobile-dock { display: none; }

.assistant-launcher { position: fixed; z-index: 120; right: 24px; bottom: 24px; min-height: 52px; display: inline-flex; align-items: center; gap: 10px; padding: 0 18px; border: 0; border-radius: 19px; cursor: pointer; font-weight: 700; }
.assistant-live { position: relative; width: 8px; height: 8px; flex: 0 0 auto; border-radius: 50%; background: var(--green); box-shadow: 0 0 14px rgba(36,232,149,.75); }
.assistant-live::before { content: ""; position: absolute; inset: -4px; border: 1px solid rgba(36,232,149,.38); border-radius: 50%; animation: assistant-pulse 1.8s ease-out infinite; }
@keyframes assistant-pulse { from { transform: scale(.6); opacity: .8; } to { transform: scale(1.8); opacity: 0; } }
.assistant-panel { position: fixed; z-index: 160; right: 24px; bottom: 24px; width: min(420px, calc(100vw - 32px)); height: min(650px, calc(100svh - 48px)); overflow: hidden; display: flex; flex-direction: column; border: 1px solid rgba(36,232,149,.24); border-radius: 24px; background: #0d100e; color: #f4f5f2; box-shadow: 0 30px 90px rgba(0,0,0,.55); }
.assistant-header { min-height: 66px; display: flex; align-items: center; justify-content: space-between; padding: 0 18px 0 20px; border-bottom: 1px solid rgba(255,255,255,.08); background: #101310; }
.assistant-header > div { display: flex; align-items: center; gap: 10px; }
.assistant-header strong { font-size: 14px; }
.assistant-header button { width: 36px; height: 36px; border: 0; border-radius: 12px; background: transparent; color: rgba(255,255,255,.56); cursor: pointer; font-size: 25px; line-height: 1; }
.assistant-header button:hover { background: rgba(255,255,255,.06); color: white; }
.assistant-messages { flex: 1; min-height: 0; overflow-y: auto; padding: 20px 18px; scrollbar-width: thin; scrollbar-color: rgba(255,255,255,.18) transparent; }
.assistant-row { display: flex; margin-bottom: 14px; }
.assistant-row p { max-width: 87%; margin: 0; padding: 12px 14px; border-radius: 17px; font-size: 14px; line-height: 1.55; white-space: pre-wrap; overflow-wrap: anywhere; }
.assistant-row-bot { justify-content: flex-start; }
.assistant-row-bot p { border: 1px solid rgba(255,255,255,.07); border-bottom-left-radius: 5px; background: rgba(255,255,255,.055); color: rgba(255,255,255,.84); }
.assistant-row-user { justify-content: flex-end; }
.assistant-row-user p { border-bottom-right-radius: 5px; background: #f1f0ea; color: #121512; }
.assistant-status { width: max-content; display: flex; align-items: center; gap: 4px; margin-bottom: 14px; padding: 11px 13px; border: 1px solid rgba(255,255,255,.07); border-radius: 16px 16px 16px 5px; background: rgba(255,255,255,.055); }
.assistant-status span { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,.52); animation: assistant-dot 1.1s ease-in-out infinite; }
.assistant-status span:nth-child(2) { animation-delay: .15s; }.assistant-status span:nth-child(3) { animation-delay: .3s; }
.assistant-status em { margin-left: 5px; color: rgba(255,255,255,.38); font-size: 10px; font-style: normal; }
@keyframes assistant-dot { 0%, 60%, 100% { transform: translateY(0); opacity: .35; } 30% { transform: translateY(-3px); opacity: 1; } }
.assistant-booking { padding: 16px 18px 18px; border-top: 1px solid rgba(255,255,255,.08); background: #111511; }
.assistant-booking-head { display: flex; justify-content: space-between; gap: 16px; margin-bottom: 13px; }
.assistant-booking-head div { display: grid; gap: 3px; }
.assistant-booking-head small { color: var(--green-bright); font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.assistant-booking-head strong { font-size: 14px; }
.assistant-booking-head button { align-self: start; border: 0; background: transparent; color: rgba(255,255,255,.45); cursor: pointer; font-size: 11px; }
.assistant-booking-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.assistant-booking label { display: grid; gap: 5px; margin-bottom: 9px; color: rgba(255,255,255,.52); font-size: 10px; }
.assistant-booking label em { font-style: normal; color: rgba(255,255,255,.28); }
.assistant-booking input, .assistant-booking select, .assistant-booking textarea { width: 100%; min-height: 38px; border: 1px solid rgba(255,255,255,.1); border-radius: 10px; padding: 8px 9px; background: rgba(255,255,255,.04); color: white; font: 12px/1.3 "DM Sans", sans-serif; outline: none; color-scheme: dark; }
.assistant-booking textarea { min-height: 52px; resize: vertical; }
.assistant-booking input:focus, .assistant-booking select:focus, .assistant-booking textarea:focus { border-color: rgba(36,232,149,.55); }
.assistant-booking-error { margin: 0 0 9px; color: #ff9b8b; font-size: 11px; }
.assistant-booking-privacy { margin: 0 0 10px; color: rgba(255,255,255,.34); font-size: 9px; line-height: 1.4; }
.assistant-booking-submit { width: 100%; min-height: 40px; border: 0; border-radius: 12px; background: var(--green); color: #06110b; cursor: pointer; font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.assistant-booking-submit:disabled { cursor: wait; opacity: .55; }
.assistant-composer { display: flex; align-items: flex-end; gap: 9px; padding: 13px; border-top: 1px solid rgba(255,255,255,.08); background: #101310; }
.assistant-composer textarea { flex: 1; min-height: 44px; max-height: 112px; resize: none; border: 1px solid rgba(255,255,255,.1); border-radius: 14px; padding: 12px 13px; background: rgba(255,255,255,.045); color: white; outline: none; font: 14px/1.35 "DM Sans", sans-serif; }
.assistant-composer textarea:focus { border-color: rgba(36,232,149,.5); }
.assistant-composer button { width: 42px; height: 42px; flex: 0 0 auto; border: 0; border-radius: 50%; background: var(--green); color: #07110b; cursor: pointer; font-size: 18px; }
.assistant-composer button:disabled { cursor: not-allowed; opacity: .4; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 800ms ease, transform 800ms var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1040px) {
  .site-nav { grid-template-columns: 1fr auto; }
  .nav-links { position: absolute; top: 76px; left: 0; right: 0; display: none; height: auto; padding: 15px; border-radius: 20px; background: rgba(11,15,13,.96); box-shadow: 0 20px 50px rgba(0,0,0,.35); }
  .site-nav.is-open .nav-links { display: grid; }
  .nav-links a { justify-content: start; height: 50px; color: white; }
  .nav-active-fill { display: none; }
  .nav-cta { display: none; }
  .menu-toggle { display: block; }
  .hero-inner { grid-template-columns: 1fr; padding-top: 150px; padding-bottom: 150px; }
  .hero-copy { max-width: 800px; }
  .hero h1 { max-width: 900px; }
  .system-visual { width: min(100%, 760px); margin-inline: auto; }
  .systems-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .offer-shell { grid-template-columns: 1fr; }
  .system-card-feature { grid-row: auto; }
  .case-study { grid-template-columns: 100px 1fr; }
  .case-visual { grid-column: 2; min-height: 350px; }
  .process-track li { grid-template-columns: 60px minmax(0, 1fr); }
  .process-visual { grid-column: 2; }
  .about-hero-inner { grid-template-columns: 1fr; align-content: end; }
  .about-hero-note { max-width: 660px; }
  .about-story, .about-focus { grid-template-columns: 1fr; }
  .about-story-body { max-width: 760px; }
}

@media (max-width: 760px) {
  :root { --pad: 18px; --section: 74px; }
  main > section:not(.hero):not(.about-hero) { contain-intrinsic-size: auto 720px; }
  .site-nav { top: max(10px, env(safe-area-inset-top)); width: calc(100% - 20px); min-height: 62px; border-radius: 21px; padding-left: 13px; }
  .lg::before { -webkit-backdrop-filter: blur(10px) saturate(1); backdrop-filter: blur(10px) saturate(1); }
  .site-nav .brand img { width: 32px; height: 32px; }
  .site-nav .brand span { font-size: 14px; }
  .menu-toggle { width: 44px; height: 44px; border-radius: 14px; }
  .nav-links { top: 70px; padding: 10px; }
  .nav-links a { min-height: 52px; padding-inline: 16px; }
  .hero { min-height: auto; }
  .hero-inner { width: calc(100% - 36px); min-height: auto; padding-top: 116px; padding-bottom: 104px; gap: 54px; }
  .hero h1 { margin-bottom: 22px; font-size: clamp(48px, 14.2vw, 68px); line-height: .94; }
  .hero-lede { margin-bottom: 28px; font-size: 16px; line-height: 1.55; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .button { width: 100%; min-height: 54px; padding-inline: 18px; }
  .hero-trust { gap: 9px 15px; margin-top: 30px; }
  .system-visual::before { inset: 8% -2% -8%; filter: blur(36px); }
  .system-window { min-height: 408px; border-radius: 22px; }
  .window-bar { grid-template-columns: auto 1fr; height: 52px; }
  .window-bar p { justify-self: end; }
  .window-meta { display: none; }
  .system-canvas { min-height: 294px; display: grid; grid-template-columns: 1fr 1fr; align-content: center; gap: 11px; padding: 20px 13px; }
  .flow-lines, .signal-pulse { display: none; }
  .flow-node { position: relative; inset: auto; width: auto; min-width: 0; min-height: 70px; grid-template-columns: 32px minmax(0, 1fr); padding: 9px; border-radius: 14px; }
  .node-icon { width: 32px; height: 32px; border-radius: 10px; }
  .node-status { display: none; }
  .flow-node strong { font-size: 10px; }
  .node-capture, .node-respond, .node-qualify, .node-book { inset: auto; }
  .system-footer { min-height: 62px; }.system-health { display: none; }
  .story-switcher { bottom: -27px; width: min(300px, calc(100% - 20px)); }
  .hero-edge { display: none; }
  .manifesto-grid, .section-heading, .work-heading, .faq { grid-template-columns: 1fr; }
  .manifesto-grid { gap: 26px; }
  .manifesto h2, .section-heading h2, .work-heading h2, .faq-intro h2 { font-size: clamp(38px, 11.2vw, 52px); line-height: 1; }
  .principle-row { grid-template-columns: 1fr; }
  .principle-row article { min-height: auto; padding: 26px 0; }
  .principle-row article + article { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); }
  .principle-row span { margin-bottom: 20px; }
  .section-heading { gap: 20px; margin-bottom: 40px; }
  .systems-grid { gap: 12px; }
  .system-card, .system-card-feature { min-height: 0; display: flex; flex-direction: column; padding: 22px; border-radius: 22px; }
  .system-card .card-art { flex: none; width: 100%; min-height: 210px; margin: 30px 0 18px; }
  .system-card-feature .card-art { min-height: 250px; }
  .card-content h3, .system-card:not(.system-card-feature) .card-content h3 { font-size: 27px; }
  .system-card:not(.system-card-feature) .card-content > span { font-size: 13px; }
  .ops-dashboard { width: min(100%, 320px); }
  .offer { padding-top: 0; }
  .offer-shell { border-radius: 24px; }
  .offer-intro { padding: 34px 22px; }
  .offer-price { gap: 13px; }
  .offer-price strong { font-size: 34px; }
  .offer-delivery { padding: 8px 22px 18px; }
  .offer-delivery article { grid-template-columns: 28px 1fr; gap: 10px; padding: 22px 0; }
  .work-heading { gap: 20px; padding-bottom: 48px; }
  .case-study { grid-template-columns: 1fr; gap: 24px; min-height: 0; padding: 36px 0; }
  .case-index { display: flex; justify-content: space-between; }.case-index span { margin: 0; }
  .case-copy h3 { margin-bottom: 22px; font-size: 30px; }
  .case-visual { grid-column: auto; min-height: 250px; border-radius: 22px; }
  .process-track { gap: 10px; }
  .process-track li { grid-template-columns: 46px minmax(0, 1fr); gap: 18px; min-height: 0; padding: 22px 18px; border-radius: 22px; }
  .process-dot { width: 46px; height: 46px; }
  .process-copy h3 { margin-bottom: 9px; font-size: 29px; }
  .process-copy p { font-size: 15px; line-height: 1.55; }
  .process-visual { grid-column: 1 / -1; min-height: 126px; margin-top: 2px; border-radius: 17px; }
  .faq { gap: 54px; }
  .faq-intro { position: static; }
  .faq-list summary { min-height: 82px; font-size: 17px; }
  .faq-list details > p { margin-right: 10px; }
  .closing { min-height: 680px; padding: 96px 18px 0; }
  .closing h2 { font-size: clamp(44px, 13vw, 62px); }
  .closing-inner > p { font-size: 16px; }
  .footer { grid-template-columns: 1fr; gap: 28px; padding: 35px 0 calc(108px + env(safe-area-inset-bottom)); text-align: center; }
  .footer .brand, .footer > div { justify-self: center; }
  .footer > div { text-align: center; }
  .about-hero, .about-hero-inner { min-height: 720px; }
  .about-hero-inner { width: calc(100% - 36px); gap: 44px; padding: 126px 0 140px; }
  .about-hero h1 { font-size: clamp(58px, 18vw, 80px); }
  .about-hero-note { padding-top: 24px; }
  .about-hero-note a { display: none; }
  .about-story { gap: 48px; }
  .about-story-heading h2, .about-focus-copy h2 { font-size: clamp(40px, 11.5vw, 54px); }
  .about-story-body { padding-top: 30px; }
  .about-belief-head { grid-template-columns: 1fr; gap: 26px; }
  .about-belief-head h2 { font-size: clamp(52px, 15vw, 72px); }
  .about-principles { grid-template-columns: 1fr; }
  .about-principles article { min-height: auto; }
  .about-principles article > span { margin-bottom: 48px; }
  .about-focus { gap: 52px; }
  .about-fit { padding: 32px 24px; border-radius: 24px; }
  .mobile-dock { position: fixed; z-index: 90; left: 50%; bottom: max(12px, env(safe-area-inset-bottom)); width: min(calc(100% - 24px), 400px); height: 58px; display: flex; align-items: center; justify-content: space-between; padding: 6px 7px 6px 20px; border-radius: 22px; transform: translateX(-50%); font-size: 13px; font-weight: 700; }
  .mobile-dock:active { transform: translateX(-50%) scale(.965); }
  .mobile-dock > span { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 17px; font-size: 18px; }
  .assistant-launcher { display: none; }
  body.chat-open .mobile-dock { display: none; }
  .assistant-panel { inset: 0; width: 100%; height: 100dvh; border: 0; border-radius: 0; }
  .assistant-header { padding-top: env(safe-area-inset-top); min-height: calc(66px + env(safe-area-inset-top)); }
  .assistant-composer { padding-bottom: max(13px, env(safe-area-inset-bottom)); }
  .assistant-composer textarea, .assistant-booking input, .assistant-booking select, .assistant-booking textarea { font-size: 16px; }
  .assistant-booking-grid { grid-template-columns: 1fr; gap: 0; }
  .assistant-booking input, .assistant-booking select { min-height: 44px; }
}

@media (hover: none) and (pointer: coarse) {
  .aurora, .flow-path, .signal-pulse, .assistant-live::before { animation: none; }
  .reveal { transform: translateY(14px); transition-duration: 420ms; }
  .nav-cta:hover, .button-primary:hover, .button-dark:hover { transform: none; }
  .process-track li:hover .process-dot { background: var(--paper); color: #287252; }
}

@media (prefers-reduced-transparency: reduce) {
  .lg::before, .lg[data-lg-filter]::before { -webkit-backdrop-filter: blur(30px) saturate(1); backdrop-filter: blur(30px) saturate(1); background: rgba(28,28,30,.9); }
  .lg--on-light::before, .lg--on-light[data-lg-filter]::before { background: rgba(255,255,255,.94); }
}
@media (prefers-contrast: more) {
  .lg::before, .lg[data-lg-filter]::before { -webkit-backdrop-filter: none; backdrop-filter: none; background: rgba(12,12,14,.98); }
  .lg--on-light::before, .lg--on-light[data-lg-filter]::before { background: rgba(255,255,255,.98); }
  .lg::after { box-shadow: inset 0 0 0 2px currentColor; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .lg--interactive, .lg--interactive:active { transition: none; transform: none; }
  .mobile-dock:active { transform: translateX(-50%); }
}
