/* ============================================
   JerryTrades Website — styles.css
   Production stylesheet for www.jerrytrades.com
   ============================================ */

/* ============================================
   CSS VARIABLES & RESET
   ============================================ */
:root {
    /* Brand Colors */
    --jt-emerald: #0d9488;
    --jt-emerald-light: #14b8a6;
    --jt-emerald-dark: #0f766e;
    --jt-teal: #0891b2;
    --jt-cyan: #06b6d4;
    --jt-gold: #f59e0b;
    --jt-gold-warm: #d97706;
    
    /* Neutrals */
    --slate-950: #020617;
    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748b;
    --slate-400: #94a3b8;
    --slate-300: #cbd5e1;
    --slate-200: #e2e8f0;
    --slate-100: #f1f5f9;
    --slate-50: #f8fafc;
    --white: #ffffff;
    
    /* Functional */
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #3b82f6;
    
    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    
    /* Spacing */
    --section-pad: clamp(4rem, 8vw, 7rem);
    --content-max: 1200px;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    
    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    background: var(--slate-950);
    color: var(--slate-200);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; }

.container {
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

/* ============================================
   GLOBAL NAV
   ============================================ */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.4s var(--ease-out);
    background: transparent;
}

.site-nav.scrolled {
    background: rgba(15, 23, 42, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 0.65rem 0;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--white);
    letter-spacing: -0.02em;
}

.nav-brand-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--jt-emerald), var(--jt-teal));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
    color: white;
    box-shadow: 0 2px 12px rgba(13, 148, 136, 0.35);
}

.nav-logo-img {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    object-fit: contain;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--slate-300);
    transition: color 0.25s;
    position: relative;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--white);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--jt-emerald-light);
    border-radius: 1px;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s var(--ease-out);
    white-space: nowrap;
}

.btn-ghost {
    color: var(--slate-300);
    border: 1px solid rgba(255,255,255,0.12);
}

.btn-ghost:hover {
    color: var(--white);
    border-color: rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.05);
}

.btn-primary {
    background: linear-gradient(135deg, var(--jt-emerald), var(--jt-teal));
    color: var(--white);
    box-shadow: 0 2px 16px rgba(13, 148, 136, 0.3);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 24px rgba(13, 148, 136, 0.45);
}

.btn-lg {
    padding: 0.9rem 2.2rem;
    font-size: 1rem;
    border-radius: 14px;
}

.btn-outline {
    border: 2px solid var(--jt-emerald);
    color: var(--jt-emerald-light);
}

.btn-outline:hover {
    background: var(--jt-emerald);
    color: var(--white);
}

/* Mobile hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}
.nav-hamburger span {
    width: 24px;
    height: 2px;
    background: var(--slate-300);
    border-radius: 1px;
    transition: all 0.3s;
}

/* Mobile nav overlay */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(2, 6, 23, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.mobile-nav-overlay.open {
    display: flex;
}

.mobile-nav-overlay a {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--slate-200);
    transition: color 0.2s;
}

.mobile-nav-overlay a:hover,
.mobile-nav-overlay a.active {
    color: var(--jt-emerald-light);
}

.mobile-nav-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
    color: var(--slate-400);
    cursor: pointer;
    background: none;
    border: none;
}

/* ============================================
   SHARED SECTION STYLES
   ============================================ */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3.5rem;
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--jt-emerald-light);
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--slate-400);
    line-height: 1.7;
}

.text-gradient {
    background: linear-gradient(135deg, var(--jt-emerald-light), var(--jt-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   HOME PAGE — HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: var(--section-pad);
    overflow: hidden;
}

/* Ambient background glow */
.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 70vw;
    height: 70vw;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.12) 0%, transparent 65%);
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -15%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(8, 145, 178, 0.08) 0%, transparent 65%);
    pointer-events: none;
}

/* Subtle grid pattern */
.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at 60% 30%, black 30%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    max-width: 580px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(13, 148, 136, 0.12);
    border: 1px solid rgba(13, 148, 136, 0.25);
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--jt-emerald-light);
    margin-bottom: 1.5rem;
}

.hero-badge-dot {
    width: 7px;
    height: 7px;
    background: var(--jt-emerald-light);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

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

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--slate-400);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hero-proof {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    font-size: 0.85rem;
    color: var(--slate-400);
}

.hero-proof-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.hero-proof-item svg {
    color: var(--jt-emerald-light);
}

