/* ==============================================
   DESIGN TOKENS
============================================== */
:root {
    --white: #FFFFFF;
    --bg: #FAFCFB;
    --bg-hero: linear-gradient(168deg, #F0FAF5 0%, #F6FBF9 35%, #FAFCFB 70%);
    --surface: #FFFFFF;
    --surface-hover: #F8FAF9;
    --green: #2BC88A;
    --green-50: #ECFDF5;
    --green-100: #D1FAE5;
    --green-600: #16A34A;
    --green-glow: rgba(43, 200, 138, 0.15);
    --navy: #0F1D2D;
    --navy-700: #1E3A5F;
    --navy-500: #334155;
    --text: #0F1D2D;
    --text-secondary: #475569;
    --text-muted: #94A3B8;
    --border: #E2E8F0;
    --border-light: #F1F5F9;
    --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.05);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.07);
    --shadow-green: 0 4px 14px rgba(43,200,138,0.25);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-pill: 100px;
}

/* ==============================================
   SKIP LINK & FOCUS
============================================== */
.skip-link {
    position: absolute; top: -100px; left: 16px;
    background: var(--navy); color: var(--white);
    padding: 10px 20px; border-radius: var(--radius-sm);
    font-weight: 700; font-size: 0.88rem; z-index: 200;
    transition: top 0.2s;
}
.skip-link:focus { top: 12px; }
*:focus-visible {
    outline: 2px solid var(--green);
    outline-offset: 2px;
}

/* ==============================================
   RESET & BASE
============================================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Nunito Sans', -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.2;
    color: var(--navy);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.mono { font-family: 'JetBrains Mono', monospace; }

/* ==============================================
   REVEAL ANIMATIONS
============================================== */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: none; }
.rd1 { transition-delay: 0.08s; }
.rd2 { transition-delay: 0.16s; }
.rd3 { transition-delay: 0.24s; }
.rd4 { transition-delay: 0.32s; }

/* ==============================================
   BUTTONS
============================================== */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 24px; border-radius: var(--radius-sm);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700; font-size: 0.88rem;
    border: none; cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}
.btn-green {
    background: var(--green); color: var(--white);
}
.btn-green:hover {
    box-shadow: var(--shadow-green);
    transform: translateY(-1px);
}
.btn-navy {
    background: var(--navy); color: var(--white);
}
.btn-navy:hover {
    background: var(--navy-700);
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}
.btn-outline {
    border: 1.5px solid var(--border);
    color: var(--navy);
    background: var(--white);
}
.btn-outline:hover {
    border-color: var(--green);
    color: var(--green);
}
.btn-sm { padding: 9px 18px; font-size: 0.82rem; }

/* ==============================================
   NAV
============================================== */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(10, 21, 32, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-inner {
    max-width: 1120px; margin: 0 auto;
    display: flex; justify-content: space-between; align-items: center;
    height: 72px; padding: 0 24px;
    transition: height 0.3s ease;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo svg {
    width: 42px; height: 42px;
    transition: width 0.3s ease, height 0.3s ease;
}
.logo-text {
    font-family: 'Roboto', sans-serif;
    font-weight: 500; font-size: 1.4rem; color: #fff;
    transition: font-size 0.3s ease;
}
nav.scrolled .logo svg { width: 30px; height: 30px; }
nav.scrolled .logo-text { font-size: 1.15rem; }
nav.scrolled .nav-inner { height: 54px; }
.nav-links {
    display: flex; align-items: center; gap: 32px; list-style: none;
}
.nav-links a {
    font-size: 0.88rem; font-weight: 600;
    color: rgba(255,255,255,0.7);
    transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }
.nav-cta { padding: 9px 20px; font-size: 0.82rem; }

/* Language switch */
.lang-switch {
    display: flex; gap: 2px;
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius-pill);
    padding: 2px;
    margin-right: 8px;
}
.lang-opt {
    display: block;
    padding: 4px 10px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.5);
    border-radius: var(--radius-pill);
    transition: all 0.2s;
    text-decoration: none;
}
.lang-opt:hover { color: rgba(255,255,255,0.85); }
.lang-opt.active {
    background: rgba(255,255,255,0.15);
    color: #fff;
}

.mob-toggle {
    display: none; background: none; border: none;
    color: #fff; font-size: 1.3rem; cursor: pointer;
}
nav.scrolled {
    background: rgba(10, 21, 32, 0.95);
}

/* ==============================================
   HERO
============================================== */
.hero {
    padding: 132px 0 80px;
    background: linear-gradient(168deg, #0a1520 0%, #162638 50%, #1a3050 100%);
    position: relative;
    overflow: hidden;
    color: #fff;
}
/* Subtle grain texture overlay */
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 56px;
    align-items: center;
    position: relative;
}

.hero-tag {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem; font-weight: 600;
    letter-spacing: 0.06em; text-transform: uppercase;
    color: var(--green);
    background: rgba(43,200,138,0.1);
    border: 1px solid rgba(43,200,138,0.25);
    padding: 6px 14px; border-radius: var(--radius-pill);
    margin-bottom: 20px;
}
.tag-pulse {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 0 rgba(43,200,138,0.4);
    animation: pulse 2.5s infinite;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(43,200,138,0.4); }
    70% { box-shadow: 0 0 0 8px rgba(43,200,138,0); }
    100% { box-shadow: 0 0 0 0 rgba(43,200,138,0); }
}

.hero h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.08;
    margin-bottom: 18px;
    color: #fff;
}
.hero h1 .accent {
    color: var(--green);
}

