/* ==========================================================================
   LaunchClub Design System
   Premium, conversion-focused design with coral accent
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Variables (Design Tokens)
   -------------------------------------------------------------------------- */
:root {
    /* Accent */
    --accent: #FF4D2E;
    --accent-hover: #E5442A;
    --accent-glow: rgba(255, 77, 46, 0.35);
    --accent-subtle: rgba(255, 77, 46, 0.1);

    /* Backgrounds */
    --bg-dark: #0B1220;
    --bg-dark-elevated: #111827;
    --bg-dark-card: #1A2332;
    --bg-light: #FAFBFC;
    --bg-light-subtle: #F3F4F6;

    /* Text */
    --text-primary: #EAF0FF;
    --text-secondary: #9AA4B2;
    --text-muted: #6B7280;
    --text-dark: #111827;
    --text-dark-secondary: #4B5563;

    /* Borders */
    --border-dark: rgba(255, 255, 255, 0.08);
    --border-light: #E5E7EB;

    /* Success/Status */
    --success: #22C55E;
    --success-subtle: rgba(34, 197, 94, 0.1);

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 40px var(--accent-glow);

    /* Spacing */
    --container-max: 1200px;
    --container-padding: 1.5rem;

    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'SF Mono', 'Monaco', 'Inconsolata', monospace;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 200ms ease;
    --transition-slow: 300ms ease;

    /* Border radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-full: 9999px;
}

/* --------------------------------------------------------------------------
   Reset & Base
   -------------------------------------------------------------------------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    background: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.dark-theme {
    color: var(--text-primary);
    background: var(--bg-dark);
}

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); font-weight: 800; letter-spacing: -0.02em; }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.875rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

a {
    color: inherit;
    text-decoration: none;
}

strong { font-weight: 600; }

.text-accent { color: var(--accent) !important; }
.text-muted { color: var(--text-muted) !important; }
.text-secondary { color: var(--text-secondary) !important; }

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.container-sm { max-width: 720px; }
.container-md { max-width: 960px; }

.section {
    padding: 4rem 0;
}

@media (min-width: 768px) {
    .section { padding: 5rem 0; }
}

@media (min-width: 1024px) {
    .section { padding: 6rem 0; }
}

.section-sm { padding: 2.5rem 0; }
.section-lg { padding: 6rem 0; }

@media (min-width: 1024px) {
    .section-lg { padding: 8rem 0; }
}

/* --------------------------------------------------------------------------
   Grid Utilities
   -------------------------------------------------------------------------- */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: -0.75rem;
}

.col { flex: 1; padding: 0.75rem; }

.col-12 { flex: 0 0 100%; max-width: 100%; padding: 0.75rem; }
.col-6 { flex: 0 0 50%; max-width: 50%; padding: 0.75rem; }
.col-4 { flex: 0 0 33.333%; max-width: 33.333%; padding: 0.75rem; }
.col-3 { flex: 0 0 25%; max-width: 25%; padding: 0.75rem; }

@media (min-width: 768px) {
    .col-md-6 { flex: 0 0 50%; max-width: 50%; }
    .col-md-4 { flex: 0 0 33.333%; max-width: 33.333%; }
    .col-md-3 { flex: 0 0 25%; max-width: 25%; }
}

@media (min-width: 1024px) {
    .col-lg-6 { flex: 0 0 50%; max-width: 50%; }
    .col-lg-4 { flex: 0 0 33.333%; max-width: 33.333%; }
    .col-lg-3 { flex: 0 0 25%; max-width: 25%; }
}

/* --------------------------------------------------------------------------
   Header (Global Nav)
   -------------------------------------------------------------------------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    background: rgba(11, 18, 32, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-dark);
    transition: padding var(--transition-base), box-shadow var(--transition-base);
}

.site-header.scrolled {
    padding: 0.75rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--text-primary);
    text-decoration: none;
}

.site-logo img {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.site-nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

.site-nav-link:hover,
.site-nav-link:focus {
    color: var(--text-primary);
}

/* --------------------------------------------------------------------------
   Footer (Global)
   -------------------------------------------------------------------------- */