/* Hero right — product preview mockup */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-mockup {
    width: 100%;
    max-width: 560px;
    background: var(--slate-800);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
    box-shadow: 
        0 24px 64px rgba(0,0,0,0.4),
        0 0 0 1px rgba(255,255,255,0.05);
    transform: perspective(1200px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.6s var(--ease-out);
}

.hero-mockup:hover {
    transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
}

.mockup-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    background: var(--slate-900);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.mockup-dot:nth-child(1) { background: #ef4444; }
.mockup-dot:nth-child(2) { background: #f59e0b; }
.mockup-dot:nth-child(3) { background: #10b981; }

.mockup-url {
    flex: 1;
    text-align: center;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--slate-500);
    background: rgba(255,255,255,0.04);
    padding: 4px 12px;
    border-radius: 6px;
    margin-left: 8px;
}

.mockup-body {
    padding: 1.25rem;
    min-height: 340px;
    position: relative;
}

/* Simulated draft board grid */
.mock-board {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 4px;
}

.mock-cell {
    padding: 6px 4px;
    border-radius: 4px;
    font-size: 0.6rem;
    font-weight: 600;
    text-align: center;
    color: rgba(255,255,255,0.85);
    line-height: 1.3;
}

.mock-header {
    background: rgba(13, 148, 136, 0.25);
    color: var(--jt-emerald-light);
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mock-cell.qb { background: rgba(239, 68, 68, 0.2); border-left: 2px solid #ef4444; }
.mock-cell.rb { background: rgba(59, 130, 246, 0.2); border-left: 2px solid #3b82f6; }
.mock-cell.wr { background: rgba(16, 185, 129, 0.2); border-left: 2px solid #10b981; }
.mock-cell.te { background: rgba(245, 158, 11, 0.2); border-left: 2px solid #f59e0b; }
.mock-cell.def { background: rgba(139, 92, 246, 0.2); border-left: 2px solid #8b5cf6; }
.mock-cell.pk { background: rgba(236, 72, 153, 0.2); border-left: 2px solid #ec4899; }

.mock-tabs {
    display: flex;
    gap: 2px;
    margin-bottom: 12px;
}
.mock-tab {
    flex: 1;
    padding: 6px;
    text-align: center;
    font-size: 0.65rem;
    font-weight: 600;
    border-radius: 6px;
    color: var(--slate-400);
    background: rgba(255,255,255,0.04);
}
.mock-tab.active {
    background: linear-gradient(135deg, var(--jt-emerald), var(--jt-teal));
    color: white;
}
.mock-tab.premium {
    color: var(--jt-gold);
}

/* ============================================
   HOME — BOARDS / MODES SECTION
   ============================================ */
.boards-section {
    padding: var(--section-pad) 0;
    position: relative;
}

.boards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.board-card {
    position: relative;
    background: linear-gradient(160deg, var(--slate-800), var(--slate-900));
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-xl);
    padding: 2.25rem;
    transition: all 0.4s var(--ease-out);
    overflow: hidden;
}

.board-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.board-card:nth-child(1)::before {
    background: linear-gradient(90deg, var(--jt-emerald), var(--jt-teal));
}
.board-card:nth-child(2)::before {
    background: linear-gradient(90deg, var(--info), #6366f1);
}
.board-card:nth-child(3)::before {
    background: linear-gradient(90deg, var(--jt-gold), #f97316);
}

.board-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,0.12);
    box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.board-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.board-card:nth-child(1) .board-icon {
    background: rgba(13, 148, 136, 0.15);
}
.board-card:nth-child(2) .board-icon {
    background: rgba(59, 130, 246, 0.15);
}
.board-card:nth-child(3) .board-icon {
    background: rgba(245, 158, 11, 0.15);
}

.board-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.6rem;
}

.board-card p {
    color: var(--slate-400);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.board-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.board-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.88rem;
    color: var(--slate-300);
}

.board-feature svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--jt-emerald-light);
}

.board-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.25rem 0.65rem;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.badge-free {
    background: rgba(16, 185, 129, 0.12);
    color: var(--success);
    border: 1px solid rgba(16, 185, 129, 0.25);
}
.badge-premium {
    background: rgba(245, 158, 11, 0.12);
    color: var(--jt-gold);
    border: 1px solid rgba(245, 158, 11, 0.25);
}

/* ============================================
   HOME — PLATFORMS SECTION
   ============================================ */
.platforms-section {
    padding: var(--section-pad) 0;
    background: rgba(255,255,255,0.01);
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.platform-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.platform-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    opacity: 0.6;
    transition: opacity 0.3s;
}

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

.platform-logo-box {
    width: 72px;
    height: 72px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
}

.platform-item span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--slate-400);
}

/* ============================================
   HOME — FEATURES SECTION
   ============================================ */
.features-section {
    padding: var(--section-pad) 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.feature-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: all 0.3s var(--ease-out);
}

.feature-card:hover {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.1);
}

.feature-icon {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.feature-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.4rem;
}

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

/* ============================================
   HOME — CTA SECTION
   ============================================ */
.cta-section {
    padding: var(--section-pad) 0;
}

.cta-box {
    position: relative;
    background: linear-gradient(135deg, var(--jt-emerald-dark), var(--jt-teal));
    border-radius: var(--radius-xl);
    padding: clamp(2.5rem, 5vw, 4rem);
    text-align: center;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255,255,255,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.cta-box h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--white);
    margin-bottom: 0.75rem;
    position: relative;
}

.cta-box p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
    position: relative;
}

.cta-box .btn {
    position: relative;
    background: var(--white);
    color: var(--jt-emerald-dark);
    font-weight: 700;
}

.cta-box .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}

.cta-slogan {
    margin-top: 1.5rem;
    font-style: italic;
    color: rgba(255,255,255,0.65);
    font-size: 0.95rem;
    position: relative;
}

/* ============================================
   PRICING PAGE
   ============================================ */
.pricing-page {
    padding-top: 120px;
    padding-bottom: var(--section-pad);
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.pricing-toggle span {
    font-size: 0.9rem;
    color: var(--slate-400);
    font-weight: 500;
}
.pricing-toggle span.active {
    color: var(--white);
}

.toggle-switch {
    width: 52px;
    height: 28px;
    background: var(--slate-700);
    border-radius: 14px;
    position: relative;
    cursor: pointer;
    transition: background 0.3s;
}

.toggle-switch.annual {
    background: var(--jt-emerald);
}

.toggle-switch::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 22px;
    height: 22px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s var(--ease-spring);
}

.toggle-switch.annual::after {
    transform: translateX(24px);
}

.pricing-save-badge {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--success);
    background: rgba(16, 185, 129, 0.12);
    padding: 0.2rem 0.65rem;
    border-radius: 100px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 980px;
    margin: 0 auto 3rem;
}