.hero-sub {
    font-size: 1.05rem; color: rgba(255,255,255,0.7);
    max-width: 440px; margin-bottom: 28px; line-height: 1.7;
}
.hero-sub strong { color: #fff; font-weight: 700; }

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-btns .btn-outline {
    border-color: rgba(255,255,255,0.2); color: #fff;
    background: rgba(255,255,255,0.06);
}
.hero-btns .btn-outline:hover {
    border-color: var(--green); color: var(--green);
    background: rgba(43,200,138,0.08);
}

.hero-trust {
    display: flex; gap: 20px; flex-wrap: wrap;
    padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1);
}
.ht-item {
    display: flex; align-items: center; gap: 6px;
    font-size: 0.92rem; color: rgba(255,255,255,0.6); font-weight: 500;
}
.ht-check {
    width: 16px; height: 16px; border-radius: 50%;
    background: rgba(43,200,138,0.15);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.ht-check svg { width: 9px; height: 9px; }

/* ----- Hero Dashboard Mock ----- */
.hero-dash {
    background: var(--white);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.06);
}
.hd-bar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 14px 20px;
    background: var(--white);
    border-bottom: 1px solid var(--border-light);
}
.hd-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.82rem; font-weight: 700; color: var(--navy);
}
.hd-badge {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem; font-weight: 700;
    background: var(--green-50); color: var(--green);
    padding: 3px 10px; border-radius: var(--radius-sm);
    border: 1px solid var(--green-100);
}
.hd-body { padding: 20px; }

.hd-score-block {
    display: flex; align-items: center; gap: 16px;
    margin-bottom: 18px; padding-bottom: 16px;
    border-bottom: 1px solid var(--border-light);
}
.hd-score-ring {
    position: relative;
    width: 64px; height: 64px; flex-shrink: 0;
}
.hd-score-ring svg { width: 64px; height: 64px; transform: rotate(-90deg); }
.hd-score-ring .ring-bg { fill: none; stroke: var(--border-light); stroke-width: 5; }
.hd-score-ring .ring-fill {
    fill: none; stroke: var(--green); stroke-width: 5;
    stroke-linecap: round;
    stroke-dasharray: 164;
    stroke-dashoffset: 40;
    transition: stroke-dashoffset 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.hd-score-val {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.15rem; font-weight: 800; color: var(--green);
}
.hd-score-text { font-size: 0.82rem; }
.hd-score-text strong {
    display: block; font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700; color: var(--navy); font-size: 0.88rem;
}
.hd-score-text span { color: var(--text-muted); font-size: 0.78rem; }

.hd-assets { display: flex; flex-direction: column; gap: 6px; }
.hd-asset {
    display: grid; grid-template-columns: 60px 1fr 56px;
    align-items: center; gap: 12px;
    padding: 8px 12px; border-radius: var(--radius-sm);
    background: var(--bg); border: 1px solid var(--border-light);
    font-size: 0.78rem;
    transition: border-color 0.2s;
}
.hd-asset:hover { border-color: var(--border); }
.hd-sym {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700; color: var(--navy); font-size: 0.8rem;
}
.hd-bar-track { height: 4px; border-radius: 2px; background: var(--border-light); overflow: hidden; }
.hd-bar-fill { height: 100%; border-radius: 2px; transition: width 1s ease; }
.hd-pct {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600; font-size: 0.72rem; text-align: right;
}
.c-up { color: var(--green); }
.c-down { color: #EF4444; }

.hd-alert {
    margin-top: 10px;
    display: flex; align-items: center; gap: 10px;
    padding: 10px 14px; border-radius: var(--radius-sm);
    background: #FFFBEB; border: 1px solid #FDE68A;
    font-size: 0.75rem; color: #92400E;
}
.hd-alert-dot {
    width: 6px; height: 6px; min-width: 6px;
    border-radius: 50%; background: #F59E0B;
}

/* ==============================================
   STATS STRIP
============================================== */
.stats-strip {
    display: grid; grid-template-columns: repeat(4, 1fr);
    border-bottom: 1px solid var(--border);
    background: var(--white);
}
.stat-item {
    text-align: center; padding: 24px 16px;
    border-right: 1px solid var(--border-light);
}
.stat-item:last-child { border-right: none; }
.stat-val {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.4rem; font-weight: 800; color: var(--navy);
    margin-bottom: 2px;
}
.stat-label { font-size: 0.92rem; color: var(--text-muted); font-weight: 500; }

/* ==============================================
   SOCIAL PROOF STRIP
============================================== */
.social-proof {
    padding: 32px 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
}
.sp-inner {
    display: flex; align-items: center; justify-content: center;
    gap: 16px; flex-wrap: wrap;
}
.sp-quote {
    font-size: 1rem; color: var(--text-secondary);
    font-style: italic; line-height: 1.6;
}
.sp-author {
    display: flex; align-items: center; gap: 10px;
    margin-top: 8px; justify-content: center;
}
.sp-avatar {
    width: 36px; height: 36px; border-radius: 50%;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-700) 100%);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700; font-size: 0.5rem; color: var(--white);
}
.sp-name {
    font-size: 0.88rem; font-weight: 700; color: var(--navy);
}
.sp-role {
    font-size: 0.78rem; color: var(--text-muted);
}

/* ==============================================
   HOW IT WORKS - 3 steps for "Bob"
============================================== */
.how-section { padding: 80px 0; }
.sec-header { text-align: center; margin-bottom: 48px; }
.sec-header h2 {
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    font-weight: 800; margin-bottom: 8px;
}
.sec-header p {
    color: var(--text-secondary); max-width: 480px;
    margin: 0 auto; font-size: 0.95rem;
}

.steps-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
}
/* Connector line behind steps */
.steps-grid::before {
    content: '';
    position: absolute;
    top: 40px; left: calc(16.66% + 12px); right: calc(16.66% + 12px);
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--border) 0px, var(--border) 6px, transparent 6px, transparent 12px);
}
.step-card {
    text-align: center;
    padding: 32px 24px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    position: relative;
    transition: box-shadow 0.3s, border-color 0.3s;
}
.step-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--green-100);
}
.step-num {
    width: 48px; height: 48px; margin: 0 auto 16px;
    border-radius: 50%;
    background: var(--green-50);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800; font-size: 1.1rem; color: var(--green);
    position: relative; z-index: 1;
}
.step-card h3 {
    font-size: 1rem; font-weight: 700; margin-bottom: 6px;
}
.step-card p {
    font-size: 0.85rem; color: var(--text-muted); line-height: 1.55;
}

/* ==============================================
   VECTOR - compact horizontal, hover reveal
============================================== */
.vector-section {
    padding: 80px 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.vec-strip {
    display: grid; grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}
.vec-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px 14px;
    text-align: center;
    cursor: default;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}
