/* ═══════════════════════════════════════════════════════════════
   EASYSTREET — Premium Design System v3.1 HARDENED
   VERITAS Ω Framework • Zero-trust Dark Mode • Glassmorphism
   High-Assurance UI • Deterministic Evidence SaaS
   ═══════════════════════════════════════════════════════════════ */

/* Accessibility — WCAG AA focus indicators */
*:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(212, 168, 67, 0.2);
}

/* Skip to main content (screen readers + keyboard) */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--bg-primary);
    padding: 12px 24px;
    border-radius: 0 0 8px 8px;
    font-weight: 700;
    z-index: 10000;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

:root {
    --bg-primary: #06070b;
    --bg-secondary: #0c0e14;
    --bg-card: #11131b;
    --bg-elevated: #161822;
    --bg-terminal: #080a10;

    --text-primary: #f0eeeb;
    --text-secondary: #9b98a0;
    --text-muted: #5c5a63;

    --accent: #d4a843;
    --accent-bright: #f0c54d;
    --accent-dim: #8b7230;
    --accent-glow: rgba(212, 168, 67, 0.12);

    --green: #4ade80;
    --green-dim: rgba(74, 222, 128, 0.10);
    --red: #f87171;
    --cyan: #67e8f9;

    --border: rgba(255, 255, 255, 0.05);
    --border-accent: rgba(212, 168, 67, 0.2);

    --glass: rgba(255, 255, 255, 0.02);
    --glass-border: rgba(255, 255, 255, 0.04);

    --radius: 14px;
    --radius-lg: 22px;

    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --mono: 'JetBrains Mono', 'Consolas', monospace;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 60px rgba(212, 168, 67, 0.08);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* ═══════════════════ AMBIENT EFFECTS ═══════════════════ */

body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(ellipse at 25% 25%, rgba(212, 168, 67, 0.015) 0%, transparent 50%),
        radial-gradient(ellipse at 75% 75%, rgba(103, 232, 249, 0.008) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* ═══════════════════ NAV ═══════════════════ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(10, 11, 15, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.logo-mark {
    color: var(--accent);
    font-size: 1.5rem;
    filter: drop-shadow(0 0 8px rgba(212, 168, 67, 0.4));
}

.logo-text {
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 0.18em;
    color: var(--text-primary);
}

.logo-badge {
    font-size: 0.6rem;
    font-weight: 600;
    color: var(--accent);
    background: var(--accent-glow);
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 0.06em;
    border: 1px solid rgba(212, 168, 67, 0.15);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, var(--accent), var(--accent-bright)) !important;
    color: var(--bg-primary) !important;
    padding: 9px 22px !important;
    border-radius: 10px;
    font-weight: 700 !important;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 16px rgba(212, 168, 67, 0.2);
    transition: all 0.3s !important;
}

.nav-cta:hover {
    box-shadow: 0 6px 24px rgba(212, 168, 67, 0.35) !important;
    transform: translateY(-1px);
}

.nav-cta::after {
    display: none !important;
}

/* ═══════════════════ HERO ═══════════════════ */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem;
    min-height: 100vh;
    position: relative;
}

.hero-bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
    z-index: -1;
    mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.6) 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.6) 0%, transparent 70%);
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--accent);
    background: var(--accent-glow);
    padding: 7px 18px;
    border-radius: 20px;
    margin-bottom: 2rem;
    border: 1px solid rgba(212, 168, 67, 0.12);
}

.pulse-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(212, 168, 67, 0.5);
    }

    50% {
        opacity: 0.6;
        box-shadow: 0 0 0 6px rgba(212, 168, 67, 0);
    }
}

.hero h1 {
    font-size: 3.4rem;
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent), var(--accent-bright), #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 480px;
    margin-bottom: 2.5rem;
}

.hero-sub strong {
    color: var(--text-primary);
    font-weight: 600;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-bright));
    color: var(--bg-primary);
    padding: 15px 36px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(212, 168, 67, 0.2);
    border: none;
    cursor: pointer;
    font-family: var(--font);
}

.btn-primary:hover {
    box-shadow: 0 8px 32px rgba(212, 168, 67, 0.35);
    transform: translateY(-2px);
}

