/* ============================================
   PACTO — Landing Page Styles
   Dark mode, green-lime accent, bold geometric
   ============================================ */

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

:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-card: #1a1a1a;
    --bg-elevated: #222222;
    --text-primary: #f5f5f5;
    --text-secondary: #a0a0a0;
    --text-muted: #666666;
    --accent: #b4f461;
    --accent-dark: #8bc34a;
    --accent-glow: rgba(180, 244, 97, 0.15);
    --danger: #ff4d4d;
    --warning: #ffc107;
    --success: #4caf50;
    --border: #2a2a2a;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --max-width: 1120px;
    --max-width-narrow: 720px;
}

html {
    -webkit-font-smoothing: antialiased;
    color-scheme: dark;
}

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

/* Film grain overlay — removes flat CSS-tutorial feel */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px;
}

/* Disable grain on mobile for GPU performance */
@media (max-width: 768px) {
    body::before { display: none; }
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

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

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 10001;
    padding: 12px 24px;
    background: var(--accent);
    color: #0a0a0a;
    font-weight: 700;
    border-radius: var(--radius-sm);
    transition: top 0.2s;
}

.skip-link:focus {
    top: 16px;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.container--narrow {
    max-width: var(--max-width-narrow);
}

/* --- NAVIGATION --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.nav--scrolled {
    border-bottom-color: var(--border);
}

.nav__container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.dot { color: var(--accent); }

.nav__cta {
    font-size: 0.875rem;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    background: var(--accent);
    color: #0a0a0a;
    transition: transform 0.2s, box-shadow 0.2s;
}

.nav__cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px var(--accent-glow);
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font);
    font-weight: 700;
    border: none;
    cursor: pointer;
    border-radius: var(--radius-md);
    transition: all 0.2s;
    text-align: center;
}

.btn--primary {
    background: var(--accent);
    color: #0a0a0a;
}

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

/* Glowing CTA button */
.btn--glow {
    position: relative;
    overflow: hidden;
    animation: btnPulse 3s ease-in-out infinite;
}

.btn--glow::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--accent), #7dd956, var(--accent));
    z-index: -1;
    opacity: 0.5;
    filter: blur(12px);
    animation: glowShift 3s ease-in-out infinite;
}

@keyframes btnPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(180, 244, 97, 0.2); }
    50% { box-shadow: 0 0 40px rgba(180, 244, 97, 0.4); }
}

@keyframes glowShift {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.7; }
}

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

.btn--ghost:hover {
    border-color: var(--text-secondary);
    color: var(--text-primary);
}

.btn--lg {
    font-size: 1rem;
    padding: 16px 32px;
    min-height: 48px;
}

.btn--full {
    width: 100%;
}

/* --- HERO --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 24px 80px;
    position: relative;
    overflow: hidden;
    background: var(--bg-primary);
}

/* Animated gradient mesh — multi-layer depth */
.hero::before {
    content: '';
    position: absolute;
    inset: -20%;
    background:
        radial-gradient(ellipse 40% 50% at 20% 20%, rgba(180, 244, 97, 0.08), transparent 70%),
        radial-gradient(ellipse 50% 40% at 80% 30%, rgba(139, 195, 74, 0.05), transparent 60%),
        radial-gradient(ellipse 60% 30% at 50% 80%, rgba(180, 244, 97, 0.04), transparent 50%);
    animation: meshFloat 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes meshFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(2%, -3%) rotate(1deg); }
    66% { transform: translate(-1%, 2%) rotate(-0.5deg); }
}

.hero__container {
    max-width: var(--max-width);
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 100%;
    text-align: center;
}

.pulse {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 var(--accent-glow); }
    50% { opacity: 0.7; box-shadow: 0 0 0 8px transparent; }
}

