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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

/* ─── TOKENS ────────────────────────────────────────────── */
:root {
    --void: #060a10;
    --base: #0b1118;
    --surface: #101820;
    --card: #131e2c;
    --card-hi: #19253a;
    --border: rgba(255, 255, 255, 0.06);
    --border-hi: rgba(255, 255, 255, 0.12);
    --border-glow: rgba(245, 158, 11, 0.3);
    --ink-0: #f0f4f8;
    --ink-1: #b8c7d9;
    --ink-2: #5a7291;
    --ink-3: #2d4258;
    --amber: #f59e0b;
    --amber-lt: #fbbf24;
    --amber-dk: #d97706;
    --amber-dim: rgba(245, 158, 11, 0.12);
    --amber-glow: rgba(245, 158, 11, 0.22);
    --green: #10b981;
    --green-dim: rgba(16, 185, 129, 0.15);
    --red: #f87171;
    --r: 8px;
    --r-lg: 14px;
    --r-xl: 20px;
}

/* ─── BASE ──────────────────────────────────────────────── */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--void);
    color: var(--ink-0);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
    min-width: 0;
}

.container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px;
}

:focus-visible {
    outline: 2px solid var(--amber);
    outline-offset: 3px;
    border-radius: 4px;
}

/* ─── NOISE TEXTURE OVERLAY ─────────────────────────────── */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}

/* ─── HEADER ────────────────────────────────────────────── */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0;
    background: rgba(6, 10, 16, 0.82);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.4px;
    color: var(--ink-0);
}

.logo-mark {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--amber-lt) 0%, var(--amber-dk) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    box-shadow: 0 0 16px var(--amber-glow), 0 2px 8px rgba(0, 0, 0, 0.5);
    flex-shrink: 0;
}

.logo-text em {
    color: var(--amber);
    font-style: normal;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    font-size: 13px;
    font-weight: 500;
    color: var(--ink-2);
    text-decoration: none;
    transition: color 0.15s;
}

.nav-link:hover {
    color: var(--ink-1);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--amber);
    color: var(--void);
    border-radius: var(--r);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.15s, box-shadow 0.15s;
    white-space: nowrap;
}

.nav-cta:hover {
    background: var(--amber-lt);
    box-shadow: 0 0 20px var(--amber-glow);
}

@media (max-width: 640px) {
    .nav-links {
        display: none;
    }

    .nav-cta-mobile {
        display: inline-flex;
    }

    .container {
        max-width: 100%;
        overflow-x: hidden;
    }
}

/* ─── HERO ──────────────────────────────────────────────── */
.hero {
    position: relative;
    padding: 72px 0 80px;
    z-index: 1;
}

/* ambient glow behind hero */
.hero::before {
    content: "";
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 900px;
    height: 600px;
    background: radial-gradient(ellipse at 50% 30%,
            rgba(245, 158, 11, 0.10) 0%,
            rgba(245, 158, 11, 0.04) 40%,
            transparent 70%);
    pointer-events: none;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr minmax(0, 420px);
    gap: 56px;
    align-items: center;
    min-width: 0;
}

/* ─── STATUS PILL ───────────────────────────────────────── */
.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--card);
    border: 1px solid var(--border-hi);
    border-radius: 100px;
    padding: 6px 14px 6px 8px;
    font-size: 12px;
    font-weight: 500;
    color: var(--ink-1);
    margin-bottom: 28px;
}

.status-dot {
    width: 7px;
    height: 7px;
    background: var(--green);
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulse-green 2.2s ease-in-out infinite;
}

@keyframes pulse-green {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6);
    }

    50% {
        box-shadow: 0 0 0 5px rgba(16, 185, 129, 0);
    }
}

.status-pill strong {
    color: var(--green);
    font-weight: 600;
}

/* ─── HERO COPY ─────────────────────────────────────────── */
.hero h1 {
    font-size: clamp(36px, 4.8vw, 58px);
    font-weight: 900;
    line-height: 1.06;
    letter-spacing: -2px;
    color: var(--ink-0);
    margin-bottom: 20px;
}

.hero h1 .line-amber {
    color: var(--amber);
}

.hero-sub {
    font-size: clamp(15px, 1.8vw, 17px);
    color: var(--ink-1);
    line-height: 1.65;
    max-width: 480px;
    margin-bottom: 32px;
}

/* ─── PROOF CHIPS ───────────────────────────────────────── */
.proof-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 36px;
}

