:root {
    /* Color Palette */
    --bg: #09090b;
    --card-bg: #111113;
    --border: #27272a;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --blue: #3b82f6;
    --blue-glow: rgba(59, 130, 246, 0.2);
    --green: #22c55e;
    --green-glow: rgba(34, 197, 94, 0.2);
    --orange: #f97316;
    --orange-glow: rgba(249, 115, 22, 0.2);
    
    /* System Tokens */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
    --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    
    /* Background Elements */
    --bg-grid: rgba(255, 255, 255, 0.05);
    --signal-color: rgba(59, 130, 246, 0.1);
    --blob-color-1: rgba(59, 130, 246, 0.08);
    --blob-color-2: rgba(249, 115, 22, 0.05);
}

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

body {
    background-color: var(--bg);
    color: var(--text-primary);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

/* Global Background Layers */
.bg-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -20;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.6;
    animation: blobFloat 25s infinite alternate ease-in-out;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: var(--blob-color-1);
    top: -10%;
    left: -10%;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: var(--blob-color-2);
    bottom: -5%;
    right: -5%;
    animation-delay: -5s;
}

.global-glow {
    position: fixed;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: -15;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(var(--bg-grid) 1px, transparent 1px),
        linear-gradient(90deg, var(--bg-grid) 1px, transparent 1px);
    background-size: 80px 80px;
    z-index: -10;
    pointer-events: none;
    opacity: 0.6;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 50% 50%, var(--bg) 0%, rgba(9, 9, 11, 0.2) 40%, rgba(9, 9, 11, 0) 60%, var(--bg) 100%),
        url("https://grainy-gradients.vercel.app/noise.svg");
    filter: contrast(120%) brightness(100%);
    z-index: -9;
    pointer-events: none;
    opacity: 0.5;
}

@keyframes blobFloat {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(100px, 50px) scale(1.1); }
    66% { transform: translate(-50px, 150px) scale(0.9); }
    100% { transform: translate(0, 0) scale(1); }
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
}

select option {
    background-color: #111113; /* var(--card-bg) */
    color: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--blue);
    color: white;
}

.btn-primary:hover {
    box-shadow: 0 0 20px var(--blue-glow);
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border-color: var(--border);
}

.btn-secondary:hover {
    background-color: var(--border);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--blue);
    background-color: rgba(59, 130, 246, 0.05);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: var(--radius-lg);
}

/* --- Top Navigation --- */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.5rem 0;
    background: linear-gradient(to bottom, var(--bg), transparent);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: white;
}

#nav-logo {
    height: 32px;
    width: auto;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.the-text {
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: white;
}

.nav-pill-wrapper {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-pill {
    background: rgba(17, 17, 19, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    padding: 0.5rem;
    border-radius: var(--radius-full);
    display: flex;
    gap: 0.5rem;
}

.nav-item {
    padding: 0.4rem 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.nav-item:hover, .nav-item.active {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.nav-item.active {
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.3);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.nav-actions {
    display: flex;
    gap: 1rem;
}

/* --- Back Link for Forms --- */
.back-link {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.back-link:hover {
    color: var(--blue);
    transform: translateX(-5px);
}

/* --- Hero Section --- */
.hero {
    padding: 10rem 0 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140%;
    height: 140%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, var(--blue-glow) 0%, transparent 60%);
    z-index: -1;
    animation: slowDrift 20s infinite ease-in-out;
    opacity: 0.4;
}

@keyframes slowDrift {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-45%, -55%) scale(1.1); }
}

.credibility-line {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: -1.5rem auto 2.5rem;
    opacity: 0.8;
}

.section-divider {
    height: 1px;
    width: 100%;
    background: linear-gradient(to right, transparent, var(--border), transparent);
    margin-bottom: 2rem;
}

.supporting-line {
    display: inline-block;
    color: var(--blue);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.sub-headline {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 3rem;
}

.cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.micro-line {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 1.5rem;
    opacity: 0.7;
}

.hero-visual {
    margin-top: 6rem;
    position: relative;
    height: 400px;
    background: radial-gradient(circle at center, var(--blue-glow) 0%, transparent 70%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-visual::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--blue), transparent);
    animation: scan 4s infinite linear;
    opacity: 0.5;
}

@keyframes scan {
    0% { top: 0; }
    100% { top: 100%; }
}

.hero-visual::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--blue), transparent);
    animation: scan 4s infinite linear;
    opacity: 0.5;
}

.visual-indicator {
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--border);
    z-index: 10;
}

.indicator-dot {
    width: 6px;
    height: 6px;
    background: var(--blue);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--blue);
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.indicator-text {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
}

.signal-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--blue-glow) 0%, transparent 60%);
    animation: pulse 4s infinite ease-in-out;
    pointer-events: none;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(0.9); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.1); }
}

