/* ═══════════════════════════════════════════════════════
   WeldUP Landing Page — Premium Redesign
   Design system: dark navy · gold-arc · weld-orange sparks
═══════════════════════════════════════════════════════ */

:root {
    /* Palette */
    --gold:        #BFA46A;
    --gold-light:  #D4B97A;
    --gold-dark:   #8B6914;
    --gold-dim:    rgba(191, 164, 106, 0.15);
    --orange:      #FF6B00;
    --orange-glow: rgba(255, 107, 0, 0.35);
    --navy-900:    #070B15;
    --navy-800:    #0A0E1A;
    --navy-700:    #0F1524;
    --navy-600:    #111827;
    --navy-500:    #1A2436;
    --navy-400:    #1E293B;
    --ivory:       #F5F0E8;
    --ivory-dim:   rgba(245, 240, 232, 0.55);
    --ivory-faint: rgba(245, 240, 232, 0.12);
    --border:      rgba(191, 164, 106, 0.18);
    --border-hover:rgba(191, 164, 106, 0.5);
    --surface:     rgba(255, 255, 255, 0.03);
    --success:     #2ECC71;

    /* Typography */
    --font-body: 'Inter', system-ui, sans-serif;
    --font-display: 'Outfit', system-ui, sans-serif;

    /* Layout */
    --max-w: 1200px;
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --radius-xl: 48px;

    /* Motion */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --dur: 0.35s;
}

/* ─── Reset ─────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    background: var(--navy-800);
    color: var(--ivory);
    font-family: var(--font-body);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4, .btn { font-family: var(--font-display); }

/* ─── Utility ───────────────────────────────────────── */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 2rem;
}
.accent-gradient {
    background: linear-gradient(120deg, var(--gold-light) 0%, var(--orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ─── Buttons ───────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: transform var(--dur) var(--ease),
                box-shadow var(--dur) var(--ease),
                background var(--dur) var(--ease);
    white-space: nowrap;
}
.btn-glow {
    background: linear-gradient(135deg, var(--orange) 0%, #FF3D00 100%);
    color: #fff;
    box-shadow: 0 8px 24px rgba(255, 107, 0, 0.4);
}
.btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(255, 107, 0, 0.55);
}
.btn-ghost {
    background: var(--ivory-faint);
    color: var(--ivory);
    border: 1px solid var(--border);
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.07);
    border-color: var(--border-hover);
    transform: translateY(-2px);
}
.btn-outline-gold {
    background: transparent;
    color: var(--gold-light);
    border: 1.5px solid var(--gold);
}
.btn-outline-gold:hover {
    background: var(--gold-dim);
    transform: translateY(-2px);
}
.btn-hero-unlock {
    background: linear-gradient(135deg, #FF6B00, #C44800);
    color: #fff;
    box-shadow: 0 6px 20px rgba(255,107,0,0.35);
}
.btn-hero-unlock:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(255,107,0,0.5); }
.btn-xl { padding: 1.15rem 2.6rem; font-size: 1.1rem; border-radius: var(--radius-md); }
.btn-full { width: 100%; justify-content: center; margin-top: 1.75rem; }

/* Coin mini-button */
.btn-coin {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--gold-light);
    border: 1px solid var(--border);
    background: transparent;
    cursor: pointer;
    transition: var(--dur) var(--ease);
    white-space: nowrap;
}
.btn-coin:hover { background: var(--gold-dim); border-color: var(--gold); }
.btn-coin--mid { background: var(--gold-dim); border-color: var(--gold); }


/* ═══════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════ */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.25rem 0;
    background: rgba(7, 11, 21, 0.72);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
    transition: padding var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