.hero__title {
    font-size: clamp(2.25rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.highlight {
    background: linear-gradient(135deg, #b4f461 0%, #7dd956 50%, #b4f461 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 6s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero__cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero__proof {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
}

.hero__proof-divider {
    width: 1px;
    height: 32px;
    background: var(--border);
}

.hero__proof-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--accent);
    text-shadow: 0 0 24px rgba(180, 244, 97, 0.4);
}

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

/* Hero trust badges */
.hero__trust {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero__trust-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
}

.hero__trust-item svg {
    color: var(--accent);
    opacity: 0.7;
}

/* --- SECTIONS --- */
.section {
    padding: 100px 0;
}

.section--dark {
    background: var(--bg-secondary);
}

.section--accent {
    background:
        radial-gradient(ellipse 60% 40% at 50% 50%, rgba(180, 244, 97, 0.08) 0%, transparent 70%),
        var(--bg-primary);
}

.section__header {
    text-align: center;
    margin-bottom: 64px;
}

.section__tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 16px;
}

.section__title {
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.strike {
    text-decoration: line-through;
    text-decoration-color: var(--danger);
    text-decoration-thickness: 3px;
}

.section__callout {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-top: 48px;
    padding: 28px 32px;
    border: 1px solid rgba(180, 244, 97, 0.15);
    border-left: 3px solid var(--accent);
    border-radius: var(--radius-md);
    background: rgba(180, 244, 97, 0.03);
}

/* --- PROBLEM GRID --- */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.problem-card {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: border-color 0.2s;
}

.problem-card:hover {
    border-color: var(--danger);
}

.problem-card__icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.problem-card__content h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.problem-card__content p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* --- STEPS --- */
.steps {
    max-width: 720px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 24px;
    padding: 32px 0;
    border-bottom: 1px solid var(--border);
}

.step:last-child { border-bottom: none; }

.step__number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent);
    flex-shrink: 0;
    width: 64px;
    line-height: 1;
    opacity: 0.6;
    text-shadow: 0 0 20px rgba(180, 244, 97, 0.3);
}

