:root {
    --brand: #206BA4;
    --brand-hover: #1a5688;
    --brand-soft: #BBD9EE;
    --brand-mist: #EBF4FA;
    --bg: #F6FAFD;
    --surface: #fff;
    --surface-soft: #EBF4FA;
    --ink: #2a4a66;
    --ink-soft: #3a5670;
    --muted: #5a7389;
    --warn-soft: #FFF8EE;
    --warn: #7a6840;
    --max: 1180px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-pill: 999px;
    --font: "Onest", system-ui, sans-serif;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --shadow: 0 20px 50px rgba(32, 107, 164, 0.12);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; overflow-x: clip; }

body.promo-body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: clip;
}

main#top { overflow-x: clip; }

.promo-section[id],
#features,
#channels,
#mobile,
#pricing,
#demo,
#faq {
    scroll-margin-top: 84px;
}

body.promo-body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(ellipse 70% 55% at 100% 0%, color-mix(in srgb, var(--brand-soft) 35%, transparent), transparent 55%),
        radial-gradient(ellipse 55% 45% at 0% 100%, color-mix(in srgb, var(--brand-mist) 80%, transparent), transparent 50%);
}

a { color: inherit; text-decoration: none; }
h1, h2, h3 { margin: 0; font-weight: 700; letter-spacing: -0.03em; line-height: 1.08; overflow-wrap: break-word; }
h1 { font-size: clamp(2.2rem, 5.5vw, 3.6rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.45rem); }
h3 { font-size: 1.125rem; font-weight: 600; }
p { margin: 0; }

.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;
}

.promo-wrap {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 48px);
}

/* Header */
.promo-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: color-mix(in srgb, var(--bg) 82%, transparent);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.promo-header.is-scrolled {
    border-color: color-mix(in srgb, var(--brand) 14%, transparent);
    box-shadow: 0 8px 32px rgba(32, 107, 164, 0.06);
}

.promo-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 68px;
}

.promo-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--brand);
    font-size: 20px;
}

.promo-header-nav {
    display: flex;
    gap: 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--muted);
}

.promo-header-nav a:hover { color: var(--brand); }

.promo-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.promo-menu-toggle {
    display: none;
    border: 0;
    background: var(--surface-soft);
    width: 44px;
    height: 44px;
    border-radius: 14px;
    color: var(--brand);
    cursor: pointer;
}

.promo-menu-toggle svg { width: 22px; height: 22px; }

.promo-mobile-nav {
    border-top: 1px solid color-mix(in srgb, var(--brand) 12%, transparent);
    background: var(--surface);
}

.promo-mobile-nav[hidden] {
    display: none !important;
}

.promo-mobile-nav-inner {
    display: grid;
    gap: 4px;
    padding: 12px clamp(20px, 4vw, 48px) 24px;
}

.promo-mobile-nav a {
    padding: 14px 16px;
    border-radius: 14px;
    font-weight: 600;
    color: var(--ink-soft);
}

.promo-mobile-nav a:hover {
    background: var(--brand-mist);
    color: var(--brand);
}

.promo-mobile-nav-actions {
    display: grid;
    gap: 10px;
    margin-top: 12px;
}

.promo-mobile-nav-actions .promo-btn {
    width: 100%;
}

/* Buttons */
.promo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 22px;
    border-radius: var(--radius-pill);
    background: var(--brand);
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    border: 0;
    cursor: pointer;
    transition: background 0.15s, transform 0.15s;
    touch-action: manipulation;
}

.promo-btn:hover { background: var(--brand-hover); }
.promo-btn:active { transform: scale(0.98); }

.promo-btn--secondary {
    background: var(--surface);
    color: var(--brand);
    border: 1px solid color-mix(in srgb, var(--brand) 22%, transparent);
}

.promo-btn--secondary:hover { background: var(--brand-mist); }

.promo-btn--ghost {
    background: transparent;
    color: var(--brand);
    border: 1px solid color-mix(in srgb, var(--brand) 20%, transparent);
}

.promo-btn--ghost:hover { background: var(--brand-mist); }