.price-card {
    background: var(--slate-800);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-xl);
    padding: 2.25rem;
    position: relative;
    transition: all 0.3s var(--ease-out);
}

.price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.price-card.featured {
    border-color: var(--jt-emerald);
    box-shadow: 0 0 0 1px var(--jt-emerald), 0 8px 32px rgba(13, 148, 136, 0.2);
}

.price-card.featured::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--jt-emerald), var(--jt-teal));
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.price-tier-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.price-tier-desc {
    font-size: 0.85rem;
    color: var(--slate-400);
    margin-bottom: 1.25rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.price-amount .currency { font-size: 1.5rem; vertical-align: top; margin-right: 2px; }
.price-amount .period { font-size: 1rem; font-weight: 500; color: var(--slate-400); }

.price-billed {
    font-size: 0.82rem;
    color: var(--slate-500);
    margin-bottom: 1.75rem;
}

.price-features {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 2rem;
}

.price-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.88rem;
    color: var(--slate-300);
}

.price-feature svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--jt-emerald-light);
}

.price-feature.disabled {
    color: var(--slate-600);
}
.price-feature.disabled svg {
    color: var(--slate-600);
}

.price-card .btn {
    width: 100%;
}

/* League bundle callout */
.league-bundle {
    max-width: 700px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), rgba(249, 115, 22, 0.08));
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: var(--radius-xl);
    padding: 2rem 2.5rem;
    text-align: center;
}

.league-bundle h3 {
    font-size: 1.2rem;
    color: var(--jt-gold);
    margin-bottom: 0.4rem;
}

.league-bundle p {
    color: var(--slate-400);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.league-price-breakdown {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--slate-300);
    margin-bottom: 1.25rem;
}

/* Benefactor section */
.benefactor-card {
    max-width: 650px;
    margin: 2.5rem auto 0;
    text-align: center;
    padding: 2rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius-xl);
}

.benefactor-card h3 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 0.4rem;
}