.btn-secondary {
    color: var(--text-secondary);
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid var(--border);
    transition: all 0.3s;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    border-color: var(--border-accent);
    color: var(--text-primary);
    background: var(--accent-glow);
    transform: translateY(-1px);
}

.btn-icon {
    font-size: 0.8rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.8rem;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--accent);
    font-family: var(--mono);
    font-variant-numeric: tabular-nums;
}

.stat-label {
    display: block;
    font-size: 0.68rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 600;
}

.stat-divider {
    width: 1px;
    height: 32px;
    background: var(--border);
}

.hero-visual {
    position: relative;
}

.hero-visual::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(ellipse at center, rgba(212, 168, 67, 0.06) 0%, transparent 60%);
    border-radius: 30px;
    pointer-events: none;
}

.terminal-window {
    background: var(--bg-terminal);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(212, 168, 67, 0.06),
        0 24px 80px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
    position: relative;
}

.terminal-window::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: repeating-linear-gradient(0deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.003) 2px,
            rgba(255, 255, 255, 0.003) 4px);
    pointer-events: none;
    z-index: 1;
}

.terminal-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid var(--border);
}

.terminal-dots {
    display: flex;
    gap: 7px;
}

.dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
}

.dot.red {
    background: #ff5f57;
    box-shadow: 0 0 6px rgba(255, 95, 87, 0.3);
}

.dot.yellow {
    background: #febc2e;
    box-shadow: 0 0 6px rgba(254, 188, 46, 0.3);
}

.dot.green {
    background: #28c840;
    box-shadow: 0 0 6px rgba(40, 200, 64, 0.3);
}

.terminal-title {
    font-family: var(--mono);
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.08em;
}

.terminal-body {
    padding: 1.3rem 1.6rem;
    font-family: var(--mono);
    font-size: 0.78rem;
    line-height: 2.1;
    position: relative;
    z-index: 2;
}

.term-line {
    opacity: 0;
    animation: termFade 0.4s ease forwards;
}

.term-line:nth-child(1) {
    animation-delay: 0.3s;
}

.term-line:nth-child(2) {
    animation-delay: 0.8s;
}

.term-line:nth-child(3) {
    animation-delay: 1.3s;
}

.term-line:nth-child(4) {
    animation-delay: 1.7s;
}

.term-line:nth-child(5) {
    animation-delay: 2.1s;
}

.term-line:nth-child(6) {
    animation-delay: 2.5s;
}

.term-line:nth-child(7) {
    animation-delay: 2.9s;
}

.term-line:nth-child(8) {
    animation-delay: 3.3s;
}

.term-line:nth-child(9) {
    animation-delay: 3.8s;
}

.term-line:nth-child(10) {
    animation-delay: 4.3s;
}

@keyframes termFade {
    from {
        opacity: 0;
        transform: translateX(-6px);
        filter: blur(2px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
        filter: blur(0);
    }
}

.term-prefix {
    color: var(--cyan);
    text-shadow: 0 0 12px rgba(103, 232, 249, 0.3);
}

.term-pass {
    color: var(--green);
    font-weight: 600;
    text-shadow: 0 0 10px rgba(74, 222, 128, 0.2);
}

.term-verdict {
    color: var(--accent-bright);
    font-weight: 700;
    text-shadow: 0 0 14px rgba(240, 197, 77, 0.3);
}

.term-final {
    border-top: 1px solid var(--border);
    padding-top: 0.5rem;
    margin-top: 0.3rem;
}

.term-hash {
    color: var(--text-muted);
    font-size: 0.7rem;
}

.term-time {
    color: var(--accent);
    font-weight: 600;
}

/* ═══════════════════ PROOF BAR ═══════════════════ */
.proof-bar {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1.4rem 2rem;
    background: var(--bg-secondary);
    position: relative;
    z-index: 1;
}

.proof-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.proof-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: var(--text-muted);
    white-space: nowrap;
    text-transform: uppercase;
}

