:root {
    --navy: #0A2540;
    --navy-deep: #061A2E;
    --teal: #00B3A6;
    --teal-bright: #1FD3C5;
    --teal-soft: #E6F7F5;
    --gold: #B8924A;
    --gold-bright: #D4AB5C;
    --gold-soft: #F5EFE0;
    --paper: #FFFFFF;
    --cream: #F7F5F0;
    --cream-2: #EFEBE2;
    --warm-gray: #F4F1EC;
    --ink: #0A2540;
    --ink-soft: #4A5A6E;
    --ink-mute: #8896A6;
    --line: rgba(10, 37, 64, 0.08);
    --line-strong: rgba(10, 37, 64, 0.14);
    --display: 'Manrope', -apple-system, sans-serif;
    --body: 'Manrope', -apple-system, sans-serif;
    --red: #E84A5F;
    --red-soft: #FCEBED;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--body);
    background: var(--paper);
    color: var(--ink);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    font-weight: 400;
}
a { color: inherit; }

/* ─── AUDIENCE TOPBAR ───────────────── */
.audience-bar {
    background: var(--navy-deep);
    color: rgba(255,255,255,0.7);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.audience-inner {
    max-width: 1280px; margin: 0 auto;
    padding: 0 40px;
    display: flex; justify-content: space-between;
    align-items: stretch; height: 42px;
}
.audience-claim {
    display: flex; align-items: center;
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: rgba(255,255,255,0.6);
}
.audience-tabs { display: flex; align-items: stretch; }
.audience-tab {
    display: flex; align-items: center;
    padding: 0 16px;
    font-size: 12px; font-weight: 600;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    border-left: 1px solid rgba(255,255,255,0.06);
    transition: all 0.2s; position: relative;
}
.audience-tab:hover { color: white; background: rgba(255,255,255,0.04); }
.audience-tab.active { color: white; background: rgba(255,255,255,0.04); }
.audience-tab.active::after {
    content: ''; position: absolute;
    bottom: 0; left: 0; right: 0; height: 2px;
    background: var(--teal-bright);
}
.audience-tab.investigative.active::after { background: var(--gold-bright); }
.audience-tab .for { color: rgba(255,255,255,0.35); margin-right: 6px; font-weight: 500; }
.audience-tab .product {
    margin-left: 8px; padding-left: 8px;
    font-size: 10px; font-weight: 500;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.4);
    border-left: 1px solid rgba(255,255,255,0.12);
}
.audience-tab.investigative .product { color: var(--gold-bright); }
.audience-tab.defensive .product { color: var(--teal-bright); }

