/* assets/css/index.css */
/* Extends global.css — landing page specific styles */

/* ══════════════════════════════════════════════════════════════════════════════
   LANDING WRAPPER
══════════════════════════════════════════════════════════════════════════════ */
.landing {
    overflow-x: hidden;
}

/* ══════════════════════════════════════════════════════════════════════════════
   LANDING HEADER (overrides global header with transparent start)
══════════════════════════════════════════════════════════════════════════════ */
.landing-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    height: var(--header-h);
    display: flex;
    align-items: center;
    padding: 0 40px;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
}

.landing-header.is-scrolled {
    background: rgba(13,15,20,0.88);
    backdrop-filter: blur(20px) saturate(1.6);
    -webkit-backdrop-filter: blur(20px) saturate(1.6);
    border-bottom-color: var(--border-subtle);
}

.landing-header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: -0.3px;
    color: var(--text-primary);
    transition: opacity var(--t);
}
.landing-header__logo:hover { opacity: 0.8; }

.landing-header__logo-mark {
    width: 32px;
    height: 32px;
    background: var(--accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 16px var(--accent-glow);
}
.landing-header__logo-mark svg { width: 18px; height: 18px; color: #0d0f14; }

.landing-header__nav {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: 40px;
}

.landing-header__nav a {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-secondary);
    padding: 6px 12px;
    border-radius: var(--r-sm);
    transition: color var(--t), background var(--t);
}
.landing-header__nav a:hover {
    color: var(--text-primary);
    background: var(--bg-elevated);
}

.landing-header__right {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ══════════════════════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: calc(var(--header-h) + 60px) 24px 80px;
    overflow: hidden;
}

/* Radial glow behind hero */
.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 600px;
    background: radial-gradient(ellipse at 50% 0%,
        rgba(0,212,170,0.14) 0%,
        rgba(167,139,250,0.06) 40%,
        transparent 70%);
    pointer-events: none;
}

/* Grid texture overlay */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--border-subtle) 1px, transparent 1px),
        linear-gradient(90deg, var(--border-subtle) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at 50% 0%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 0%, black 20%, transparent 70%);
    pointer-events: none;
    opacity: 0.4;
}

.hero__inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
    animation: fade-up 0.6s ease both;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-mid);
    border-radius: 99px;
    padding: 5px 14px 5px 8px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 28px;
    animation: fade-up 0.6s 0.05s ease both;
}

.hero__eyebrow-badge {
    background: var(--accent-dim);
    color: var(--accent);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 99px;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 7vw, 5rem);
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -2px;
    line-height: 1.05;
    margin-bottom: 24px;
    animation: fade-up 0.6s 0.1s ease both;
}

.hero__title em {
    font-style: normal;
    color: var(--accent);
    position: relative;
}

.hero__title em::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent);
    border-radius: 99px;
    opacity: 0.4;
    transform: translateY(4px);
}

.hero__sub {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 300;
    max-width: 520px;
    margin: 0 auto 40px;
    line-height: 1.7;
    animation: fade-up 0.6s 0.15s ease both;
}

/* ── Hero URL input form ────────────────────────────────────────────────────── */
.hero__form {
    display: flex;
    align-items: stretch;
    max-width: 520px;
    margin: 0 auto 16px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-mid);
    border-radius: var(--r-md);
    padding: 5px;
    gap: 5px;
    transition: border-color var(--t), box-shadow var(--t);
    animation: fade-up 0.6s 0.2s ease both;
}

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

.hero__input-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 0 10px;
}

.hero__input-wrap svg {
    width: 16px;
    height: 16px;
    color: var(--text-muted);
    flex-shrink: 0;
}

.hero__input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: var(--text-primary);
    padding: 8px 0;
}

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

.hero__form-btn {
    background: var(--accent);
    color: #0d0f14;
    border: none;
    border-radius: var(--r-sm);
    padding: 10px 22px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: background var(--t), box-shadow var(--t), transform var(--t);
    display: flex;
    align-items: center;
    gap: 7px;
}
.hero__form-btn:hover {
    background: #00e8bb;
    box-shadow: 0 0 20px var(--accent-glow);
    transform: translateY(-1px);
}
.hero__form-btn svg { width: 14px; height: 14px; }

.hero__form-hint {
    font-size: 0.76rem;
    color: var(--text-muted);
    animation: fade-up 0.6s 0.25s ease both;
}

