/* ─── MR. PULL — Premium Design System ─── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
    --bg-primary: #050a15;
    --bg-secondary: #0c1220;
    --bg-card: #111a2e;
    --bg-card-hover: #162040;
    --bg-glass: rgba(17, 26, 46, 0.75);

    --accent: #00e5b0;
    --accent-glow: rgba(0, 229, 176, 0.2);
    --accent-hover: #00ffcc;
    --accent-dim: rgba(0, 229, 176, 0.08);
    --accent-secondary: #7c3aed;
    --accent-secondary-glow: rgba(124, 58, 237, 0.15);
    --accent-warn: #f59e0b;
    --accent-danger: #ef4444;
    --accent-success: #10b981;
    --gold: #d4af37;
    --gold-glow: rgba(212, 175, 55, 0.15);

    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #475569;

    --border: rgba(148, 163, 184, 0.08);
    --border-hover: rgba(0, 229, 176, 0.25);
    --border-subtle: rgba(148, 163, 184, 0.05);

    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;

    --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 60px var(--accent-glow);
    --shadow-glow-lg: 0 0 120px var(--accent-glow), 0 0 60px rgba(124, 58, 237, 0.1);

    --font-body: 'Inter', -apple-system, sans-serif;
    --font-display: 'Space Grotesk', sans-serif;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ─── TYPOGRAPHY ─── */
h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.15;
}

h1 {
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    letter-spacing: -0.02em;
}

h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
}

p {
    color: var(--text-secondary);
    max-width: 65ch;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-hover);
}

/* ─── LAYOUT ─── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-sm {
    max-width: 640px;
    margin: 0 auto;
    padding: 0 24px;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-1 {
    gap: 8px;
}

.gap-2 {
    gap: 16px;
}

.gap-3 {
    gap: 24px;
}

.gap-4 {
    gap: 32px;
}

.text-center {
    text-align: center;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

/* ─── NOISE TEXTURE OVERLAY ─── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

/* ─── GRID PATTERN ─── */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(148, 163, 184, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

/* ─── NAVBAR ─── */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: rgba(5, 10, 21, 0.8);
    backdrop-filter: blur(24px) saturate(1.4);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 4px;
    position: relative;
}

.nav-logo .mr {
    color: var(--text-muted);
    font-weight: 400;
    font-size: 1.3rem;
}

.nav-logo .pull {
    color: var(--accent);
    text-shadow: 0 0 20px var(--accent-glow);
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.01em;
}

.nav-links a:hover {
    color: var(--text-primary);
}

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
    text-decoration: none;
    position: relative;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), #00b894);
    color: #050a15;
    box-shadow: 0 4px 24px var(--accent-glow), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 40px var(--accent-glow), 0 0 60px var(--accent-glow);
    color: #050a15;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-primary);
    border: 1px solid var(--border);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    border-color: var(--accent);
    background: var(--accent-dim);
    color: var(--text-primary);
    box-shadow: 0 0 24px var(--accent-glow);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

.btn-danger {
    background: var(--accent-danger);
    color: white;
}

/* ─── CARDS ─── */
.card {
    background: linear-gradient(135deg, var(--bg-card), rgba(17, 26, 46, 0.6));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
}

.card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(0, 229, 176, 0.02));
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3), 0 0 40px var(--accent-glow);
}

.card:hover::before {
    opacity: 1;
}

.card-glass {
    background: var(--bg-glass);
    backdrop-filter: blur(20px) saturate(1.3);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.card-highlight {
    border-color: rgba(0, 229, 176, 0.3);
    box-shadow: 0 0 40px var(--accent-glow), inset 0 0 60px rgba(0, 229, 176, 0.03);
}

/* ─── FORMS ─── */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-control {
    padding: 14px 16px;
    background: rgba(12, 18, 32, 0.8);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 0.95rem;
    font-family: var(--font-body);
    transition: var(--transition);
    outline: none;
    backdrop-filter: blur(4px);
}

.form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow), 0 0 20px var(--accent-glow);
}

.form-control::placeholder {
    color: var(--text-muted);
}

select.form-control {
    appearance: none;
    cursor: pointer;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

/* ─── STAT CARDS ─── */
.stat-card {
    background: linear-gradient(135deg, var(--bg-card), rgba(17, 26, 46, 0.4));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stat-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.5;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent), #00b894);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 8px 0 4px;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* ─── SCORE GAUGE ─── */
.score-ring {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: conic-gradient(var(--accent) 0%, var(--accent) var(--pct, 70%), var(--bg-secondary) var(--pct, 70%));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 0 40px var(--accent-glow);
}

.score-ring::before {
    content: '';
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: var(--bg-card);
    position: absolute;
}

.score-ring .score-value {
    position: relative;
    z-index: 1;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-primary);
}

.score-ring .score-label {
    position: absolute;
    bottom: -8px;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 1;
}

/* ─── TABLES ─── */
.table-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--bg-card);
}