.proof-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: var(--card);
    border: 1px solid var(--border-hi);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    color: var(--ink-1);
}

.proof-chip svg {
    width: 12px;
    height: 12px;
    stroke: var(--amber);
    flex-shrink: 0;
}

/* ─── SMS DEMO ──────────────────────────────────────────── */
.sms-demo {
    background: var(--surface);
    border: 1px solid var(--border-hi);
    border-radius: var(--r-xl);
    padding: 20px;
    position: relative;
    overflow: hidden;
    max-width: 100%;
}

.sms-demo::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--amber-glow), transparent);
}

.sms-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 16px;
}

.sms-avatar {
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, var(--amber) 0%, var(--amber-dk) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    font-weight: 700;
    color: var(--void);
}

.sms-from {
    font-size: 13px;
    font-weight: 700;
    color: var(--ink-0);
}

.sms-sub {
    font-size: 11px;
    color: var(--ink-2);
}

.sms-event {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    font-weight: 600;
    color: var(--red);
    background: rgba(248, 113, 113, 0.08);
    border: 1px solid rgba(248, 113, 113, 0.15);
    border-radius: 6px;
    padding: 5px 10px;
    margin-bottom: 14px;
}

.sms-event svg {
    width: 12px;
    height: 12px;
    stroke: currentColor;
    flex-shrink: 0;
}

.sms-bubble-wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bubble {
    max-width: 85%;
    padding: 10px 13px;
    border-radius: 14px;
    font-size: 12.5px;
    line-height: 1.5;
    opacity: 0;
    animation: fadeUp 0.4s ease forwards;
}

.bubble.out {
    background: var(--amber);
    color: var(--void);
    border-bottom-right-radius: 4px;
    align-self: flex-end;
    font-weight: 500;
}

.bubble.in {
    background: var(--card-hi);
    color: var(--ink-0);
    border-bottom-left-radius: 4px;
    align-self: flex-start;
}

.bubble:nth-child(1) {
    animation-delay: 0.2s;
}

.bubble:nth-child(2) {
    animation-delay: 1.0s;
}

.bubble:nth-child(3) {
    animation-delay: 2.0s;
}

.bubble:nth-child(4) {
    animation-delay: 3.0s;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

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

.sms-status-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.sms-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 9px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
}

.sms-tag.booked {
    background: var(--green-dim);
    color: var(--green);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.sms-tag.ai {
    background: var(--amber-dim);
    color: var(--amber);
    border: 1px solid rgba(245, 158, 11, 0.2);
}

/* ─── FORM PANEL ────────────────────────────────────────── */
.form-panel {
    background: var(--card);
    border: 1px solid var(--border-hi);
    border-radius: var(--r-xl);
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
}

.form-panel::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--amber) 50%, transparent 100%);
}

.form-panel::after {
    content: "";
    position: absolute;
    top: -80px;
    right: -40px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, var(--amber-dim) 0%, transparent 70%);
    pointer-events: none;
}

.spots-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    color: var(--amber);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.spots-dot {
    width: 6px;
    height: 6px;
    background: var(--amber);
    border-radius: 50%;
    animation: pulse-green 2.2s ease-in-out infinite;
}

.form-panel h2 {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--ink-0);
    margin-bottom: 4px;
}

.form-panel-sub {
    font-size: 13px;
    color: var(--ink-2);
    margin-bottom: 22px;
    line-height: 1.5;
}

/* ─── FORM FIELDS ───────────────────────────────────────── */
.fgroup {
    margin-bottom: 14px;
}

.fgroup label {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 600;
    color: var(--ink-1);
    margin-bottom: 6px;
    letter-spacing: 0.01em;
}

.checkbox-label {
    font-weight: 400;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 8px;
}

.form-hidden {
    display: none;
}

.form-error {
    margin-top: 10px;
    font-size: 12px;
    color: var(--red);
    text-align: center;
}

.req {
    color: var(--amber);
}

.fgroup input,
.fgroup select,
.fgroup textarea {
    width: 100%;
    padding: 11px 13px;
    background: var(--surface);
    border: 1px solid var(--border-hi);
    border-radius: var(--r);
    color: var(--ink-0);
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.15s, box-shadow 0.15s;
    appearance: none;
}

.fgroup textarea {
    resize: vertical;
    min-height: 60px;
}

.fgroup input[type="checkbox"] {
    width: auto;
    padding: 0;
    margin: 0;
}

.fgroup input::placeholder {
    color: var(--ink-3);
}