.proof-logos {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.proof-item {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.3s;
}

.proof-item:hover {
    color: var(--text-primary);
}

/* ═══════════════════ SECTIONS (shared) ═══════════════════ */
.section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

section h2 {
    font-size: 2.6rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 0.8rem;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.section-sub {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto 3.5rem;
    line-height: 1.7;
}

/* ═══════════════════ FEATURES ═══════════════════ */
.features {
    padding: 8rem 2rem;
    position: relative;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 2.2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-dim), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.feature-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    display: inline-block;
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    letter-spacing: -0.01em;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.65;
}

/* ═══════════════════ HOW IT WORKS ═══════════════════ */
.how-it-works {
    padding: 8rem 2rem;
    background: var(--bg-secondary);
    position: relative;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(212, 168, 67, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.step {
    text-align: center;
    flex: 1;
    padding: 0 1.5rem;
}

.step-number {
    font-family: var(--mono);
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(180deg, var(--accent), var(--accent-dim));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.4;
    margin-bottom: 1.2rem;
}

.step-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.step-content p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.65;
}

.step-connector {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-dim), var(--accent), var(--accent-dim));
    margin-top: 2.5rem;
    flex-shrink: 0;
    border-radius: 1px;
}

/* ═══════════════════ COMPARISON ═══════════════════ */
.comparison {
    padding: 8rem 2rem;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.compare-table th,
.compare-table td {
    padding: 1.1rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
    transition: background 0.2s;
}

.compare-table tr:hover td {
    background: rgba(255, 255, 255, 0.01);
}

.compare-table th {
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding-bottom: 1.5rem;
}

.compare-table .row-label {
    text-align: left;
    font-weight: 600;
    color: var(--text-primary);
}

.compare-table td {
    color: var(--text-secondary);
}

.highlight-col {
    color: var(--accent-bright) !important;
    font-weight: 600 !important;
    background: var(--accent-glow) !important;
}

.compare-table th.highlight-col {
    color: var(--accent) !important;
    font-size: 0.9rem !important;
    text-transform: none !important;
}

/* ═══════════════════ CASE STUDY COMPONENTS ═══════════════════ */
.case-studies-section {
    padding: 8rem 2rem;
    background: var(--bg-primary);
    position: relative;
}

.case-studies-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(231, 76, 60, 0.02) 0%, transparent 60%);
    pointer-events: none;
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.case-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 1.8rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--red), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.case-card:hover {
    transform: translateY(-4px);
    border-color: rgba(231, 76, 60, 0.2);
    box-shadow: var(--shadow-lg), 0 0 40px rgba(231, 76, 60, 0.05);
}

.case-card:hover::before {
    opacity: 0.6;
}

.case-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.case-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.case-exploit {
    font-size: 0.75rem;
    color: var(--red);
    font-weight: 600;
}

.case-badge {
    font-family: var(--mono);
    font-size: 0.7rem;
    padding: 4px 10px;
    background: rgba(231, 76, 60, 0.15);
    color: var(--red);
    border-radius: 4px;
    font-weight: 700;
    flex-shrink: 0;
}

.case-desc {
    font-size: 0.78rem;
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
}

.case-gate-grid {
    background: var(--bg-terminal);
    border-radius: 6px;
    padding: 8px 12px;
    font-family: var(--mono);
    font-size: 0.72rem;
    line-height: 1.8;
}

.case-gate-line {
    display: flex;
    justify-content: space-between;
}

.case-gate-name {
    color: var(--text-muted);
}

.case-gate-name.violated {
    color: var(--red);
}

.case-gate-pass {
    color: var(--green);
}

.case-gate-fail {
    color: var(--red);
}

.case-footer {
    margin-top: 0.8rem;
    font-size: 0.72rem;
    color: var(--text-muted);
}

.case-redacted {
    color: var(--accent);
}

.case-summary {
    text-align: center;
    margin-top: 2.5rem;
    position: relative;
    z-index: 1;
}

.case-summary-value {
    font-size: 0.82rem;
    color: var(--accent);
    font-weight: 600;
}

.case-summary-note {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

/* ═══════════════════ VULNERABILITY MATRIX TEASER ═══════════════════ */
.vuln-matrix {
    padding: 6rem 2rem;
    background: var(--bg-secondary);
    position: relative;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.vuln-matrix::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(103, 232, 249, 0.02) 0%, transparent 60%);
    pointer-events: none;
}

.vuln-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
    max-width: 900px;
    margin: 0 auto;
}

