/* =====================================================
   GeoboxAI - Refined Dark Aesthetic
   Inspired by Mastra.ai: restraint, intentionality, craft
   ===================================================== */

/* Neue Kaine Font Face */
@font-face {
    font-family: 'Neue Kaine';
    src: url('NeueKaine-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Kaine';
    src: url('NeueKaine-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Kaine';
    src: url('NeueKaine-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Kaine';
    src: url('NeueKaine-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Kaine';
    src: url('NeueKaine-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Kaine';
    src: url('NeueKaine-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

/* CSS Variables - Refined palette */
:root {
    --bg-deep: #050505;
    --bg-surface: #0a0a0a;
    --bg-elevated: #111111;
    --bg-card: rgba(255, 255, 255, 0.02);
    --bg-card-hover: rgba(255, 255, 255, 0.04);

    --accent: #7B61FF;
    --accent-deep: #6D28D9;
    --accent-dim: rgba(123, 97, 255, 0.15);
    --accent-border: rgba(123, 97, 255, 0.3);

    --text-primary: #f0f0f0;
    --text-secondary: #888888;
    --text-muted: #555555;

    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-visible: rgba(255, 255, 255, 0.1);

    --green: #34d399;
    --green-dim: rgba(52, 211, 153, 0.12);
    --gold: #fbbf24;
    --gold-dim: rgba(251, 191, 36, 0.12);

    --font-display: 'Neue Kaine', -apple-system, sans-serif;
    --font-body: 'Neue Kaine', -apple-system, sans-serif;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--bg-deep);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

::selection {
    background: var(--accent);
    color: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =====================================================
   Background - Minimal, atmospheric
   ===================================================== */
.ambient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.gradient-base {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 120% 60% at 50% -10%, rgba(69, 0, 248, 0.18) 0%, transparent 50%),
        linear-gradient(180deg, #030305 0%, #050507 40%, #08080c 100%);
}

/* Flowing aurora ribbons */
.aurora-1 {
    position: absolute;
    width: 200%;
    height: 300px;
    left: -50%;
    top: 5%;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(69, 0, 248, 0.3) 20%,
        rgba(124, 58, 237, 0.4) 40%,
        rgba(69, 0, 248, 0.3) 60%,
        transparent 80%
    );
    filter: blur(80px);
    opacity: 0;
    animation: aurora-flow 20s ease-in-out infinite;
}

.aurora-2 {
    position: absolute;
    width: 200%;
    height: 200px;
    left: -50%;
    top: 15%;
    background: linear-gradient(90deg,
        transparent 10%,
        rgba(124, 58, 237, 0.25) 30%,
        rgba(168, 85, 247, 0.3) 50%,
        rgba(124, 58, 237, 0.25) 70%,
        transparent 90%
    );
    filter: blur(80px);
    opacity: 0;
    animation: aurora-flow 20s ease-in-out infinite;
    animation-delay: -7s;
}

.aurora-3 {
    position: absolute;
    width: 200%;
    height: 250px;
    left: -50%;
    top: 0%;
    background: linear-gradient(90deg,
        transparent 20%,
        rgba(69, 0, 248, 0.2) 40%,
        rgba(124, 58, 237, 0.25) 60%,
        transparent 80%
    );
    filter: blur(80px);
    opacity: 0;
    animation: aurora-flow 20s ease-in-out infinite;
    animation-delay: -14s;
}

@keyframes aurora-flow {
    0%, 100% {
        transform: translateX(-30%) scaleY(1);
        opacity: 0;
    }
    5% {
        opacity: 0.6;
    }
    50% {
        transform: translateX(30%) scaleY(1.2);
        opacity: 0.8;
    }
    95% {
        opacity: 0.6;
    }
}

.grid-overlay {
    display: none;
}

.vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse 100% 100% at 50% 0%,
        transparent 0%,
        var(--bg-deep) 70%
    );
}

/* =====================================================
   Navigation - Clean, minimal
   ===================================================== */
.nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 56px;
    padding: 12px 16px 12px 24px;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-img {
    width: 22px;
    height: 22px;
    border-radius: 50%;
}

.logo-text {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-primary);
    letter-spacing: 0.01em;
    transform: translateY(2px);
}

.nav-center {
    display: flex;
    align-items: center;
    gap: 44px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-divider {
    width: 1px;
    height: 16px;
    background: var(--border-subtle);
}

.nav-status {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--green-dim);
    border-radius: 6px;
}

.status-pulse {
    width: 6px;
    height: 6px;
    background: var(--green);
    border-radius: 50%;
}

.status-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #4500f8 0%, #7c3aed 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.2s ease;
    box-shadow: 0 4px 16px rgba(69, 0, 248, 0.3);
}

.nav-cta:hover {
    box-shadow: 0 6px 20px rgba(69, 0, 248, 0.4);
}

.nav-cta svg {
    width: 14px;
    height: 14px;
}

/* =====================================================
   Hero Section - Bold typography, restrained layout
   ===================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 140px 24px 100px;
    max-width: 1400px;
    margin: 0 auto;
    gap: 80px;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.hero-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 32px;
    opacity: 0;
    animation: fade-up 0.6s var(--ease-out) 0.1s forwards;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: transparent;
    border: 1px solid var(--border-visible);
    border-radius: 6px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.hero-badge.kd-badge {
    background: var(--green-dim);
    border-color: rgba(52, 211, 153, 0.2);
}

.kd-value {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--green);
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--green);
    border-radius: 50%;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 5.5vw, 4.25rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    opacity: 0;
    animation: fade-up 0.6s var(--ease-out) 0.2s forwards;
}

/* Gradient text - original colors */
.gradient-text {
    background: linear-gradient(135deg, #4500f8 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--text-secondary);
    max-width: 480px;
    margin-bottom: 40px;
    line-height: 1.7;
    opacity: 0;
    animation: fade-up 0.6s var(--ease-out) 0.3s forwards;
}

.hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fade-up 0.6s var(--ease-out) 0.4s forwards;
}

/* Buttons - Clean, functional */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #4500f8 0%, #7c3aed 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(69, 0, 248, 0.4);
}

.btn-primary:hover {
    box-shadow: 0 6px 24px rgba(69, 0, 248, 0.5);
}

.btn-primary::before {
    display: none;
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-visible);
}

.btn-secondary:hover {
    background: var(--bg-card-hover);
    border-color: var(--text-muted);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1rem;
}

/* =====================================================
   Panel Mockup - Refined, less glow
   ===================================================== */
.hero-visual {
    position: relative;
    z-index: 1;
    opacity: 0;
    animation: fade-in 0.8s var(--ease-out) 0.5s forwards;
}

.panel-mockup {
    position: relative;
}

/* Subtle glow - much reduced */
.panel-glow {
    position: absolute;
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    background: radial-gradient(
        ellipse at 50% 50%,
        rgba(124, 92, 255, 0.12) 0%,
        transparent 60%
    );
    filter: blur(60px);
    pointer-events: none;
}

.panel-window {
    position: relative;
    width: 420px;
    min-height: 560px;
    background: var(--bg-surface);
    border: 1px solid var(--border-visible);
    border-radius: 12px;
    overflow: visible;
}

.panel-window::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-visible), transparent);
}