.fgroup input:focus,
.fgroup select:focus,
.fgroup textarea:focus {
    outline: none;
    border-color: var(--amber);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.12);
}

.fgroup.err input,
.fgroup.err select,
.fgroup.err textarea {
    border-color: var(--red);
}

.ferr {
    display: none;
    margin-top: 4px;
    font-size: 11px;
    color: var(--red);
}

.fgroup.err .ferr {
    display: block;
}

.sel-wrap {
    position: relative;
}

.sel-wrap::after {
    content: "";
    position: absolute;
    right: 13px;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-top-color: var(--ink-2);
    margin-top: 3px;
    pointer-events: none;
}

.honeypot {
    position: absolute;
    left: -9999px;
    visibility: hidden;
}

.submit-btn {
    width: 100%;
    margin-top: 6px;
    padding: 13px 20px;
    background: linear-gradient(135deg, var(--amber-lt) 0%, var(--amber) 60%, var(--amber-dk) 100%);
    color: var(--void);
    border: none;
    border-radius: var(--r);
    font-family: inherit;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: -0.1px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: opacity 0.15s, box-shadow 0.15s, transform 0.1s;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
}

.submit-btn:hover:not(:disabled) {
    box-shadow: 0 4px 28px rgba(245, 158, 11, 0.5);
    opacity: 0.95;
}

.submit-btn:active:not(:disabled) {
    transform: scale(0.985);
}

.submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    box-shadow: none;
}

.btn-spinner {
    display: none;
    width: 15px;
    height: 15px;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-top-color: var(--void);
    border-radius: 50%;
    animation: spin 0.65s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading .btn-spinner {
    display: block;
}

.form-footnote {
    margin-top: 12px;
    font-size: 11.5px;
    color: var(--ink-2);
    text-align: center;
    line-height: 1.5;
}

/* ─── SUCCESS PANEL ─────────────────────────────────────── */
.success-panel {
    display: none;
    text-align: center;
    padding: 20px 8px 8px;
}

.success-panel.visible {
    display: block;
}

.success-ring {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--green-dim);
    border: 2px solid rgba(16, 185, 129, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.success-ring svg {
    width: 24px;
    height: 24px;
    stroke: var(--green);
}

.success-panel h3 {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.3px;
    margin-bottom: 8px;
}

.success-panel p {
    font-size: 13px;
    color: var(--ink-1);
    line-height: 1.55;
}

/* ─── SHARED SECTION SCAFFOLDING ────────────────────────── */
.section {
    position: relative;
    padding: 88px 0;
    z-index: 1;
}

.section+.section {
    border-top: 1px solid var(--border);
}

.section-eyebrow {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--amber);
    text-align: center;
    margin-bottom: 10px;
}

.section-title {
    font-size: clamp(26px, 3.2vw, 38px);
    font-weight: 800;
    letter-spacing: -1px;
    text-align: center;
    color: var(--ink-0);
    margin-bottom: 12px;
}

.section-body {
    text-align: center;
    font-size: 16px;
    color: var(--ink-1);
    max-width: 540px;
    margin: 0 auto 52px;
    line-height: 1.65;
}

/* ─── PIPELINE / HOW IT WORKS ───────────────────────────── */
.pipeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.pipeline::before {
    content: "";
    position: absolute;
    top: 28px;
    left: calc(12.5% + 14px);
    right: calc(12.5% + 14px);
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            var(--border-glow) 20%,
            var(--border-glow) 80%,
            transparent);
    z-index: 0;
}

.pipe-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 12px;
    position: relative;
}

.pipe-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--card);
    border: 1px solid var(--border-hi);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.pipe-step:hover .pipe-num {
    border-color: var(--amber);
    box-shadow: 0 0 20px var(--amber-dim);
}

.pipe-detail {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 20px 16px 22px;
    transition: border-color 0.2s;
    width: 100%;
}

.pipe-step:hover .pipe-detail {
    border-color: var(--border-hi);
}

.pipe-detail h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--ink-0);
    margin-bottom: 8px;
    letter-spacing: -0.2px;
}

.pipe-detail p {
    font-size: 12.5px;
    color: var(--ink-1);
    line-height: 1.6;
    margin-bottom: 12px;
}

.pipe-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--amber);
    background: var(--amber-dim);
    border-radius: 4px;
    padding: 2px 7px;
}

