:root {
  --font-display: "Manrope", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --bg: #080a10;
  --bg-soft: #0d1018;
  --surface: rgba(19, 23, 34, 0.78);
  --surface-solid: #121621;
  --surface-2: #181d2a;
  --surface-3: #202637;
  --text: #f8f8fb;
  --text-soft: #aeb5c5;
  --text-faint: #747d91;
  --line: rgba(255,255,255,.10);
  --line-strong: rgba(255,255,255,.17);
  --primary: #8b5cf6;
  --primary-2: #6d5dfc;
  --accent: #6ee7c7;
  --accent-2: #a7f3d0;
  --danger: #fb7185;
  --warning: #fbbf24;
  --shadow-sm: 0 10px 30px rgba(0,0,0,.22);
  --shadow-lg: 0 40px 100px rgba(0,0,0,.42);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-xl: 34px;
  --container: 1200px;
  --header-h: 80px;
  color-scheme: dark;
}

html[data-theme="light"] {
  --bg: #f5f7fb;
  --bg-soft: #eef1f7;
  --surface: rgba(255,255,255,.82);
  --surface-solid: #ffffff;
  --surface-2: #f4f6fa;
  --surface-3: #eaedf4;
  --text: #11131a;
  --text-soft: #5f6675;
  --text-faint: #8991a3;
  --line: rgba(17,19,26,.10);
  --line-strong: rgba(17,19,26,.18);
  --shadow-sm: 0 10px 30px rgba(34,42,60,.10);
  --shadow-lg: 0 40px 100px rgba(34,42,60,.16);
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 50% -10%, rgba(139,92,246,.12), transparent 34%),
    var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
  z-index: -1;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
