/* ============================================
   LINKFORGE — WAITLIST LANDING PAGE
   Dark command-center aesthetic
   ============================================ */

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

:root {
    /* Surfaces — light mode */
    --bg-deep: #ffffff;
    --bg-base: #f8f9fb;
    --bg-raised: #f0f2f5;
    --bg-card: #ffffff;
    --bg-card-hover: #f5f7fa;
    --border: #e0e4ea;
    --border-light: #d0d5dd;

    /* Accent — logo blue (stronger for light bg) */
    --accent: #0070e0;
    --accent-dim: #005bc0;
    --accent-glow: rgba(0, 112, 224, 0.08);
    --accent-glow-strong: rgba(0, 112, 224, 0.15);
    --accent-bright: #1a8cff;

    /* Secondary accent — silver/chrome from logo */
    --blue: #7cb8ff;
    --blue-dim: rgba(124, 184, 255, 0.1);

    /* Danger */
    --red: #f43f5e;
    --red-dim: rgba(244, 63, 94, 0.12);
    --yellow: #fbbf24;
    --yellow-dim: rgba(251, 191, 36, 0.12);

    /* Text — dark on light */
    --text-1: #111827;
    --text-2: #4b5563;
    --text-3: #9ca3af;

    /* Typography */
    --font-display: 'Inter', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    /* Spacing */
    --section-pad: clamp(4rem, 8vw, 7.5rem);
    --container-max: 1120px;
}

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

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

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 2rem);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
input { font: inherit; color: inherit; }

::selection {
    background: var(--accent);
    color: #ffffff;
}

/* Inter display font weights — bold headings */
[class*="hero__title"],
.section-title,
.cta__title,
.stat__value,
.step__number {
    font-weight: 800 !important;
}

/* Card headings use body font — clean, bold, no italic */
.feature__title,
.problem__title,
.step__title {
    font-family: var(--font-body) !important;
    font-weight: 600 !important;
    font-style: normal !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
}

/* ---------- SECTION UTILITIES ---------- */
.section-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4.5vw, 2.75rem);
    font-weight: 800;
    color: var(--text-1);
    line-height: 1.15;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-sub {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-2);
    max-width: 580px;
    line-height: 1.7;
    margin-bottom: 3rem;
}

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

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

/* ---------- ANIMATIONS ---------- */
.anim-fade {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.anim-fade.is-visible {
    opacity: 1;
    transform: translateY(0);
}

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

.nav.is-scrolled {
    border-bottom-color: var(--border);
    background: rgba(255, 255, 255, 0.95);
}

.nav__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 2rem);
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    display: flex;
    align-items: center;
}

.nav__logo-img {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.nav__logo-img--sm {
    height: 24px;
}

.nav__links {
    display: flex;
    gap: 2rem;
}

.nav__link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-3);
    transition: color 0.2s;
}

.nav__link:hover {
    color: var(--text-1);
}

.nav__cta {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.55rem 1.25rem;
    border-radius: 6px;
    background: var(--accent);
    color: #ffffff;
    transition: transform 0.2s, box-shadow 0.2s;
}

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

.nav__mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.nav__mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-2);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.nav__mobile-toggle.is-open span:first-child {
    transform: translateY(3.5px) rotate(45deg);
}

.nav__mobile-toggle.is-open span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
}

.nav__mobile {
    display: none;
    flex-direction: column;
    padding: 1rem clamp(1.25rem, 4vw, 2rem) 1.5rem;
    border-top: 1px solid var(--border);
}

.nav__mobile.is-open {
    display: flex;
}

.nav__mobile-link {
    padding: 0.75rem 0;
    font-size: 0.95rem;
    color: var(--text-2);
    border-bottom: 1px solid var(--border);
}

.nav__mobile-link--cta {
    margin-top: 0.5rem;
    border: none;
    text-align: center;
    padding: 0.75rem;
    border-radius: 6px;
    background: var(--accent);
    color: #ffffff;
    font-weight: 600;
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    padding: calc(64px + var(--section-pad)) 0 var(--section-pad);
    overflow: hidden;
    text-align: center;
}

.hero__bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 50% at 50% 30%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 70% 50% at 50% 30%, black 20%, transparent 70%);
    opacity: 0.35;
}

.hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.hero__glow--1 {
    width: 500px;
    height: 500px;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, var(--accent-glow-strong) 0%, transparent 70%);
}

.hero__glow--2 {
    width: 300px;
    height: 300px;
    bottom: 10%;
    right: 10%;
    background: radial-gradient(circle, var(--blue-dim) 0%, transparent 70%);
}

.hero__inner {
    position: relative;
    z-index: 1;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-2);
    background: var(--bg-raised);
    border: 1px solid var(--border);
    padding: 0.45rem 1rem;
    border-radius: 100px;
    margin-bottom: 2rem;
}

