:root {
    --bg-color: #050505;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --accent-blue: #3b82f6;
    --accent-glow: rgba(59, 130, 246, 0.25);
    --card-bg: rgba(255, 255, 255, 0.02);
    --card-border: rgba(255, 255, 255, 0.05);

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 8rem;
    --space-xxl: 12rem;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    background-attachment: fixed;
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    margin-bottom: var(--space-md);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: var(--space-md);
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

p {
    color: var(--text-muted);
    font-size: 1.125rem;
}

.gradient-text {
    background: linear-gradient(135deg, #60a5fa, #3b82f6, #818cf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.waypoint-glow {
    background: linear-gradient(135deg, #60a5fa, #3b82f6, #818cf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    position: relative;
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.4),
        0 0 40px rgba(59, 130, 246, 0.2);
    animation: dramaticPulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    will-change: opacity, text-shadow;
}

@keyframes dramaticPulse {

    0%,
    100% {
        text-shadow: 0 0 20px rgba(59, 130, 246, 0.4),
            0 0 40px rgba(59, 130, 246, 0.2);
        transform: scale(1);
    }

    50% {
        text-shadow: 0 0 30px rgba(59, 130, 246, 0.8),
            0 0 60px rgba(59, 130, 246, 0.5),
            0 0 90px rgba(59, 130, 246, 0.3);
        transform: scale(1.02);
    }
}

/* Background Glow */
.glow-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-glow) 0%, rgba(5, 5, 5, 0) 70%);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
    filter: blur(80px);
}

.glow-orb.top-left {
    top: -200px;
    left: -200px;
}

.glow-orb.bottom-right {
    bottom: -200px;
    right: -200px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: rgba(5, 5, 5, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--card-border);
    z-index: 100;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
    color: var(--text-main);
}

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

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-main);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.btn-primary {
    background-color: var(--text-main);
    color: var(--bg-color);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.15);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-main);
    border: 1px solid var(--card-border);
}

.btn-secondary:hover {
    background-color: var(--card-bg);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-main);
    border: 1px solid var(--card-border);
    width: 100%;
}

.btn-outline:hover {
    background-color: var(--card-bg);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-outline.glow,
.btn-secondary.glow {
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.btn-outline.glow:hover,
.btn-secondary.glow:hover {
    background-color: rgba(59, 130, 246, 0.1);
    border-color: var(--accent-blue);
    color: var(--accent-blue);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3),
        inset 0 0 10px rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

.pricing-card:hover .btn-outline {
    background-color: var(--text-main);
    color: var(--bg-color);
    border-color: var(--text-main);
}

.pricing-card:hover .btn-outline:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.15);
}

/* Badges */
.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(59, 130, 246, 0.1);
    color: var(--accent-blue);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: var(--space-md);
}

/* Layout Padding */
section {
    padding: var(--space-xl) 5%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: var(--space-xxl);
    position: relative;
    overflow: hidden;
}

/* ========================================
   LOADING SCREEN
   ======================================== */
.loader {
    position: fixed;
    inset: 0;
    background: #050505;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.loader.hidden {
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

/* SVG Score Path */
.score-path-svg {
    width: min(400px, 85vw);
    height: auto;
    filter: drop-shadow(0 0 12px rgba(96, 165, 250, 0.4));
    will-change: filter;
}

.score-line {
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    animation: drawPath 1.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}

@keyframes drawPath {
    to {
        stroke-dashoffset: 0;
    }
}

.score-dot {
    opacity: 0;
    animation: dotAppear 0.4s ease 0.3s forwards,
        moveDot 1.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards,
        dotFadeOut 0.25s ease 2.1s forwards;
    filter: drop-shadow(0 0 6px rgba(96, 165, 250, 0.9));
}

@keyframes dotAppear {
    to {
        opacity: 1;
    }
}

@keyframes dotFadeOut {
    to {
        opacity: 0;
    }
}

/* We animate the dot along the path using CSS offset-path */
.score-dot {
    offset-path: path("M 20,170 L 80,150 L 130,140 L 170,115 L 210,90 L 250,65 L 300,40 L 360,20");
    offset-distance: 0%;
    cx: unset;
    cy: unset;
}

@keyframes moveDot {
    to {
        offset-distance: 100%;
    }
}

/* Loader label */
.loader-label {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    opacity: 0;
    animation: fadeInLabel 0.6s ease 0.8s forwards;
}

@keyframes fadeInLabel {
    to {
        opacity: 1;
    }
}

/* Animated dots */
.loader-dots span {
    animation: dotBlink 1.2s infinite;
    opacity: 0;
}

.loader-dots span:nth-child(1) {
    animation-delay: 0s;
}

.loader-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.loader-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes dotBlink {

    0%,
    80%,
    100% {
        opacity: 0;
    }

    40% {
        opacity: 1;
    }
}

/* Bottom progress bar */
.loader-bar-container {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.05);
}

