/* ============================================
   $CPT MINIMAL — Mikkal-inspired Design System
   Clean · Editorial · Premium · Professional
   ============================================ */

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

:root {
    /* Palette */
    --bg:        #F2F0EC;
    --bg-card:   #ECEAE4;
    --bg-card-2: #E5E3DC;
    --bg-white:  #FFFFFF;
    --bg-dark:   #111110;
    --bg-dark-2: #1A1A18;

    --ink:       #111110;
    --ink-2:     #3D3C38;
    --ink-3:     #6B6A65;
    --ink-4:     #9B9A95;

    --blue:      #0078D4;
    --blue-2:    #2870EA;
    --teal:      #00A693;
    --green:     #4CAF50;

    --border:    rgba(0,0,0,0.07);
    --border-2:  rgba(0,0,0,0.12);

    /* Shadows */
    --sh-card: 0 1px 2px rgba(0,0,0,0.04), 0 4px 20px rgba(0,0,0,0.06);
    --sh-up:   0 8px 40px rgba(0,0,0,0.1), 0 2px 8px rgba(0,0,0,0.06);
    --sh-pill: 0 2px 8px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);

    /* Radii */
    --r-xs:  6px;
    --r-sm:  10px;
    --r-md:  16px;
    --r-lg:  24px;
    --r-xl:  32px;
    --r-2xl: 44px;
    --r-full: 999px;

    /* Font */
    --font: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
}

html { scroll-behavior: smooth; }

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

/* =====================
   NAVIGATION
   ===================== */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 0 32px;
    height: 60px;
    display: flex;
    align-items: center;
    background: rgba(242, 240, 236, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.nav.scrolled {
    background: rgba(242, 240, 236, 0.96);
    box-shadow: 0 1px 0 var(--border-2), 0 4px 20px rgba(0,0,0,0.04);
}

.nav-inner {
    max-width: 1080px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.2px;
}

.nav-links {
    display: flex;
    gap: 2px;
}

.nav-a {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--ink-3);
    text-decoration: none;
    padding: 6px 14px;
    border-radius: var(--r-full);
    transition: all 0.2s;
}

.nav-a:hover {
    color: var(--ink);
    background: rgba(0,0,0,0.05);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    background: var(--ink);
    color: #fff;
    border: none;
    border-radius: var(--r-full);
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font);
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.nav-cta:hover {
    background: var(--ink-2);
    transform: translateY(-1px);
    box-shadow: var(--sh-up);
}

/* =====================
   HERO
   ===================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 130px 24px 80px;
    text-align: center;
}

.hero-wrap {
    max-width: 740px;
    margin: 0 auto;
}

/* Eyebrow */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: var(--bg-white);
    border: 1px solid var(--border-2);
    border-radius: var(--r-full);
    font-size: 12.5px;
    font-weight: 600;
    color: var(--ink-2);
    margin-bottom: 36px;
    box-shadow: var(--sh-pill);
    letter-spacing: -0.1px;
}

.eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4CAF50;
    animation: epulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes epulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(76,175,80,0.4); }
    50% { box-shadow: 0 0 0 5px rgba(76,175,80,0); }
}

/* Hero Headline */
.hero-h1 {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -3px;
    color: var(--ink);
    margin-bottom: 24px;
}

.hero-h1 em {
    font-style: normal;
    background: linear-gradient(135deg, #0078D4, #00C4FF, #E13A78);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: hgrad 6s ease-in-out infinite;
}

@keyframes hgrad {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

/* Hero Sub */
.hero-sub {
    font-size: 1.1rem;
    color: var(--ink-3);
    line-height: 1.7;
    max-width: 540px;
    margin: 0 auto 40px;
    font-weight: 400;
}

.hero-sub strong {
    color: var(--ink);
    font-weight: 600;
}

/* CTA row */
.hero-cta-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.btn-pill-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--ink);
    color: #fff;
    border: none;
    border-radius: var(--r-full);
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    letter-spacing: -0.2px;
}