.vec-card:hover {
    background: var(--white);
    border-color: var(--green-100);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.vec-letter {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.6rem; font-weight: 800;
    margin-bottom: 4px;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.vec-card:hover .vec-letter { transform: scale(1.1); }
.vl-v { color: #7C3AED; } .vl-e { color: #2563EB; }
.vl-c { color: #0891B2; } .vl-t { color: #D97706; }
.vl-o { color: #059669; } .vl-r { color: #DC2626; }

.vec-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.82rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.05em;
    color: var(--navy); margin-bottom: 4px;
}
.vec-desc {
    font-size: 0.82rem; color: var(--text-muted); line-height: 1.45;
    max-height: 0; opacity: 0;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}
.vec-card:hover .vec-desc {
    max-height: 60px; opacity: 1;
    margin-top: 6px;
}

/* ==============================================
   AUDIENCE TABS
============================================== */
.audience-section { padding: 80px 0; }
.aud-tabs {
    display: flex; justify-content: center; gap: 4px;
    margin-bottom: 40px;
    background: var(--bg); border: 1px solid var(--border);
    border-radius: var(--radius-sm); padding: 4px;
    width: fit-content; margin-left: auto; margin-right: auto;
}
.aud-tab {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.85rem; font-weight: 700;
    padding: 10px 28px; border-radius: 6px;
    cursor: pointer; transition: all 0.25s;
    background: transparent; color: var(--text-muted);
    border: none;
}
.aud-tab.active {
    background: var(--white); color: var(--navy);
    box-shadow: var(--shadow-xs);
}
.aud-tab:not(.active):hover { color: var(--navy); }

.aud-panel { display: none; }
.aud-panel.active {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 48px; align-items: start;
}
.aud-text h3 {
    font-size: 1.25rem; font-weight: 800; margin-bottom: 10px;
}
.aud-text > p {
    font-size: 0.92rem; color: var(--text-secondary);
    margin-bottom: 20px; line-height: 1.7;
}
.aud-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.aud-list li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 0.88rem; line-height: 1.5;
}
.al-dot {
    width: 6px; height: 6px; min-width: 6px; border-radius: 50%;
    background: var(--green); margin-top: 8px;
}
.aud-cta {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700; color: var(--green); font-size: 0.88rem;
    display: inline-flex; align-items: center; gap: 6px;
    transition: gap 0.2s;
}
.aud-cta:hover { gap: 10px; }

/* Panel card mock */
.panel-mock {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.pm-bar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 12px 18px; border-bottom: 1px solid var(--border-light);
}
.pm-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.8rem; font-weight: 700; color: var(--navy);
}
.pm-badge {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6rem; font-weight: 700;
    padding: 3px 8px; border-radius: 4px;
}
.pm-body { padding: 18px; }

/* Alert rows for crypto */
.alert-list { display: flex; flex-direction: column; gap: 8px; }
.al-row {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 12px; border-radius: var(--radius-sm);
    background: var(--bg); border: 1px solid var(--border-light);
    font-size: 0.78rem;
    transition: border-color 0.2s;
}
.al-row:hover { border-color: var(--border); }
.al-indicator {
    width: 3px; height: 32px; min-width: 3px;
    border-radius: 2px;
}
.al-row-text { flex: 1; }
.al-row-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700; font-size: 0.76rem; color: var(--navy);
}
.al-row-desc { font-size: 0.7rem; color: var(--text-muted); }
.al-row-time {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6rem; color: var(--text-muted);
}

/* Score bars for stocks */
.score-top { text-align: center; margin-bottom: 18px; }
.score-big {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 3rem; font-weight: 800; color: var(--green);
    line-height: 1;
}
.score-label {
    font-size: 0.88rem; color: var(--text-muted);
    text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600;
}
.score-bars { display: flex; flex-direction: column; gap: 8px; }
.sb-row { display: flex; align-items: center; gap: 10px; }
.sb-label {
    font-size: 0.88rem; color: var(--text-muted);
    width: 85px; min-width: 85px; font-weight: 500;
}
.sb-track {
    flex: 1; height: 5px; background: var(--border-light);
    border-radius: 3px; overflow: hidden;
}
.sb-fill { height: 100%; border-radius: 3px; transition: width 1s ease; }
.sb-val {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem; font-weight: 600;
    width: 34px; text-align: right;
}

/* ==============================================
   ABOUT + TRUST
============================================== */
.about-section {
    padding: 80px 0;
    background: var(--white);
    border-top: 1px solid var(--border);
}
.about-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: center;
}
.about-text h2 {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 800; margin-bottom: 14px;
}
.about-text p {
    font-size: 0.92rem; color: var(--text-secondary);
    margin-bottom: 12px; line-height: 1.75;
}
.about-text strong { color: var(--navy); }
.about-motto {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem; font-weight: 800; color: var(--green);
    margin: 20px 0; padding: 14px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.team-row { display: flex; gap: 10px; flex-wrap: wrap; }
.team-chip {
    display: flex; align-items: center; gap: 8px;
    background: var(--bg); border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    padding: 5px 14px 5px 5px;
}
.tc-avatar {
    width: 26px; height: 26px; border-radius: 50%;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-700) 100%);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800; font-size: 0.45rem; color: var(--white);
    letter-spacing: 0.02em;
}
.tc-name { font-size: 0.78rem; font-weight: 600; color: var(--navy); }

/* Trust cards - NO icons per Xander, just clean text with accent border */
.trust-stack { display: flex; flex-direction: column; gap: 10px; }
.trust-card {
    padding: 18px 20px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-left: 3px solid var(--green);
    border-radius: 2px var(--radius-sm) var(--radius-sm) 2px;
    transition: border-color 0.2s, background 0.2s;
}
.trust-card:hover {
    background: var(--white);
    border-color: var(--green-100);
    border-left-color: var(--green);
}
.trust-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.85rem; font-weight: 700; color: var(--navy);
    margin-bottom: 2px;
}
.trust-desc { font-size: 0.88rem; color: var(--text-muted); }

