/* ===================================================================
   VERNDR — Global Stylesheet
   Brand: Deep Navy + Metallic Gold | Viking-Norse Heritage | Zero-Knowledge Privacy
   =================================================================== */

/* ===== RESET & VARIABLES ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --navy-900: #0b0d17;
    --navy-800: #111327;
    --navy-700: #171a30;
    --navy-600: #1e2240;
    --navy-500: #262b50;
    --gold-500: #b89a3e;
    --gold-400: #c9a84c;
    --gold-300: #d4b965;
    --gold-200: #e0cb82;
    --gold-100: #f0e4b8;
    --teal-500: #3ecfb4;
    --teal-400: #5ddcc5;
    --red-400: #ff6b6b;
    --white: #f5f5f7;
    --gray-100: #e5e5e7;
    --gray-200: #c5c5c7;
    --gray-300: #a1a1a6;
    --gray-400: #6e6e73;
    --gray-500: #48484a;
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --max-width: 1200px;
    --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--navy-900);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; font-family: inherit; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== BACKGROUND GRID ===== */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        linear-gradient(rgba(201, 168, 76, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 168, 76, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

section, header, footer, main { position: relative; z-index: 1; }

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 12px 0;
    transition: var(--transition);
    background: transparent;
}

.nav.scrolled {
    background: rgba(11, 13, 23, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
    padding: 8px 0;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.nav-logo img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    border-radius: 6px;
}

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

.nav-links > li { position: relative; }

.nav-links > li > a {
    display: block;
    padding: 8px 14px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--gray-200);
    transition: var(--transition);
    border-radius: 6px;
}

.nav-links > li > a:hover {
    color: var(--gold-300);
    background: rgba(201, 168, 76, 0.06);
}

.nav-links > li > a.active {
    color: var(--gold-400);
}

/* Dropdown */
.nav-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 220px;
    background: rgba(23, 26, 48, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-radius: 12px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: var(--transition);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.nav-links > li:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    font-size: 0.88rem;
    color: var(--gray-200);
    border-radius: 8px;
    transition: var(--transition);
}

.nav-dropdown a:hover {
    background: rgba(201, 168, 76, 0.08);
    color: var(--gold-300);
}

.nav-dropdown .dd-icon {
    width: 32px; height: 32px;
    background: rgba(201, 168, 76, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nav-dropdown .dd-icon svg { width: 16px; height: 16px; }

.nav-dropdown .dd-text small {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-400);
    margin-top: 2px;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-300));
    color: var(--navy-900) !important;
    font-weight: 600;
    font-size: 0.88rem;
    border-radius: 8px;
    transition: var(--transition);
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.3);
    background: linear-gradient(135deg, var(--gold-300), var(--gold-200)) !important;
}

.beta-chip {
    display: inline-flex;
    align-items: center;
    padding: 2px 7px;
    margin-left: 6px;
    border-radius: 100px;
    background: var(--navy-900);
    color: var(--gold-300);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.2;
}

.nav-cta .beta-chip {
    background: var(--navy-900);
    color: var(--gold-300);
}

.btn-primary .beta-chip,
.pricing-btn.gold .beta-chip {
    background: var(--navy-900);
    color: var(--gold-300);
}

.btn-soon {
    opacity: 0.85;
}

.cta-note {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-top: 16px;
}

.hero-lead {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2.4vw, 1.55rem);
    font-weight: 600;
    color: var(--white);
    max-width: 640px;
    margin: 0 auto 16px;
    line-height: 1.4;
}

.hero-candor {
    font-size: 0.92rem;
    color: var(--gray-400);
    max-width: 560px;
    margin: 20px auto 0;
    line-height: 1.65;
}

.compare-note {
    max-width: 720px;
    margin: 24px auto 0;
    font-size: 0.88rem;
    color: var(--gray-400);
    line-height: 1.7;
    text-align: center;
}

.hero-logo-sm {
    width: 160px;
    height: 160px;
    margin: 0 auto 28px;
}