/* ─── NAV ─────────────────────────────── */
nav.main {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    position: sticky; top: 0; z-index: 100;
}
.nav-inner {
    max-width: 1280px; margin: 0 auto;
    padding: 22px 40px;
    display: flex; justify-content: space-between; align-items: center;
}
.logo-wrap { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.logo-mark { width: 30px; height: 30px; flex-shrink: 0; }
.logo-text {
    font-family: var(--display);
    font-weight: 700; font-size: 24px;
    letter-spacing: -0.04em; color: var(--navy);
    line-height: 1; text-transform: lowercase;
}
.nav-links { display: flex; gap: 36px; align-items: center; list-style: none; }
.nav-item { position: relative; }
.nav-item > a {
    color: var(--ink-soft); text-decoration: none;
    font-size: 14px; font-weight: 500;
    display: inline-flex; align-items: center; gap: 5px;
    padding: 8px 0;
}
.nav-item:hover > a { color: var(--navy); }
.nav-item.has-menu > a::after { content: '↓'; font-size: 9px; color: var(--ink-mute); margin-left: 3px; }
.nav-item.active > a { color: var(--teal); }
.nav-cta {
    background: var(--navy); color: white;
    padding: 12px 22px; border-radius: 999px;
    text-decoration: none; font-size: 14px; font-weight: 600;
    transition: all .25s;
}
.nav-cta:hover { background: var(--teal); color: var(--navy); }

/* ─── BREADCRUMB ─────────────────────── */
.breadcrumb {
    background: var(--cream);
    padding: 16px 40px;
    border-bottom: 1px solid var(--line);
}
.breadcrumb-inner {
    max-width: 1280px; margin: 0 auto;
    font-size: 13px; color: var(--ink-mute);
    display: flex; align-items: center; gap: 8px;
}
.breadcrumb a { color: var(--ink-soft); text-decoration: none; }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb .sep { opacity: 0.4; }
.breadcrumb .current { color: var(--navy); font-weight: 600; }

/* ─── HERO ──────────────────────────── */
.hero {
    background: var(--paper);
    padding: 80px 40px 80px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: ''; position: absolute;
    top: -300px; right: -200px;
    width: 900px; height: 900px;
    background: radial-gradient(circle, rgba(0, 179, 166, 0.08) 0%, transparent 60%);
    pointer-events: none;
}
.hero-inner {
    max-width: 1280px; margin: 0 auto;
    position: relative;
    text-align: center;
}
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--teal);
    background: var(--teal-soft);
    padding: 7px 14px; border-radius: 999px;
    margin-bottom: 28px;
}
.hero-eyebrow::before {
    content: ''; width: 6px; height: 6px;
    border-radius: 50%; background: var(--teal);
}
h1.hero-title {
    font-family: var(--display);
    font-size: clamp(40px, 6vw, 78px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.035em;
    color: var(--navy);
    margin-bottom: 22px;
    max-width: 940px;
    margin-left: auto;
    margin-right: auto;
}
h1.hero-title em { font-style: normal; color: var(--teal); }
.hero-sub {
    font-size: 19px;
    line-height: 1.55;
    color: var(--ink-soft);
    max-width: 680px;
    margin: 0 auto 36px;
}
.hero-actions {
    display: flex; gap: 14px; flex-wrap: wrap;
    justify-content: center;
}
.hero-cta-primary {
    background: var(--navy); color: white;
    padding: 16px 32px; border-radius: 999px;
    text-decoration: none; font-size: 15px; font-weight: 600;
    transition: all 0.25s;
}
.hero-cta-primary:hover { background: var(--teal); color: var(--navy); }
.hero-cta-secondary {
    color: var(--navy);
    padding: 16px 24px;
    text-decoration: none;
    font-size: 15px; font-weight: 600;
    border-bottom: 1.5px solid var(--teal);
    padding-bottom: 6px;
}

/* ─── BIG STAT ────────── */
.big-stat {
    background: var(--cream);
    padding: 80px 40px;
    text-align: center;
}
.big-stat-inner { max-width: 980px; margin: 0 auto; }
.big-stat-num {
    font-family: var(--display);
    font-size: clamp(80px, 11vw, 160px);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.04em;
    color: var(--navy);
    margin-bottom: 12px;
}
.big-stat-num em {
    font-style: normal;
    color: var(--teal);
    font-size: 0.55em;
    vertical-align: top;
    margin-left: 4px;
}
.big-stat-label {
    font-family: var(--display);
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.015em;
    line-height: 1.3;
}
.big-stat-source {
    margin-top: 14px;
    font-size: 13px;
    color: var(--ink-mute);
    font-style: italic;
}

/* ─── LOGIN ATTACK SCENARIO (DARK) ────── */
.attack-scenario {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
    color: white;
    padding: 110px 40px;
    position: relative;
    overflow: hidden;
}
.attack-scenario::before {
    content: ''; position: absolute;
    top: -200px; right: -100px;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(232, 74, 95, 0.12) 0%, transparent 60%);
    pointer-events: none;
}
.attack-scenario::after {
    content: ''; position: absolute;
    bottom: -200px; left: -100px;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(0, 179, 166, 0.14) 0%, transparent 60%);
    pointer-events: none;
}
.attack-inner {
    max-width: 1280px; margin: 0 auto;
    position: relative;
}
.attack-header {
    text-align: center;
    margin-bottom: 70px;
    max-width: 760px;
    margin-left: auto; margin-right: auto;
}
.attack-eyebrow {
    display: inline-block;
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--teal-bright);
    background: rgba(0, 179, 166, 0.10);
    border: 1px solid rgba(0, 179, 166, 0.25);
    padding: 7px 14px; border-radius: 999px;
    margin-bottom: 24px;
}
.attack-headline {
    font-family: var(--display);
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.035em;
    color: white;
    margin-bottom: 18px;
}
.attack-headline em { font-style: normal; color: var(--teal-bright); }
.attack-lead {
    font-size: 17px; line-height: 1.55;
    color: rgba(255,255,255,0.75);
}