#navbar.scrolled {
    padding: 0.85rem 0;
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
#navbar nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.logo img { height: 38px; transition: transform var(--dur) var(--ease); }
.logo:hover img { transform: scale(1.05); }
.nav-links {
    display: flex;
    gap: 2.5rem;
    margin-left: auto;
}
.nav-links a {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--ivory-dim);
    letter-spacing: 0.3px;
    transition: color var(--dur) var(--ease);
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: width var(--dur) var(--ease);
}
.nav-links a:hover { color: var(--ivory); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { margin-left: 2rem; }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.4rem;
    margin-left: auto;
}
.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--ivory);
    border-radius: 2px;
    transition: var(--dur) var(--ease);
    display: block;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-menu {
    display: none;
    padding: 1.5rem 2rem 2rem;
    background: var(--navy-700);
    border-top: 1px solid var(--border);
}
.mobile-menu.open { display: block; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 1.25rem; }
.mobile-menu a { font-size: 1.05rem; font-weight: 600; color: var(--ivory-dim); }
.mobile-menu a:hover { color: var(--ivory); }


/* ═══════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
    background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(15,21,36,1) 0%, var(--navy-800) 100%);
}

#sparks-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}
.hero-blob--left {
    width: 500px;
    height: 500px;
    top: 10%;
    left: -8%;
    background: radial-gradient(circle, rgba(191,164,106,0.07), transparent 70%);
}
.hero-blob--right {
    width: 600px;
    height: 600px;
    top: 0%;
    right: -5%;
    background: radial-gradient(circle, rgba(255,107,0,0.08), transparent 70%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 5rem;
    padding-top: 2rem;
    padding-bottom: 6rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 1.2rem;
    background: rgba(255,107,0,0.1);
    color: #FF8C40;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 1px solid rgba(255,107,0,0.25);
    margin-bottom: 2rem;
}

.hero-content h1 {
    font-size: clamp(3rem, 5vw, 5.2rem);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 1.75rem;
}

.hero-sub {
    font-size: 1.15rem;
    color: var(--ivory-dim);
    max-width: 520px;
    margin-bottom: 3rem;
    font-weight: 300;
    line-height: 1.7;
}
.hero-sub strong { color: var(--ivory); font-weight: 600; }

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

/* Social proof counters */
.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 2rem;
    background: var(--ivory-faint);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    width: fit-content;
}
.proof-item { text-align: center; }
.proof-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold-light);
}
.proof-suffix { font-size: 1.4rem; font-weight: 900; color: var(--gold-light); }
.proof-label {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--ivory-dim);
    margin-top: 0.15rem;
}
.proof-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
    flex-shrink: 0;
}

/* Hero visual */
.hero-visual { position: relative; }
.hero-char-wrap {
    position: relative;
    display: flex;
    justify-content: center;
}

/* Arc glow ring */
.arc-ring {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,107,0,0.12) 0%, transparent 70%);
    filter: blur(30px);
    z-index: 0;
}

.hero-char-img {
    position: relative;
    z-index: 2;
    max-height: 520px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.7)) drop-shadow(0 0 40px rgba(255,107,0,0.2));
    animation: float 6s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

/* Floating cards */
.float-card {
    position: absolute;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1.25rem;
    background: rgba(10, 14, 26, 0.85);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    backdrop-filter: blur(16px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.5);
    animation: floatCard 8s ease-in-out infinite;
}
.float-card--top-right { top: 8%; right: -8%; animation-delay: -3s; }
.float-card--bottom-left { bottom: 10%; left: -8%; animation-delay: -1s; }
@keyframes floatCard {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50% { transform: translateY(-8px) rotate(1deg); }
}
.float-card-title { font-size: 0.72rem; color: var(--ivory-dim); letter-spacing: 0.5px; }
.float-card-val { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; }

/* Scroll cue */
.scroll-cue {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}
.scroll-cue-line {
    width: 1px;
    height: 60px;
    margin: 0 auto;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}


/* ═══════════════════════════════════════════════════════
   SECTION SHARED
═══════════════════════════════════════════════════════ */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
}
.section-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--gold);
    margin-bottom: 1rem;
}
.section-header h2 {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}
.section-header p {
    font-size: 1.1rem;
    color: var(--ivory-dim);
    max-width: 580px;
    margin: 0 auto;
}