.hero__form-error {
    font-size: 0.76rem;
    color: var(--red);
    margin-top: 6px;
    animation: fade-up 0.3s ease both;
}

/* ── Social proof strip ─────────────────────────────────────────────────────── */
.hero__proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 48px;
    flex-wrap: wrap;
    animation: fade-up 0.6s 0.3s ease both;
}

.hero__proof-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.78rem;
    color: var(--text-muted);
}
.hero__proof-item svg { width: 14px; height: 14px; color: var(--accent); }

.hero__proof-divider {
    width: 3px;
    height: 3px;
    background: var(--text-muted);
    border-radius: 50%;
    opacity: 0.4;
}

/* ══════════════════════════════════════════════════════════════════════════════
   MOCKUP SECTION
══════════════════════════════════════════════════════════════════════════════ */
.mockup-section {
    padding: 0 24px 100px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.mockup-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 300px;
    background: radial-gradient(ellipse at 50% 100%,
        rgba(0,212,170,0.08) 0%,
        transparent 60%);
    pointer-events: none;
}

.mockup-frame {
    background: var(--bg-elevated);
    border: 1px solid var(--border-mid);
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow:
        0 0 0 1px var(--border-subtle),
        0 40px 80px rgba(0,0,0,0.5),
        0 0 60px rgba(0,212,170,0.06);
    animation: fade-up 0.7s 0.35s ease both;
    position: relative;
}

.mockup-frame::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,212,170,0.3), transparent);
    pointer-events: none;
}

.mockup-browser-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border-subtle);
}

.mockup-browser-dots {
    display: flex;
    gap: 6px;
}
.mockup-browser-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
}
.mockup-browser-dot:nth-child(1) { background: #ef4444; opacity: 0.7; }
.mockup-browser-dot:nth-child(2) { background: var(--amber); opacity: 0.7; }
.mockup-browser-dot:nth-child(3) { background: var(--accent); opacity: 0.7; }

.mockup-browser-url {
    flex: 1;
    max-width: 320px;
    background: var(--bg-active);
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 0.72rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0 auto;
}
.mockup-browser-url svg { width: 11px; height: 11px; color: var(--accent); }

/* The actual dashboard placeholder inside the frame */
.mockup-dashboard {
    padding: 24px;
    min-height: 480px;
    background: var(--bg-base);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: auto auto 1fr;
    gap: 14px;
}

/* stat cards in mockup */
.mockup-stat {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--r-md);
    padding: 16px;
}

.mockup-stat__label {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
}

.mockup-stat__val {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -1px;
    line-height: 1;
}

.mockup-stat__sub {
    font-size: 0.65rem;
    color: var(--accent);
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 3px;
}

/* chart placeholder */
.mockup-chart {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--r-md);
    padding: 16px;
    grid-column: span 3;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mockup-chart__label {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 600;
}

.mockup-chart__bars {
    flex: 1;
    display: flex;
    align-items: flex-end;
    gap: 4px;
    padding-top: 10px;
}

.mockup-chart__bar {
    flex: 1;
    background: var(--accent-dim);
    border-radius: 3px 3px 0 0;
    border: 1px solid rgba(0,212,170,0.2);
    position: relative;
    transition: background var(--t);
}
.mockup-chart__bar:nth-child(3n+1) { background: rgba(0,212,170,0.18); }
.mockup-chart__bar:nth-child(3n+2) { background: rgba(0,212,170,0.12); }
.mockup-chart__bar--peak { background: rgba(0,212,170,0.40) !important; border-color: var(--accent); }

/* side list in mockup */
.mockup-list {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--r-md);
    padding: 14px;
    grid-column: span 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    grid-row: span 2;
}

