/* ============================================================
   Kaidok.net — Main Stylesheet
   Fonts: Barlow Condensed (display) + Barlow (body)
   Palette: Midnight Navy, Star Gold, Frost White, Slate
   ============================================================ */

:root {
    --navy:        #0A1128;
    --navy-mid:    #112040;
    --navy-light:  #1C3260;
    --gold:        #FFD700;
    --gold-dark:   #E0BC00;
    --gold-dim:    rgba(255, 215, 0, 0.15);
    --frost:       #FFFFFF;
    --off-white:   #F2F4F8;
    --slate:       #8A95AD;
    --slate-light: #C5CBDB;
    --text-body:   #1E2535;
    --border:      rgba(255,255,255,0.08);
    --gold-border: rgba(255,215,0,0.3);

    --font-display: 'Barlow Condensed', sans-serif;
    --font-body:    'Barlow', sans-serif;

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 14px;

    --transition: 0.25s ease;

    --container: 1180px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--text-body);
    background: var(--off-white);
}
img { max-width: 100%; display: block; }
a { text-decoration: none; }
ul { list-style: none; }

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

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
    cursor: pointer;
    white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-accent {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}
.btn-accent:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}
.btn-outline:hover {
    background: var(--navy);
    color: var(--frost);
}

.btn-ghost {
    background: transparent;
    color: var(--frost);
    border-color: rgba(255,255,255,0.4);
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--frost);
}

.btn-large { font-size: 1.05rem; padding: 15px 36px; }
.btn-block { display: block; width: 100%; text-align: center; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
    background: var(--navy);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 2px solid var(--gold);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    gap: 20px;
}

/* Logo */
.brand-logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--frost);
}
.logo-img {
    height: 40px;
    width: auto;
}
.logo-text-fallback {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: var(--frost);
}
.logo-text-fallback em {
    color: var(--gold);
    font-style: normal;
}

/* Try to show logo image, fall back to text */
.logo-img + .logo-text-fallback { display: none; }
.logo-img:not([src]), .logo-img[src=""] { display: none; }
.logo-img[src=""] + .logo-text-fallback { display: inline; }

/* Primary Nav */
.primary-nav ul {
    display: flex;
    gap: 4px;
    align-items: center;
}
.primary-nav a {
    color: var(--slate-light);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
}
.primary-nav a:hover {
    color: var(--gold);
    background: rgba(255,215,0,0.07);
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}
.login-link {
    color: var(--slate-light);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color var(--transition);
}
.login-link:hover { color: var(--gold); }

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--frost);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}
.mobile-menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.mobile-menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background-color: var(--navy);
    background-image:
        linear-gradient(to bottom, rgba(10,17,40,0.72) 0%, rgba(10,17,40,0.50) 50%, rgba(10,17,40,0.88) 100%),
        url('/assets/img/hero-bg.png');
    background-size: cover;
    background-position: center 30%;
    color: var(--frost);
    overflow: hidden;
    padding: 100px 0 80px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 60% 0%, rgba(255,215,0,0.04) 0%, transparent 60%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    border: 1px solid var(--gold-border);
    padding: 6px 14px;
    border-radius: 20px;
    background: var(--gold-dim);
}

.ak-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    display: inline-block;
    animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.7); }
}

.hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 9vw, 7rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    margin-bottom: 24px;
    color: var(--frost);
}

.hero-content p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--slate-light);
    max-width: 620px;
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

/* Trust bar inside hero */
.hero-trust-bar {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    gap: 4px 0;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--slate-light);
    font-weight: 500;
    padding: 0 14px;
}
.trust-item:first-child { padding-left: 0; }
.trust-icon {
    color: var(--gold);
    font-size: 0.9rem;
}
.trust-divider {
    width: 1px;
    height: 14px;
    background: rgba(255,255,255,0.2);
}