.promo-btn--invert { background: #fff; color: var(--brand); }
.promo-btn--invert:hover { background: var(--brand-mist); }

.promo-btn--ghost-invert {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.35);
}

.promo-btn--sm { min-height: 40px; padding: 8px 16px; font-size: 14px; }
.promo-btn--full { width: 100%; }

/* Hero */
.promo-hero {
    position: relative;
    padding: clamp(48px, 8vw, 96px) 0 clamp(56px, 10vw, 88px);
    overflow: hidden;
}

.promo-hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.promo-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(color-mix(in srgb, var(--brand) 7%, transparent) 1px, transparent 1px),
        linear-gradient(90deg, color-mix(in srgb, var(--brand) 7%, transparent) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: radial-gradient(ellipse 75% 65% at 50% 35%, #000 15%, transparent 72%);
    opacity: 0.55;
}

.promo-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.55;
}

.promo-orb-a {
    width: 420px; height: 420px;
    top: -120px; right: -80px;
    background: var(--brand-soft);
}

.promo-orb-b {
    width: 320px; height: 320px;
    bottom: -80px; left: -60px;
    background: var(--brand-mist);
}

.promo-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
}

.promo-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 16px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
}

.promo-eyebrow::before {
    content: "";
    width: 28px; height: 2px;
    border-radius: var(--radius-pill);
    background: var(--brand);
}

.promo-lead {
    margin-top: 18px;
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.65;
    color: var(--muted);
}

.promo-lead-narrow { max-width: 34em; }

.promo-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.promo-actions--tight { margin-top: 20px; }
.promo-actions--center { justify-content: center; }

.promo-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.promo-trust-row li {
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    background: var(--surface);
    border: 1px solid color-mix(in srgb, var(--brand) 14%, transparent);
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-soft);
}

@media (min-width: 480px) {
    .promo-trust-row li { white-space: nowrap; }
}

/* Mockup */
.promo-hero-visual { position: relative; }

.promo-mockup {
    background: var(--surface);
    border-radius: var(--radius-xl);
    border: 1px solid color-mix(in srgb, var(--brand) 16%, transparent);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.promo-mockup-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    background: var(--surface-soft);
    border-bottom: 1px solid color-mix(in srgb, var(--brand) 10%, transparent);
}

.promo-mockup-bar span:first-child,
.promo-mockup-bar span:nth-child(2),
.promo-mockup-bar span:nth-child(3) {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--brand) 25%, transparent);
}

.promo-mockup-url {
    flex: 1;
    margin-left: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--muted);
}

.promo-mockup-live {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 700;
    color: #2f9d62;
}

.promo-mockup-live i {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #2f9d62;
    box-shadow: 0 0 0 4px rgba(47,157,98,0.18);
}

.promo-mockup-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 14px 16px;
}

.promo-mockup-kpis div {
    padding: 10px;
    border-radius: 12px;
    background: var(--surface-soft);
    text-align: center;
}

.promo-mockup-kpis b {
    display: block;
    font-size: 16px;
    color: var(--brand);
}

.promo-mockup-kpis span {
    font-size: 11px;
    color: var(--muted);
    font-weight: 600;
}

.promo-mockup-grid { padding: 0 16px 16px; }

.promo-mock-row {
    display: grid;
    grid-template-columns: 64px repeat(4, 1fr);
    gap: 4px;
    margin-bottom: 4px;
    font-size: 11px;
    font-weight: 600;
}

.promo-mock-row-head {
    color: var(--muted);
    font-size: 10px;
    margin-bottom: 6px;
}

.promo-mock-row > span:first-child { color: var(--brand); }