.mockup-list__head {
    font-size: 0.65rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.mockup-list__row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mockup-list__label {
    flex: 1;
    font-size: 0.68rem;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mockup-list__bar-wrap {
    width: 48px;
    height: 3px;
    background: var(--bg-active);
    border-radius: 99px;
    overflow: hidden;
}

.mockup-list__bar {
    height: 100%;
    background: var(--accent);
    border-radius: 99px;
    opacity: 0.6;
}

.mockup-list__count {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-muted);
    font-family: var(--font-display);
    width: 28px;
    text-align: right;
}

/* bottom row spans */
.mockup-wide {
    grid-column: span 3;
}

/* Live visitors badge in mockup */
.mockup-live {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--r-md);
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mockup-live__count {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.mockup-live__meta { flex: 1; }
.mockup-live__label { font-size: 0.7rem; color: var(--text-secondary); font-weight: 500; }
.mockup-live__sub { font-size: 0.62rem; color: var(--text-muted); margin-top: 2px; }


/* ══════════════════════════════════════════════════════════════════════════════
   SECTION WRAPPER
══════════════════════════════════════════════════════════════════════════════ */
.section {
    padding: 80px 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.section--full {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.section--dark {
    background: var(--bg-surface);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.section__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-dim);
    padding: 4px 12px;
    border-radius: 99px;
    margin-bottom: 16px;
}

.section__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 16px;
}

.section__sub {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 300;
    max-width: 520px;
    line-height: 1.7;
}

.section--center {
    text-align: center;
}

.section--center .section__sub {
    margin: 0 auto;
}


/* ══════════════════════════════════════════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════════════════════════════════════════ */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 56px;
    position: relative;
}

/* Connecting line */
.steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(16.66% + 28px);
    right: calc(16.66% + 28px);
    height: 1px;
    background: linear-gradient(90deg,
        var(--accent) 0%,
        var(--accent-dim) 50%,
        var(--accent) 100%);
    opacity: 0.3;
}

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

.step__num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--bg-elevated);
    border: 1px solid var(--border-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1rem;
    color: var(--accent);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    transition: background var(--t), box-shadow var(--t);
    flex-shrink: 0;
}

.step:hover .step__num {
    background: var(--accent-dim);
    box-shadow: 0 0 20px var(--accent-glow);
}

.step__icon {
    width: 48px;
    height: 48px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 20px;
}
.step__icon svg { width: 22px; height: 22px; }

.step__title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.step__body {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.step__code {
    display: inline-block;
    margin-top: 12px;
    background: var(--bg-active);
    border: 1px solid var(--border-mid);
    border-radius: 6px;
    padding: 4px 10px;
    font-family: 'Courier New', monospace;
    font-size: 0.7rem;
    color: var(--accent);
}


/* ══════════════════════════════════════════════════════════════════════════════
   WHAT MAKES US DIFFERENT (USPs)
══════════════════════════════════════════════════════════════════════════════ */
.usp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.usp-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--r-lg);
    padding: 28px;
    position: relative;
    overflow: hidden;
    transition: border-color var(--t), transform var(--t), box-shadow var(--t);
}

.usp-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.07), transparent);
}