.loader-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-blue), #60a5fa);
    box-shadow: 0 0 10px rgba(96, 165, 250, 0.8);
    animation: progressBar 2s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
    width: 0%;
}

@keyframes progressBar {
    0% {
        width: 0%;
    }

    70% {
        width: 80%;
    }

    100% {
        width: 100%;
    }
}

/* Milestone dots & labels */
.milestone-dot,
.milestone-label {
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Stagger each milestone to appear as the line reaches it */
/* 900 - appears immediately at start (0.3s) */
.ms-900,
.ms-label-900 {
    animation: milestoneAppear 0.35s ease 0.3s forwards;
}

/* 1100 - line reaches here at ~35% of 1.8s = 0.63s after start = 0.93s total */
.ms-1100,
.ms-label-1100 {
    animation: milestoneAppear 0.35s ease 0.95s forwards;
}

/* 1250 - at ~55% of path = ~0.99s after start = 1.29s total */
.ms-1250,
.ms-label-1250 {
    animation: milestoneAppear 0.35s ease 1.35s forwards;
}

/* 1400 - at ~77% of path = ~1.4s after start = 1.7s total */
.ms-1400,
.ms-label-1400 {
    animation: milestoneAppear 0.35s ease 1.75s forwards;
}

/* 1600 - at end = 1.8s after start = 2.1s total — peak moment */
.ms-1600,
.ms-label-1600 {
    animation: milestoneAppear 0.35s ease 2.15s forwards;
}

@keyframes milestoneAppear {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }

    70% {
        opacity: 1;
        transform: scale(1.2);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes peak1600Appear {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }

    60% {
        opacity: 1;
        transform: scale(1.5);
    }

    80% {
        opacity: 1;
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes peakPulse {

    0%,
    100% {
        opacity: 0.7;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.15);
    }
}

/* Milestone dot styling */
.milestone-dot {
    fill: rgba(96, 165, 250, 0.3);
    stroke: #60a5fa;
    stroke-width: 1.5;
    filter: drop-shadow(0 0 4px rgba(96, 165, 250, 0.6));
}

/* Special glow for the peak 1600 */
.ms-1600 {
    fill: rgba(191, 219, 254, 0.9);
    stroke: #dbeafe;
    stroke-width: 2.5;
    animation: peak1600Appear 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) 2.15s forwards !important;
}

/* Halo glow circle — smooth radial, no CSS filter needed */
.ms-1600-halo {
    opacity: 0;
    animation: peak1600Appear 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) 2.15s forwards,
        peakPulse 1.6s ease-in-out 2.65s infinite !important;
    transform-origin: 360px 20px;
}

.ms-label-1600 {
    animation: peak1600Appear 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) 2.15s forwards !important;
}

/* Milestone label text */
.milestone-label {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    fill: rgba(96, 165, 250, 0.85);
    letter-spacing: 0.03em;
}

/* 1600 gets extra emphasis */
.peak-label {
    font-size: 18px;
    font-weight: 800;
    fill: #dbeafe;
}

.cursor-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, rgba(255, 255, 255, 0.03) 30%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.5s ease;
    mix-blend-mode: screen;
}

body:hover .cursor-glow {
    opacity: 1;
}

.hero .headline {
    position: relative;
    z-index: 2;
}

.hero .subheadline {
    position: relative;
    z-index: 2;
    font-size: clamp(0.8rem, 3.5vw, 1.5rem);
    white-space: nowrap;
    margin: 0 auto var(--space-lg);
}

