/* =========================================================
   1Privacy — by 1Defender
   Design system: warm, confident, type-led.
   Influenced by Proton Lumo (warmth, soft purple, friendly)
   and DuckDuckGo (clarity, restraint, trust).
   ========================================================= */

:root {
    /* Brand — primary blue + shield (lighter) blue, two-tone Proton-style */
    --primary: #1969FE;          /* RGB(25, 105, 254) — primary blue */
    --primary-deep: #0F4FCC;     /* deeper for hover */
    --primary-light: #5479F7;    /* RGB(84, 121, 247) — shield blue, for gradients */
    --primary-soft: #EAF1FF;     /* lightest tint, soft surfaces / icon backgrounds */
    --primary-mist: #F4F8FF;     /* subtle band background */

    --accent: #7C5BFF;           /* plum — used for 1Privacy Identity */
    --accent-soft: #ECE6FF;
    --mint: #2DD4BF;             /* live indicator + Suite color */
    --mint-soft: #DEF5EC;
    --plum: #7C5BFF;             /* alias of accent */
    --plum-soft: #ECE6FF;
    --amber: #C18A00;            /* Cleanup color */
    --amber-soft: #FFF4D6;

    /* Neutrals — cool/blue-tinted, not warm */
    --cream: #FFFFFF;            /* page base — pure white now */
    --paper: #FFFFFF;            /* card surface */
    --paper-2: #F8FAFD;          /* alt card surface, very subtle cool */
    --lavender: #EEF2FF;         /* soft section bg, cool blue tint */
    --sand: #F8FAFD;             /* cool surface (no longer warm) */
    --ink: #0A1330;              /* deep navy text */
    --ink-2: #1A2350;
    --ink-soft: #46527A;         /* secondary */
    --ink-mute: #8088AC;         /* tertiary */
    --line: #E1E7F2;             /* cool-tinted line */
    --line-soft: #ECF0F8;
    --line-light: #F4F7FC;

    /* Type */
    --f-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --f-serif: 'Instrument Serif', Georgia, serif;

    /* Layout */
    --container: 1180px;
    --container-narrow: 880px;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    /* Shadows — soft and layered, cool-tinted */
    --shadow-soft: 0 1px 2px rgba(10, 19, 48, 0.04), 0 8px 24px -8px rgba(10, 19, 48, 0.06);
    --shadow: 0 2px 4px rgba(10, 19, 48, 0.04), 0 16px 40px -12px rgba(10, 19, 48, 0.10);
    --shadow-lg: 0 4px 12px rgba(10, 19, 48, 0.06), 0 30px 60px -16px rgba(10, 19, 48, 0.18);
    --shadow-glow: 0 0 0 1px rgba(25, 105, 254, 0.10), 0 20px 60px -20px rgba(25, 105, 254, 0.32);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
}

body {
    font-family: var(--f-sans);
    color: var(--ink);
    background: var(--cream);
    line-height: 1.55;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; }
em {
    font-family: var(--f-serif);
    font-style: italic;
    font-weight: 500;
    letter-spacing: -0.005em;
}
code {
    font-family: 'SF Mono', Menlo, Consolas, monospace;
    font-size: .92em;
    background: var(--primary-mist);
    color: var(--primary-deep);
    padding: 2px 7px;
    border-radius: 5px;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 28px;
}
.container.narrow {
    max-width: var(--container-narrow);
}

/* =========================================================
   Navigation
   ========================================================= */
.nav {
    position: sticky;
    top: 0;
    background: rgba(251, 247, 242, 0.85);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid transparent;
    z-index: 1000;
    transition: border-color .2s, box-shadow .2s, background .2s;
}
.nav.scrolled {
    border-bottom-color: var(--line);
    background: rgba(251, 247, 242, 0.94);
}