/* Two-column comparison */
.attack-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 60px;
}
.attack-side {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 20px;
    padding: 36px 32px;
}
.attack-side.bad { border-color: rgba(232, 74, 95, 0.30); background: rgba(232, 74, 95, 0.04); }
.attack-side.good { border-color: rgba(31, 211, 197, 0.30); background: rgba(0, 179, 166, 0.04); }
.attack-side-tag {
    display: inline-block;
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.16em; text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 999px;
    margin-bottom: 18px;
}
.attack-side.bad .attack-side-tag {
    background: rgba(232, 74, 95, 0.15);
    color: var(--red);
    border: 1px solid rgba(232, 74, 95, 0.25);
}
.attack-side.good .attack-side-tag {
    background: rgba(31, 211, 197, 0.10);
    color: var(--teal-bright);
    border: 1px solid rgba(31, 211, 197, 0.25);
}
.attack-side-title {
    font-family: var(--display);
    font-size: 22px; font-weight: 700;
    color: white;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 20px;
}
.attack-flow {
    display: flex; flex-direction: column;
    gap: 12px;
}
.attack-step {
    display: flex; align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    background: rgba(255,255,255,0.04);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.06);
}
.attack-side.bad .attack-step:last-child {
    background: rgba(232, 74, 95, 0.12);
    border-color: rgba(232, 74, 95, 0.30);
}
.attack-side.good .attack-step:last-child {
    background: rgba(31, 211, 197, 0.10);
    border-color: rgba(31, 211, 197, 0.30);
}
.attack-step-num {
    flex-shrink: 0;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 700;
}
.attack-side.bad .attack-step-num { background: rgba(232, 74, 95, 0.20); color: var(--red); }
.attack-side.good .attack-step-num { background: rgba(31, 211, 197, 0.15); color: var(--teal-bright); }
.attack-step-text {
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255,255,255,0.85);
}
.attack-step-text strong { color: white; }
.attack-side.bad .attack-step:last-child .attack-step-text strong { color: var(--red); }
.attack-side.good .attack-step:last-child .attack-step-text strong { color: var(--teal-bright); }

/* ─── FEATURES (4 numbered) ─── */
.features {
    background: var(--paper);
    padding: 110px 40px;
}
.features-inner { max-width: 1280px; margin: 0 auto; }
.features-header {
    text-align: center;
    margin-bottom: 70px;
    max-width: 760px;
    margin-left: auto; margin-right: auto;
}
.section-eyebrow {
    display: inline-block;
    font-size: 13px; font-weight: 600;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 18px;
}
h2.section-title {
    font-family: var(--display);
    font-size: clamp(34px, 4.5vw, 52px);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--navy);
    margin-bottom: 16px;
}
h2.section-title em { font-style: normal; color: var(--teal); }
.section-lead {
    font-size: 17px; line-height: 1.55;
    color: var(--ink-soft);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.feature-card {
    background: var(--cream);
    border: 1px solid transparent;
    border-radius: 20px;
    padding: 36px 28px;
    transition: all 0.3s;
}
.feature-card:hover {
    background: white;
    border-color: var(--teal);
    transform: translateY(-3px);
    box-shadow: 0 20px 40px -15px rgba(10, 37, 64, 0.10);
}
.feature-num {
    display: inline-flex;
    align-items: center; justify-content: center;
    width: 36px; height: 36px;
    background: var(--navy);
    color: var(--teal-bright);
    border-radius: 50%;
    font-family: var(--display);
    font-size: 14px; font-weight: 700;
    margin-bottom: 22px;
}
.feature-title {
    font-family: var(--display);
    font-size: 20px; font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 12px;
}
.feature-desc {
    font-size: 14px; line-height: 1.6;
    color: var(--ink-soft);
}

/* ─── SSO HUB DIAGRAM ─── */
.sso-hub {
    background: var(--cream);
    padding: 110px 40px;
}
.sso-hub-inner {
    max-width: 1180px; margin: 0 auto;
}
.sso-hub-header {
    text-align: center;
    margin-bottom: 70px;
    max-width: 760px;
    margin-left: auto; margin-right: auto;
}

/* SSO orbit visualization */
.sso-orbit {
    background: white;
    border-radius: 24px;
    padding: 60px 40px;
    border: 1px solid var(--line);
    position: relative;
}
.sso-orbit-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 60px;
    align-items: center;
}
.sso-providers {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.sso-provider {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.25s;
}
.sso-provider:hover {
    border-color: var(--teal);
    transform: translateX(-4px);
}
.sso-provider-icon {
    width: 36px; height: 36px;
    background: white;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    border: 1px solid var(--line);
}
.sso-provider-icon svg { width: 22px; height: 22px; }
.sso-provider-name {
    font-family: var(--display);
    font-size: 15px; font-weight: 600;
    color: var(--navy);
    letter-spacing: -0.01em;
}
.sso-provider-type {
    font-size: 11px;
    color: var(--ink-mute);
    margin-top: 2px;
}

.sso-providers.right .sso-provider {
    flex-direction: row-reverse;
    text-align: right;
}
.sso-providers.right .sso-provider:hover {
    transform: translateX(4px);
}

.sso-center {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
    border-radius: 24px;
    padding: 32px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-width: 220px;
}
.sso-center::before {
    content: ''; position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0, 179, 166, 0.20) 0%, transparent 60%);
}
.sso-center-icon {
    width: 56px; height: 56px;
    background: rgba(0, 179, 166, 0.15);
    border: 1px solid rgba(0, 179, 166, 0.35);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
    color: var(--teal-bright);
    position: relative; z-index: 1;
}
.sso-center-icon svg { width: 28px; height: 28px; }
.sso-center-name {
    font-family: var(--display);
    font-size: 22px; font-weight: 700;
    color: white;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
    position: relative; z-index: 1;
}
.sso-center-name em { font-style: normal; color: var(--teal-bright); }
.sso-center-sub {
    font-size: 12px;
    color: rgba(255,255,255,0.65);
    position: relative; z-index: 1;
}