.hero .cta-group {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* ========================================
   SCORE MARQUEE
   ======================================== */
.score-marquee-container {
    width: 100%;
    /* Subtle dark blue glassy background */
    background: rgba(59, 130, 246, 0.03);
    border-top: 1px solid rgba(59, 130, 246, 0.1);
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    padding: 1.5rem 0;
    overflow: hidden;
    position: relative;
    z-index: 10;
    display: flex;
}

/* Optional glow on the edges for a fade effect */
.score-marquee-container::before,
.score-marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 2;
    pointer-events: none;
}

.score-marquee-container::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-color), transparent);
}

.score-marquee-container::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-color), transparent);
}

.score-marquee {
    display: flex;
    white-space: nowrap;
    width: max-content;
    animation: marqueeScroll 35s linear infinite;
    will-change: transform;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding-right: 3rem;
    /* match gap for seamless loop */
}

.marquee-content span {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-main);
    letter-spacing: 0.03em;
}

.marquee-content span.divider {
    color: var(--accent-blue);
    opacity: 0.6;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ========================================
   GROWTH NARRATIVE SEQUENCE
   ======================================== */
.growth-narrative-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10rem 5% 15rem;
    gap: 15vh;
}

.growth-narrative-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    width: 100%;
    max-width: 1200px;
    align-items: center;
    text-align: left;
}

@media (max-width: 900px) {
    .growth-narrative-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 6rem;
    }
}

/* The individual blocks inside the narrative */
.score-start-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    /* Pushes content down to align with the list on the right */
    height: 100%;
    width: 100%;
    gap: 1.5rem;
}

.system-problem-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: -4rem;
    /* Pull section up to reduce gap */
    gap: 1.5rem;
}

.score-start-number {
    font-family: var(--font-body);
    font-size: clamp(3rem, 10vw, 7.5rem);
    /* Scaled down to ensure single line horizontally */
    white-space: nowrap;
    /* Prevent wrapping entirely */
    font-weight: 800;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(96, 165, 250, 0.5);
    letter-spacing: -0.04em;
    text-shadow:
        0 0 60px rgba(96, 165, 250, 0.25),
        0 0 120px rgba(59, 130, 246, 0.15);
    transition: text-shadow 1s ease, filter 1s ease;
}

/* Tension state added by JS */
body.tension-active .score-start-number {
    text-shadow:
        0 0 20px rgba(96, 165, 250, 0.1),
        0 0 40px rgba(59, 130, 246, 0.05);
    filter: brightness(0.6);
}

body.tension-active {
    background-position: 10px 10px;
    /* Slight grid shift */
    transition: background-position 2s ease;
}

body {
    transition: background-position 0.2s ease;
}

.plateau-text-block {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.score-start-caption {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-muted);
    font-weight: 400;
    letter-spacing: 0.02em;
    max-width: 420px;
    margin: 0;
}

.score-start-caption.highlight {
    color: var(--text-main);
    font-weight: 500;
}

.stagger-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2rem;
    width: 100%;
}

.stagger-item {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--text-muted);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.problem-headline {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.problem-headline .block {
    display: block;
    color: var(--text-muted);
}

.problem-headline .highlight-blue {
    color: var(--text-main);
    text-shadow: 0 0 40px rgba(59, 130, 246, 0.4);
    margin-top: 0.5rem;
}

/* ========================================
   900→1600 GROWTH PATH SECTION
   ======================================== */
.growth-path-section {
    padding: 6rem 5% 8rem;
    display: flex;
    justify-content: center;
}

.growth-path-inner {
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
}

.growth-milestones {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 0;
}

.gm-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: default;
}

.gm-item:hover {
    transform: translateY(-8px);
}

.gm-score {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 2.5vw, 1.8rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    transition: color 0.4s ease, text-shadow 0.4s ease;
}

/* Visual Climb: Step 1 (Dim, low glow) */
.gm-step-1 {
    color: rgba(96, 165, 250, 0.25);
    text-shadow: 0 0 10px rgba(96, 165, 250, 0.1);
}

/* Visual Climb: Step 2 (Slightly brighter) */
.gm-step-2 {
    color: rgba(96, 165, 250, 0.5);
    text-shadow: 0 0 20px rgba(96, 165, 250, 0.2);
}