.nav-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 16px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.brand-mark {
    flex: 0 0 auto;
}
.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.brand-name {
    font-weight: 800;
    font-size: 17.5px;
    letter-spacing: -0.025em;
    color: var(--ink);
}
.brand-endorse {
    font-size: 10.5px;
    font-weight: 500;
    color: var(--ink-mute);
    margin-top: 4px;
    letter-spacing: 0.02em;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-link {
    color: var(--ink);
    font-weight: 500;
    font-size: 14.5px;
    padding: 10px 14px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background .15s, color .15s;
}
.nav-link:hover, .nav-link.active {
    background: var(--paper-2);
    color: var(--ink);
}

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 14px;
    min-width: 460px;
    opacity: 0;
    visibility: hidden;
    transition: all .2s ease;
    z-index: 100;
}
.dropdown:hover .dropdown-menu,
.dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.dropdown-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
}
.dropdown-item {
    display: flex;
    gap: 14px;
    padding: 12px;
    border-radius: 12px;
    transition: background .15s;
}
.dropdown-item:hover { background: var(--paper-2); }
.item-icon {
    flex: 0 0 36px;
    height: 36px;
    border-radius: 9px;
    background: var(--primary-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}
.item-icon svg { width: 18px; height: 18px; }
.ai-icon { background: var(--primary-soft); color: var(--primary); }
.identity-icon { background: var(--accent-soft); color: var(--accent); }
.clean-icon { background: #FFF4D6; color: #C18A00; }
.suite-icon { background: var(--mint-soft); color: #0E8E72; }
.wallet-icon { background: var(--plum-soft); color: var(--plum); }

.item-title {
    font-weight: 600;
    font-size: 14.5px;
    color: var(--ink);
    display: flex; align-items: center; gap: 8px;
    margin-bottom: 2px;
}
.item-desc {
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.45;
}
.item-badge {
    font-size: 9.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 2px 7px;
    border-radius: 4px;
}
.item-badge.live { background: var(--mint-soft); color: #0E8E72; }
.item-badge.soon { background: var(--paper-2); color: var(--ink-soft); }
.item-badge.new { background: var(--accent-soft); color: var(--accent); }

.dropdown-foot {
    margin-top: 8px;
    padding: 12px 14px;
    border-top: 1px solid var(--line-soft);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--ink-soft);
}
.dropdown-foot a { color: var(--primary); font-weight: 600; }

/* Nav buttons */
.nav-actions { display: flex; align-items: center; gap: 10px; }
.btn-ghost {
    padding: 9px 14px;
    border-radius: 8px;
    color: var(--ink);
    font-weight: 500;
    font-size: 14.5px;
    transition: background .15s;
}
.btn-ghost:hover { background: var(--paper-2); }
.btn-nav-primary {
    padding: 10px 16px;
    border-radius: 9px;
    background: var(--primary);
    color: white;
    font-weight: 600;
    font-size: 14.5px;
    transition: transform .15s, background .15s, box-shadow .2s;
    box-shadow: 0 1px 0 rgba(255,255,255,.18) inset, 0 4px 12px -4px rgba(25, 105, 254, 0.35);
}
.btn-nav-primary:hover {
    background: var(--primary-deep);
    transform: translateY(-1px);
    box-shadow: 0 1px 0 rgba(255,255,255,.18) inset, 0 8px 18px -4px rgba(25, 105, 254, 0.45);
}

.mobile-toggle {
    display: none;
    width: 40px; height: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border-radius: 8px;
}
.mobile-toggle span {
    width: 22px; height: 2px;
    background: var(--ink);
    transition: transform .25s, opacity .25s;
    border-radius: 2px;
}
.mobile-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   Hero (homepage)
   ========================================================= */
.hero {
    position: relative;
    padding: 110px 0 100px;
    overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: .8;
}
.blob-1 {
    width: 520px; height: 520px;
    background: radial-gradient(circle, var(--plum-soft) 0%, transparent 65%);
    top: -180px; left: -120px;
}
.blob-2 {
    width: 480px; height: 480px;
    background: radial-gradient(circle, var(--accent-soft) 0%, transparent 65%);
    top: 100px; right: -100px;
    opacity: .55;
}
.blob-3 {
    width: 380px; height: 380px;
    background: radial-gradient(circle, var(--mint-soft) 0%, transparent 65%);
    bottom: -100px; left: 30%;
    opacity: .5;
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 72px;
    align-items: center;
    z-index: 1;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px 7px 8px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    color: var(--ink-soft);
    margin-bottom: 28px;
    box-shadow: var(--shadow-soft);
}
.eyebrow-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--mint);
    animation: dotPulse 2.4s infinite ease-out;
}
@keyframes dotPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(45, 212, 191, .5); }
    50%      { box-shadow: 0 0 0 7px rgba(45, 212, 191, 0); }
}

.hero-title {
    font-size: clamp(2.6rem, 6vw, 5rem);
    line-height: 1.0;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: var(--ink);
    margin-bottom: 28px;
}
.hero-title em {
    font-family: var(--f-serif);
    font-weight: 500;
    color: var(--primary);
    letter-spacing: -0.015em;
}

.hero-subtitle {
    font-size: 1.18rem;
    line-height: 1.55;
    color: var(--ink-soft);
    margin-bottom: 38px;
    max-width: 540px;
}

.hero-cta {
    display: flex;
    gap: 12px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 22px;
    background: var(--primary);
    color: white;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    transition: transform .15s, background .15s, box-shadow .2s;
    box-shadow: 0 1px 0 rgba(255,255,255,.18) inset, 0 10px 24px -6px rgba(25, 105, 254, 0.40);
}
.btn-primary:hover {
    background: var(--primary-deep);
    transform: translateY(-1px);
    box-shadow: 0 1px 0 rgba(255,255,255,.18) inset, 0 14px 30px -4px rgba(25, 105, 254, 0.55);
}
.btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 14px 22px;
    background: var(--paper);
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    transition: background .15s, transform .15s, border-color .15s;
}
.btn-secondary:hover {
    background: var(--paper-2);
    transform: translateY(-1px);
    border-color: var(--ink-mute);
}

.hero-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    color: var(--ink-mute);
    font-size: 13px;
    align-items: center;
}
.hero-trust-row span { display: inline-flex; align-items: center; gap: 6px; }
.hero-trust-row svg { color: var(--mint); }
.hero-trust-row .trust-sep { color: var(--line); padding: 0 2px; }

/* Hero illustration — abstract floating shapes */
.hero-art {
    position: relative;
    height: 480px;
}
.shape {
    position: absolute;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    transition: transform .4s ease;
}
.shape-card {
    background: var(--paper);
    border: 1px solid var(--line);
    padding: 20px;
    width: 240px;
}
.shape-card .label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-mute);
    margin-bottom: 10px;
}
.shape-card .value {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 6px;
    font-family: 'SF Mono', Menlo, monospace;
    letter-spacing: -0.01em;
}
.shape-card .meta {
    font-size: 12px;
    color: var(--ink-mute);
}
.shape-card .row {
    display: flex; align-items: center; justify-content: space-between;
    padding: 8px 0;
    font-size: 13.5px;
    color: var(--ink-soft);
}
.shape-card .row + .row { border-top: 1px solid var(--line-soft); }
.shape-card .pill {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 3px 9px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: var(--mint-soft);
    color: #0E8E72;
}