/* --- Problem Section --- */
.problem {
    padding: 4rem 0 8rem;
    background: linear-gradient(to bottom, transparent, rgba(17, 17, 19, 0.5));
    position: relative;
    overflow: hidden;
}

.problem::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 2px 2px, rgba(249, 115, 22, 0.05) 1px, transparent 0);
    background-size: 40px 40px;
    z-index: -1;
    animation: scatteredSignals 10s infinite linear;
}

@keyframes scatteredSignals {
    0% { opacity: 0.3; transform: translateY(0); }
    50% { opacity: 0.6; }
    100% { opacity: 0.3; transform: translateY(-40px); }
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    text-align: center;
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.problem-text p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.problem-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.problem-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: var(--transition);
}

.problem-card:hover {
    border-color: var(--orange);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.05);
}

.card-icon {
    color: var(--orange);
    font-size: 1.5rem;
}

/* --- Solution Section --- */
.solution {
    padding: 8rem 0;
    text-align: center;
}

.solution h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
}

.solution-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 4rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.blue { background-color: var(--blue); box-shadow: 0 0 10px var(--blue); }

/* --- How it Works (Progression Bars) --- */
.how-it-works {
    padding: 8rem 0;
    background: var(--card-bg);
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 200%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--blue), transparent);
    opacity: 0.1;
    animation: flowLine 8s infinite linear;
    z-index: 1;
}

@keyframes flowLine {
    from { transform: translateX(-100%); }
    to { transform: translateX(100%); }
}

.how-it-works h2 {
    text-align: center;
    margin-bottom: 5rem;
}

.progression-bars {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 4rem;
}

.bar-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bar-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.check {
    opacity: 0;
    transition: opacity 0.5s ease-out;
    color: var(--green);
}

.check.visible {
    opacity: 1;
}

.bar-visual {
    height: 8px;
    background: var(--border);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    width: 0;
    transition: width 1.5s ease-out;
}

.bar-fill.orange { background-color: var(--orange); box-shadow: 0 0 15px var(--orange-glow); }
.bar-fill.blue { background-color: var(--blue); box-shadow: 0 0 15px var(--blue-glow); }
.bar-fill.green { background-color: var(--green); box-shadow: 0 0 15px var(--green-glow); }

.how-it-works-sub {
    text-align: center;
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    color: var(--text-secondary);
}

.frictionless {
    text-align: center;
    color: var(--blue);
    font-weight: 600;
}

/* --- What You Get --- */
.what-you-get {
    padding: 8rem 0;
}

.what-you-get h2 {
    text-align: center;
    margin-bottom: 4rem;
}

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

.get-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
    overflow: hidden; /* Ensure content stays inside */
    position: relative;
}

.get-card:hover {
    border-color: var(--blue);
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(59, 130, 246, 0.03) 100%);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
}

.get-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.get-card p {
    color: var(--text-secondary);
}

/* --- Impact Circle --- */
.impact-circle {
    padding: 6rem 0 4rem;
    text-align: center;
    overflow: hidden;
}

.circle-visualization {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 500px;
    margin: 1rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-visualization::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    animation: ripple 10s infinite linear;
}

.circle-visualization::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(59, 130, 246, 0.05);
    border-radius: 50%;
    animation: ripple 15s infinite linear reverse;
}

@keyframes ripple {
    0% { transform: scale(0.8); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: scale(1.2); opacity: 0; }
}

.circle-center {
    position: absolute;
    width: 140px;
    height: 140px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    box-shadow: 0 0 60px var(--blue-glow);
    transition: var(--transition);
    animation: logoRotate 20s infinite linear;
}

@keyframes logoRotate {
    0% { transform: rotate(0deg); box-shadow: 0 0 60px var(--blue-glow); }
    50% { box-shadow: 0 0 80px var(--blue); }
    100% { transform: rotate(360deg); box-shadow: 0 0 60px var(--blue-glow); }
}

.circle-center img {
    width: 70px;
    animation: counterRotate 20s infinite linear;
}

@keyframes counterRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

.impact-point {
    position: absolute;
    width: 240px;
    text-align: left;
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 1.25rem;
    border-radius: var(--radius-md);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
}

/* Move away on hover */
.p1:hover { transform: translateX(-50%) translateY(-20px); }
.p2:hover { transform: translateX(20px); }
.p3:hover { transform: translate(15px, 15px); }
.p4:hover { transform: translate(-15px, 15px); }
.p5:hover { transform: translateX(-20px); }

