:root {
  --ink: #f5f7f2;
  --muted: #a9afa9;
  --quiet: #747b75;
  --lime: #a8e063;
  --lime-deep: #8ec840;
  --lime-wash: #dfffb7;
  --night: #0b0d0c;
  --night-2: #111411;
  --night-3: #171b18;
  --line: rgba(255, 255, 255, .11);
  --shell: min(1180px, calc(100vw - 48px));
  --radius: 24px;
  --ease: cubic-bezier(.2, .75, .25, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--night);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { color: inherit; font: inherit; }
[hidden] { display: none !important; }
:focus-visible { outline: 3px solid var(--lime-deep); outline-offset: 5px; }
.shell { width: var(--shell); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 100; top: 12px; left: 12px; padding: 10px 16px; color: #10130e; background: var(--lime); border-radius: 8px; transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }

.site-header { position: fixed; z-index: 50; top: 0; left: 0; width: 100%; border-bottom: 1px solid transparent; transition: background .25s, border-color .25s, backdrop-filter .25s; }
.site-header.scrolled { background: rgba(11, 13, 12, .82); border-color: var(--line); backdrop-filter: blur(18px); }
.nav-wrap { height: 82px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-size: 19px; font-weight: 760; letter-spacing: -.03em; }
.brand-mark { width: 32px; height: 32px; display: grid; place-items: center; }
.brand-mark img { width: 27px; height: 27px; }
.site-nav { display: flex; align-items: center; gap: 32px; color: #c5cac5; font-size: 14px; font-weight: 620; }
.site-nav > a:not(.nav-cta) { transition: color .2s; }
.site-nav > a:not(.nav-cta):hover { color: var(--ink); }
.nav-cta { padding: 10px 16px; color: var(--night); background: var(--lime); border-radius: 999px; transition: background .2s, transform .2s; }
.nav-cta:hover { background: var(--lime-wash); transform: translateY(-1px); }
.menu-button { display: none; width: 42px; height: 42px; padding: 10px; border: 0; background: transparent; }
.menu-button > span:not(.sr-only) { display: block; width: 100%; height: 1px; margin: 5px 0; background: var(--ink); transition: transform .2s, opacity .2s; }

.hero { min-height: 850px; position: relative; overflow: hidden; display: flex; align-items: center; padding: 154px 0 90px; border-bottom: 1px solid var(--line); }
.hero::before { content: ""; position: absolute; inset: 0; opacity: .13; background-image: linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(to bottom, black, transparent 88%); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .88fr 1.12fr; gap: 76px; align-items: center; }
.hero-copy { position: relative; z-index: 4; }
.eyebrow, .section-kicker { color: var(--lime); font-size: 12px; font-weight: 760; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 30px; padding: 7px 11px; color: #c8ef9b; background: rgba(168, 224, 99, .08); border: 1px solid rgba(168, 224, 99, .2); border-radius: 999px; }
.eyebrow-dot { width: 6px; height: 6px; background: var(--lime); border-radius: 50%; box-shadow: 0 0 14px var(--lime); }
.hero h1 { margin: 0; font-size: clamp(62px, 7vw, 108px); line-height: .91; letter-spacing: -.075em; font-weight: 800; }
.hero h1 span { color: var(--lime); }
.hero-lede { max-width: 580px; margin: 32px 0 0; color: #b8beb8; font-size: clamp(18px, 2vw, 21px); line-height: 1.55; letter-spacing: -.018em; }
.hero-actions { display: flex; gap: 12px; margin-top: 34px; }
.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 16px; padding: 12px 21px; border: 1px solid transparent; border-radius: 999px; font-size: 14px; font-weight: 720; transition: transform .2s, border-color .2s, background .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #10140d; background: var(--lime); box-shadow: 0 12px 40px rgba(142, 200, 64, .12); }
.button-primary:hover { background: var(--lime-wash); }
.button-ghost { color: var(--ink); background: rgba(255,255,255,.035); border-color: var(--line); }
.button-ghost:hover { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.2); }
.hero-proof { display: flex; flex-wrap: wrap; gap: 9px 18px; margin-top: 30px; color: #929992; font-size: 12px; }
.hero-proof span { display: flex; align-items: center; gap: 6px; }
.hero-proof i { color: var(--lime); font-style: normal; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(1px); pointer-events: none; }
.glow-one { width: 620px; height: 620px; top: 90px; right: -150px; background: radial-gradient(circle, rgba(168, 224, 99, .12), transparent 68%); }
.glow-two { width: 420px; height: 420px; left: 25%; bottom: -310px; background: radial-gradient(circle, rgba(95, 126, 225, .11), transparent 70%); }

.product-stage { min-width: 0; position: relative; padding: 65px 0 55px; perspective: 1400px; }
.app-window { position: relative; z-index: 3; width: 760px; max-width: 100%; overflow: hidden; color: #252923; background: #f7f8f5; border: 1px solid rgba(255,255,255,.24); border-radius: 18px; box-shadow: 0 50px 120px rgba(0,0,0,.5), 0 0 0 8px rgba(255,255,255,.025); transform: rotateY(-5deg) rotateX(2deg); transform-origin: center left; }
.window-topbar { height: 56px; display: flex; align-items: center; gap: 26px; padding: 0 22px; background: white; border-bottom: 1px solid #e6e8e3; font-size: 9px; }
.window-brand { display: flex; align-items: center; gap: 7px; font-size: 11px; font-weight: 800; }
.window-brand img { width: 18px; filter: brightness(0); }
.window-nav { flex: 1; display: flex; justify-content: center; gap: 21px; color: #838a82; }
.window-nav b { color: #344130; background: #eef8df; border-radius: 6px; padding: 4px 8px; }
.avatar { width: 25px; height: 25px; display: grid; place-items: center; color: white; background: #6269e8; border-radius: 50%; font-size: 7px; font-weight: 800; }
.window-body { padding: 27px 28px 35px; }
.mini-hero { display: flex; flex-direction: column; gap: 8px; padding: 22px 24px; background: linear-gradient(135deg, #ecfad7, #f7faf2); border-radius: 14px; }
.mini-hero strong { font-size: 22px; line-height: 1.06; letter-spacing: -.04em; }
.mini-hero em { color: #5c6259; font-style: normal; }
.mini-hero small { color: #667065; font-size: 10px; }
.search-row { display: flex; align-items: center; justify-content: space-between; margin: 18px 0; padding: 10px 13px; color: #9ba19a; background: white; border: 1px solid #e1e4de; border-radius: 9px; font-size: 9px; }
.search-row b { color: #6a7169; font-weight: 600; }
.app-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 11px; }
.app-cards article { min-height: 126px; display: flex; flex-direction: column; align-items: flex-start; padding: 15px; background: white; border: 1px solid #e3e6e0; border-radius: 11px; }
.app-cards strong { margin-top: 15px; font-size: 11px; }
.app-cards small { margin-top: 5px; color: #7f877e; font-size: 8px; }
.card-icon { width: 25px; height: 25px; display: grid; place-items: center; color: white; border-radius: 7px; font-size: 9px; font-style: normal; font-weight: 800; }
.card-icon.violet { background: #646be8; }.card-icon.lime { color: #263019; background: #a8e063; }.card-icon.coral { background: #eb7e62; }
.float-chip { position: absolute; z-index: 5; display: flex; align-items: center; gap: 9px; padding: 11px 14px; color: #d9ded8; background: rgba(23,27,24,.88); border: 1px solid rgba(255,255,255,.13); border-radius: 12px; box-shadow: 0 18px 50px rgba(0,0,0,.36); backdrop-filter: blur(14px); font-size: 11px; font-weight: 650; }
.float-chip span { width: 23px; height: 23px; display: grid; place-items: center; color: #11140e; background: var(--lime); border-radius: 7px; font-size: 10px; font-weight: 800; }
.chip-sso { left: -32px; bottom: 22px; }.chip-access { right: -25px; top: 24px; }
.stage-orbit { position: absolute; z-index: 1; border: 1px solid rgba(168,224,99,.16); border-radius: 50%; }
.orbit-one { width: 580px; height: 580px; right: -190px; top: -15px; }.orbit-two { width: 420px; height: 420px; right: -110px; top: 65px; }

.section { padding: 130px 0; }
.section-kicker { margin-bottom: 24px; }
.problem { background: #eef0e9; color: #171a16; }
.problem .section-kicker { color: #5a7d2c; }
.problem-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 100px; }
.problem h2, .section-heading h2, .security h2, .cta-panel h2 { margin: 0; font-size: clamp(45px, 5.8vw, 78px); line-height: .98; letter-spacing: -.06em; }
.problem-copy { padding-top: 5px; color: #51574f; font-size: 20px; }
.problem-copy p { margin: 0 0 24px; }
.problem-copy .accent-copy { color: #1f251b; font-weight: 680; }
.before-after { display: grid; grid-template-columns: 1fr 70px 1fr; align-items: center; gap: 10px; margin-top: 86px; }
.state { min-height: 220px; padding: 32px; background: rgba(255,255,255,.58); border: 1px solid rgba(20,25,18,.08); border-radius: var(--radius); }
.state-after { background: #151914; color: white; }
.state-label { display: inline-flex; padding: 5px 9px; color: #72796e; background: rgba(20,25,18,.05); border-radius: 999px; font-size: 11px; font-weight: 760; text-transform: uppercase; letter-spacing: .1em; }
.state-after .state-label { color: var(--lime); background: rgba(168,224,99,.09); }
.state ul { display: grid; gap: 15px; margin: 28px 0 0; padding: 0; list-style: none; }
.state li::before { content: "×"; margin-right: 12px; color: #af6656; font-weight: 800; }
.state-after li::before { content: "✓"; color: var(--lime); }
.state-arrow { color: #777e74; font-size: 30px; text-align: center; }

.features { background: var(--night); }
.section-heading { display: grid; grid-template-columns: 1fr 340px; gap: 80px; align-items: end; margin-bottom: 66px; }
.section-heading p { margin: 0 0 7px; color: var(--muted); font-size: 18px; }
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.feature-card { min-height: 330px; position: relative; overflow: hidden; padding: 38px; background: var(--night-2); border: 1px solid var(--line); border-radius: var(--radius); transition: border-color .25s, transform .25s; }
.feature-card:hover { border-color: rgba(168,224,99,.25); transform: translateY(-3px); }
.feature-card h3 { max-width: 440px; margin: 54px 0 14px; font-size: 27px; line-height: 1.12; letter-spacing: -.035em; }
.feature-card p { max-width: 490px; margin: 0; color: var(--muted); }
.feature-icon { width: 45px; height: 45px; display: grid; place-items: center; color: var(--lime); background: rgba(168,224,99,.075); border: 1px solid rgba(168,224,99,.17); border-radius: 13px; font-size: 20px; }
.feature-num { position: absolute; top: 38px; right: 38px; color: #505650; font-size: 12px; font-weight: 700; }
.feature-large { min-height: 410px; grid-column: span 2; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; column-gap: 40px; }
.feature-large .feature-icon { position: absolute; top: 38px; left: 38px; }
.feature-large h3 { margin-top: 54px; }
.catalog-demo { align-self: center; display: grid; grid-template-columns: 1fr auto; gap: 20px; padding: 16px; color: #969c96; background: #f4f6f1; border-radius: 17px; box-shadow: 0 28px 65px rgba(0,0,0,.22); }
.catalog-demo > span { padding: 10px 14px; border: 1px solid #dfe3dc; border-radius: 9px; font-size: 12px; }.catalog-demo > i { padding: 9px 12px; color: #20241e; background: var(--lime); border-radius: 9px; font-style: normal; }
.catalog-demo div { grid-column: span 2; display: flex; gap: 8px; color: #333931; font-size: 11px; }
.catalog-demo div b { width: 25px; height: 25px; display: inline-grid; place-items: center; margin-left: 8px; background: white; border: 1px solid #e0e3dc; border-radius: 6px; }
.feature-wide { min-height: 310px; grid-column: span 2; display: grid; grid-template-columns: 1fr .8fr; align-items: center; gap: 70px; }
.feature-wide h3 { margin-top: 42px; }
.ownership-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.ownership-list span { padding: 14px; color: #c8cec7; background: rgba(255,255,255,.035); border: 1px solid var(--line); border-radius: 12px; font-size: 13px; }.ownership-list i { margin-right: 8px; color: var(--lime); font-style: normal; }

.workflow { overflow: hidden; background: #151914; }
.steps { margin: 0; padding: 0; list-style: none; counter-reset: steps; }
.steps li { display: grid; grid-template-columns: 90px 1fr; gap: 30px; padding: 28px 0; border-top: 1px solid var(--line); }
.steps li:last-child { border-bottom: 1px solid var(--line); }
.steps > li > span { color: var(--lime); font-size: 12px; font-weight: 760; }
.steps h3 { margin: -5px 0 5px; font-size: 24px; letter-spacing: -.025em; }
.steps p { max-width: 600px; margin: 0; color: var(--muted); }
.terminal { max-width: 740px; margin: 75px auto 0; overflow: hidden; color: #d5dbd4; background: #090b09; border: 1px solid rgba(255,255,255,.12); border-radius: 17px; box-shadow: 0 40px 90px rgba(0,0,0,.34); }
.terminal-bar { height: 47px; display: flex; align-items: center; gap: 7px; padding: 0 17px; background: #121512; border-bottom: 1px solid rgba(255,255,255,.08); }
.terminal-bar span { width: 8px; height: 8px; background: #3e443e; border-radius: 50%; }.terminal-bar b { flex: 1; color: #717871; font-size: 10px; font-weight: 600; text-align: center; }
.terminal pre { margin: 0; padding: 29px 34px 35px; overflow-x: auto; font: 13px/1.9 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; }.terminal em, .terminal span { color: var(--lime); font-style: normal; }

.security { background: #dfffb7; color: #151914; }
.security .section-kicker { color: #507925; }
.security-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 110px; align-items: start; }
.security-copy { position: sticky; top: 130px; }
.security-copy p { max-width: 470px; margin-top: 28px; color: #4a5542; font-size: 19px; }
.security-points article { display: grid; grid-template-columns: 62px 1fr; gap: 18px; padding: 28px 0; border-top: 1px solid rgba(20,25,18,.17); }
.security-points article:last-child { border-bottom: 1px solid rgba(20,25,18,.17); }
.security-points > article > span { color: #557d2b; font-size: 11px; font-weight: 760; }
.security-points h3 { margin: -5px 0 7px; font-size: 22px; letter-spacing: -.03em; }
.security-points p { margin: 0; color: #54604d; }

.cta-section { background: var(--night); }
.cta-panel { min-height: 580px; position: relative; overflow: hidden; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 80px 30px; text-align: center; background: radial-gradient(circle at 50% 0, rgba(168,224,99,.11), transparent 44%), var(--night-2); border: 1px solid var(--line); border-radius: 32px; }
.cta-panel::before, .cta-panel::after { content: ""; position: absolute; width: 360px; height: 360px; border: 1px solid rgba(168,224,99,.1); border-radius: 50%; }.cta-panel::before { left: -180px; bottom: -150px; }.cta-panel::after { right: -220px; top: -110px; }
.cta-panel h2 { margin: 0; font-size: clamp(56px, 8vw, 100px); }
.cta-panel p { max-width: 620px; margin: 28px 0 32px; color: var(--muted); font-size: 18px; }
.cta-door { width: 66px; height: 66px; display: grid; place-items: center; margin-bottom: 29px; background: rgba(168,224,99,.06); border: 1px solid rgba(168,224,99,.17); border-radius: 18px; }.cta-door img { width: 37px; }

.site-footer { padding: 0 0 45px; background: var(--night); }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 27px; align-items: center; padding-top: 42px; border-top: 1px solid var(--line); }
.footer-grid > p { margin: 0; color: var(--muted); font-size: 14px; text-align: right; }.footer-links { display: flex; gap: 25px; color: #b5bbb4; font-size: 13px; }.footer-links a:hover { color: var(--lime); }.footer-grid > small { color: #666d67; font-size: 11px; text-align: right; }

.reveal { transition: opacity .75s var(--ease), transform .75s var(--ease); }
.motion-ready .reveal { opacity: 0; transform: translateY(18px); }
.reveal-delay { transition-delay: .12s; }
.motion-ready .reveal.visible { opacity: 1; transform: translateY(0); }

/* The product, not a mockup: an editorial tour and a quiet, native cinema. */
.lime-text { color: var(--lime); }
.button-duration { border-left: 1px solid rgba(0,0,0,.2); padding-left: 12px; opacity: .72; font-variant-numeric: tabular-nums; }
.real-product-preview { display: block; }
.real-product-preview img { width: 100%; height: auto; }
.real-product-preview::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 55%, rgba(8,12,8,.7)); pointer-events: none; }
.preview-play { position: absolute; z-index: 2; bottom: 22px; left: 24px; display: inline-flex; align-items: center; gap: 12px; color: white; font-size: 13px; font-weight: 700; }
.preview-play > span { width: 38px; height: 38px; display: grid; place-items: center; background: var(--lime); color: var(--night); border-radius: 50%; }
.real-product-stage .chip-sso { bottom: 13px; }
.real-product-stage .chip-access { top: 17px; }
.demo-section { background: radial-gradient(ellipse at 50% 60%, rgba(168,224,99,.055), transparent 65%), #0e110e; }
.demo-section .section-heading { grid-template-columns: 1fr 300px; gap: 45px; }
.demo-section h2 { font-size: clamp(40px, 5.2vw, 68px); }
.demo-cinema { overflow: hidden; border: 1px solid rgba(168,224,99,.2); border-radius: 22px; box-shadow: 0 35px 95px rgba(0,0,0,.35); }
.cinema-bar { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 17px 22px; background: #181d18; border-bottom: 1px solid var(--line); }
.cinema-label, .tour-stage-bar > span { font: 10px/1.5 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .1em; color: #c7d0c3; }
.cinema-label { display: flex; align-items: center; gap: 10px; }
.status-dot { width: 6px; height: 6px; flex-shrink: 0; border-radius: 50%; background: var(--lime); }
.language-switch { display: inline-flex; gap: 3px; padding: 3px; border: 1px solid var(--line); border-radius: 999px; background: #0d100d; }
.language-switch button { cursor: pointer; border: 0; padding: 8px 16px; border-radius: 999px; background: transparent; color: #c5cec1; font-size: 12px; font-weight: 700; }
.language-switch button span { margin-left: 7px; opacity: .65; font-variant-numeric: tabular-nums; }
.language-switch button[aria-pressed="true"] { color: #14200c; background: var(--lime); }
.language-switch button:hover:not([aria-pressed="true"]) { background: rgba(255,255,255,.08); }
.demo-cinema video { display: block; width: 100%; height: auto; aspect-ratio: 16 / 9; background: #080b08; }
.demo-chapters { display: grid; grid-template-columns: repeat(4, 1fr); background: #141914; }
.demo-chapters button { display: grid; grid-template-columns: 1fr auto; gap: 8px 12px; text-align: left; padding: 23px 20px; border: 0; border-top: 2px solid transparent; border-right: 1px solid var(--line); background: transparent; cursor: pointer; font-size: 13px; font-weight: 620; }
.demo-chapters button:last-child { border-right: 0; }
.demo-chapters button > span { grid-column: 1 / -1; color: #aebca7; font: 10px ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .055em; }
.demo-chapters time { color: var(--lime); font: 11px/1.6 ui-monospace, SFMono-Regular, Menlo, monospace; }
.demo-chapters button:hover, .demo-chapters button[aria-current="true"] { border-top-color: var(--lime); background: rgba(168,224,99,.065); }
.demo-footnote { display: flex; justify-content: space-between; align-items: baseline; gap: 30px; margin-top: 22px; font-size: 12px; color: var(--muted); }
.demo-footnote p { margin: 0; max-width: 580px; }
.demo-footnote p:last-child { flex-shrink: 0; }
.demo-footnote a, .tour-stage figcaption a { text-decoration: underline; text-underline-offset: 4px; }
.demo-footnote a:hover { color: var(--lime); }
.product-tour { color: #1b2418; background: #edf1e6; }
.product-tour .section-kicker { color: #527328; }
.product-tour .section-heading p { color: #5c6755; }
.tour-layout { display: grid; grid-template-columns: 280px minmax(0, 1fr); gap: 35px; align-items: start; }
.tour-navigation { display: grid; gap: 8px; }
.tour-navigation button { display: grid; grid-template-columns: 21px minmax(0, 1fr) 16px; gap: 13px; align-items: start; padding: 17px 15px; border: 1px solid transparent; border-radius: 13px; background: transparent; text-align: left; cursor: pointer; transition: background .2s, border-color .2s; }
.tour-navigation button > span:first-child { color: #58694c; font: 10px/2.3 ui-monospace, SFMono-Regular, Menlo, monospace; }
.tour-navigation button > span:nth-child(2) { font-size: 14px; font-weight: 720; }
.tour-navigation small { display: block; margin-top: 3px; color: #626e5b; font-size: 11px; font-weight: 400; }
.tour-navigation b { font-weight: 400; color: #637958; }
.tour-navigation button:hover { border-color: #bfceb1; background: rgba(255,255,255,.65); }
.tour-navigation button[aria-pressed="true"] { color: #f5f8ee; background: #1c2717; border-color: #1c2717; box-shadow: 0 8px 22px rgba(26,40,16,.08); }
.tour-navigation button[aria-pressed="true"] > span:first-child, .tour-navigation button[aria-pressed="true"] b { color: var(--lime); }
.tour-navigation button[aria-pressed="true"] small { color: #bac9ac; }
.tour-stage { min-width: 0; overflow: hidden; background: #fff; border: 1px solid #d2dbca; border-radius: 18px; box-shadow: 0 22px 60px rgba(36,50,23,.09); }
.tour-stage-bar { display: flex; align-items: center; justify-content: space-between; min-height: 57px; padding: 10px 20px; background: #1c2717; gap: 15px; }
.tour-stage-bar .language-switch button { padding: 4px 11px; font-size: 10px; }
.tour-stage figure { margin: 0; }
.tour-stage figure > a { display: block; overflow: hidden; border-bottom: 1px solid #e7ecdf; }
.tour-stage figure img { width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: contain; transition: filter .2s; }
.tour-stage figure > a:hover img { filter: brightness(.96); }
.tour-stage figcaption { min-height: 238px; padding: 27px 32px 31px; }
.screen-number { color: #5b763b; font: 10px ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .1em; }
.tour-stage h3 { margin: 12px 0 10px; font-size: clamp(23px, 2.5vw, 30px); line-height: 1.14; letter-spacing: -.04em; }
.tour-stage figcaption p { max-width: 610px; margin: 0 0 17px; color: #5f6c57; font-size: 14px; }
.tour-stage figcaption a { font-size: 11px; font-weight: 650; }
.tour-note { margin: 22px 0 0; color: #607253; text-align: right; font-size: 11px; }
/* Without JavaScript every figure remains available, as do both video links. */
.tour-layout:not(.is-interactive) { display: block; }
.transcript-page { max-width: 760px; padding-block: 65px; }
.transcript-page > a { display: inline-block; margin-bottom: 55px; color: var(--lime); }
.transcript-page h1 { margin: 0 0 40px; font-size: clamp(38px, 7vw, 64px); line-height: 1.05; letter-spacing: -.045em; }
.transcript-page p { color: #bec9b7; font-size: 18px; line-height: 1.8; }

@media (max-width: 1080px) {
  .site-nav { gap: 20px; }
  .demo-footnote { flex-direction: column; gap: 10px; }
  .tour-layout { grid-template-columns: 235px minmax(0, 1fr); gap: 22px; }
  .demo-chapters button { padding: 18px 14px; font-size: 12px; }
}

@media (max-width: 780px) {
  .demo-section .section-heading { grid-template-columns: 1fr; gap: 25px; }
  .demo-section h2 { font-size: clamp(37px, 10vw, 60px); }
  .cinema-bar { flex-wrap: wrap; padding: 15px; gap: 12px; }
  .cinema-label { font-size: 9px; }
  .demo-cinema { border-radius: 15px; }
  .demo-chapters { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .demo-chapters button { font-size: 11px; padding: 16px 12px; gap: 7px; }
  .demo-chapters button:nth-child(2) { border-right: 0; }
  .demo-chapters button:nth-child(n+3) { border-top: 1px solid var(--line); }
  .demo-chapters button[aria-current="true"] { box-shadow: inset 0 2px var(--lime); }
  .demo-chapters button > span { font-size: 9px; }
  .demo-footnote p:last-child { flex-shrink: 1; }
  .tour-layout { grid-template-columns: 1fr; gap: 20px; }
  .tour-navigation { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 7px; }
  .tour-navigation button { padding: 13px 10px; grid-template-columns: 17px minmax(0, 1fr); gap: 8px; }
  .tour-navigation button > span:nth-child(2) { font-size: 12px; }
  .tour-navigation small { font-size: 10px; }
  .tour-navigation b { display: none; }
  .tour-stage figcaption { min-height: 255px; padding: 23px; }
  .tour-stage-bar { padding-inline: 14px; }
  .tour-note { text-align: left; }
  .preview-play { bottom: 14px; left: 14px; font-size: 11px; }
  .preview-play > span { width: 29px; height: 29px; }
  .real-product-stage .chip-sso { bottom: 5px; }
  .real-product-stage .chip-access { top: -5px; }
}

@media (max-width: 1080px) {
  .hero { min-height: auto; }.hero-grid { grid-template-columns: 1fr; gap: 20px; }.hero-copy { max-width: 720px; }.product-stage { width: min(780px, 100%); margin: 0 auto; }.app-window { transform: none; }
  .problem-grid, .security-grid { gap: 55px; }.security-copy { position: static; }
}

@media (max-width: 780px) {
  :root { --shell: min(100% - 32px, 620px); --radius: 18px; }
  .site-header { background: rgba(11,13,12,.93); border-color: var(--line); backdrop-filter: blur(18px); }
  .nav-wrap { height: 70px; }.menu-button { display: block; }.site-nav { position: absolute; top: 70px; left: 0; width: 100%; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 12px 16px 22px; color: var(--ink); background: rgba(11,13,12,.98); border-bottom: 1px solid var(--line); }.site-nav.open { display: flex; }.site-nav a { padding: 14px; }.nav-cta { margin-top: 8px; text-align: center; }
  .menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }.menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .hero { padding: 125px 0 65px; }.hero-grid { gap: 45px; }.hero h1 { font-size: clamp(58px, 18vw, 88px); }.hero-lede { font-size: 17px; }.hero-actions { flex-direction: column; align-items: stretch; }.button { width: 100%; }
  .product-stage { padding: 30px 0 50px; }.window-topbar { padding: 0 13px; }.window-nav { display: none; }.avatar { margin-left: auto; }.window-body { padding: 18px 16px 25px; }.mini-hero { padding: 18px; }.mini-hero strong { font-size: 18px; }.app-cards { gap: 7px; }.app-cards article { min-height: 112px; padding: 11px; }.app-cards article:last-child { display: none; }.app-cards { grid-template-columns: repeat(2, 1fr); }.float-chip { font-size: 9px; }.chip-sso { left: -5px; bottom: 4px; }.chip-access { right: -5px; top: 0; }
  .section { padding: 90px 0; }.problem-grid, .security-grid, .section-heading { grid-template-columns: 1fr; gap: 34px; }.problem h2, .section-heading h2, .security h2 { font-size: clamp(42px, 13vw, 62px); }.problem-copy { font-size: 17px; }.before-after { grid-template-columns: 1fr; margin-top: 55px; }.state-arrow { transform: rotate(90deg); }.section-heading { margin-bottom: 44px; }.section-heading p { font-size: 16px; }
  .feature-grid { grid-template-columns: 1fr; }.feature-card, .feature-large, .feature-wide { min-height: auto; grid-column: auto; display: block; padding: 27px; }.feature-card h3, .feature-large h3 { margin-top: 42px; }.feature-large .feature-icon, .feature-large .feature-num { position: static; }.feature-large .feature-num { position: absolute; }.catalog-demo { margin-top: 38px; transform: none; }.ownership-list { grid-template-columns: 1fr; margin-top: 35px; }.feature-num { top: 28px; right: 28px; }
  .steps li { grid-template-columns: 42px 1fr; gap: 12px; }.steps h3 { font-size: 21px; }.terminal { margin-top: 52px; }.terminal pre { padding: 25px 20px; font-size: 11px; }
  .security-points article { grid-template-columns: 42px 1fr; }.cta-section { padding: 70px 0; }.cta-panel { min-height: 520px; padding: 65px 24px; }.cta-panel h2 { font-size: clamp(54px, 17vw, 80px); }.cta-panel .button { width: auto; }
  .footer-grid { grid-template-columns: 1fr; }.footer-grid > p, .footer-grid > small { text-align: left; }.footer-links { flex-wrap: wrap; }
}

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

/* Approved light palette. Product-inspired neutral surfaces, quiet green accents. */
:root {
  color-scheme: light;
  --ink: #202b25;
  --muted: #56635c;
  --quiet: #66736a;
  --lime: #526d2b;
  --lime-deep: #42601e;
  --lime-wash: #edf5e1;
  --night: #f7f9f5;
  --night-2: #ffffff;
  --night-3: #eef3eb;
  --line: #dce4d9;
}
::selection { background: #dcebbd; color: #202b25; }
.site-header, .site-header.scrolled { background: rgba(255,255,255,.94); border-color: var(--line); backdrop-filter: blur(18px); }
.site-nav, .hero-lede, .hero-proof, .footer-links { color: var(--muted); }
.site-nav a:hover { color: var(--ink); }
.nav-cta, .button-primary { color: #253319; background: #c4e58b; box-shadow: none; }
.nav-cta:hover, .button-primary:hover { color: #253319; background: #d7edb1; }
.button-ghost { background: white; border-color: #ccd7c7; }
.button-ghost:hover { background: #edf3e7; border-color: #a4b39b; }
.hero { background: linear-gradient(125deg, #ffffff 10%, #f1f7e9 100%); }
.hero::before, .hero-glow, .stage-orbit, .cta-panel::before, .cta-panel::after { display: none; }
.eyebrow { color: #486224; background: #edf5e1; border-color: #d6e6c0; }
.eyebrow-dot { box-shadow: none; }
.app-window { border-color: #dce4d9; box-shadow: 0 22px 60px rgba(37,54,29,.12); transform: none; }
.float-chip { color: #34452e; background: rgba(255,255,255,.95); border-color: #d3dfca; box-shadow: 0 10px 28px rgba(37,54,29,.10); }
.float-chip span, .preview-play > span { color: #26351c; background: #c4e58b; }
.real-product-preview::after { background: linear-gradient(transparent 67%,rgba(22,33,24,.56)); }
.problem { background: #f0f4eb; }
.problem-copy { color: var(--muted); }
.state { background: white; border-color: #d9e2d2; }
.state-after { background: #e7f0da; color: var(--ink); }
.state-after .state-label { color: #466125; background: #d7e8be; }
.state-label { color: #5d6858; }
.state li::before { color: #986443; }
.state-after li::before { color: #526d2b; }
.features { background: #fff; }
.feature-card { background: #f8faf6; border-color: #dce4d9; }
.feature-card:hover { border-color: #adbf9c; }
.feature-icon { color: #526d2b; background: #eaf2dd; border-color: #d4e4be; }
.feature-num { color: #6d7866; }
.catalog-demo { background: #fff; box-shadow: 0 14px 35px rgba(30,45,20,.08); border: 1px solid #e1e8db; }
.catalog-demo > i { background: #dcebc4; }
.ownership-list span { color: #4b5844; background: #edf3e7; border-color: #d9e3d0; }
.workflow { background: #f0f4eb; }
.terminal { color: #344330; background: #fff; border-color: #d5dfce; box-shadow: 0 18px 45px rgba(34,53,20,.06); }
.terminal-bar { background: #e8efdf; border-color: #d5dfce; }
.terminal-bar span { background: #b9c7ac; }
.terminal-bar b { color: #5b6b4e; }
.terminal em, .terminal span { color: #45632b; }
.security { background: #e6f0d8; color: var(--ink); }
.security-copy p, .security-points p { color: #506143; }
.cta-section { background: #fff; }
.cta-panel { background: #f0f6e8; border-color: #d9e5ce; }
.cta-door { background: #e5efd8; border-color: #cbdcb9; }
.site-footer { background: #fff; }
.footer-grid > small { color: #677362; }
.demo-section { background: #f7f9f5; }
.demo-cinema { border-color: #d5dfce; box-shadow: 0 20px 60px rgba(33,48,23,.09); }
.cinema-bar { background: #fff; }
.cinema-label, .tour-stage-bar > span { color: #5a6b4e; }
.language-switch { background: #f0f4ea; border-color: #dce5d2; }
.language-switch button { color: #56664a; }
.language-switch button[aria-pressed="true"] { color: #2c421c; background: #d2e8b0; }
.language-switch button:hover:not([aria-pressed="true"]) { background: #e2eccf; }
.demo-cinema video { background: #f7f9f5; }
.demo-chapters { background: #fff; }
.demo-chapters button > span { color: #65765a; }
.demo-chapters button:hover, .demo-chapters button[aria-current="true"] { background: #eef5e4; }
.product-tour { background: #edf3e6; }
.tour-stage-bar { background: #f7faf3; border-bottom: 1px solid #dce5d2; }
.tour-navigation button[aria-pressed="true"] { color: #283c19; background: #dcebc4; border-color: #c8dbaa; box-shadow: none; }
.tour-navigation button[aria-pressed="true"] small { color: #4d6540; }
.tour-navigation button[aria-pressed="true"] > span:first-child, .tour-navigation button[aria-pressed="true"] b { color: #45642b; }
.transcript-page p { color: var(--muted); }
@media(max-width:780px) {
  .site-header { background: rgba(255,255,255,.96); }
  .site-nav { background: #fff; }
}
