:root {
    color-scheme: dark;
    --bg: #060a14;
    --surface: #0d1324;
    --surface-2: #131b30;
    --text: #f8f9ff;
    --muted: #929db8;
    --line: rgba(255, 255, 255, .09);
    --primary: #6d7cff;
    --primary-2: #b062ff;
    --green: #52ddb0;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    min-width: 320px;
    margin: 0;
    overflow-x: hidden;
    color: var(--text);
    background:
        radial-gradient(circle at 50% -10%, rgba(92, 112, 255, .14), transparent 34%),
        var(--bg);
    font: 15px/1.65 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.site-glow {
    position: fixed;
    z-index: -1;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: .12;
    pointer-events: none;
}
.glow-one { top: 22%; left: -260px; background: #586cff; }
.glow-two { right: -280px; bottom: 8%; background: #a252ff; }

.site-header {
    position: relative;
    z-index: 10;
    width: min(1180px, calc(100% - 40px));
    height: 82px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 36px;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    font-size: 19px;
    font-weight: 850;
    letter-spacing: -.02em;
}

.site-logo {
    width: 38px;
    height: 38px;
    display: inline-grid;
    place-items: center;
    border-radius: 12px;
    color: white;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    box-shadow: 0 12px 32px rgba(109, 124, 255, .3);
}

.site-logo.big {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    font-size: 25px;
}

.site-header nav {
    margin-left: auto;
    display: flex;
    gap: 30px;
}

.site-header nav a {
    color: #aeb7ce;
    font-size: 13px;
    transition: color .2s ease;
}

.site-header nav a:hover { color: white; }

.header-cta {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 17px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 12px;
    background: rgba(255, 255, 255, .055);
    font-size: 13px;
    font-weight: 750;
}

.hero {
    width: min(1180px, calc(100% - 40px));
    min-height: 700px;
    margin: 45px auto 80px;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr);
    align-items: center;
    gap: 78px;
}

.eyebrow,
.section-heading > span,
.legal-kicker {
    color: #a9b3ce;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .16em;
}

.eyebrow {
    width: max-content;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 7px 11px;
    border: 1px solid rgba(109, 124, 255, .24);
    border-radius: 999px;
    background: rgba(109, 124, 255, .07);
}

.eyebrow i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 14px var(--green);
}

.hero h1 {
    margin: 26px 0 24px;
    font-size: clamp(50px, 6.1vw, 84px);
    line-height: 1.02;
    letter-spacing: -.065em;
}

.hero h1 span {
    color: transparent;
    background: linear-gradient(100deg, #7b8bff, #bd6cff);
    -webkit-background-clip: text;
    background-clip: text;
}

.hero-lead {
    max-width: 640px;
    margin: 0;
    color: #aeb8d0;
    font-size: 17px;
}

.hero-lead strong { color: #e5e8ff; }

.hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 34px;
}

.primary-cta,
.secondary-cta {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-weight: 780;
}

.primary-cta {
    gap: 18px;
    padding: 0 22px;
    color: white;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    box-shadow: 0 18px 45px rgba(109, 124, 255, .26);
}
.primary-cta b { font-size: 19px; }
.secondary-cta {
    padding: 0 20px;
    color: #bec6da;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .035);
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 22px;
    color: #7f8ba7;
    font-size: 12px;
}

.privacy-demo {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 32px;
    background:
        radial-gradient(circle at 80% 5%, rgba(139, 94, 255, .13), transparent 35%),
        #0c1222;
    box-shadow: 0 40px 110px rgba(0, 0, 0, .42);
    transform: rotate(1.4deg);
}

.privacy-demo::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .025);
}

.demo-top {
    height: 84px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 22px;
    border-bottom: 1px solid var(--line);
}