/* ─── FEATURES ──────────────────────────────────────────── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.feat {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.feat:hover {
    border-color: var(--border-hi);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}

.feat-icon {
    width: 40px;
    height: 40px;
    background: var(--card-hi);
    border: 1px solid var(--border-hi);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feat-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--amber);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feat h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--ink-0);
    letter-spacing: -0.2px;
}

.feat p {
    font-size: 13px;
    color: var(--ink-1);
    line-height: 1.6;
    flex: 1;
}

/* ─── TRADES ────────────────────────────────────────────── */
.trades-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    max-width: 640px;
    margin: 40px auto 0;
}

.trade-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--ink-1);
    transition: border-color 0.2s, color 0.2s;
}

.trade-pill:hover {
    border-color: rgba(245, 158, 11, 0.4);
    color: var(--ink-0);
}

.trade-icon {
    font-size: 16px;
}

/* ─── FAQ CARDS ─────────────────────────────────────────── */
.faq-list {
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 24px;
}

.faq-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--ink-0);
    margin-bottom: 8px;
}

.faq-card p {
    font-size: 13px;
    color: var(--ink-1);
    line-height: 1.6;
    margin: 0;
}

/* ─── PILOT CARD ────────────────────────────────────────── */
.pilot-card {
    max-width: 720px;
    margin: 0 auto;
    background: var(--card-hi);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: var(--r-xl);
    padding: 52px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pilot-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(245, 158, 11, 0.08), transparent);
    pointer-events: none;
}

.pilot-card::after {
    content: "";
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.06), transparent 70%);
    pointer-events: none;
}

.pilot-label {
    display: inline-block;
    background: var(--amber);
    color: var(--void);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 100px;
    padding: 4px 14px;
    margin-bottom: 22px;
}

.pilot-card h2 {
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 14px;
    color: var(--ink-0);
}

.pilot-card>p {
    font-size: 15px;
    color: var(--ink-1);
    line-height: 1.65;
    max-width: 500px;
    margin: 0 auto 32px;
}

.pilot-perks {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
    max-width: 380px;
    margin: 0 auto 36px;
    text-align: left;
}

.pilot-perks li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--ink-1);
    line-height: 1.5;
}

.pp-check {
    flex-shrink: 0;
    margin-top: 2px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--green-dim);
    border: 1px solid rgba(16, 185, 129, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pp-check svg {
    width: 10px;
    height: 10px;
    stroke: var(--green);
}

.pilot-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--amber-lt) 0%, var(--amber) 60%, var(--amber-dk) 100%);
    color: var(--void);
    font-size: 15px;
    font-weight: 800;
    border-radius: var(--r);
    text-decoration: none;
    transition: box-shadow 0.2s, opacity 0.15s;
    box-shadow: 0 4px 24px rgba(245, 158, 11, 0.35);
}

.pilot-cta:hover {
    opacity: 0.92;
    box-shadow: 0 4px 36px rgba(245, 158, 11, 0.55);
}

.pilot-cta svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
}

.pilot-caveat {
    margin-top: 14px;
    font-size: 12px;
    color: var(--ink-2);
}


/* ─── FOOTER ────────────────────────────────────────────── */
footer {
    border-top: 1px solid var(--border);
    padding: 32px 0;
    position: relative;
    z-index: 1;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-copy {
    font-size: 13px;
    color: var(--ink-2);
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    font-size: 13px;
    color: var(--ink-2);
    text-decoration: none;
    transition: color 0.15s;
}

.footer-links a:hover {
    color: var(--ink-1);
}

/* ─── DIVIDER ───────────────────────────────────────────── */
.divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-hi) 30%, var(--border-hi) 70%, transparent);
    margin: 0;
}

/* ─── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 900px) {
    .pipeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .pipeline::before {
        display: none;
    }

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

@media (max-width: 740px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero {
        padding: 48px 0 64px;
    }

    .hero h1 {
        font-size: clamp(32px, 8vw, 46px);
    }

    .hero-sub {
        max-width: 100%;
    }

    .form-panel {
        padding: 24px 20px;
        max-width: 100%;
    }

    .section {
        padding: 64px 0;
    }

    .proof-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .sms-demo {
        padding: 16px;
    }
}

@media (max-width: 560px) {
    .container {
        padding: 0 16px;
    }

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

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

    .pilot-card {
        padding: 36px 20px;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .bubble {
        max-width: 95%;
    }

    .proof-chip {
        width: 100%;
        justify-content: center;
    }
}

/* ─── REDUCED MOTION ────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