.satellite-strip {
    padding: 18px 0;
    border-top: 1px solid rgba(201, 168, 76, 0.06);
    border-bottom: 1px solid rgba(201, 168, 76, 0.06);
    background: rgba(17, 19, 39, 0.35);
    text-align: center;
}

.satellite-strip p {
    font-size: 0.88rem;
    color: var(--gray-400);
    letter-spacing: 0.01em;
}

.satellite-strip a {
    color: var(--gray-300);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.contrast-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 40px;
}

.contrast-card {
    border-radius: 16px;
    padding: 36px 32px;
}

.contrast-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.contrast-card p {
    color: var(--gray-300);
    line-height: 1.7;
    font-size: 0.98rem;
}

.contrast-card.muted {
    background: var(--navy-800);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.contrast-card.vault {
    background: linear-gradient(180deg, var(--navy-600), var(--navy-700));
    border: 1px solid rgba(201, 168, 76, 0.28);
}

.contrast-card.vault h3 { color: var(--gold-300); }

.comparison-wrap {
    overflow-x: auto;
    margin-top: 48px;
}

.vault-preview {
    max-width: 800px;
    margin: 40px auto 0;
    min-height: 260px;
    border: 1px dashed rgba(201, 168, 76, 0.28);
    border-radius: 16px;
    background: rgba(17, 19, 39, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 32px;
    text-align: center;
}

.vault-preview p {
    color: var(--gray-400);
    max-width: 480px;
    margin-bottom: 24px;
    line-height: 1.7;
}

.coming-banner {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold-400);
    margin-bottom: 16px;
}

.notes-empty {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
    color: var(--gray-400);
    line-height: 1.8;
}

.soft-copy {
    max-width: 640px;
    margin: 0 auto;
    color: var(--gray-300);
    line-height: 1.8;
    font-size: 1.05rem;
}

.nav-login {
    color: var(--gray-300) !important;
    font-weight: 500;
}

/* Mobile nav */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-300));
    color: var(--navy-900);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 10px;
    transition: var(--transition);
    letter-spacing: 0.3px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(201, 168, 76, 0.35);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: transparent;
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.15);
    transition: var(--transition);
}

.btn-secondary:hover {
    border-color: var(--gold-400);
    color: var(--gold-300);
    background: rgba(201, 168, 76, 0.05);
}

.btn-sm {
    padding: 10px 22px;
    font-size: 0.9rem;
}

/* ===== SECTION UTILITIES ===== */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-400);
    margin-bottom: 16px;
}

.section-label::before {
    content: '';
    width: 24px; height: 1px;
    background: var(--gold-400);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--gray-300);
    max-width: 640px;
    line-height: 1.7;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ===== HERO (shared pattern) ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    position: relative;
    overflow: hidden;
}

.hero-short {
    min-height: auto;
    padding: 160px 24px 100px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px; left: 50%;
    transform: translateX(-50%);
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-logo {
    width: 280px; height: 280px;
    margin: 0 auto 36px;
    animation: float 4s ease-in-out infinite;
    border-radius: 16px;
    object-fit: contain;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 7vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero h1 .gold { color: var(--gold-400); }

.hero-sub {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--gray-300);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ===== TRUST BAR ===== */
.trust-bar {
    padding: 32px 0;
    border-top: 1px solid rgba(201, 168, 76, 0.08);
    border-bottom: 1px solid rgba(201, 168, 76, 0.08);
    background: rgba(17, 19, 39, 0.5);
}

.trust-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--gray-300);
    font-weight: 500;
    padding: 8px 16px;
    background: rgba(201, 168, 76, 0.04);
    border: 1px solid rgba(201, 168, 76, 0.08);
    border-radius: 100px;
}

.trust-item svg { width: 16px; height: 16px; flex-shrink: 0; }

.trust-dot {
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--gold-400);
    opacity: 0.4;
}