.btn-pill-primary:hover {
    background: var(--ink-2);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}

.btn-pill-ghost {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 14px 28px;
    background: transparent;
    color: var(--ink-2);
    border: 1.5px solid var(--border-2);
    border-radius: var(--r-full);
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font);
    cursor: pointer;
    transition: all 0.2s;
}

.btn-pill-ghost:hover {
    border-color: var(--ink);
    color: var(--ink);
    background: rgba(0,0,0,0.03);
}

/* Urgency strip */
.urgency-strip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--bg-white);
    border: 1px solid var(--border-2);
    border-radius: var(--r-full);
    font-size: 13px;
    color: var(--ink-3);
    box-shadow: var(--sh-pill);
    flex-wrap: wrap;
    justify-content: center;
}

.urgency-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #EF4444;
    animation: epulse2 1.5s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes epulse2 {
    0%, 100% { box-shadow: 0 0 0 0 rgba(239,68,68,0.4); }
    50% { box-shadow: 0 0 0 5px rgba(239,68,68,0); }
}

.urgency-timer {
    font-weight: 800;
    color: var(--ink);
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.5px;
}

/* =====================
   BENTO GRID
   ===================== */
.bento-section {
    padding: 0 24px 80px;
}

.bento-grid {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: auto;
    gap: 16px;
}

.bento-card {
    background: var(--bg-white);
    border-radius: var(--r-xl);
    border: 1px solid var(--border);
    padding: 36px;
    box-shadow: var(--sh-card);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
    overflow: hidden;
}

.bento-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--sh-up);
}

/* Layout */
.card-use   { grid-column: span 5; }
.card-score { grid-column: span 4; }
.card-earn  { grid-column: span 3; }
.card-stats { grid-column: span 12; }
.card-early { grid-column: span 12; }
.card-tiers { grid-column: span 12; }

/* =====================
   EARLY ACCESS CARD
   ===================== */
.card-early {
    background: var(--ink);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    padding: 52px 52px;
    border: none;
    position: relative;
    overflow: hidden;
}

.card-early::before {
    content: '';
    position: absolute;
    width: 700px; height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,120,212,0.18), transparent 70%);
    top: -300px; right: -100px;
    pointer-events: none;
}

/* Left col */
.ea-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    margin-bottom: 24px;
}

.ea-badge-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #EF4444;
    flex-shrink: 0;
    animation: eapulse 1.5s ease-in-out infinite;
}

@keyframes eapulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(239,68,68,0.5); }
    50%       { box-shadow: 0 0 0 5px rgba(239,68,68,0); }
}

.ea-h3 {
    font-size: clamp(1.8rem, 3vw, 2.6rem) !important;
    font-weight: 900 !important;
    letter-spacing: -1.5px !important;
    line-height: 1.08 !important;
    color: #fff !important;
    margin-bottom: 16px !important;
}

.ea-h3 em {
    font-style: normal;
    background: linear-gradient(135deg, #00C4FF, #7FBA00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ea-p {
    font-size: 0.95rem !important;
    color: rgba(255,255,255,0.55) !important;
    line-height: 1.7 !important;
    margin-bottom: 28px !important;
}

.ea-p strong { color: rgba(255,255,255,0.9); }

.ea-wallets-live {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
}

.ea-wallets-avatars {
    display: flex;
}

.ea-av {
    width: 28px; height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    margin-left: -6px;
    border: 2px solid var(--ink);
    flex-shrink: 0;
}

.ea-av:first-child { margin-left: 0; }

.ea-wallets-text {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    gap: 8px;
}

.ea-wallets-count {
    font-weight: 800;
    color: #fff;
    font-size: 14px;
    letter-spacing: -0.3px;
    font-variant-numeric: tabular-nums;
}

.ea-wallets-live-tag {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #EF4444;
    background: rgba(239,68,68,0.15);
    padding: 2px 7px;
    border-radius: var(--r-full);
    animation: tagpulse 2s ease-in-out infinite;
}

@keyframes tagpulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.6; }
}