.vuln-tag {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 10px 14px;
    font-family: var(--mono);
    font-size: 0.72rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    transition: all 0.3s;
    cursor: default;
}

.vuln-tag:hover {
    border-color: var(--cyan);
    color: var(--cyan);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(103, 232, 249, 0.06);
}

.vuln-tag .vuln-check {
    color: var(--green);
    font-size: 0.65rem;
    font-weight: 700;
    opacity: 0;
    transition: opacity 0.3s;
}

.vuln-tag:hover .vuln-check {
    opacity: 1;
}

.vuln-cta {
    text-align: center;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

.vuln-cta-text {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.vuln-cta-text strong {
    color: var(--cyan);
    font-weight: 600;
}

.vuln-cta-count {
    font-family: var(--mono);
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    display: block;
    margin-bottom: 0.5rem;
}

/* ═══════════════════ TESTIMONIALS ═══════════════════ */
.testimonials {
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(212, 168, 67, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(103, 232, 249, 0.015) 0%, transparent 50%);
    pointer-events: none;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(17, 19, 27, 0.9), rgba(22, 24, 34, 0.95));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: -10px;
    left: 15px;
    font-size: 6rem;
    font-family: Georgia, serif;
    color: var(--accent);
    opacity: 0.07;
    line-height: 1;
    pointer-events: none;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-dim), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.testimonial-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md), var(--shadow-glow);
}

.testimonial-card:hover::after {
    opacity: 1;
}

.testimonial-text {
    font-size: 0.92rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-dim), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    color: var(--bg-primary);
    flex-shrink: 0;
}

.testimonial-name {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text-primary);
}

.testimonial-role {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ═══════════════════ PRICING ═══════════════════ */
.pricing {
    padding: 8rem 2rem;
    background: var(--bg-secondary);
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(212, 168, 67, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.price-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2.8rem 2.2rem;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.price-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.price-card.featured {
    border-color: var(--accent);
    background: linear-gradient(180deg, rgba(212, 168, 67, 0.05), var(--bg-card));
    transform: scale(1.04);
    box-shadow:
        0 0 0 1px var(--accent),
        0 24px 80px rgba(212, 168, 67, 0.12),
        var(--shadow-glow);
}

.price-card.featured:hover {
    transform: scale(1.04) translateY(-6px);
    box-shadow:
        0 0 0 1px var(--accent-bright),
        0 32px 100px rgba(212, 168, 67, 0.18),
        var(--shadow-glow);
}

.price-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent), var(--accent-bright));
    color: var(--bg-primary);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    padding: 5px 18px;
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(212, 168, 67, 0.3);
}

.price-tier {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
}

.price-amount {
    margin-bottom: 0.2rem;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 600;
    vertical-align: super;
    color: var(--text-secondary);
}

.price-value {
    font-size: 3.5rem;
    font-weight: 900;
    font-family: var(--mono);
    letter-spacing: -0.03em;
    background: linear-gradient(180deg, var(--text-primary), var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.featured .price-value {
    background: linear-gradient(180deg, var(--accent-bright), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period {
    color: var(--text-muted);
    font-size: 0.82rem;
    margin-bottom: 2rem;
}

.price-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.price-features li {
    padding: 0.6rem 0;
    font-size: 0.86rem;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
    padding-left: 1.5rem;
}

.price-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 700;
    font-size: 0.82rem;
}

.price-features li strong {
    color: var(--text-primary);
}

.btn-price {
    display: block;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: transparent;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    font-family: var(--font);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-price::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 168, 67, 0.05), transparent);
    transition: left 0.5s;
}

.btn-price:hover::before {
    left: 100%;
}

.btn-price:hover {
    border-color: var(--accent-dim);
    background: var(--accent-glow);
    transform: translateY(-2px);
}

.btn-featured {
    background: linear-gradient(135deg, var(--accent), var(--accent-bright)) !important;
    color: var(--bg-primary) !important;
    border-color: var(--accent) !important;
    box-shadow: 0 4px 16px rgba(212, 168, 67, 0.25);
}

.btn-featured:hover {
    box-shadow: 0 8px 32px rgba(212, 168, 67, 0.4) !important;
}

.btn-sovereign {
    border-color: var(--accent-dim) !important;
    color: var(--accent) !important;
}

/* ═══════════════════ AUDITED BADGE SECTION ═══════════════════ */
.badge-section {
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
}

.badge-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(74, 222, 128, 0.015) 0%, transparent 50%);
    pointer-events: none;
}