.shape-1 {
    top: 30px; right: 70px;
    transform: rotate(-3deg);
    animation: float1 8s ease-in-out infinite;
    z-index: 3;
}
.shape-2 {
    top: 200px; left: 0;
    transform: rotate(4deg);
    animation: float2 9s ease-in-out infinite;
    width: 220px;
    z-index: 2;
}
.shape-3 {
    bottom: 20px; right: 20px;
    transform: rotate(-2deg);
    animation: float3 10s ease-in-out infinite;
    width: 250px;
    z-index: 4;
    background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%);
    color: var(--cream);
    border-color: transparent;
}
.shape-3 .label { color: rgba(255,255,255,.55); }
.shape-3 .value { color: white; }
.shape-3 .meta { color: rgba(255,255,255,.6); }

@keyframes float1 {
    0%, 100% { transform: rotate(-3deg) translateY(0); }
    50%      { transform: rotate(-3deg) translateY(-10px); }
}
@keyframes float2 {
    0%, 100% { transform: rotate(4deg) translateY(0); }
    50%      { transform: rotate(4deg) translateY(-12px); }
}
@keyframes float3 {
    0%, 100% { transform: rotate(-2deg) translateY(0); }
    50%      { transform: rotate(-2deg) translateY(-8px); }
}

/* Decorative blobs behind hero art */
.art-blob {
    position: absolute;
    width: 280px; height: 280px;
    border-radius: 50%;
    filter: blur(40px);
    z-index: 0;
}
.art-blob.b1 {
    top: 40px; right: 80px;
    background: radial-gradient(circle, rgba(91, 91, 255, .35) 0%, transparent 70%);
}
.art-blob.b2 {
    bottom: 30px; left: 0;
    background: radial-gradient(circle, rgba(255, 122, 89, .35) 0%, transparent 70%);
}

/* =========================================================
   "How it stays private" — technical pillars under the chat hero.
   Sits BETWEEN the hero and the mission band; quiet, pillar-style cards
   so the hero remains the loud entry point.
   ========================================================= */
.how-private {
    padding: 96px 0;
    background: var(--paper);
    position: relative;
}
.how-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 28px;
    max-width: 1000px;
    margin: 48px auto 0;
}
.how-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 28px 28px 26px;
    transition: border-color .22s ease, transform .22s ease, box-shadow .22s ease;
}
.how-card:hover {
    border-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 18px 36px -28px rgba(15, 32, 80, .22);
}
.how-num {
    font-family: 'SF Mono', ui-monospace, Menlo, monospace;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.10em;
    color: var(--primary);
    margin-bottom: 14px;
    display: inline-block;
    padding: 3px 10px;
    background: rgba(25, 105, 254, .08);
    border-radius: 999px;
}
.how-card h3 {
    font-size: 1.05rem;
    line-height: 1.25;
    margin: 0 0 10px;
    letter-spacing: -0.01em;
}
.how-card p {
    color: var(--ink-mute);
    font-size: .94rem;
    line-height: 1.6;
    margin: 0;
}
@media (max-width: 768px) {
    .how-private { padding: 70px 0; }
    .how-grid { grid-template-columns: 1fr; gap: 16px; }
    .how-card { padding: 22px; }
}

/* =========================================================
   Mission band
   ========================================================= */
.mission {
    padding: 100px 0;
    background: var(--cream);
}
.mission-eye {
    text-align: center;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.14em;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 18px;
}
.mission-h {
    text-align: center;
    font-size: clamp(1.8rem, 3.6vw, 2.7rem);
    line-height: 1.2;
    letter-spacing: -0.025em;
    font-weight: 700;
    color: var(--ink);
    max-width: 880px;
    margin: 0 auto;
}
.mission-h em {
    color: var(--primary);
    font-family: var(--f-serif);
    font-weight: 500;
}

/* =========================================================
   Section heads (shared)
   ========================================================= */
.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}
.section-eye {
    display: inline-block;
    padding: 6px 13px;
    background: var(--paper);
    border: 1px solid var(--line);
    color: var(--ink-soft);
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 18px;
}
.section-eye.tinted {
    background: var(--primary-soft);
    border-color: transparent;
    color: var(--primary-deep);
}
.section-eye.light {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.18);
    color: rgba(255,255,255,.85);
}
.section-header h2 {
    font-size: clamp(1.9rem, 3.6vw, 2.9rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 18px;
}
.section-header h2 em {
    color: var(--primary);
    font-family: var(--f-serif);
    font-weight: 500;
}
.section-sub {
    font-size: 1.08rem;
    color: var(--ink-soft);
    line-height: 1.6;
    max-width: 620px;
    margin: 0 auto;
}

/* =========================================================
   Products Grid
   ========================================================= */
.products {
    padding: 110px 0 90px;
    background: var(--lavender);
    position: relative;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}
.product-grid.three { grid-template-columns: repeat(3, 1fr); }

.prod-card {
    position: relative;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    flex-direction: column;
    min-height: 260px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
    overflow: hidden;
}
.prod-card::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 200px; height: 200px;
    background: radial-gradient(circle at 100% 0%, var(--card-tint, rgba(91, 91, 255, 0.12)) 0%, transparent 60%);
    border-radius: 0 var(--radius-lg) 0 0;
    pointer-events: none;
    opacity: .5;
    transition: opacity .3s;
}
.prod-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--card-border, var(--line));
}
.prod-card:hover::before { opacity: 1; }

