/* ═══════════════════════════════════════════════════════════════════
   DNBL — #DontBeLarry Campaign Theme  (standalone — site.css NOT loaded)
   Verisq LiveThreat™ Trial Experience
   ═══════════════════════════════════════════════════════════════════ */

/* ─── Reset & Variables ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --orange: #E8600A; --orange-light: #F07B2E;
    --orange-dim: rgba(232,96,10,0.08); --orange-border: rgba(232,96,10,0.18);
    --orange-glow: rgba(232,96,10,0.25);
    --navy: #1a1a2e;
    --green: #16a34a; --green-bg: #dcfce7;
    --blue: #2563eb; --blue-bg: #dbeafe;
    --yellow: #d97706; --yellow-bg: #fef3c7;
    --red: #dc2626; --red-bg: #fee2e2; --red-soft: #fef2f2;
    --purple: #7c3aed;
    --text: #1a1a1a; --text-mid: #4b5563; --text-muted: #9ca3af;
    --bg: #f5f5f5; --white: #ffffff;
    --border: #e5e7eb; --border-light: #f3f4f6;
    --radius: 12px;
    --shadow: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --shadow-orange: 0 4px 20px rgba(232,96,10,0.3);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --mono: 'JetBrains Mono', 'SF Mono', 'Consolas', monospace;
    --grade-a: #16a34a; --grade-b: #2563eb; --grade-c: #d97706;
    --grade-d: #ea580c; --grade-f: #dc2626;
    --tier-advanced: #16a34a; --tier-intermediate: #d97706; --tier-basic: #dc2626;
}

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }

/* ════════════════════════════════════════════════════════════════════
   LANDING PAGE  (.dnbl-landing)
   ════════════════════════════════════════════════════════════════════ */

.dnbl-landing { min-height: 100vh; background: var(--white); }

/* ─── Fixed Header ───────────────────────────────────────────────── */
.landing-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: .75rem 2rem;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid var(--border);
}
.landing-header-inner {
    max-width: 1320px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
}

/* ─── Hero ────────────────────────────────────────────────────────── */
.hero {
    min-height: 100vh; padding: 6rem 2rem 4rem;
    display: grid; grid-template-columns: 1.15fr 1fr; gap: 4rem;
    max-width: 1320px; margin: 0 auto; align-items: center;
}
.campaign-pill {
    display: inline-flex; align-items: center; gap: .5rem;
    background: var(--red-soft); border: 1px solid rgba(220,38,38,.15);
    padding: .4rem 1rem; border-radius: 100px; margin-bottom: 1.5rem;
}
.campaign-pill-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--red); animation: dnbl-pulse 2s infinite;
}
@keyframes dnbl-pulse { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }
.campaign-pill-text {
    font-size: .8125rem; font-weight: 700; color: var(--red);
    letter-spacing: .04em; text-transform: uppercase; font-family: var(--mono);
}
.hero-headline {
    font-size: 3.5rem; font-weight: 800; line-height: 1.08;
    margin-bottom: 1.25rem; letter-spacing: -.02em; color: var(--text);
}
.hero-headline em { font-style: normal; color: var(--orange); }
.hero-sub {
    font-size: 1.125rem; color: var(--text-mid);
    margin-bottom: 2rem; line-height: 1.7; max-width: 520px;
}

/* ─── Excuse Rotator ─────────────────────────────────────────────── */
.excuse-box {
    background: var(--red-soft); border: 1px solid rgba(220,38,38,.12);
    border-radius: var(--radius); padding: 1rem 1.25rem; margin-bottom: 2rem;
}
.excuse-label {
    display: flex; align-items: center; gap: .4rem;
    font-size: .6875rem; font-weight: 700; letter-spacing: .1em;
    color: var(--red); text-transform: uppercase;
    margin-bottom: .4rem; font-family: var(--mono);
}
.excuse-text {
    font-size: 1.0625rem; color: #991b1b;
    font-style: italic; font-weight: 500; min-height: 1.5rem;
}