.usp-card:hover {
    border-color: var(--border-mid);
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.usp-card--accent { border-color: rgba(0,212,170,0.25); }
.usp-card--accent::after {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 140px; height: 140px;
    background: radial-gradient(circle, rgba(0,212,170,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.usp-card--violet::after {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 140px; height: 140px;
    background: radial-gradient(circle, rgba(167,139,250,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.usp-card--amber::after {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 140px; height: 140px;
    background: radial-gradient(circle, rgba(245,166,35,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.usp-card__icon {
    width: 44px;
    height: 44px;
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.usp-card__icon svg { width: 22px; height: 22px; }

.usp-card__icon--teal   { background: var(--accent-dim);  color: var(--accent); }
.usp-card__icon--violet { background: var(--violet-dim);  color: var(--violet); }
.usp-card__icon--amber  { background: var(--amber-dim);   color: var(--amber); }
.usp-card__icon--rose   { background: rgba(251,113,133,0.12); color: #fb7185; }

.usp-card__title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.usp-card__body {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.75;
}

.usp-card__tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 14px;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 99px;
}

.usp-card__tag--teal   { background: var(--accent-dim); color: var(--accent); }
.usp-card__tag--violet { background: var(--violet-dim); color: var(--violet); }
.usp-card__tag--amber  { background: var(--amber-dim);  color: var(--amber); }
.usp-card__tag--rose   { background: rgba(251,113,133,0.12); color: #fb7185; }


/* ══════════════════════════════════════════════════════════════════════════════
   PRICING (inherit pricing.css styles, just add section wrapper)
══════════════════════════════════════════════════════════════════════════════ */
.pricing-section {
    padding: 80px 24px;
    background: var(--bg-base);
}

.pricing-section .pricing-hero {
    padding: 0 0 48px;
}


/* ══════════════════════════════════════════════════════════════════════════════
   FEATURES (video/gif blocks)
══════════════════════════════════════════════════════════════════════════════ */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-top: 56px;
}

.feature-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.feature-item--flip {
    direction: rtl;
}
.feature-item--flip > * {
    direction: ltr;
}

.feature-item__media {
    background: var(--bg-elevated);
    border: 1px solid var(--border-mid);
    border-radius: var(--r-xl);
    overflow: hidden;
    aspect-ratio: 16/10;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.feature-item__media::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,212,170,0.25), transparent);
    pointer-events: none;
}

.feature-item__media video,
.feature-item__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-item__media-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--text-muted);
    background: var(--bg-base);
}

.feature-item__media-placeholder svg { width: 40px; height: 40px; opacity: 0.2; }
.feature-item__media-placeholder span { font-size: 0.75rem; opacity: 0.4; }

/* Add a pulsing accent glow to feature media */
.feature-item__media-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-base);
    position: relative;
    overflow: hidden;
}

.feature-item__media-inner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(0,212,170,0.04) 0%,
        transparent 50%,
        rgba(167,139,250,0.04) 100%);
    pointer-events: none;
}

.feature-item__text {}

.feature-item__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.feature-item__title {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.8px;
    line-height: 1.2;
    margin-bottom: 14px;
}

.feature-item__body {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

.feature-item__points {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.feature-item__point {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.feature-item__point-check {
    width: 18px;
    height: 18px;
    background: var(--accent-dim);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 1px;
}
.feature-item__point-check svg { width: 10px; height: 10px; }


/* ══════════════════════════════════════════════════════════════════════════════
   MAKE THE SWITCH
══════════════════════════════════════════════════════════════════════════════ */
.switch-section {
    padding: 80px 24px;
}

.switch-inner {
    max-width: 1100px;
    margin: 0 auto;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--r-xl);
    padding: 64px 56px;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 56px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.switch-inner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-glow), transparent);
}

.switch-inner::after {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(0,212,170,0.06) 0%, transparent 60%);
    pointer-events: none;
}

.switch-text {}

.switch-text__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 16px;
}

.switch-text__body {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.75;
    margin-bottom: 28px;
    max-width: 480px;
}

.switch-competitors {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.switch-competitors__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: var(--r-md);
    padding: 14px 18px;
    transition: border-color var(--t);
}

.switch-competitors__item:hover { border-color: var(--border-mid); }

.switch-competitors__name {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.switch-competitors__detail {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.switch-competitors__price {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
}

.switch-competitors__price--them { color: var(--text-muted); text-decoration: line-through; }
.switch-competitors__price--us   { color: var(--accent); }

.switch-competitors__vs {
    text-align: center;
    padding: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
}

.switch-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

.switch-cta .btn {
    width: 100%;
    justify-content: center;
}

.switch-cta__note {
    font-size: 0.76rem;
    color: var(--text-muted);
    text-align: center;
    width: 100%;
    line-height: 1.6;
}


/* ══════════════════════════════════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════════════════════════════════ */
.landing-faq {
    max-width: 700px;
    margin: 0 auto;
    padding: 80px 24px;
}

.landing-faq__eyebrow {
    text-align: center;
    margin-bottom: 8px;
}

.landing-faq__title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.8px;
    text-align: center;
    margin-bottom: 12px;
}

.landing-faq__sub {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 40px;
}


/* ══════════════════════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════════════════════ */
.footer {
    border-top: 1px solid var(--border-subtle);
    padding: 48px 40px 32px;
    background: var(--bg-surface);
}

.footer__top {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 64px;
    margin-bottom: 40px;
}

.footer__brand {}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-primary);
    margin-bottom: 14px;
}