.hero__badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse-dot 2s infinite;
}

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

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.1rem, 6vw, 3.5rem);
    font-weight: 800;
    color: var(--text-1);
    line-height: 1.12;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.hero__title-accent {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-bright) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero__sub {
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    color: var(--text-2);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

/* Hero Form Card */
.hero__form-card {
    max-width: 620px;
    margin: 0 auto 2.5rem;
    background: var(--bg-card);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 2rem 2rem 1.5rem;
    position: relative;
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.04),
        0 12px 40px rgba(0, 112, 224, 0.08);
}

.hero__form-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
}

.hero__form-arrow i {
    font-size: 0.8rem;
    animation: bounce-arrow 1.5s ease infinite;
}

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

.hero__form-card .hero__proof {
    margin-top: 1rem;
    margin-bottom: 0;
    font-size: 0.8rem;
    color: var(--text-3);
}

.hero__form-card .hero__proof i {
    margin-right: 0.3rem;
    font-size: 0.7rem;
}

/* Hero Form */
.hero__form {
    max-width: none;
    margin: 0;
}

.hero__form-fields {
    display: flex;
    gap: 0.6rem;
    align-items: stretch;
    background: none;
    border: none;
    border-radius: 0;
    padding: 0;
}

.hero__form-fields:focus-within {
    border-color: transparent;
    box-shadow: none;
}

.hero__form-group {
    flex: 1;
    position: relative;
}

.hero__form-group + .hero__form-group::before {
    display: none;
}

.hero__input {
    width: 100%;
    background: var(--bg-card);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    outline: none;
    padding: 0.85rem 1.1rem;
    font-size: 0.92rem;
    color: var(--text-1);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.hero__input:hover {
    border-color: var(--border-light);
}

.hero__input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.hero__input::placeholder {
    color: var(--text-3);
}

.hero__submit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.6rem;
    background: var(--accent);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.88rem;
    border-radius: 10px;
    white-space: nowrap;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    box-shadow: 0 2px 8px var(--accent-glow);
}

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

.hero__submit i {
    font-size: 0.75rem;
    transition: transform 0.2s;
}

.hero__submit:hover i {
    transform: translateX(3px);
}

.hero__form-success {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    color: var(--accent);
    font-weight: 500;
    font-size: 0.95rem;
    animation: fade-in-up 0.5s ease;
}

.hero__form-success.is-visible {
    display: flex;
}

.hero__form-success i {
    font-size: 1.1rem;
}

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

.hero__proof {
    font-size: 0.8rem;
    color: var(--text-3);
    margin-bottom: 4rem;
}

.hero__proof i {
    margin-right: 0.3rem;
    font-size: 0.7rem;
}

/* Hero Visual — Slider */
.hero__visual {
    max-width: 800px;
    margin: 0 auto;
}

.slider__header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.slider__heading {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3.5vw, 2rem);
    font-weight: 400;
    color: var(--text-1);
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    margin-bottom: 0.6rem;
}

.slider__subheading {
    font-size: clamp(0.88rem, 1.8vw, 1rem);
    color: var(--text-2);
    line-height: 1.6;
    max-width: 580px;
    margin: 0 auto;
}

.slider {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    text-align: left;
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.06),
        0 12px 48px rgba(0, 112, 224, 0.08);
}

.slider__track {
    position: relative;
    overflow: hidden;
}

.slider__slide {
    display: none;
    position: relative;
}

.slider__slide.is-active {
    display: block;
    animation: slider-fade 0.5s ease;
}

@keyframes slider-fade {
    from { opacity: 0; }
    to { opacity: 1; }
}

.slider__slide img {
    width: 100%;
    height: 450px;
    display: block;
    object-fit: cover;
    object-position: top left;
}

.slider__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem 1.25rem 0.85rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 60%, transparent 100%);
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.5;
}

.slider__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    border-top: 1px solid var(--border);
    background: var(--bg-raised);
}

.slider__btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-2);
    font-size: 0.75rem;
    transition: border-color 0.2s, color 0.2s;
    cursor: pointer;
}

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

.slider__dots {
    display: flex;
    gap: 6px;
    align-items: center;
}

.slider__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-light);
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    padding: 0;
}

.slider__dot.is-active {
    background: var(--accent);
    transform: scale(1.25);
}

/* ---------- PROBLEM ---------- */
.problem {
    padding: var(--section-pad) 0;
    position: relative;
}

.problem__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.problem__card {
    padding: 1.75rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: border-color 0.3s, transform 0.3s;
}

.problem__card:hover {
    border-color: var(--border-light);
    transform: translateY(-2px);
}

.problem__icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--red-dim);
    color: var(--red);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.problem__title {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-1);
    margin-bottom: 0.5rem;
}

.problem__desc {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--text-2);
}

/* ---------- FEATURES ---------- */
.features {
    padding: var(--section-pad) 0;
    position: relative;
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.feature {
    padding: 1.75rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: border-color 0.3s, transform 0.3s;
    position: relative;
}

.feature:hover {
    border-color: var(--accent-dim);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.feature__number {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-3);
    margin-bottom: 1rem;
}

.feature__icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--accent-glow);
    color: var(--accent);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.feature__title {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-1);
    margin-bottom: 0.5rem;
}