.site-footer {
    padding: 2rem 0;
    background: var(--bg-dark);
    border-top: 1px solid var(--border-dark);
}

.site-footer .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

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

.footer-links a {
    font-size: 0.875rem;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

.footer-links a:hover,
.footer-links a:focus {
    color: var(--text-primary);
}

.footer-copy {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
}

.btn:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Primary Button (accent glow - use sparingly, hero only) */
.btn-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--accent-glow);
}

.btn-primary:active {
    transform: translateY(0);
}

/* Large primary button */
.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.0625rem;
    border-radius: var(--radius-lg);
}

/* Secondary Button (outline) */
.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-dark);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
}

/* Ghost Button (minimal) */
.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
}

.btn-ghost:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

/* Small button */
.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
}

/* --------------------------------------------------------------------------
   Text Links
   -------------------------------------------------------------------------- */
.link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-weight: 600;
    color: var(--accent);
    transition: color var(--transition-fast);
}

.link:hover,
.link:focus {
    color: var(--accent-hover);
}

.link-lg {
    font-size: 1.125rem;
}

.link-muted {
    color: var(--text-secondary);
}

.link-muted:hover {
    color: var(--text-primary);
}

/* --------------------------------------------------------------------------
   Trust Pills / Badges
   -------------------------------------------------------------------------- */
.pill {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    font-size: 0.8125rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-secondary);
    border-radius: var(--radius-full);
}

.pill-accent {
    background: var(--accent-subtle);
    color: var(--accent);
}

.pill-success {
    background: var(--success-subtle);
    color: var(--success);
}

.pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* --------------------------------------------------------------------------
   Cards
   -------------------------------------------------------------------------- */
.card {
    background: var(--bg-dark-card);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.card-light {
    background: #fff;
    border-color: var(--border-light);
}

.card-muted {
    background: transparent;
    border-style: dashed;
}

.card-muted:hover {
    transform: none;
    box-shadow: none;
}

/* Card icon */
.card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--accent) 0%, #FF7A5C 100%);
    color: #fff;
    font-size: 1.25rem;
    border-radius: var(--radius-md);
}

.card-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.card-desc {
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

/* --------------------------------------------------------------------------
   Step Cards
   -------------------------------------------------------------------------- */
.step-card {
    text-align: center;
    padding: 2rem;
    background: var(--bg-dark-card);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-lg);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    background: var(--accent);
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50%;
}

/* --------------------------------------------------------------------------
   Profile Preview Card
   -------------------------------------------------------------------------- */
.profile-preview {
    background: var(--bg-dark-card);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    box-shadow: var(--shadow-xl), 0 0 60px rgba(255, 77, 46, 0.08);
}

@media (prefers-reduced-motion: no-preference) {
    .profile-preview {
        animation: floatCard 6s ease-in-out infinite;
    }
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.preview-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border-dark);
}

.preview-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--accent) 0%, #FF7A5C 100%);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.preview-meta { flex: 1; }

.preview-name {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--text-primary);
}

.preview-role {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.preview-section {
    margin-bottom: 0.875rem;
}

.preview-label {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.preview-value {
    font-size: 0.875rem;
    color: var(--text-primary);
}

.preview-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
}

.preview-tag {
    padding: 0.25rem 0.625rem;
    font-size: 0.75rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-secondary);
    border-radius: var(--radius-full);
}

.preview-ask {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
}