.footer__logo-mark {
    width: 28px;
    height: 28px;
    background: var(--accent);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 12px var(--accent-glow);
}
.footer__logo-mark svg { width: 15px; height: 15px; color: #0d0f14; }

.footer__tagline {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 20px;
    max-width: 220px;
}

.footer__gdpr {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    color: var(--accent);
    background: var(--accent-dim);
    padding: 4px 10px;
    border-radius: 99px;
    font-weight: 600;
}
.footer__gdpr svg { width: 11px; height: 11px; }

.footer__links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer__col-title {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.footer__col-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer__col-list a {
    font-size: 0.83rem;
    color: var(--text-secondary);
    transition: color var(--t);
}
.footer__col-list a:hover { color: var(--text-primary); }

.footer__bottom {
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer__copy {
    font-size: 0.76rem;
    color: var(--text-muted);
}

.footer__copy a {
    color: var(--text-secondary);
    transition: color var(--t);
}
.footer__copy a:hover { color: var(--accent); }

.footer__legal {
    display: flex;
    gap: 20px;
}

.footer__legal a {
    font-size: 0.76rem;
    color: var(--text-muted);
    transition: color var(--t);
}
.footer__legal a:hover { color: var(--text-secondary); }


/* ══════════════════════════════════════════════════════════════════════════════
   SCROLL-TRIGGERED ANIMATIONS
══════════════════════════════════════════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }


/* ══════════════════════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
    .usp-grid          { grid-template-columns: 1fr; }
    .feature-item      { grid-template-columns: 1fr; gap: 28px; }
    .feature-item--flip { direction: ltr; }
    .switch-inner      { grid-template-columns: 1fr; gap: 32px; padding: 36px 28px; }
    .steps             { grid-template-columns: 1fr; gap: 40px; }
    .steps::before     { display: none; }
    .footer__top       { grid-template-columns: 1fr; gap: 32px; }
    .footer__links     { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .landing-header__nav { display: none; }
    .hero__title         { letter-spacing: -1px; }
    .hero__form          { flex-direction: column; }
    .hero__form-btn      { justify-content: center; }
    .mockup-dashboard    { grid-template-columns: 1fr 1fr; min-height: 320px; }
    .section             { padding: 56px 20px; }
    .features-list       { gap: 48px; }
}

@media (max-width: 480px) {
    .footer__links       { grid-template-columns: 1fr; }
    .hero__proof         { flex-direction: column; gap: 8px; }
    .hero__proof-divider { display: none; }
}


/* ══════════════════════════════════════════════════════════════════════════════
   MOUSEMETRICS INSIGHT SECTION
══════════════════════════════════════════════════════════════════════════════ */
.insight-section {
    padding: 80px 24px 100px;
    background: var(--bg-base);
    position: relative;
    overflow: hidden;
}

.insight-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--border-subtle) 1px, transparent 1px),
        linear-gradient(90deg, var(--border-subtle) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at 70% 50%, black 0%, transparent 65%);
    -webkit-mask-image: radial-gradient(ellipse at 70% 50%, black 0%, transparent 65%);
    pointer-events: none;
    opacity: 0.35;
}

.insight-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 520px;
    gap: 72px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* ── Left copy ───────────────────────────────────────────────────────────── */
.insight-copy {}

.insight-copy__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -1.2px;
    line-height: 1.1;
    margin-bottom: 18px;
}

.insight-copy__title span {
    color: var(--accent);
}

.insight-copy__body {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 420px;
}

.insight-copy__features {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.insight-copy__feat {
    display: flex;
    align-items: flex-start;
    gap: 13px;
}

.insight-copy__feat-icon {
    width: 32px;
    height: 32px;
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}
.insight-copy__feat-icon svg { width: 16px; height: 16px; }
.insight-copy__feat-icon--teal   { background: var(--accent-dim);  color: var(--accent); }
.insight-copy__feat-icon--violet { background: var(--violet-dim);  color: var(--violet); }
.insight-copy__feat-icon--amber  { background: var(--amber-dim);   color: var(--amber); }

.insight-copy__feat-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.insight-copy__feat-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ── Widget shell ────────────────────────────────────────────────────────── */
.insight-widget {
    position: relative;
}

/* Subtle static border glow — replaces the rotating ring */
.insight-widget::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: calc(var(--r-xl) + 1px);
    background: linear-gradient(
        160deg,
        var(--insight-glow, rgba(0,212,170,0.3)) 0%,
        transparent 50%,
        var(--insight-glow, rgba(0,212,170,0.15)) 100%
    );
    z-index: 0;
    transition: background 0.6s ease;
    pointer-events: none;
}

.insight-card {
    position: relative;
    z-index: 1;
    background: var(--bg-surface);
    border: 1px solid var(--border-mid);
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0,0,0,0.4);
}