.promo-mock-cell {
    min-height: 28px;
    border-radius: 8px;
    background: var(--surface-soft);
    padding: 4px 6px;
    font-size: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.promo-mock-cell.busy { background: linear-gradient(135deg, #e3f0fa, #d4e8f8); color: var(--ink); }
.promo-mock-cell.ota { background: var(--warn-soft); color: var(--warn); }
.promo-mock-cell.warn { background: repeating-linear-gradient(-45deg, var(--warn-soft), var(--warn-soft) 6px, #fff8ee 6px, #fff8ee 12px); color: var(--warn); font-size: 9px; }
.promo-mock-cell.extend { border-radius: 0 8px 8px 0; }
.promo-mock-cell--empty {
    background: color-mix(in srgb, var(--surface-soft) 70%, transparent);
    opacity: 0.65;
}

.promo-float {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 14px;
    background: var(--surface);
    border: 1px solid color-mix(in srgb, var(--brand) 14%, transparent);
    box-shadow: 0 12px 32px rgba(32, 107, 164, 0.1);
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-soft);
    animation: promo-float 5s ease-in-out infinite;
}

.promo-float svg { width: 18px; height: 18px; color: var(--brand); flex-shrink: 0; }
.promo-float-a { top: 10%; left: 0; animation-delay: 0s; }
.promo-float-b { bottom: 12%; right: 0; animation-delay: 1.5s; }

@keyframes promo-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Strip */
.promo-strip { padding: 0 0 clamp(48px, 8vw, 72px); }

.promo-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.promo-strip-card {
    padding: 22px 20px;
    border-radius: var(--radius-lg);
    background: var(--surface);
    border: 1px solid color-mix(in srgb, var(--brand) 12%, transparent);
}

.promo-strip-num {
    display: block;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--brand);
    letter-spacing: -0.03em;
    margin-bottom: 8px;
}

.promo-strip-card strong { display: block; margin-bottom: 6px; font-size: 15px; }
.promo-strip-card p { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* Sections */
.promo-section { padding: clamp(56px, 9vw, 96px) 0; }
.promo-section--alt { background: color-mix(in srgb, var(--brand-mist) 45%, transparent); }

.promo-section-head {
    max-width: 640px;
    margin-bottom: 40px;
}

.promo-section-head .promo-lead { margin-top: 14px; }

.promo-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 56px);
    align-items: center;
}

.promo-split > * {
    min-width: 0;
    overflow: visible;
}

.promo-split--reverse .promo-phone-stack { order: -1; }

/* Features */
.promo-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.promo-feature-card {
    padding: 24px 22px;
    border-radius: var(--radius-lg);
    background: var(--surface);
    border: 1px solid color-mix(in srgb, var(--brand) 10%, transparent);
    transition: transform 0.2s var(--ease), box-shadow 0.2s;
}

.promo-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.promo-feature-icon { font-size: 28px; margin-bottom: 12px; }
.promo-feature-card h3 { margin-bottom: 8px; }
.promo-feature-card p { font-size: 14px; color: var(--muted); line-height: 1.55; }

/* Checklist */
.promo-checklist {
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.promo-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: var(--ink-soft);
    line-height: 1.45;
}

.promo-checklist svg {
    width: 20px; height: 20px;
    color: var(--brand);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Channel hub */
.promo-channel-visual {
    display: grid;
    place-items: center;
    min-height: 320px;
    padding: 12px;
    overflow: visible;
}

.promo-hub {
    position: relative;
    width: 280px;
    height: 280px;
}

.promo-hub-core {
    position: absolute;
    inset: 50%;
    width: 96px; height: 96px;
    margin: -48px 0 0 -48px;
    border-radius: 50%;
    background: var(--brand);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 12px 40px rgba(32, 107, 164, 0.35);
    z-index: 2;
}

.promo-hub-spoke {
    position: absolute;
    padding: 10px 14px;
    border-radius: var(--radius-pill);
    background: var(--surface);
    border: 1px solid color-mix(in srgb, var(--brand) 16%, transparent);
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-soft);
    white-space: nowrap;
    box-shadow: 0 8px 24px rgba(32, 107, 164, 0.08);
}

.promo-hub-spoke--1 { top: 4%; left: 50%; transform: translateX(-50%); }
.promo-hub-spoke--2 { top: 50%; right: 0; transform: translateY(-50%); }
.promo-hub-spoke--3 { bottom: 4%; left: 50%; transform: translateX(-50%); }
.promo-hub-spoke--4 { top: 50%; left: 0; transform: translateY(-50%); }

/* Phone mock */
.promo-phone-stack {
    display: flex;
    justify-content: center;
}

.promo-phone {
    width: min(280px, 100%);
    margin: 0 auto;
    padding: 12px;
    border-radius: 32px;
    background: var(--ink);
    box-shadow: var(--shadow);
}

.promo-phone-notch {
    width: 80px; height: 6px;
    margin: 0 auto 10px;
    border-radius: var(--radius-pill);
    background: rgba(255,255,255,0.15);
}

.promo-phone-screen {
    border-radius: 22px;
    background: var(--bg);
    overflow: hidden;
    min-height: 360px;
    display: flex;
    flex-direction: column;
}

.promo-phone-content {
    flex: 1;
    padding: 24px 16px 16px;
}

.promo-phone-content strong {
    display: block;
    color: var(--brand);
    margin-bottom: 12px;
}

.promo-phone-stats {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-soft);
}

.promo-phone-dock {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px 4px calc(8px + env(safe-area-inset-bottom, 0px));
    background: rgba(255,255,255,0.96);
    border-top: 1px solid color-mix(in srgb, var(--brand) 12%, transparent);
    margin-top: auto;
}

.promo-phone-dock-icons,
.promo-phone-dock-labels {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 2px;
    align-items: center;
}

.promo-phone-dock-icon {
    width: 18px;
    height: 18px;
    margin: 0 auto;
    border-radius: 6px;
    background: color-mix(in srgb, var(--brand) 12%, transparent);
}

.promo-phone-dock-icon.is-active {
    background: var(--brand-soft);
}

.promo-phone-dock-labels span {
    font-size: 8px;
    font-weight: 600;
    color: var(--muted);
    text-align: center;
    line-height: 1.15;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.promo-phone-dock-labels span.is-active { color: var(--brand); }

.promo-phone-fab-slot {
    display: flex;
    justify-content: center;
    align-items: center;
}

.promo-phone-fab {
    width: 34px; height: 34px;
    margin-top: -10px;
    border-radius: 50%;
    background: var(--brand);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 16px;
    line-height: 1;
    box-shadow: 0 6px 20px rgba(32, 107, 164, 0.3);
    flex-shrink: 0;
}

/* Steps */
.promo-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.promo-step {
    padding: 28px 24px;
    border-radius: var(--radius-lg);
    background: var(--surface);
    border: 1px solid color-mix(in srgb, var(--brand) 10%, transparent);
}

.promo-step-num {
    display: inline-grid;
    place-items: center;
    width: 36px; height: 36px;
    border-radius: 12px;
    background: var(--brand-mist);
    color: var(--brand);
    font-weight: 700;
    margin-bottom: 14px;
}

.promo-step h3 { margin-bottom: 8px; }
.promo-step p { font-size: 14px; color: var(--muted); line-height: 1.55; }

/* Pricing */
.promo-pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.promo-price-card {
    position: relative;
    padding: 28px 22px;
    border-radius: var(--radius-lg);
    background: var(--surface);
    border: 1px solid color-mix(in srgb, var(--brand) 12%, transparent);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.promo-price-card--featured {
    border-color: var(--brand);
    box-shadow: var(--shadow);
    transform: scale(1.02);
}

.promo-price-card--featured h3 {
    padding-right: 76px;
}

.promo-price-badge {
    position: absolute;
    top: 14px; right: 14px;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    background: var(--brand-mist);
    color: var(--brand);
    font-size: 11px;
    font-weight: 700;
}

.promo-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--brand);
    letter-spacing: -0.03em;
}

.promo-price span { font-size: 14px; font-weight: 600; color: var(--muted); }
.promo-price--text { font-size: 1.5rem; }

.promo-price-card p {
    flex: 1;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.5;
}

/* Demo panel */
.promo-demo-panel {
    padding: clamp(32px, 5vw, 48px);
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, var(--brand) 0%, #1a5688 100%);
    color: #fff;
}

.promo-demo-panel .promo-eyebrow { color: rgba(255,255,255,0.7); }
.promo-demo-panel .promo-eyebrow::before { background: rgba(255,255,255,0.5); }
.promo-demo-panel .promo-lead { color: rgba(255,255,255,0.85); }

.promo-demo-panel .promo-btn--secondary {
    background: rgba(255,255,255,0.14);
    color: #fff;
    border-color: rgba(255,255,255,0.35);
}

.promo-demo-panel .promo-btn--secondary:hover {
    background: rgba(255,255,255,0.24);
}

.promo-demo-creds {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 20px 0;
}

.promo-demo-creds div {
    padding: 12px 18px;
    border-radius: 14px;
    background: rgba(255,255,255,0.12);
    min-width: 180px;
}

.promo-demo-creds span {
    display: block;
    font-size: 12px;
    opacity: 0.75;
    margin-bottom: 4px;
}

.promo-demo-creds strong { font-size: 16px; }

/* FAQ */
.promo-faq-wrap {
    display: grid;
    justify-items: center;
}

.promo-faq { display: grid; gap: 10px; max-width: 720px; width: 100%; }

.promo-faq-item {
    padding: 18px 20px;
    border-radius: var(--radius-lg);
    background: var(--surface);
    border: 1px solid color-mix(in srgb, var(--brand) 10%, transparent);
}

.promo-faq-item summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--ink);
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.promo-faq-item summary::-webkit-details-marker { display: none; }