.prod-ai { --card-tint: rgba(91, 91, 255, 0.18); --card-border: #C9C5FF; }
.prod-identity { --card-tint: rgba(255, 122, 89, 0.18); --card-border: #FFCDB8; }
.prod-clean { --card-tint: rgba(193, 138, 0, 0.16); --card-border: #F0DBA0; }
.prod-suite { --card-tint: rgba(45, 212, 191, 0.18); --card-border: #BBE9DC; }
.prod-wallet { --card-tint: rgba(142, 91, 255, 0.18); --card-border: #D6CDFF; }

.prod-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
    position: relative;
}
.prod-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
}
.prod-ai .prod-icon { background: var(--primary-soft); color: var(--primary); }
.prod-identity .prod-icon { background: var(--accent-soft); color: var(--accent); }
.prod-clean .prod-icon { background: #FFF4D6; color: #C18A00; }
.prod-suite .prod-icon { background: var(--mint-soft); color: #0E8E72; }
.prod-wallet .prod-icon { background: var(--plum-soft); color: var(--plum); }

.prod-status {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 6px;
    background: var(--paper-2);
    color: var(--ink-soft);
    border: 1px solid var(--line-soft);
}
.prod-status.live {
    background: var(--mint-soft);
    color: #0E8E72;
    border-color: transparent;
    position: relative;
    padding-left: 18px;
}
.prod-status.live::before {
    content: '';
    position: absolute;
    left: 7px; top: 50%; transform: translateY(-50%);
    width: 6px; height: 6px;
    background: var(--mint);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(45, 212, 191, .28);
}
.prod-status.new {
    background: var(--accent-soft);
    color: var(--accent);
    border-color: transparent;
}
.prod-status.bundle {
    background: var(--ink);
    color: var(--cream);
    border-color: transparent;
}

.prod-card h3 {
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 10px;
}
.prod-card p {
    color: var(--ink-soft);
    font-size: 14.8px;
    line-height: 1.55;
    flex: 1;
    margin-bottom: 18px;
}
.prod-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    transition: color .2s;
}
.prod-link.disabled { color: var(--ink-mute); }
.prod-card:hover .prod-link:not(.disabled) { color: var(--primary-deep); }

/* =========================================================
   Why grid (smaller, honest)
   ========================================================= */
.why {
    padding: 110px 0;
    background: var(--cream);
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.why-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: transform .25s, box-shadow .25s, border-color .25s;
}
.why-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
    border-color: var(--ink-mute);
}
.why-icon {
    width: 48px; height: 48px;
    background: var(--primary-soft);
    color: var(--primary);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 22px;
}
.why-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}
.why-card p {
    font-size: 14.8px;
    color: var(--ink-soft);
    line-height: 1.6;
}

/* =========================================================
   Compare
   ========================================================= */
.compare {
    padding: 110px 0;
    background: var(--paper);
}
.compare-table {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    max-width: 980px;
    margin: 0 auto;
}
.ct-head, .ct-row {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    align-items: center;
}
.ct-head {
    background: var(--paper-2);
    border-bottom: 1px solid var(--line);
}
.ct-cell {
    padding: 18px 24px;
    font-size: 14.5px;
    border-left: 1px solid var(--line-soft);
}
.ct-cell:first-child { border-left: 0; }
.ct-feat { font-weight: 600; color: var(--ink); text-align: left; }
.ct-them, .ct-us {
    text-align: center;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.2;
}
.ct-sub {
    display: block;
    font-size: 11.5px;
    font-weight: 500;
    color: var(--ink-mute);
    margin-top: 4px;
}
.ct-row { border-top: 1px solid var(--line-soft); }
.ct-row .ct-cell:not(.ct-feat) { text-align: center; }
.ct-row .us {
    background: linear-gradient(180deg, var(--primary-soft) 0%, rgba(236, 234, 255, 0.4) 100%);
}
.ct-head .ct-us {
    background: linear-gradient(180deg, var(--primary-soft) 0%, rgba(236, 234, 255, 0.7) 100%);
    color: var(--primary-deep);
}
.ct-head .ct-us .ct-sub { color: var(--primary-deep); opacity: .7; }

.ok {
    display: inline-flex;
    align-items: center; gap: 5px;
    padding: 5px 11px;
    background: var(--mint-soft);
    color: #0E8E72;
    font-weight: 700;
    font-size: 12.5px;
    border-radius: 6px;
}
.ok::before { content: '✓'; font-weight: 900; }
.x {
    display: inline-flex;
    align-items: center; gap: 5px;
    padding: 5px 11px;
    background: var(--paper-2);
    color: var(--ink-soft);
    font-weight: 600;
    font-size: 12.5px;
    border-radius: 6px;
}
.x.warn { background: #FFEDED; color: #C44C4C; }
.x::before { content: '✕'; font-weight: 900; }

/* =========================================================
   FAQ
   ========================================================= */
.faq {
    padding: 110px 0;
    background: var(--cream);
}
.faq-list {
    max-width: 760px;
    margin: 0 auto;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.faq-item { border-top: 1px solid var(--line-soft); }
.faq-item:first-child { border-top: 0; }
.faq-item summary {
    padding: 22px 26px;
    font-weight: 600;
    font-size: 15.5px;
    color: var(--ink);
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 56px;
    transition: color .15s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '';
    position: absolute;
    right: 26px; top: 50%;
    width: 11px; height: 11px;
    border-right: 2px solid var(--ink-soft);
    border-bottom: 2px solid var(--ink-soft);
    transform: translateY(-70%) rotate(45deg);
    transition: transform .25s;
}
.faq-item[open] summary::after {
    transform: translateY(-30%) rotate(-135deg);
}
.faq-item summary:hover { color: var(--primary); }
.faq-item p {
    padding: 0 26px 24px;
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.6;
}

/* =========================================================
   CTA box
   ========================================================= */
.cta-final {
    padding: 100px 0 120px;
    background: var(--cream);
}
.cta-box {
    max-width: 880px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--ink) 0%, #122068 45%, var(--primary) 100%);
    color: white;
    border-radius: var(--radius-xl);
    padding: 64px 56px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-box::before {
    content: '';
    position: absolute;
    width: 480px; height: 480px;
    background: radial-gradient(circle, rgba(84, 121, 247, .42) 0%, transparent 70%);
    top: -200px; right: -200px;
    pointer-events: none;
}
.cta-box::after {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(45, 212, 191, .22) 0%, transparent 70%);
    bottom: -200px; left: -150px;
    pointer-events: none;
}
.cta-box > * { position: relative; }
.cta-box h2 {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    line-height: 1.18;
    letter-spacing: -0.03em;
    font-weight: 700;
    margin-bottom: 16px;
}
.cta-box h2 em {
    color: #A8C0FF;
    font-family: var(--f-serif);
    font-weight: 500;
}
.cta-box p {
    color: rgba(255,255,255,.72);
    font-size: 1.05rem;
    line-height: 1.55;
    max-width: 540px;
    margin: 0 auto 30px;
}
.cta-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-cta-primary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 15px 26px;
    background: var(--cream);
    color: var(--ink);
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    transition: transform .15s, box-shadow .2s;
    box-shadow: 0 8px 24px rgba(0,0,0,.18);
}
.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0,0,0,.28);
}
.btn-cta-ghost {
    display: inline-flex; align-items: center;
    padding: 15px 26px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.18);
    color: white;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    backdrop-filter: blur(8px);
    transition: background .15s;
}
.btn-cta-ghost:hover { background: rgba(255,255,255,.16); }