.ea-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: #fff;
    color: var(--ink);
    border: none;
    border-radius: var(--r-full);
    font-size: 14px;
    font-weight: 700;
    font-family: var(--font);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    letter-spacing: -0.2px;
}

.ea-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
    background: #F5F5F5;
}

/* Right col */
.ea-compare-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.ea-compare {
    display: flex;
    align-items: stretch;
    gap: 16px;
    margin-bottom: 20px;
}

.ea-compare-col {
    flex: 1;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--r-lg);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
}

.ea-compare-col.early-col {
    background: rgba(0,120,212,0.12);
    border-color: rgba(0,196,255,0.2);
}

.ea-col-tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 4px;
}

.ea-col-tag.early-tag {
    color: #00C4FF;
}

.ea-col-task {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
    font-style: italic;
    flex: 1;
}

.ea-col-amount {
    font-size: 2rem;
    font-weight: 900;
    color: rgba(255,255,255,0.5);
    letter-spacing: -1px;
    line-height: 1;
}

.ea-col-amount.early-amount {
    color: #fff;
    background: linear-gradient(135deg, #fff, #00C4FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ea-col-unit {
    font-size: 11px;
    color: rgba(255,255,255,0.35);
    font-weight: 500;
}

.ea-col-bar {
    height: 5px;
    background: rgba(255,255,255,0.06);
    border-radius: 3px;
    overflow: hidden;
    margin-top: 6px;
}

.ea-bar-fill {
    height: 100%;
    border-radius: 3px;
    transition: width 1s ease-out;
}

.ea-col-badge {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.3px;
    color: #00C4FF;
    background: rgba(0,196,255,0.12);
    padding: 4px 10px;
    border-radius: var(--r-full);
    text-align: center;
    margin-top: 4px;
}

.ea-vs {
    font-size: 11px;
    font-weight: 800;
    color: rgba(255,255,255,0.2);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.ea-timer-strip {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12.5px;
    color: rgba(255,255,255,0.45);
    padding: 12px 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--r-md);
}

.ea-timer-strip strong {
    color: #fff;
    font-weight: 800;
    letter-spacing: -0.3px;
    font-variant-numeric: tabular-nums;
}

/* Responsive */
@media (max-width: 900px) {
    .card-early {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 32px;
    }
    .card-early::before { display: none; }
}

.bento-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: var(--ink-4);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.bento-card h3 {
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: 12px;
}

.bento-card p {
    font-size: 0.9rem;
    color: var(--ink-3);
    line-height: 1.65;
    margin-bottom: 24px;
}

/* === Prompt Mock (card-use) === */
.prompt-mock {
    background: var(--bg);
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--border-2);
}

.prompt-bar {
    display: flex;
    gap: 6px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
}

.prompt-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--border-2);
}

.prompt-line {
    padding: 16px;
    font-size: 13.5px;
    color: var(--ink-2);
    min-height: 52px;
    line-height: 1.5;
    font-weight: 400;
}