.promo-faq-item summary::after {
    content: "";
    width: 9px;
    height: 9px;
    border-right: 2px solid var(--brand);
    border-bottom: 2px solid var(--brand);
    transform: rotate(45deg);
    transition: transform 0.2s var(--ease);
    flex-shrink: 0;
    margin-top: -4px;
}

.promo-faq-item[open] summary::after {
    transform: rotate(-135deg);
    margin-top: 4px;
}

.promo-faq-item p {
    margin-top: 12px;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.55;
}

/* CTA band */
.promo-cta-band {
    padding: clamp(56px, 8vw, 80px) 0;
    background: var(--brand);
    color: #fff;
    text-align: center;
}

.promo-cta-inner h2 { margin-bottom: 12px; }
.promo-cta-inner p {
    max-width: 480px;
    margin: 0 auto 24px;
    opacity: 0.9;
    font-size: 1.05rem;
}

/* Footer */
.promo-footer {
    padding: 40px 0 48px;
    border-top: 1px solid color-mix(in srgb, var(--brand) 12%, transparent);
}

.promo-footer-inner {
    display: grid;
    gap: 16px;
    text-align: center;
}

.promo-footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 700;
    color: var(--brand);
}

.promo-footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    font-size: 14px;
    color: var(--muted);
    font-weight: 600;
}

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

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

