:root {
  --navy: #07111f;
  --navy-2: #0d1c31;
  --ink: #132238;
  --muted: #5e6c7e;
  --blue: #1769f6;
  --blue-2: #0d43cc;
  --cyan: #1aa8ff;
  --gold: #ffb20f;
  --paper: #ffffff;
  --cloud: #f4f7fb;
  --line: #dce4ef;
  --success: #13a066;
  --radius: 22px;
  --shadow: 0 24px 70px rgba(17, 39, 74, .14);
  --shell: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Inter, "Segoe UI", Arial, sans-serif; font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; }
a { color: inherit; }
button, input, summary { font: inherit; }
.shell { width: var(--shell); margin-inline: auto; }
.section { padding: 110px 0; }
.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; top: 10px; left: 10px; z-index: 999; padding: 10px 14px; background: #fff; color: var(--navy); border-radius: 8px; transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }

.site-header { position: fixed; z-index: 100; inset: 0 0 auto; border-bottom: 1px solid transparent; transition: background .25s ease, border-color .25s ease, box-shadow .25s ease; }
.site-header.scrolled, .legal-header { background: rgba(255,255,255,.94); border-color: var(--line); box-shadow: 0 8px 30px rgba(15, 35, 64, .06); backdrop-filter: blur(16px); }
.nav-wrap { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: #fff; text-decoration: none; font-size: 17px; font-weight: 650; letter-spacing: -.02em; }
.brand img { width: 42px; height: 42px; object-fit: contain; }
.brand strong { color: #55baff; font-size: 12px; letter-spacing: .12em; }
.scrolled .brand, .legal-header .brand { color: var(--ink); }
.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav a { color: rgba(255,255,255,.75); text-decoration: none; font-size: 14px; font-weight: 650; transition: color .2s ease; }
.site-nav a:hover, .site-nav a:focus-visible, .site-nav a.active { color: #fff; }
.scrolled .site-nav a, .legal-header .site-nav a { color: #526174; }
.scrolled .site-nav a:hover, .scrolled .site-nav a:focus-visible, .scrolled .site-nav a.active, .legal-header .site-nav a:hover, .legal-header .site-nav a:focus-visible, .legal-header .site-nav a.active { color: var(--blue); }
.site-nav .nav-cta { color: #fff; background: var(--blue); padding: 11px 17px; border-radius: 10px; box-shadow: 0 10px 25px rgba(23, 105, 246, .24); }
.scrolled .site-nav .nav-cta, .legal-header .site-nav .nav-cta, .site-nav .nav-cta:hover { color: #fff; }
.menu-button { display: none; border: 0; background: transparent; padding: 10px; color: inherit; }
.site-header:not(.scrolled):not(.legal-header) .menu-button { color: #fff; }

.hero { position: relative; min-height: 850px; display: grid; align-items: center; overflow: hidden; color: #fff; background: radial-gradient(circle at 77% 42%, #173c73 0, #0a1e37 30%, var(--navy) 67%); }
.hero::after { content: ""; position: absolute; inset: auto 0 0; height: 170px; background: linear-gradient(transparent, rgba(0,0,0,.17)); pointer-events: none; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(4px); opacity: .35; pointer-events: none; }
.hero-glow-one { width: 520px; height: 520px; top: -290px; left: -170px; background: #0a74ff; }
.hero-glow-two { width: 420px; height: 420px; right: -240px; bottom: -120px; background: #00b7ff; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .9fr 1.18fr; gap: 64px; align-items: center; padding-top: 80px; }
.eyebrow { display: flex; align-items: center; gap: 10px; color: var(--blue); font-size: 11px; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow span { width: 28px; height: 2px; background: currentColor; }
.hero .eyebrow, .eyebrow.light { color: #72c8ff; }
.hero h1 { margin: 20px 0 24px; font-size: clamp(60px, 6.8vw, 100px); line-height: .92; letter-spacing: -.067em; font-weight: 770; }
.hero h1 em { color: transparent; font-style: normal; -webkit-text-stroke: 1.5px #6bc4ff; text-shadow: 0 0 32px rgba(35, 158, 255, .16); }
.hero-intro { max-width: 590px; margin: 0; color: #b9c8da; font-size: 19px; line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 14px; min-height: 50px; padding: 12px 20px; border: 1px solid transparent; border-radius: 11px; font-size: 14px; font-weight: 760; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button:focus-visible, .site-nav a:focus-visible, summary:focus-visible, .menu-button:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.button-primary { background: linear-gradient(135deg, #2588ff, var(--blue)); color: #fff; box-shadow: 0 14px 32px rgba(21, 105, 246, .32); }
.button-primary:hover { box-shadow: 0 18px 40px rgba(21, 105, 246, .42); }
.button-quiet { border-color: rgba(255,255,255,.22); color: #fff; background: rgba(255,255,255,.06); }
.button-quiet:hover { background: rgba(255,255,255,.11); }
.hero-proof { display: flex; flex-wrap: wrap; gap: 19px; margin-top: 29px; color: #9caec2; font-size: 12px; }
.hero-proof span { display: flex; align-items: center; gap: 6px; }
.hero-proof i { display: grid; place-items: center; width: 17px; height: 17px; border-radius: 50%; color: #65d6a4; background: rgba(19,160,102,.16); font-style: normal; font-size: 10px; }

.hero-product { position: relative; min-width: 0; perspective: 1500px; }
.product-orbit { position: absolute; width: 520px; height: 520px; border: 1px solid rgba(65, 169, 255, .14); border-radius: 50%; right: -90px; top: -120px; box-shadow: 0 0 0 70px rgba(53,151,255,.025), 0 0 0 140px rgba(53,151,255,.02); }
.window-card { position: relative; overflow: hidden; border: 1px solid #456586; border-radius: 16px; background: #eef2f7; box-shadow: 0 45px 90px rgba(0, 0, 0, .42); transform: rotateY(-4deg) rotateX(1deg); }
.window-bar { height: 46px; padding: 0 13px; display: flex; align-items: center; justify-content: space-between; color: #24344b; background: #fff; border-bottom: 1px solid #d7dfe9; font-size: 11px; }
.window-title { display: flex; align-items: center; gap: 7px; font-weight: 650; }
.window-title img { object-fit: contain; }
.window-controls { display: flex; gap: 15px; }
.window-controls span { width: 9px; height: 9px; border: 1px solid #8090a3; border-radius: 50%; }
.product-shot { width: 100%; display: block; aspect-ratio: 1280/767; object-fit: cover; object-position: top; }
.floating-card { position: absolute; z-index: 4; display: flex; align-items: center; gap: 11px; min-width: 185px; padding: 12px 15px; color: var(--ink); background: rgba(255,255,255,.96); border: 1px solid #dce5ef; border-radius: 12px; box-shadow: 0 17px 45px rgba(0,0,0,.25); }
.floating-card strong, .floating-card small { display: block; line-height: 1.35; }
.floating-card strong { font-size: 12px; }
.floating-card small { color: #68788a; font-size: 9px; margin-top: 2px; }
.floating-card-top { right: -25px; top: 82px; }
.floating-card-bottom { left: -35px; bottom: 45px; }
.float-icon { display: grid; place-items: center; width: 35px; height: 35px; color: #fff; background: var(--blue); border-radius: 9px; font-size: 11px; font-weight: 850; }
.status-dot { width: 14px; height: 14px; border: 4px solid #d5f4e5; background: var(--success); border-radius: 50%; }

.trust-strip { position: relative; z-index: 4; margin-top: -1px; color: #d7e2ee; background: #091728; border-top: 1px solid #1c3552; }
.trust-grid { min-height: 118px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; }
.trust-grid > div { display: flex; flex-direction: column; padding: 4px 30px; border-right: 1px solid #253850; }
.trust-grid > div:first-child { padding-left: 0; }
.trust-grid > div:last-child { border-right: 0; }
.trust-number { color: #fff; font-size: 21px; font-weight: 780; letter-spacing: -.03em; }
.trust-label { margin-top: 2px; color: #8297af; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }

.section-heading { max-width: 720px; margin-bottom: 52px; }
.section-heading h2 { margin: 13px 0 17px; color: var(--ink); font-size: clamp(38px, 4.5vw, 63px); line-height: 1.03; letter-spacing: -.055em; }
.section-heading p { margin: 0; max-width: 650px; color: var(--muted); font-size: 18px; }
.heading-split { max-width: none; display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 50px; }
.heading-split p { padding-bottom: 9px; }
.process-section { background: #fff; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: process; }
.process-card { position: relative; overflow: hidden; min-height: 440px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--cloud); transition: transform .25s ease, box-shadow .25s ease; }
.process-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.process-number { color: var(--blue); font-size: 12px; font-weight: 850; letter-spacing: .1em; }
.process-card h3 { margin: 27px 0 9px; font-size: 24px; letter-spacing: -.03em; }
.process-card p { margin: 0; color: var(--muted); font-size: 14px; }
.process-visual { position: relative; height: 185px; margin: 24px 0 0; overflow: hidden; border-radius: 14px; background: var(--navy-2); }
.capture-frame { position: absolute; inset: 29px 38px; border: 1px solid #3d5c7c; border-radius: 9px; background: linear-gradient(#152b46 33%, #e8eef6 33%); }
.capture-frame::after { content: ""; position: absolute; left: 23px; right: 55px; top: 75px; height: 9px; border-radius: 8px; background: #bcc8d6; box-shadow: 0 26px 0 #d4dce5; }
.capture-pointer { position: absolute; width: 17px; height: 25px; left: 54%; top: 54%; background: #fff; clip-path: polygon(0 0, 100% 68%, 60% 72%, 44% 100%, 31% 94%, 46% 68%, 0 74%); filter: drop-shadow(0 2px 2px #0008); }
.capture-pulse { position: absolute; width: 42px; height: 42px; left: calc(54% - 15px); top: calc(54% - 14px); border: 2px solid #2c91ff; border-radius: 50%; box-shadow: 0 0 0 9px rgba(44,145,255,.12); }
.edit-visual { padding: 35px 40px; }
.edit-visual span { display: block; height: 14px; margin: 0 0 19px; background: #2c4564; border-radius: 7px; }
.edit-visual span:nth-child(2) { width: 78%; background: #37638b; }
.edit-visual span:nth-child(3) { width: 54%; }
.edit-visual i { position: absolute; right: 30px; bottom: 25px; width: 55px; height: 55px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 9px rgba(23,105,246,.17); }
.edit-visual i::before { content: ""; position: absolute; width: 26px; height: 5px; background: #fff; left: 14px; top: 25px; border-radius: 5px; transform: rotate(-38deg); }
.publish-visual { display: flex; justify-content: center; align-items: center; gap: 14px; }
.publish-visual span { display: grid; place-items: end center; width: 74px; height: 92px; padding-bottom: 14px; color: #fff; background: #17314f; border: 1px solid #365678; border-radius: 9px; font-size: 11px; font-weight: 800; }
.publish-visual span:nth-child(2) { transform: translateY(13px); background: #133c6d; }
.publish-visual i { position: absolute; display: grid; place-items: center; width: 42px; height: 42px; top: 31px; left: calc(50% - 21px); color: #fff; background: var(--success); border: 5px solid var(--navy-2); border-radius: 50%; font-style: normal; }

.features-section { background: var(--cloud); }
.feature-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px; }
.feature { grid-column: span 4; min-height: 280px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 7px 30px rgba(21,42,72,.04); }
.feature-large { grid-column: span 8; display: grid; grid-template-columns: 1fr 260px; gap: 30px; align-items: center; color: #fff; background: var(--navy-2); border-color: #274361; }
.feature-wide { grid-column: span 12; display: flex; align-items: end; justify-content: space-between; gap: 30px; color: #fff; background: linear-gradient(125deg, var(--blue-2), var(--blue)); border: 0; }
.feature-wide a { white-space: nowrap; color: #fff; font-size: 13px; font-weight: 750; text-decoration: none; }
.feature h3 { margin: 20px 0 10px; font-size: 23px; line-height: 1.25; letter-spacing: -.03em; }
.feature p { margin: 0; color: var(--muted); font-size: 14px; }
.feature-large p, .feature-wide p { color: #bfcee0; }
.feature-kicker { color: #74c7ff; font-size: 10px; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
.feature-symbol { display: grid; place-items: center; width: 48px; height: 48px; color: var(--blue); background: #eaf2ff; border-radius: 13px; font-weight: 850; }
.instruction-demo { padding: 22px; border: 1px solid #385271; border-radius: 15px; background: #101f34; box-shadow: 0 20px 40px rgba(0,0,0,.16); }
.instruction-demo span, .instruction-demo strong, .instruction-demo small { display: block; }
.demo-label { color: #6697cc; font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.instruction-demo strong { margin: 16px 0 5px; font-size: 21px; }
.instruction-demo small { color: #8499b1; }

.outputs-section { color: #fff; background: var(--navy); overflow: hidden; }
.output-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 75px; align-items: center; }
.output-copy h2 { margin: 15px 0 20px; font-size: clamp(42px, 5vw, 67px); line-height: 1; letter-spacing: -.055em; }
.output-copy > p { color: #9fb0c4; font-size: 17px; }
.check-list { list-style: none; padding: 0; margin: 32px 0 0; }
.check-list li { display: flex; gap: 14px; padding: 17px 0; border-top: 1px solid #20344b; }
.check-list li > span { display: grid; place-items: center; flex: 0 0 auto; width: 28px; height: 28px; color: #63d6a2; background: #123b36; border-radius: 50%; font-size: 12px; }
.check-list strong, .check-list small { display: block; }
.check-list strong { font-size: 14px; }
.check-list small { margin-top: 3px; color: #8498af; font-size: 11px; }
.training-frame { overflow: hidden; padding: 9px; border: 1px solid #365575; border-radius: 19px; background: #101f31; box-shadow: 0 38px 90px rgba(0,0,0,.42); transform: rotate(1.2deg); }
.training-frame img { display: block; width: 100%; border-radius: 12px; object-fit: cover; }
.frame-caption { display: flex; justify-content: space-between; align-items: center; padding: 11px 8px 4px; color: #7890a9; font-size: 9px; }
.live-pill { display: flex; align-items: center; gap: 6px; color: #afc2d7; }
.live-pill i { width: 7px; height: 7px; background: #38d98b; border-radius: 50%; box-shadow: 0 0 0 4px rgba(56,217,139,.12); }

.availability-section { padding: 90px 0; background: #fff; }
.availability-card { min-height: 465px; padding: 65px; display: grid; grid-template-columns: 1.2fr .8fr; gap: 65px; align-items: center; color: #fff; background: linear-gradient(130deg, #0f3164 0, #1156ca 55%, #1686ef 100%); border-radius: 30px; box-shadow: 0 35px 75px rgba(24,86,184,.23); }
.availability-copy h2 { margin: 15px 0 18px; max-width: 650px; font-size: clamp(39px, 5vw, 66px); line-height: 1; letter-spacing: -.055em; }
.availability-copy p { max-width: 600px; color: #d1e3ff; font-size: 17px; }
.price-card { padding: 28px; color: var(--ink); background: #fff; border: 1px solid rgba(255,255,255,.45); border-radius: 20px; box-shadow: 0 30px 60px rgba(8,38,94,.25); }
.price-label { color: var(--blue); font-size: 10px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.price { display: flex; align-items: end; gap: 10px; margin: 9px 0 18px; }
.price strong { font-size: 54px; line-height: 1; letter-spacing: -.06em; }
.price span { color: var(--muted); font-size: 12px; padding-bottom: 5px; }
.price-card ul { list-style: none; padding: 16px 0; margin: 0 0 18px; border-block: 1px solid var(--line); }
.price-card li { position: relative; padding: 5px 0 5px 23px; color: #3f4f62; font-size: 13px; }
.price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--success); font-weight: 800; }
.button-light { width: 100%; color: #fff; background: var(--navy); cursor: default; }
.price-card small { display: block; margin-top: 10px; color: #7a8797; text-align: center; font-size: 9px; }

.faq-section { background: var(--cloud); }
.faq-grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: 90px; }
.faq-list details { border-top: 1px solid #ced8e5; }
.faq-list details:last-child { border-bottom: 1px solid #ced8e5; }
.faq-list summary { position: relative; padding: 23px 42px 23px 0; cursor: pointer; font-weight: 700; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 4px; top: 19px; color: var(--blue); font-size: 24px; font-weight: 400; transition: transform .2s ease; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { margin: -5px 45px 22px 0; color: var(--muted); font-size: 14px; }

.site-footer { padding: 75px 0 23px; color: #a0b0c2; background: #050c16; }
.footer-top { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; padding-bottom: 60px; }
.brand-light { color: #fff; }
.footer-brand p { max-width: 350px; margin: 18px 0 0; color: #71859b; font-size: 14px; }
.footer-links { display: flex; justify-content: flex-end; gap: 100px; }
.footer-links div { display: flex; flex-direction: column; gap: 8px; min-width: 115px; }
.footer-links strong { color: #fff; margin-bottom: 7px; font-size: 12px; }
.footer-links a { color: #8295aa; text-decoration: none; font-size: 13px; }
.footer-links a:hover { color: #fff; }
.footer-bottom { padding-top: 20px; display: flex; justify-content: space-between; gap: 25px; border-top: 1px solid #182638; color: #62768c; font-size: 10px; }
.footer-bottom a { color: #9fb0c4; text-decoration: none; }
.compact-footer { padding-top: 25px; }

/* Privacy policy */
.legal-page { background: var(--cloud); }
.legal-hero { padding: 175px 0 85px; color: #fff; background: radial-gradient(circle at 80% 0, #144684, var(--navy) 58%); }
.legal-hero-inner { max-width: 900px; }
.legal-hero h1 { margin: 17px 0 17px; font-size: clamp(54px, 7vw, 88px); line-height: .98; letter-spacing: -.06em; }
.legal-hero p { max-width: 720px; margin: 0; color: #b6c7da; font-size: 20px; }
.legal-meta { display: flex; gap: 22px; margin-top: 28px; color: #7f97b1; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.legal-content { padding-top: 75px; }
.legal-layout { display: grid; grid-template-columns: 230px minmax(0, 760px); gap: 80px; justify-content: center; align-items: start; }
.legal-toc { position: sticky; top: 115px; display: flex; flex-direction: column; padding: 21px; border: 1px solid var(--line); border-radius: 14px; background: #fff; box-shadow: 0 8px 30px rgba(20,42,72,.04); }
.legal-toc strong { margin-bottom: 10px; font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }
.legal-toc a { padding: 6px 0; color: #607084; text-decoration: none; font-size: 12px; }
.legal-toc a:hover { color: var(--blue); }
.legal-article { min-width: 0; }
.privacy-summary { display: flex; gap: 17px; padding: 24px; margin-bottom: 34px; border: 1px solid #b9d6ff; border-radius: 16px; background: #eaf3ff; }
.summary-icon { display: grid; place-items: center; flex: 0 0 auto; width: 38px; height: 38px; color: #fff; background: var(--blue); border-radius: 50%; font-weight: 800; }
.privacy-summary strong { font-size: 17px; }
.privacy-summary p { margin: 4px 0 0; color: #415670; font-size: 13px; }
.legal-article > section { padding: 45px 44px; margin-bottom: 18px; border: 1px solid var(--line); border-radius: 17px; background: #fff; scroll-margin-top: 110px; }
.legal-number { color: var(--blue); font-size: 10px; font-weight: 850; letter-spacing: .15em; }
.legal-article h2 { margin: 6px 0 18px; font-size: 30px; line-height: 1.2; letter-spacing: -.035em; }
.legal-article h3 { margin: 26px 0 7px; font-size: 18px; }
.legal-article p, .legal-article li { color: #526175; font-size: 14px; }
.legal-article ul { padding-left: 22px; }
.legal-article li { margin: 6px 0; }
.legal-article a:not(.button) { color: var(--blue); text-underline-offset: 3px; }
.legal-article code { padding: 2px 5px; border: 1px solid #d8e2ee; border-radius: 5px; background: var(--cloud); }
.contact-section { border-top: 5px solid var(--blue) !important; }
.contact-section .button { margin-top: 11px; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1020px) {
  .hero { min-height: 1020px; }
  .hero-grid { grid-template-columns: 1fr; padding: 150px 0 100px; }
  .hero-copy { max-width: 720px; }
  .hero-product { width: min(780px, 92%); margin-inline: auto; }
  .heading-split, .output-grid, .availability-card { grid-template-columns: 1fr; }
  .feature-large { grid-column: span 12; }
  .feature { grid-column: span 6; }
  .feature-wide { grid-column: span 12; }
  .output-grid { gap: 55px; }
  .availability-card { gap: 35px; }
  .price-card { max-width: 470px; }
  .legal-layout { grid-template-columns: 190px minmax(0, 1fr); gap: 38px; }
}

@media (max-width: 780px) {
  :root { --shell: min(100% - 28px, 620px); }
  .section { padding: 78px 0; }
  .site-header { background: rgba(7,17,31,.96); border-bottom-color: #20334a; }
  .legal-header, .site-header.scrolled { background: rgba(255,255,255,.97); border-bottom-color: var(--line); }
  .nav-wrap { min-height: 70px; }
  .menu-button { display: block; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.22); border-radius: 9px; }
  .scrolled .menu-button, .legal-header .menu-button { border-color: var(--line); }
  .menu-lines, .menu-lines::before, .menu-lines::after { display: block; width: 19px; height: 2px; margin: auto; background: currentColor; content: ""; transition: transform .2s ease; }
  .menu-lines::before { transform: translateY(-6px); }
  .menu-lines::after { transform: translateY(4px); }
  .menu-button[aria-expanded="true"] .menu-lines { background: transparent; }
  .menu-button[aria-expanded="true"] .menu-lines::before { transform: translateY(0) rotate(45deg); }
  .menu-button[aria-expanded="true"] .menu-lines::after { transform: translateY(-2px) rotate(-45deg); }
  .site-nav { position: absolute; top: 69px; left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; gap: 2px; padding: 16px 20px 22px; background: #fff; border-bottom: 1px solid var(--line); box-shadow: 0 18px 35px rgba(9,26,49,.14); }
  .site-nav.open { display: flex; }
  .site-nav a, .scrolled .site-nav a, .legal-header .site-nav a { color: #44556a; padding: 10px; }
  .site-nav .nav-cta { margin-top: 5px; text-align: center; }
  .hero { min-height: auto; }
  .hero-grid { padding: 130px 0 85px; gap: 55px; }
  .hero h1 { font-size: clamp(55px, 16vw, 78px); }
  .hero-intro { font-size: 17px; }
  .floating-card-top { right: -10px; top: 55px; }
  .floating-card-bottom { left: -10px; bottom: 20px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); padding: 24px 0; }
  .trust-grid > div { padding: 14px 18px; border: 0; }
  .trust-grid > div:first-child { padding-left: 18px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-card { min-height: auto; }
  .heading-split { gap: 12px; }
  .feature, .feature-large, .feature-wide { grid-column: span 12; }
  .feature-large { grid-template-columns: 1fr; }
  .feature-wide { align-items: flex-start; flex-direction: column; }
  .faq-grid { grid-template-columns: 1fr; gap: 10px; }
  .availability-card { padding: 38px 25px; border-radius: 23px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
  .legal-hero { padding: 140px 0 65px; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-toc { position: static; display: grid; grid-template-columns: 1fr 1fr; }
  .legal-toc strong { grid-column: 1 / -1; }
}

@media (max-width: 520px) {
  .hero-actions, .hero-actions .button { width: 100%; }
  .hero-proof { display: grid; grid-template-columns: 1fr 1fr; }
  .floating-card { display: none; }
  .window-card { transform: none; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid > div { border-bottom: 1px solid #20344b; }
  .section-heading h2 { font-size: 39px; }
  .feature { padding: 24px; }
  .frame-caption, .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-links { gap: 45px; }
  .legal-meta { flex-direction: column; gap: 4px; }
  .legal-toc { grid-template-columns: 1fr; }
  .legal-article > section { padding: 31px 24px; }
  .privacy-summary { 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; }
  .reveal { opacity: 1; transform: none; }
}