table {
    width: 100%;
    border-collapse: collapse;
}

th {
    background: rgba(12, 18, 32, 0.8);
    padding: 14px 16px;
    text-align: left;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    font-weight: 600;
}

td {
    padding: 14px 16px;
    border-top: 1px solid var(--border-subtle);
    font-size: 0.9rem;
}

tr:hover td {
    background: rgba(0, 229, 176, 0.02);
}

/* ─── BADGES ─── */
.badge {
    display: inline-flex;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-success {
    background: rgba(16, 185, 129, 0.12);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.badge-warn {
    background: rgba(245, 158, 11, 0.12);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.badge-danger {
    background: rgba(239, 68, 68, 0.12);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.badge-info {
    background: rgba(124, 58, 237, 0.12);
    color: #a78bfa;
    border: 1px solid rgba(124, 58, 237, 0.2);
}

/* ─── HERO ─── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

/* Animated gradient orbs */
.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 900px;
    height: 900px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 229, 176, 0.12), transparent 60%);
    pointer-events: none;
    animation: float 12s ease-in-out infinite;
    filter: blur(40px);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.1), transparent 60%);
    pointer-events: none;
    animation: float 16s ease-in-out infinite reverse;
    filter: blur(60px);
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(-30px, 20px) scale(1.05);
    }

    66% {
        transform: translate(20px, -30px) scale(0.95);
    }
}

/* Animated beam lines */
.hero-beams {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-beams .beam {
    position: absolute;
    width: 1px;
    height: 200px;
    background: linear-gradient(180deg, transparent, var(--accent), transparent);
    opacity: 0.15;
    animation: beamDrop 6s linear infinite;
}

.hero-beams .beam:nth-child(1) {
    left: 15%;
    animation-delay: 0s;
}

.hero-beams .beam:nth-child(2) {
    left: 35%;
    animation-delay: 1.5s;
    animation-duration: 8s;
}

.hero-beams .beam:nth-child(3) {
    left: 55%;
    animation-delay: 3s;
    animation-duration: 7s;
}

.hero-beams .beam:nth-child(4) {
    left: 75%;
    animation-delay: 0.5s;
    animation-duration: 9s;
}

.hero-beams .beam:nth-child(5) {
    left: 90%;
    animation-delay: 2s;
    animation-duration: 5s;
}

@keyframes beamDrop {
    0% {
        top: -200px;
        opacity: 0;
    }

    10% {
        opacity: 0.15;
    }

    90% {
        opacity: 0.15;
    }

    100% {
        top: 110%;
        opacity: 0;
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 60px;
    align-items: center;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-content {
    max-width: 680px;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    margin-bottom: 24px;
}

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--accent-dim);
    border: 1px solid rgba(0, 229, 176, 0.15);
    border-radius: var(--radius-full);
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    backdrop-filter: blur(8px);
}

.hero-badge .pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 8px var(--accent);
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.8);
    }
}

/* Hero Score Display */
.hero-score-display {
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.score-card-float {
    background: linear-gradient(135deg, var(--bg-card), rgba(17, 26, 46, 0.85));
    border: 1px solid var(--border-hover);
    border-radius: var(--radius-xl);
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow-glow-lg);
    animation: floatCard 6s ease-in-out infinite;
    backdrop-filter: blur(20px);
    width: 280px;
}

.score-card-float .score-number {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent), #00ffcc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.score-card-float .score-bar {
    width: 100%;
    height: 6px;
    background: rgba(148, 163, 184, 0.1);
    border-radius: var(--radius-full);
    margin: 16px 0;
    overflow: hidden;
}

.score-card-float .score-bar-fill {
    height: 100%;
    width: 82%;
    background: linear-gradient(90deg, var(--accent-danger), var(--accent-warn), var(--accent));
    border-radius: var(--radius-full);
    animation: barGrow 2s ease-out 0.5s both;
}

@keyframes barGrow {
    from {
        width: 0;
    }
}

.score-card-float .bureaus {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.score-card-float .bureau-item {
    text-align: center;
}

.score-card-float .bureau-label {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.score-card-float .bureau-score {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--accent);
    margin-top: 2px;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(-50%);
    }

    50% {
        transform: translateY(calc(-50% - 12px));
    }
}

/* ─── TRUST BAR ─── */
.trust-bar {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.trust-item .icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent-dim);
    border: 1px solid rgba(0, 229, 176, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    color: var(--accent);
}

/* ─── SECTIONS ─── */
section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header p {
    margin: 16px auto 0;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 16px;
    padding: 6px 16px;
    background: var(--accent-dim);
    border: 1px solid rgba(0, 229, 176, 0.1);
    border-radius: var(--radius-full);
}

/* ─── FEATURE CARDS ─── */
.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    position: relative;
}

.feature-icon.green {
    background: var(--accent-dim);
    border: 1px solid rgba(0, 229, 176, 0.15);
}

