/* ==================== RESET & TOKENS ==================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --bg-body: #050a18;
    --bg-section-alt: #0B1120;
    --bg-card: #111827;
    --bg-card-hover: #1A2335;
    --border-subtle: rgba(148, 163, 184, 0.08);
    --border-medium: rgba(148, 163, 184, 0.15);
    --border-accent: rgba(96, 165, 250, 0.3);

    --text-primary: #F1F5F9;
    --text-secondary: #94A3B8;
    --text-muted: #64748B;

    --accent-blue: #60A5FA;
    --accent-purple: #A78BFA;
    --accent-green: #34D399;
    --accent-gold: #FBBF24;
    --sun-glow: #FFD700;

    --gradient-main: linear-gradient(135deg, #60A5FA, #A78BFA);

    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', var(--font-body);

    --container: 1120px;
    --container-narrow: 720px;
    --section-pad: clamp(80px, 10vw, 140px);
    --gutter: clamp(20px, 4vw, 40px);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background: var(--bg-body);
    color: var(--text-primary);
    line-height: 1.65;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ==================== LAYOUT ==================== */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}
.container-narrow {
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

/* ==================== STARS ==================== */
.stars {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
}

.star {
    position: absolute;
    border-radius: 50%;
    background: white;
    animation: twinkle var(--duration) ease-in-out infinite;
    animation-delay: var(--delay);
}

@keyframes twinkle {
    0%, 100% { opacity: var(--base-opacity); }
    50% { opacity: var(--peak-opacity); }
}

/* ==================== TYPOGRAPHY ==================== */
.eyebrow {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--accent-blue);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.3px;
    border-radius: var(--radius-md);
    padding: 14px 28px;
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-main);
    color: white;
    box-shadow: 0 4px 20px rgba(96, 165, 250, 0.25);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(96, 165, 250, 0.35);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-medium);
}
.btn-ghost:hover {
    border-color: var(--accent-blue);
    color: var(--accent-blue);
}

.btn-outline {
    background: transparent;
    color: var(--accent-blue);
    border: 1px solid var(--border-accent);
}
.btn-outline:hover {
    background: rgba(96, 165, 250, 0.08);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 18px;
    border-radius: var(--radius-lg);
}

/* ==================== NAV ==================== */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 0 var(--gutter);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}
.nav.scrolled {
    background: rgba(5, 10, 24, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--border-subtle);
}

.nav-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

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

.logo-mark {
    width: 28px; height: 28px;
    position: relative;
    animation: logoSpin 10s linear infinite;
}
.logo-ring {
    width: 100%; height: 100%;
    border: 2px solid var(--accent-blue);
    border-radius: 50%;
}
.logo-dot {
    position: absolute;
    width: 7px; height: 7px;
    background: var(--accent-gold);
    border-radius: 50%;
    top: -3px; left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 8px var(--accent-gold);
}
@keyframes logoSpin { to { transform: rotate(360deg); } }

.logo-text {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2.5px;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 32px;
}
.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--text-primary); }

.nav-cta {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: var(--radius-sm);
    background: var(--gradient-main);
    color: white;
    transition: all 0.25s;
}
.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(96, 165, 250, 0.3);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    flex-direction: column;
    gap: 5px;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-secondary);
    border-radius: 1px;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    padding: 16px 0 24px;
    gap: 16px;
    max-width: var(--container);
    margin: 0 auto;
}
.mobile-menu a {
    font-size: 15px;
    color: var(--text-secondary);
    font-weight: 500;
}
.mobile-menu .mobile-cta {
    display: inline-block;
    padding: 12px 24px;
    background: var(--gradient-main);
    color: white;
    border-radius: var(--radius-sm);
    font-weight: 600;
    text-align: center;
    margin-top: 4px;
}

/* ==================== HERO ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 100px var(--gutter) 40px;
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin-bottom: 10px;
}

.hero-h1 {
    font-family: var(--font-display);
    font-size: clamp(30px, 4.5vw, 52px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-sub {
    font-size: clamp(15px, 1.8vw, 18px);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 28px;
    line-height: 1.7;
}

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

.trust-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 0.3px;
    padding-bottom: 20px;
}
.trust-dot {
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--text-muted);
    display: inline-block;
}

/* ==================== SOLAR SYSTEM ==================== */
.solar-system-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    flex: 1;
}