.preview-ask-header {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.preview-ask p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* --------------------------------------------------------------------------
   Trust Rules List
   -------------------------------------------------------------------------- */
.trust-rules {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.trust-rule {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    transition: background var(--transition-fast);
}

.trust-rule:hover {
    background: rgba(255, 255, 255, 0.05);
}

.trust-rule-icon {
    font-size: 1.25rem;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.trust-rule strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 0.125rem;
}

.trust-rule span {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */
.testimonial {
    padding: 1.5rem;
    background: var(--bg-dark-card);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-lg);
}

.testimonial-quote {
    font-size: 1.0625rem;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-cite {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-style: normal;
}

/* Outcome cards */
.outcome-card {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-dark-card);
    border-radius: var(--radius-lg);
}

.outcome-card .icon {
    font-size: 1.5rem;
    color: var(--accent);
    opacity: 0.6;
    margin-bottom: 0.75rem;
}

.outcome-card p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin: 0;
}

/* --------------------------------------------------------------------------
   FAQ Accordion
   -------------------------------------------------------------------------- */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.accordion-item {
    background: var(--bg-dark-card);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.accordion-header {
    margin: 0;
}

.accordion-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem 1.25rem;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    color: var(--text-primary);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.accordion-button:hover {
    background: rgba(255, 255, 255, 0.03);
}

.accordion-button:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: -2px;
}

.accordion-button::after {
    content: '+';
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-muted);
    transition: transform var(--transition-fast);
}

.accordion-button[aria-expanded="true"]::after {
    content: '−';
}

.accordion-body {
    padding: 0 1.25rem 1rem;
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.accordion-collapse {
    display: none;
}

.accordion-collapse.show {
    display: block;
}

/* --------------------------------------------------------------------------
   Toast Notifications
   -------------------------------------------------------------------------- */
.toast-container {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    pointer-events: none;
}

.toast {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--bg-dark-elevated);
    color: var(--text-primary);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transform: translateY(1rem);
    transition: opacity var(--transition-base), transform var(--transition-base);
    pointer-events: auto;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

.toast-success {
    background: var(--success);
    color: #fff;
}

.toast-icon {
    font-size: 1rem;
}

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

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
}

.form-input,
.form-textarea,
.form-select {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-primary);
    background: var(--bg-dark-card);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-md);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-muted);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-subtle);
}

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

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239AA4B2' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-hint {
    margin-top: 0.375rem;
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.form-error {
    color: #EF4444;
}

/* Light form variant */
.form-light .form-input,
.form-light .form-textarea,
.form-light .form-select {
    background: #fff;
    border-color: var(--border-light);
    color: var(--text-dark);
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero {
    padding: 8rem 0 5rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--bg-dark);
}

@media (min-width: 1024px) {
    .hero { padding: 10rem 0 6rem; }
}

.hero-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.875rem;
    margin-bottom: 1.5rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--accent);
    background: var(--accent-subtle);
    border-radius: var(--radius-full);
}

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

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

.hero-title {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .hero-subtitle { font-size: 1.25rem; }
}

.hero-emphasis {
    font-weight: 600;
    color: var(--text-primary);
}

.hero-cta {
    margin: 2rem 0;
}

.hero-microcopy {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.hero-proof {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-dark);
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.hero-stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.hero-stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* --------------------------------------------------------------------------
   Live Strip
   -------------------------------------------------------------------------- */
.live-strip {
    padding: 1.25rem 0;
    background: var(--bg-dark-elevated);
    border-top: 1px solid var(--border-dark);
    border-bottom: 1px solid var(--border-dark);
}

.live-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.live-title {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-primary);
}

.live-items {
    display: grid;
    gap: 1rem;
}

@media (min-width: 768px) {
    .live-items {
        grid-template-columns: repeat(3, 1fr);
    }
}

.live-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.live-value {
    font-size: 0.875rem;
    color: var(--text-primary);
}

/* --------------------------------------------------------------------------
   Section Headers
   -------------------------------------------------------------------------- */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3rem;
}

