/* StreamBuddy public marketing site.
   ----------------------------------------------------------------------------
   Design language is lifted directly from the real app (static/css/styles.css,
   home.css, subscriptions.css) so the marketing site feels like the product,
   not a generic dark-SaaS template:
     - indigo->blue gradients (NOT flat blue) for primary actions, matching
       .sb-page-nav__btn--active;
     - a purple->blue "live/active" gradient for the character + featured states,
       matching the active-bot / active-tab gradient;
     - glass cards: rgba(15,23,42,.8) fill, semi-transparent slate borders,
       shadows cast from below (the app's --sb-shadow-* scale);
     - the "living bot" motif — a circular avatar with a glowing green status dot
       (the app's pilot-light), here given idle motion;
     - the app's micro-motion: translateY(-1px) hover lift, soft pulses.
   Character-first and conversational: warmer, rounder, more breathing room than
   the dense app, but unmistakably the same family. */

:root {
    /* ---- Surfaces (from --sb-color-* in styles.css) ---- */
    --mkt-bg: #020617;
    --mkt-bg-2: #0f172a;
    --mkt-surface: #0f172a;
    --mkt-surface-glass: rgba(15, 23, 42, 0.8);
    --mkt-surface-glass-2: rgba(15, 23, 42, 0.92);
    --mkt-panel-2: #16213f;        /* --sb-color-surface-highlight */

    /* ---- Text ---- */
    --mkt-text: #e2e8f0;           /* --sb-color-text-primary */
    --mkt-text-bright: #f8fafc;
    --mkt-text-soft: #cbd5f5;      /* the app's "on dark panel" text */
    --mkt-muted: #94a3b8;          /* --sb-color-text-muted */

    /* ---- Borders ---- */
    --mkt-border: rgba(51, 65, 85, 0.65);
    --mkt-border-soft: rgba(148, 163, 184, 0.18);
    --mkt-border-glow: rgba(129, 140, 248, 0.7);   /* indigo, active-state border */

    /* ---- Accents ---- */
    --mkt-blue: #3b82f6;
    --mkt-blue-strong: #2563eb;
    --mkt-indigo: #6366f1;
    --mkt-indigo-light: #818cf8;
    --mkt-cyan: #00d2ff;
    --mkt-violet: #4c1d95;
    --mkt-success: #22c55e;
    --mkt-accent-2: #93c5fd;       /* light-blue for headline highlight text */

    /* ---- Signature gradients (verbatim grammar from the app) ---- */
    /* primary action — sb-page-nav__btn--active */
    --mkt-grad-primary: linear-gradient(135deg, rgba(99, 102, 241, 0.95), rgba(37, 99, 235, 0.95));
    /* "live/active" — active bot / active tab */
    --mkt-grad-live: linear-gradient(180deg, rgba(76, 29, 149, 0.92), rgba(30, 64, 175, 0.95));
    /* energetic CTA accent — the app's action button (blue->cyan) */
    --mkt-grad-spark: linear-gradient(90deg, #3a7bd5, #00d2ff);

    /* ---- Shadows (--sb-shadow-* scale: cast from below, dark) ---- */
    --mkt-shadow-sm: 0 4px 12px rgba(2, 6, 23, 0.35);
    --mkt-shadow-md: 0 8px 24px rgba(2, 6, 23, 0.45);
    --mkt-shadow-lg: 0 24px 60px rgba(2, 6, 23, 0.65);
    --mkt-shadow-glow: 0 16px 35px rgba(37, 99, 235, 0.35);   /* active-button glow */

    --mkt-radius: 1rem;            /* app card radius (16px) */
    --mkt-radius-btn: 0.75rem;     /* app button radius (12px) */
    --mkt-max: 1140px;             /* outer content width — every section uses this */
    --mkt-measure: 760px;          /* readable text column (heads, FAQ, prose) */
}

* { box-sizing: border-box; }

.mkt-body {
    margin: 0;
    font-family: Arial, sans-serif;   /* same family as the app (styles.css:29) */
    /* The app's main background is a top-to-bottom surface->background gradient. */
    background: linear-gradient(180deg, var(--mkt-surface) 0%, var(--mkt-bg) 100%);
    background-attachment: fixed;
    color: var(--mkt-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { color: inherit; }
.mkt-shell { max-width: var(--mkt-max); margin: 0 auto; padding: 0 24px; }

/* --- Header ------------------------------------------------------------- */
.mkt-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(2, 6, 23, 0.7);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.25s ease, background 0.25s ease;
}
.mkt-header.is-scrolled {
    border-bottom-color: var(--mkt-border);
    background: rgba(2, 6, 23, 0.9);
}
.mkt-header-inner {
    max-width: var(--mkt-max);
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    gap: 24px;
}
.mkt-brand {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: -0.01em;
    text-decoration: none;
    color: var(--mkt-text-bright);
}
/* Little living-bot glyph next to the wordmark — the brand's pilot light. */
.mkt-brand-dot {
    width: 11px;
    height: 11px;
    border-radius: 999px;
    background: var(--mkt-success);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.18), 0 0 12px rgba(34, 197, 94, 0.7);
    animation: mkt-breathe 2.6s ease-in-out infinite;
}
.mkt-nav { display: flex; gap: 22px; margin-left: auto; }
.mkt-nav a {
    text-decoration: none;
    color: var(--mkt-text-soft);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.18s ease;
}
.mkt-nav a:hover { color: var(--mkt-text-bright); }
.mkt-login-form { margin: 0; }

/* --- Buttons (app gradient grammar) ------------------------------------- */
.mkt-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.6rem 1.35rem;
    border-radius: var(--mkt-radius-btn);
    font-weight: 700;
    font-size: 0.95rem;
    font-family: inherit;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid transparent;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}