.benefactor-card .benefactor-desc {
    font-size: 0.9rem;
    color: var(--slate-400);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.benefactor-btns {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.benefactor-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1.75rem;
}

.benefactor-input-wrap {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    background: var(--slate-900);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 0.45rem 0.75rem;
    width: 120px;
}

.benefactor-input-wrap span {
    color: var(--slate-400);
    font-weight: 600;
}

.benefactor-input-wrap input {
    background: transparent;
    border: none;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    width: 60px;
    outline: none;
}

.benefactor-other {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 1.25rem;
}

.benefactor-other p {
    font-size: 0.88rem;
    color: var(--slate-400);
    margin-bottom: 0.75rem;
}

.benefactor-other strong {
    color: var(--slate-200);
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-page {
    padding-top: 120px;
}

.about-hero {
    text-align: center;
    padding-bottom: var(--section-pad);
}

.about-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    color: var(--white);
    margin-bottom: 1rem;
}

.about-hero .subtitle {
    font-size: 1.15rem;
    color: var(--slate-400);
    max-width: 600px;
    margin: 0 auto;
}

/* Jerry's story section */
.jerry-section {
    padding: var(--section-pad) 0;
    border-top: 1px solid rgba(255,255,255,0.04);
}

.jerry-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.jerry-photo-area {
    position: relative;
}

.jerry-photo-frame {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: linear-gradient(135deg, var(--slate-800), var(--slate-700));
    padding: 2.5rem;
    border: 1px solid rgba(255,255,255,0.08);
}

.jerry-photo-placeholder {
    aspect-ratio: 4/5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1rem;
}

.jerry-memorial-icon {
    font-size: 4rem;
    opacity: 0.6;
}

.jerry-memorial-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--white);
    font-weight: 600;
}

.jerry-memorial-years {
    font-size: 0.95rem;
    color: var(--slate-400);
}

.jerry-memorial-quote {
    font-style: italic;
    color: var(--slate-300);
    font-size: 0.95rem;
    max-width: 280px;
    line-height: 1.6;
    margin-top: 0.5rem;
}

.jerry-plaque {
    margin-top: 1.5rem;
    background: rgba(245, 158, 11, 0.06);
    border: 1px solid rgba(245, 158, 11, 0.15);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
}

.jerry-plaque h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--jt-gold);
    margin-bottom: 0.75rem;
    letter-spacing: 0.03em;
}

.jerry-plaque p {
    font-style: italic;
    font-size: 0.85rem;
    color: var(--slate-300);
    line-height: 1.75;
}

.jerry-story h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.jerry-story-text {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.jerry-story-text p {
    font-size: 1.02rem;
    color: var(--slate-300);
    line-height: 1.8;
}

.jerry-story-text .highlight-quote {
    position: relative;
    padding: 1.25rem 1.5rem;
    background: rgba(13, 148, 136, 0.06);
    border-left: 3px solid var(--jt-emerald);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
    color: var(--slate-200);
}

.jerry-story-text .story-emphasis {
    color: var(--white);
    font-weight: 500;
}

/* The bike story and business story sections */
.jerry-lessons {
    padding: var(--section-pad) 0;
    border-top: 1px solid rgba(255,255,255,0.04);
}

.lessons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.lesson-card {
    background: var(--slate-800);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    transition: all 0.3s;
}

.lesson-card:hover {
    border-color: rgba(255,255,255,0.1);
}

.lesson-icon {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
}

.lesson-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.lesson-card p {
    font-size: 0.95rem;
    color: var(--slate-400);
    line-height: 1.75;
}

.lesson-card .lesson-quote {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    font-style: italic;
    color: var(--slate-300);
    font-size: 0.95rem;
}

/* Mission section */
.mission-section {
    padding: var(--section-pad) 0;
    border-top: 1px solid rgba(255,255,255,0.04);
}

.mission-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.mission-content h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.mission-content p {
    font-size: 1.05rem;
    color: var(--slate-300);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

/* ============================================
   CONTRIBUTORS WALL
   ============================================ */
.contributors-section {
    padding: var(--section-pad) 0;
    border-top: 1px solid rgba(255,255,255,0.04);
}

.contributors-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contributors-tier {
    margin-bottom: 2.5rem;
}

.contributors-tier-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.25rem;
}

.contributor-tier-icon {
    font-size: 1.2rem;
}

.contributor-tier-desc {
    font-weight: 400;
    color: var(--slate-500);
    font-size: 0.85rem;
}

.contributors-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

/* Champion-tier cards (larger, featured) */
.contributor-card.champion {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), rgba(249, 115, 22, 0.06));
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-width: 160px;
    transition: all 0.3s;
}

.contributor-card.champion:hover {
    border-color: rgba(245, 158, 11, 0.4);
    transform: translateY(-2px);
}

.contributor-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--jt-gold), #f97316);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    color: white;
}

.contributor-name {
    font-weight: 600;
    color: var(--white);
    font-size: 0.95rem;
}