.panel-header {
    padding: 16px 18px;
    border-bottom: 1px solid var(--border-subtle);
}

.panel-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
}

.panel-logo {
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

.panel-body {
    padding: 16px 18px;
}

.panel-status-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8125rem;
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.status-dot.red { background: #ef4444; }
.status-dot.yellow { background: #eab308; }
.status-dot.green { background: var(--green); }
.status-dot.orange { background: #f97316; }

.status-label {
    color: var(--text-muted);
    min-width: 45px;
}

.status-value {
    color: var(--text-secondary);
}

.panel-instructions {
    padding: 14px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    margin-bottom: 14px;
}

.instructions-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.instruction {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 4px;
    line-height: 1.5;
}

.instruction strong {
    color: var(--text-secondary);
    font-weight: 500;
}

.panel-version {
    font-size: 0.6875rem;
    color: var(--text-muted);
    text-align: center;
    padding-top: 10px;
    border-top: 1px solid var(--border-subtle);
}

.panel-lobby-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    background: var(--green-dim);
    border-top: 1px solid rgba(52, 211, 153, 0.15);
    border-bottom: 1px solid rgba(52, 211, 153, 0.15);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--green);
}

.panel-lobby-status.in-use {
    background: rgba(249, 115, 22, 0.1);
    border-color: rgba(249, 115, 22, 0.15);
    color: #f97316;
}

.panel-controls {
    padding: 16px 18px;
}

.panel-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    margin-bottom: 10px;
    font-size: 0.8125rem;
    color: var(--text-primary);
    cursor: pointer;
    transition: border-color 0.15s ease;
}

.panel-dropdown:hover {
    border-color: var(--border-visible);
}

.panel-dropdown.open {
    border-color: var(--accent-border);
}

.panel-dropdown svg {
    width: 14px;
    height: 14px;
    stroke: var(--text-muted);
    transition: transform 0.2s ease;
}

.panel-dropdown.open svg {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 4px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-visible);
    border-radius: 6px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: all 0.15s ease;
    z-index: 1000;
    max-height: 280px;
    scrollbar-width: thin;
    scrollbar-color: var(--text-muted) transparent;
}

.dropdown-menu::-webkit-scrollbar {
    width: 4px;
}

