/* ── DeFox DeFi — Brand Palette ──────────────────────────────────
   Primary:   #00FF00 (neon green — from skulk/main logo)
   Dark:      #0a0a0a / #111 / #1a1a1a (blacks)
   Red:       #FF0043 (fox red — from alpha/skulk banners)
   Yellow:    #E8FF00 (alpha yellow)
   Cyan:      #00FFEA (from blue logo)
   Text:      #e0e0e0 / #999
   ──────────────────────────────────────────────────────────────── */

:root {
    --green: #00FF00;
    --green-dim: #00cc00;
    --green-glow: rgba(0, 255, 0, 0.15);
    --red: #FF0043;
    --yellow: #E8FF00;
    --cyan: #00FFEA;
    --bg: #c96a1a;
    --bg-card: #111111;
    --bg-card-hover: #1a1a1a;
    --border: #222;
    --text: #ffffff;
    --text-dim: #888;
    --text-bright: #ffffff;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --mono: 'JetBrains Mono', 'Fira Code', monospace;
}

@font-face {
    font-family: 'Akula';
    src: url('akula.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font);
    background: radial-gradient(ellipse 120% 80% at 50% 15%, #ff4517 0%, #ff6b1a 20%, #ff9500 45%, #ffb800 70%, #ffd000 100%);
    background-attachment: fixed;
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--green);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--green-dim);
}

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

.accent {
    color: #ff4517;
}

/* ── NAV ─────────────────────────────────────────────────────── */

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

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

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo-img {
    height: 50px;
    width: auto;
}

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

.nav-links a {
    color: var(--text-dim);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.2s;
}

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

/* ── BUTTONS ─────────────────────────────────────────────────── */

.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.5);
    background: #ff4517;
    color: #fff;
}

.btn:hover {
    background: #e63d14;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(255,69,23,0.3);
}

.btn-sm {
    padding: 6px 16px;
    font-size: 0.8rem;
}

.btn-lg {
    padding: 14px 36px;
    font-size: 1rem;
    letter-spacing: 1px;
}

.btn-outline {
    background: #fff;
    color: #ff4517;
    border: 1px solid rgba(255,255,255,0.5);
}

.btn-outline:hover {
    background: #f0f0f0;
    color: #e63d14;
}

.btn-nav {
    color: #fff !important;
}

.btn-full {
    display: block;
    width: 100%;
    text-align: center;
}

/* ── HERO ────────────────────────────────────────────────────── */

.hero {
    padding: 180px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--green-glow) 0%, transparent 70%);
    pointer-events: none;
}

/* X mesh pattern overlay */
.x-mesh {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 5L15 15M15 5L5 15' stroke='white' stroke-width='1.5' stroke-linecap='round' opacity='0.25'/%3E%3C/svg%3E");
    -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.8) 20%, rgba(0,0,0,1) 40%, rgba(0,0,0,1) 60%, rgba(0,0,0,0.8) 80%, rgba(0,0,0,0.5) 100%);
    mask-image: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.8) 20%, rgba(0,0,0,1) 40%, rgba(0,0,0,1) 60%, rgba(0,0,0,0.8) 80%, rgba(0,0,0,0.5) 100%);
}

/* Fixed rocket */
.rocket-fixed {
    position: fixed;
    right: 40px;
    bottom: 40px;
    z-index: 50;
    pointer-events: none;
    transition: transform 0.15s ease-out;
}

.rocket-img {
    width: 60px;
    height: auto;
}


.hero-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--green-glow);
    border: 1px solid rgba(0, 255, 0, 0.2);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 24px;
}

.graffiti {
    position: absolute;
    right: 18%;
    top: 210px;
    transform: rotate(-12deg);
    font-family: 'Akula', cursive;
    font-size: 2.8rem;
    color: #2a2a2a;
    text-align: center;
    line-height: 1.1;
    pointer-events: none;
    z-index: 0;
    margin: 0;
}

.hero-logo {
    height: 200px;
    width: auto;
    display: block;
    margin: 0 auto 32px;
}

.hero h1 {
    font-size: clamp(1.6rem, 3.8vw, 2.6rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-bright);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--text-dim);
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 24px;
    padding-top: 40px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    padding: 24px 32px;
    text-align: center;
}

.stat-num {
    font-family: var(--mono);
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* ── SECTION COMMON ──────────────────────────────────────────── */

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 69, 23, 0.1);
    border: 1px solid rgba(255, 69, 23, 0.2);
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ff4517;
    margin-bottom: 16px;
}

section h2 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.section-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin-bottom: 48px;
}

/* ── DATA SECTION ────────────────────────────────────────────── */

.data {
    padding: 100px 0;
    background: linear-gradient(to bottom, #6a1b9a 0%, #8e24aa 50%, #c2185b 100%);
    color: #fff;
}

.data-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.data-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    transition: border-color 0.2s, transform 0.2s;
}

.data-card:hover {
    border-color: rgba(0, 255, 0, 0.3);
    transform: translateY(-2px);
}

.data-card.highlight {
    border-color: var(--green);
}