/* ==============================================
   QUIZ TEASER
============================================== */
.quiz-section {
    padding: 80px 0;
    background: var(--green-50);
    border-top: 1px solid var(--green-100);
    border-bottom: 1px solid var(--green-100);
}
.quiz-card {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 48px; align-items: center;
}
.quiz-text h2 {
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    font-weight: 800; margin-bottom: 12px; color: var(--navy);
}
.quiz-text h2 span { color: var(--green); }
.quiz-text > p {
    font-size: 0.95rem; color: var(--text-secondary);
    margin-bottom: 20px; line-height: 1.7;
}
.quiz-highlights {
    list-style: none; display: flex; flex-direction: column;
    gap: 8px; margin-bottom: 24px;
}
.quiz-highlights li {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.92rem; color: var(--text);
}
.quiz-highlights li svg { width: 18px; height: 18px; flex-shrink: 0; }
.quiz-visual {
    background: var(--white);
    border: 1px solid var(--green-100);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-md);
    text-align: center;
}
.qv-icon {
    width: 64px; height: 64px; margin: 0 auto 16px;
    border-radius: 50%; background: var(--green-50);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
}
.qv-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem; font-weight: 800; color: var(--navy);
    margin-bottom: 6px;
}
.qv-sub {
    font-size: 0.88rem; color: var(--text-muted); margin-bottom: 20px;
}
.qv-profiles {
    display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
    margin-bottom: 20px;
}
.qv-profile {
    padding: 10px 12px; border-radius: var(--radius-sm);
    background: var(--bg); border: 1px solid var(--border-light);
    text-align: left; font-size: 0.8rem;
}
.qv-profile-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700; font-size: 0.78rem; color: var(--navy);
}
.qv-profile-desc {
    font-size: 0.72rem; color: var(--text-muted);
}
.quiz-sub {
    margin-top: 12px; font-size: 0.78rem; color: var(--text-muted);
}

/* ==============================================
   CTA
============================================== */
.cta-section {
    padding: 80px 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(43,200,138,0.08) 0%, transparent 60%);
    pointer-events: none;
}
.cta-inner {
    text-align: center; max-width: 560px; margin: 0 auto;
    position: relative;
}
.cta-inner h2 {
    font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800;
    color: var(--white); margin-bottom: 10px;
}
.cta-inner h2 span { color: var(--green); }
.cta-inner > p {
    color: rgba(255,255,255,0.55); margin-bottom: 24px;
    font-size: 0.95rem;
}
.cta-checklist {
    list-style: none;
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 8px 20px;
    margin-bottom: 28px;
}
.cta-checklist li {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.9rem; color: rgba(255,255,255,0.7);
}
.cta-checklist li svg {
    width: 16px; height: 16px; flex-shrink: 0;
}
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-sub {
    margin-top: 16px;
    font-size: 0.82rem; color: rgba(255,255,255,0.4);
}
.cta-btns .btn-outline {
    border-color: rgba(255,255,255,0.2); color: #FFFFFF;
    background: rgba(255,255,255,0.06);
}
.cta-btns .btn-outline:hover {
    border-color: var(--green); color: var(--green);
    background: rgba(43,200,138,0.08);
}

/* ==============================================
   FOOTER
============================================== */
.footer {
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 48px 0 24px;
}
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px; margin-bottom: 32px;
}
.footer-brand .logo { margin-bottom: 10px; }
.footer-brand p {
    font-size: 0.85rem; color: var(--text-muted); max-width: 260px;
}
.footer-col h5 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.68rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--navy); margin-bottom: 14px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col a {
    font-size: 0.85rem; color: var(--text-muted);
    transition: color 0.2s;
}
.footer-col a:hover { color: var(--green); }

.footer-disclaimer {
    padding: 20px 0; border-top: 1px solid var(--border);
    font-size: 0.7rem; color: var(--text-muted);
    text-align: center; max-width: 680px; margin: 0 auto;
    line-height: 1.6;
}
.footer-bottom {
    padding-top: 14px; border-top: 1px solid var(--border);
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 12px;
    font-size: 0.75rem; color: var(--text-muted);
}
.footer-bottom a { color: var(--green); }

/* ==============================================
   MOBILE NAV MENU
============================================== */
.mob-menu {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    z-index: 200;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}
.mob-menu.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.mob-menu a {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem; font-weight: 700;
    color: var(--navy); padding: 14px 24px;
    transition: color 0.2s;
}
.mob-menu a:hover { color: var(--green); }
.mob-menu .lang-switch {
    background: var(--border-light);
    justify-content: center;
}
.mob-menu .lang-opt {
    color: var(--text-muted);
}
.mob-menu .lang-opt:hover { color: var(--text); }
.mob-menu .lang-opt.active {
    background: var(--white);
    color: var(--navy);
    box-shadow: var(--shadow-xs);
}
.mob-menu .btn { margin-top: 12px; }
.mob-close {
    position: absolute; top: 20px; right: 24px;
    background: none; border: none;
    font-size: 1.6rem; color: var(--navy);
    cursor: pointer; padding: 8px;
}

/* ==============================================
   RESPONSIVE
============================================== */

/* ----- Tablet (max 1024px) ----- */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 32px; }
    .hero-dash { max-width: 480px; }
    .aud-panel.active { grid-template-columns: 1fr; gap: 32px; }
    .about-grid { grid-template-columns: 1fr; gap: 32px; }
    .quiz-card { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .steps-grid::before { display: none; }
}