/* Visual Climb: Step 3 (Stronger) */
.gm-step-3 {
    color: rgba(96, 165, 250, 0.75);
    text-shadow: 0 0 30px rgba(96, 165, 250, 0.4);
}

.gm-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.25);
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
}

.gm-connector {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 0.5rem;
    margin-bottom: 1.4rem;
    /* align with score text center */
}

.gm-line {
    width: 0%;
    /* Start at 0 for animation */
    height: 1px;
    background: linear-gradient(90deg,
            rgba(96, 165, 250, 0.25),
            rgba(96, 165, 250, 0.5),
            rgba(96, 165, 250, 0.25));
    position: relative;
    transition: width 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

/* When the connector is revealed, stretch the line to 100% */
.gm-connector.is-revealed .gm-line {
    width: 100%;
}

.gm-line::after {
    content: '';
    position: absolute;
    right: -4px;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    border-top: 1px solid rgba(96, 165, 250, 0.4);
    border-right: 1px solid rgba(96, 165, 250, 0.4);
    transform: rotate(45deg) translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s ease 0.6s;
    /* Fade in arrow head after line expands */
}

.gm-connector.is-revealed .gm-line::after {
    opacity: 1;
}

/* Peak 1600 milestone gets special treatment - Brightest object */
.gm-peak .gm-score {
    font-size: clamp(1.5rem, 4vw, 2.8rem);
    color: #ffffff;
    text-shadow:
        0 0 40px rgba(96, 165, 250, 0.8),
        0 0 80px rgba(59, 130, 246, 0.6),
        0 0 120px rgba(255, 255, 255, 0.2);
}

.gm-peak .gm-label {
    color: rgba(147, 197, 253, 0.6);
}

/* The quote line */
.growth-path-quote {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 500;
    color: var(--text-muted);
    text-align: center;
    max-width: 900px;
    margin: 0;
    white-space: nowrap;
    line-height: 1.6;
    font-style: italic;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 3rem;
}

/* Minimalist List for Problems */
.minimal-list {
    max-width: 900px;
    margin: 4rem auto 0;
    text-align: left;
}

.minimal-item {
    display: flex;
    gap: 3rem;
    padding: 3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.minimal-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.hover-lift-subtle:hover {
    transform: translateX(10px);
    border-bottom-color: rgba(59, 130, 246, 0.3);
}

.minimal-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-blue);
    opacity: 0.8;
    line-height: 1;
}

.minimal-content h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.minimal-content p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-muted);
}

/* Why Us / Why Waypoint */
.why-us {
    text-align: center;
    padding-top: var(--space-xxl);
    padding-bottom: var(--space-xl);
}

.why-us h2 {
    max-width: 800px;
    margin: 0 auto;
}

.section-subline {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin: 1rem auto 4rem;
    max-width: 800px;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin: 0 auto;
    max-width: 1100px;
    text-align: left;
}

.pillar-card {
    background: transparent;
    padding: 1.5rem;
    position: relative;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.pillar-card.is-revealed {
    opacity: 1;
    transform: translateX(0);
}

.pillar-card.stagger-1 {
    transition-delay: 0.1s;
}

.pillar-card.stagger-2 {
    transition-delay: 0.3s;
}

.pillar-card.stagger-3 {
    transition-delay: 0.5s;
}

.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.1);
    color: var(--accent-blue);
    margin-bottom: 1.5rem;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.pillar-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-main);
}

.micro-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
}

.closing-line {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-main);
    text-align: center;
    margin-top: 5rem;
    font-style: italic;
    opacity: 0.9;
}

.system {
    text-align: center;
}

.system-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: var(--space-lg);
    text-align: left;
}

.system-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 3rem 2rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.system-card.featured {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 3rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    border-color: rgba(59, 130, 246, 0.2);
}

.system-card.featured .card-content {
    flex: 1;
}

.system-card.featured .card-icon {
    font-size: 6rem;
    color: var(--accent-glow);
    margin: 0;
    line-height: 1;
}

.card-icon {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-glow);
    margin-bottom: 2rem;
    transition: color 0.4s ease;
}