.solar-system {
    position: relative;
    width: min(460px, 78vw);
    height: min(460px, 78vw);
}

.sun {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.sun-glow {
    width: 120px; height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,215,0,0.3) 0%, rgba(255,215,0,0.05) 50%, transparent 70%);
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation: sunPulse 3s ease-in-out infinite;
}

@keyframes sunPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.3); opacity: 1; }
}

.sun-core {
    width: 76px; height: 76px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #FFE066, #FFB800, #E6A200);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(255,215,0,0.5), 0 0 80px rgba(255,215,0,0.2);
    position: relative;
    transition: all 1s ease;
}

.sun-logo-ring {
    width: 48px; height: 48px;
    border: 2px solid rgba(255,255,255,0.6);
    border-radius: 50%;
    position: absolute;
    animation: logoSpin 6s linear infinite;
}

.sun-logo-ring::after {
    content: '';
    width: 6px; height: 6px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: -3px; left: 50%;
    transform: translateX(-50%);
}

.sun-label {
    font-family: var(--font-display);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.9);
    position: absolute;
    bottom: -22px;
    white-space: nowrap;
}

/* Orbit rings */
.orbit-ring {
    position: absolute;
    top: 50%; left: 50%;
    border: 1px solid rgba(96,165,250,0.08);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.orbit-ring-1 { width: 130px; height: 130px; }
.orbit-ring-2 { width: 190px; height: 190px; }
.orbit-ring-3 { width: 255px; height: 255px; }
.orbit-ring-4 { width: 330px; height: 330px; }
.orbit-ring-5 { width: 410px; height: 410px; }

.orbit-ring.aligned { border-color: rgba(96,165,250,0.25); box-shadow: 0 0 15px rgba(96,165,250,0.05); }
.orbit-ring.single-orbit { border-color: rgba(255,215,0,0.3) !important; box-shadow: 0 0 20px rgba(255,215,0,0.08) !important; }

/* Planets */
.planet {
    position: absolute;
    z-index: 5;
    transition: all 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.planet-body {
    width: 42px; height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 700;
    color: white;
    letter-spacing: 0.5px;
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
    transition: all 0.8s ease;
}

.planet-label {
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 9px;
    color: var(--text-muted);
    white-space: nowrap;
    font-weight: 500;
    transition: opacity 0.5s ease;
}

.planet-1 { top: 2%; left: 20%; }
.planet-2 { top: 8%; right: 5%; }
.planet-3 { top: 35%; left: -5%; }
.planet-4 { top: 30%; right: -5%; }
.planet-5 { bottom: 25%; left: 0%; }
.planet-6 { bottom: 5%; left: 50%; }
.planet-7 { bottom: 12%; right: 0%; }
.planet-8 { top: 60%; right: 8%; }

.planet.aligned { opacity: 0; transform: scale(0.3); }

/* Sun expanded */
.sun.expanded .sun-core { width: 105px; height: 105px; }
.sun.expanded .sun-glow { width: 190px; height: 190px; }
.sun.expanded .sun-label { font-size: 11px; bottom: -26px; }

/* ==================== SCROLL INDICATOR ==================== */
.scroll-indicator {
    text-align: center;
    padding: 10px 0;
    animation: fadeInUp 1s ease 2s both;
}

.scroll-indicator p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 6px;
    letter-spacing: 1px;
}

.scroll-arrow {
    color: var(--accent-blue);
    animation: bounce 2s ease-in-out infinite;
}

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

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==================== PAIN ==================== */
.pain {
    padding: var(--section-pad) 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.pain-text {
    font-size: clamp(16px, 2vw, 19px);
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 28px;
}

.pain-kicker {
    font-family: var(--font-display);
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 600;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== FEATURES ==================== */
.features {
    padding: var(--section-pad) 0;
    background: var(--bg-section-alt);
    text-align: center;
    position: relative;
    z-index: 1;
}

.lifecycle-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 56px;
    text-align: left;
}

.lifecycle-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    transition: all 0.35s ease;
    opacity: 0;
    transform: translateY(24px);
}
.lifecycle-card.visible {
    opacity: 1;
    transform: translateY(0);
}
.lifecycle-card:hover {
    border-color: var(--border-accent);
    background: var(--bg-card-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.lc-icon {
    width: 48px; height: 48px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.lc-icon-schedule { background: rgba(96, 165, 250, 0.1); color: var(--accent-blue); }
.lc-icon-triage   { background: rgba(52, 211, 153, 0.1); color: var(--accent-green); }
.lc-icon-meet     { background: rgba(244, 114, 182, 0.1); color: #F472B6; }
.lc-icon-act      { background: rgba(251, 191, 36, 0.1); color: var(--accent-gold); }

.lc-phase {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: var(--accent-blue);
    display: block;
    margin-bottom: 6px;
}

.lifecycle-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.lifecycle-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.75;
}

/* ==================== PERSONAS ==================== */
.personas {
    padding: var(--section-pad) 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.persona-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
    text-align: left;
}

.persona-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}
.persona-card.visible {
    opacity: 1;
    transform: translateY(0);
}
.persona-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-2px);
}

.persona-card h4 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
}