/* ─── Form Card ──────────────────────────────────────────────────── */
.form-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    position: relative; overflow: hidden;
}
.form-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--orange-light), var(--orange));
}
.form-header { text-align: center; margin-bottom: 2rem; }
.form-header h2 {
    font-size: 1.375rem; font-weight: 700; margin-bottom: .375rem;
}
.form-header p { font-size: .875rem; color: var(--text-muted); }
.form-free-badge {
    display: inline-flex; align-items: center; gap: .4rem;
    background: var(--green-bg); color: var(--green);
    font-size: .75rem; font-weight: 700; padding: .25rem .75rem;
    border-radius: 100px; margin-bottom: 1rem;
    font-family: var(--mono); letter-spacing: .5px;
}

/* ─── Form Fields ────────────────────────────────────────────────── */
.form-group { margin-bottom: 1rem; }
.form-label {
    display: block; font-size: .8125rem; font-weight: 600;
    color: var(--text-mid); margin-bottom: .375rem;
}
.form-input {
    width: 100%; padding: .625rem .75rem;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: .875rem; font-family: var(--font);
    color: var(--text); background: var(--white);
    transition: all .2s; outline: none;
}
.form-input:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px var(--orange-dim);
}
.form-input::placeholder { color: var(--text-muted); }
.form-input.error {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(220,38,38,.08);
}
.form-error { font-size: .75rem; color: var(--red); margin-top: .25rem; }
.form-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: .75rem;
}
.form-disclaimer {
    text-align: center; font-size: .75rem;
    color: var(--text-muted); margin-top: 1rem; line-height: 1.5;
}
.form-trust {
    display: flex; align-items: center; justify-content: center; gap: .4rem;
    margin-top: 1.25rem; padding-top: 1rem;
    border-top: 1px solid var(--border-light);
    font-size: .8125rem; font-weight: 500; color: var(--text-muted);
}

/* ─── Social Proof ───────────────────────────────────────────────── */
.social-proof {
    padding: 4rem 2rem; background: var(--bg);
    border-top: 1px solid var(--border);
}
.social-inner { max-width: 900px; margin: 0 auto; }
.stats-row {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.stat-card {
    padding: 1.5rem; background: var(--white);
    border-radius: var(--radius); border: 1px solid var(--border-light);
    text-align: center;
}
.stat-number {
    font-size: 2.5rem; font-weight: 800; color: var(--orange);
    line-height: 1; margin-bottom: .375rem; font-family: var(--mono);
}
.stat-label { font-size: .8125rem; color: var(--text-muted); font-weight: 500; }

/* ─── Success Overlay ────────────────────────────────────────────── */
.success-overlay {
    position: fixed; inset: 0; background: rgba(250,250,250,.95);
    backdrop-filter: blur(10px); z-index: 200;
    display: flex; align-items: center; justify-content: center;
}
.success-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: 20px; padding: 3rem; max-width: 480px;
    width: 100%; text-align: center;
    box-shadow: var(--shadow-lg); animation: dnbl-slideUp .4s ease-out;
}
.success-check {
    width: 64px; height: 64px; border-radius: 50%;
    background: var(--green-bg); display: flex;
    align-items: center; justify-content: center;
    margin: 0 auto 1.5rem; color: var(--green);
}

/* ════════════════════════════════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════════════════════════════════ */
.btn-add {
    display: inline-flex; align-items: center; gap: .4rem;
    background: var(--orange); color: #fff;
    padding: .5rem 1rem; border-radius: 8px;
    font-size: .8125rem; font-weight: 600; border: none;
    cursor: pointer; transition: all .2s;
    box-shadow: 0 2px 8px rgba(232,96,10,.2);
    font-family: var(--font); text-decoration: none;
}
.btn-add:hover { background: var(--orange-light); }
.btn-add:disabled { opacity: .4; cursor: not-allowed; }

.btn-primary {
    display: inline-flex; align-items: center; gap: .4rem;
    background: var(--orange); color: #fff;
    padding: .625rem 1.25rem; border-radius: 10px;
    font-size: .9375rem; font-weight: 700; border: none;
    cursor: pointer; box-shadow: var(--shadow-orange);
    font-family: var(--font); transition: all .2s; text-decoration: none;
}
.btn-primary:hover { background: var(--orange-light); transform: translateY(-1px); }
.btn-primary:disabled { opacity: .4; cursor: not-allowed; transform: none; }