.feature-icon.purple {
    background: var(--accent-secondary-glow);
    border: 1px solid rgba(124, 58, 237, 0.2);
}

.feature-icon.gold {
    background: var(--gold-glow);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

/* ─── HOW IT WORKS — TIMELINE ─── */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--accent), var(--accent-secondary), transparent);
    opacity: 0.3;
}

.timeline-step {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    position: relative;
    align-items: flex-start;
}

.timeline-number {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-dim), rgba(124, 58, 237, 0.05));
    border: 2px solid rgba(0, 229, 176, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent);
    position: relative;
    z-index: 1;
    box-shadow: 0 0 30px var(--accent-glow);
}

.timeline-content h3 {
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ─── PRICING CARDS ─── */
.pricing-card {
    text-align: center;
    padding: 44px 32px;
    position: relative;
}

.pricing-card .tier-name {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-muted);
    margin-bottom: 8px;
    font-weight: 700;
}

.pricing-card .price {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1;
}

.pricing-card .price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.pricing-card .per-pull {
    background: linear-gradient(135deg, var(--accent), #00b894);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    margin: 12px 0 28px;
    font-size: 1rem;
}

.pricing-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
}

.pricing-card ul li {
    padding: 10px 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--border-subtle);
}

.pricing-card ul li:last-child {
    border-bottom: none;
}

.pricing-card ul li::before {
    content: '✓';
    color: var(--accent);
    font-weight: 800;
    font-size: 0.8rem;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent-dim);
    display: flex;
    align-items: center;
    justify-content: center;
}

.popular-badge {
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    padding: 6px;
    background: linear-gradient(90deg, var(--accent), #00b894);
    color: var(--bg-primary);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

/* ─── SOCIAL PROOF ─── */
.social-proof {
    padding: 60px 0;
    border-bottom: 1px solid var(--border);
    position: relative;
    z-index: 1;
}

.proof-grid {
    display: flex;
    justify-content: center;
    gap: 56px;
    flex-wrap: wrap;
}

.proof-item {
    text-align: center;
}

.proof-number {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent), #00b894);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.proof-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 4px;
}

/* ─── FOOTER ─── */
.footer {
    padding: 60px 0 32px;
    border-top: 1px solid var(--border);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    position: relative;
    z-index: 1;
}

.footer a {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.footer a:hover {
    color: var(--accent);
}

/* ─── TOAST ─── */
.toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--bg-card);
    border: 1px solid var(--accent);
    border-radius: var(--radius);
    padding: 16px 24px;
    box-shadow: var(--shadow-lg), 0 0 40px var(--accent-glow);
    z-index: 1000;
    transform: translateY(100px);
    opacity: 0;
    transition: var(--transition);
    backdrop-filter: blur(20px);
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

/* ─── MOBILE ─── */
.mobile-menu-btn {
    display: none;
    background: none;
    border: 1px solid var(--border);
    color: var(--text-primary);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(5, 10, 21, 0.95);
        backdrop-filter: blur(24px);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--border);
    }

    .nav-links.open {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding: 120px 0 60px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-score-display {
        display: none;
    }

    #score-card-wrapper {
        display: none;
    }

    /* MOBILE FIX: Single column hero */
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* MOBILE FIX: Stack CTA buttons */
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    /* MOBILE FIX: Stack hero buttons and make full-width */
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        display: flex;
        border-radius: 12px;
        padding: 16px 24px;
        text-align: center;
        box-sizing: border-box;
    }

    /* MOBILE FIX: All btn-lg should be full-width on mobile */
    .btn-lg {
        width: 100%;
        display: flex;
        border-radius: 12px;
        padding: 16px 24px;
        box-sizing: border-box;
    }

    .grid-4 {
        grid-template-columns: 1fr;
    }

    .timeline-line {
        display: none;
    }

    .timeline-step {
        flex-direction: column;
        gap: 16px;
    }

    .timeline-number {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }

    .proof-grid {
        gap: 32px;
    }

    section {
        padding: 60px 0;
    }

    /* MOBILE FIX: CTA section buttons */
    .cta-section .btn {
        width: 100%;
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }
}

/* ─── ANIMATIONS ─── */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stagger-1 {
    animation-delay: 0.1s;
}

.stagger-2 {
    animation-delay: 0.2s;
}

.stagger-3 {
    animation-delay: 0.3s;
}

.stagger-4 {
    animation-delay: 0.4s;
}

.stagger-5 {
    animation-delay: 0.5s;
}

/* Slide in from left/right */
.slide-in-left {
    opacity: 0;
    transform: translateX(-40px);
    animation: slideInLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ─── LOADING ─── */
.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.page-content {
    padding-top: 80px;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

/* ─── GLOW DIVIDER ─── */
.glow-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.2;
    margin: 0;
}

/* ─── CTA SECTION ─── */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(0, 229, 176, 0.06), transparent 70%);
    pointer-events: none;
}