.dropdown-menu::-webkit-scrollbar-thumb {
    background: var(--text-muted);
    border-radius: 2px;
}

.panel-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-item {
    padding: 10px 12px;
    font-size: 0.8125rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: background 0.1s ease;
}

.dropdown-item:hover {
    background: var(--bg-card-hover);
    color: var(--text-primary);
}

.dropdown-item.selected {
    color: var(--text-primary);
}

.panel-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.panel-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 12px;
    border: none;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.15s ease;
}

.panel-btn.search {
    background: linear-gradient(135deg, #4500f8 0%, #7c3aed 100%);
    color: white;
    box-shadow: 0 2px 12px rgba(69, 0, 248, 0.3);
}

.panel-btn.search:hover {
    box-shadow: 0 4px 16px rgba(69, 0, 248, 0.4);
}

.panel-btn.secondary {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
}

.panel-btn.secondary:hover {
    border-color: var(--border-visible);
    color: var(--text-primary);
}

.panel-btn svg {
    width: 12px;
    height: 12px;
}

.panel-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.fr-status {
    margin-top: 12px;
    padding: 12px;
    background: var(--accent-dim);
    border: 1px solid var(--accent-border);
    border-radius: 6px;
    text-align: center;
}

.fr-status-text {
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

.fr-status-text .fr-id {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 4px;
}

.fr-status.detected {
    background: var(--green-dim);
    border-color: rgba(52, 211, 153, 0.2);
}

.fr-status.detected .fr-status-text {
    color: var(--green);
}

/* =====================================================
   Section Styling - Cleaner hierarchy
   ===================================================== */
section {
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

/* Simpler tag - no gradient background */
.section-tag {
    display: inline-block;
    padding: 6px 12px;
    background: transparent;
    border: 1px solid var(--accent-border);
    border-radius: 4px;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
    font-weight: 400;
}

/* Static divider - no animation */
.section-divider {
    width: 100%;
    max-width: 200px;
    height: 1px;
    background: var(--border-visible);
    margin: 0 auto;
}

/* =====================================================
   Features Section
   ===================================================== */
.features {
    padding: 120px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border-subtle);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    overflow: hidden;
}

.feature-card {
    background: var(--bg-deep);
    padding: 36px 32px;
    transition: background 0.2s ease;
}

.feature-card.visible {
    opacity: 1;
    transform: none;
}

.feature-card:hover {
    background: var(--bg-surface);
}

.feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-dim);
    border-radius: 8px;
    margin-bottom: 20px;
}

.feature-card:hover .feature-icon {
    transform: none;
    box-shadow: none;
}

.feature-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent);
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* =====================================================
   How It Works
   ===================================================== */
.how-it-works {
    padding: 120px 0;
    background: transparent;
}

.steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    flex: 1;
    text-align: center;
    padding: 0 32px;
}

.step-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(180deg, #ffffff 0%, #666666 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 24px;
}

.step-content h3 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.step-content p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
}

.step-line {
    width: 60px;
    height: 1px;
    background: var(--border-visible);
    margin-top: 32px;
}

/* =====================================================
   Streamers Section
   ===================================================== */
.streamers {
    padding: 100px 0;
    overflow: hidden;
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    margin: 60px 0 48px;
    mask-image: linear-gradient(
        to right,
        transparent,
        black 10%,
        black 90%,
        transparent
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent,
        black 10%,
        black 90%,
        transparent
    );
}

.marquee-row {
    overflow: hidden;
    width: 100%;
}

.marquee-row + .marquee-row {
    margin-top: 16px;
}

.marquee-track {
    display: flex;
    align-items: center;
    width: fit-content;
    will-change: transform;
    gap: 0;
}

.marquee-left {
    animation: marquee-scroll 30s linear infinite;
}

.marquee-right {
    animation: marquee-scroll 35s linear infinite;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-25%); }
}

.marquee-item {
    flex-shrink: 0;
    padding: 0 24px;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    background: linear-gradient(180deg, #ffffff 0%, #888888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 24px;
}

.marquee-item::after {
    content: '·';
    background: linear-gradient(180deg, #ffffff 0%, #666666 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.5;
}

.marquee-item:hover {
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.streamers-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* =====================================================
   Pricing Section
   ===================================================== */
.pricing {
    padding: 120px 0;
}

.pricing-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: stretch;
}

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 28px 24px;
    transition: border-color 0.2s ease;
}

.pricing-card:hover {
    border-color: var(--border-visible);
}

.pricing-card.featured {
    border-color: var(--accent-border);
}

.pricing-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 12px;
    background: var(--accent);
    border-radius: 4px;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: white;
}

.pricing-tier {
    margin-bottom: 12px;
}