/* =========================================================
   Company band
   ========================================================= */
.company-band {
    padding: 100px 0;
    background: var(--ink);
    color: white;
    position: relative;
    overflow: hidden;
}
.company-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 90% 10%, rgba(84, 121, 247, .26) 0%, transparent 50%),
        radial-gradient(circle at 10% 90%, rgba(124, 91, 255, .18) 0%, transparent 50%);
    pointer-events: none;
}
.company-band .container { position: relative; }
.cb-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: center;
}
.cb-text h2 {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 700;
    line-height: 1.16;
    letter-spacing: -0.03em;
    margin-bottom: 18px;
}
.cb-mark {
    background: linear-gradient(90deg, #A8C0FF 0%, #5479F7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.cb-text p {
    color: rgba(255,255,255,.72);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 28px;
}
.cb-text p strong { color: white; font-weight: 600; }
.cb-text a {
    display: inline-flex;
    align-items: center;
    padding: 11px 20px;
    background: transparent;
    border: 1px solid rgba(255,255,255,.22);
    color: white;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    transition: background .15s;
}
.cb-text a:hover { background: rgba(255,255,255,.08); }

.cb-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.cb-stat {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius);
    padding: 22px;
}
.cb-num {
    font-family: var(--f-serif);
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1;
    color: white;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}
.cb-lbl {
    font-size: 13px;
    color: rgba(255,255,255,.55);
}

/* =========================================================
   Footer
   ========================================================= */
.footer {
    background: #0B0D1F;
    color: rgba(255,255,255,.7);
    padding: 80px 0 32px;
}

/* Security pledge band — sits at the top of every footer.
   Verbatim copy from the marketing/security spec; do NOT edit the
   sentence without coordinating with CloakGPT (paired surface). */
.security-pledge-band {
    margin: 0 auto 56px;
    padding: 16px 22px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 14px;
    background: rgba(25, 105, 254, 0.06);
    max-width: 880px;
}
.security-pledge-band p {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.78);
    text-align: center;
}
.security-pledge-band .pledge-icon {
    display: inline-flex; vertical-align: -2px; margin-right: 6px;
    color: var(--primary-light);
}
.security-pledge-band a {
    color: var(--primary-light);
    font-weight: 600;
    text-decoration: none;
    margin-left: 4px;
    white-space: nowrap;
}
.security-pledge-band a:hover { color: white; text-decoration: underline; }
@media (max-width: 600px) {
    .security-pledge-band { margin-bottom: 36px; }
    .security-pledge-band p { font-size: 12.5px; }
    .security-pledge-band a { display: block; margin-left: 0; margin-top: 6px; }
}
.footer-grid-modern {
    display: grid;
    grid-template-columns: 1.1fr 3fr;
    gap: 80px;
    margin-bottom: 60px;
}
.footer-brand .brand-name { color: white; }
.footer-brand .brand-endorse { color: rgba(255,255,255,.4); }
.footer-mission {
    color: rgba(255,255,255,.55);
    font-size: 14.5px;
    line-height: 1.55;
    margin: 22px 0 22px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 36px; height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,.05);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.7);
    transition: background .15s, color .15s, transform .15s;
}
.footer-social a:hover {
    background: rgba(255,255,255,.12);
    color: white;
    transform: translateY(-2px);
}