.prompt-cursor {
    display: inline-block;
    width: 2px; height: 16px;
    background: var(--blue);
    vertical-align: text-bottom;
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* === Score Visual (card-score) === */
.score-visual {
    display: flex;
    gap: 20px;
    align-items: center;
}

.score-ring-wrap {
    position: relative;
    flex-shrink: 0;
    width: 80px;
    height: 80px;
}

.score-ring {
    width: 80px;
    height: 80px;
}

.score-num {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -1px;
}

.score-num span {
    font-size: 10px;
    font-weight: 500;
    color: var(--ink-4);
    margin-top: 4px;
    letter-spacing: 0;
}

.score-labels {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.score-label-row {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    color: var(--ink-3);
}

.score-label-row .sl-val {
    margin-left: auto;
    font-weight: 700;
    color: var(--ink);
    font-size: 12px;
}

.sl-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}
.sl-dot.blue  { background: var(--blue); }
.sl-dot.teal  { background: var(--teal); }
.sl-dot.green { background: var(--green); }

/* === Earn Card (card-earn) === */
.card-earn {
    background: var(--ink);
    color: #fff;
}

.card-earn .bento-tag { color: rgba(255,255,255,0.4); }
.card-earn h3 { color: #fff; }
.card-earn p  { color: rgba(255,255,255,0.55); margin-bottom: 0; }

.earn-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.earn-text { margin-bottom: 32px; }

.token-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: rgba(255,255,255,0.07);
    border-radius: var(--r-lg);
    border: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 20px;
}

.token-icon {
    width: 44px; height: 44px;
    border-radius: var(--r-md);
    background: linear-gradient(135deg, var(--blue), #00C4FF);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.token-symbol {
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.3px;
}

.token-name {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    font-weight: 400;
    margin-top: 1px;
}

.earn-amount-wrap {
    text-align: center;
    padding: 16px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--r-lg);
    border: 1px solid rgba(255,255,255,0.08);
}

.earn-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.earn-amount {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -2px;
    color: #fff;
    line-height: 1;
    margin-bottom: 4px;
}

.earn-currency {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.5px;
}

/* === Stats Card === */
.card-stats {
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 32px 48px;
    border-radius: var(--r-xl);
}

.stat-item {
    flex: 1;
    text-align: center;
    padding: 8px 24px;
}

.stat-val {
    font-size: 2.4rem;
    font-weight: 900;
    letter-spacing: -1.5px;
    color: var(--ink);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-lbl {
    font-size: 13px;
    color: var(--ink-3);
    font-weight: 500;
}

.stat-div {
    width: 1px;
    height: 52px;
    background: var(--border-2);
    flex-shrink: 0;
}

/* === Tiers Card === */
.card-tiers {
    background: var(--bg-card);
}

.card-tiers h3 {
    font-size: 1.8rem;
    letter-spacing: -0.8px;
    margin-bottom: 32px;
}

.tiers-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.tier-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--bg-white);
    border-radius: var(--r-md);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.tier-row:not(.hot):hover {
    background: #FAFAFA;
    transform: translateX(6px);
    box-shadow: -3px 0 0 var(--blue);
}

/* Hot row — highlighted with natural Most popular badge */
.tier-row.hot {
    background: #0F172A;
    border: none;
    box-shadow: 0 4px 24px rgba(0, 120, 212, 0.18);
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    position: relative;
}

.tier-row.hot .tier-pill.advanced {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
}

.tier-row.hot .tier-desc {
    color: rgba(255,255,255,0.8);
}

.tier-range-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
    flex-shrink: 0;
}

.tier-row.hot .tier-range {
    color: #fff;
    font-weight: 700;
}

.tier-popular-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: #34d399;
    background: rgba(52, 211, 153, 0.12);
    border: 1px solid rgba(52, 211, 153, 0.3);
    border-radius: 20px;
    padding: 2px 8px;
    white-space: nowrap;
}

.tier-popular-tag::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #34d399;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}


.tier-pill {
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--r-full);
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.tier-pill.basic    { background: rgba(0,0,0,0.06); color: var(--ink-2); }
.tier-pill.standard { background: rgba(0,120,212,0.1); color: var(--blue); }
.tier-pill.advanced { background: rgba(255,255,255,0.15); color: #fff; }
.tier-pill.expert   { background: rgba(225,58,120,0.1); color: #E13A78; }

.tier-desc {
    flex: 1;
    font-size: 13.5px;
    color: var(--ink-3);
}

.tier-range {
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.3px;
    white-space: nowrap;
}

/* old tag — kept for safety but now unused */
.tier-hot-tag {
    display: none;
}

/* =====================
   HOW SECTION
   ===================== */
.how-section {
    padding: 80px 24px 80px;
    background: var(--bg-white);
}

.how-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.section-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--blue);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-h2 {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -1.5px;
    color: var(--ink);
    margin-bottom: 14px;
    line-height: 1.05;
}

.section-sub {
    font-size: 1rem;
    color: var(--ink-3);
    line-height: 1.7;
    margin-bottom: 60px;
}

.how-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    text-align: left;
}