.contributor-note {
    font-size: 0.78rem;
    color: var(--slate-500);
    font-style: italic;
}

/* Regular contributor pills */
.contributor-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 1rem;
    background: rgba(13, 148, 136, 0.08);
    border: 1px solid rgba(13, 148, 136, 0.2);
    border-radius: 100px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--slate-200);
    transition: all 0.2s;
}

.contributor-pill:hover {
    border-color: rgba(13, 148, 136, 0.4);
    background: rgba(13, 148, 136, 0.12);
}

.contributor-pill.small {
    padding: 0.35rem 0.85rem;
    font-size: 0.82rem;
    font-weight: 500;
    background: rgba(255,255,255,0.03);
    border-color: rgba(255,255,255,0.08);
    color: var(--slate-300);
}

.contributors-cta {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.04);
}

.contributors-cta p {
    color: var(--slate-400);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

/* ============================================
   SUPPORT PAGE
   ============================================ */
.support-page {
    padding-top: 120px;
    padding-bottom: var(--section-pad);
}

.support-hero {
    text-align: center;
    margin-bottom: 3.5rem;
}

.support-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--white);
    margin-bottom: 0.75rem;
}

.support-hero p {
    color: var(--slate-400);
    font-size: 1.1rem;
}

.support-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: var(--section-pad);
}

.support-card {
    background: var(--slate-800);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.support-card:hover {
    border-color: rgba(255,255,255,0.12);
    transform: translateY(-2px);
}

.support-card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.support-card h3 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 0.4rem;
}

.support-card p {
    font-size: 0.88rem;
    color: var(--slate-400);
    margin-bottom: 1.25rem;
}

/* FAQ Section */
.faq-section {
    max-width: 760px;
    margin: 0 auto;
}

.faq-section h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--white);
    text-align: center;
    margin-bottom: 2rem;
}

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

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    width: 100%;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    cursor: pointer;
}

.faq-question:hover {
    color: var(--jt-emerald-light);
}

.faq-chevron {
    transition: transform 0.3s;
    color: var(--slate-500);
    flex-shrink: 0;
}

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

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

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

.faq-answer-inner {
    padding-bottom: 1.25rem;
    font-size: 0.95rem;
    color: var(--slate-400);
    line-height: 1.7;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-page {
    padding-top: 120px;
    padding-bottom: var(--section-pad);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 3rem;
    max-width: 960px;
    margin: 0 auto;
}

.contact-info h1 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--slate-400);
    font-size: 1.02rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.contact-method-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(13, 148, 136, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-method h4 {
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 0.15rem;
}

.contact-method p {
    font-size: 0.88rem;
    color: var(--slate-400);
}

.contact-method a {
    color: var(--jt-emerald-light);
    transition: color 0.2s;
}
.contact-method a:hover { color: var(--jt-cyan); }

/* Contact Form */
.contact-form-card {
    background: var(--slate-800);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-xl);
    padding: 2.25rem;
}

.contact-form-card h2 {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--slate-300);
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.7rem 1rem;
    background: var(--slate-900);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.92rem;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--jt-emerald);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Form status messages */
.form-status {
    text-align: center;
    padding: 1rem;
    border-radius: var(--radius);
    margin-top: 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    display: none;
}

.form-status.success {
    display: block;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.25);
    color: var(--success);
}

.form-status.error {
    display: block;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: var(--danger);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 3.5rem 0 2rem;
    margin-top: var(--section-pad);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: var(--slate-400);
    font-size: 0.88rem;
    line-height: 1.65;
    margin-top: 0.75rem;
    max-width: 300px;
}

.footer-slogan {
    font-style: italic;
    color: var(--slate-500);
    font-size: 0.82rem;
    margin-top: 0.75rem;
}

.footer-col h4 {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--slate-400);
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-col a {
    font-size: 0.88rem;
    color: var(--slate-400);
    transition: color 0.2s;
}

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

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

.footer-legal-links {
    display: flex;
    gap: 1.5rem;
}

.footer-legal-links a {
    color: var(--slate-500);
    transition: color 0.2s;
}
.footer-legal-links a:hover { color: var(--slate-300); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
    .hero-content { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .boards-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
    .jerry-layout { grid-template-columns: 1fr; }
    .lessons-grid { grid-template-columns: 1fr; }
    .contact-layout { grid-template-columns: 1fr; }
    .support-cards { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    .nav-cta .btn-ghost { display: none; }
}

@media (max-width: 600px) {
    .features-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .form-row { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.2rem; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-in {
    animation: fadeInUp 0.7s var(--ease-out) forwards;
    opacity: 0;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