.footer-links-group {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.footer-column h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: white;
    font-weight: 700;
    margin-bottom: 18px;
}
.footer-column a {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,.55);
    padding: 5px 0;
    transition: color .15s;
}
.footer-column a:hover { color: white; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255,255,255,.4);
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom .dot { margin: 0 8px; opacity: .5; }

/* =========================================================
   Modal
   ========================================================= */
.modal {
    position: fixed; inset: 0;
    z-index: 2000;
    display: flex; align-items: center; justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: visibility .25s, opacity .25s;
}
.modal.active { visibility: visible; opacity: 1; }
.modal-overlay {
    position: absolute; inset: 0;
    background: rgba(21, 23, 43, 0.55);
    backdrop-filter: blur(6px);
}
.modal-container {
    position: relative;
    background: var(--paper);
    width: 92%;
    max-width: 720px;
    max-height: 86vh;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    display: flex; flex-direction: column;
    transform: translateY(20px);
    transition: transform .3s ease;
}
.modal.active .modal-container { transform: translateY(0); }
.modal-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 22px 28px;
    border-bottom: 1px solid var(--line);
}
.modal-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--ink);
}
.modal-close {
    color: var(--ink-soft);
    padding: 6px;
    border-radius: 6px;
}
.modal-close:hover { background: var(--paper-2); color: var(--ink); }
.modal-content {
    padding: 28px 28px 32px;
    overflow-y: auto;
    line-height: 1.65;
    color: var(--ink-soft);
}
.modal-content h2 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ink);
    margin: 22px 0 8px;
}
.modal-content h2:first-child { margin-top: 0; }
.modal-content p { margin-bottom: 12px; font-size: 14.5px; }
.modal-content ul { margin: 8px 0 12px 20px; font-size: 14.5px; }

/* =========================================================
   Reveal animation
   ========================================================= */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease;
}
.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================================
   Product page shared styles
   ========================================================= */

/* Product hero */
.p-hero {
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}
.p-hero-bg {
    position: absolute; inset: 0;
    z-index: 0;
    overflow: hidden;
}
.p-hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: .55;
}
.p-hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: center;
    z-index: 1;
}
.p-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px 6px 8px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--ink-soft);
    margin-bottom: 24px;
}
.p-hero-eyebrow .pill-icon {
    width: 22px; height: 22px;
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    background: var(--primary-soft);
    color: var(--primary);
}
.p-hero-eyebrow .pill-icon svg { width: 12px; height: 12px; }
.p-hero h1 {
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.04;
    letter-spacing: -0.035em;
    font-weight: 700;
    margin-bottom: 22px;
    color: var(--ink);
}
.p-hero h1 em {
    font-family: var(--f-serif);
    font-weight: 500;
    color: var(--primary);
}
.p-hero .lead {
    font-size: 1.18rem;
    line-height: 1.55;
    color: var(--ink-soft);
    margin-bottom: 32px;
    max-width: 520px;
}
.p-hero-cta {
    display: flex; gap: 12px; flex-wrap: wrap;
    margin-bottom: 24px;
}
.p-hero-meta {
    color: var(--ink-mute);
    font-size: 13px;
}

/* Product steps section */
.p-steps {
    padding: 90px 0;
    background: var(--cream);
    position: relative;
}
.p-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 56px;
}
.p-step {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
}
.p-step-num {
    font-family: var(--f-serif);
    font-size: 2.5rem;
    line-height: 1;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}
.p-step h3 {
    font-size: 1.18rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}
.p-step p {
    font-size: 14.8px;
    color: var(--ink-soft);
    line-height: 1.6;
}

/* Product feature row */
.p-features {
    padding: 100px 0;
    background: var(--lavender);
}
.p-features-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 32px 32px;
    max-width: 1100px;
    margin: 0 auto;
}
.p-features-grid > .p-feat { grid-column: span 2; }
/* Center the bottom row when there are 5 items: 3 on top, 2 centered below */
.p-features-grid > .p-feat:nth-child(4):nth-last-child(2) { grid-column: 2 / span 2; }
.p-features-grid > .p-feat:nth-child(5):nth-last-child(1) { grid-column: 4 / span 2; }
.p-feat {
    display: flex;
    gap: 18px;
    padding: 8px 0;
}
.p-feat-icon {
    flex: 0 0 40px;
    width: 40px; height: 40px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary);
}
.p-feat-icon svg { width: 18px; height: 18px; }
.p-feat h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}
.p-feat p {
    font-size: 14.5px;
    color: var(--ink-soft);
    line-height: 1.55;
}