/* Scroll hint */
.hero-scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--slate);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: var(--font-display);
}
.scroll-line {
    width: 40px;
    height: 1px;
    background: var(--slate);
    position: relative;
    overflow: hidden;
}
.scroll-line::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: var(--gold);
    animation: scroll-sweep 2s ease-in-out infinite;
}
@keyframes scroll-sweep {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* ============================================================
   IDENTITY STRIP (Alaska flag stars section)
   ============================================================ */
.identity-strip {
    background: var(--navy-mid);
    padding: 80px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.identity-inner {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* CSS Big Dipper / flag motif — Alaska flag is roughly 1.9:1 (width:height) */
.identity-flag {
    flex-shrink: 0;
    width: 200px;
    height: 106px;
    background: #061830;
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-md);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flag-dipper {
    position: relative;
    width: 100%;
    height: 100%;
}

/*
   Big Dipper — matched to actual Alaska state flag
   Bowl: bottom-center, open facing upper-right
   Handle: 3 stars sweeping up and to the LEFT from bowl top-left
   Polaris: large, isolated, upper-right corner

   Coordinates derived from flag proportions (left%, top%)
   Star order on flag going around the dipper:
     Alkaid(s7) upper-left → Mizar(s6) → Alioth(s5) = handle tip to base
     Megrez(s4) = bowl top-left / handle junction
     Dubhe(s1) = bowl top-right
     Merak(s2) = bowl bottom-right
     Phecda(s3) = bowl bottom-left
*/
.star {
    position: absolute;
    background: #FFD700;
    border-radius: 50%;
    animation: twinkle 3s ease-in-out infinite;
    transform: translate(-50%, -50%);
}

.star.s7 { width: 7px; height: 7px; left: 12%; top: 28%; animation-delay: 0.0s; } /* Alkaid — handle tip */
.star.s6 { width: 7px; height: 7px; left: 23%; top: 35%; animation-delay: 0.4s; } /* Mizar */
.star.s5 { width: 7px; height: 7px; left: 32%; top: 46%; animation-delay: 0.8s; } /* Alioth */
.star.s4 { width: 7px; height: 7px; left: 38%; top: 56%; animation-delay: 1.2s; } /* Megrez — handle/bowl junction */
.star.s1 { width: 7px; height: 7px; left: 58%; top: 52%; animation-delay: 1.4s; } /* Dubhe — pushed right */
.star.s2 { width: 7px; height: 7px; left: 62%; top: 78%; animation-delay: 1.6s; } /* Merak — pushed right and down */
.star.s3 { width: 7px; height: 7px; left: 42%; top: 82%; animation-delay: 1.8s; } /* Phecda — lower */

.star.polaris {
    width: 10px;
    height: 10px;
    left: 84%;
    top: 18%;
    background: #ffffff;
    box-shadow: 0 0 8px 3px rgba(255,215,0,0.6);
    animation-delay: 0s;
}

@keyframes twinkle {
    0%, 100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.45; transform: translate(-50%, -50%) scale(0.7); }
}

.identity-copy h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--frost);
    margin-bottom: 18px;
    text-transform: uppercase;
}
.identity-copy p {
    color: var(--slate-light);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 14px;
    max-width: 580px;
}
.identity-copy p:last-child { margin-bottom: 0; }

/* ============================================================
   VALUE SECTION (Why Kaidok)
   ============================================================ */
.value-section {
    padding: 90px 0;
    background: var(--navy);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.value-section .section-title { color: var(--frost); }
.value-section .section-label { color: var(--gold); }
.value-section .section-label::before { background: var(--gold); }

.section-label {
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 10px;
    padding-left: 2px;
    position: relative;
    padding-left: 16px;
}
.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--gold-dark);
    border-radius: 50%;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.05;
    color: var(--navy);
    margin-bottom: 50px;
    letter-spacing: 0.01em;
}

.section-sub {
    font-size: 1.05rem;
    color: #556;
    margin-bottom: 48px;
    margin-top: -32px;
    max-width: 560px;
}

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

/* Feature Cards */
.feature-card {
    background: var(--navy-mid);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.35);
    border-color: var(--gold-border);
}

.feature-num {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 800;
    color: rgba(255,215,0,0.12);
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--frost);
    margin-bottom: 10px;
}
.feature-card p {
    font-size: 0.92rem;
    color: var(--slate-light);
    line-height: 1.7;
}

/* ============================================================
   PLANS SECTION
   ============================================================ */
.plans-section {
    padding: 90px 0;
    background: var(--navy);
}