.step__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.step__text {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.step__tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.tag {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 100px;
    white-space: nowrap;
}

.tag--green { background: rgba(180, 244, 97, 0.12); color: var(--accent); }
.tag--blue { background: rgba(59, 130, 246, 0.12); color: #60a5fa; }
.tag--purple { background: rgba(139, 92, 246, 0.12); color: #a78bfa; }
.tag--orange { background: rgba(249, 115, 22, 0.12); color: #fb923c; }

.step__result {
    margin-top: 16px;
}

.result-bar {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.result-bar__segment {
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.8125rem;
    font-weight: 600;
    word-break: break-word;
}

.result-bar__segment--green {
    background: rgba(76, 175, 80, 0.15);
    color: #66bb6a;
    border-left: 3px solid #4caf50;
}

.result-bar__segment--yellow {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
    border-left: 3px solid #ffc107;
}

.result-bar__segment--red {
    background: rgba(255, 77, 77, 0.1);
    color: #ff6b6b;
    border-left: 3px solid #ff4d4d;
}

/* --- WHY GRID --- */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.why-card {
    padding: 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: border-color 0.3s, transform 0.2s;
}

.why-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.why-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.why-card__emoji {
    font-size: 1.5rem;
}

.why-card__header h3 {
    font-size: 1.0625rem;
    font-weight: 700;
}

.why-card p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* --- COMPARE TABLE --- */
.compare-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.compare-table th {
    text-align: left;
    padding: 14px 20px;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    border-bottom: 2px solid var(--border);
}

.compare-table td {
    padding: 16px 20px;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
}

.td--green {
    color: var(--accent) !important;
    font-weight: 600;
}

/* Mobile: convert table to cards */
@media (max-width: 768px) {
    .compare-table-wrapper {
        overflow-x: visible;
    }

    .compare-table {
        min-width: 0;
    }

    .compare-table thead {
        display: none;
    }

    .compare-table tbody tr {
        display: flex;
        flex-direction: column;
        background: var(--bg-card);
        border: 1px solid var(--border);
        border-radius: var(--radius-md);
        padding: 16px;
        margin-bottom: 12px;
    }

    .compare-table td {
        display: block;
        padding: 6px 0;
        border-bottom: none;
        font-size: 0.875rem;
    }

    .compare-table td:first-child {
        font-weight: 800;
        font-size: 1rem;
        color: var(--text-primary);
        margin-bottom: 4px;
    }

    .compare-table td:nth-child(2)::before {
        content: 'Problema: ';
        font-weight: 600;
        color: var(--text-muted);
    }

    .compare-table td:nth-child(3)::before {
        content: 'PACTO: ';
        font-weight: 600;
        color: var(--text-muted);
    }
}

/* --- ROUTES --- */
.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.route-card {
    position: relative;
    padding: 32px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: border-color 0.3s, transform 0.2s;
}

.route-card:hover {
    transform: translateY(-4px);
}

.route-card--featured {
    border-color: rgba(180, 244, 97, 0.3);
    background: rgba(180, 244, 97, 0.04);
    backdrop-filter: blur(12px);
    box-shadow:
        0 0 40px rgba(180, 244, 97, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.route-card--featured:hover {
    transform: translateY(-6px);
}

.route-card__badge {
    position: absolute;
    top: -10px;
    left: 24px;
    padding: 4px 14px;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: var(--accent);
    color: #0a0a0a;
    border-radius: 100px;
}

.route-card__icon-wrap {
    margin-bottom: 16px;
    opacity: 0.9;
}

.route-card__title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.route-card__desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 16px;
}

.route-card__list li {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    padding: 4px 0;
    padding-left: 18px;
    position: relative;
}

.route-card__list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.route-card__coming {
    display: inline-block;
    padding: 6px 16px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    border: 1px dashed var(--border);
    border-radius: 100px;
}

/* --- TIMELINE STORY --- */
.timeline-story {
    max-width: 640px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
}

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

.timeline-item__day {
    flex-shrink: 0;
    width: 72px;
    font-size: 0.875rem;
    font-weight: 800;
    color: var(--accent);
    opacity: 0.7;
}

.timeline-item__content p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.timeline-item--highlight {
    background: var(--accent-glow);
    margin: 0 -16px;
    padding: 24px 16px;
    border-radius: var(--radius-md);
    border-bottom: none;
    overflow: hidden;
}

.timeline-item--highlight .timeline-item__day {
    opacity: 1;
}

.timeline-item--highlight p {
    color: var(--text-primary);
}

/* --- WAITLIST --- */
.waitlist-box {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid transparent;
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 0 60px rgba(180, 244, 97, 0.06);
    background-image: linear-gradient(rgba(26, 26, 26, 0.6), rgba(26, 26, 26, 0.6)),
                      linear-gradient(135deg, rgba(180, 244, 97, 0.2), rgba(180, 244, 97, 0.05), rgba(180, 244, 97, 0.2));
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.waitlist-box__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.waitlist-box__subtitle {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.waitlist-form__row {
    display: flex;
    gap: 12px;
}

.input {
    flex: 1;
    padding: 14px 18px;
    font-family: var(--font);
    font-size: 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    outline: none;
    transition: border-color 0.2s;
    -webkit-appearance: none;
    min-height: 48px;
}

.input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(180, 244, 97, 0.1);
}

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

select.input {
    cursor: pointer;
}

select.input option {
    background: var(--bg-card);
    color: var(--text-primary);
}

.waitlist-form__note {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.waitlist-success {
    padding: 40px 0;
    text-align: center;
    animation: successPop 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes successPop {
    from { opacity: 0; transform: scale(0.9) translateY(16px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.waitlist-success__icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.waitlist-success h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.waitlist-success p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.social-link {
    padding: 10px 24px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: all 0.2s;
}

.social-link:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* --- FAQ --- */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color 0.2s;
}

.faq-item[open] {
    border-color: var(--accent);
}

.faq-item__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    user-select: none;
    list-style: none;
}

.faq-item__question::-webkit-details-marker { display: none; }

.faq-item__question::after {
    content: '+';
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--text-muted);
    transition: transform 0.2s;
}

.faq-item[open] .faq-item__question::after {
    content: '−';
    color: var(--accent);
}

.faq-item__answer {
    padding: 0 24px 20px;
}

.faq-item__answer p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* --- FOOTER --- */
.footer {
    padding: 48px 0 32px;
    padding-bottom: calc(32px + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid var(--border);
}

@media (max-width: 768px) {
    .footer {
        padding-bottom: calc(80px + env(safe-area-inset-bottom, 0px));
    }
}

.footer__content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
}

.footer__logo {
    font-size: 1.25rem;
    font-weight: 900;
}

.footer__tagline {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 8px;
    line-height: 1.5;
}

.footer__links {
    display: flex;
    gap: 24px;
}

.footer__links a {
    font-size: 0.875rem;
    color: var(--text-secondary);
    transition: color 0.2s;
}

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

.footer__bottom {
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.footer__bottom p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .hero {
        padding: 100px 20px 60px;
    }

    .hero__proof {
        flex-direction: column;
        gap: 16px;
    }

    .hero__proof-divider {
        width: 48px;
        height: 1px;
    }

    .hero__trust {
        gap: 12px;
    }

    .hero__trust-item {
        font-size: 0.6875rem;
    }

    .step {
        flex-direction: column;
        gap: 12px;
    }

    .step__number {
        width: auto;
    }

    .waitlist-form__row {
        flex-direction: column;
    }

    .footer__content {
        flex-direction: column;
        gap: 24px;
    }

    .footer__links {
        flex-direction: column;
        gap: 12px;
    }

    .timeline-item {
        flex-direction: column;
        gap: 8px;
    }

    .timeline-item__day {
        width: auto;
    }

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

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

    .section {
        padding: 64px 0;
    }

    .waitlist-box {
        padding: 32px 20px;
    }

    .waitlist-trust {
        gap: 12px;
    }

    /* Reduce hero mesh on mobile for GPU */
    .hero::before {
        inset: 0;
        animation: none;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 2rem;
    }

    .hero__cta-group {
        flex-direction: column;
        align-items: stretch;
    }

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

    .hero__badge {
        font-size: 0.75rem;
        padding: 6px 14px;
        gap: 6px;
    }

    .hero__trust {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }

    .result-bar__segment {
        font-size: 0.75rem;
        padding: 8px 12px;
    }

    .timeline-item--highlight {
        margin: 0 -8px;
        padding: 20px 8px;
    }

    .section__callout {
        padding: 20px 16px;
        font-size: 1rem;
    }
}

/* --- SCROLL REVEAL (spring easing) --- */
.reveal {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
    transition:
        opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal--visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Alternate direction for visual rhythm */
.why-card:nth-child(even).reveal {
    transform: translateY(24px) scale(0.98) rotate(-0.5deg);
}
.why-card:nth-child(even).reveal--visible {
    transform: translateY(0) scale(1) rotate(0deg);
}

/* --- CUSTOM CURSOR --- */
.custom-cursor {
    position: fixed;
    top: -10px;
    left: -10px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1.5px solid var(--accent);
    pointer-events: none;
    z-index: 10000;
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                height 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                top 0.15s,
                left 0.15s,
                border-color 0.3s,
                background 0.3s;
    mix-blend-mode: difference;
    will-change: transform;
}

.cursor--hover {
    width: 48px;
    height: 48px;
    top: -24px;
    left: -24px;
    background: rgba(180, 244, 97, 0.08);
}

@media (pointer: coarse) {
    .custom-cursor { display: none; }
}

/* --- ICON CONTAINERS --- */
.icon-box {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: rgba(180, 244, 97, 0.08);
    color: var(--accent);
    flex-shrink: 0;
}

.icon-box svg {
    width: 20px;
    height: 20px;
}

.why-card__icon-box {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: rgba(180, 244, 97, 0.08);
    color: var(--accent);
    flex-shrink: 0;
    transition: background 0.3s, box-shadow 0.3s;
}

.why-card:hover .why-card__icon-box {
    background: rgba(180, 244, 97, 0.15);
    box-shadow: 0 0 20px rgba(180, 244, 97, 0.1);
}

.why-card__icon-box svg {
    width: 22px;
    height: 22px;
}

/* 3D card tilt — driven by JS */
.why-card,
.route-card,
.problem-card {
    will-change: transform;
}

/* --- SECTION DIVIDER ACCENT --- */
.section__tag::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 2px;
    background: var(--accent);
    margin-right: 8px;
    vertical-align: middle;
    border-radius: 1px;
}

/* --- TIMELINE CONNECTOR --- */
.timeline-story--connected {
    position: relative;
}

.timeline-story--connected::before {
    content: '';
    position: absolute;
    left: 35px;
    top: 32px;
    bottom: 32px;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent), rgba(180, 244, 97, 0.1));
    border-radius: 1px;
}

@media (max-width: 768px) {
    .timeline-story--connected::before {
        display: none;
    }
}

/* --- COMPARISON TABLE ICONS --- */
.td-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 0.6875rem;
    font-weight: 700;
    margin-right: 8px;
    vertical-align: middle;
}

.td-icon--red {
    background: rgba(255, 77, 77, 0.15);
    color: var(--danger);
}

.td-icon--green {
    background: rgba(180, 244, 97, 0.15);
    color: var(--accent);
}

/* --- WAITLIST TRUST --- */
.waitlist-trust {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 12px;
    font-size: 0.6875rem;
    color: var(--text-muted);
}

/* --- FLOATING CTA --- */
.floating-cta {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.floating-cta--visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.floating-cta .btn {
    padding: 14px 28px;
    font-size: 0.9375rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 20px var(--accent-glow);
    border-radius: 100px;
}

@media (max-width: 480px) {
    .floating-cta {
        bottom: 16px;
        left: 16px;
        right: 16px;
        transform: translateX(0) translateY(100px);
    }

    .floating-cta--visible {
        transform: translateX(0) translateY(0);
    }

    .floating-cta .btn {
        width: 100%;
    }
}

/* --- GRADIENT CARD BORDERS ON HOVER --- */
.why-card:hover,
.route-card:hover {
    border-color: transparent;
    background-image: linear-gradient(var(--bg-card), var(--bg-card)),
                      linear-gradient(135deg, rgba(180, 244, 97, 0.4), rgba(125, 217, 86, 0.1));
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

/* --- SECTION GRADIENT TRANSITIONS --- */
.section--dark + .section:not(.section--dark):not(.section--accent) {
    background: linear-gradient(to bottom, var(--bg-secondary) 0%, var(--bg-primary) 80px);
}

/* --- ENHANCED ROUTE CARD FEATURED --- */
.route-card--featured {
    border-color: transparent;
    background-image: linear-gradient(rgba(180, 244, 97, 0.04), rgba(26, 26, 26, 0.6)),
                      linear-gradient(135deg, rgba(180, 244, 97, 0.3), rgba(125, 217, 86, 0.08), rgba(180, 244, 97, 0.3));
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

/* --- FAQ SMOOTH TRANSITION --- */
.faq-item__answer {
    animation: fadeSlide 0.3s ease;
}

@keyframes fadeSlide {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- SECTION HEADER UNDERLINE --- */
.section__title .highlight::after {
    content: '';
    display: block;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), transparent);
    border-radius: 2px;
    margin-top: 4px;
}