.feature__desc {
    font-size: 0.875rem;
    line-height: 1.65;
    color: var(--text-2);
}

/* ---------- HOW IT WORKS ---------- */
.steps {
    padding: var(--section-pad) 0;
}

.steps__grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 1rem;
}

.step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: border-color 0.3s;
}

.step:hover {
    border-color: var(--border-light);
}

.step__number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    opacity: 0.25;
    line-height: 1;
    flex-shrink: 0;
    width: 60px;
    text-align: center;
}

.step__content {
    flex: 1;
}

.step__title {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-1);
    margin-bottom: 0.5rem;
}

.step__desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-2);
    margin-bottom: 1rem;
}

.step__tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.step__tag {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    padding: 0.3rem 0.65rem;
    background: var(--bg-raised);
    border: 1px solid var(--border);
    border-radius: 5px;
    color: var(--text-3);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.step__tag i {
    color: var(--accent);
    font-size: 0.65rem;
}

/* ---------- STATS ---------- */
.stats {
    padding: var(--section-pad) 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    text-align: center;
}

.stat {
    padding: 1.5rem 1rem;
}

.stat__value {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--text-1);
    line-height: 1.1;
    margin-bottom: 0.4rem;
}

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

.stat__label {
    font-size: 0.85rem;
    color: var(--text-3);
}

/* ---------- FINAL CTA ---------- */
.cta {
    padding: var(--section-pad) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta__glow {
    position: absolute;
    width: 600px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}

.cta__inner {
    position: relative;
    z-index: 1;
}

.cta__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4.5vw, 2.5rem);
    font-weight: 800;
    color: var(--text-1);
    line-height: 1.15;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.cta__sub {
    font-size: 1.05rem;
    color: var(--text-2);
    max-width: 480px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.cta__form {
    max-width: 540px;
    margin: 0 auto 1rem;
}

.cta__form-fields {
    display: flex;
    gap: 0.6rem;
    align-items: stretch;
    background: none;
    border: none;
    border-radius: 0;
    padding: 0;
}

.cta__form-fields:focus-within {
    border-color: transparent;
    box-shadow: none;
}

.cta__input {
    flex: 1;
    min-width: 0;
    background: var(--bg-card);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    outline: none;
    padding: 0.85rem 1.1rem;
    font-size: 0.92rem;
    color: var(--text-1);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.cta__input:hover {
    border-color: var(--border-light);
}

.cta__input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.cta__input:last-of-type {
    border-right: 1.5px solid var(--border);
}

.cta__input::placeholder {
    color: var(--text-3);
}

.cta__submit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.6rem;
    background: var(--accent);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.88rem;
    border-radius: 10px;
    white-space: nowrap;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    box-shadow: 0 2px 8px var(--accent-glow);
}

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

.cta__submit i {
    font-size: 0.75rem;
}

.cta__form-success {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    color: var(--accent);
    font-weight: 500;
    font-size: 0.95rem;
    animation: fade-in-up 0.5s ease;
}

.cta__form-success.is-visible {
    display: flex;
}

.cta__note {
    font-size: 0.8rem;
    color: var(--text-3);
}

.cta__note i {
    margin-right: 0.3rem;
    font-size: 0.7rem;
}

/* ---------- FOOTER ---------- */
.footer {
    padding: 2rem 0;
    border-top: 1px solid var(--border);
}

.footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer__links {
    display: flex;
    gap: 1.5rem;
}

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

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

.footer__copy {
    font-size: 0.75rem;
    color: var(--text-3);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 900px) {
    .nav__links,
    .nav__cta {
        display: none;
    }

    .nav__mobile-toggle {
        display: flex;
    }

    .features__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pipeline__row {
        grid-template-columns: 1fr auto;
        gap: 0.5rem;
    }

    .pipeline__scores {
        display: none;
    }

    .slider__slide img {
        height: 350px;
    }
}

@media (max-width: 640px) {
    .slider__slide img {
        height: 260px;
    }
    .problem__grid {
        grid-template-columns: 1fr;
    }

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

    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .step {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }

    .step__number {
        width: auto;
        text-align: left;
        font-size: 2rem;
    }

    /* Stack form fields on mobile */
    .hero__form-fields,
    .cta__form-fields {
        flex-direction: column;
        gap: 0.5rem;
    }

    .hero__submit,
    .cta__submit {
        width: 100%;
        justify-content: center;
        padding: 0.9rem;
    }

    .pipeline {
        font-size: 0.72rem;
    }

    .pipeline__domain {
        max-width: 140px;
    }

    .footer__inner {
        flex-direction: column;
        text-align: center;
    }
}

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

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

    .stat__value {
        font-size: 2rem;
    }
}