.badge-preview {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 14px 28px;
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.06), rgba(74, 222, 128, 0.02));
    border: 1px solid rgba(74, 222, 128, 0.15);
    border-radius: 12px;
    font-family: var(--mono);
    font-size: 0.8rem;
    color: var(--green);
    letter-spacing: 0.06em;
    margin-bottom: 1.5rem;
    transition: all 0.3s;
}

.badge-preview:hover {
    border-color: rgba(74, 222, 128, 0.3);
    box-shadow: 0 0 30px rgba(74, 222, 128, 0.06);
    transform: translateY(-2px);
}

.badge-preview-shield {
    font-size: 1.4rem;
}

.badge-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

.badge-desc strong {
    color: var(--text-primary);
}

/* ═══════════════════ CTA / UPLOAD ═══════════════════ */
.cta-section {
    padding: 8rem 2rem;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(212, 168, 67, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.cta-upload-zone {
    max-width: 620px;
    margin: 0 auto;
    padding: 3.5rem;
    border: 2px dashed rgba(212, 168, 67, 0.15);
    border-radius: var(--radius-lg);
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--bg-card);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-upload-zone::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}

.cta-upload-zone:hover::before {
    width: 600px;
    height: 600px;
}

.cta-upload-zone:hover {
    border-color: var(--accent-dim);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.upload-icon {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.upload-text {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.upload-hint {
    font-size: 0.85rem;
    color: var(--text-muted);
    position: relative;
    z-index: 2;
}

.upload-link {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
    transition: color 0.2s;
}

.upload-link:hover {
    color: var(--accent-bright);
}

.upload-progress {
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    overflow: hidden;
    margin-top: 1rem;
    opacity: 0;
    transition: opacity 0.3s;
    position: relative;
    z-index: 2;
}

.upload-progress.active {
    opacity: 1;
}

.upload-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent), var(--accent-bright), var(--accent));
    background-size: 200% 100%;
    border-radius: 2px;
    transition: width 0.3s ease;
    animation: progressShimmer 1.5s ease-in-out infinite;
}

@keyframes progressShimmer {
    0% {
        background-position: 200% center;
    }

    100% {
        background-position: -200% center;
    }
}

.cta-or {
    text-align: center;
    padding: 2rem 0;
    color: var(--text-muted);
    font-size: 0.82rem;
    position: relative;
    z-index: 1;
}

.api-example {
    max-width: 620px;
    margin: 0 auto;
    background: var(--bg-terminal);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.api-example pre {
    padding: 1.5rem;
    font-family: var(--mono);
    font-size: 0.8rem;
    color: var(--cyan);
    overflow-x: auto;
    line-height: 1.7;
}

/* ═══════════════════ TRUST BADGES ═══════════════════ */
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 8px 16px;
    background: rgba(74, 222, 128, 0.06);
    border: 1px solid rgba(74, 222, 128, 0.12);
    border-radius: 8px;
    font-family: var(--mono);
    font-size: 0.68rem;
    color: var(--green);
    letter-spacing: 0.05em;
}

.trust-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    animation: pulseBadge 2s ease-in-out infinite;
}

@keyframes pulseBadge {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.4);
    }

    50% {
        opacity: 0.7;
        box-shadow: 0 0 0 4px rgba(74, 222, 128, 0);
    }
}

.veritas-seal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 2rem;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(212, 168, 67, 0.08), rgba(212, 168, 67, 0.03));
    border: 1px solid rgba(212, 168, 67, 0.15);
    border-radius: 10px;
    font-family: var(--mono);
    font-size: 0.7rem;
    color: var(--accent);
    letter-spacing: 0.08em;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.veritas-seal-icon {
    font-size: 1rem;
}

.live-counter {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--mono);
    font-size: 0.72rem;
    color: var(--green);
    padding: 6px 14px;
    background: rgba(74, 222, 128, 0.05);
    border: 1px solid rgba(74, 222, 128, 0.1);
    border-radius: 6px;
}

