:root {
  --ink: #07101f;
  --ink-soft: #314058;
  --navy: #07101f;
  --navy-2: #0d1a2f;
  --blue: #3ca8ff;
  --cyan: #6ce4d2;
  --lime: #d5f06a;
  --paper: #f3f5f7;
  --paper-2: #e9edf2;
  --line: #cbd3df;
  --muted: #7e8ba0;
  --white: #ffffff;
  --sans: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "DM Mono", "SFMono-Regular", Consolas, monospace;
  --radius: 18px;
  --shadow: 0 22px 60px rgba(8, 22, 44, .18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--sans); color: var(--ink); background: var(--navy); -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { display: block; max-width: 100%; }
.container { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.section-pad { padding: 112px 0; }
.section-dark { color: var(--white); background: var(--navy); }
.section-light { color: var(--ink); background: var(--paper); }
.site-shell { overflow-x: hidden; }

.site-header { position: sticky; top: 0; z-index: 20; color: var(--white); background: rgba(7, 16, 31, .86); border-bottom: 1px solid rgba(255,255,255,.09); backdrop-filter: blur(16px); }
.header-inner { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-size: 18px; font-weight: 700; letter-spacing: .16em; }
.brand-mark { width: 34px; height: 34px; display: inline-grid; place-items: center; overflow: hidden; border-radius: 10px; background: #fff; }
.brand-mark img { width: 100%; height: 100%; object-fit: cover; }
.brand-dot { color: var(--lime); }
.desktop-nav { display: flex; align-items: center; gap: 28px; margin-left: auto; margin-right: 10px; color: #aab6c9; font-size: 13px; }
.desktop-nav a, .footer-links a, .text-link { transition: color .2s ease; }
.desktop-nav a:hover, .desktop-nav a.is-active, .footer-links a:hover, .text-link:hover { color: var(--white); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.text-link { display: inline-flex; align-items: center; gap: 6px; color: #c6d0df; font-size: 12px; }
.text-link svg { width: 14px; height: 14px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 50px; padding: 0 19px; border: 1px solid transparent; border-radius: 999px; font-size: 13px; font-weight: 700; letter-spacing: .01em; transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button svg { width: 16px; height: 16px; }
.button-small { min-height: 40px; padding: 0 15px; font-size: 12px; }
.button-primary { color: var(--ink); background: var(--lime); box-shadow: 0 8px 20px rgba(213,240,106,.18); }
.button-primary:hover { background: #e3fa89; }
.button-outline { color: var(--white); border-color: rgba(255,255,255,.28); }
.button-outline:hover { background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.5); }
.button-ghost { color: #b8c5d7; border-color: #c8d3e0; }
.button-ghost:hover { color: var(--ink); background: var(--white); }
.button-light { color: var(--ink); background: var(--white); }
.button-outline-light { color: var(--white); border-color: rgba(255,255,255,.42); }
.button-outline-light:hover { color: var(--ink); background: var(--white); }
.icon-button { width: 40px; height: 40px; display: inline-grid; place-items: center; padding: 0; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; color: var(--white); background: transparent; cursor: pointer; }
.icon-button svg { width: 19px; height: 19px; }
.menu-toggle { display: none; }
.mobile-menu { border-top: 1px solid rgba(255,255,255,.1); }
.mobile-menu-inner { display: grid; gap: 4px; padding: 14px 0 18px; }
.mobile-menu a { padding: 11px 4px; color: #c6d0df; font-size: 14px; }

.hero { position: relative; color: var(--white); background-color: var(--navy); background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px); background-size: 46px 46px; }
.hero::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(108,228,210,.8), transparent); }
.hero-grid { display: grid; grid-template-columns: minmax(0, .94fr) minmax(420px, 1.06fr); gap: 70px; align-items: center; }
.hero-copy { max-width: 610px; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; margin: 0 0 22px; color: var(--cyan); font-family: var(--mono); font-size: 10px; font-weight: 500; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow-dark { color: #158b8a; }
.eyebrow-dot { width: 7px; height: 7px; display: inline-block; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 4px rgba(108,228,210,.12); }
.hero h1, .privacy-hero h1 { max-width: 670px; margin: 0; font-size: clamp(50px, 7vw, 88px); line-height: .98; letter-spacing: -.055em; font-weight: 700; }
.hero-lede { max-width: 560px; margin: 26px 0 30px; color: #b7c3d4; font-size: 18px; line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-note { display: flex; align-items: center; gap: 8px; margin-top: 26px; color: #8f9db1; font-size: 12px; }
.hero-note svg { width: 15px; height: 15px; color: var(--cyan); }
.hero-visual { position: relative; min-height: 670px; padding-top: 32px; }
.visual-kicker { position: absolute; top: 0; right: 0; display: inline-flex; align-items: center; gap: 8px; color: var(--cyan); font-family: var(--mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.status-pulse { width: 7px; height: 7px; display: inline-block; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 5px rgba(108,228,210,.12); }
.device-stage { position: relative; min-height: 615px; display: flex; justify-content: center; align-items: flex-start; }
.device-glow { display: none; }
.phone-frame { position: relative; width: 300px; margin-top: 24px; padding: 10px; border: 1px solid rgba(255,255,255,.38); border-radius: 42px; background: #0b172a; box-shadow: 0 30px 85px rgba(0,0,0,.42); transform: rotate(4deg); }
.phone-frame::after { content: ""; position: absolute; inset: 7px; pointer-events: none; border: 1px solid rgba(255,255,255,.12); border-radius: 36px; }
.phone-notch { position: absolute; top: 16px; left: 50%; z-index: 1; width: 100px; height: 20px; transform: translateX(-50%); border-radius: 0 0 14px 14px; background: #07101f; }
.phone-screen { width: 100%; aspect-ratio: 1284 / 2778; object-fit: cover; border-radius: 33px; }
.endpoint-card { position: absolute; right: -35px; bottom: 105px; width: 292px; padding: 18px; border: 1px solid rgba(255,255,255,.18); border-radius: 16px; background: rgba(13, 26, 47, .88); box-shadow: var(--shadow); backdrop-filter: blur(16px); transform: rotate(-3deg); }
.endpoint-card-top { display: flex; align-items: center; justify-content: space-between; color: #8ea1bb; font-family: var(--mono); font-size: 9px; letter-spacing: .13em; }
.endpoint-card-top svg { width: 16px; height: 16px; color: var(--cyan); }
.endpoint-url { margin: 17px 0 18px; color: var(--white); font-family: var(--mono); font-size: 17px; font-weight: 500; letter-spacing: -.04em; }
.endpoint-url span { color: var(--cyan); }
.endpoint-meta { display: flex; justify-content: space-between; gap: 10px; color: #93a5bc; font-size: 10px; }
.endpoint-meta span { display: inline-flex; align-items: center; gap: 5px; }
.endpoint-meta svg { width: 13px; height: 13px; color: var(--lime); }
.visual-caption { max-width: 320px; margin: -6px 0 0 auto; color: #8f9db1; font-size: 11px; line-height: 1.6; text-align: right; }
.trust-strip { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 40px; padding-top: 23px; border-top: 1px solid rgba(255,255,255,.14); color: #8190a5; font-family: var(--mono); font-size: 10px; letter-spacing: .1em; }
.trust-items { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 20px; font-family: var(--sans); font-size: 11px; letter-spacing: 0; }
.trust-items span { display: inline-flex; align-items: center; gap: 7px; }
.trust-items svg { width: 14px; height: 14px; color: var(--cyan); }

.section-heading { max-width: 700px; margin-bottom: 54px; }
.section-heading h2, .proof-copy h2, .cta-inner h2 { margin: 0; font-size: clamp(36px, 5vw, 60px); line-height: 1.02; letter-spacing: -.05em; }
.section-heading > p:last-child { max-width: 600px; margin: 19px 0 0; color: var(--ink-soft); font-size: 17px; line-height: 1.6; }
.section-heading-wide > p:last-child { color: #a9b5c7; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.step-card { min-height: 334px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.42); }
.step-number { color: #158b8a; font-family: var(--mono); font-size: 11px; font-weight: 500; letter-spacing: .12em; }
.step-icon { width: 28px; height: 28px; margin: 52px 0 22px; color: #158b8a; }
.step-card h3, .capability-card h3 { margin: 0 0 10px; font-size: 21px; letter-spacing: -.03em; }
.step-card p, .capability-card p { margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.6; }
.code-copy { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: 24px; padding: 11px 12px; border: 1px solid #c7d0dc; border-radius: 10px; color: #2a3f58; background: rgba(255,255,255,.75); cursor: pointer; text-align: left; }
.code-copy code { min-width: 0; overflow: hidden; font-family: var(--mono); font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
.copy-label { display: inline-flex; align-items: center; gap: 4px; color: #158b8a; font-family: var(--mono); font-size: 9px; text-transform: uppercase; }
.copy-label svg { width: 13px; height: 13px; }
.callout { display: flex; align-items: flex-start; gap: 12px; margin-top: 24px; padding: 18px 20px; border-left: 3px solid #158b8a; color: var(--ink-soft); background: #e6ebf0; }
.callout svg { flex: 0 0 auto; width: 17px; height: 17px; color: #158b8a; }
.callout p { margin: 0; font-size: 13px; line-height: 1.6; }

.capabilities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.14); }
.capability-card { min-height: 232px; padding: 27px; background: var(--navy); }
.capability-card-accent { background: #13283d; }
.capability-icon { width: 39px; height: 39px; display: grid; place-items: center; margin-bottom: 30px; border: 1px solid rgba(108,228,210,.45); border-radius: 11px; color: var(--cyan); }
.capability-icon svg { width: 19px; height: 19px; }
.capability-card h3 { color: var(--white); }
.capability-card p { color: #9eaec2; }

.screenshots-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 50px; max-width: none; }
.screenshots-heading > p { max-width: 290px; margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.6; }
.screenshots-grid { display: grid; grid-template-columns: 1.14fr .93fr .93fr; grid-template-rows: 300px 300px; gap: 14px; }
.shot { position: relative; overflow: hidden; width: 100%; height: 100%; padding: 0; border: 0; border-radius: 16px; background: #d7dee8; cursor: pointer; box-shadow: 0 12px 28px rgba(14, 31, 55, .1); }
.shot img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .45s ease; }
.shot:hover img { transform: scale(1.035); }
.shot-large { grid-row: span 2; }
.shot-accent { background: #ced9f4; }
.shot-label { position: absolute; right: 12px; bottom: 12px; left: 12px; display: flex; align-items: center; justify-content: space-between; padding: 10px 12px; color: var(--white); background: rgba(7,16,31,.75); border: 1px solid rgba(255,255,255,.23); border-radius: 9px; backdrop-filter: blur(8px); font-size: 11px; font-weight: 600; }
.shot-label svg { width: 14px; height: 14px; }

.proof-section { color: var(--white); background: #11233a; }
.proof-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.proof-copy { max-width: 570px; }
.proof-copy > p:not(.eyebrow) { margin: 22px 0 28px; color: #b3c0d1; font-size: 17px; line-height: 1.65; }
.proof-list { display: grid; gap: 14px; }
.proof-list div { display: flex; align-items: flex-start; gap: 10px; color: #dce4ed; font-size: 13px; line-height: 1.5; }
.proof-list svg { flex: 0 0 auto; width: 16px; height: 16px; color: var(--lime); }
.quote-panel { padding: 34px; border: 1px solid rgba(108,228,210,.42); border-radius: 18px; background: #0b1b2d; }
.quote-panel > svg { width: 28px; height: 28px; margin-bottom: 22px; color: var(--cyan); }
.quote-panel blockquote { margin: 0 0 24px; color: var(--white); font-size: 25px; line-height: 1.25; letter-spacing: -.03em; }
.quote-panel > span { color: #8198ae; font-family: var(--mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.cta-band { color: var(--white); background: #118b88; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 48px; }
.cta-inner .eyebrow { color: #d9fff4; }
.cta-inner h2 { max-width: 620px; }
.cta-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; }

.site-footer { color: #93a2b7; background: var(--navy); border-top: 1px solid rgba(255,255,255,.11); }
.footer-inner { display: grid; grid-template-columns: 1.2fr .8fr 1fr; gap: 30px; padding: 42px 0 52px; }
.footer-brand p { margin: 16px 0 0; font-size: 12px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; font-size: 12px; }
.footer-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 9px; font-family: var(--mono); font-size: 10px; text-align: right; }

.lightbox { position: fixed; inset: 0; z-index: 50; display: grid; place-items: center; padding: 40px 24px; background: rgba(4,11,22,.88); }
.lightbox[hidden], .toast[hidden] { display: none; }
.lightbox figure { max-width: min(520px, 90vw); max-height: 88vh; margin: 0; }
.lightbox img { max-height: 78vh; width: auto; border: 8px solid #0e1d32; border-radius: 24px; box-shadow: 0 24px 70px rgba(0,0,0,.5); }
.lightbox figcaption { margin-top: 14px; color: #d3dde9; font-size: 13px; text-align: center; }
.lightbox-close { position: absolute; top: 24px; right: 24px; background: rgba(255,255,255,.11); }
.toast { position: fixed; right: 22px; bottom: 22px; z-index: 70; padding: 12px 15px; border: 1px solid rgba(108,228,210,.55); border-radius: 9px; color: #dffdf4; background: #102a35; box-shadow: var(--shadow); font-size: 12px; }

.privacy-hero { color: var(--white); background: var(--navy); background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px); background-size: 46px 46px; }
.privacy-hero-inner { max-width: 800px; }
.privacy-hero h1 { font-size: clamp(50px, 7vw, 78px); }
.privacy-hero-inner > p:not(.eyebrow) { max-width: 610px; margin: 24px 0 26px; color: #b4c1d3; font-size: 18px; line-height: 1.6; }
.policy-meta { display: flex; flex-wrap: wrap; gap: 18px; color: #8e9db2; font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: .06em; }
.policy-meta span { display: inline-flex; align-items: center; gap: 7px; }
.policy-meta svg { width: 14px; height: 14px; color: var(--cyan); }
.policy-grid { display: grid; grid-template-columns: 220px minmax(0, 760px); gap: 86px; align-items: start; }
.policy-aside { position: sticky; top: 106px; }
.aside-label { margin-bottom: 15px; color: #158b8a; font-family: var(--mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.policy-aside nav { display: grid; gap: 6px; }
.policy-aside a { padding: 5px 0; color: #73849a; font-size: 12px; line-height: 1.4; }
.policy-aside a:hover { color: #158b8a; }
.policy-content { min-width: 0; }
.policy-intro, .policy-section { display: grid; grid-template-columns: 38px minmax(0, 1fr); gap: 22px; padding-bottom: 52px; margin-bottom: 52px; border-bottom: 1px solid #d1d8e0; scroll-margin-top: 110px; }
.policy-index { padding-top: 8px; color: #158b8a; font-family: var(--mono); font-size: 11px; font-weight: 500; }
.policy-content h2 { margin: 0 0 16px; font-size: 28px; letter-spacing: -.04em; }
.policy-content p { margin: 0 0 15px; color: var(--ink-soft); font-size: 15px; line-height: 1.72; }
.policy-content p:last-child { margin-bottom: 0; }
.policy-content strong { color: var(--ink); font-weight: 700; }
.policy-content a:not(.contact-card) { color: #087f82; text-decoration: underline; text-underline-offset: 3px; }
.policy-content ul { display: grid; gap: 10px; margin: 17px 0; padding-left: 20px; color: var(--ink-soft); font-size: 15px; line-height: 1.62; }
.callout-policy { padding: 28px 26px 28px 38px; border: 1px solid #bbdcd7; border-left: 3px solid #158b8a; border-radius: 12px; background: #e6f3f1; }
.callout-policy .policy-index { padding-left: 0; }
.policy-contact { padding-bottom: 0; margin-bottom: 42px; border-bottom: 0; }
.contact-card { display: flex; align-items: center; gap: 13px; max-width: 500px; padding: 17px; border: 1px solid #cbd4df; border-radius: 12px; background: #fff; transition: border-color .2s ease, transform .2s ease; }
.contact-card:hover { border-color: #158b8a; transform: translateY(-2px); }
.contact-icon { width: 37px; height: 37px; display: grid; place-items: center; border-radius: 10px; color: #158b8a; background: #dff2ef; }
.contact-icon svg { width: 18px; height: 18px; }
.contact-card strong, .contact-card small { display: block; }
.contact-card strong { color: var(--ink); font-size: 14px; }
.contact-card small { margin-top: 3px; color: #73849a; font-size: 11px; }
.contact-arrow { width: 16px; height: 16px; margin-left: auto; color: #158b8a; }
.policy-footnote { padding-top: 30px; border-top: 1px solid #d1d8e0; color: #7a899c !important; font-family: var(--mono); font-size: 11px !important; line-height: 1.6 !important; }

.reveal { opacity: 0; transform: translateY(14px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay { transition-delay: .12s; }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-copy { max-width: 760px; }
  .hero-visual { min-height: 610px; }
  .visual-caption { margin-right: 20px; }
  .trust-strip { align-items: flex-start; flex-direction: column; }
  .trust-items { justify-content: flex-start; }
  .proof-grid { gap: 45px; }
  .policy-grid { grid-template-columns: 180px minmax(0, 1fr); gap: 44px; }
}
@media (max-width: 760px) {
  .container { width: min(100% - 34px, 620px); }
  .section-pad { padding: 78px 0; }
  .desktop-nav, .header-privacy { display: none; }
  .menu-toggle { display: inline-grid; }
  .header-inner { min-height: 68px; }
  .hero h1, .privacy-hero h1 { font-size: clamp(47px, 14vw, 66px); }
  .hero-lede, .privacy-hero-inner > p:not(.eyebrow) { font-size: 16px; }
  .hero-actions .button { width: 100%; }
  .hero-visual { min-height: 570px; padding-top: 35px; }
  .visual-kicker { position: static; margin-bottom: 20px; }
  .device-stage { min-height: 500px; }
  .phone-frame { width: min(260px, 71vw); }
  .endpoint-card { right: 0; bottom: 65px; width: min(270px, 76vw); }
  .visual-caption { margin: 0; max-width: none; text-align: left; }
  .trust-items { display: grid; grid-template-columns: 1fr 1fr; width: 100%; gap: 13px 15px; }
  .section-heading { margin-bottom: 36px; }
  .steps-grid, .capabilities-grid { grid-template-columns: 1fr; }
  .step-card { min-height: 0; }
  .step-icon { margin-top: 34px; }
  .capability-card { min-height: 0; }
  .capability-icon { margin-bottom: 20px; }
  .screenshots-heading { display: block; }
  .screenshots-heading > p { margin-top: 18px; }
  .screenshots-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 310px 230px 230px; }
  .shot-large { grid-row: span 1; grid-column: span 2; }
  .proof-grid, .cta-inner { grid-template-columns: 1fr; display: grid; gap: 35px; }
  .cta-actions { justify-content: flex-start; }
  .cta-actions .button { width: 100%; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 30px 20px; }
  .footer-meta { grid-column: 1 / -1; align-items: flex-start; text-align: left; }
  .policy-grid { display: block; }
  .policy-aside { position: static; margin-bottom: 40px; padding-bottom: 22px; border-bottom: 1px solid #d1d8e0; }
  .policy-aside nav { grid-template-columns: 1fr 1fr; gap: 2px 18px; }
  .policy-intro, .policy-section { grid-template-columns: 28px minmax(0, 1fr); gap: 13px; padding-bottom: 38px; margin-bottom: 38px; }
  .callout-policy { padding: 22px 18px 22px 28px; }
  .policy-content h2 { font-size: 25px; }
  .policy-content p, .policy-content ul { font-size: 14px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}