/* Identity dashboard mock */
.identity-mock {
    background: linear-gradient(135deg, var(--paper) 0%, var(--paper-2) 100%);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-lg);
}
.id-head {
    display: flex; justify-content: space-between; align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line-soft);
    margin-bottom: 16px;
}
.id-name {
    display: flex; align-items: center; gap: 12px;
}
.id-avatar {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--plum) 100%);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: white;
    font-weight: 700;
    font-family: var(--f-serif);
    font-size: 1.1rem;
}
.id-meta {
    line-height: 1.2;
}
.id-meta strong {
    font-size: 14px;
    color: var(--ink);
    font-weight: 700;
}
.id-meta span {
    display: block;
    font-size: 11.5px;
    color: var(--ink-mute);
    margin-top: 2px;
    font-family: 'SF Mono', monospace;
}
.id-burn {
    font-size: 11px;
    font-weight: 700;
    color: #C44C4C;
    background: #FFEDED;
    padding: 5px 10px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.id-row {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 0;
    font-size: 13.5px;
}
.id-row + .id-row { border-top: 1px solid var(--line-soft); }
.id-row-icon {
    flex: 0 0 28px;
    width: 28px; height: 28px;
    border-radius: 7px;
    display: flex; align-items: center; justify-content: center;
}
.id-row-icon.email { background: var(--primary-soft); color: var(--primary); }
.id-row-icon.phone { background: var(--mint-soft); color: #0E8E72; }
.id-row-icon.card { background: var(--plum-soft); color: var(--plum); }
.id-row-icon svg { width: 14px; height: 14px; }
.id-row-value {
    font-family: 'SF Mono', monospace;
    color: var(--ink);
    font-size: 12.5px;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.id-row-state {
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 3px 8px;
    border-radius: 5px;
    background: var(--mint-soft);
    color: #0E8E72;
}
.id-foot {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--line-soft);
    font-size: 12px;
    color: var(--ink-mute);
    text-align: center;
}

/* AI chat mock */
.ai-mock {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}
.ai-mock-head {
    display: flex; align-items: center; gap: 8px;
    padding: 12px 16px;
    background: var(--paper-2);
    border-bottom: 1px solid var(--line-soft);
}
.ai-dots { display: flex; gap: 5px; }
.ai-dots span { width: 9px; height: 9px; border-radius: 50%; background: var(--line); }
.ai-host {
    margin-left: 8px;
    font-size: 12.5px;
    color: var(--ink-soft);
    font-family: 'SF Mono', monospace;
}
.ai-lock {
    margin-left: auto;
    font-size: 11px;
    color: #0E8E72;
    font-weight: 700;
    letter-spacing: 0.04em;
}
.ai-mock-body { padding: 18px; }
.ai-msg {
    padding: 12px 14px;
    border-radius: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.5;
}
.ai-msg.user { background: var(--paper-2); color: var(--ink); }
.ai-msg.bot {
    background: linear-gradient(180deg, var(--primary-soft) 0%, var(--primary-mist) 100%);
    border: 1px solid #DAD5FF;
    color: var(--ink);
}
.ai-msg-head {
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.06em;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 6px;
}
.ai-meta {
    margin-top: 6px;
    font-size: 12px;
    color: var(--ink-mute);
    display: flex; gap: 6px; align-items: center;
}
.ai-meta::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--mint);
    border-radius: 50%;
}

