:root {
  --font-display: "Arial Black", "Avenir Next", Inter, ui-sans-serif, system-ui, sans-serif;
  --font-body: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ink: #050505;
  --paper: #fff;
  --canvas: #f7fafc;
  --muted: #62666d;
  --muted-light: #8b9098;
  --line: rgba(5, 5, 5, .1);
  --pink: #ff3d9e;
  --pink-dark: #d91c78;
  --pink-soft: #ffe8f4;
  --lavender: #bda7ff;
  --sky: #b8e3ff;
  --peach: #ffad79;
  --green: #168a5b;
  --page-max: 1280px;
  --gutter: clamp(16px, 4vw, 60px);
  --radius-control: 8px;
  --radius-card: 20px;
  --radius-feature: 28px;
  color-scheme: light;
}

* { box-sizing: border-box; }
html { overflow-x: clip; scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; overflow-x: clip; color: var(--ink); background: var(--canvas); font: 16px/1.5 var(--font-body); -webkit-font-smoothing: antialiased; }
a { color: inherit; }
button { font: inherit; }
img { max-width: 100%; }
:focus-visible { outline: 3px solid rgba(255,61,158,.36); outline-offset: 3px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.skip-link { position: fixed; z-index: 100; top: 12px; left: 12px; padding: 10px 14px; color: #fff; background: var(--pink); border-radius: var(--radius-control); transform: translateY(-180%); }
.skip-link:focus { transform: translateY(0); }

.site-header { position: sticky; z-index: 50; top: 0; min-height: 80px; background: rgba(255,255,255,.88); border-bottom: 1px solid var(--line); backdrop-filter: saturate(160%) blur(20px); }
.header-inner { display: flex; width: min(var(--page-max), calc(100% - (2 * var(--gutter)))); min-height: 80px; align-items: center; gap: 28px; margin: 0 auto; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-size: 13px; font-weight: 900; letter-spacing: -.02em; text-decoration: none; }
.brand-mark { position: relative; display: grid; width: 40px; height: 40px; place-items: center; overflow: hidden; color: #fff; background: var(--ink); border-radius: 11px; }
.brand-mark::before { position: absolute; inset: 6px; border: 1px solid var(--pink); border-radius: 7px; content: ""; }
.brand-mark i { position: absolute; top: 8px; right: 7px; width: 7px; height: 7px; background: var(--pink); border-radius: 2px; }
.brand-mark b { position: relative; z-index: 1; font-size: 13px; }
.primary-nav { display: flex; gap: 28px; margin: 0 auto; }
.primary-nav a { padding: 10px 0; font-size: 13px; font-weight: 650; text-decoration: none; }
.primary-nav a:hover { color: var(--pink-dark); }
.menu-toggle { display: none; width: 44px; height: 44px; margin-left: auto; padding: 12px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-control); }
.menu-toggle > span:not(.sr-only) { display: block; width: 100%; height: 2px; margin: 5px 0; background: var(--ink); }

.button { display: inline-flex; min-height: 46px; align-items: center; justify-content: center; gap: 10px; padding: 0 18px; border: 1px solid transparent; border-radius: var(--radius-control); cursor: pointer; font-size: 14px; font-weight: 750; text-decoration: none; transition: transform .18s ease, background .18s ease, border-color .18s ease; }
.button:hover { transform: translateY(-1px); }
.button-primary { color: #fff; background: var(--pink); border-color: var(--pink); }
.button-primary:hover { background: var(--pink-dark); border-color: var(--pink-dark); }
.button-tertiary { color: var(--ink); background: rgba(255,255,255,.68); border-color: rgba(5,5,5,.14); }
.button-tertiary:hover { background: #fff; border-color: rgba(5,5,5,.26); }
.button-large { min-height: 52px; padding: 0 22px; font-size: 15px; }
.kicker, .card-kicker { margin: 0; color: var(--pink-dark); font-size: 12px; font-weight: 800; letter-spacing: .1em; line-height: 1.2; text-transform: uppercase; }
em { color: var(--pink); font-style: normal; }

.hero { background: radial-gradient(circle at 5% 8%, rgba(189,167,255,.72), transparent 34%), radial-gradient(circle at 63% 0%, rgba(255,61,158,.45), transparent 31%), radial-gradient(circle at 96% 11%, rgba(255,173,121,.68), transparent 28%), linear-gradient(180deg, rgba(184,227,255,.72), #fff 94%); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr); gap: clamp(42px, 6vw, 92px); width: min(var(--page-max), calc(100% - (2 * var(--gutter)))); min-height: 740px; align-items: center; margin: 0 auto; padding: 72px 0 82px; }
.hero-copy { max-width: 720px; }
.announcement { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 34px; padding: 5px 9px 5px 11px; color: #fff; background: #292929; border-radius: 999px; box-shadow: 0 1px 30px rgba(0,0,0,.25); font-size: 13px; font-weight: 650; text-decoration: none; }
.announcement strong { color: var(--pink); font-size: 9px; letter-spacing: .08em; }
.hero h1, .section-heading h2, .workflow-heading h2, .support h2, .final-cta h2 { margin: 16px 0 0; font-family: var(--font-display); font-weight: 900; letter-spacing: -.05em; line-height: .88; text-transform: uppercase; }
.hero h1 { max-width: 800px; font-size: clamp(60px, 6vw, 90px); }
.hero-description { max-width: 590px; margin: 28px 0 0; color: rgba(5,5,5,.68); font-size: 18px; line-height: 1.45; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.hero-proof { display: flex; margin-top: 44px; border-top: 1px solid var(--line); }
.hero-proof span { display: grid; min-width: 0; flex: 1; gap: 4px; padding: 18px 18px 0 0; }
.hero-proof span + span { padding-left: 18px; border-left: 1px solid var(--line); }
.hero-proof strong { font: 900 24px/1 var(--font-display); }
.hero-proof small { color: var(--muted); font-size: 11px; }
.hero-product { margin: 0; }
.hero-product-frame { position: relative; height: 590px; overflow: hidden; background: var(--ink); border-radius: var(--radius-feature); box-shadow: 0 30px 80px rgba(5,5,5,.14); }
.hero-product-frame::after { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 58%, rgba(5,5,5,.24)); content: ""; pointer-events: none; }
.hero-product img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: 50% 48%; }
.hero-product figcaption { margin: 12px 2px 0; color: var(--muted); font-size: 12px; }
.hero-float { position: absolute; z-index: 2; display: flex; align-items: center; gap: 12px; color: var(--ink); background: rgba(255,255,255,.91); border: 1px solid rgba(255,255,255,.8); border-radius: 16px; box-shadow: 0 18px 44px rgba(5,5,5,.14); backdrop-filter: blur(16px); }
.hero-float small, .hero-float strong { display: block; }
.hero-float small { margin-bottom: 2px; color: var(--muted); font-size: 8px; font-weight: 800; letter-spacing: .1em; }
.hero-float strong { font-size: 13px; }
.hero-float-top { top: 26px; left: 26px; padding: 12px 16px 12px 12px; }
.hero-float-top i { display: grid; width: 34px; height: 34px; place-items: center; color: #fff; background: var(--pink); border-radius: 10px; font-style: normal; }
.hero-float-bottom { right: 24px; bottom: 24px; padding: 14px 14px 14px 18px; }
.hero-float-bottom b { display: grid; width: 42px; height: 42px; place-items: center; color: #fff; background: var(--ink); border-radius: 12px; font: 900 14px/1 var(--font-display); }

.signal-strip { display: grid; grid-template-columns: repeat(3, 1fr); width: min(var(--page-max), calc(100% - (2 * var(--gutter)))); margin: 0 auto; padding: 28px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.signal-strip article { display: flex; align-items: center; gap: 16px; padding: 0 28px; border-right: 1px solid var(--line); }
.signal-strip article:first-child { padding-left: 0; }
.signal-strip article:last-child { padding-right: 0; border: 0; }
.signal-strip article > span { display: grid; width: 48px; height: 48px; flex: 0 0 auto; place-items: center; color: #fff; background: var(--pink); border-radius: 12px; font-weight: 900; }
.signal-strip strong { font-size: 15px; }
.signal-strip p { margin: 2px 0 0; color: var(--muted); font-size: 13px; line-height: 1.4; }

.section { padding: 120px max(var(--gutter), calc((100vw - var(--page-max)) / 2)); }
.section-heading { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(300px, .65fr); gap: 22px 64px; align-items: end; margin-bottom: 58px; }
.section-heading .kicker { grid-column: 1 / -1; }
.section-heading h2, .workflow-heading h2, .support h2, .final-cta h2 { font-size: clamp(48px, 5vw, 74px); }
.section-heading > p:last-child, .workflow-heading > p, .support-copy > p { max-width: 520px; margin: 0 0 5px; color: var(--muted); font-size: 17px; line-height: 1.5; }
.section-product { background: #eef2f4; }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.benefit-card { position: relative; display: flex; min-height: 600px; flex-direction: column; justify-content: space-between; overflow: hidden; padding: 30px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-feature); }
.benefit-card.scan-card { color: #fff; background: var(--ink); }
.benefit-card.guide-card { background: var(--pink-soft); }
.card-index { position: absolute; top: 28px; right: 30px; font-size: 11px; font-weight: 800; opacity: .46; }
.benefit-card h3 { max-width: 390px; margin: 12px 0; font-size: 32px; letter-spacing: -.04em; line-height: 1.05; }
.benefit-card > div:last-child > p:last-child { margin: 0; color: inherit; font-size: 13px; line-height: 1.6; opacity: .67; }
.compatibility-demo { display: grid; min-height: 330px; align-content: center; padding: 30px 3%; }
.part-chip { position: relative; z-index: 2; display: grid; grid-template-columns: auto 1fr auto; gap: 12px; align-items: center; padding: 15px; background: rgba(255,255,255,.85); border: 1px solid #fff; border-radius: 18px; box-shadow: 0 20px 40px rgba(49,91,120,.12); }
.part-chip.offset { margin-left: 38px; }
.part-chip > i { display: grid; width: 42px; height: 42px; place-items: center; color: #fff; background: var(--ink); border-radius: 11px; font-size: 10px; font-style: normal; font-weight: 800; }
.part-chip small, .part-chip strong { display: block; }
.part-chip small { color: var(--muted); font-size: 7px; letter-spacing: .1em; }
.part-chip strong { font-size: 12px; }
.part-chip > b { display: grid; width: 27px; height: 27px; place-items: center; color: #fff; background: var(--green); border-radius: 50%; font-size: 11px; }
.match-line { width: 2px; height: 44px; margin-left: 38%; background: repeating-linear-gradient(to bottom, var(--pink) 0 4px, transparent 4px 8px); }
.scanner-demo { position: relative; display: grid; min-height: 350px; place-items: center; }
.scan-corner { position: absolute; width: 54px; height: 54px; border-color: var(--pink); border-style: solid; }
.top-left { top: 55px; left: 12%; border-width: 2px 0 0 2px; border-radius: 14px 0 0; }.top-right { top: 55px; right: 12%; border-width: 2px 2px 0 0; border-radius: 0 14px 0 0; }.bottom-left { bottom: 55px; left: 12%; border-width: 0 0 2px 2px; border-radius: 0 0 0 14px; }.bottom-right { right: 12%; bottom: 55px; border-width: 0 2px 2px 0; border-radius: 0 0 14px; }
.barcode { display: flex; height: 72px; gap: 5px; }
.barcode i { width: 3px; background: #fff; }.barcode i:nth-child(2n) { width: 8px; }.barcode i:nth-child(3n) { width: 2px; }
.scan-beam { position: absolute; top: 50%; width: 74%; height: 1px; background: var(--pink); box-shadow: 0 0 14px var(--pink); animation: scan 2.8s ease-in-out infinite; }
.scanner-demo small { position: absolute; bottom: 22px; color: #ff8fc7; font-size: 8px; font-weight: 800; letter-spacing: .14em; }
@keyframes scan { 0%,100% { transform: translateY(-70px); opacity: .4; } 50% { transform: translateY(70px); opacity: 1; } }
.guide-demo { display: grid; min-height: 340px; align-content: center; gap: 10px; padding: 25px 2%; }
.guide-row { display: grid; grid-template-columns: auto 1fr auto; gap: 12px; align-items: center; padding: 13px 15px; color: #6c737a; background: rgba(255,255,255,.55); border: 1px solid rgba(255,255,255,.85); border-radius: 16px; }
.guide-row > span { display: grid; width: 32px; height: 32px; place-items: center; background: #fff; border-radius: 9px; font-size: 10px; font-weight: 800; }
.guide-row b { font-size: 11px; }.guide-row i { display: grid; width: 24px; height: 24px; place-items: center; border-radius: 50%; font-size: 10px; font-style: normal; }
.guide-row.complete { color: var(--ink); }.guide-row.complete i { color: #fff; background: var(--green); }.guide-row.current { color: #fff; background: var(--pink); border-color: var(--pink); box-shadow: 0 14px 34px rgba(255,61,158,.2); }

.workflow { color: #fff; background: var(--ink); }
.workflow-heading { display: grid; grid-template-columns: 1.15fr .6fr; gap: 48px; align-items: end; margin-bottom: 60px; }
.workflow-heading > p { color: #999fa5; }
.workflow-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.16); }
.workflow-step { position: relative; min-height: 390px; padding: 32px 26px; border-right: 1px solid rgba(255,255,255,.13); transition: color .22s ease, background .22s ease; }
.workflow-step:first-child { border-left: 1px solid rgba(255,255,255,.13); }
.workflow-step:hover, .workflow-step:focus, .workflow-step.active { color: var(--ink); background: var(--pink); outline-offset: -3px; }
.step-number { color: #777; font-size: 10px; font-weight: 800; letter-spacing: .15em; }
.workflow-step:hover .step-number, .workflow-step:focus .step-number, .workflow-step.active .step-number { color: rgba(5,5,5,.55); }
.step-symbol { display: grid; width: 62px; height: 62px; place-items: center; margin: 68px 0 32px; color: var(--pink); background: rgba(255,61,158,.1); border: 1px solid rgba(255,61,158,.18); border-radius: 18px; font-size: 25px; }
.workflow-step:hover .step-symbol, .workflow-step:focus .step-symbol, .workflow-step.active .step-symbol { color: #fff; background: var(--ink); border-color: var(--ink); }
.workflow-step h3 { margin: 0 0 12px; font-size: 21px; }
.workflow-step p { margin: 0; color: #999fa5; font-size: 12px; line-height: 1.6; }
.workflow-step:hover p, .workflow-step:focus p, .workflow-step.active p { color: rgba(5,5,5,.68); }
.workflow-step > small { position: absolute; right: 26px; bottom: 26px; left: 26px; padding-top: 15px; border-top: 1px solid rgba(255,255,255,.12); color: #757b80; font-size: 9px; font-weight: 800; letter-spacing: .08em; }
.workflow-step:hover > small, .workflow-step:focus > small, .workflow-step.active > small { color: rgba(5,5,5,.56); border-color: rgba(5,5,5,.18); }

.workspace { background: #f5f7f8; }
.app-preview { overflow: hidden; margin-bottom: 90px; background: #111; border: 9px solid #191a1c; border-radius: 26px 26px 18px 18px; box-shadow: 0 38px 90px rgba(20,31,39,.18); }
.preview-top { display: grid; grid-template-columns: 1fr 2fr 1fr; align-items: center; height: 42px; padding: 0 16px; color: #8d959b; background: #27292c; font-size: 8px; }
.preview-top > span { display: flex; gap: 6px; }.preview-top > span i { width: 8px; height: 8px; background: #596066; border-radius: 50%; }.preview-top > span i:first-child { background: #f2746b; }.preview-top > span i:nth-child(2) { background: #edbd60; }.preview-top > span i:last-child { background: #62c982; }
.preview-top b { justify-self: center; width: 68%; padding: 7px; background: #1e2022; border-radius: 999px; text-align: center; }.preview-top small { justify-self: end; }
.preview-body { display: grid; grid-template-columns: 210px 1fr; min-height: 620px; background: #edf1f4; }
.preview-body > aside { display: flex; flex-direction: column; padding: 24px 18px; color: #fff; background: #151719; }
.preview-body > aside > strong { display: flex; align-items: center; gap: 9px; font-size: 10px; }.preview-body > aside > strong span { display: grid; width: 28px; height: 28px; place-items: center; background: var(--pink); border-radius: 8px; }
.preview-body aside nav { display: grid; gap: 4px; margin-top: 38px; }.preview-body aside nav i { padding: 12px; color: #777e84; border-radius: 9px; font-size: 9px; font-style: normal; }.preview-body aside nav i.selected { color: #fff; background: var(--pink); }
.preview-progress { display: grid; margin-top: auto; padding: 15px; background: #222529; border: 1px solid rgba(255,255,255,.06); border-radius: 14px; }.preview-progress small { color: #777f86; font-size: 7px; }.preview-progress b { margin: 8px 0; font-size: 25px; }.preview-progress > span { height: 3px; background: #3a3f43; border-radius: 10px; }.preview-progress > span i { display: block; width: 64%; height: 100%; background: var(--pink); }.preview-progress em { margin-top: 13px; color: #b9c0c5; font-size: 8px; font-style: normal; }
.preview-main { min-width: 0; padding: 24px; }.preview-main > header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }.preview-main header small, .preview-main header strong { display: block; }.preview-main header small { color: var(--pink-dark); font-size: 7px; letter-spacing: .1em; }.preview-main header strong { margin-top: 4px; font-size: 20px; }.preview-main header > span { display: grid; width: 34px; height: 34px; place-items: center; color: #fff; background: var(--ink); border-radius: 50%; font-size: 10px; }
.preview-hero { display: grid; grid-template-columns: 1.25fr .75fr; min-height: 260px; overflow: hidden; background: linear-gradient(135deg, var(--pink-soft), #fff); border-radius: 22px; }.preview-hero > div:first-child { align-self: center; padding: 30px; }.preview-hero small { color: var(--pink-dark); font-size: 7px; font-weight: 800; }.preview-hero h3 { margin: 14px 0 8px; font-family: var(--font-display); font-size: 28px; letter-spacing: -.04em; line-height: .95; }.preview-hero p { max-width: 360px; margin: 0 0 18px; color: var(--muted); font-size: 9px; }.preview-hero > div:first-child > b { display: inline-block; padding: 9px 12px; color: #fff; background: var(--pink); border-radius: 8px; font-size: 8px; }
.case-art { position: relative; align-self: end; justify-self: center; width: 175px; height: 215px; border: 5px solid #adb4b9; border-radius: 18px 18px 4px 4px; box-shadow: inset 0 0 50px rgba(255,61,158,.1); }.case-art i { position: absolute; right: 15px; width: 50px; height: 50px; border: 5px double var(--pink); border-radius: 50%; }.case-art i:first-child { top: 26px; }.case-art i:nth-child(2) { top: 87px; }.case-art b { position: absolute; top: 45px; left: 24px; width: 50px; height: 58px; border: 5px solid #b5bbc0; }.case-art span { position: absolute; right: 20px; bottom: 30px; left: 18px; height: 28px; border: 4px solid var(--pink); }
.preview-cards { display: grid; grid-template-columns: 1.35fr .65fr; gap: 15px; margin-top: 15px; }.preview-cards article { position: relative; padding: 20px; background: #fff; border: 1px solid #e1e5e7; border-radius: 17px; }.preview-cards small { color: var(--pink-dark); font-size: 7px; }.preview-cards h4 { margin: 6px 0 13px; }.preview-cards article:first-child p { display: grid; grid-template-columns: 45px 1fr auto; gap: 8px; margin: 0; padding: 8px 0; border-top: 1px solid #edf0f2; font-size: 8px; }.preview-cards p span { color: #8a9197; }.preview-cards p i { display: grid; width: 16px; height: 16px; place-items: center; color: #fff; background: var(--green); border-radius: 50%; font-size: 7px; font-style: normal; }.preview-cards .next-step { color: #fff; background: var(--pink); border-color: var(--pink); }.next-step > strong { position: absolute; top: 14px; right: 18px; color: rgba(255,255,255,.24); font-size: 54px; }.next-step h4 { margin-top: 46px; font-size: 17px; }.next-step p { color: rgba(255,255,255,.72); font-size: 8px; }
.feature-grid { display: grid; grid-template-columns: 1.2fr .8fr; grid-template-rows: 1fr 1fr; gap: 16px; }
.feature-card { overflow: hidden; padding: 36px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-feature); }
.feature-card h3 { margin: 13px 0; font-size: 30px; letter-spacing: -.04em; line-height: 1.08; }.feature-card p:not(.card-kicker) { color: var(--muted); font-size: 13px; line-height: 1.6; }.feature-card a { display: inline-flex; gap: 10px; align-items: center; margin-top: 20px; color: var(--pink-dark); font-size: 12px; font-weight: 800; }
.assistant-feature { grid-row: 1 / 3; display: grid; grid-template-columns: .8fr 1.2fr; gap: 36px; min-height: 590px; align-items: center; color: #fff; background: var(--ink); }.assistant-feature p:not(.card-kicker) { color: #a7adb2; }
.chat-preview { padding: 20px; color: var(--ink); background: rgba(255,255,255,.94); border-radius: 24px; transform: rotate(1.5deg); }.chat-preview p { max-width: 90%; padding: 13px 15px; border-radius: 15px; font-size: 11px; }.user-message { margin-left: auto; color: #fff !important; background: var(--ink); border-bottom-right-radius: 4px !important; }.assistant-message { display: grid; grid-template-columns: auto 1fr; gap: 9px; color: var(--ink) !important; background: var(--pink-soft); border-bottom-left-radius: 4px !important; }.assistant-message i { display: grid; width: 27px; height: 27px; place-items: center; color: #fff; background: var(--pink); border-radius: 8px; font-style: normal; }.chat-preview > span { display: flex; align-items: center; justify-content: space-between; margin-top: 32px; padding: 8px 8px 8px 14px; color: var(--muted); background: #fff; border: 1px solid var(--line); border-radius: 999px; font-size: 10px; }.chat-preview > span b { display: grid; width: 28px; height: 28px; place-items: center; color: #fff; background: var(--pink); border-radius: 50%; }
.recommender-feature { background: var(--pink-soft); }.recommender-feature > strong { display: block; margin-top: 14px; color: var(--pink); font: 900 72px/.9 var(--font-display); }.recommender-feature h3 { margin-top: 4px; font-size: 23px; }
.support-feature { background: #fff; }.support-feature h3 { font-size: 24px; }.support-feature > div { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 18px; }.support-feature > div span { padding: 8px 10px; background: #f0f3f5; border-radius: 999px; font-size: 8px; font-weight: 700; }

.support { display: grid; grid-template-columns: .85fr 1.15fr; gap: 76px; align-items: center; background: #e8ecef; }
.support-copy > p:last-child { margin-top: 26px; }
.question-list { display: grid; gap: 12px; }.question-list article { display: grid; grid-template-columns: auto 1fr; gap: 18px; min-height: 122px; align-items: center; padding: 24px 28px; background: rgba(255,255,255,.72); border: 1px solid rgba(255,255,255,.9); border-radius: 22px; transition: transform .22s ease, background .22s ease; }.question-list article:nth-child(2) { margin-left: 7%; }.question-list article:nth-child(3) { margin-left: 14%; }.question-list article:hover { background: #fff; transform: translateX(-6px); }.question-list article > span { color: var(--pink); font-size: 46px; line-height: 1; }.question-list p { margin: 0 0 9px; font-size: 17px; font-weight: 700; }.question-list small { color: var(--muted); font-size: 8px; font-weight: 800; letter-spacing: .1em; }

.final-cta { position: relative; display: grid; min-height: 660px; place-items: center; overflow: hidden; padding: 100px var(--gutter); color: #fff; background: radial-gradient(circle at 12% 10%, rgba(189,167,255,.72), transparent 34%), radial-gradient(circle at 78% 7%, rgba(255,61,158,.48), transparent 35%), linear-gradient(145deg, #171717, #050505 72%); text-align: center; }.final-copy { position: relative; z-index: 2; }.final-cta h2 { max-width: 1050px; }.final-cta .kicker { color: #ff8fc7; }.final-cta p:not(.kicker) { margin: 24px 0 32px; color: #a5abb0; }.orbit { position: absolute; z-index: 1; display: grid; width: 54px; height: 54px; place-items: center; color: #fff; background: var(--pink); border: 1px solid rgba(255,255,255,.22); border-radius: 16px; box-shadow: 0 18px 40px rgba(0,0,0,.28); font-size: 9px; font-weight: 850; }.orbit-one { top: 20%; left: 13%; transform: rotate(-9deg); }.orbit-two { bottom: 18%; left: 21%; transform: rotate(7deg); }.orbit-three { top: 26%; right: 15%; transform: rotate(10deg); }

footer { padding: 68px max(var(--gutter), calc((100vw - var(--page-max)) / 2)) 30px; color: #c8cdd1; background: #111315; }
.footer-top { display: grid; grid-template-columns: 1fr 1fr auto; gap: 40px; align-items: center; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,.1); }.brand-footer { color: #fff; }.footer-top p { margin: 0; color: #727a81; font-size: 13px; }.footer-up { display: grid; width: 46px; height: 46px; place-items: center; color: #fff; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; text-decoration: none; }.footer-links { display: grid; grid-template-columns: repeat(3, minmax(130px, 1fr)); gap: 50px; max-width: 680px; padding: 62px 0; }.footer-links div { display: grid; gap: 12px; }.footer-links strong { margin-bottom: 6px; color: #687078; font-size: 8px; letter-spacing: .14em; }.footer-links a { font-size: 11px; text-decoration: none; }.footer-links a:hover { color: var(--pink); }.footer-bottom { display: flex; justify-content: space-between; gap: 28px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); color: #626a70; font-size: 9px; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s cubic-bezier(.2,.75,.3,1), transform .6s cubic-bezier(.2,.75,.3,1); transition-delay: calc(var(--delay, 0) * 100ms); }
.reveal[data-delay="1"] { --delay: 1; }.reveal[data-delay="2"] { --delay: 2; }.reveal.in-view { opacity: 1; transform: translateY(0); }

@media (max-width: 1040px) {
  .hero-grid { grid-template-columns: 1fr; width: min(760px, calc(100% - (2 * var(--gutter)))); }
  .hero-product-frame { height: 560px; }
  .benefit-grid { grid-template-columns: 1fr 1fr; }.benefit-card:last-child { grid-column: 1 / -1; min-height: 520px; }.guide-demo { max-width: 620px; width: 100%; margin-inline: auto; }
  .workflow-grid { grid-template-columns: 1fr 1fr; }.workflow-step:nth-child(3) { border-left: 1px solid rgba(255,255,255,.13); border-top: 1px solid rgba(255,255,255,.13); }.workflow-step:nth-child(4) { border-top: 1px solid rgba(255,255,255,.13); }
  .feature-grid { grid-template-columns: 1fr; grid-template-rows: auto; }.assistant-feature { grid-row: auto; }.support { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .site-header, .header-inner { min-height: 68px; }.menu-toggle { display: block; }.header-cta { display: none; }
  .primary-nav { position: fixed; top: 68px; right: var(--gutter); left: var(--gutter); display: none; gap: 4px; padding: 10px; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: 0 20px 60px rgba(5,5,5,.12); }.primary-nav.open { display: grid; }.primary-nav a { padding: 13px; border-radius: 8px; }.primary-nav a:hover { background: var(--pink-soft); }
  .signal-strip { grid-template-columns: 1fr; }.signal-strip article, .signal-strip article:first-child, .signal-strip article:last-child { padding: 18px 0; border-right: 0; border-bottom: 1px solid var(--line); }.signal-strip article:last-child { border-bottom: 0; }
  .section-heading, .workflow-heading { grid-template-columns: 1fr; }.section-heading .kicker { grid-column: auto; }
  .preview-body { grid-template-columns: 1fr; }.preview-body > aside { display: none; }.preview-main { padding: 16px; }
  .assistant-feature { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .hero-grid { min-height: 0; padding: 52px 0 70px; }.announcement { margin-bottom: 28px; }.hero h1 { font-size: clamp(48px, 15vw, 62px); }.hero-description { font-size: 16px; }.hero-actions { display: grid; }.hero-actions .button { width: 100%; }.hero-proof small { font-size: 9px; }.hero-proof strong { font-size: 20px; }.hero-product-frame { height: 480px; }.hero-float-top { top: 14px; left: 14px; }.hero-float-bottom { right: 14px; bottom: 14px; }.hero-float-bottom strong { max-width: 135px; }
  .section { padding-top: 88px; padding-bottom: 88px; }.section-heading h2, .workflow-heading h2, .support h2, .final-cta h2 { font-size: 44px; }.section-heading > p:last-child, .workflow-heading > p, .support-copy > p { font-size: 15px; }
  .benefit-grid { grid-template-columns: 1fr; }.benefit-card, .benefit-card:last-child { grid-column: auto; min-height: 560px; padding: 24px; }.benefit-card h3 { font-size: 28px; }
  .workflow-grid { grid-template-columns: 1fr; }.workflow-step, .workflow-step:first-child, .workflow-step:nth-child(3) { min-height: 330px; border: 1px solid rgba(255,255,255,.13); border-bottom: 0; }.workflow-step:last-child { border-bottom: 1px solid rgba(255,255,255,.13); }.step-symbol { margin: 48px 0 26px; }
  .app-preview { border-width: 5px; border-radius: 18px; }.preview-top { display: none; }.preview-body { min-height: 520px; }.preview-hero { grid-template-columns: 1fr; }.case-art { position: absolute; right: -25px; bottom: -28px; opacity: .25; }.preview-hero { position: relative; }.preview-hero > div:first-child { position: relative; z-index: 2; }.preview-cards { grid-template-columns: 1fr; }.preview-cards article:first-child { display: none; }
  .feature-card { padding: 26px; border-radius: var(--radius-card); }.assistant-feature { min-height: 660px; }.chat-preview { padding: 14px; transform: none; }.recommender-feature > strong { font-size: 60px; }
  .question-list article:nth-child(n) { margin-left: 0; padding: 22px; }.final-cta { min-height: 620px; }.orbit { display: none; }
  .footer-top { grid-template-columns: 1fr auto; }.footer-top p { grid-column: 1 / -1; grid-row: 2; }.footer-links { grid-template-columns: 1fr 1fr; }.footer-bottom { flex-direction: column; }
}

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