.persona-pain {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 10px;
    line-height: 1.6;
}

.persona-outcome {
    font-size: 13px;
    color: var(--accent-green);
    line-height: 1.6;
    font-weight: 500;
}

/* ==================== COMPARISON ==================== */
.comparison {
    padding: var(--section-pad) 0;
    background: var(--bg-section-alt);
    text-align: center;
    position: relative;
    z-index: 1;
}

.comparison-table-wrap {
    overflow-x: auto;
    margin-top: 48px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
}

.comparison-table {
    width: 100%;
    min-width: 640px;
    border-collapse: collapse;
    font-size: 14px;
    text-align: left;
}

.comparison-table th,
.comparison-table td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border-subtle);
}

.comparison-table thead th {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    background: var(--bg-card);
    position: sticky;
    top: 0;
}

.comparison-table tbody td { color: var(--text-secondary); }

.comparison-table .highlight-col { background: rgba(96, 165, 250, 0.04); }
.comparison-table thead .highlight-col { color: var(--accent-blue); background: rgba(96, 165, 250, 0.08); }

.comparison-table .check { color: var(--accent-green); font-weight: 600; font-size: 16px; }
.comparison-table .highlight-col.check { color: var(--accent-green); }
.comparison-table .x { color: var(--text-muted); }

.comparison-table .price-row td { font-weight: 600; border-bottom: none; }
.comparison-table .price-row .highlight-col { color: var(--accent-blue); }
.comparison-table tbody tr:last-child td { border-bottom: none; }

/* ==================== PRICING ==================== */
.pricing {
    padding: var(--section-pad) 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 780px;
    margin: 48px auto 0;
    text-align: left;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
}
.pricing-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.pricing-card-featured {
    border-color: var(--border-accent);
    background: linear-gradient(180deg, rgba(96, 165, 250, 0.06) 0%, var(--bg-card) 40%);
    box-shadow: 0 0 40px rgba(96, 165, 250, 0.06);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 4px 16px;
    border-radius: 20px;
    background: var(--gradient-main);
    color: white;
    white-space: nowrap;
}

.pricing-card-header { margin-bottom: 28px; }