.mkt-btn:hover { transform: translateY(-1px); }   /* the app's signature lift */

/* Primary = the app's active-tab gradient + glow. .mkt-btn-twitch kept as alias. */
.mkt-btn-primary,
.mkt-btn-twitch {
    background: var(--mkt-grad-primary);
    color: var(--mkt-text-bright);
    border-color: rgba(129, 140, 248, 0.9);
    box-shadow: var(--mkt-shadow-glow);
}
.mkt-btn-primary:hover,
.mkt-btn-twitch:hover { box-shadow: 0 20px 42px rgba(37, 99, 235, 0.45); }

/* Secondary = the app's translucent-blue button. */
.mkt-btn-ghost {
    background: rgba(37, 99, 235, 0.15);
    color: var(--mkt-text-bright);
    border-color: rgba(96, 165, 250, 0.4);
}
.mkt-btn-ghost:hover { background: rgba(37, 99, 235, 0.28); }
.mkt-btn-lg { padding: 0.8rem 1.7rem; font-size: 1.05rem; }

/* --- Hero --------------------------------------------------------------- */
.mkt-hero {
    position: relative;
    padding: 86px 24px 70px;
    overflow: hidden;
}
.mkt-hero::before {
    /* soft indigo/blue aurora, off-center (not the symmetric AI-SaaS blob) */
    content: "";
    position: absolute;
    inset: -30% -20% auto 30%;
    height: 620px;
    background:
        radial-gradient(closest-side, rgba(99, 102, 241, 0.22), transparent 72%),
        radial-gradient(closest-side, rgba(37, 99, 235, 0.16), transparent 70%);
    background-position: 20% 0, 80% 30%;
    background-repeat: no-repeat;
    background-size: 55% 100%, 45% 80%;
    filter: blur(6px);
    z-index: 0;
    pointer-events: none;
}
.mkt-hero-inner {
    position: relative;
    z-index: 1;
    max-width: var(--mkt-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 48px;
    align-items: center;
}
.mkt-hero-copy { max-width: 520px; }

.mkt-hero h1 {
    font-size: clamp(2.3rem, 5.2vw, 3.6rem);
    line-height: 1.06;
    letter-spacing: -0.02em;
    margin: 0 0 18px;
    font-weight: 800;
    color: var(--mkt-text-bright);
}
.mkt-hero h1 .mkt-grad {
    background: linear-gradient(100deg, var(--mkt-indigo-light), var(--mkt-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.mkt-hero p.mkt-lead {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: var(--mkt-muted);
    margin: 0 0 30px;
}
.mkt-hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* --- Hero video stage --------------------------------------------------- */
/* No container card — the video sits on its own, sized a touch larger than the
   hero copy column so it reads as the centerpiece. The wider-than-column width
   is allowed to overflow toward the viewport edge on large screens. */
.mkt-stage {
    position: relative;
    z-index: 1;
    justify-self: end;
    width: 100%;
}
.mkt-stage-screen {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #05070f;
    aspect-ratio: 16 / 9;
    box-shadow: var(--mkt-shadow-lg);
    border: 1px solid var(--mkt-border-soft);
}
.mkt-stage-screen img,
.mkt-stage-screen video { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Hero video sits inside the stage screen; clickable to unmute. */
.mkt-hero-video { cursor: pointer; }

/* --- Generic section ---------------------------------------------------- */
.mkt-section { position: relative; padding: 80px 24px; }
.mkt-section.alt {
    background:
        linear-gradient(180deg, rgba(15, 23, 42, 0.5), rgba(2, 6, 23, 0.2));
}
.mkt-section-head { max-width: var(--mkt-measure); margin: 0 auto 52px; }
.mkt-section-head.center { text-align: center; }
.mkt-section-head .mkt-kicker {
    color: var(--mkt-indigo-light);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.mkt-section-head h2 {
    font-size: clamp(1.7rem, 3.6vw, 2.4rem);
    letter-spacing: -0.02em;
    margin: 12px 0 14px;
    font-weight: 800;
    color: var(--mkt-text-bright);
}
.mkt-section-head p { color: var(--mkt-muted); font-size: 1.08rem; margin: 0; }

/* --- Feature panels (glass cards) --------------------------------------- */
/* 6-column grid so cards can span 2 (=> 3 per row) and the trailing row can be
   centered. For a 5-card set, the last two are offset to sit centered under the
   top three instead of left-aligned. */
.mkt-features {
    max-width: var(--mkt-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 22px;
}
.mkt-features > .mkt-card { grid-column: span 2; }
/* 5 cards => row 2 holds cards 4 & 5, centered: card 4 starts at column 2. */
.mkt-features.is-5 > .mkt-card:nth-child(4) { grid-column: 2 / span 2; }
.mkt-features.is-5 > .mkt-card:nth-child(5) { grid-column: 4 / span 2; }
/* 6 cards (.is-6) => two even rows of three via the default span-2 rule above. */
.mkt-card {
    position: relative;
    background: var(--mkt-surface-glass);
    border: 1px solid var(--mkt-border);
    border-radius: var(--mkt-radius);
    box-shadow: var(--mkt-shadow-md);
    padding: 26px 24px;
    overflow: hidden;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.mkt-card:hover {
    transform: translateY(-3px);
    border-color: var(--mkt-border-glow);
    box-shadow: var(--mkt-shadow-lg);
}
/* a faint indigo wash that lights up on hover, like the app's enabled cards */
.mkt-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(37, 99, 235, 0.0), rgba(37, 99, 235, 0.0));
    transition: background 0.25s ease;
    pointer-events: none;
}
.mkt-card:hover::after { background: linear-gradient(180deg, rgba(99, 102, 241, 0.08), transparent 60%); }
.mkt-card-icon {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    display: grid;
    place-items: center;
    font-size: 1.4rem;
    background: var(--mkt-grad-primary);
    box-shadow: var(--mkt-shadow-glow);
    margin-bottom: 16px;
}
.mkt-card h3 { margin: 0 0 9px; font-size: 1.2rem; font-weight: 800; color: var(--mkt-text-bright); }
.mkt-card p { margin: 0 0 14px; color: var(--mkt-muted); font-size: 0.99rem; }
.mkt-card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.mkt-card ul li { position: relative; padding-left: 24px; color: var(--mkt-text-soft); font-size: 0.95rem; }
.mkt-card ul li::before {
    content: "";
    position: absolute;
    left: 0; top: 7px;
    width: 12px; height: 12px;
    border-radius: 4px;
    background: var(--mkt-grad-primary);
    box-shadow: inset 0 0 0 2px rgba(2, 6, 23, 0.3);
}
/* the Twitch-integration card gets the "live" purple->blue treatment */
.mkt-card.is-live { border-color: var(--mkt-border-glow); }
.mkt-card.is-live .mkt-card-icon { background: var(--mkt-grad-live); }

/* --- Conversation strip (chat-style "watch it work") -------------------- */
.mkt-chat {
    max-width: 760px;
    margin: 0 auto;
    display: grid;
    gap: 14px;
}
.mkt-bubble {
    max-width: 80%;
    padding: 13px 17px;
    border-radius: 16px;
    font-size: 1rem;
    box-shadow: var(--mkt-shadow-sm);
}
.mkt-bubble.them {
    justify-self: start;
    background: rgba(30, 41, 59, 0.85);
    border: 1px solid var(--mkt-border);
    border-bottom-left-radius: 5px;
    color: var(--mkt-text-soft);
}
.mkt-bubble.bot {
    justify-self: end;
    background: var(--mkt-grad-live);
    border: 1px solid var(--mkt-border-glow);
    border-bottom-right-radius: 5px;
    color: var(--mkt-text-bright);
}
.mkt-bubble .who { display: block; font-size: 0.72rem; opacity: 0.75; margin-bottom: 3px; }

/* --- Pricing (glass plan cards, featured = live gradient) --------------- */
.mkt-pricing-grid {
    max-width: var(--mkt-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    align-items: stretch;
}
.mkt-plan {
    display: flex;
    flex-direction: column;
    background: var(--mkt-surface-glass);
    border: 1px solid var(--mkt-border);
    border-radius: var(--mkt-radius);
    box-shadow: var(--mkt-shadow-md);
    padding: 28px;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.mkt-plan:hover { transform: translateY(-3px); box-shadow: var(--mkt-shadow-lg); }
.mkt-plan.featured {
    border-color: var(--mkt-border-glow);
    background: linear-gradient(180deg, rgba(30, 41, 89, 0.55), var(--mkt-surface-glass));
    box-shadow: var(--mkt-shadow-glow);
}
/* Standard plan not yet on sale: grey it out, drop the glow/hover lift. */
.mkt-plan.is-coming-soon {
    opacity: 0.62;
    filter: grayscale(0.4);
    box-shadow: var(--mkt-shadow-md);
}
.mkt-plan.is-coming-soon:hover { transform: none; box-shadow: var(--mkt-shadow-md); }
.mkt-plan-price--soon { font-size: 1.35rem; color: var(--mkt-muted); letter-spacing: 0.01em; }
.mkt-plan-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--mkt-grad-primary);
    color: var(--mkt-text-bright);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 999px;
    box-shadow: var(--mkt-shadow-glow);
}
.mkt-plan h3 { margin: 0 0 6px; font-size: 1.3rem; font-weight: 800; color: var(--mkt-text-bright); }
.mkt-plan-price { font-size: 2rem; font-weight: 800; margin: 8px 0 2px; color: var(--mkt-text-bright); }
.mkt-plan-price small { font-size: 0.95rem; color: var(--mkt-muted); font-weight: 600; }
.mkt-plan-sub { color: var(--mkt-muted); font-size: 0.95rem; margin: 0 0 18px; }
.mkt-plan ul { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 10px; }
.mkt-plan ul li { position: relative; padding-left: 26px; color: var(--mkt-text-soft); font-size: 0.97rem; }
.mkt-plan ul li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--mkt-indigo-light); font-weight: 800; }
.mkt-plan-cta { margin-top: auto; }
.mkt-plan-cta .mkt-btn { width: 100%; justify-content: center; }
.mkt-pricing-note {
    max-width: var(--mkt-max);
    margin: 34px auto 0;
    color: var(--mkt-muted);
    font-size: 0.95rem;
    text-align: center;
    background: var(--mkt-surface-glass);
    border: 1px solid var(--mkt-border);
    border-radius: var(--mkt-radius);
    padding: 20px 26px;
}

/* --- FAQ ---------------------------------------------------------------- */
.mkt-faq { max-width: var(--mkt-max); margin: 0 auto; display: grid; gap: 14px; }
.mkt-faq details {
    background: var(--mkt-surface-glass);
    border: 1px solid var(--mkt-border);
    border-radius: 14px;
    padding: 18px 22px;
    transition: border-color 0.2s ease;
}
.mkt-faq details[open] { border-color: var(--mkt-border-glow); }
.mkt-faq summary { cursor: pointer; font-weight: 700; font-size: 1.05rem; list-style: none; color: var(--mkt-text-bright); }
.mkt-faq summary::-webkit-details-marker { display: none; }
.mkt-faq summary::after { content: "+"; float: right; color: var(--mkt-indigo-light); font-weight: 800; }
.mkt-faq details[open] summary::after { content: "–"; }
.mkt-faq p { color: var(--mkt-muted); margin: 12px 0 0; }
.mkt-faq a { color: var(--mkt-accent-2); }

/* --- Contact ------------------------------------------------------------ */
.mkt-contact-grid {
    max-width: var(--mkt-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 44px;
    align-items: start;
}
.mkt-contact-info h3 { margin: 0 0 14px; font-size: 1.4rem; font-weight: 800; color: var(--mkt-text-bright); }
.mkt-contact-info p { color: var(--mkt-muted); margin: 0 0 18px; }
.mkt-contact-block { margin-bottom: 20px; }
.mkt-contact-block .lbl { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--mkt-indigo-light); font-weight: 700; }
.mkt-contact-block .val { color: var(--mkt-text-soft); margin-top: 4px; }
.mkt-contact-block .val a { color: var(--mkt-accent-2); text-decoration: none; }

.mkt-form {
    background: linear-gradient(180deg, var(--mkt-surface-glass-2), rgba(2, 6, 23, 0.82));
    border: 1px solid var(--mkt-border);
    border-radius: var(--mkt-radius);
    box-shadow: var(--mkt-shadow-md);
    padding: 28px;
}
.mkt-form label { display: block; font-weight: 600; font-size: 0.86rem; margin: 0 0 6px; color: var(--mkt-text-soft); }
.mkt-form .mkt-field { margin-bottom: 18px; }
.mkt-form input,
.mkt-form textarea {
    width: 100%;
    background: rgba(30, 41, 59, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.6);
    border-radius: 0.6rem;
    padding: 12px 14px;
    color: var(--mkt-text);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.mkt-form input:focus,
.mkt-form textarea:focus {
    outline: none;
    border-color: rgba(96, 165, 250, 0.8);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.28);   /* the app's focus ring */
}
.mkt-form textarea { min-height: 140px; resize: vertical; }
.mkt-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.mkt-form-status { margin-top: 14px; font-weight: 600; min-height: 1.2em; }
.mkt-form-status.ok { color: var(--mkt-success); }
.mkt-form-status.err { color: #fb7185; }

/* --- Policy / legal document pages -------------------------------------- */
.mkt-policy-wrap { max-width: 820px; margin: 0 auto; padding: 60px 24px 80px; }
.mkt-policy-wrap h1 { font-size: 2.1rem; font-weight: 800; margin: 0 0 6px; letter-spacing: -0.02em; color: var(--mkt-text-bright); }
.mkt-policy-meta { color: var(--mkt-muted); font-size: 0.9rem; margin-bottom: 30px; }
.mkt-policy-body {
    background: var(--mkt-surface-glass);
    border: 1px solid var(--mkt-border);
    border-radius: var(--mkt-radius);
    box-shadow: var(--mkt-shadow-md);
    padding: 30px 34px;
    color: var(--mkt-text-soft);
}
.mkt-policy-body h2 { font-size: 1.35rem; margin: 30px 0 12px; font-weight: 800; color: var(--mkt-text-bright); }
.mkt-policy-body h3 { font-size: 1.12rem; margin: 22px 0 10px; font-weight: 700; color: var(--mkt-text); }
.mkt-policy-body p, .mkt-policy-body li { color: var(--mkt-muted); }
.mkt-policy-body a { color: var(--mkt-accent-2); }
.mkt-policy-body ul, .mkt-policy-body ol { padding-left: 22px; }
.mkt-policy-body table { width: 100%; border-collapse: collapse; margin: 16px 0; }
.mkt-policy-body th, .mkt-policy-body td { border: 1px solid var(--mkt-border); padding: 8px 12px; text-align: left; }
.mkt-policy-body code { background: var(--mkt-panel-2); padding: 2px 6px; border-radius: 5px; font-family: ui-monospace, Menlo, Consolas, monospace; }

/* --- Scroll-reveal ------------------------------------------------------ */
.mkt-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.mkt-reveal.is-visible { opacity: 1; transform: none; }

/* --- Footer ------------------------------------------------------------- */
.mkt-footer { background: rgba(2, 6, 23, 0.9); border-top: 1px solid var(--mkt-border); padding: 54px 24px 26px; }
.mkt-footer-inner {
    max-width: var(--mkt-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}
.mkt-footer-name { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; font-size: 1.1rem; margin-bottom: 10px; color: var(--mkt-text-bright); }
.mkt-footer-legal { color: var(--mkt-muted); font-size: 0.9rem; margin: 0 0 12px; }
.mkt-footer-contact a { color: var(--mkt-accent-2); text-decoration: none; font-size: 0.92rem; }
.mkt-footer-heading { font-weight: 700; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--mkt-muted); margin-bottom: 12px; }
.mkt-footer-col a { display: block; color: var(--mkt-text-soft); text-decoration: none; font-size: 0.95rem; margin-bottom: 8px; }
.mkt-footer-col a:hover { color: var(--mkt-accent-2); }
.mkt-footer-bottom { max-width: var(--mkt-max); margin: 34px auto 0; padding-top: 22px; border-top: 1px solid var(--mkt-border); color: var(--mkt-muted); font-size: 0.85rem; text-align: center; }

/* --- Keyframes (idle life + app micro-motion) --------------------------- */
@keyframes mkt-breathe {
    0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(34, 197, 94, 0.6); }
    50% { opacity: 0.6; box-shadow: 0 0 14px rgba(34, 197, 94, 0.95); }
}

/* --- Reduced motion ----------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    .mkt-reveal { opacity: 1; transform: none; transition: none; }
    .mkt-brand-dot { animation: none !important; transform: none; }
}

/* --- Responsive --------------------------------------------------------- */
/* Tablet: feature grid drops from 3-across to 2-across. Reset the 6-col spans
   to a simple 2-column track so the 3+2 desktop offsets don't misalign. */
@media (max-width: 1040px) {
    .mkt-features { grid-template-columns: 1fr 1fr; }
    .mkt-features > .mkt-card,
    .mkt-features.is-5 > .mkt-card:nth-child(4),
    .mkt-features.is-5 > .mkt-card:nth-child(5) { grid-column: auto; }
}
@media (max-width: 920px) {
    .mkt-hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .mkt-stage { justify-self: stretch; }
    .mkt-contact-grid,
    .mkt-pricing-grid,
    .mkt-footer-inner { grid-template-columns: 1fr; }
    .mkt-nav { display: none; }
}
@media (max-width: 620px) {
    .mkt-features { grid-template-columns: 1fr; }
}