.btn-secondary {
    display: inline-flex; align-items: center; gap: .4rem;
    padding: .5rem 1.25rem; border-radius: 8px;
    border: 1px solid var(--border); background: var(--white);
    color: var(--text-mid); font-size: .875rem; font-weight: 500;
    cursor: pointer; font-family: var(--font); text-decoration: none;
}
.btn-secondary:hover { background: var(--border-light); }

.btn-subscribe {
    display: flex; align-items: center; gap: .4rem;
    background: var(--orange); color: #fff;
    padding: .4rem 1rem; border-radius: 8px;
    font-size: .8125rem; font-weight: 700; border: none;
    cursor: pointer; transition: all .2s;
    box-shadow: var(--shadow-orange); font-family: var(--font); text-decoration: none;
}
.btn-subscribe:hover { background: var(--orange-light); transform: translateY(-1px); }

.btn-refresh {
    display: flex; align-items: center; gap: .4rem;
    background: var(--white); color: var(--text-mid);
    padding: .5rem .875rem; border-radius: 8px;
    font-size: .8125rem; font-weight: 500;
    border: 1px solid var(--border); cursor: pointer; font-family: var(--font);
}
.btn-refresh:hover { background: var(--border-light); }

/* ─── Shared Components ──────────────────────────────────────────── */
.trial-badge {
    display: inline-flex; align-items: center; gap: .4rem;
    background: var(--yellow-bg); border: 1px solid rgba(217,119,6,.2);
    padding: .3rem .75rem; border-radius: 100px;
    font-size: .6875rem; font-weight: 700;
    color: var(--yellow); font-family: var(--mono);
    text-transform: uppercase; letter-spacing: .5px;
}

.alert-banner {
    background: var(--red-bg); border: 1px solid rgba(220,38,38,.15);
    border-radius: var(--radius); padding: .75rem 1.25rem;
    margin-bottom: 1.5rem; display: flex; align-items: center; gap: .75rem;
}
.alert-text { font-size: .8125rem; color: #991b1b; font-weight: 500; }
.alert-text strong { font-weight: 700; }

@keyframes dnbl-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.spin { animation: dnbl-spin 1s linear infinite; }
@keyframes dnbl-slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }


/* ════════════════════════════════════════════════════════════════════
   APP LAYOUT  (.dnbl-app) — header, footer, dashboard
   ════════════════════════════════════════════════════════════════════ */

.dnbl-app { min-height: 100vh; display: flex; flex-direction: column; background: var(--bg); }