.pricing-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.pricing-amount {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 700;
    line-height: 1;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.pricing-amount .currency {
    font-size: 28px;
    vertical-align: top;
    position: relative;
    top: 8px;
}
.pricing-amount .period {
    font-size: 15px;
    font-weight: 500;
    -webkit-text-fill-color: var(--text-muted);
}

.pricing-billing {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
}

.pricing-features {
    flex: 1;
    margin-bottom: 28px;
}

.pricing-features li {
    font-size: 14px;
    color: var(--text-secondary);
    padding: 6px 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
}

.check-mark {
    color: var(--accent-green);
    font-weight: 600;
    flex-shrink: 0;
    margin-top: 1px;
}

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

.pricing-launch {
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
    margin-top: 12px;
}

.pricing-note {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 32px;
}

/* ==================== FOUNDER ==================== */
.founder {
    padding: var(--section-pad) 0;
    position: relative;
    z-index: 1;
}

.founder-quote {
    font-family: var(--font-display);
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 32px 0 40px;
    font-style: italic;
    border: none;
}

.founder-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.founder-avatar {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--gradient-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.founder-name {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 2px;
}

.founder-title {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 2px;
}

.founder-cred {
    font-size: 12px;
    color: var(--text-muted);
}

/* ==================== TRUST ==================== */
.trust {
    padding: 48px 0;
    position: relative;
    z-index: 1;
}

.trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
}
.trust-badge svg { opacity: 0.5; }

/* ==================== FINAL CTA ==================== */
.final-cta {
    padding: var(--section-pad) 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.final-cta .section-h2 {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.final-cta-sub {
    font-size: clamp(16px, 2vw, 19px);
    color: var(--text-secondary);
    margin-bottom: 36px;
}

.cta-note {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 16px;
}

/* ==================== FOOTER ==================== */
.footer {
    padding: 40px 0;
    border-top: 1px solid var(--border-subtle);
    position: relative;
    z-index: 1;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-tagline {
    font-size: 14px;
    color: var(--text-muted);
}

.footer-links-group {
    display: flex;
    gap: 24px;
}
.footer-links-group a {
    font-size: 14px;
    color: var(--text-secondary);
    transition: color 0.2s;
}
.footer-links-group a:hover { color: var(--accent-blue); }

.footer-copy {
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
}

/* ==================== HERO ANIMATIONS ==================== */
.hero .eyebrow,
.hero-h1,
.hero-sub,
.hero-ctas {
    opacity: 0;
    animation: fadeInUp 0.7s ease forwards;
}
.hero .eyebrow   { animation-delay: 0.1s; }
.hero-h1         { animation-delay: 0.25s; }
.hero-sub        { animation-delay: 0.4s; }
.hero-ctas       { animation-delay: 0.55s; }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 900px) {
    .lifecycle-grid { grid-template-columns: 1fr; }
    .persona-grid   { grid-template-columns: 1fr 1fr; }
    .pricing-grid   { grid-template-columns: 1fr; max-width: 400px; }
}

@media (max-width: 768px) {
    .nav-links   { display: none; }
    .nav-cta     { display: none; }
    .nav-toggle  { display: flex; }

    .mobile-menu.open { display: flex; }

    .hero { padding: 100px 20px 30px; }
    .hero-h1 br { display: none; }

    .solar-system {
        width: min(320px, 85vw);
        height: min(320px, 85vw);
    }

    .sun-core { width: 58px; height: 58px; }
    .sun-glow { width: 88px; height: 88px; }
    .sun-logo-ring { width: 36px; height: 36px; }
    .sun-label { font-size: 8px; bottom: -18px; }

    .orbit-ring-1 { width: 95px; height: 95px; }
    .orbit-ring-2 { width: 140px; height: 140px; }
    .orbit-ring-3 { width: 190px; height: 190px; }
    .orbit-ring-4 { width: 245px; height: 245px; }
    .orbit-ring-5 { width: 300px; height: 300px; }

    .planet-body { width: 34px; height: 34px; font-size: 9px; }
    .planet-label { font-size: 8px; bottom: -15px; }

    .persona-grid { grid-template-columns: 1fr; }

    .trust-badges { gap: 20px; }

    .comparison-table-wrap {
        margin-left: calc(var(--gutter) * -1);
        margin-right: calc(var(--gutter) * -1);
        border-radius: 0;
        border-left: none;
        border-right: none;
    }

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

    .footer-brand {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }
    .hero-ctas .btn {
        width: 100%;
        max-width: 320px;
    }
    .trust-strip {
        flex-direction: column;
        gap: 8px;
    }
    .trust-dot { display: none; }

    .solar-system { width: 270px; height: 270px; }
    .orbit-ring-4 { width: 210px; height: 210px; }
    .orbit-ring-5 { width: 260px; height: 260px; }

    .founder-info {
        flex-direction: column;
    }
}