/* ----- Mobile landscape / small tablet (max 768px) ----- */
@media (max-width: 768px) {
    .container { padding: 0 20px; }

    /* Nav */
    .nav-links { display: none; }
    .nav-inner > .lang-switch { display: none; }
    .nav-cta { display: none; }
    .mob-toggle { display: block; }

    /* Hero */
    .hero { padding: 100px 0 48px; }
    .hero h1 { font-size: 2rem; }
    .hero-sub { font-size: 0.95rem; }
    .hero-dash { max-width: 100%; }
    .hd-score-ring { width: 52px; height: 52px; }
    .hd-score-ring svg { width: 52px; height: 52px; }
    .hd-score-val { font-size: 1rem; }

    /* Stats strip */
    .stats-strip { grid-template-columns: repeat(2, 1fr); }
    .stat-item { padding: 18px 12px; }
    .stat-item:nth-child(2) { border-right: none; }
    .stat-val { font-size: 1.2rem; }

    /* Social proof */
    .social-proof { padding: 24px 0; }
    .sp-quote { font-size: 0.92rem; }

    /* Steps */
    .steps-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .how-section { padding: 56px 0; }

    /* VECTOR */
    .vec-strip { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .vector-section { padding: 56px 0; }
    .vec-card { padding: 16px 10px; }
    .vec-letter { font-size: 1.3rem; }
    .vec-name { font-size: 0.72rem; }

    /* Audience */
    .audience-section { padding: 56px 0; }
    .aud-tabs { width: 100%; }
    .aud-tab { flex: 1; text-align: center; padding: 10px 16px; font-size: 0.82rem; }
    .panel-mock { margin-top: 8px; }

    /* Quiz */
    .quiz-section { padding: 56px 0; }
    .quiz-text h2 { font-size: 1.4rem; }
    .qv-profiles { grid-template-columns: 1fr 1fr; gap: 6px; }

    /* About */
    .about-section { padding: 56px 0; }

    /* CTA */
    .cta-section { padding: 56px 0; }
    .cta-checklist { flex-direction: column; align-items: center; gap: 6px; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .footer-brand p { max-width: 100%; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
}

/* ----- Small phones (max 480px) ----- */
@media (max-width: 480px) {
    .container { padding: 0 16px; }

    /* Hero */
    .hero { padding: 88px 0 40px; }
    .hero h1 { font-size: 1.7rem; }
    .hero-sub { font-size: 0.9rem; max-width: 100%; }
    .hero-btns { flex-direction: column; align-items: stretch; text-align: center; }
    .hero-trust { flex-direction: column; gap: 6px; }
    .hero-tag { font-size: 0.6rem; }

    /* Dashboard mock */
    .hd-body { padding: 14px; }
    .hd-asset { grid-template-columns: 48px 1fr 48px; gap: 8px; padding: 6px 10px; }
    .hd-sym { font-size: 0.72rem; }
    .hd-pct { font-size: 0.65rem; }
    .hd-alert { font-size: 0.68rem; padding: 8px 10px; }

    /* Stats */
    .stat-val { font-size: 1.1rem; }
    .stat-label { font-size: 0.82rem; }

    /* VECTOR */
    .vec-strip { grid-template-columns: repeat(3, 1fr); gap: 6px; }
    .vec-card { padding: 12px 8px; }
    .vec-letter { font-size: 1.15rem; }
    .vec-name { font-size: 0.65rem; letter-spacing: 0.03em; }
    .vec-card:hover .vec-desc { max-height: 80px; }

    /* Quiz */
    .qv-profiles { grid-template-columns: 1fr; }
    .quiz-highlights li { font-size: 0.85rem; }

    /* CTA */
    .cta-btns { flex-direction: column; align-items: stretch; text-align: center; }
    .cta-inner h2 { font-size: 1.4rem; }

    /* Footer */
    .footer-disclaimer { font-size: 0.65rem; }
}

/* ----- Touch device hover fix ----- */
@media (hover: none) {
    .vec-card .vec-desc {
        max-height: 60px; opacity: 1; margin-top: 6px;
    }
    .vec-card { transform: none !important; }
    .step-card:hover { box-shadow: none; }
}

/* ----- Ensure tap targets are 44px+ ----- */
@media (max-width: 768px) {
    .btn { min-height: 44px; padding: 12px 24px; }
    .nav-cta { min-height: 44px; }
    .mob-toggle { min-width: 44px; min-height: 44px; display: flex; align-items: center; justify-content: center; }
    .aud-tab { min-height: 44px; }
    .footer-col a { display: inline-block; padding: 4px 0; min-height: 36px; line-height: 28px; }
}

/* ==============================================
   SUBPAGES - page header, breadcrumbs
============================================== */
.page-header {
    padding: 120px 0 40px;
    background: linear-gradient(168deg, #0a1520 0%, #162638 50%, #1a3050 100%);
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 768px) {
    .page-header { padding: 88px 0 28px; }
}
.page-header h1 {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800; margin-bottom: 8px;
    color: #fff;
}
.page-header-sub {
    font-size: 1rem; color: rgba(255,255,255,0.65);
    max-width: 520px;
}
.page-header .breadcrumb-nav {
    font-size: 0.82rem; color: rgba(255,255,255,0.5);
    margin-bottom: 12px;
}
.page-header .breadcrumb-nav a { color: rgba(255,255,255,0.5); transition: color 0.2s; text-decoration: none; }
.page-header .breadcrumb-nav a:hover { color: rgba(255,255,255,0.8); }
.page-header .breadcrumb-nav span:last-child { color: rgba(255,255,255,0.75); }
.breadcrumb-nav a:hover { color: var(--navy); }
.breadcrumb-nav span { margin: 0 6px; }

.content-section { padding: 56px 0; }

/* ==============================================
   CONTACT FORM
============================================== */
.contact-grid {
    display: grid; grid-template-columns: 1.2fr 0.8fr;
    gap: 48px; align-items: start;
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 4px; }
.form-group label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.85rem; font-weight: 700; color: var(--navy);
}
.form-optional { font-weight: 400; color: var(--text-muted); }
.form-group input,
.form-group textarea {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.92rem; padding: 12px 16px;
    border: 1px solid var(--border); border-radius: var(--radius-sm);
    background: var(--white); color: var(--text);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px var(--green-glow);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group textarea { resize: vertical; min-height: 120px; }

.form-errors {
    padding: 14px 18px; border-radius: var(--radius-sm);
    background: #FEF2F2; border: 1px solid #FECACA;
    color: #DC2626; font-size: 0.88rem; margin-bottom: 8px;
}
.form-errors p { margin-bottom: 4px; }
.form-errors p:last-child { margin-bottom: 0; }

.form-success {
    padding: 32px; text-align: center;
    background: var(--green-50); border: 1px solid var(--green-100);
    border-radius: var(--radius-md);
}
.form-success h2 {
    font-size: 1.3rem; color: var(--green); margin-bottom: 8px;
}
.form-success p { color: var(--text-secondary); }

.ci-card {
    padding: 24px; background: var(--bg);
    border: 1px solid var(--border); border-radius: var(--radius-md);
    margin-bottom: 16px;
}
.ci-card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem; font-weight: 700; margin-bottom: 12px;
}
.ci-item { margin-bottom: 10px; }
.ci-item:last-child { margin-bottom: 0; }
.ci-item strong {
    display: block; font-size: 0.78rem;
    color: var(--text-muted); text-transform: uppercase;
    letter-spacing: 0.05em; margin-bottom: 2px;
}
.ci-item a {
    color: var(--green); font-weight: 600; font-size: 0.92rem;
    transition: color 0.2s;
}
.ci-item a:hover { color: var(--navy); }
.ci-card p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.7; }

@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
}

/* ==============================================
   KENNISBANK
============================================== */
.kb-search { margin-bottom: 32px; }
.kb-search-form {
    display: flex; flex-wrap: wrap; gap: 12px; max-width: 560px;
}
.kb-search-form input {
    flex: 1; font-family: 'Nunito Sans', sans-serif;
    font-size: 0.92rem; padding: 12px 16px;
    border: 1px solid var(--border); border-radius: var(--radius-sm);
    background: var(--white); color: var(--text); outline: none;
    transition: border-color 0.2s;
}
.kb-search-form input:focus { border-color: var(--green); }

.kb-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px; margin-bottom: 24px;
}
.kb-card {
    display: block; padding: 24px;
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.kb-card:hover {
    border-color: var(--green-100);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.kb-card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem; font-weight: 700; margin-bottom: 6px;
}
.kb-card p {
    font-size: 0.85rem; color: var(--text-muted);
    line-height: 1.55; margin-bottom: 10px;
}
.kb-read-more {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.82rem; font-weight: 700; color: var(--green);
}
.kb-section-title {
    font-size: 1.1rem; font-weight: 800; margin-bottom: 20px;
}
.kb-results-title {
    font-size: 0.95rem; font-weight: 700; color: var(--text-secondary);
    margin-bottom: 16px;
}
.kb-related { margin-top: 48px; }

/* ==============================================
   ARTICLE / LEGAL CONTENT
============================================== */
.article-wrap {
    max-width: 720px; margin: 0 auto;
}
.article-toc {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    margin-bottom: 28px;
}
.article-toc details summary { list-style: none; }
.article-toc details summary::-webkit-details-marker { display: none; }
.article-toc .toc-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.article-toc .toc-title::after {
    content: '+';
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--green);
    transition: transform 0.2s ease;
}
.article-toc details[open] .toc-title::after {
    content: '\2212';
}
.article-toc details[open] ul {
    margin-top: 12px;
}
.article-toc ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.article-toc li {
    margin-bottom: 6px;
    padding-left: 0;
}
.article-toc a {
    color: var(--green);
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
}
.article-toc a:hover {
    text-decoration: underline;
}
.article-body {
    font-size: 0.95rem; line-height: 1.8; color: var(--text-secondary);
}
.article-body h2 {
    scroll-margin-top: 80px;
}
.article-body h2,
.article-body h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700; color: var(--navy);
    margin: 28px 0 10px;
}
.article-body h2 { font-size: 1.3rem; }
.article-body h3 { font-size: 1.05rem; }
.article-body p { margin-bottom: 14px; }
.article-body ul,
.article-body ol {
    margin: 10px 0 18px 24px;
}
.article-body li { margin-bottom: 6px; }
.article-body a { color: var(--green); font-weight: 600; }
.article-body a:hover { text-decoration: underline; }
.article-body strong { color: var(--navy); }
.article-body address {
    font-style: normal; margin: 16px 0;
    padding: 16px; background: var(--bg);
    border: 1px solid var(--border); border-radius: var(--radius-sm);
}
.legal-content ol { list-style-type: decimal; }
.legal-content ol li { margin-bottom: 10px; }