.sso-caption {
    text-align: center;
    margin-top: 32px;
    font-size: 14px;
    color: var(--ink-mute);
    font-style: italic;
}

/* ─── PRICING ──────────────────────── */
.pricing {
    background: var(--paper);
    padding: 110px 40px;
}
.pricing-inner { max-width: 1280px; margin: 0 auto; }
.pricing-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 760px;
    margin-left: auto; margin-right: auto;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.price-card {
    background: var(--cream);
    border: 1px solid transparent;
    border-radius: 24px;
    padding: 40px 32px;
    position: relative;
    transition: all 0.3s;
}
.price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 50px -20px rgba(10, 37, 64, 0.14);
    background: white;
    border-color: var(--teal);
}
.price-card.featured {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
    color: white;
    border-color: var(--navy);
}
.price-card.featured::after {
    content: ''; position: absolute;
    top: 0; right: 0; width: 200px; height: 200px;
    background: radial-gradient(circle at top right, rgba(0, 179, 166, 0.20), transparent 70%);
    pointer-events: none;
    border-radius: 0 24px 0 0;
}
.price-badge {
    position: absolute;
    top: -10px; right: 24px;
    background: var(--teal);
    color: var(--navy);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.08em;
}
.price-name {
    font-family: var(--display);
    font-size: 22px; font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
    letter-spacing: -0.015em;
}
.price-card.featured .price-name { color: white; }
.price-amount {
    font-family: var(--display);
    font-size: 48px; font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.025em;
    line-height: 1;
    margin-bottom: 4px;
}
.price-card.featured .price-amount { color: white; }
.price-amount .per {
    font-size: 16px; font-weight: 500;
    color: var(--ink-mute);
    margin-left: 4px;
}
.price-card.featured .price-amount .per { color: rgba(255,255,255,0.5); }
.price-amount.custom { font-size: 28px; }
.price-peruser {
    font-size: 13px;
    color: var(--teal);
    font-weight: 600;
    font-style: italic;
    margin-bottom: 14px;
}
.price-card.featured .price-peruser { color: var(--teal-bright); }
.price-tagline {
    font-size: 14px;
    color: var(--ink-soft);
    margin-bottom: 24px;
    line-height: 1.45;
}
.price-card.featured .price-tagline { color: rgba(255,255,255,0.7); }
.price-cta {
    display: block;
    background: var(--navy);
    color: white;
    padding: 14px;
    border-radius: 999px;
    text-decoration: none;
    text-align: center;
    font-size: 14px; font-weight: 600;
    margin-top: 8px;
    margin-bottom: 28px;
    transition: all 0.2s;
}
.price-cta:hover { background: var(--teal); color: var(--navy); }
.price-card.featured .price-cta {
    background: var(--teal); color: var(--navy);
}
.price-card.featured .price-cta:hover { background: var(--teal-bright); }
.price-features {
    list-style: none;
    display: flex; flex-direction: column;
    gap: 12px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}