/* ═══════════════════════════════════════════════════════
   FEATURES
═══════════════════════════════════════════════════════ */
.features-section {
    padding: 9rem 0;
    background: var(--navy-700);
    position: relative;
}
.features-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.features-section::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 2rem;
}
.feature-card--wide {
    grid-column: span 1;
}
/* Last two span 1.5 each = use auto placement trick */
.features-grid .feature-card:nth-child(4),
.features-grid .feature-card:nth-child(5) {
    grid-column: span 1;
}
/* Rebalance last row: 2 cards centered */
@supports (grid-template-columns: subgrid) {
    .features-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    .feature-card { grid-column: span 2; }
    .feature-card:nth-child(4) { grid-column: 1 / span 3; }
    .feature-card:nth-child(5) { grid-column: 4 / span 3; }
}

.feature-card {
    background: rgba(26, 36, 54, 0.5);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    transition: transform var(--dur) var(--ease),
                border-color var(--dur) var(--ease),
                box-shadow var(--dur) var(--ease);
}
.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: 0 20px 60px rgba(0,0,0,0.35), 0 0 40px rgba(191,164,106,0.05);
}
.feature-icon-wrap { margin-bottom: 1.75rem; }
.feature-icon-svg { width: 48px; height: 48px; }
.feature-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}
.feature-card p {
    font-size: 0.97rem;
    color: var(--ivory-dim);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.feature-card p strong { color: var(--ivory); }
.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.feature-tags span {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 0.3rem 0.75rem;
    border-radius: 6px;
    background: var(--gold-dim);
    color: var(--gold-light);
    border: 1px solid var(--border);
}


/* ═══════════════════════════════════════════════════════
   CHARACTERS
═══════════════════════════════════════════════════════ */
.characters-section {
    padding: 9rem 0;
    background: var(--navy-800);
    position: relative;
    overflow: hidden;
}
.characters-section::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 900px; height: 900px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(191,164,106,0.04) 0%, transparent 70%);
    pointer-events: none;
}

.characters-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

/* Featured card takes 2 columns × 2 rows */
.char-card--featured {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 460px;
    background: linear-gradient(160deg, rgba(30,41,59,0.8) 0%, rgba(10,14,26,0.9) 100%);
    border: 2px solid var(--border);
}
.char-card--featured:hover { border-color: var(--gold); }
.char-card--featured .char-img-wrap img {
    max-height: 260px;
}

.char-card {
    background: rgba(15, 21, 36, 0.6);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem 1.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform var(--dur) var(--ease),
                border-color var(--dur) var(--ease),
                box-shadow var(--dur) var(--ease);
    cursor: default;
}
.char-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}

.char-card-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 30%, rgba(255,107,0,0.07) 0%, transparent 65%);
    pointer-events: none;
}

.char-crown {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold);
    padding: 0.4rem 1rem;
    border: 1px solid var(--border);
    border-radius: 50px;
    margin-bottom: 1.5rem;
    background: var(--gold-dim);
}

.char-glow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px; height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,107,0,0.18), transparent 70%);
    filter: blur(20px);
    pointer-events: none;
}

.char-img-wrap {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: 1.25rem;
    min-height: 130px;
}
.char-img-wrap img {
    max-height: 150px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 24px rgba(0,0,0,0.6));
    transition: transform var(--dur) var(--ease), filter var(--dur) var(--ease);
}
.char-card:hover .char-img-wrap img {
    transform: scale(1.07) translateY(-4px);
    filter: drop-shadow(0 16px 36px rgba(0,0,0,0.7)) drop-shadow(0 0 20px rgba(255,107,0,0.15));
}

.char-info { width: 100%; }
.char-name {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 0.4rem;
    color: var(--ivory);
}
.char-desc {
    font-size: 0.85rem;
    color: var(--ivory-dim);
    line-height: 1.5;
    margin-bottom: 1rem;
}

/* Tier progress bar */
.char-tier-bar {
    display: flex;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 1.25rem;
}
.tier {
    width: 36px;
    height: 8px;
    border-radius: 4px;
    background: var(--border);
    font-size: 0; /* hide text */
    transition: background var(--dur) var(--ease);
}
.tier.active { background: var(--gold); }

.chars-cta {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}
.chars-cta p { color: var(--ivory-dim); font-size: 0.95rem; }