svg { width: 1.25em; height: 1.25em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 112px 0; position: relative; }
.skip-link { position: fixed; top: -50px; left: 16px; z-index: 1000; padding: 10px 14px; background: var(--text); color: var(--bg); border-radius: 8px; }
.skip-link:focus { top: 16px; }
.ambient { position: fixed; border-radius: 999px; filter: blur(90px); opacity: .14; pointer-events: none; z-index: -2; }
.ambient-one { width: 420px; height: 420px; background: var(--primary); top: 8%; right: -160px; }
.ambient-two { width: 360px; height: 360px; background: #14b8a6; left: -180px; top: 48%; }

.site-header { position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--header-h); display: flex; align-items: center; transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease; }
.site-header.scrolled { background: color-mix(in srgb, var(--bg) 82%, transparent); border-bottom: 1px solid var(--line); backdrop-filter: blur(18px); }
.nav-shell { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--font-display); font-size: 19px; font-weight: 800; letter-spacing: -.04em; }
.brand-mark { width: 28px; height: 28px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; transform: rotate(-7deg); }
.brand-mark span { display: block; border-radius: 5px; background: linear-gradient(180deg, var(--accent), var(--primary)); }
.brand-mark span:nth-child(1) { height: 70%; margin-top: 30%; opacity: .8; }
.brand-mark span:nth-child(2) { height: 100%; }
.brand-mark span:nth-child(3) { height: 76%; margin-top: 10%; opacity: .88; }
.main-nav { display: flex; align-items: center; gap: 30px; font-size: 14px; color: var(--text-soft); }
.main-nav a { transition: color .2s ease; }
.main-nav a:hover { color: var(--text); }
.nav-actions { display: flex; justify-content: flex-end; align-items: center; gap: 8px; }
.icon-button { width: 42px; height: 42px; display: inline-grid; place-items: center; border: 1px solid var(--line); border-radius: 999px; background: color-mix(in srgb, var(--surface) 70%, transparent); cursor: pointer; transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.icon-button:hover { transform: translateY(-2px); border-color: var(--line-strong); background: var(--surface-2); }
.moon-icon { display: none; }
html[data-theme="light"] .sun-icon { display: none; }
html[data-theme="light"] .moon-icon { display: block; }
.mobile-menu-button { display: none; }

.button { min-height: 42px; padding: 0 18px; border-radius: 999px; border: 1px solid transparent; display: inline-flex; align-items: center; justify-content: center; gap: 9px; font-weight: 700; font-size: 14px; letter-spacing: -.01em; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease; cursor: pointer; white-space: nowrap; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: linear-gradient(135deg, #9b6cff, #6d5dfc); color: #fff; box-shadow: 0 14px 34px rgba(109,93,252,.28), inset 0 1px rgba(255,255,255,.18); }
.button-primary:hover { box-shadow: 0 18px 42px rgba(109,93,252,.37), inset 0 1px rgba(255,255,255,.18); }
.button-secondary { background: var(--surface); border-color: var(--line); color: var(--text); backdrop-filter: blur(14px); }
.button-secondary:hover { border-color: var(--line-strong); background: var(--surface-2); }
.button-ghost { color: var(--text-soft); }
.button-ghost:hover { color: var(--text); }
.button-large { min-height: 54px; padding: 0 24px; font-size: 15px; }
.button-small { min-height: 36px; padding: 0 14px; font-size: 12px; }
.button-light { background: #fff; color: #11131a; box-shadow: 0 14px 34px rgba(0,0,0,.18); }
.button-glass { border-color: rgba(255,255,255,.24); background: rgba(255,255,255,.09); color: #fff; backdrop-filter: blur(14px); }
.full-width { width: 100%; }
.play-icon { width: 23px; height: 23px; border-radius: 999px; background: rgba(139,92,246,.16); display: inline-grid; place-items: center; color: var(--primary); font-size: 9px; padding-left: 2px; }

.hero { min-height: 900px; padding-top: calc(var(--header-h) + 82px); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: minmax(0, .86fr) minmax(560px, 1.14fr); align-items: center; gap: 64px; }
.hero-copy { position: relative; z-index: 2; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; font-size: 12px; font-weight: 800; letter-spacing: .13em; color: var(--text-soft); text-transform: uppercase; }
.eyebrow.light { color: rgba(255,255,255,.67); }
.status-dot { width: 8px; height: 8px; border-radius: 999px; background: var(--accent); box-shadow: 0 0 0 5px rgba(110,231,199,.10), 0 0 20px rgba(110,231,199,.55); }
.hero h1, .section-heading h2, .workflow-copy h2, .ai-copy h2, .cta-content h2 { font-family: var(--font-display); letter-spacing: -.055em; line-height: .98; margin: 24px 0 24px; }
.hero h1 { font-size: clamp(54px, 6vw, 88px); font-weight: 800; }
.hero h1 span { background: linear-gradient(90deg, #b69cff, #7c6cff 45%, #6ee7c7); -webkit-background-clip: text; color: transparent; }
.hero-lead { max-width: 610px; font-size: 19px; line-height: 1.7; color: var(--text-soft); margin: 0; }
.hero-actions { display: flex; gap: 12px; margin-top: 34px; flex-wrap: wrap; }
.trust-row { display: flex; gap: 26px; margin-top: 28px; color: var(--text-faint); font-size: 13px; }
.trust-row span { display: inline-flex; align-items: center; gap: 8px; }
.trust-row span::before { content: "✓"; color: var(--accent); font-weight: 800; }

.hero-visual { min-height: 660px; position: relative; perspective: 1400px; }
.visual-glow { position: absolute; inset: 9% 4% 8% 8%; background: radial-gradient(circle at 40% 38%, rgba(139,92,246,.46), transparent 48%), radial-gradient(circle at 68% 65%, rgba(110,231,199,.26), transparent 44%); filter: blur(42px); }
.product-window { position: absolute; width: 690px; max-width: 100%; right: -54px; top: 22px; border: 1px solid rgba(255,255,255,.12); background: rgba(12,15,23,.92); border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-lg); transform: rotateY(-5deg) rotateX(2deg); }
html[data-theme="light"] .product-window { background: rgba(255,255,255,.94); }
.window-topbar { height: 46px; display: grid; grid-template-columns: 1fr 2fr 1fr; align-items: center; padding: 0 14px; border-bottom: 1px solid var(--line); }
.window-dots { display: flex; gap: 6px; }
.window-dots span { width: 8px; height: 8px; border-radius: 99px; background: var(--surface-3); }
.window-address { justify-self: center; color: var(--text-faint); font-size: 10px; background: var(--surface-2); border: 1px solid var(--line); padding: 6px 22px; border-radius: 999px; }
.window-avatar { justify-self: end; width: 24px; height: 24px; border-radius: 50%; background: linear-gradient(135deg,var(--accent),var(--primary)); color: #10131a; display: grid; place-items: center; font-size: 8px; font-weight: 800; }
.event-cover { position: relative; height: 248px; overflow: hidden; }
.event-cover img { width: 100%; height: 100%; object-fit: cover; }
.cover-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 18%, rgba(6,8,13,.78)); }
.event-cover-content { position: absolute; inset: auto 24px 22px 24px; display: flex; align-items: flex-end; justify-content: space-between; color: #fff; }
.event-cover-content h2 { margin: 6px 0 2px; font: 800 26px/1.1 var(--font-display); letter-spacing: -.04em; }
.event-cover-content p { margin: 0; color: rgba(255,255,255,.68); font-size: 11px; }
.event-label { font-size: 8px; letter-spacing: .16em; color: var(--accent-2); font-weight: 800; }
.qr-button { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.10); color: #fff; backdrop-filter: blur(10px); }
.event-toolbar { height: 76px; display: flex; align-items: center; gap: 28px; padding: 0 22px; border-bottom: 1px solid var(--line); }
.mini-stat { display: flex; flex-direction: column; }
.mini-stat strong { font-family: var(--font-display); font-size: 16px; line-height: 1.1; }
.mini-stat span { color: var(--text-faint); font-size: 9px; }
.event-toolbar .button { margin-left: auto; }
.gallery-grid { display: grid; gap: 8px; }
.hero-gallery { grid-template-columns: 1.25fr 1fr 1fr; grid-auto-rows: 110px; padding: 12px; height: 248px; overflow: hidden; }
.gallery-item { margin: 0; border-radius: 10px; overflow: hidden; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-tall { grid-row: span 2; }
.floating-card { position: absolute; z-index: 3; display: flex; align-items: center; gap: 12px; background: color-mix(in srgb, var(--surface-solid) 90%, transparent); border: 1px solid var(--line-strong); box-shadow: var(--shadow-sm); backdrop-filter: blur(16px); }
.ai-match-card { left: -48px; bottom: 74px; border-radius: 18px; padding: 12px 14px; min-width: 250px; }
.match-avatar { width: 42px; height: 42px; border-radius: 12px; overflow: hidden; }
.match-avatar img { width: 100%; height: 100%; object-fit: cover; }
.ai-match-card div:nth-child(2) { display: flex; flex-direction: column; }
.ai-match-card span, .upload-card span { color: var(--text-faint); font-size: 10px; }
.ai-match-card strong { font-size: 13px; }
.success-check { margin-left: auto; width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; background: rgba(110,231,199,.16); color: var(--accent); font-weight: 800; }
.upload-card { right: -28px; bottom: 4px; border-radius: 16px; padding: 12px 14px; width: 280px; }
.upload-icon { width: 34px; height: 34px; border-radius: 11px; display: grid; place-items: center; background: rgba(139,92,246,.16); color: #a78bfa; }
.upload-card-copy { flex: 1; }
.progress-track { height: 4px; border-radius: 99px; background: var(--surface-3); overflow: hidden; margin-top: 7px; }
.progress-bar { width: 82%; height: 100%; background: linear-gradient(90deg,var(--primary),var(--accent)); border-radius: inherit; position: relative; }
.progress-bar::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg,transparent,rgba(255,255,255,.8),transparent); animation: shimmer 2s infinite; }
.upload-card > strong { font-size: 12px; }

.category-marquee { margin-top: 82px; overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { width: max-content; display: flex; align-items: center; gap: 24px; animation: marquee 28s linear infinite; color: var(--text-faint); font: 600 14px var(--font-display); letter-spacing: .02em; }
.marquee-track i { color: var(--primary); font-style: normal; font-size: 8px; }

.proof-strip { padding: 0 0 72px; }
.proof-grid { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--line); background: color-mix(in srgb, var(--surface) 76%, transparent); border-radius: var(--radius-lg); backdrop-filter: blur(16px); overflow: hidden; }
.proof-grid > div { padding: 28px 32px; display: flex; flex-direction: column; border-right: 1px solid var(--line); }
.proof-grid > div:last-child { border-right: 0; }
.proof-grid strong { font: 800 28px var(--font-display); letter-spacing: -.04em; }
.proof-grid span { color: var(--text-faint); font-size: 12px; }

.section-heading { max-width: 650px; margin-bottom: 48px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading h2, .workflow-copy h2, .ai-copy h2, .cta-content h2 { font-size: clamp(42px, 5vw, 66px); }
.section-heading p, .workflow-copy p, .ai-copy p, .cta-content p { color: var(--text-soft); font-size: 17px; margin: 0; }
.product-section { background: linear-gradient(180deg, transparent, rgba(139,92,246,.035), transparent); }
.experience-shell { border: 1px solid var(--line); background: var(--surface); border-radius: var(--radius-xl); overflow: hidden; backdrop-filter: blur(18px); box-shadow: var(--shadow-sm); }
.experience-tabs { display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid var(--line); }
.experience-tab { border: 0; border-right: 1px solid var(--line); background: transparent; padding: 24px; display: flex; align-items: center; gap: 14px; text-align: left; cursor: pointer; color: var(--text-soft); transition: background .2s ease, color .2s ease; }
.experience-tab:last-child { border-right: 0; }
.experience-tab:hover { background: rgba(139,92,246,.05); }
.experience-tab.active { color: var(--text); background: linear-gradient(180deg, rgba(139,92,246,.10), transparent); box-shadow: inset 0 -2px var(--primary); }
.tab-icon { width: 34px; height: 34px; border-radius: 11px; display: grid; place-items: center; background: var(--surface-2); border: 1px solid var(--line); font-size: 10px; font-weight: 800; }
.experience-tab span:last-child { display: flex; flex-direction: column; }
.experience-tab strong { font: 700 14px var(--font-display); }
.experience-tab small { font-size: 10px; color: var(--text-faint); }
.experience-panel { min-height: 590px; display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 50px; padding: 54px 58px; }
.panel-kicker { color: var(--primary); font-size: 11px; letter-spacing: .12em; font-weight: 800; }
.panel-copy h3 { font: 800 clamp(34px,4vw,52px)/1.08 var(--font-display); letter-spacing: -.045em; margin: 15px 0 20px; }
.panel-copy > p { color: var(--text-soft); font-size: 16px; }
.feature-list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 12px; }
.feature-list li { display: flex; gap: 11px; align-items: center; color: var(--text-soft); font-size: 14px; }
.feature-list li span { width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; background: rgba(110,231,199,.10); color: var(--accent); font-size: 11px; font-weight: 800; }
.phone-stage, .dashboard-stage, .processing-stage { min-height: 470px; border-radius: 28px; position: relative; display: grid; place-items: center; background: radial-gradient(circle at 50% 30%, rgba(139,92,246,.22), transparent 43%), var(--surface-2); border: 1px solid var(--line); overflow: hidden; }
.phone-stage::before, .dashboard-stage::before, .processing-stage::before { content: ""; position: absolute; width: 360px; height: 360px; border: 1px solid rgba(139,92,246,.14); border-radius: 50%; box-shadow: 0 0 0 44px rgba(139,92,246,.04),0 0 0 88px rgba(139,92,246,.025); }
.phone-frame { width: 232px; height: 434px; border: 7px solid #080a0f; border-radius: 34px; background: #0d1018; padding: 10px; position: relative; box-shadow: 0 24px 60px rgba(0,0,0,.42); z-index: 2; }
.phone-speaker { position: absolute; top: 8px; left: 50%; transform: translateX(-50%); width: 72px; height: 17px; background: #080a0f; border-radius: 99px; z-index: 5; }
.phone-screen { height: 100%; border-radius: 21px; overflow: hidden; background: #f5f6f9; color: #151821; padding: 22px 11px 12px; }
.phone-header { display: flex; justify-content: space-between; align-items: center; font-size: 8px; font-weight: 800; padding: 0 2px 8px; }
.phone-header button { border: 0; background: none; }
.story-card { height: 192px; border-radius: 16px; overflow: hidden; position: relative; }
.story-card img { width: 100%; height: 100%; object-fit: cover; }
.story-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg,transparent,rgba(12,15,22,.78)); }
.story-card-overlay { position: absolute; z-index: 2; left: 13px; right: 13px; bottom: 13px; color: #fff; display: flex; flex-direction: column; }
.story-card-overlay span { font-size: 7px; opacity: .7; }
.story-card-overlay strong { font: 800 15px/1.15 var(--font-display); }
.selfie-button { width: 100%; height: 39px; border: 0; border-radius: 12px; margin: 10px 0; background: linear-gradient(135deg,#8b5cf6,#6d5dfc); color: #fff; font-size: 9px; font-weight: 800; }
.camera-icon { margin-right: 5px; }
.phone-mini-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 5px; }
.phone-mini-grid img { height: 72px; object-fit: cover; border-radius: 8px; }
.phone-badge { position: absolute; right: 8%; top: 18%; z-index: 3; background: rgba(16,19,29,.92); color: #fff; border: 1px solid rgba(255,255,255,.14); box-shadow: var(--shadow-sm); padding: 12px 14px; border-radius: 15px; display: grid; grid-template-columns: auto 1fr; column-gap: 8px; }
.phone-badge span { grid-row: 1 / span 2; align-self: center; }
.phone-badge strong { font-size: 11px; }
.phone-badge small { font-size: 8px; color: rgba(255,255,255,.55); }

.mini-dashboard { width: 92%; height: 78%; border-radius: 18px; overflow: hidden; display: grid; grid-template-columns: 54px 1fr; background: #0e1119; color: #fff; box-shadow: 0 30px 70px rgba(0,0,0,.35); z-index: 2; border: 1px solid rgba(255,255,255,.08); }
.mini-sidebar { background: #0a0d14; border-right: 1px solid rgba(255,255,255,.08); padding: 16px 11px; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.brand-mark.tiny { width: 22px; height: 22px; }
.mini-sidebar i { display: block; width: 24px; height: 24px; border-radius: 8px; background: rgba(255,255,255,.05); position: relative; }
.mini-sidebar i:first-of-type { background: rgba(139,92,246,.18); }
.mini-main { padding: 22px; }
.mini-heading { display: flex; justify-content: space-between; align-items: center; }
.mini-heading > div { display: flex; flex-direction: column; }
.mini-heading small { color: #8b5cf6; font-size: 7px; letter-spacing: .12em; }
.mini-heading strong { font: 700 17px var(--font-display); }
.mini-heading button { border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.04); color: #fff; border-radius: 8px; padding: 7px 10px; font-size: 8px; }
.metrics-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin: 18px 0; }
.metrics-row > div { border: 1px solid rgba(255,255,255,.08); background: rgba(255,255,255,.035); padding: 12px; border-radius: 11px; display: grid; }
.metrics-row span { color: rgba(255,255,255,.5); font-size: 7px; }
.metrics-row strong { font: 700 20px var(--font-display); }
.metrics-row small { color: #6ee7c7; font-size: 7px; }
.chart-card { height: 210px; border-radius: 13px; border: 1px solid rgba(255,255,255,.08); background: rgba(255,255,255,.025); padding: 14px; }
.chart-heading { display: flex; justify-content: space-between; font-size: 8px; }
.chart-heading small { color: rgba(255,255,255,.45); }
.chart-card svg { width: 100%; height: 150px; margin-top: 10px; overflow: visible; }
.chart-line { fill: none; stroke: #8b5cf6; stroke-width: 3; filter: drop-shadow(0 0 8px rgba(139,92,246,.65)); }

.processing-window { width: 86%; min-height: 330px; background: #0e1119; color: #fff; border: 1px solid rgba(255,255,255,.08); border-radius: 20px; padding: 25px; z-index: 2; box-shadow: 0 30px 70px rgba(0,0,0,.35); }
.processing-head { display: flex; align-items: center; justify-content: space-between; }
.processing-head > div { display: grid; }
.processing-head span { color: rgba(255,255,255,.45); font-size: 9px; }
.processing-head strong { font: 700 17px var(--font-display); }
.processing-live { display: flex; align-items: center; gap: 7px; border: 1px solid rgba(110,231,199,.22); background: rgba(110,231,199,.07); padding: 6px 9px; border-radius: 999px; color: #6ee7c7 !important; }
.processing-live i { width: 6px; height: 6px; border-radius: 50%; background: #6ee7c7; box-shadow: 0 0 12px #6ee7c7; }
.processing-progress { display: flex; align-items: center; gap: 22px; margin: 34px 0; }
.processing-orbit { width: 96px; height: 96px; border-radius: 50%; display: grid; place-items: center; background: conic-gradient(#8b5cf6 0 98%, rgba(255,255,255,.08) 98%); position: relative; }
.processing-orbit::before { content: ""; position: absolute; inset: 8px; background: #0e1119; border-radius: 50%; }
.processing-orbit span { z-index: 2; color: #fff; font: 800 19px var(--font-display); }
.processing-progress > div:last-child { display: grid; }
.processing-progress strong { font: 700 15px var(--font-display); }
.processing-progress span { color: rgba(255,255,255,.46); font-size: 10px; max-width: 250px; }
.processing-stats { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid rgba(255,255,255,.08); padding-top: 20px; }
.processing-stats div { display: grid; border-right: 1px solid rgba(255,255,255,.08); padding-left: 18px; }
.processing-stats div:first-child { padding-left: 0; }
.processing-stats div:last-child { border-right: 0; }
.processing-stats span { font-size: 8px; color: rgba(255,255,255,.45); }
.processing-stats strong { font: 700 18px var(--font-display); }

.use-cases-section { background: var(--bg-soft); }
.filter-row { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 28px; }
.filter-chip { border: 1px solid var(--line); background: var(--surface); color: var(--text-soft); border-radius: 999px; padding: 9px 15px; font-size: 12px; font-weight: 700; cursor: pointer; }
.filter-chip.active { background: var(--text); color: var(--bg); border-color: var(--text); }
.use-case-grid { display: grid; grid-template-columns: repeat(3,1fr); grid-auto-rows: 410px; gap: 16px; }
.use-case-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 360px; transition: opacity .25s ease, transform .25s ease; }
.use-case-card.large-card { grid-column: span 2; }
.use-case-card.wide-card { grid-column: span 2; }
.use-case-card.is-hidden { display: none; }
.use-case-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.use-case-card:hover img { transform: scale(1.055); }
.case-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(4,6,11,.02) 20%, rgba(4,6,11,.88)); }
.case-content { position: absolute; inset: auto 28px 26px; color: #fff; }
.case-content span { font-size: 9px; letter-spacing: .15em; color: #c4b5fd; font-weight: 800; }
.case-content h3 { font: 750 26px/1.12 var(--font-display); letter-spacing: -.035em; margin: 8px 0 7px; max-width: 520px; }
.case-content p { margin: 0; color: rgba(255,255,255,.64); font-size: 12px; max-width: 490px; }
.case-content a { display: inline-flex; gap: 10px; align-items: center; margin-top: 16px; font-size: 12px; font-weight: 800; }
.case-content a b { transition: transform .2s ease; }
.case-content a:hover b { transform: translateX(4px); }

.workflow-grid { display: grid; grid-template-columns: .74fr 1.26fr; gap: 80px; align-items: start; }
.workflow-copy { position: sticky; top: 130px; }
.text-link { display: inline-flex; align-items: center; gap: 10px; margin-top: 26px; font-weight: 800; color: var(--text); font-size: 14px; }
.text-link span { color: var(--primary); }
.workflow-steps { display: grid; gap: 14px; }
.workflow-step { display: grid; grid-template-columns: 50px 1fr; gap: 0 16px; border: 1px solid var(--line); background: var(--surface); border-radius: 22px; padding: 22px; overflow: hidden; cursor: pointer; transition: border-color .25s ease, background .25s ease; }
.workflow-step.active { border-color: rgba(139,92,246,.45); background: linear-gradient(145deg, rgba(139,92,246,.11), var(--surface) 45%); }
.step-number { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: var(--surface-2); border: 1px solid var(--line); color: var(--text-faint); font-size: 10px; font-weight: 800; }
.workflow-step h3 { margin: 5px 0 5px; font: 750 20px var(--font-display); letter-spacing: -.025em; }
.workflow-step p { margin: 0; color: var(--text-soft); font-size: 13px; }
.step-visual { grid-column: 2; max-height: 0; opacity: 0; overflow: hidden; transform: translateY(10px); transition: max-height .45s ease, opacity .3s ease, transform .35s ease, margin .35s ease; }
.workflow-step.active .step-visual { max-height: 260px; opacity: 1; transform: none; margin-top: 20px; }
.create-card { height: 210px; border-radius: 16px; background: var(--surface-2); border: 1px solid var(--line); padding: 22px; display: flex; flex-direction: column; }
.create-card span { color: var(--text-faint); font-size: 10px; }
.create-card strong { font: 700 20px var(--font-display); }
.visual-input-row { display: flex; gap: 8px; margin: 20px 0 auto; }
.visual-input-row i { flex: 1; height: 42px; border: 1px solid var(--line); background: var(--surface-solid); border-radius: 9px; }
.create-card button { align-self: flex-end; border: 0; background: var(--primary); color: #fff; border-radius: 9px; padding: 9px 14px; font-size: 10px; font-weight: 800; }
.qr-visual { height: 210px; display: flex; align-items: center; justify-content: center; gap: 24px; border: 1px solid var(--line); border-radius: 16px; background: var(--surface-2); }
.qr-large { width: 112px; height: 112px; padding: 9px; display: grid; grid-template-columns: repeat(3,1fr); grid-template-rows: repeat(3,1fr); gap: 6px; background: #fff; border-radius: 10px; }
.qr-large span { border: 6px solid #10131a; position: relative; }
.qr-large span::after { content: ""; position: absolute; inset: 5px; background: #10131a; }
.qr-large i,.qr-large b { background: #10131a; }
.qr-visual > div:last-child { display: grid; }
.qr-visual strong { font: 700 18px var(--font-display); }
.qr-visual > div:last-child span { color: var(--text-faint); font-size: 12px; }
.ai-visual { height: 210px; position: relative; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 16px; background: radial-gradient(circle,rgba(139,92,246,.12),transparent),var(--surface-2); }
.face-grid { display: flex; gap: 14px; }
.face-grid span { width: 76px; height: 76px; border-radius: 17px; overflow: hidden; border: 2px solid rgba(139,92,246,.55); box-shadow: 0 0 0 4px rgba(139,92,246,.08); }
.face-grid img { width: 100%; height: 100%; object-fit: cover; }
.ai-visual small { color: var(--text-faint); }
.scan-line { position: absolute; width: 280px; height: 2px; background: linear-gradient(90deg,transparent,var(--accent),transparent); box-shadow: 0 0 14px var(--accent); animation: scan 2.8s ease-in-out infinite; }
.share-visual { height: 210px; display: flex; align-items: center; justify-content: center; gap: 42px; border: 1px solid var(--line); border-radius: 16px; background: var(--surface-2); }
.share-stack { position: relative; width: 160px; height: 120px; }
.share-stack span { position: absolute; width: 96px; height: 118px; border-radius: 14px; border: 1px solid rgba(255,255,255,.12); background-size: cover; background-position: center; box-shadow: var(--shadow-sm); }
.share-stack span:nth-child(1) { left: 0; transform: rotate(-10deg); background-image: url('https://images.unsplash.com/photo-1492684223066-81342ee5ff30?auto=format&fit=crop&w=500&q=80'); }
.share-stack span:nth-child(2) { left: 34px; transform: rotate(0); background-image: url('https://images.unsplash.com/photo-1524368535928-5b5e00ddc76b?auto=format&fit=crop&w=500&q=80'); z-index: 2; }
.share-stack span:nth-child(3) { left: 68px; transform: rotate(10deg); background-image: url('https://images.unsplash.com/photo-1506157786151-b8491531f063?auto=format&fit=crop&w=500&q=80'); }
.share-count { display: grid; }
.share-count strong { font: 800 30px var(--font-display); }
.share-count span { color: var(--text-faint); font-size: 11px; }

.ai-shell { min-height: 600px; border-radius: 36px; padding: 72px; color: #fff; background:
  radial-gradient(circle at 90% 0%, rgba(110,231,199,.25), transparent 30%),
  radial-gradient(circle at 10% 100%, rgba(139,92,246,.38), transparent 38%),
  #111425;
  display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 70px; overflow: hidden; position: relative; }
.ai-shell::after { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px); background-size: 38px 38px; mask-image: linear-gradient(90deg,transparent,#000); pointer-events: none; }
.ai-copy { position: relative; z-index: 2; }
.ai-copy h2 { font-size: clamp(40px,4.7vw,63px); }
.ai-copy p { color: rgba(255,255,255,.62); }
.ai-points { display: grid; gap: 10px; margin-top: 28px; color: rgba(255,255,255,.72); font-size: 13px; }
.ai-points span { display: flex; gap: 10px; align-items: center; }
.ai-points i { width: 20px; height: 20px; border-radius: 50%; display: grid; place-items: center; background: rgba(110,231,199,.12); color: var(--accent); font-style: normal; }
.ai-demo { display: grid; grid-template-columns: 1fr 90px 1.1fr; align-items: center; position: relative; z-index: 2; }
.selfie-capture, .match-results { display: flex; flex-direction: column; align-items: center; text-align: center; }
.capture-ring { width: 164px; height: 164px; padding: 7px; border-radius: 50%; background: conic-gradient(var(--accent),var(--primary),var(--accent)); position: relative; }
.capture-ring img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; border: 6px solid #15192a; }
.capture-ring span { position: absolute; inset: -12px; border-radius: 50%; border: 1px dashed rgba(255,255,255,.26); animation: rotate 12s linear infinite; }
.selfie-capture strong, .match-results > strong { margin-top: 16px; font: 700 14px var(--font-display); }
.selfie-capture small, .match-results > small { color: rgba(255,255,255,.45); font-size: 9px; max-width: 170px; }
.ai-connector { display: flex; align-items: center; }
.ai-connector span { flex: 1; height: 1px; background: linear-gradient(90deg,transparent,rgba(255,255,255,.22)); }
.ai-connector span:last-child { background: linear-gradient(90deg,rgba(255,255,255,.22),transparent); }
.ai-connector i { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: rgba(139,92,246,.18); border: 1px solid rgba(139,92,246,.5); font-style: normal; font-size: 10px; font-weight: 800; box-shadow: 0 0 40px rgba(139,92,246,.38); }
.match-results { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.match-result { aspect-ratio: .78; border-radius: 13px; overflow: hidden; position: relative; border: 1px solid rgba(255,255,255,.13); }
.match-result img { width: 100%; height: 100%; object-fit: cover; }
.match-result span { position: absolute; right: 6px; bottom: 6px; border-radius: 999px; background: rgba(15,18,27,.78); padding: 3px 6px; color: var(--accent); font-size: 7px; font-weight: 800; }
.match-results > strong, .match-results > small { grid-column: 1/-1; margin-inline: auto; }
.match-results > strong { margin-top: 8px; }

.billing-toggle { width: max-content; margin: 0 auto 34px; padding: 4px; border: 1px solid var(--line); background: var(--surface); border-radius: 999px; }
.billing-toggle button { border: 0; background: none; color: var(--text-faint); border-radius: 999px; padding: 9px 15px; font-size: 12px; cursor: pointer; }
.billing-toggle button.active { background: var(--surface-3); color: var(--text); }
.billing-toggle span { color: var(--accent); font-size: 9px; margin-left: 4px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; align-items: stretch; }
.price-card { border: 1px solid var(--line); background: var(--surface); border-radius: var(--radius-lg); padding: 32px; position: relative; }
.price-card.featured { border-color: rgba(139,92,246,.55); background: linear-gradient(180deg,rgba(139,92,246,.10),var(--surface) 34%); box-shadow: 0 30px 70px rgba(109,93,252,.12); transform: translateY(-10px); }
.popular-label { position: absolute; right: 18px; top: 18px; border: 1px solid rgba(139,92,246,.30); background: rgba(139,92,246,.12); color: #a78bfa; border-radius: 999px; padding: 5px 8px; font-size: 8px; letter-spacing: .08em; font-weight: 800; }
.price-label { color: var(--primary); font-size: 10px; letter-spacing: .14em; font-weight: 800; }
.price-card h3 { font: 700 24px var(--font-display); letter-spacing: -.03em; margin: 8px 0 18px; }
.price { display: flex; align-items: flex-start; min-height: 74px; }
.price > span { font: 700 19px var(--font-display); margin-top: 8px; }
.price strong { font: 800 50px/1 var(--font-display); letter-spacing: -.05em; }
.price small { color: var(--text-faint); align-self: flex-end; margin: 0 0 8px 7px; }
.price-card > p { color: var(--text-soft); font-size: 13px; min-height: 64px; }
.price-card .button { margin: 20px 0 24px; }
.price-card ul { list-style: none; margin: 0; padding: 22px 0 0; border-top: 1px solid var(--line); display: grid; gap: 11px; }
.price-card li { color: var(--text-soft); font-size: 12px; }
.price-card li::before { content: "✓"; color: var(--accent); margin-right: 9px; font-weight: 800; }
.custom-price { align-items: center; }
.custom-price strong { font-size: 38px; }

.testimonial-section { padding-top: 40px; }
.testimonial-shell { border-radius: 34px; border: 1px solid var(--line); background: var(--surface); padding: 60px; position: relative; }
.quote-mark { position: absolute; right: 40px; top: 10px; font: 800 110px Georgia,serif; color: rgba(139,92,246,.14); }
.testimonial-shell blockquote { margin: 0; max-width: 920px; font: 650 clamp(28px,4vw,48px)/1.22 var(--font-display); letter-spacing: -.04em; }
.quote-author { display: flex; align-items: center; gap: 12px; margin-top: 30px; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(135deg,var(--accent),var(--primary)); color: #11131a; font-weight: 800; }
.quote-author > div:last-child { display: grid; }
.quote-author strong { font-size: 13px; }
.quote-author span { color: var(--text-faint); font-size: 11px; }
.testimonial-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; margin-top: 46px; }
.testimonial-metrics > div { background: var(--surface-solid); padding: 24px; display: grid; }
.testimonial-metrics strong { font: 750 28px var(--font-display); }
.testimonial-metrics span { color: var(--text-faint); font-size: 11px; }

.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 86px; }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { list-style: none; display: flex; justify-content: space-between; gap: 30px; align-items: center; cursor: pointer; padding: 23px 0; font: 700 17px var(--font-display); }
summary::-webkit-details-marker { display: none; }
summary span { color: var(--text-faint); font-size: 24px; font-weight: 400; transition: transform .2s ease; }
details[open] summary span { transform: rotate(45deg); }
details p { margin: -5px 50px 22px 0; color: var(--text-soft); font-size: 14px; }

.final-cta { padding-top: 40px; }
.cta-shell { min-height: 520px; border-radius: 38px; background: linear-gradient(135deg,#6d5dfc,#8b5cf6 45%,#4f46e5); color: #fff; display: grid; place-items: center; overflow: hidden; position: relative; box-shadow: 0 35px 100px rgba(109,93,252,.25); }
.cta-shell::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.18) 1px,transparent 1px); background-size: 22px 22px; mask-image: radial-gradient(circle,#000,transparent 70%); opacity: .55; }
.cta-content { max-width: 760px; text-align: center; position: relative; z-index: 2; padding: 40px; }
.cta-content h2 { font-size: clamp(48px,6vw,78px); }
.cta-content p { color: rgba(255,255,255,.72); }
.cta-actions { display: flex; justify-content: center; gap: 12px; margin-top: 32px; }
.cta-orbit { position: absolute; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; }
.orbit-one { width: 480px; height: 480px; left: -220px; top: -180px; }
.orbit-two { width: 620px; height: 620px; right: -260px; bottom: -350px; box-shadow: 0 0 0 70px rgba(255,255,255,.025),0 0 0 140px rgba(255,255,255,.018); }

.site-footer { padding: 82px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr repeat(4,1fr); gap: 50px; }
.footer-brand p { color: var(--text-faint); margin: 10px 0 22px; }
.social-row { display: flex; gap: 8px; }
.social-row a { width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; color: var(--text-soft); font-size: 10px; font-weight: 800; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 10px; }
.footer-grid strong { font: 700 12px var(--font-display); margin-bottom: 6px; }
.footer-grid > div:not(.footer-brand) a { color: var(--text-faint); font-size: 12px; }
.footer-grid a:hover { color: var(--text); }
.footer-bottom { border-top: 1px solid var(--line); margin-top: 60px; padding-top: 22px; display: flex; justify-content: space-between; color: var(--text-faint); font-size: 10px; }

.demo-dialog { width: min(760px,calc(100% - 32px)); border: 1px solid var(--line-strong); border-radius: 28px; background: var(--surface-solid); color: var(--text); padding: 0; box-shadow: var(--shadow-lg); }
.demo-dialog::backdrop { background: rgba(3,5,10,.72); backdrop-filter: blur(8px); }
.dialog-close { position: absolute; right: 16px; top: 14px; width: 36px; height: 36px; border: 1px solid var(--line); background: var(--surface-2); border-radius: 50%; font-size: 22px; cursor: pointer; }
.demo-modal-content { padding: 48px; text-align: center; }
.demo-modal-content h2 { font: 800 42px/1.05 var(--font-display); letter-spacing: -.045em; margin: 15px 0 34px; }
.demo-flow { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: center; gap: 12px; }
.demo-flow-step { padding: 20px 10px; border: 1px solid var(--line); background: var(--surface); border-radius: 16px; display: grid; }
.demo-flow-step span { width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; background: rgba(139,92,246,.14); color: var(--primary); font-weight: 800; font-size: 10px; margin: 0 auto 10px; }
.demo-flow-step strong { font: 700 14px var(--font-display); }
.demo-flow-step small { color: var(--text-faint); font-size: 9px; }
.demo-arrow { color: var(--text-faint); }
.demo-preview { margin-top: 24px; border-radius: 18px; background: linear-gradient(135deg,rgba(139,92,246,.16),rgba(110,231,199,.08)); border: 1px solid var(--line); padding: 28px; display: grid; }
.demo-pulse { width: 70px; height: 70px; border-radius: 50%; background: radial-gradient(circle,var(--accent) 0 8%,rgba(110,231,199,.20) 9% 32%,transparent 33%),radial-gradient(circle,transparent 0 52%,rgba(139,92,246,.26) 53% 54%,transparent 55%); margin: 0 auto 14px; animation: pulse 2s ease-in-out infinite; }
.demo-preview strong { font: 700 18px var(--font-display); }
.demo-preview span { color: var(--text-faint); font-size: 11px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }

@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes shimmer { from { transform: translateX(-100%); } to { transform: translateX(150%); } }
@keyframes scan { 0%,100% { transform: translateY(-62px); opacity: .2; } 50% { transform: translateY(62px); opacity: 1; } }
@keyframes rotate { to { transform: rotate(360deg); } }
@keyframes pulse { 50% { transform: scale(1.08); filter: brightness(1.2); } }

@media (max-width: 1120px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 780px; text-align: center; margin-inline: auto; }
  .hero-lead { margin-inline: auto; }
  .hero-actions,.trust-row { justify-content: center; }
  .hero-visual { width: min(760px,100%); margin-inline: auto; }
  .product-window { right: 0; left: 50%; transform: translateX(-50%); }
  .ai-match-card { left: 0; }
  .upload-card { right: 0; }
  .experience-panel { grid-template-columns: 1fr; }
  .panel-copy { max-width: 690px; }
  .workflow-grid { grid-template-columns: 1fr; gap: 42px; }
  .workflow-copy { position: static; max-width: 690px; }
  .ai-shell { grid-template-columns: 1fr; }
  .ai-copy { max-width: 760px; }
  .faq-grid { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 860px) {
  :root { --header-h: 70px; }
  .section { padding: 84px 0; }
  .nav-shell { grid-template-columns: auto 1fr auto; }
  .mobile-menu-button { display: inline-grid; justify-self: end; order: 2; }
  .main-nav { position: fixed; top: var(--header-h); left: 20px; right: 20px; display: none; flex-direction: column; align-items: stretch; gap: 0; background: var(--surface-solid); border: 1px solid var(--line); border-radius: 18px; padding: 10px; box-shadow: var(--shadow-lg); }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 13px 12px; border-radius: 10px; }
  .main-nav a:hover { background: var(--surface-2); }
  .nav-actions { margin-left: auto; order: 3; }
  .desktop-only,.nav-actions .icon-button { display: none; }
  .hero { padding-top: calc(var(--header-h) + 72px); }
  .hero-visual { min-height: 590px; }
  .product-window { width: 620px; }
  .proof-grid { grid-template-columns: repeat(2,1fr); }
  .proof-grid > div:nth-child(2) { border-right: 0; }
  .proof-grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .experience-tabs { overflow-x: auto; grid-template-columns: repeat(3,minmax(190px,1fr)); }
  .experience-panel { padding: 38px 28px; }
  .use-case-grid { grid-template-columns: repeat(2,1fr); grid-auto-rows: 390px; }
  .use-case-card.large-card,.use-case-card.wide-card { grid-column: span 2; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 620px; margin-inline: auto; }
  .price-card.featured { transform: none; }
  .footer-grid { grid-template-columns: 2fr repeat(2,1fr); }
  .footer-brand { grid-row: span 2; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px),var(--container)); }
  .site-header .brand > span:last-child { display: none; }
  .nav-actions .button { padding-inline: 14px; font-size: 12px; }
  .hero h1 { font-size: clamp(46px,15vw,64px); }
  .hero-lead { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .trust-row { flex-direction: column; gap: 7px; align-items: center; }
  .hero-visual { min-height: 480px; margin-top: 20px; }
  .product-window { width: 520px; transform: translateX(-50%) scale(.78); transform-origin: top center; }
  .ai-match-card { left: -8px; bottom: 46px; transform: scale(.82); transform-origin: left center; }
  .upload-card { right: -8px; bottom: -8px; transform: scale(.78); transform-origin: right center; }
  .category-marquee { margin-top: 32px; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-grid > div { border-right: 0; border-bottom: 1px solid var(--line); }
  .proof-grid > div:last-child { border-bottom: 0; }
  .section-heading h2,.workflow-copy h2,.ai-copy h2 { font-size: 40px; }
  .experience-panel { padding: 30px 18px; }
  .phone-stage,.dashboard-stage,.processing-stage { min-height: 420px; }
  .mini-dashboard { width: 610px; transform: scale(.64); }
  .processing-window { width: 560px; transform: scale(.62); }
  .use-case-grid { grid-template-columns: 1fr; grid-auto-rows: 390px; }
  .use-case-card.large-card,.use-case-card.wide-card { grid-column: auto; }
  .workflow-step { grid-template-columns: 42px 1fr; padding: 18px; }
  .step-visual { grid-column: 1/-1; }
  .qr-visual,.share-visual { gap: 16px; }
  .ai-shell { padding: 46px 22px; border-radius: 28px; }
  .ai-demo { grid-template-columns: 1fr; gap: 24px; }
  .ai-connector { transform: rotate(90deg); width: 100px; justify-self: center; }
  .match-results { width: 100%; }
  .testimonial-shell { padding: 34px 24px; }
  .testimonial-metrics { grid-template-columns: 1fr; }
  .cta-shell { min-height: 480px; }
  .cta-content h2 { font-size: 48px; }
  .cta-actions { flex-direction: column; }
  .footer-grid { grid-template-columns: repeat(2,1fr); gap: 34px; }
  .footer-brand { grid-column: 1/-1; grid-row: auto; }
  .footer-bottom { flex-direction: column; gap: 6px; }
  .demo-modal-content { padding: 42px 20px 26px; }
  .demo-modal-content h2 { font-size: 34px; }
  .demo-flow { grid-template-columns: 1fr; }
  .demo-arrow { transform: rotate(90deg); }
}

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