.tier-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    font-family: var(--font-display);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.tier-badge.elite {
    background: var(--gold-dim);
    color: var(--gold);
    border: 1px solid rgba(251, 191, 36, 0.2);
}

.tier-badge.ultra {
    background: linear-gradient(90deg,
        #c4b5fd, #a5b4fc, #93c5fd, #a5b4fc, #c4b5fd, #f0abfc, #fda4af, #f0abfc, #c4b5fd
    );
    background-size: 300% 100%;
    animation: opalescent-shimmer 8s ease-in-out infinite;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

@keyframes opalescent-shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.pricing-amount {
    margin-bottom: 8px;
}

.pricing-amount .price {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.pricing-amount .period {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.pricing-save {
    color: var(--green);
    font-size: 0.8125rem;
    font-weight: 500;
    margin-bottom: 16px;
}

.pricing-features {
    list-style: none;
    margin: 16px 0 24px;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    color: var(--text-secondary);
    font-size: 0.8125rem;
    border-bottom: 1px solid var(--border-subtle);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li svg {
    width: 16px;
    height: 16px;
    stroke: var(--green);
    flex-shrink: 0;
    margin-top: 1px;
}

.pricing-features li strong {
    color: var(--text-primary);
    font-weight: 500;
}

.pricing-card .btn {
    width: 100%;
    justify-content: center;
    margin-top: auto;
}

.pricing-card.elite .btn {
    background: transparent;
    border: 1px solid rgba(251, 191, 36, 0.3);
    color: var(--gold);
}

.pricing-card.elite .btn:hover {
    background: var(--gold-dim);
}

.pricing-card.ultra .btn {
    position: relative;
    background: transparent;
    border: none;
    color: #c4b5fd;
    z-index: 1;
}

.pricing-card.ultra .btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    padding: 1px;
    background: linear-gradient(90deg,
        #c4b5fd, #a5b4fc, #93c5fd, #a5b4fc, #c4b5fd, #f0abfc, #fda4af, #f0abfc, #c4b5fd
    );
    background-size: 300% 100%;
    animation: opalescent-shimmer 8s ease-in-out infinite;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

.pricing-card.ultra .btn:hover {
    color: #fff;
}

/* =====================================================
   FAQ Section
   ===================================================== */
.faq {
    padding: 120px 0;
    background: transparent;
}

.faq-list {
    max-width: 680px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-subtle);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-question span {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    transition: color 0.2s ease;
}

.faq-question:hover span {
    color: var(--accent);
}

.faq-icon {
    width: 20px;
    height: 20px;
    stroke: var(--text-muted);
    transition: transform 0.3s var(--ease-out), stroke 0.2s ease;
}

.faq-question:hover .faq-icon {
    stroke: var(--text-secondary);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    stroke: var(--accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s var(--ease-out);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 24px;
}

.faq-answer p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* =====================================================
   CTA Section
   ===================================================== */
.cta-section {
    padding: 100px 0;
}

.cta-content {
    text-align: center;
    max-width: 480px;
    margin: 0 auto;
    padding: 60px 32px;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.cta-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 28px;
}

/* =====================================================
   Footer
   ===================================================== */
.footer {
    position: relative;
    z-index: 1;
    padding: 48px 0 32px;
    border-top: 1px solid var(--border-subtle);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo {
    width: 28px;
    height: 28px;
    border-radius: 6px;
}

.footer-name {
    font-family: var(--font-display);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 0.8125rem;
    margin-left: 12px;
    padding-left: 12px;
    border-left: 1px solid var(--border-subtle);
}

.footer-links {
    display: flex;
    gap: 12px;
}

.footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    color: var(--text-muted);
    transition: all 0.2s ease;
}

.footer-social:hover {
    border-color: var(--border-visible);
    color: var(--text-secondary);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--border-subtle);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.75rem;
}

.footer-disclaimer {
    margin-top: 8px;
}

/* =====================================================
   Animations - Minimal, purposeful
   ===================================================== */
@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* =====================================================
   Responsive
   ===================================================== */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 140px;
        gap: 60px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-badges {
        justify-content: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-ctas {
        justify-content: center;
    }

    .panel-window {
        width: 360px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
    }

    .pricing-card.featured {
        order: -1;
    }

    .steps {
        flex-direction: column;
        gap: 48px;
    }

    .step-line {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-center {
        display: none;
    }

    .nav-container {
        padding: 10px 16px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .marquee-item {
        padding: 0 24px;
        font-size: 1rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-brand {
        flex-direction: column;
        gap: 8px;
    }

    .footer-tagline {
        border-left: none;
        margin-left: 0;
        padding-left: 0;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 120px 20px 80px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .panel-window {
        width: 100%;
        min-width: 0;
    }

    .cta-content {
        padding: 40px 24px;
    }
}