.price-card.featured .price-features { border-top-color: rgba(255,255,255,0.10); }
.price-features li {
    display: flex; align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--ink-soft);
}
.price-card.featured .price-features li { color: rgba(255,255,255,0.85); }
.price-features li::before {
    content: '';
    flex-shrink: 0;
    margin-top: 6px;
    width: 14px; height: 14px;
    border-radius: 50%;
    background: var(--teal-soft);
    border: 1.5px solid var(--teal);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='none' stroke='%2300B3A6' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 7l3 3 5-6'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
}
.price-card.featured .price-features li::before {
    background-color: rgba(31, 211, 197, 0.15);
    border-color: var(--teal-bright);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='none' stroke='%231FD3C5' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 7l3 3 5-6'/%3E%3C/svg%3E");
}
.price-features li strong { color: var(--navy); font-weight: 700; }
.price-card.featured .price-features li strong { color: white; }

/* ─── FAQ ──────────────────────── */
.faq {
    background: var(--cream);
    padding: 110px 40px;
}
.faq-inner { max-width: 920px; margin: 0 auto; }
.faq-header { text-align: center; margin-bottom: 50px; }
.faq-list { display: flex; flex-direction: column; gap: 14px; counter-reset: faq; }
.faq-item {
    background: white;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 24px 28px;
    transition: all 0.25s;
}
.faq-item:hover { border-color: var(--teal); }
.faq-item summary {
    font-family: var(--display);
    font-size: 17px; font-weight: 600;
    color: var(--navy);
    letter-spacing: -0.015em;
    cursor: pointer;
    display: flex; align-items: center;
    list-style: none;
    gap: 18px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before {
    counter-increment: faq;
    content: counter(faq);
    font-size: 12px; font-weight: 700;
    color: var(--teal);
    background: var(--teal-soft);
    width: 28px; height: 28px;
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-family: var(--display);
}
.faq-item summary::after {
    content: '+';
    font-family: var(--display);
    font-size: 24px; font-weight: 400;
    color: var(--teal);
    flex-shrink: 0;
    transition: transform 0.2s;
    line-height: 1;
    margin-left: auto;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer {
    font-size: 15px; line-height: 1.7;
    color: var(--ink-soft);
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    padding-left: 46px;
}

/* ─── PORTAL ─────────── */
.portal {
    background: var(--paper);
    padding: 110px 40px;
}
.portal-inner {
    max-width: 1180px; margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}
.portal-eyebrow {
    display: inline-block;
    font-size: 13px; font-weight: 600;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 18px;
}
.portal-title {
    font-family: var(--display);
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--navy);
    margin-bottom: 18px;
}
.portal-title em { font-style: normal; color: var(--teal); }
.portal-text {
    font-size: 16px; line-height: 1.65;
    color: var(--ink-soft);
}
.portal-visual {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
    border-radius: 20px;
    padding: 40px;
    color: white;
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
    display: flex; align-items: center; justify-content: center;
}
.portal-visual::before {
    content: ''; position: absolute;
    top: -150px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(0, 179, 166, 0.20) 0%, transparent 60%);
}
.portal-mock {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 28px 32px;
    width: 88%;
    backdrop-filter: blur(10px);
    position: relative; z-index: 1;
}
.portal-mock-head {
    display: flex; gap: 8px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.portal-mock-head span {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.20);
}
.portal-mock-head span:first-child { background: rgba(255, 100, 100, 0.5); }
.portal-mock-head span:nth-child(2) { background: rgba(255, 200, 100, 0.5); }
.portal-mock-head span:nth-child(3) { background: rgba(100, 220, 100, 0.5); }
.portal-mock-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}
.portal-mock-stat {
    background: rgba(255,255,255,0.04);
    border-radius: 8px;
    padding: 14px;
}
.portal-mock-stat .num {
    font-family: var(--display);
    font-size: 22px; font-weight: 700;
    color: var(--teal-bright);
    line-height: 1;
    margin-bottom: 4px;
}
.portal-mock-stat .lbl {
    font-size: 10px; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}