.card:hover .card-icon {
    color: var(--accent-blue);
}

.hover-lift {
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.4s ease;
}

.hover-lift:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px -15px rgba(59, 130, 246, 0.3),
        0 0 20px rgba(59, 130, 246, 0.1) inset;
    border-color: rgba(59, 130, 246, 0.5);
    z-index: 10;
}

/* Results */
.results-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.result-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-box {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-box:first-child {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(59, 130, 246, 0.02) 100%);
    border-color: rgba(59, 130, 246, 0.4);
    padding: 4rem 2rem;
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.15);
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(59, 130, 246, 0.2);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 0.75rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.stat-box:first-child .stat-number {
    font-size: 5.5rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    margin-bottom: 1rem;
}

.stat-label {
    color: var(--accent-blue);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 1.125rem;
}

/* Testimonials Carousel */
.testimonials {
    text-align: center;
    padding-top: var(--space-xxl);
    padding-bottom: var(--space-xl);
}

.testimonials h2 {
    margin-bottom: var(--space-lg);
}

.carousel-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 0 4rem;
}

.carousel-track {
    display: grid;
    align-items: center;
    position: relative;
    min-height: 250px;
}

.testimonial-slide {
    grid-area: 1 / 1;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(40px) scale(0.98);
    filter: blur(8px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1),
        transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1),
        filter 0.8s cubic-bezier(0.2, 0.8, 0.2, 1),
        visibility 0.8s;
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0) scale(1);
    filter: blur(0);
    z-index: 2;
}

.quote-icon {
    font-family: var(--font-heading);
    font-size: 5rem;
    color: rgba(59, 130, 246, 0.2);
    line-height: 1;
    margin-bottom: -2rem;
    text-align: left;
}

.quote-text {
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--text-main);
    font-weight: 500;
    margin-bottom: 2rem;
    text-align: left;
}

.quote-author {
    font-size: 1.125rem;
    color: var(--accent-blue);
    font-weight: 600;
    text-align: left;
}

.score-increase {
    color: var(--text-muted);
    font-weight: 400;
    font-size: 1rem;
    margin-left: 0.5rem;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.carousel-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-main);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.5);
    color: var(--accent-blue);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.2);
}

.carousel-indicators {
    display: flex;
    gap: 0.75rem;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--accent-blue);
    width: 24px;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

/* Pricing Grid */
.pricing {
    text-align: center;
}

.pricing .section-desc {
    margin-bottom: var(--space-lg);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1400px;
    margin: 0 auto;
    gap: 1.5rem;
    align-items: stretch;
}

.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card.popular {
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-color: rgba(59, 130, 246, 0.3);
    transform: scale(1.02);
}

.pricing-card.popular.hover-lift:hover {
    transform: translateY(-15px) scale(1.04);
}

.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
    white-space: nowrap;
}

/* Steps to Success Section */
.steps-section {
    padding-top: var(--space-xxl);
    padding-bottom: var(--space-xl);
    text-align: center;
}

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

.steps-header h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 5rem;
    font-family: var(--font-heading);
    color: var(--text-main);
    background: linear-gradient(135deg, #ffffff, #a1a1aa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.trail-map {
    position: relative;
    max-width: 650px;
    margin: 0 auto 5rem;
    text-align: left;
}

.trail-line {
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent-blue), rgba(59, 130, 246, 0.05));
    border-radius: 2px;
    z-index: 0;
}

.trail-node {
    position: relative;
    padding-left: 70px;
    padding-bottom: 5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 1;
}

.trail-node:last-child {
    padding-bottom: 0;
}

.node-number {
    position: absolute;
    left: 0;
    top: -4px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--bg-color);
    border: 2px solid var(--accent-blue);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4), inset 0 0 10px rgba(59, 130, 246, 0.2);
    z-index: 2;
}

.trail-node.is-revealed {
    opacity: 1;
    transform: translateY(0);
}

.node-content {
    padding-top: 0;
}

.step-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.step-desc {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.steps-cta {
    margin-top: 4rem;
}

.package-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.package-ideal {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.package-features {
    list-style: none;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.package-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-main);
    font-size: 0.95rem;
}

.package-features li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-blue);
    font-weight: bold;
}