/* ── Card header bar ─────────────────────────────────────────────────────── */
.insight-card__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border-subtle);
}

.insight-card__site {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.76rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.insight-card__site-dot {
    width: 7px;
    height: 7px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--accent);
}

.insight-card__time {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-family: 'Courier New', monospace;
}

/* ── Status badge inside card ─────────────────────────────────────────────── */
.insight-card__status-row {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 0 0;
}

.insight-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 99px;
    transition: background 0.5s ease, color 0.5s ease, box-shadow 0.5s ease;
}

.insight-status-badge__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    animation: pulse-dot 1.8s ease-in-out infinite;
}

/* ── Gauge area ──────────────────────────────────────────────────────────── */
.insight-gauge-wrap {
    padding: 4px 32px 0;
    position: relative;
}

.insight-gauge-wrap svg {
    width: 100%;
    height: auto;
    display: block;
    overflow: hidden;
}

/* Animated gauge fill */
#ins-gauge-fill {
    transition: stroke-dasharray 1s cubic-bezier(0.4, 0, 0.2, 1),
                stroke 0.6s ease,
                filter 0.6s ease;
}

/* Zone label text inside SVG */
.gauge-zone-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 9px;
    font-weight: 500;
    fill: rgba(255,255,255,0.25);
}

.gauge-center-value {
    font-family: 'DM Sans', sans-serif;
    font-weight: 800;
    fill: #eef0f6;
    transition: opacity 0.3s ease;
}

.gauge-center-label {
    font-family: 'DM Sans', sans-serif;
    fill: rgba(139,144,168,0.8);
    transition: opacity 0.3s ease;
}

/* ── Narrative block ─────────────────────────────────────────────────────── */
.insight-narrative {
    padding: 0 22px 16px;
    position: relative;
}

.insight-narrative__headline {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.insight-narrative__emoji {
    font-size: 1.1rem;
    line-height: 1;
}

.insight-narrative__story {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 300;
    min-height: 56px;
    transition: opacity 0.25s ease;
}

.insight-narrative__story.is-fading {
    opacity: 0;
}

/* ── Data chips ──────────────────────────────────────────────────────────── */
.insight-chips {
    display: flex;
    gap: 7px;
    padding: 0 22px 18px;
    flex-wrap: wrap;
}

.insight-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 11px;
    background: var(--bg-active);
    border: 1px solid var(--border-subtle);
    border-radius: 99px;
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--text-secondary);
    white-space: nowrap;
    transition: border-color 0.4s ease, color 0.4s ease;
}

.insight-chip svg {
    width: 11px;
    height: 11px;
    flex-shrink: 0;
}

/* ── Scenario nav ────────────────────────────────────────────────────────── */
.insight-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 22px 16px;
    border-top: 1px solid var(--border-subtle);
    padding-top: 14px;
    justify-content: space-between;
}

.insight-nav__dots {
    display: flex;
    gap: 7px;
    align-items: center;
}

.insight-nav__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--bg-active);
    border: 1px solid var(--border-mid);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    padding: 0;
}

.insight-nav__dot:hover {
    transform: scale(1.2);
    background: var(--bg-hover);
}

.insight-nav__dot.is-active {
    width: 22px;
    border-radius: 99px;
}

.insight-nav__hint {
    font-size: 0.68rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}
.insight-nav__hint svg { width: 11px; height: 11px; opacity: 0.5; }

/* ── Progress bar (auto-advance timer) ───────────────────────────────────── */
.insight-progress {
    height: 2px;
    background: var(--border-subtle);
    border-radius: 0 0 var(--r-xl) var(--r-xl);
    overflow: hidden;
}

.insight-progress__bar {
    height: 100%;
    width: 0%;
    border-radius: 99px;
    animation: insight-progress 5s linear forwards;
    transition: background 0.5s ease;
}

@keyframes insight-progress {
    from { width: 0%; }
    to   { width: 100%; }
}

/* ══════════════════════════════════════════════════════════════════════════════
   INSIGHT — RESPONSIVE
══════════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1000px) {
    .insight-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .insight-copy__body { max-width: none; }
}

@media (max-width: 600px) {
    .insight-gauge-wrap { padding: 4px 16px 0; }
    .insight-chips      { gap: 5px; }
    .insight-chip       { font-size: 0.68rem; padding: 4px 9px; }
}