.how-step {
    display: flex;
    gap: 24px;
    padding: 32px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.how-step.visible {
    opacity: 1;
    transform: translateY(0);
}

.how-step-num {
    font-size: 13px;
    font-weight: 800;
    color: var(--ink-4);
    letter-spacing: 0.5px;
    padding-top: 3px;
    flex-shrink: 0;
    width: 40px;
}

.how-step-body h4 {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.3px;
    color: var(--ink);
    margin-bottom: 6px;
}

.how-step-body p {
    font-size: 0.95rem;
    color: var(--ink-3);
    line-height: 1.65;
}

.how-connector {
    width: 1px;
    height: 32px;
    background: var(--border-2);
    margin-left: 19px;
}

/* =====================
   CTA SECTION
   ===================== */
.cta-section {
    padding: 80px 24px;
    background: var(--bg);
}

.cta-inner {
    max-width: 720px;
    margin: 0 auto;
}

.cta-card {
    background: var(--ink);
    border-radius: var(--r-2xl);
    padding: 64px 56px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,120,212,0.25), transparent 70%);
    top: -200px; left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.cta-countdown-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.cta-timer-row {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 40px;
}

.ct-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 64px;
}

.ct-num {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -2px;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.ct-lbl {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.5px;
    margin-top: 4px;
}

.ct-sep {
    font-size: 2.5rem;
    font-weight: 200;
    color: rgba(255,255,255,0.25);
    padding-bottom: 20px;
}

.cta-h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -1px;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 14px;
}

.cta-sub {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    margin-bottom: 40px;
}

.wallet-options {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.wallet-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--r-full);
    font-size: 13.5px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    font-family: var(--font);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.wallet-btn:hover {
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}

.wallet-btn.connecting { opacity: 0.7; }
.wallet-btn.connected  { border-color: rgba(76,175,80,0.5); background: rgba(76,175,80,0.1); }

.wi { font-size: 20px; }

.cta-disclaimer {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
    line-height: 1.7;
}

.cta-disclaimer a {
    color: rgba(255,255,255,0.5);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* =====================
   FAQ
   ===================== */
.faq-section {
    padding: 80px 24px;
    background: var(--bg-white);
}

.faq-inner {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.faq-inner .section-h2 { margin-bottom: 48px; }

.faq-list {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.faq-item {}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border-2);
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
    font-family: var(--font);
    cursor: pointer;
    text-align: left;
    transition: all 0.2s;
}

.faq-q:hover { color: var(--blue); }

.faq-chev {
    width: 18px; height: 18px;
    flex-shrink: 0;
    color: var(--ink-4);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
}

.faq-item.open .faq-a {
    max-height: 200px;
}

.faq-a p {
    padding: 16px 0 24px;
    font-size: 14.5px;
    color: var(--ink-3);
    line-height: 1.7;
}

/* =====================
   FOOTER
   ===================== */
.footer {
    padding: 32px 24px;
    background: var(--bg);
    border-top: 1px solid var(--border-2);
}

.footer-inner {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-2);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 13px;
    color: var(--ink-4);
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-disc {
    font-size: 12px;
    color: var(--ink-4);
    width: 100%;
    text-align: center;
    padding-top: 8px;
    border-top: 1px solid var(--border);
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 900px) {
    .card-use, .card-score { grid-column: span 6; }
    .card-earn { grid-column: span 12; }
    .card-earn .earn-inner { flex-direction: row; gap: 32px; }
    .earn-text { flex: 1; }
    .nav-links { display: none; }
    .cta-card { padding: 44px 28px; }
}

@media (max-width: 640px) {
    .hero-h1 { letter-spacing: -2px; }
    .bento-grid { gap: 10px; }
    .card-use, .card-score, .card-earn { grid-column: span 12; }
    .card-stats { flex-direction: column; gap: 24px; }
    .stat-div { width: 80px; height: 1px; }
    .hero-cta-row { flex-direction: column; }
    .btn-pill-primary, .btn-pill-ghost { width: 100%; justify-content: center; }
    .urgency-strip { font-size: 12px; }
    .footer-inner { flex-direction: column; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; }
}

/* =====================
   REGISTRATION PROGRESS BAR
   ===================== */

/* Hero strip */
.reg-strip {
    display: inline-flex;
    flex-direction: column;
    gap: 10px;
    padding: 14px 22px;
    background: var(--bg-white);
    border: 1px solid var(--border-2);
    border-radius: var(--r-xl);
    min-width: 340px;
    box-shadow: var(--sh-card);
}

.reg-strip-top {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--ink-3);
    white-space: nowrap;
    flex-wrap: wrap;
}