/* FAQ Section */
.faq {
    padding-top: var(--space-xxl);
    padding-bottom: var(--space-xl);
    text-align: center;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.faq-header {
    text-align: center;
    margin-bottom: var(--space-md);
}

.faq-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--accent-blue);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--accent-blue);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
    padding: 0 2rem 1.75rem;
    margin: 0;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Contact Section */
.contact {
    padding-top: var(--space-xxl);
    padding-bottom: var(--space-xl);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-grid {
    display: flex;
    justify-content: center;
}

.contact-form-wrapper {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    overflow: visible;
    max-width: 700px;
    width: 100%;
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-main);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-glass-panel {
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3), inset 0 0 20px rgba(59, 130, 246, 0.05);
    border-radius: 24px;
    padding: 2.5rem;
    max-width: 100%;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.contact-glass-panel:hover {
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.4), inset 0 0 25px rgba(59, 130, 246, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 0;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-main);
}

.form-group .required {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-left: 0.25rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 0.875rem 1rem;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    background: rgba(59, 130, 246, 0.05);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.contact-form .btn {
    margin-top: 1rem;
    width: 100%;
}

@media (max-width: 900px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Final CTA */
.final-cta {
    position: relative;
    text-align: center;
    padding: var(--space-xxl) 5%;
    margin-bottom: var(--space-xl);
}

.final-cta .inner-glow {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    opacity: 0.5;
}

.cta-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 32px;
    padding: 5rem 2rem;
}

.cta-content h2 {
    margin-bottom: 1rem;
}

.cta-content p {
    margin-bottom: 2.5rem;
}

.large-btn {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

/* Footer */
footer {
    border-top: 1px solid var(--card-border);
    padding: 4rem 5%;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-brand,
.footer-metrics,
.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-width: 200px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2rem;
    letter-spacing: -0.02em;
    color: var(--text-main);
}

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

.footer-brand .footer-legal {
    margin-top: 1rem;
}

.footer-col-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-main);
    margin-bottom: 0.25rem;
}

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

.footer-social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 1rem;
    font-family: var(--font-body);
    text-decoration: none;
    opacity: 0.6;
    margin-top: 0.25rem;
    transition: opacity 0.2s ease, color 0.2s ease;
}

.footer-social-link:hover {
    opacity: 0.9;
    color: var(--text-main);
}

.social-icon {
    width: 16px;
    height: 16px;
    opacity: 0.8;
}

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

/* Animations */
.animate-fade-in {
    animation: fadeInDown 1s ease-out forwards;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.target-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
    will-change: opacity, transform;
}

.target-reveal.is-revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Responsiveness */
@media (max-width: 900px) {
    .results-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .cta-group {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        display: none;
        /* simple mobile hide for now */
    }

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

    .trail-map {
        padding-left: 1rem;
    }

    .trail-line {
        left: 1rem;
    }

    .trail-node {
        gap: 1.5rem;
    }

    .node-point {
        width: 14px;
        height: 14px;
        left: -6px;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .system-features-grid {
        grid-template-columns: 1fr;
    }

    .minimal-item {
        flex-direction: column;
        gap: 1rem;
        padding: 2rem 0;
    }

    .system-card.featured {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .faq-list {
        grid-template-columns: 1fr;
    }

    .growth-milestones {
        flex-direction: column;
        gap: 0.5rem;
    }

    .gm-connector {
        padding: 0;
        margin-bottom: 0;
        height: 40px;
        width: 2px;
        flex-direction: column;
        justify-content: center;
    }

    .gm-line {
        width: 2px !important;
        height: 0%;
        background: linear-gradient(180deg,
                rgba(96, 165, 250, 0.25),
                rgba(96, 165, 250, 0.5),
                rgba(96, 165, 250, 0.25));
    }

    .gm-connector.is-revealed .gm-line {
        height: 100%;
        width: 2px !important;
    }

    .gm-line::after {
        display: none;
    }
}

@media (max-width: 600px) {
    .footer-content {
        flex-direction: column;
        gap: 2.5rem;
        text-align: center;
    }

    .footer-brand,
    .footer-metrics,
    .footer-contact-info {
        align-items: center;
    }
}