.impact-point h4 {
    color: var(--green);
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.impact-point p {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Circular positioning - brought closer */
.p1 { top: 5%; left: 50%; transform: translateX(-50%); }
.p2 { top: 35%; right: 5%; }
.p3 { bottom: 15%; right: 15%; }
.p4 { bottom: 15%; left: 15%; }
.p5 { top: 35%; left: 5%; }

.bottom-line {
    margin-top: 1rem;
    font-size: 1.25rem;
    font-weight: 500;
    opacity: 0.9;
}

/* --- Pricing Section --- */
.pricing {
    padding: 8rem 0;
}

.pricing-card {
    background: linear-gradient(180deg, var(--card-bg) 0%, rgba(17, 17, 19, 0.8) 100%);
    border: 1px solid var(--border);
    padding: 5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.pricing-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 3rem 0;
}

.pricing-card li {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

.pricing-card li::before {
    content: '→';
    color: var(--blue);
    margin-right: 1rem;
}

/* --- Transformation Section --- */
.why-it-matters {
    padding: 8rem 0;
    background: linear-gradient(to bottom, rgba(17, 17, 19, 0.5), transparent);
}

/* --- Built For --- */
.built-for {
    padding: 8rem 0;
    background: linear-gradient(to bottom, transparent, var(--card-bg));
}

.built-header {
    text-align: center;
    margin-bottom: 4rem;
}

.built-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.event-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.event-tag {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    transition: var(--transition);
    cursor: default;
}

.event-tag:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--blue);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3), 0 0 15px var(--blue-glow);
}

.tag-icon {
    font-size: 1.25rem;
}

.transformation-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 6rem;
}

@media (max-width: 768px) {
    .transformation-container {
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 2rem;
        gap: 1.5rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        margin-left: -1rem;
        margin-right: -1rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .transformation-side {
        min-width: 85%;
        scroll-snap-align: center;
        max-width: none;
    }
    
    .transformation-arrow {
        display: none;
    }
    
    .transformation-container::after {
        content: 'Swipe to see after →';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        font-size: 0.75rem;
        color: var(--blue);
        opacity: 0.7;
    }
}

.transformation-side {
    flex: 1;
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    position: relative;
    max-width: 450px;
}

.transformation-side.after {
    border-color: var(--blue-glow);
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.1);
}

.status-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    margin-bottom: 1rem;
}

.status-tag.success {
    background: rgba(34, 197, 94, 0.1);
    color: var(--green);
}

.transformation-list {
    list-style: none;
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.transformation-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.transformation-list li .icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    border-radius: 50%;
    flex-shrink: 0;
    color: #ef4444;
}

.transformation-list .icon.check {
    color: var(--green);
}

.transformation-arrow {
    color: var(--border);
    display: flex;
    align-items: center;
}

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

.matters-summary h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.matters-summary p {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

/* --- Final CTA --- */
.final-cta {
    padding: 10rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, rgba(34, 197, 94, 0.03) 50%, transparent 70%);
    z-index: -1;
    animation: ctaGlow 10s infinite ease-in-out;
}

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

.final-cta h2 {
    font-size: 4rem;
    margin-bottom: 2rem;
}

.final-cta p {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

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

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

.footer-brand .logo {
    margin-bottom: 1rem;
}

#footer-logo {
    height: 32px;
    width: auto;
}

.footer-brand .tagline {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.footer-nav h4, .footer-contact h4 {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    color: var(--text-primary);
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-nav a:hover {
    color: var(--blue);
}

.footer-contact p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.product-of {
    opacity: 0.8;
}

.footer-bottom a {
    color: var(--blue);
    text-decoration: none;
}

/* --- Bottom Nav (Mobile) --- */
.bottom-nav-wrapper {
    display: none;
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: calc(100% - 2rem);
    max-width: 500px;
}

.bottom-pill {
    background: rgba(17, 17, 19, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    padding: 0.5rem;
    border-radius: var(--radius-full);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.8), 0 0 20px rgba(0,0,0,0.5);
}

.bottom-item {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.6rem 0.4rem;
    border-radius: var(--radius-full);
    transition: var(--transition);
    text-align: center;
    flex: 1;
    white-space: nowrap;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
}

.bottom-item.active {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 15px var(--blue-glow);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

/* --- Mobile Responsive --- */
@media (max-width: 768px) {
    .top-nav {
        padding: 1rem 0;
    }
    
    .nav-pill-wrapper, .nav-actions {
        display: none;
    }
    
    .hero {
        padding: 8rem 0 4rem;
    }
    
    .cta-group {
        flex-direction: column;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
    }
    
    .solution-features {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .progression-bars {
        flex-direction: column;
        gap: 2rem;
    }
    
    .data-group.bar-charts {
        display: flex;
        justify-content: center;
        align-items: flex-end;
        gap: 0.5rem;
        height: 100px;
    }
    
    .mini-bar {
        width: 20px;
        background: var(--blue);
        border-radius: 4px;
    }
    
    .circle-center {
        display: none;
    }
    
    .impact-point {
        position: relative;
        width: 100%;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
    }
    
    .bottom-nav-wrapper {
        display: block;
    }
    
    .pricing-card {
        padding: 3rem 1.5rem;
    }
    
    main {
        padding-bottom: 6rem;
    }

    .circle-visualization::before, .circle-visualization::after {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, ::before, ::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