.reg-strip-label {
    font-weight: 600;
    color: var(--ink-2);
}

.reg-strip-count {
    margin-left: auto;
    font-size: 12px;
}

.reg-strip-count strong {
    color: var(--blue);
    font-weight: 800;
}

.reg-bar-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.reg-bar-track {
    flex: 1;
    height: 8px;
    background: var(--border);
    border-radius: 4px;
    overflow: hidden;
}

.reg-bar-fill {
    height: 100%;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--blue), #00C4FF);
    transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reg-bar-pct {
    font-size: 12px;
    font-weight: 800;
    color: var(--blue);
    min-width: 36px;
    text-align: right;
}

/* CTA section progress bar */
.cta-reg-progress {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--r-lg);
    padding: 18px 22px;
    margin-bottom: 28px;
}

.cta-reg-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 6px;
}

.cta-reg-title {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
}

.cta-reg-fraction {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}

.cta-reg-fraction strong {
    color: #fff;
    font-weight: 800;
}

.cta-reg-bar-track {
    height: 10px;
    background: rgba(255,255,255,0.1);
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 10px;
}

.cta-reg-bar-fill {
    height: 100%;
    border-radius: 5px;
    background: linear-gradient(90deg, var(--blue), #00C4FF);
    transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-reg-footer {
    font-size: 12px;
    color: rgba(255,255,255,0.45);
}

.cta-reg-footer span {
    font-weight: 700;
    color: rgba(255,255,255,0.75);
}

/* Trust card sub-label (replaces links) */
.trust-card-sub {
    font-size: 12px;
    color: var(--ink-4);
    line-height: 1.5;
    margin-top: 4px;
}

/* =====================
   SPRING ANIMATION SYSTEM
   (Framer Motion-equivalent in vanilla CSS)
   ===================== */

/* Spring timing functions */
:root {
    --spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);   /* overshoot spring */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);            /* smooth ease-out */
    --ease-in-out: cubic-bezier(0.87, 0, 0.13, 1);        /* elegant in-out */
}

/* Base: all animate-in elements start hidden */
.animate-in {
    opacity: 0;
    transform: translateY(32px) scale(0.97);
    transition:
        opacity 0.65s var(--ease-out),
        transform 0.65s var(--ease-out);
}

.animate-in.spring {
    transform: translateY(24px) scale(0.95);
    transition:
        opacity 0.7s var(--spring),
        transform 0.7s var(--spring);
}

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