/* ===== CARDS ===== */
.card {
    background: linear-gradient(180deg, var(--navy-700), var(--navy-800));
    border: 1px solid rgba(201, 168, 76, 0.1);
    border-radius: 16px;
    padding: 36px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
    opacity: 0;
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 168, 76, 0.25);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

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

.card-icon {
    width: 56px; height: 56px;
    margin-bottom: 20px;
    background: rgba(201, 168, 76, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon svg { width: 28px; height: 28px; }

.card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.card .card-tag {
    font-size: 0.75rem;
    color: var(--gold-400);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.card p {
    font-size: 0.9rem;
    color: var(--gray-300);
    line-height: 1.6;
}

.card-center { text-align: center; }
.card-center .card-icon { margin: 0 auto 20px; }

/* ===== GRID LAYOUTS ===== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ===== FEATURE LIST ===== */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-icon {
    width: 44px; height: 44px;
    min-width: 44px;
    border-radius: 10px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg { width: 20px; height: 20px; }

.feature-item h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.6;
}

/* ===== PRICING CARDS ===== */
.pricing-card {
    background: var(--navy-700);
    border: 1px solid rgba(201, 168, 76, 0.1);
    border-radius: 20px;
    padding: 40px 32px;
    position: relative;
    transition: var(--transition);
}

.pricing-card.featured {
    border-color: var(--gold-400);
    background: linear-gradient(180deg, var(--navy-600), var(--navy-700));
    transform: scale(1.04);
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px; left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold-400), var(--gold-300));
    color: var(--navy-900);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.pricing-card.featured:hover { transform: scale(1.04) translateY(-4px); }

.pricing-card.beta-invite {
    max-width: 460px;
    margin: 0 auto;
    transform: none;
}

.pricing-card.beta-invite:hover { transform: translateY(-4px); }

.pricing-card.beta-invite::before {
    content: 'Invite only';
}

.pricing-tier {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.pricing-tagline {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-bottom: 24px;
}

.pricing-price {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 4px;
}

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

.pricing-period {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-bottom: 28px;
}

.pricing-features {
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--gray-200);
    padding: 8px 0;
}

.pricing-features li svg { width: 18px; height: 18px; flex-shrink: 0; }

.pricing-btn {
    display: block;
    width: 100%;
    padding: 14px;
    text-align: center;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.pricing-btn.gold {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-300));
    color: var(--navy-900);
}

.pricing-btn.gold:hover { box-shadow: 0 8px 24px rgba(201, 168, 76, 0.3); }

.pricing-btn.outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--white);
}

.pricing-btn.outline:hover {
    border-color: var(--gold-400);
    color: var(--gold-300);
}

/* ===== COMPARISON TABLE ===== */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 64px;
}

.comparison-table th,
.comparison-table td {
    padding: 14px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.9rem;
}

.comparison-table th {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--gold-400);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.comparison-table td { color: var(--gray-300); }

.comparison-table td:first-child {
    color: var(--white);
    font-weight: 500;
}

.comparison-table tr:hover td { background: rgba(201, 168, 76, 0.03); }

.check-icon { color: var(--gold-400); }
.dash-icon { color: var(--gray-500); }

/* ===== STATS ROW ===== */
.stats-row {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold-400);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-400);
    font-weight: 500;
}

/* ===== FAQ ACCORDION ===== */
.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px 0;
    background: none;
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover { color: var(--gold-300); }

.faq-question svg {
    width: 20px; height: 20px;
    transition: var(--transition);
    flex-shrink: 0;
    stroke: var(--gray-400);
}