.portal-mock-list { display: flex; flex-direction: column; gap: 6px; margin-top: 8px; }
.portal-mock-item {
    background: rgba(255,255,255,0.04);
    border-radius: 6px;
    padding: 10px 14px;
    display: flex; justify-content: space-between;
    align-items: center;
    font-size: 12px;
}
.portal-mock-item .item-text { color: rgba(255,255,255,0.85); font-weight: 500; }
.portal-mock-item .item-tag {
    font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
    padding: 2px 6px; border-radius: 4px;
}
.portal-mock-item .item-tag.allow { background: rgba(31, 211, 197, 0.12); color: var(--teal-bright); }
.portal-mock-item .item-tag.deny { background: rgba(232, 74, 95, 0.12); color: var(--red); }

/* ─── CROSS-SELL ────────────── */
.cross-sell {
    background: var(--cream);
    padding: 110px 40px;
}
.cross-sell-inner { max-width: 1280px; margin: 0 auto; }
.cross-sell-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 760px;
    margin-left: auto; margin-right: auto;
}
.cross-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.cross-card {
    background: white;
    border: 1px solid transparent;
    border-radius: 18px;
    padding: 28px 26px;
    text-decoration: none;
    color: var(--navy);
    transition: all 0.25s;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.cross-card:hover {
    border-color: var(--teal);
    transform: translateY(-3px);
    box-shadow: 0 16px 40px -15px rgba(10, 37, 64, 0.10);
}
.cross-name {
    font-family: var(--display);
    font-size: 22px; font-weight: 700;
    letter-spacing: -0.02em;
}
.cross-desc {
    font-size: 14px; line-height: 1.55;
    color: var(--ink-soft);
    flex: 1;
}
.cross-foot {
    display: flex; justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    font-size: 13px;
}
.cross-foot .from-price { color: var(--teal); font-weight: 700; }
.cross-foot .arrow {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--cream);
    display: flex; align-items: center; justify-content: center;
    color: var(--navy);
    transition: all 0.2s;
}
.cross-card:hover .cross-foot .arrow {
    background: var(--teal); color: white;
    transform: translateX(3px);
}

/* ─── CONSULTATION ────── */
.consult {
    background: var(--paper);
    padding: 110px 40px;
}
.consult-inner {
    max-width: 1180px; margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}
.consult-text h2 {
    font-family: var(--display);
    font-size: clamp(34px, 4.5vw, 48px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--navy);
    margin-bottom: 18px;
}
.consult-text h2 em { font-style: normal; color: var(--teal); }
.consult-text p {
    font-size: 17px; line-height: 1.55;
    color: var(--ink-soft);
    margin-bottom: 32px;
}
.consult-form {
    background: var(--cream);
    border-radius: 24px;
    padding: 40px;
}
.consult-form h3 {
    font-family: var(--display);
    font-size: 20px; font-weight: 700;
    color: var(--navy);
    margin-bottom: 24px;
    letter-spacing: -0.015em;
}
.form-group { margin-bottom: 16px; }
.form-group input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid var(--line-strong);
    background: white;
    font-family: var(--body);
    font-size: 14px;
    color: var(--navy);
    outline: none;
}
.form-group input:focus { border-color: var(--teal); }
.form-group input::placeholder { color: var(--ink-mute); }
.form-submit {
    width: 100%;
    background: var(--navy); color: white;
    padding: 16px;
    border-radius: 999px;
    border: none;
    font-family: var(--body);
    font-size: 15px; font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
    margin-top: 8px;
}
.form-submit:hover { background: var(--teal); color: var(--navy); }
.form-disclaimer {
    font-size: 12px; color: var(--ink-mute);
    margin-top: 14px;
    line-height: 1.5;
}