/* Cleanup mock */
.clean-mock {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-lg);
}
.clean-mock-head {
    display: flex; justify-content: space-between; align-items: baseline;
    margin-bottom: 12px;
}
.clean-mock-title {
    font-weight: 700;
    color: var(--ink);
    font-size: 14px;
}
.clean-mock-count {
    font-size: 12.5px;
    color: var(--ink-soft);
    font-family: 'SF Mono', monospace;
}
.clean-bar {
    height: 8px;
    background: var(--paper-2);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 18px;
}
.clean-fill {
    height: 100%;
    background: linear-gradient(90deg, #C18A00 0%, #FFB020 100%);
    border-radius: 4px;
    transition: width 1.4s ease;
}
.clean-list .clean-row {
    display: flex; justify-content: space-between;
    padding: 10px 0;
    font-size: 13.5px;
    border-top: 1px solid var(--line-soft);
}
.clean-list .clean-row:first-child { border-top: 0; }
.clean-list .clean-row .name { color: var(--ink); font-weight: 500; }
.clean-list .clean-row .g { color: #0E8E72; font-weight: 600; font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.05em; }
.clean-list .clean-row .y { color: #B47A00; font-weight: 600; font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.05em; }
.clean-foot-text {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--line-soft);
    font-size: 12px;
    color: var(--ink-mute);
    text-align: center;
}

/* Suite mock */
.suite-mock {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-lg);
}
.suite-row {
    display: flex; align-items: center; gap: 14px;
    padding: 14px 0;
    border-top: 1px solid var(--line-soft);
}
.suite-row:first-of-type { border-top: 0; }
.suite-icon-bx {
    width: 36px; height: 36px;
    border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
}
.suite-row .name {
    flex: 1;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
}
.suite-row .price {
    font-size: 13.5px;
    color: var(--ink-mute);
    text-decoration: line-through;
    font-family: 'SF Mono', monospace;
}
.suite-row .price-now {
    font-size: 14px;
    color: var(--ink);
    font-weight: 700;
    font-family: 'SF Mono', monospace;
}
.suite-total {
    margin-top: 14px;
    padding-top: 16px;
    border-top: 2px solid var(--ink);
    display: flex; justify-content: space-between; align-items: baseline;
}
.suite-total .lbl {
    font-size: 14px;
    color: var(--ink);
    font-weight: 700;
}
.suite-total .amt {
    font-size: 1.4rem;
    color: var(--ink);
    font-weight: 800;
    letter-spacing: -0.02em;
}
.suite-save {
    margin-top: 8px;
    text-align: right;
    font-size: 12px;
    color: var(--mint);
    font-weight: 700;
}

/* Wallet mock */
.wallet-mock {
    background: linear-gradient(135deg, var(--ink) 0%, #1F2244 50%, var(--plum) 100%);
    border-radius: var(--radius-lg);
    padding: 32px;
    color: white;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    position: relative;
}
.wallet-mock::before {
    content: '';
    position: absolute;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,.12) 0%, transparent 70%);
    top: -80px; right: -60px;
    pointer-events: none;
}
.wallet-mock > * { position: relative; }
.wallet-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,.6);
    margin-bottom: 8px;
    font-weight: 700;
}
.wallet-balance {
    font-family: var(--f-serif);
    font-size: 3rem;
    font-weight: 500;
    letter-spacing: -0.03em;
    margin-bottom: 4px;
}
.wallet-currency {
    font-size: 12px;
    color: rgba(255,255,255,.55);
    margin-bottom: 24px;
}
.wallet-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 12px 0;
    border-top: 1px solid rgba(255,255,255,.08);
    font-size: 13.5px;
}
.wallet-row:first-of-type { border-top: 0; padding-top: 0; }
.wallet-row .lbl { color: rgba(255,255,255,.6); }
.wallet-row .val {
    font-family: 'SF Mono', monospace;
    color: white;
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 48px; }
    .hero-art { height: 380px; }
    .product-grid, .product-grid.three { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid-modern { grid-template-columns: 1fr; gap: 50px; }
    .cb-grid { grid-template-columns: 1fr; gap: 40px; }
    .p-hero-grid { grid-template-columns: 1fr; gap: 50px; }
    .p-steps-grid { grid-template-columns: 1fr; }
    .p-features-grid { grid-template-columns: 1fr; }
    .p-features-grid > .p-feat { grid-column: 1 / -1; }
    .p-features-grid > .p-feat:nth-child(4):nth-last-child(2),
    .p-features-grid > .p-feat:nth-child(5):nth-last-child(1) { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .nav-container { padding: 14px 20px; }
    .nav-menu {
        position: fixed;
        top: 0; right: -100%;
        width: 88%;
        max-width: 360px;
        height: 100vh;
        background: var(--cream);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 90px 28px 30px;
        gap: 4px;
        transition: right .3s ease;
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
    }
    .nav-menu.active { right: 0; }
    .nav-menu .nav-link {
        font-size: 17px;
        padding: 14px 0;
        width: 100%;
        border-bottom: 1px solid var(--line-soft);
        border-radius: 0;
    }
    .nav-actions .btn-ghost { display: none; }
    .nav-actions .btn-nav-primary { padding: 9px 14px; font-size: 13.5px; }
    .mobile-toggle { display: flex; z-index: 1100; }
    .dropdown-menu {
        position: static;
        opacity: 1; visibility: visible;
        transform: none;
        box-shadow: none;
        border: 0;
        background: var(--paper-2);
        margin: 8px 0;
        padding: 8px;
        min-width: 0;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height .3s ease, padding .3s ease, margin .3s ease;
    }
    .dropdown.mobile-open .dropdown-menu {
        max-height: 1000px;
        padding: 14px;
        margin: 12px 0;
    }
    .dropdown-foot { display: none; }

    .hero { padding: 50px 0 70px; }
    .hero-art { display: none; }
    .hero-cta { flex-direction: column; align-items: stretch; }
    .btn-primary, .btn-secondary { justify-content: center; }
    .hero-trust-row { justify-content: flex-start; }
    .hero-content { text-align: left; }

    .mission, .products, .why, .compare, .faq, .cta-final, .company-band,
    .p-hero, .p-steps, .p-features { padding: 70px 0; }
    .p-hero { padding: 40px 0 60px; }

    .product-grid, .product-grid.three { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }

    .footer-links-group { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; }
    .footer-grid-modern { gap: 40px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 6px; }

    .cta-box { padding: 44px 28px; }
    .cta-actions { flex-direction: column; }

    .ct-head, .ct-row { grid-template-columns: 1.4fr 1fr; }
    .ct-head .ct-them, .ct-row .ct-cell:nth-of-type(2) { display: none; }
    .ct-cell { padding: 14px 12px; font-size: 13px; }

    .p-features-grid { gap: 18px; }
    .suite-wallet-row { grid-template-columns: 1fr !important; gap: 32px !important; }
}

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

/* ── Brand logo image ─────────────────────────────────────── */
.brand-logo {
    height: 34px;
    width: auto;
    display: block;
}
.brand-logo-footer {
    height: 30px;
    width: auto;
    display: block;
    margin-bottom: 6px;
}
.product-hero-logo {
    margin-bottom: 22px;
}
.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #0E8B33;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 18px;
}
.live-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #14B83C;
    box-shadow: 0 0 0 4px rgba(20,184,60,.18);
    animation: livePulse 2s ease-in-out infinite;
}
@keyframes livePulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(20,184,60,.18); }
    50% { box-shadow: 0 0 0 6px rgba(20,184,60,.05); }
}
.product-hero-logo img {
    height: 64px;
    width: auto;
    max-width: 100%;
}