.plans-section .section-label { color: var(--gold); }
.plans-section .section-label::before { background: var(--gold); }
.plans-section .section-title { color: var(--frost); }
.plans-section .section-sub { color: var(--slate-light); }

.plans-grid { align-items: start; }

.plan-card {
    background: var(--navy-mid);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    position: relative;
    transition: border-color var(--transition), transform var(--transition);
}
.plan-card:hover {
    border-color: rgba(255,215,0,0.25);
    transform: translateY(-2px);
}

.plan-card.plan-featured {
    border: 2px solid var(--gold);
    background: var(--navy-light);
}

.plan-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--navy);
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 16px;
    border-radius: 20px;
    white-space: nowrap;
}

.plan-header {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.plan-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--frost);
    letter-spacing: 0.03em;
    margin-bottom: 6px;
}

.plan-desc {
    font-size: 0.88rem;
    color: var(--slate);
    line-height: 1.5;
}

.plan-features {
    margin-bottom: 28px;
}
.plan-features li {
    padding: 9px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 0.9rem;
    color: var(--slate-light);
    padding-left: 18px;
    position: relative;
}
.plan-features li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}
.plan-features li:last-child { border-bottom: none; }

.plan-card .btn-outline {
    border-color: rgba(255,255,255,0.2);
    color: var(--frost);
}
.plan-card .btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--frost);
}

.plans-footnote {
    text-align: center;
    margin-top: 36px;
    font-size: 0.9rem;
    color: var(--slate);
}
.plans-footnote a {
    color: var(--gold);
    font-weight: 600;
}
.plans-footnote a:hover { text-decoration: underline; }

/* Plan Pricing */
.plan-price {
    margin-bottom: 22px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.plan-price-amount {
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    display: flex;
    align-items: flex-start;
    gap: 2px;
}
.plan-price-amount .price-dollar {
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 6px;
    color: var(--gold-dark);
}
.plan-price-period {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--slate);
    align-self: flex-end;
    margin-bottom: 4px;
    margin-left: 2px;
}
.plan-price-from {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--slate);
    font-family: var(--font-body);
    text-transform: none;
    letter-spacing: 0;
    align-self: center;
    margin-right: 2px;
}
.plan-price-note {
    font-size: 0.75rem;
    color: var(--slate);
    margin-top: 6px;
    font-family: var(--font-body);
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-section {
    background: var(--navy-light);
    padding: 56px 0;
    border-top: 1px solid rgba(255,215,0,0.18);
    border-bottom: 1px solid rgba(255,215,0,0.18);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}
.stat-item {
    padding: 16px 24px;
    position: relative;
}
.stat-item + .stat-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: rgba(255,255,255,0.10);
}
.stat-value {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 4.5vw, 3.8rem);
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}
.stat-small {
    font-size: 0.5em;
    font-weight: 700;
    vertical-align: super;
    color: var(--gold-dark);
    letter-spacing: 0;
}
.stat-label {
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--slate-light);
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.18s; }
.reveal-delay-3 { transition-delay: 0.28s; }
.reveal-delay-4 { transition-delay: 0.38s; }
.reveal-delay-5 { transition-delay: 0.48s; }
.reveal-delay-6 { transition-delay: 0.58s; }
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
    background: var(--navy-mid);
    padding: 80px 0;
    border-top: 1px solid var(--border);
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.cta-copy {
    max-width: 640px;
}
.cta-copy h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    text-transform: uppercase;
    color: var(--gold);
    line-height: 1.05;
    margin-bottom: 16px;
}
.cta-copy p {
    font-size: 0.97rem;
    color: var(--slate-light);
    line-height: 1.75;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--navy);
}

.footer-top {
    padding: 64px 0 48px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

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

.footer-brand-logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--frost);
    letter-spacing: 0.02em;
    margin-bottom: 12px;
}
.footer-brand-logo span { color: var(--gold); }

.footer-tagline {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--slate-light);
    line-height: 1.4;
    margin-bottom: 14px;
}

.footer-sub {
    font-size: 0.82rem;
    color: var(--slate);
    line-height: 1.6;
}
.footer-sub a { color: var(--slate); text-decoration: underline; }
.footer-sub a:hover { color: var(--gold); }