/* ─── App Header ─────────────────────────────────────────────────── */
.dnbl-header {
    background: var(--white); border-bottom: 1px solid var(--border);
    padding: 0 2rem; height: 60px;
    display: flex; align-items: center; justify-content: space-between;
    position: sticky; top: 0; z-index: 50;
}
.header-left { display: flex; align-items: center; gap: 1.25rem; }
.logo-img { height: 34px; width: auto; }
.header-divider { width: 1px; height: 28px; background: var(--border); }
.header-right { display: flex; align-items: center; gap: 1rem; }
.user-chip {
    display: flex; align-items: center; gap: .5rem;
    padding: .375rem .75rem; border-radius: 8px; background: var(--border-light);
}
.user-avatar {
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--orange); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: .75rem; font-weight: 700;
}
.user-name { font-size: .8125rem; font-weight: 500; color: var(--text-mid); }
.btn-logout {
    display: flex; align-items: center; justify-content: center;
    width: 32px; height: 32px; border-radius: 8px;
    border: 1px solid var(--border); background: transparent;
    color: var(--text-mid); cursor: pointer; transition: all .2s;
}
.btn-logout:hover { background: #fee2e2; color: #dc2626; border-color: #fca5a5; }

/* ─── Main Content ───────────────────────────────────────────────── */
.dnbl-main {
    max-width: 1320px; margin: 0 auto; padding: 1.5rem 2rem;
    flex: 1; width: 100%;
}

/* ─── Welcome Banner ─────────────────────────────────────────────── */
.welcome-banner {
    background: var(--white); border: 1px solid var(--border);
    border-radius: 16px; padding: 1.5rem 2rem; margin-bottom: 1.5rem;
    display: flex; align-items: center; justify-content: space-between;
    position: relative; overflow: hidden;
}
.welcome-banner::before {
    content: ''; position: absolute; top: 0; left: 0; bottom: 0; width: 4px; background: var(--orange);
}
.welcome-left h2 { font-size: 1.25rem; font-weight: 700; margin-bottom: .25rem; }
.welcome-left p { font-size: .875rem; color: var(--text-muted); }

/* ─── Vendor Counter Ring ────────────────────────────────────────── */
.vendor-counter { display: flex; align-items: center; gap: 1.5rem; }
.counter-ring { position: relative; width: 72px; height: 72px; }
.counter-ring svg { width: 72px; height: 72px; transform: rotate(-90deg); }
.counter-ring .track { fill: none; stroke: var(--border-light); stroke-width: 6; }
.counter-ring .fill {
    fill: none; stroke: var(--orange); stroke-width: 6; stroke-linecap: round;
    stroke-dasharray: 188.5; transition: stroke-dashoffset .6s ease;
}
.counter-ring .ring-text {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center; flex-direction: column;
}
.ring-number { font-size: 1.25rem; font-weight: 800; line-height: 1; font-family: var(--mono); }
.ring-label { font-size: .5625rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }
.counter-remaining { font-size: 1.125rem; font-weight: 700; color: var(--orange); }
.counter-sub { font-size: .75rem; color: var(--text-muted); }

/* ─── KPI Cards ──────────────────────────────────────────────────── */
.kpi-row {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 1rem; margin-bottom: 1.5rem;
}
.kpi-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 1.25rem;
}
.kpi-icon {
    width: 36px; height: 36px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center; margin-bottom: .75rem;
}
.kpi-icon.orange { background: var(--orange-dim); color: var(--orange); }
.kpi-icon.green { background: var(--green-bg); color: var(--green); }
.kpi-icon.blue { background: var(--blue-bg); color: var(--blue); }
.kpi-icon.red { background: var(--red-bg); color: var(--red); }
.kpi-value { font-size: 2rem; font-weight: 800; line-height: 1; font-family: var(--mono); margin-bottom: .25rem; }
.kpi-label { font-size: .75rem; color: var(--text-muted); font-weight: 500; }
.finding-count { color: var(--red); }

/* ─── Section Header ─────────────────────────────────────────────── */
.section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.section-header h3 { font-size: 1.0625rem; font-weight: 700; }
.section-actions { display: flex; align-items: center; gap: .75rem; }