.section-header h2 {
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.section-header p {
    color: var(--text-secondary);
}

/* --------------------------------------------------------------------------
   Page Header (for policy pages)
   -------------------------------------------------------------------------- */
.page-header {
    padding: 8rem 0 3rem;
    background: var(--bg-dark);
    text-align: center;
}

.page-header h1 {
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.page-header .meta {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   Content (for policy/legal pages)
   -------------------------------------------------------------------------- */
.content {
    padding: 3rem 0 5rem;
    background: var(--bg-dark);
}

.content h2 {
    font-size: 1.5rem;
    margin: 2.5rem 0 1rem;
    color: var(--text-primary);
}

.content h2:first-child {
    margin-top: 0;
}

.content h3 {
    font-size: 1.25rem;
    margin: 2rem 0 0.75rem;
    color: var(--text-primary);
}

.content p,
.content li {
    color: var(--text-secondary);
    line-height: 1.7;
}

.content ul,
.content ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.content li {
    margin-bottom: 0.5rem;
}

.content a {
    color: var(--accent);
    text-decoration: underline;
}

.content a:hover {
    color: var(--accent-hover);
}

.content strong {
    color: var(--text-primary);
}

.content-notice {
    padding: 1rem 1.25rem;
    margin-bottom: 2rem;
    background: var(--accent-subtle);
    border-left: 3px solid var(--accent);
    border-radius: var(--radius-sm);
    font-size: 0.9375rem;
    color: var(--text-primary);
}

/* --------------------------------------------------------------------------
   Club Gateway
   -------------------------------------------------------------------------- */
.club-gateway {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 0;
    background: var(--bg-dark);
}

.gateway-card {
    max-width: 480px;
    margin: 0 auto;
    padding: 2.5rem;
    background: var(--bg-dark-card);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-xl);
    text-align: center;
}

.gateway-logo {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    border-radius: var(--radius-md);
}

.gateway-title {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.gateway-subtitle {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.gateway-preview {
    padding: 1.5rem;
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-lg);
    filter: blur(2px);
    opacity: 0.6;
}

.gateway-preview-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-dark);
    text-align: left;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.gateway-preview-item:last-child {
    border-bottom: none;
}

.gateway-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.gateway-footer {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.gateway-footer a {
    color: var(--accent);
}

/* --------------------------------------------------------------------------
   404 Page
   -------------------------------------------------------------------------- */
.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
    background: var(--bg-dark);
    text-align: center;
}

.error-code {
    font-size: 6rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.error-title {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.error-desc {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.error-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   Contact Form
   -------------------------------------------------------------------------- */
.contact-form-success {
    text-align: center;
    padding: 2rem;
}

.contact-form-success .icon {
    font-size: 3rem;
    color: var(--success);
    margin-bottom: 1rem;
}

.contact-form-success h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.contact-form-success p {
    color: var(--text-secondary);
}

/* --------------------------------------------------------------------------
   Utility Classes
   -------------------------------------------------------------------------- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.5rem !important; }
.mb-2 { margin-bottom: 1rem !important; }
.mb-3 { margin-bottom: 1.5rem !important; }
.mb-4 { margin-bottom: 2rem !important; }

.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 0.5rem !important; }
.mt-2 { margin-top: 1rem !important; }
.mt-3 { margin-top: 1.5rem !important; }
.mt-4 { margin-top: 2rem !important; }

.d-flex { display: flex; }
.d-block { display: block; }
.d-none { display: none; }

.flex-wrap { flex-wrap: wrap; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* --------------------------------------------------------------------------
   Responsive Visibility
   -------------------------------------------------------------------------- */
@media (max-width: 767px) {
    .hide-mobile { display: none !important; }
}

@media (min-width: 768px) {
    .hide-desktop { display: none !important; }
}

/* --------------------------------------------------------------------------
   Focus & Accessibility
   -------------------------------------------------------------------------- */
:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* Skip link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    padding: 1rem;
    background: var(--accent);
    color: #fff;
    z-index: 9999;
    transition: top var(--transition-fast);
}

.skip-link:focus {
    top: 0;
}

/* --------------------------------------------------------------------------
   Live Asks List (3 example items)
   -------------------------------------------------------------------------- */
.live-asks-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.live-asks-list li {
    font-size: 0.875rem;
    color: var(--text-primary);
    padding: 0.25rem 0;
    border-bottom: 1px solid var(--border-dark);
}

.live-asks-list li:last-child {
    border-bottom: none;
}

/* --------------------------------------------------------------------------
   Utility: h3 size class
   -------------------------------------------------------------------------- */
.h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}