.footer-links-col h4 {
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-links-col ul li { margin-bottom: 10px; }
.footer-links-col ul li a {
    color: var(--slate);
    font-size: 0.9rem;
    transition: color var(--transition);
}
.footer-links-col ul li a:hover { color: var(--frost); }

.footer-bottom {
    padding: 20px 0;
}
.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-bottom p {
    font-size: 0.8rem;
    color: var(--slate);
    text-align: center;
}

/* ============================================================
   RESPONSIVE — TABLET (max 960px)
   ============================================================ */
@media (max-width: 960px) {
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }

    .identity-inner { gap: 36px; }
    .identity-flag { width: 170px; height: 90px; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 0; }
    .stat-item + .stat-item::before { display: none; }

    .cta-inner { flex-direction: column; text-align: center; }
    .cta-actions { flex-direction: row; justify-content: center; }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 680px)
   ============================================================ */
@media (max-width: 680px) {

    /* Nav — header stays sticky; nav drops absolute below it */
    .primary-nav {
        display: none;
        position: absolute;
        top: 70px; /* 68px header + 2px border */
        left: 0;
        right: 0;
        background: var(--navy);
        border-top: 1px solid var(--border);
        border-bottom: 2px solid var(--gold);
        padding: 8px 0 16px;
        z-index: 200;
        box-shadow: 0 8px 24px rgba(0,0,0,0.5);
    }
    .primary-nav.open { display: block; }
    .primary-nav ul { flex-direction: column; gap: 0; }
    .primary-nav a { display: block; padding: 14px 24px; font-size: 1.05rem; border-radius: 0; }
    /* DO NOT set site-header to position:relative — it breaks sticky */
    .login-link { display: none; }
    .mobile-menu-btn { display: flex; }

    /* Hero */
    .hero-section { min-height: 75vh; padding: 70px 0 50px; }
    .hero-content h1 { font-size: clamp(2.8rem, 13vw, 4.5rem); }
    .hero-content p { font-size: 1rem; margin-bottom: 28px; }
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        margin-bottom: 32px;
    }
    .hero-buttons .btn { text-align: center; width: 100%; }
    /* Trust bar: 2-up grid, no dividers */
    .hero-trust-bar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px 0;
    }
    .trust-divider { display: none; }
    .trust-item { padding: 2px 0; width: 100%; font-size: 0.78rem; }
    .hero-scroll-hint { display: none; }

    /* Identity strip */
    .identity-inner { flex-direction: column; gap: 24px; }
    .identity-flag { width: 160px; height: 84px; align-self: flex-start; }
    .identity-copy h2 { font-size: clamp(1.4rem, 6vw, 1.8rem); }
    .identity-copy p { font-size: 0.93rem; }

    /* Stats — 2x2 grid */
    .stats-section { padding: 36px 0; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
    .stat-item { padding: 20px 12px; }
    .stat-item + .stat-item::before { display: none; }
    /* Subtle inner borders on 2x2 grid */
    .stats-grid .stat-item:nth-child(1) { border-bottom: 1px solid rgba(255,255,255,0.08); border-right: 1px solid rgba(255,255,255,0.08); }
    .stats-grid .stat-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.08); }
    .stats-grid .stat-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.08); }
    .stat-value { font-size: clamp(2rem, 9vw, 3rem); }
    /* "Free" stat word needs slightly smaller font so it fits */
    .stat-value.stat-word { font-size: clamp(1.6rem, 7vw, 2.4rem); }

    /* Feature & plan cards — single column */
    .value-section { padding: 56px 0; }
    .plans-section { padding: 56px 0; }
    .grid-3 { grid-template-columns: 1fr; gap: 16px; }
    .feature-card { padding: 28px 22px; }
    .plan-card { padding: 28px 22px; }
    .plan-card.plan-featured { transform: none; margin-top: 8px; }

    /* CTA */
    .cta-section { padding: 56px 0; }
    .cta-inner { text-align: left; }
    .cta-actions { flex-direction: column; width: 100%; }
    .cta-actions .btn { text-align: center; width: 100%; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-top { padding: 44px 0 28px; }
    .footer-bottom p { font-size: 0.75rem; }
}