.live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    animation: pulseBadge 1.5s ease-in-out infinite;
}

/* ═══════════════════ FOOTER ═══════════════════ */
.footer {
    padding: 3.5rem 2rem;
    border-top: 1px solid var(--border);
    background: var(--bg-secondary);
    position: relative;
    z-index: 1;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 700;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.82rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-legal {
    text-align: right;
    width: 100%;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.footer-legal p {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.footer-tagline {
    font-style: italic;
    color: var(--accent-dim) !important;
    margin-top: 0.3rem;
}

/* ═══════════════════ SCROLL REVEAL SYSTEM ═══════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

.reveal-delay-5 {
    transition-delay: 0.5s;
}

.reveal-delay-6 {
    transition-delay: 0.6s;
}

/* Override page-load animation for reveal-managed elements */
.reveal.feature-card,
.reveal.price-card,
.reveal.step,
.reveal.case-card,
.reveal.testimonial-card {
    animation: none;
}

/* ═══════════════════ MOBILE HAMBURGER NAV ═══════════════════ */
.nav-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 28px;
    height: 28px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    z-index: 1001;
}

.nav-burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

body.nav-open .nav-burger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

body.nav-open .nav-burger span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

body.nav-open .nav-burger span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav-drawer {
    display: none;
}

.nav-overlay {
    display: none;
}

/* ═══════════════════ RESPONSIVE ═══════════════════ */
@media (max-width: 968px) {
    .hero {
        grid-template-columns: 1fr;
        padding-top: 7rem;
        min-height: auto;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .price-card.featured {
        transform: scale(1);
    }

    .price-card.featured:hover {
        transform: translateY(-4px);
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps {
        flex-direction: column;
        align-items: center;
    }

    .step-connector {
        width: 2px;
        height: 40px;
        background: linear-gradient(180deg, var(--accent-dim), var(--accent));
    }

    .compare-table {
        font-size: 0.78rem;
    }

    .compare-table th,
    .compare-table td {
        padding: 0.7rem 0.5rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }

    section h2 {
        font-size: 2rem;
    }

    .section-sub {
        font-size: 0.95rem;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .case-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .vuln-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Mobile nav */
    .nav-burger {
        display: flex;
    }

    .nav-links {
        display: none !important;
    }

    .nav-drawer {
        position: fixed;
        top: 0;
        right: 0;
        width: 300px;
        height: 100vh;
        background: rgba(12, 14, 20, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-left: 1px solid var(--border);
        padding: 5rem 2rem 2rem;
        z-index: 999;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    body.nav-open .nav-drawer {
        transform: translateX(0);
    }

    .nav-drawer a {
        color: var(--text-secondary);
        text-decoration: none;
        font-size: 1.05rem;
        font-weight: 500;
        padding: 0.9rem 0;
        border-bottom: 1px solid var(--border);
        transition: color 0.3s, padding-left 0.3s;
    }

    .nav-drawer a:hover {
        color: var(--accent);
        padding-left: 0.5rem;
    }

    .nav-drawer a:last-child {
        margin-top: auto;
        border: 1px solid var(--accent);
        border-bottom: 1px solid var(--accent);
        border-radius: 10px;
        text-align: center;
        padding: 12px;
        color: var(--accent);
        font-weight: 700;
    }

    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.6);
        z-index: 998;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.35s;
    }

    body.nav-open .nav-overlay {
        display: block;
        opacity: 1;
        pointer-events: auto;
    }
}

@media (max-width: 640px) {
    .hero h1 {
        font-size: 2rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .proof-logos {
        gap: 1rem;
    }

    .hero-stats {
        justify-content: flex-start;
    }

    .cta-upload-zone {
        padding: 2rem;
    }

    .vuln-grid {
        grid-template-columns: 1fr;
    }

    .veritas-seal {
        font-size: 0.62rem;
        padding: 8px 14px;
    }

    .trust-badge {
        font-size: 0.6rem;
    }
}

/* ═══════════════════ SELECTION ═══════════════════ */
::selection {
    background: rgba(212, 168, 67, 0.25);
    color: var(--text-primary);
}

/* ═══════════════════ SCROLLBAR ═══════════════════ */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-dim);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}