.demo-avatar {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    color: white;
    font-size: 18px;
    font-weight: 800;
    background: linear-gradient(135deg, #ff4b9e, #cf4fff);
}

.demo-top div { display: grid; }
.demo-top small { color: var(--muted); font-size: 11px; }
.secure-dot {
    margin-left: auto;
    padding: 5px 9px;
    border-radius: 999px;
    color: #83e9c7;
    font-size: 10px;
    background: rgba(82, 221, 176, .1);
}

.demo-body {
    min-height: 430px;
    padding: 26px 22px;
}

.demo-date {
    width: max-content;
    margin: 0 auto 28px;
    padding: 4px 9px;
    border-radius: 999px;
    color: #7f8ba7;
    font-size: 10px;
    background: rgba(255, 255, 255, .045);
}

.demo-message {
    width: max-content;
    max-width: 78%;
    margin: 12px 0;
    padding: 11px 13px;
    border-radius: 16px;
    color: #e9ecf7;
    background: #182136;
}
.demo-message.mine {
    margin-left: auto;
    border-bottom-right-radius: 5px;
    background: linear-gradient(135deg, #586ef4, #8d5de9);
}
.demo-message.other { border-bottom-left-radius: 5px; }
.demo-message small {
    display: block;
    margin-top: 5px;
    color: rgba(255, 255, 255, .58);
    font-size: 9px;
    text-align: right;
}

.burn-card {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 14px;
    border: 1px solid rgba(177, 101, 255, .2);
    border-radius: 16px;
    background: rgba(142, 94, 235, .08);
}
.burn-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: #c8a1ff;
    background: rgba(177, 101, 255, .14);
}
.burn-card > div:nth-child(2) { min-width: 0; display: grid; }
.burn-card span { color: var(--muted); font-size: 10px; }
.burn-card strong {
    margin-left: auto;
    color: #b995ff;
    font-size: 14px;
    font-variant-numeric: tabular-nums;
}

.demo-input {
    margin: 0 18px 18px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--line);
    border-radius: 15px;
    color: #68748f;
    background: rgba(255, 255, 255, .035);
}
.demo-input span {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: white;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
}

.proof-strip {
    width: min(1080px, calc(100% - 40px));
    margin: 0 auto 150px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, .025);
}
.proof-strip div {
    min-height: 112px;
    display: grid;
    align-content: center;
    justify-items: center;
    border-right: 1px solid var(--line);
}
.proof-strip div:last-child { border-right: 0; }
.proof-strip strong {
    font-size: 25px;
    letter-spacing: -.04em;
}
.proof-strip span { color: var(--muted); font-size: 11px; }

.content-section {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto 170px;
}

.section-heading { margin-bottom: 52px; }
.section-heading.center { text-align: center; }
.section-heading h2 {
    max-width: 800px;
    margin: 14px 0 14px;
    font-size: clamp(35px, 4.4vw, 58px);
    line-height: 1.12;
    letter-spacing: -.055em;
}
.section-heading.center h2 { margin-left: auto; margin-right: auto; }
.section-heading p { max-width: 610px; margin: 0; color: var(--muted); }

.privacy-flow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.privacy-flow article,
.feature-grid article,
.scene-grid article {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(15, 22, 40, .76);
}