/* ─── CISO BANNER ──────── */
.ciso-banner {
    background: var(--cream);
    padding: 70px 40px 110px;
}
.ciso-card {
    max-width: 1180px; margin: 0 auto;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
    border-radius: 24px;
    padding: 48px 56px;
    color: white;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 40px;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.ciso-card::after {
    content: ''; position: absolute;
    top: -150px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(0, 179, 166, 0.18) 0%, transparent 60%);
    pointer-events: none;
}
.ciso-stat {
    text-align: center;
    position: relative; z-index: 1;
    padding-right: 32px;
    border-right: 1px solid rgba(255,255,255,0.12);
}
.ciso-stat .num {
    font-family: var(--display);
    font-size: 44px; font-weight: 700;
    color: var(--teal-bright);
    letter-spacing: -0.025em;
    line-height: 1;
    margin-bottom: 8px;
}
.ciso-stat .label {
    font-size: 13px; font-weight: 600;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.ciso-content { position: relative; z-index: 1; }
.ciso-pill {
    display: inline-block;
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--teal-bright);
    background: rgba(0, 179, 166, 0.15);
    padding: 6px 12px;
    border-radius: 999px;
    margin-bottom: 14px;
}
.ciso-headline {
    font-family: var(--display);
    font-size: 26px; font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: white;
    margin-bottom: 8px;
}
.ciso-sub {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
    max-width: 480px;
}
.ciso-actions {
    display: flex; flex-direction: column; gap: 10px;
    position: relative; z-index: 1;
}
.ciso-btn-primary {
    background: var(--teal); color: var(--navy);
    padding: 14px 24px; border-radius: 999px;
    text-decoration: none; font-size: 14px; font-weight: 700;
    text-align: center; white-space: nowrap;
}
.ciso-btn-primary:hover { background: var(--teal-bright); }
.ciso-btn-ghost {
    color: white;
    padding: 14px 24px;
    text-decoration: none; font-size: 14px; font-weight: 600;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 999px;
}
.ciso-btn-ghost:hover { border-color: var(--teal-bright); color: var(--teal-bright); }

/* ─── FOOTER ───────── */
footer {
    background: var(--navy-deep);
    color: rgba(255, 255, 255, 0.7);
    padding: 90px 40px 40px;
    position: relative;
    overflow: hidden;
}
footer::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg,
    transparent, rgba(0, 179, 166, 0.4) 30%,
    rgba(184, 146, 74, 0.4) 70%, transparent);
}
.footer-inner { max-width: 1280px; margin: 0 auto; position: relative; }
.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 80px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    margin-bottom: 60px;
}
.footer-brand .logo-wrap { display: inline-flex; }
.footer-brand .logo-text { color: white; }
.footer-brand p {
    font-size: 15px; line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    max-width: 420px; margin-top: 24px;
}
.footer-newsletter h5 {
    font-size: 13px; font-weight: 700;
    color: white; margin-bottom: 8px;
}
.footer-newsletter p {
    font-size: 14px; color: rgba(255,255,255,0.55);
    margin-bottom: 18px; line-height: 1.55;
}
.footer-newsletter form { display: flex; gap: 8px; }
.footer-newsletter input {
    flex: 1;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: white;
    padding: 12px 16px;
    border-radius: 8px;
    font-family: var(--body);
    font-size: 14px;
    outline: none;
}
.footer-newsletter input:focus { border-color: var(--teal-bright); }
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.35); }
.footer-newsletter button {
    background: var(--teal); color: var(--navy-deep);
    padding: 12px 20px;
    border-radius: 8px; border: none;
    font-size: 14px; font-weight: 700; cursor: pointer;
    font-family: var(--body);
}
.footer-newsletter button:hover { background: var(--teal-bright); }
.footer-section-divider {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 24px; align-items: center;
    margin-bottom: 32px;
}
.footer-section-divider .label {
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.18em; text-transform: uppercase;
}
.footer-section-divider .label.teal { color: var(--teal-bright); }
.footer-section-divider .label.gold { color: var(--gold-bright); }
.footer-section-divider .line { height: 1px; background: rgba(255,255,255,0.10); }
.footer-solutions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding-bottom: 50px;
    margin-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.10);
}
.footer-solution {
    border-left: 2px solid rgba(255,255,255,0.10);
    padding-left: 28px;
}
.footer-solution.defensive { border-left-color: var(--teal); }
.footer-solution.investigative { border-left-color: var(--gold); }
.footer-solution h5 {
    font-family: var(--display);
    font-size: 18px; font-weight: 700;
    color: white; margin-bottom: 4px;
    letter-spacing: -0.02em;
}
.footer-solution h5 em { font-style: normal; }
.footer-solution.defensive h5 em { color: var(--teal-bright); }
.footer-solution.investigative h5 em { color: var(--gold-bright); }
.footer-solution .audience-line {
    font-size: 11px; font-weight: 600;
    color: rgba(255,255,255,0.45);
    margin-bottom: 18px;
}
.footer-solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 20px; list-style: none;
}
.footer-solution-grid li a {
    color: rgba(255,255,255,0.85);
    font-size: 14px; text-decoration: none;
    display: block; padding: 4px 0;
}
.footer-solution-grid li a.current { color: var(--teal-bright); font-weight: 600; }
.footer-solution.defensive .footer-solution-grid a:hover { color: var(--teal-bright); }
.footer-solution.investigative .footer-solution-grid a:hover { color: var(--gold-bright); }
.footer-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.10);
}
.footer-col h4 {
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 22px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { color: white; text-decoration: none; font-size: 14px; }
.footer-col a:hover { color: var(--teal-bright); }
.footer-col li.future, .footer-col li.prep, .footer-col li.future-2027 {
    color: rgba(255, 255, 255, 0.55); font-size: 14px;
    display: flex; align-items: center; justify-content: space-between; gap: 8px;
}
.footer-col li.future::after, .footer-col li.prep::after, .footer-col li.future-2027::after {
    font-size: 9px; font-weight: 700;
    letter-spacing: 0.10em; text-transform: uppercase;
    background: rgba(0, 179, 166, 0.12);
    color: var(--teal-bright);
    padding: 3px 7px; border-radius: 4px;
    border: 1px solid rgba(0, 179, 166, 0.20);
}
.footer-col li.future::after { content: 'next'; }
.footer-col li.prep::after { content: 'in prep'; }
.footer-col li.future-2027::after {
    content: '2027';
    background: rgba(184, 146, 74, 0.12);
    color: var(--gold-bright);
    border-color: rgba(184, 146, 74, 0.20);
}
.footer-bottom {
    padding-top: 40px;
    display: flex; justify-content: space-between;
    align-items: center; flex-wrap: wrap; gap: 20px;
}
.footer-bottom-left {
    display: flex; align-items: center; gap: 16px;
    font-size: 12px; color: rgba(255,255,255,0.45);
}
.footer-bottom-left .sep {
    width: 4px; height: 4px; border-radius: 50%;
    background: rgba(255,255,255,0.2);
}
.footer-bottom-right { display: flex; align-items: center; gap: 28px; font-size: 12px; }
.footer-bottom-right a { color: rgba(255,255,255,0.55); text-decoration: none; }
.footer-bottom-right a:hover { color: white; }
.footer-social {
    display: flex; gap: 10px;
    margin-left: 20px; padding-left: 20px;
    border-left: 1px solid rgba(255,255,255,0.10);
}
.footer-social a {
    width: 32px; height: 32px;
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.10);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6);
}
.footer-social a:hover {
    background: var(--teal);
    color: var(--navy-deep);
    border-color: var(--teal);
}
.footer-social svg { width: 14px; height: 14px; }