.data-num {
    font-family: var(--mono);
    font-size: 2.2rem;
    font-weight: 800;
    color: #ff4517;
    margin-bottom: 8px;
}

.data-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.data-detail {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
}

/* ── RECEIPT ─────────────────────────────────────────────────── */

.receipt-block {
    max-width: 600px;
    margin: 0 auto;
}

.receipt-block h3 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 8px;
}

.receipt-block > p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.receipt {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    font-family: var(--mono);
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.receipt-header {
    display: flex;
    justify-content: space-between;
    padding: 16px 20px;
    background: #1a1a1a;
    border-bottom: 1px solid var(--border);
    font-weight: 700;
    color: var(--text-dim);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.receipt-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.receipt-row span:first-child {
    color: var(--text);
    flex: 1;
}

.receipt-row span:nth-child(2) {
    color: var(--text-dim);
    width: 80px;
    text-align: right;
}

.receipt-row .pnl {
    width: 100px;
    text-align: right;
    font-weight: 600;
}

.receipt-row.win .pnl {
    color: var(--green);
}

.receipt-row.loss .pnl {
    color: var(--red);
}

.receipt-row.loss span:nth-child(2) {
    color: var(--red);
}

.receipt-footer {
    padding: 16px 20px;
    background: #1a1a1a;
    border-top: 1px solid var(--border);
}

.receipt-total {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.receipt-total .pnl.win {
    color: var(--green);
}

.receipt-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: var(--text-dim);
}

.receipt-note {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    font-style: italic;
}

/* ── HOW IT WORKS ────────────────────────────────────────────── */

.how {
    padding: 100px 0;
    background: linear-gradient(to bottom, #c2185b 0%, #d81b60 50%, #ad1457 100%);
    color: #fff;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 60px;
}

/* ── HOW CARDS ───────────────────────────────────────────────── */

.how-cards {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.how-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    width: 180px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.2s;
}

.how-card:hover {
    transform: translateY(-3px);
}

.how-icon {
    font-size: 2.4rem;
    margin-bottom: 12px;
}

.how-card h3 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #222;
    line-height: 1.3;
}

.how-card.axiom-card {
    background: #1a1a2e;
    border: 1px solid #333;
}

.how-card.axiom-card a {
    text-decoration: none;
    color: #fff;
}

.how-card.axiom-card h3 {
    color: #fff;
}

.axiom-logo {
    height: 36px;
    width: auto;
    margin-bottom: 12px;
}

.how-card.axiom-card .how-icon {
    display: none;
}

.axiom-text {
    font-family: var(--mono);
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 4px;
    color: #7b68ee;
    margin-bottom: 12px;
}

/* ── PRICING ─────────────────────────────────────────────────── */

.pricing {
    padding: 100px 0;
    background: linear-gradient(to bottom, #4a148c 0%, #6a1b9a 100%);
    color: #fff;
    text-align: center;
}

.pricing-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.price-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 40px 32px;
    text-align: left;
    position: relative;
    color: #222;
}

.price-card.alpha {
    border-color: var(--green);
    background: #fff;
}

.price-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green);
    color: #000;
    padding: 4px 16px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.price-tier {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #666;
    margin-bottom: 12px;
}

.price-tag {
    font-family: var(--mono);
    font-size: 2.8rem;
    font-weight: 900;
    color: #111;
    margin-bottom: 24px;
}

.price-tag span {
    font-size: 1rem;
    font-weight: 500;
    color: #666;
}

.price-card ul {
    list-style: none;
    margin-bottom: 28px;
}

.price-card ul li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    font-size: 0.9rem;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
}

.price-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
}

.price-card.free ul li::before {
    background: #999;
}

.price-note {
    margin-top: 12px;
    font-size: 0.75rem;
    color: #888;
    text-align: center;
}

.speech-card {
    max-width: 700px;
    margin: 48px auto 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 32px 36px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
    text-align: center;
}

/* ── BOTTOM CTA ──────────────────────────────────────────────── */

.bottom {
    padding: 100px 0;
    text-align: center;
    background: #111;
    color: #fff;
    position: relative;
}

.bottom h2 {
    color: #fff;
}

.bottom p {
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 16px auto 36px;
    font-size: 1rem;
    line-height: 1.7;
}

/* ── FOOTER ──────────────────────────────────────────────────── */

footer {
    padding: 40px 0;
    background: #111;
    color: rgba(255,255,255,0.7);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.footer-logo-img {
    height: 32px;
    width: auto;
    opacity: 0.5;
}

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

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-disclaimer {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    max-width: 600px;
    line-height: 1.5;
    margin-top: 8px;
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */

@media (max-width: 768px) {
    .nav-links a:not(.btn) {
        display: none;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero-stats {
        gap: 32px;
    }

    .stat-num {
        font-size: 1.5rem;
    }

    .data-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .math-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

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

    .how-cards {
        gap: 12px;
    }

    .how-card {
        width: 140px;
        padding: 24px 16px;
    }

}

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

    .hero-stats {
        flex-direction: column;
        gap: 12px;
    }

    .stat-card {
        padding: 16px 24px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
}