.privacy-flow article {
    min-height: 315px;
    padding: 27px;
}
.privacy-flow article > i {
    color: #59647e;
    font-size: 11px;
    font-style: normal;
}
.flow-icon,
.line-icon {
    width: 46px;
    height: 46px;
    margin: 55px 0 22px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #a9b4ff;
    font-size: 20px;
    background: rgba(109, 124, 255, .1);
}
.privacy-flow h3,
.feature-grid h3 {
    margin: 0 0 9px;
    font-size: 21px;
    letter-spacing: -.025em;
}
.privacy-flow p,
.feature-grid p,
.scene-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}
.accent-card {
    background:
        radial-gradient(circle at 85% 5%, rgba(177, 101, 255, .19), transparent 42%),
        rgba(19, 24, 50, .9) !important;
}
.accent-card .flow-icon { color: #d0adff; background: rgba(177, 101, 255, .13); }

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.feature-grid article { min-height: 245px; padding: 25px; }
.feature-grid .feature-large {
    min-height: 350px;
    grid-column: span 2;
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background:
        radial-gradient(circle at 72% 60%, rgba(109, 124, 255, .24), transparent 30%),
        linear-gradient(145deg, #10172c, #15162d);
}
.feature-tag {
    width: max-content;
    padding: 5px 9px;
    border-radius: 999px;
    color: #b8c0ff;
    font-size: 10px;
    background: rgba(109, 124, 255, .1);
}
.feature-large h3 { max-width: 380px; margin-top: 16px; font-size: 35px; }
.orb {
    align-self: flex-end;
    width: 165px;
    height: 165px;
    display: grid;
    align-content: center;
    justify-items: center;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 50%;
    background:
        radial-gradient(circle at 35% 30%, rgba(255, 255, 255, .2), transparent 26%),
        linear-gradient(145deg, #6579ff, #9d63e9);
    box-shadow: 0 25px 60px rgba(91, 108, 255, .25);
}
.orb span { font-size: 53px; font-weight: 850; line-height: 1; }
.orb small { color: rgba(255, 255, 255, .72); }
.feature-grid article:not(.feature-large) .line-icon { margin: 0 0 40px; }

.scene-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.scene-grid article { min-height: 180px; padding: 24px; }
.scene-grid b { display: block; margin-bottom: 55px; font-size: 18px; }

.final-cta {
    width: min(1040px, calc(100% - 40px));
    margin: 0 auto 130px;
    padding: 80px 30px;
    display: grid;
    justify-items: center;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 34px;
    background:
        radial-gradient(circle at 50% 100%, rgba(144, 87, 255, .17), transparent 42%),
        #0d1324;
}
.final-cta h2 {
    margin: 24px 0 8px;
    font-size: clamp(36px, 5vw, 60px);
    letter-spacing: -.055em;
}
.final-cta p { max-width: 560px; margin: 0 0 28px; color: var(--muted); }
.final-cta small { margin-top: 17px; color: #6f7b96; }

footer {
    width: min(1180px, calc(100% - 40px));
    min-height: 210px;
    margin: auto;
    padding: 40px 0;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: start;
    gap: 40px;
    border-top: 1px solid var(--line);
}
footer p { margin: 6px 0; color: var(--muted); }
footer > div:last-of-type { display: flex; gap: 20px; color: #9aa5bd; font-size: 12px; }
footer small { grid-column: 1 / -1; color: #5f6b84; }

.legal-page { min-height: 100vh; }
.legal-wrap {
    width: min(780px, calc(100% - 40px));
    margin: 80px auto 140px;
}
.legal-wrap h1 {
    margin: 16px 0 12px;
    font-size: clamp(42px, 7vw, 68px);
    letter-spacing: -.06em;
}
.legal-lead { margin-bottom: 52px; color: #a8b2ca; font-size: 17px; }
.legal-wrap section {
    padding: 25px 0;
    border-top: 1px solid var(--line);
}
.legal-wrap h2 { margin: 0 0 9px; font-size: 20px; }
.legal-wrap section p { margin: 0; color: var(--muted); }
.legal-date { margin-top: 35px; color: #65718a; font-size: 12px; }

@media (max-width: 900px) {
    .site-header nav { display: none; }
    .site-header { height: 72px; }
    .header-cta { margin-left: auto; }
    .hero {
        grid-template-columns: 1fr;
        gap: 55px;
        margin-top: 65px;
    }
    .hero-copy { text-align: center; }
    .eyebrow { margin: auto; }
    .hero-lead { margin-left: auto; margin-right: auto; }
    .hero-actions, .hero-trust { justify-content: center; }
    .privacy-demo { width: min(520px, 100%); margin: auto; transform: none; }
    .privacy-flow { grid-template-columns: 1fr; }
    .privacy-flow article { min-height: 245px; }
    .flow-icon { margin-top: 35px; }
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .scene-grid { grid-template-columns: repeat(2, 1fr); }
    footer { grid-template-columns: 1fr; gap: 12px; }
    footer small { grid-column: auto; }
}

@media (max-width: 620px) {
    .site-header,
    .hero,
    .content-section,
    .proof-strip,
    .final-cta,
    footer {
        width: min(100% - 26px, 1180px);
    }
    .site-header { gap: 12px; }
    .hero { margin-top: 38px; margin-bottom: 70px; min-height: auto; }
    .hero h1 { font-size: 50px; }
    .hero-lead { font-size: 15px; }
    .hero-actions { flex-direction: column; }
    .primary-cta, .secondary-cta { width: 100%; }
    .hero-trust { gap: 8px 14px; }
    .privacy-demo { border-radius: 24px; }
    .proof-strip {
        grid-template-columns: 1fr 1fr;
        margin-bottom: 105px;
    }
    .proof-strip div:nth-child(2) { border-right: 0; }
    .proof-strip div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .content-section { margin-bottom: 110px; }
    .section-heading { margin-bottom: 32px; }
    .section-heading h2 { font-size: 38px; }
    .feature-grid, .scene-grid { grid-template-columns: 1fr; }
    .feature-grid .feature-large { grid-column: auto; grid-row: auto; min-height: 430px; }
    .scene-grid article { min-height: 150px; }
    .scene-grid b { margin-bottom: 36px; }
    .final-cta { padding: 58px 20px; border-radius: 26px; }
    .final-cta h2 { font-size: 40px; }
    footer > div:last-of-type { flex-wrap: wrap; }
    .legal-wrap { margin-top: 50px; }
}