@media (max-width: 1024px) {
    .attack-compare { grid-template-columns: 1fr; }
    .sso-orbit-grid { grid-template-columns: 1fr; gap: 32px; }
    .sso-providers.right .sso-provider { flex-direction: row; text-align: left; }
    .features-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
    .audience-tabs { display: none; }
    .nav-links { display: none; }
    .pricing-grid { grid-template-columns: 1fr; }
    .cross-grid { grid-template-columns: 1fr; }
    .portal-inner { grid-template-columns: 1fr; gap: 40px; }
    .consult-inner { grid-template-columns: 1fr; gap: 32px; }
    .ciso-card { grid-template-columns: 1fr; gap: 24px; padding: 36px; }
    .ciso-stat { padding-right: 0; border-right: none; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.12); }
    .footer-top { grid-template-columns: 1fr; gap: 40px; }
    .footer-solutions { grid-template-columns: 1fr; gap: 36px; }
    .footer-solution-grid { grid-template-columns: 1fr; }
    .footer-cols { grid-template-columns: 1fr; gap: 36px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 20px; }
    .footer-bottom-right { flex-direction: column; align-items: flex-start; gap: 16px; }
    .footer-social { margin-left: 0; padding-left: 0; border-left: none; }
    .hero, .big-stat, .attack-scenario, .features, .sso-hub, .pricing, .faq, .portal, .cross-sell, .consult, .ciso-banner {
        padding: 70px 24px;
    }
}
@media (max-width: 640px) {
    .features-grid { grid-template-columns: 1fr; }
}