/* Stagger delays */
.animate-in:nth-child(1) { transition-delay: 0s; }
.animate-in:nth-child(2) { transition-delay: 0.07s; }
.animate-in:nth-child(3) { transition-delay: 0.14s; }
.animate-in:nth-child(4) { transition-delay: 0.21s; }
.animate-in:nth-child(5) { transition-delay: 0.28s; }

/* Slide-from-left variant */
.animate-left {
    opacity: 0;
    transform: translateX(-24px);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.animate-left.visible { opacity: 1; transform: translateX(0); }

/* Fade-only variant */
.animate-fade {
    opacity: 0;
    transition: opacity 0.8s var(--ease-out);
}
.animate-fade.visible { opacity: 1; }

/* Magnetic button effect — applied via JS */
.magnetic {
    transition: transform 0.3s var(--ease-out);
    will-change: transform;
}

/* =====================
   PRESS BAR
   ===================== */
.press-section {
    padding: 28px 24px;
    background: var(--bg-white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.press-inner {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.press-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: var(--ink-4);
    text-transform: uppercase;
    white-space: nowrap;
}

.press-logos {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
}

.press-logo {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--ink-3);
    letter-spacing: -0.3px;
    padding: 4px 20px;
    opacity: 0.65;
    transition: opacity 0.2s;
    cursor: default;
}

.press-logo:hover { opacity: 1; }

.press-divider {
    width: 1px;
    height: 16px;
    background: var(--border-2);
    flex-shrink: 0;
}

/* =====================
   TRUST & TRANSPARENCY
   ===================== */
.trust-section {
    padding: 80px 24px;
    background: var(--bg);
}

.trust-inner {
    max-width: 1080px;
    margin: 0 auto;
}

.trust-header {
    text-align: center;
    margin-bottom: 0;
}

.trust-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.trust-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: var(--sh-card);
    transition: all 0.35s var(--ease-out);
}

.trust-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh-up);
}

.trust-card-icon {
    width: 40px; height: 40px;
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.trust-card-icon.blue   { background: rgba(0,120,212,0.1); color: var(--blue); }
.trust-card-icon.green  { background: rgba(76,175,80,0.1);  color: var(--green); }
.trust-card-icon.purple { background: rgba(145,70,255,0.1); color: #9146FF; }
.trust-card-icon.orange { background: rgba(255,170,0,0.1);  color: #FFAA00; }

.trust-card-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--ink-4);
    text-transform: uppercase;
}

.trust-card-value {
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.3px;
    line-height: 1.3;
}

.trust-card-value.mono {
    font-family: 'Courier New', monospace;
    font-size: 13px;
    letter-spacing: 0.5px;
    color: var(--ink-2);
}

.trust-card-link {
    font-size: 12px;
    font-weight: 600;
    color: var(--blue);
    text-decoration: none;
    margin-top: 4px;
    transition: opacity 0.2s;
}
.trust-card-link:hover { opacity: 0.75; }

.trust-announcement {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: var(--ink-3);
    padding: 16px;
    background: var(--bg-white);
    border: 1px solid var(--border-2);
    border-radius: var(--r-full);
    text-align: center;
    flex-wrap: wrap;
}

.trust-announcement a {
    font-weight: 700;
    color: var(--ink);
    text-decoration: none;
}
.trust-announcement a:hover { color: var(--blue); }

/* =====================
   PRESS TICKER — Infinite JS-Driven Marquee
   ===================== */

.press-section {
    padding: 22px 0 26px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    background: var(--bg);
}

.press-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.press-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--ink-4);
}

/* Ticker wrapper — clips and holds fade masks */
.press-ticker-wrap {
    position: relative;
    overflow: hidden;
    width: 100%;
}

/* The scrolling track — JS sets transform */
.press-ticker {
    display: flex;
    align-items: center;
    width: max-content;
    list-style: none;
    margin: 0;
    padding: 0;
    will-change: transform;
}