/* ─── Vendor Cards ───────────────────────────────────────────────── */
.vendor-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 1rem; margin-bottom: 2rem;
}
.vendor-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: 14px; padding: 1.5rem; transition: all .2s; position: relative;
}
.vendor-card:hover { border-color: var(--orange-border); box-shadow: var(--shadow-md); }
.vendor-card.pending { opacity: .75; }
.vendor-card.my-org {
    background: linear-gradient(135deg, #eff6ff 0%, #f0f7ff 50%, #fefce8 100%);
    border: 2px solid #3b82f6;
    box-shadow: 0 2px 12px rgba(59,130,246,.12);
}
.vendor-card.my-org:hover { border-color: #1d4ed8; box-shadow: 0 4px 20px rgba(59,130,246,.18); }
.my-org-badge {
    position: absolute; top: -1px; right: 16px;
    background: linear-gradient(135deg, #1a56db, #2563eb);
    color: #fff; font-size: .5625rem; font-weight: 800;
    letter-spacing: 1.2px; padding: 3px 10px 4px;
    border-radius: 0 0 6px 6px; text-transform: uppercase;
}
.vc-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 1rem; }
.vc-identity { display: flex; align-items: center; gap: .75rem; }
.vc-avatar {
    width: 44px; height: 44px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; font-weight: 800; color: #fff;
}
.vc-name { font-size: .9375rem; font-weight: 700; line-height: 1.2; }
.vc-domain { font-size: .75rem; color: var(--text-muted); font-family: var(--mono); }

/* ─── Rating Circle ──────────────────────────────────────────────── */
.rating-hero { display: flex; align-items: center; gap: .5rem; }
.rating-circle {
    width: 56px; height: 56px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; position: relative;
}
.rating-circle svg { position: absolute; width: 56px; height: 56px; transform: rotate(-90deg); }
.rc-track { fill: none; stroke: var(--border-light); stroke-width: 5; }
.rc-fill { fill: none; stroke-width: 5; stroke-linecap: round; stroke-dasharray: 144.5; transition: stroke-dashoffset .6s ease; }
.rating-number { font-size: 1.125rem; font-weight: 900; font-family: var(--mono); position: relative; z-index: 1; }
.grade-badge { display: flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 6px; font-weight: 800; font-size: .875rem; color: #fff; }
.grade-a { background: var(--grade-a); } .grade-b { background: var(--grade-b); }
.grade-c { background: var(--grade-c); } .grade-d { background: var(--grade-d); }
.grade-f { background: var(--grade-f); }
.rating-number.ga { color: var(--grade-a); } .rating-number.gb { color: var(--grade-b); }
.rating-number.gc { color: var(--grade-c); } .rating-number.gd { color: var(--grade-d); }
.rating-number.gf { color: var(--grade-f); }

/* ─── Tier Indicators ────────────────────────────────────────────── */
.tier-indicator { display: inline-flex; align-items: center; gap: .25rem; padding: .15rem .5rem; border-radius: 4px; font-size: .6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .3px; }
.tier-advanced { background: var(--green-bg); color: var(--green); }
.tier-intermediate { background: var(--yellow-bg); color: var(--yellow); }
.tier-basic { background: var(--red-bg); color: var(--red); }

/* ─── Vendor Card Details ────────────────────────────────────────── */
.vc-chips { display: flex; flex-wrap: wrap; gap: .375rem; margin-bottom: .75rem; }
.vc-chip { display: inline-flex; align-items: center; gap: .25rem; padding: .2rem .5rem; background: var(--border-light); border-radius: 6px; font-size: .6875rem; font-weight: 600; color: var(--text-mid); }
.vc-chip.warn { background: #ffedd5; color: #c2410c; }
.vc-assessed { font-size: .6875rem; color: var(--text-muted); margin-bottom: .5rem; }
.vc-stats { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; margin-bottom: .875rem; }
.vc-stat { background: var(--border-light); border-radius: 8px; padding: .5rem .75rem; }
.vc-stat-label { font-size: .625rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: .5px; margin-bottom: .125rem; }
.vc-stat-value { font-size: .8125rem; font-weight: 700; }
.status-pill { display: inline-flex; align-items: center; gap: .3rem; padding: .15rem .5rem; border-radius: 100px; font-size: .6875rem; font-weight: 600; }
.status-pill.completed { background: var(--green-bg); color: var(--green); }
.status-pill.scanning { background: var(--blue-bg); color: var(--blue); }

/* ─── Scan Progress ──────────────────────────────────────────────── */
.scan-progress { margin-bottom: .75rem; }
.scan-track { height: 6px; background: var(--border-light); border-radius: 3px; overflow: hidden; }
.scan-fill { height: 100%; background: var(--blue); border-radius: 3px; animation: dnbl-scanPulse 2s ease-in-out infinite; }
@keyframes dnbl-scanPulse { 0%, 100% { opacity: 1; } 50% { opacity: .6; } }
.scan-text { display: flex; align-items: center; gap: .35rem; font-size: .6875rem; color: var(--blue); font-weight: 600; margin-top: .375rem; }

/* ─── Card Actions ───────────────────────────────────────────────── */
.vc-actions { display: flex; gap: .5rem; padding-top: .875rem; border-top: 1px solid var(--border-light); }
.card-btn {
    flex: 1; display: flex; align-items: center; justify-content: center; gap: .35rem;
    padding: .5rem; border-radius: 8px; border: 1px solid var(--border); background: var(--white);
    color: var(--text-mid); font-size: .75rem; font-weight: 600;
    cursor: pointer; transition: all .15s; font-family: var(--font); text-decoration: none;
}
.card-btn:hover { background: var(--border-light); color: var(--text); }
.card-btn:disabled { opacity: .4; cursor: not-allowed; }
.card-btn.primary { background: var(--orange-dim); color: var(--orange); border-color: var(--orange-border); }
.card-btn.primary:hover { background: rgba(232,96,10,.12); }

/* ─── Subscribe CTA ──────────────────────────────────────────────── */
.subscribe-cta {
    background: linear-gradient(135deg, var(--navy) 0%, #2d2d44 100%);
    border-radius: 16px; padding: 2rem 2.5rem;
    display: flex; align-items: center; justify-content: space-between;
    color: #fff; margin-bottom: 2rem;
}
.cta-content h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: .25rem; color: #fff; }
.cta-content p { font-size: .875rem; opacity: .7; color: #fff; }

/* ─── Terms Overlay ──────────────────────────────────────────────── */
.terms-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.6); backdrop-filter: blur(8px); z-index: 300; display: flex; align-items: center; justify-content: center; }
.terms-card { background: var(--white); border-radius: 20px; width: 100%; max-width: 600px; box-shadow: var(--shadow-lg); animation: dnbl-slideUp .3s ease-out; overflow: hidden; }
.terms-top { background: linear-gradient(135deg, var(--navy) 0%, #2d2d44 100%); padding: 2rem 2.5rem; color: #fff; text-align: center; }
.terms-top h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: .375rem; color: #fff; }
.terms-top p { font-size: .9375rem; opacity: .7; color: #fff; }
.terms-body { padding: 2rem 2.5rem; max-height: 40vh; overflow-y: auto; }
.terms-body h3 { font-size: 1rem; font-weight: 700; margin: 1rem 0 .5rem; }
.terms-body p { font-size: .875rem; color: var(--text-mid); line-height: 1.6; margin-bottom: .75rem; }
.terms-body ul { padding-left: 1.25rem; margin-bottom: .75rem; }
.terms-body li { font-size: .875rem; color: var(--text-mid); line-height: 1.5; margin-bottom: .25rem; }
.terms-footer { display: flex; justify-content: space-between; align-items: center; padding: 1.25rem 2.5rem; border-top: 1px solid var(--border-light); background: var(--border-light); }
.terms-check { display: flex; align-items: center; gap: .75rem; }
.terms-check input[type="checkbox"] { width: 20px; height: 20px; accent-color: var(--orange); cursor: pointer; }
.terms-check label { font-size: .8125rem; font-weight: 600; cursor: pointer; }

/* ─── Modals ─────────────────────────────────────────────────────── */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.4); backdrop-filter: blur(4px); z-index: 100; display: flex; align-items: center; justify-content: center; }
.modal { background: var(--white); border-radius: 16px; width: 100%; max-width: 520px; box-shadow: var(--shadow-lg); animation: dnbl-slideUp .25s ease-out; }
.modal-header { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--border-light); }
.modal-title { font-size: 1.0625rem; font-weight: 700; }
.modal-close { background: none; border: none; cursor: pointer; color: var(--text-muted); padding: .25rem; border-radius: 6px; }
.modal-close:hover { background: var(--border-light); }
.modal-body { padding: 1.5rem; }
.modal-footer { display: flex; justify-content: flex-end; gap: .75rem; padding: 1rem 1.5rem; border-top: 1px solid var(--border-light); }
.ai-note { background: var(--blue-bg); border-radius: 8px; padding: .75rem 1rem; display: flex; align-items: flex-start; gap: .5rem; margin-top: .75rem; }
.ai-note span { font-size: .75rem; color: #1e40af; line-height: 1.4; }

/* ─── Footer ─────────────────────────────────────────────────────── */
.dnbl-footer {
    text-align: center; padding: 1.5rem; font-size: .75rem; color: rgba(255,255,255,.6);
    border-top: 1px solid rgba(255,255,255,.08);
    background: #1a1a2e;
}
.dnbl-footer a { color: var(--orange); text-decoration: none; }
.verisq-footer {
    display: flex; align-items: center; justify-content: center; gap: .5rem;
    padding: .75rem 0; margin-top: .5rem; color: rgba(255,255,255,.7);
}
.verisq-footer-logo { font-weight: 800; font-size: .875rem; color: #fff; letter-spacing: .5px; }
.verisq-footer-logo .va { color: var(--orange); }

/* ════════════════════════════════════════════════════════════════════
   HOW IT WORKS PAGE
   ════════════════════════════════════════════════════════════════════ */
.hiw-hero {
    padding: 6.5rem 2rem 2.5rem;
    text-align: center;
    background: var(--white);
    border-bottom: 1px solid var(--border);
}
.hiw-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -.02em;
    margin-bottom: .5rem;
    color: #1a1a1a;
}
.hiw-hero p {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}
.hiw-steps-section {
    max-width: 860px;
    margin: 0 auto;
    padding: 3.5rem 2rem;
}
.hiw-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
    position: relative;
}
.hiw-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 56px;
    left: 39px;
    width: 2px;
    height: calc(100% - 16px);
    background: var(--border);
}
.hiw-step-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    font-family: var(--mono);
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}
.hiw-step-circle.s1 { background: var(--orange); }
.hiw-step-circle.s2 { background: #2563eb; }
.hiw-step-circle.s3 { background: #16a34a; }
.hiw-step-circle.s4 { background: #7c3aed; }
.hiw-step-circle.s5 { background: #d97706; }
.hiw-step-body { padding-top: .5rem; }
.hiw-step-body h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: .5rem;
    color: #1a1a1a;
}
.hiw-step-body p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: .9375rem;
}
.hiw-highlight {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    background: rgba(232,96,10,.08);
    color: var(--orange);
    padding: .25rem .625rem;
    border-radius: 6px;
    font-size: .75rem;
    font-weight: 600;
    margin-top: .625rem;
}
.hiw-included-section {
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 3.5rem 2rem;
}
.hiw-included-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}
.hiw-included-inner h2 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: .375rem;
}
.hiw-included-sub {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}
.hiw-included-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    text-align: left;
}
.hiw-inc-card {
    background: #fafafa;
    border: 1px solid var(--border-light);
    border-radius: 14px;
    padding: 1.75rem;
}
.hiw-inc-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.hiw-inc-icon.orange { background: rgba(232,96,10,.08); color: var(--orange); }
.hiw-inc-icon.blue   { background: #dbeafe; color: #2563eb; }
.hiw-inc-icon.green  { background: #dcfce7; color: #16a34a; }
.hiw-inc-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: .375rem;
}
.hiw-inc-card > p {
    font-size: .8125rem;
    color: var(--text-muted);
    line-height: 1.6;
}
.hiw-inc-card ul {
    list-style: none;
    margin-top: .5rem;
    padding: 0;
}
.hiw-inc-card li {
    font-size: .8125rem;
    color: var(--text-muted);
    padding: .2rem 0 .2rem 1.125rem;
    position: relative;
}
.hiw-inc-card li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: 700;
}
.hiw-cta {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
    padding: 3.5rem 2rem;
    text-align: center;
    color: #fff;
}
.hiw-cta h2 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: .5rem;
}
.hiw-cta p {
    opacity: .7;
    margin-bottom: 2rem;
    font-size: 1rem;
}

/* ════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .hero { grid-template-columns: 1fr; padding-top: 5.5rem; }
    .hero-headline { font-size: 2.5rem; }
    .hiw-included-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
    .kpi-row { grid-template-columns: repeat(2, 1fr); }
    .vendor-grid { grid-template-columns: 1fr; }
    .subscribe-cta { flex-direction: column; gap: 1rem; text-align: center; }
}
@media (max-width: 640px) {
    .hero { padding: 5rem 1rem 2rem; gap: 2rem; }
    .hero-headline { font-size: 2rem; }
    .stats-row { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .hiw-hero h1 { font-size: 2rem; }
    .hiw-step { grid-template-columns: 60px 1fr; gap: 1rem; }
}

/* Feature page nav links */
.nav-link-fp{font-size:.875rem;font-weight:600;color:var(--text-mid);text-decoration:none;transition:color .2s}
.nav-link-fp:hover{color:var(--orange)}