/* ═══════════════════════════════════════════════════════
   PRICING
═══════════════════════════════════════════════════════ */
.pricing-section {
    padding: 9rem 0;
    background: var(--navy-700);
    position: relative;
}
.pricing-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.price-card {
    background: rgba(26, 36, 54, 0.45);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform var(--dur) var(--ease),
                border-color var(--dur) var(--ease),
                box-shadow var(--dur) var(--ease);
    backdrop-filter: blur(12px);
}
.price-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}
.price-card--popular {
    background: linear-gradient(160deg, rgba(191,164,106,0.1) 0%, rgba(10,14,26,0.7) 60%);
    border: 2px solid var(--gold);
    box-shadow: 0 0 60px rgba(191,164,106,0.07);
}
.price-card--popular:hover {
    box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 80px rgba(191,164,106,0.1);
}

.price-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
}

.price-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
}
.price-icon {
    width: 52px; height: 52px;
    border-radius: var(--radius-sm);
    background: var(--gold-dim);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.price-icon--silver { background: rgba(245,240,232,0.06); }
.price-icon--coin   { background: rgba(212,175,55,0.1); border-color: rgba(212,175,55,0.3); }
.price-icon--hero   { background: rgba(255,107,0,0.1); border-color: rgba(255,107,0,0.3); }

.price-plan-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 800;
}
.price-plan-sub {
    font-size: 0.8rem;
    color: var(--ivory-dim);
    margin-top: 0.15rem;
}

.price-amount {
    display: flex;
    align-items: baseline;
    gap: 0.2rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 4rem;
    line-height: 1;
    color: var(--ivory);
}
.price-amount--sm { font-size: 3rem; }
.price-currency { font-size: 1.6rem; align-self: flex-start; margin-top: 0.6rem; }
.price-decimal { font-size: 2rem; }
.price-period { font-size: 1rem; font-weight: 400; color: var(--ivory-dim); margin-left: 0.25rem; }
.price-equiv {
    font-size: 0.8rem;
    color: var(--gold);
    margin-bottom: 2rem;
    min-height: 1.2em;
}

.price-features {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}
.price-features li {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    font-size: 0.97rem;
    color: rgba(245, 240, 232, 0.85);
}
.price-features li svg {
    width: 16px; height: 16px;
    flex-shrink: 0;
}

/* Coins card */
.coins-desc {
    font-size: 0.9rem;
    color: var(--ivory-dim);
    margin-bottom: 1.75rem;
    line-height: 1.6;
}
.coin-options { display: flex; flex-direction: column; gap: 0; }
.coin-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--border);
    gap: 0.75rem;
}
.coin-row:last-child { border-bottom: none; }
.coin-row--mid { background: none; }
.coin-row-left {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    font-weight: 600;
    flex: 1;
}
.coin-row-right { display: flex; align-items: center; gap: 0.75rem; }
.coin-price { font-family: var(--font-display); font-weight: 800; color: var(--gold-light); font-size: 0.95rem; }
.coin-popular-tag {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--orange);
    border: 1px solid rgba(255,107,0,0.3);
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    background: rgba(255,107,0,0.08);
}

/* Hero character card */
.hero-char-preview {
    position: relative;
    height: 160px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin: 1rem 0;
    overflow: hidden;
}
.hero-card-char {
    max-height: 155px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.5));
    transition: opacity 0.6s ease;
}
.hero-char-tagline {
    font-size: 0.87rem;
    color: var(--ivory-dim);
    line-height: 1.6;
    margin-bottom: 0.25rem;
}


/* ═══════════════════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════════════════ */
.cta-section {
    padding: 8rem 0;
    background: var(--navy-800);
    position: relative;
    overflow: hidden;
}
.cta-bg-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 700px; height: 400px;
    background: radial-gradient(ellipse, rgba(255,107,0,0.08) 0%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
}
.cta-inner {
    display: grid;
    grid-template-columns: 0fr 1fr;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 2;
}
.cta-char-wrap { display: flex; justify-content: flex-end; }
.cta-char {
    max-height: 320px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6)) drop-shadow(0 0 30px rgba(255,107,0,0.15));
    animation: float 7s ease-in-out infinite;
}
.cta-text h2 {
    font-size: clamp(2.2rem, 3.5vw, 3rem);
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}
.cta-text p {
    font-size: 1.1rem;
    color: var(--ivory-dim);
    margin-bottom: 2.5rem;
    max-width: 500px;
}
.cta-actions { display: flex; gap: 1.25rem; flex-wrap: wrap; }