/* ==============================================
   QUIZ PAGE
============================================== */
.quiz-page {
    padding: 120px 0 80px;
    background: var(--bg-hero);
    min-height: 100vh;
}
.quiz-wrap {
    max-width: 680px;
    margin: 0 auto;
}

/* Hero */
.qp-hero {
    text-align: center;
    margin-bottom: 32px;
}
.qp-hero h1 {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 10px;
}
.qp-hero h1 span { color: var(--green); }
.qp-hero p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    max-width: 440px;
    margin: 0 auto;
}

/* Progress bar */
.quiz-progress {
    margin-bottom: 28px;
}
.qp-bar-track {
    height: 6px;
    background: var(--border);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 8px;
}
.qp-bar-fill {
    height: 100%;
    background: var(--green);
    border-radius: 3px;
    width: 0%;
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.qp-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 600;
    text-align: center;
}

/* Question container */
.quiz-question-container {
    position: relative;
    min-height: 320px;
}
.quiz-question {
    animation: quizSlideIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.quiz-question.slide-out {
    animation: quizSlideOut 0.25s ease forwards;
}
@keyframes quizSlideIn {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes quizSlideOut {
    from { opacity: 1; transform: translateX(0); }
    to { opacity: 0; transform: translateX(-30px); }
}
.quiz-question h2 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 6px;
    color: var(--navy);
}
.quiz-question .qq-context {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Options grid */
.quiz-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.quiz-option {
    padding: 16px 18px;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.88rem;
    color: var(--text);
    line-height: 1.5;
    text-align: left;
}
.quiz-option:hover {
    border-color: var(--green-100);
    background: var(--surface-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}
.quiz-option.selected {
    border-color: var(--green);
    background: var(--green-50);
}
.quiz-option .qo-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    display: block;
    margin-bottom: 4px;
}
.quiz-option.selected .qo-label {
    color: var(--green);
}

/* Email step */
.quiz-email-step {
    text-align: center;
    padding: 40px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}
.qe-icon {
    font-size: 2.4rem;
    margin-bottom: 12px;
}
.quiz-email-step h2 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--navy);
}
.quiz-email-step > p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}
.quiz-email-step form {
    max-width: 380px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.quiz-email-step .form-group {
    text-align: left;
}
.qe-error {
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    background: #FEF2F2;
    border: 1px solid #FECACA;
    color: #DC2626;
    font-size: 0.85rem;
    text-align: left;
}
.qe-submit {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 0.95rem;
}
.qe-disclaimer {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Result page */
.quiz-result {
    animation: quizSlideIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Profile badge */
.result-badge {
    text-align: center;
    padding: 36px 32px;
    border-radius: var(--radius-lg);
    margin-bottom: 28px;
    color: var(--white);
}
.result-badge .rb-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    opacity: 0.85;
    font-weight: 600;
    margin-bottom: 4px;
}
.result-badge h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 6px;
}
.result-badge .rb-tagline {
    font-size: 0.95rem;
    opacity: 0.9;
    font-style: italic;
}

/* Profile description */
.result-description {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 28px;
    padding: 0 4px;
}

/* VECTOR radar (reuses sb- classes) */
.result-vector {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 28px;
}
.result-vector h3 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--navy);
}
.rv-intro {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-light);
}
.rv-intro strong { color: var(--navy); font-weight: 700; }
.sb-row-ext { margin-bottom: 10px; }
.sb-row-ext:last-child { margin-bottom: 0; }
.sb-detail {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: 3px;
    padding-left: 95px;
}
.sb-level {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 2px 8px;
    border-radius: 4px;
    flex-shrink: 0;
}
.rv-low { background: #FEF2F2; color: #DC2626; }
.rv-mid { background: #FFFBEB; color: #D97706; }
.rv-high { background: var(--green-50); color: var(--green); }
.sb-explain {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Tips */
.result-tips {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 28px;
}
.result-tips h3 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 14px;
    color: var(--navy);
}
.result-tips ol {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
    margin: 0;
}
.result-tips li {
    display: flex;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
}
.result-tips li .rt-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    color: var(--green);
    flex-shrink: 0;
}

/* Comparison stat */
.result-stat {
    text-align: center;
    padding: 20px;
    background: var(--green-50);
    border: 1px solid var(--green-100);
    border-radius: var(--radius-md);
    margin-bottom: 28px;
    font-size: 0.88rem;
    color: var(--text-secondary);
}
.result-stat strong {
    color: var(--green);
    font-weight: 700;
}

/* CTA */
.result-cta {
    text-align: center;
    padding: 32px;
    background: var(--navy);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}
.result-cta::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(43,200,138,0.1) 0%, transparent 60%);
    pointer-events: none;
}
.result-cta h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
    position: relative;
}
.result-cta p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 18px;
    position: relative;
}
.result-cta .btn {
    position: relative;
}
.result-cta-sub {
    margin-top: 10px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.35);
    position: relative;
}