/* Individual brand item */
.press-brand {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 0 36px;
    flex-shrink: 0;
    opacity: 0.55;
    transition: opacity 0.25s ease;
    border-right: 1px solid var(--border);
    cursor: default;
    height: 44px;
}

.press-brand:last-child { border-right: none; }

.press-brand:hover { opacity: 1; }

/* Icon mark */
.pb-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    line-height: 1;
}

/* Text wordmark */
.pb-name {
    font-weight: 800;
    font-size: 15px;
    letter-spacing: -0.3px;
    white-space: nowrap;
    line-height: 1;
}

/* ── Brand-specific name colors ── */
.tc-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 6px;
    background: #0D9488;
    font-size: 11px;
    font-weight: 900;
    color: #fff;
    font-family: 'Arial Black', sans-serif;
    letter-spacing: -0.5px;
}
.tc-name   { color: #0D9488; font-family: 'Arial Black', sans-serif; }

.verge-name { color: #FA4B2A; font-family: Georgia, serif; font-style: italic; }

.cd-name   { color: #1E3A5F; }

.bb-name   { color: #111; font-family: 'Arial Black', sans-serif; letter-spacing: -0.5px; }

.forbes-name { color: #0061A4; font-family: Georgia, serif; }

.ars-name  { color: #FF4E00; }

.decrypt-name { color: #00C4FF; font-family: 'Arial Black', sans-serif; }

/* Fade masks */
.press-fade-left,
.press-fade-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}
.press-fade-left  { left:  0; background: linear-gradient(to right, var(--bg) 0%, transparent 100%); }
.press-fade-right { right: 0; background: linear-gradient(to left,  var(--bg) 0%, transparent 100%); }

/* Responsive */
@media (max-width: 900px) {
    .trust-cards { grid-template-columns: repeat(2, 1fr); }
    .press-brand  { padding: 0 24px; }
    .press-fade-left, .press-fade-right { width: 60px; }
}
@media (max-width: 640px) {
    .trust-cards { grid-template-columns: 1fr 1fr; }
    .press-brand  { padding: 0 18px; }
    .press-fade-left, .press-fade-right { width: 40px; }
}


/* @keyframe for the scroll */
@keyframes pressTicker {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.press-section {
    padding: 28px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    background: var(--bg);
}

.press-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.press-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--ink-4);
}

/* Ticker wrapper — clips overflow and holds fade masks */
.press-ticker-wrap {
    position: relative;
    overflow: hidden;
    width: 100%;
}

/* The scrolling row */
.press-ticker {
    display: flex;
    align-items: center;
    gap: 0;
    width: max-content;
    animation: pressTicker 32s linear infinite;
    will-change: transform;
}

/* Pause on hover */
.press-ticker-wrap:hover .press-ticker {
    animation-play-state: paused;
}

/* Individual logo item */
.press-item {
    display: flex;
    align-items: center;
    padding: 0 40px;
    flex-shrink: 0;
    opacity: 0.65;
    transition: opacity 0.3s ease;
    border-right: 1px solid var(--border);
}

.press-item:hover {
    opacity: 1;
}

.press-item svg {
    display: block;
    height: 22px;
    width: auto;
}

/* Fade masks on left and right edges */
.press-fade-left,
.press-fade-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.press-fade-left {
    left: 0;
    background: linear-gradient(to right, var(--bg) 0%, transparent 100%);
}

.press-fade-right {
    right: 0;
    background: linear-gradient(to left, var(--bg) 0%, transparent 100%);
}

/* Responsive */
@media (max-width: 900px) {
    .trust-cards  { grid-template-columns: repeat(2, 1fr); }
    .press-item   { padding: 0 28px; }
    .press-fade-left, .press-fade-right { width: 60px; }
}

@media (max-width: 640px) {
    .trust-cards { grid-template-columns: 1fr 1fr; }
    .press-item   { padding: 0 20px; }
    .press-fade-left, .press-fade-right { width: 40px; }
}