/* Reveal animation */
[data-promo-reveal] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

[data-promo-reveal].is-visible {
    opacity: 1;
    transform: none;
}

/* Responsive */
@media (max-width: 1024px) {
    .promo-hero-grid,
    .promo-split { grid-template-columns: 1fr; }
    .promo-split--reverse .promo-phone-stack { order: 0; }
    .promo-feature-grid { grid-template-columns: repeat(2, 1fr); }
    .promo-strip-grid { grid-template-columns: repeat(2, 1fr); }
    .promo-pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .promo-price-card--featured { transform: none; }
}

@media (max-width: 768px) {
    .promo-header-nav { display: none; }
    .promo-header-login { display: none; }
    .promo-menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
    .promo-header-actions .promo-btn--sm:not(.promo-menu-toggle) {
        min-height: 40px;
        padding: 8px 14px;
        font-size: 13px;
    }
    .promo-feature-grid,
    .promo-steps,
    .promo-strip-grid,
    .promo-pricing-grid { grid-template-columns: 1fr; }
    .promo-float { display: none; }
    .promo-hub { transform: scale(0.92); }
    .promo-actions { flex-direction: column; }
    .promo-actions .promo-btn { width: 100%; }
    .promo-demo-creds div { flex: 1 1 100%; min-width: 0; }
}

body.promo-menu-open { overflow: hidden; }