/* Profile color scoping */
.profile-bewaker { background: #2563EB; }
.profile-strateeg { background: #059669; }
.profile-ontdekker { background: #D97706; }
.profile-accelerator { background: #DC2626; }

/* Responsive: quiz page */
@media (max-width: 768px) {
    .quiz-page { padding: 100px 0 56px; }
    .quiz-options { grid-template-columns: 1fr; }
    .quiz-option { min-height: 44px; }
    .quiz-email-step { padding: 28px 20px; }
    .result-badge { padding: 28px 20px; }
    .result-badge h2 { font-size: 1.5rem; }
    .result-cta { padding: 24px 20px; }
}
@media (max-width: 480px) {
    .quiz-page { padding: 88px 0 40px; }
    .qp-hero h1 { font-size: 1.5rem; }
    .quiz-question h2 { font-size: 1.05rem; }
    .quiz-option { padding: 14px; font-size: 0.85rem; }
    .result-vector, .result-tips { padding: 18px; }
    .result-description { font-size: 0.88rem; }
    .sb-detail { padding-left: 0; flex-direction: column; gap: 2px; }
}

/* ==============================================
   COOKIE CONSENT BANNER
============================================== */
.cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0;
    z-index: 9999;
    background: var(--navy);
    border-top: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 -4px 24px rgba(0,0,0,0.18);
    padding: 20px 0;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.cookie-banner.cb-visible {
    transform: translateY(0);
}
.cookie-banner .container {
    display: flex;
    align-items: center;
    gap: 24px;
}
.cb-text {
    flex: 1;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
}
.cb-text a {
    color: var(--green);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.cb-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.cb-btn {
    padding: 10px 22px;
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: opacity 0.2s, transform 0.15s;
    white-space: nowrap;
}
.cb-btn:hover { opacity: 0.9; transform: translateY(-1px); }
.cb-accept {
    background: var(--green);
    color: var(--navy);
}
.cb-reject {
    background: transparent;
    color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.2);
}
.cb-reject:hover {
    border-color: rgba(255,255,255,0.4);
    color: #fff;
}

@media (max-width: 640px) {
    .cookie-banner .container {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    .cb-buttons { width: 100%; }
    .cb-btn { flex: 1; padding: 12px 16px; }
}

/* ==============================================
   VECTOR METHOD PAGE
============================================== */

/* Hero - dark navy with gradient */
.vp-hero {
    background: linear-gradient(168deg, #0a1520 0%, #162638 50%, #1a3050 100%);
    padding: 120px 0 64px;
    color: #fff;
}
.vp-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 8px;
    color: #fff;
}
.breadcrumb-nav {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 16px;
}
.breadcrumb-nav a { color: rgba(255,255,255,0.5); text-decoration: none; }
.breadcrumb-nav a:hover { color: rgba(255,255,255,0.8); }
.breadcrumb-nav span:last-child { color: rgba(255,255,255,0.75); }
.vp-green { color: var(--green); }
.vp-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: 28px;
}
.vp-lead {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    max-width: 640px;
    line-height: 1.7;
    margin-bottom: 20px;
}
.vp-lead strong { color: #fff; }
.vp-quote {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--green);
    font-style: italic;
}

/* VECTOR tabs section */
.vp-tabs-section {
    background: #F1F5F9;
}

/* Sticky pill strip bar */
.vp-strip-bar {
    background: var(--bg);
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 72px;
    z-index: 50;
    transition: padding 0.25s, box-shadow 0.25s;
}
.vp-strip-bar.stuck {
    padding: 14px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.vp-strip {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.vp-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px 10px 10px;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 100px;
    color: #0F1D2D;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: box-shadow 0.2s, transform 0.15s, border-color 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    font-family: inherit;
}
.vp-pill:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.vp-pill.active {
    border-color: var(--green);
    box-shadow: 0 0 0 2px rgba(43,200,138,0.25), 0 4px 12px rgba(0,0,0,0.08);
    background: var(--green-50);
}
.vp-pill-letter {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 0.85rem;
}

/* Promise bar */
.vp-promise {
    padding: 28px 0;
    background: #F1F5F9;
}
.vp-promise-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 720px;
    margin: 0 auto;
    padding: 28px 36px;
    background: #0F1D2D;
    border-radius: 16px;
    color: #fff;
    box-shadow: 0 8px 30px rgba(15,29,45,0.3);
}
.vp-promise-icon {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0;
}
.vp-dot-green, .vp-dot-red {
    width: 18px;
    height: 18px;
    border-radius: 50%;
}
.vp-dot-green { background: #22c55e; box-shadow: 0 0 8px rgba(34,197,94,0.5); }
.vp-dot-red { background: #ef4444; box-shadow: 0 0 8px rgba(239,68,68,0.5); }
.vp-promise-text strong {
    display: block;
    color: var(--green);
    font-size: 1.05rem;
    margin-bottom: 6px;
}
.vp-promise-text span {
    color: rgba(255,255,255,0.65);
    font-size: 0.88rem;
    line-height: 1.6;
}

/* Tab panels container */
.vp-panels {
    padding: 40px 0 32px;
}

/* Tab panel show/hide */
.vp-tab-panel {
    display: none;
    animation: vpFadeIn 0.3s ease;
}
.vp-tab-panel.active { display: block; }
@keyframes vpFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Single dimension card */
.vd {
    position: relative;
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.06);
    overflow: hidden;
    max-width: 820px;
    margin: 0 auto;
    border: none;
}
.vd-accent {
    height: 5px;
    width: 100%;
}
.vd-inner {
    padding: 36px 40px;
}
.vd-top {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}
.vd-badge {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 1.6rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.vd-top h2 {
    font-size: 1.3rem;
    margin-bottom: 2px;
}
.vd-q {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}
.vd-desc {
    font-size: 0.93rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Two-column inside dimension */
.vd-grid {
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 24px;
    margin-bottom: 20px;
}
.vd-monitors h3 {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    font-weight: 700;
    margin-bottom: 10px;
}
.vd-monitors ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.vd-monitors li {
    font-size: 0.9rem;
    color: var(--text);
    padding: 5px 0 5px 18px;
    position: relative;
    line-height: 1.5;
}
.vd-monitors li::before {
    content: '';
    position: absolute;
    left: 0; top: 13px;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--green);
}

/* Signal status column */
.vd-signals {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 18px 20px;
    background: #F8FAFC;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
    align-self: start;
}
.vd-sig {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.84rem;
    color: #475569;
    line-height: 1.3;
}
.vd-sig-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 6px rgba(0,0,0,0.12);
}

/* Example quote */
.vd-ex {
    border-left: 4px solid var(--green);
    padding: 18px 24px;
    margin: 0;
    background: #ECFDF5;
    border-radius: 0 12px 12px 0;
    font-size: 0.9rem;
    font-style: italic;
    color: #475569;
    line-height: 1.7;
}

/* Hierarchy section */
.vp-hierarchy {
    padding: 56px 0;
    background: var(--surface);
}
.vp-hier-stack {
    max-width: 480px;
    margin: 0 auto;
}
.vp-hier-row {
    text-align: center;
    padding: 24px 28px;
    border-radius: 14px;
    border: 1px solid #E2E8F0;
    background: #FFFFFF;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.vp-hier-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    font-weight: 700;
    margin-bottom: 12px;
}
.vp-hier-badges {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
}
.vp-hier-badges span {
    width: 42px; height: 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}
.vp-hier-note {
    font-size: 0.82rem;
    color: var(--text-secondary);
}
.vp-hier-connector {
    width: 2px;
    height: 20px;
    background: var(--border);
    margin: 0 auto;
}
.vp-hier-1 { border: 2px solid var(--green); background: #ECFDF5; box-shadow: 0 4px 14px rgba(43,200,138,0.15); }

/* Contrast columns (not/yes) */
.vp-contrast {
    padding: 56px 0;
    background: var(--bg);
}
.vp-contrast-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 720px;
    margin: 0 auto;
}
.vp-con-col {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
}
.vp-con-header {
    padding: 14px 20px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.vp-con-no .vp-con-header { background: #fef2f2; color: #DC2626; border-bottom: 2px solid #fecaca; }
.vp-con-yes .vp-con-header { background: var(--green-50); color: #059669; border-bottom: 2px solid var(--green-100); }
.vp-con-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    font-size: 0.9rem;
    color: var(--text);
    background: var(--surface);
    border-bottom: 1px solid var(--border-light);
}
.vp-con-item:last-child { border-bottom: none; }
.vp-con-no .vp-con-item span:first-child { color: #DC2626; font-weight: 700; }
.vp-con-yes .vp-con-item span:first-child { color: #059669; font-weight: 700; font-size: 1.1rem; }

/* Responsive */
@media (max-width: 768px) {
    .vp-hero { padding: 100px 0 48px; }
    .vp-quote { font-size: 1.2rem; }
    .vp-strip-bar { top: 54px; }
    .vp-strip { gap: 8px; }
    .vp-pill { padding: 8px 14px 8px 8px; font-size: 0.82rem; }
    .vp-pill-letter { width: 28px; height: 28px; font-size: 0.78rem; }
    .vp-pill-name { display: none; }
    .vp-promise-inner { flex-direction: column; text-align: center; padding: 20px; }
    .vp-promise-icon { flex-direction: row; justify-content: center; }
    .vd-inner { padding: 24px 20px; }
    .vd-grid { grid-template-columns: 1fr; }
    .vp-contrast-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .vp-hero h1 { font-size: 1.6rem; }
    .vd-top { flex-direction: column; text-align: center; }
    .vd-badge { width: 44px; height: 44px; font-size: 1.2rem; }
}