.faq-item.open .faq-question svg { transform: rotate(180deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding: 0 0 20px;
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.7;
}

.faq-item.open .faq-answer { max-height: 300px; }

/* ===== BLOG CARDS ===== */
.blog-card {
    background: var(--navy-700);
    border: 1px solid rgba(201, 168, 76, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 168, 76, 0.2);
    box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.blog-card-img {
    width: 100%;
    height: 200px;
    background: var(--navy-600);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-card-img svg { width: 48px; height: 48px; opacity: 0.3; }

.blog-card-body {
    padding: 24px;
}

.blog-card-meta {
    font-size: 0.78rem;
    color: var(--gold-400);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.blog-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
}

.blog-card p {
    font-size: 0.88rem;
    color: var(--gray-400);
    line-height: 1.6;
}

/* ===== TIMELINE ===== */
.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 14px; top: 0; bottom: 0;
    width: 2px;
    background: rgba(201, 168, 76, 0.15);
}

.timeline-item {
    position: relative;
    padding-bottom: 40px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -33px; top: 6px;
    width: 12px; height: 12px;
    border-radius: 50%;
    background: var(--gold-400);
    border: 3px solid var(--navy-900);
}

.timeline-item h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 6px;
}

.timeline-item p {
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.6;
}

/* ===== CODE BLOCK (for CLI) ===== */
.code-block {
    background: #0d0f1a;
    border: 1px solid rgba(201, 168, 76, 0.1);
    border-radius: 12px;
    padding: 24px;
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: 0.88rem;
    color: var(--gray-200);
    overflow-x: auto;
    line-height: 1.8;
}

.code-block .prompt { color: var(--gold-400); }
.code-block .cmd { color: var(--teal-400); }
.code-block .flag { color: var(--gray-400); }
.code-block .comment { color: var(--gray-500); font-style: italic; }

/* ===== FOOTER ===== */
.footer {
    padding: 64px 0 32px;
    border-top: 1px solid rgba(201, 168, 76, 0.08);
    background: var(--navy-900);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-brand { display: flex; flex-direction: column; gap: 16px; }

.footer-brand p {
    font-size: 0.88rem;
    color: var(--gray-400);
    line-height: 1.7;
    max-width: 280px;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    font-size: 0.85rem;
    color: var(--gray-400);
    transition: var(--transition);
}

.footer-col a:hover { color: var(--gold-300); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.8rem;
    color: var(--gray-500);
}

.footer-tagline {
    color: var(--gold-400);
    font-style: italic;
    font-size: 0.85rem;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    width: 36px; height: 36px;
    border-radius: 8px;
    background: rgba(201, 168, 76, 0.06);
    border: 1px solid rgba(201, 168, 76, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: rgba(201, 168, 76, 0.15);
    border-color: var(--gold-400);
}

.footer-social svg { width: 16px; height: 16px; }

/* ===== PAGE CONTENT SECTIONS ===== */
.page-section {
    padding: 100px 0;
}

.page-section.alt-bg {
    background: linear-gradient(180deg, rgba(17, 19, 39, 0.3) 0%, transparent 100%);
}

.page-section.border-top {
    border-top: 1px solid rgba(201, 168, 76, 0.08);
}

.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--gray-400);
    margin-bottom: 24px;
}

.breadcrumb a { transition: var(--transition); }
.breadcrumb a:hover { color: var(--gold-300); }
.breadcrumb span { color: var(--gray-500); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .split-grid { gap: 48px; }
    .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-toggle { display: flex; }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(11, 13, 23, 0.97);
        backdrop-filter: blur(20px);
        padding: 24px;
        border-bottom: 1px solid rgba(201, 168, 76, 0.1);
        gap: 4px;
    }

    .nav-links.open .nav-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0 0 0 16px;
    }

    .hero { padding: 140px 24px 80px; }
    .hero h1 { font-size: 2.4rem; }
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .split-grid { grid-template-columns: 1fr; }
    .contrast-grid { grid-template-columns: 1fr; }
    .stats-row { gap: 40px; }
    .stat-number { font-size: 2.5rem; }
    .pricing-card.featured { transform: none; }
    .pricing-card.featured:hover { transform: translateY(-4px); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .comparison-table { font-size: 0.8rem; }
    .comparison-table th, .comparison-table td { padding: 10px 12px; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; width: 100%; }
    .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
    .trust-items { gap: 8px; }
    .trust-item { font-size: 0.75rem; padding: 6px 12px; }
    .footer-grid { grid-template-columns: 1fr; }
}