/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
footer {
    background: var(--navy-900);
    padding: 5rem 0 3rem;
    border-top: 1px solid var(--border);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
}
.footer-logo { height: 32px; margin-bottom: 1.25rem; }
.footer-brand p {
    font-size: 0.88rem;
    color: var(--ivory-dim);
    line-height: 1.65;
    margin-bottom: 0.25rem;
}
.footer-copy { margin-top: 1.5rem; font-size: 0.78rem !important; color: rgba(245,240,232,0.3) !important; }
.footer-col-title {
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col a {
    font-size: 0.88rem;
    color: var(--ivory-dim);
    transition: color var(--dur) var(--ease);
}
.footer-col a:hover { color: var(--ivory); }
.footer-cert {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.75rem;
}
.footer-cert span {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    background: var(--gold-dim);
    color: var(--gold);
    border: 1px solid var(--border);
}


/* ═══════════════════════════════════════════════════════
   AOS (Animate On Scroll — minimal custom)
═══════════════════════════════════════════════════════ */
[data-aos] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
[data-aos].aos-animate {
    opacity: 1;
    transform: none;
}
[data-aos][data-aos-delay="60"]  { transition-delay: 60ms; }
[data-aos][data-aos-delay="100"] { transition-delay: 100ms; }
[data-aos][data-aos-delay="120"] { transition-delay: 120ms; }
[data-aos][data-aos-delay="180"] { transition-delay: 180ms; }
[data-aos][data-aos-delay="200"] { transition-delay: 200ms; }
[data-aos][data-aos-delay="240"] { transition-delay: 240ms; }
[data-aos][data-aos-delay="300"] { transition-delay: 300ms; }
[data-aos][data-aos-delay="360"] { transition-delay: 360ms; }
[data-aos][data-aos-delay="400"] { transition-delay: 400ms; }
[data-aos][data-aos-delay="420"] { transition-delay: 420ms; }
[data-aos][data-aos-delay="500"] { transition-delay: 500ms; }
[data-aos][data-aos-delay="700"] { transition-delay: 700ms; }


/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
    .characters-grid { grid-template-columns: repeat(3, 1fr); }
    .char-card--featured { grid-column: span 3; grid-row: span 1; min-height: unset; }
    .char-card--featured .char-img-wrap img { max-height: 200px; }
}

@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; padding-top: 3rem; padding-bottom: 4rem; gap: 3rem; }
    .hero-content h1 { font-size: 3rem; }
    .hero-sub { margin: 0 auto 2.5rem; }
    .hero-actions { justify-content: center; }
    .hero-social-proof { margin: 0 auto; }
    .hero-visual { order: -1; }
    .hero-char-img { max-height: 340px; }
    .float-card--top-right { right: 0; }
    .float-card--bottom-left { left: 0; }

    .features-grid { grid-template-columns: 1fr; }
    .feature-card:nth-child(4),
    .feature-card:nth-child(5) { grid-column: span 1; }
    @supports (grid-template-columns: subgrid) {
        .features-grid { grid-template-columns: 1fr; }
        .feature-card,
        .feature-card:nth-child(4),
        .feature-card:nth-child(5) { grid-column: span 1; }
    }

    .characters-grid { grid-template-columns: repeat(2, 1fr); }
    .char-card--featured { grid-column: span 2; }

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

    .cta-inner { grid-template-columns: 1fr; text-align: center; }
    .cta-char-wrap { justify-content: center; }
    .cta-actions { justify-content: center; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer-brand { grid-column: span 2; }
}

@media (max-width: 640px) {
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }
    .hero-social-proof { flex-direction: column; gap: 1.25rem; }
    .proof-divider { width: 40px; height: 1px; }
    .characters-grid { grid-template-columns: 1fr; }
    .char-card--featured { grid-column: span 1; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-brand { grid-column: span 1; }
}
