/* =====================================================================
   Summit Badminton — public marketing surface (dark, cinematic, GOLD)
   ---------------------------------------------------------------------
   v1.6.6-dev.1 re-skin. Dark "Blackout" surface, gold accent throughout.
   Nike-style storytelling × Rakket polish. Pete-Jeffrey hero embedded
   full-width behind a sweeping arc. No stuck-on cards — hairlines,
   sweeps and full-bleed imagery do the work.

   EVERY rule is scoped under `.mkt-body` (or a `mkt-`/`lp-` prefixed
   class) so it can never bleed into the gated app, which uses app.css
   and never sets `.mkt-body`. This file is loaded ONLY by
   marketing/_base.html, never by the in-app base.

   Accent system (single gold accent, per design directive):
     --mkt-accent      metallic gold  (#D4AF37) — type, lines, icons, hairlines
     --mkt-accent-hot  24kt gold      (#FFD700) — primary CTA fill, hottest cues
   ===================================================================== */

/* ── tokens ──────────────────────────────────────────────────────── */
.mkt-body {
    --mkt-bg:        #06090F;
    --mkt-bg-2:      #0B1118;
    --mkt-bg-3:      #11171F;

    --mkt-accent:        #D4AF37;   /* metallic gold — secondary surfaces  */
    --mkt-accent-2:      #E6C200;   /* mid gold                            */
    --mkt-accent-hot:    #FFD700;   /* 24kt bright gold — primary emphasis */
    --mkt-accent-rgb:    255, 215, 0;
    --mkt-accent-soft-rgb: 212, 175, 55;

    --mkt-ink:   rgba(255, 255, 255, 0.94);
    --mkt-soft:  rgba(255, 255, 255, 0.70);
    --mkt-mute:  rgba(255, 255, 255, 0.46);
    --mkt-faint: rgba(255, 255, 255, 0.16);
    --mkt-hair:  rgba(255, 255, 255, 0.10);
    --mkt-hair-2: rgba(255, 255, 255, 0.06);

    --mkt-display: 'Oswald', 'Arial Narrow', sans-serif;
    --mkt-font:    'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    --mkt-radius:  6px;

    --mkt-ease: cubic-bezier(0.22, 0.61, 0.36, 1);

    background: var(--mkt-bg);
    color: var(--mkt-ink);
    font-family: var(--mkt-font);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    line-height: 1.5;
    overflow-x: hidden;
    position: relative;
}

/* ambient gold aura, top-centre + right (the §2 "glow") */
.mkt-body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(120% 50% at 50% -6%, rgba(var(--mkt-accent-rgb), 0.10), transparent 60%),
        radial-gradient(90% 50% at 100% 24%, rgba(var(--mkt-accent-soft-rgb), 0.06), transparent 70%);
}
.mkt-body > * { position: relative; z-index: 1; }

.mkt-body ::selection { background: var(--mkt-accent-hot); color: #0a0d12; }
.mkt-body a { color: var(--mkt-accent); text-decoration: none; }
.mkt-body a:hover { color: var(--mkt-accent-hot); }

.mkt-main { min-height: 50vh; }

/* keep the marketing surface full-width (gated app caps .container) */
.mkt-body .container { max-width: 1180px; }

/* ── focus ring (gold) ──────────────────────────────────────────── */
.mkt-body a:focus-visible,
.mkt-body button:focus-visible,
.mkt-body .btn:focus-visible,
.mkt-body .form-control:focus,
.mkt-body .form-select:focus {
    outline: 2px solid var(--mkt-accent-hot);
    outline-offset: 2px;
    box-shadow: 0 0 0 3px rgba(var(--mkt-accent-rgb), 0.25) !important;
}

/* =====================================================================
   Bootstrap overrides (scoped to .mkt-body)
   ===================================================================== */
.mkt-body .btn {
    border-radius: var(--mkt-radius);
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: transform 0.18s var(--mkt-ease), background 0.18s var(--mkt-ease),
                color 0.18s var(--mkt-ease), border-color 0.18s var(--mkt-ease);
}
.mkt-body .btn:active { transform: scale(0.97); }

.mkt-body .btn-primary {
    background: var(--mkt-accent-hot);
    border-color: var(--mkt-accent-hot);
    color: #0a0d12;
}
.mkt-body .btn-primary:hover,
.mkt-body .btn-primary:focus {
    background: var(--mkt-accent-2);
    border-color: var(--mkt-accent-2);
    color: #0a0d12;
}

.mkt-body .btn-outline-primary {
    background: transparent;
    border: 1px solid var(--mkt-faint);
    color: var(--mkt-accent-hot);
}
.mkt-body .btn-outline-primary:hover,
.mkt-body .btn-outline-primary:focus {
    background: rgba(var(--mkt-accent-rgb), 0.12);
    border-color: var(--mkt-accent-hot);
    color: var(--mkt-accent-hot);
}

.mkt-body .text-primary { color: var(--mkt-accent) !important; }
.mkt-body .text-muted   { color: var(--mkt-mute) !important; }
.mkt-body .text-danger  { color: #FCA5A5 !important; }

.mkt-body .alert-success {
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.40);
    color: #D1FAE5;
}
.mkt-body .alert-danger {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.40);
    color: #FECACA;
}
.mkt-body .alert-warning {
    background: rgba(var(--mkt-accent-rgb), 0.10);
    border: 1px solid rgba(var(--mkt-accent-rgb), 0.40);
    color: var(--mkt-soft);
}
.mkt-body .alert-warning .alert-heading { color: var(--mkt-accent-hot); }
.mkt-body .alert-info {
    background: rgba(96, 165, 250, 0.12);
    border: 1px solid rgba(96, 165, 250, 0.38);
    color: #DBEAFE;
}
.mkt-body .alert-secondary {
    background: var(--mkt-bg-3);
    border: 1px solid var(--mkt-hair);
    color: var(--mkt-soft);
}

/* Form controls on dark (used by legal/contact-adjacent surfaces) */
.mkt-body .form-control,
.mkt-body .form-select {
    background: var(--mkt-bg-3);
    border: 1px solid var(--mkt-faint);
    color: var(--mkt-ink);
}
.mkt-body .form-control::placeholder { color: var(--mkt-mute); }

/* =====================================================================
   Top bar (sticky, transparent → solid on scroll)
   ===================================================================== */
.mkt-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: linear-gradient(180deg, rgba(6, 9, 15, 0.72), rgba(6, 9, 15, 0));
    transition: background 0.22s var(--mkt-ease), backdrop-filter 0.22s var(--mkt-ease),
                border-color 0.22s var(--mkt-ease);
    border-bottom: 1px solid transparent;
}
.mkt-header.solid {
    background: rgba(8, 11, 17, 0.88);
    backdrop-filter: blur(16px) saturate(150%);
    -webkit-backdrop-filter: blur(16px) saturate(150%);
    border-bottom: 1px solid var(--mkt-hair-2);
}
.mkt-navbar { padding: 0.7rem 0; }

.mkt-brand { text-decoration: none; display: inline-flex; align-items: center; }
.mkt-brand img { height: 34px; width: auto; }
.mkt-brand .mkt-peak { color: var(--mkt-accent); width: 26px; height: auto; display: block; }
.mkt-brand-text {
    font-family: var(--mkt-display);
    font-weight: 600;
    font-size: 1.02rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #fff;
}
.mkt-brand-text b { color: var(--mkt-accent); font-weight: 600; }

.mkt-navbar .navbar-toggler {
    border: 1px solid var(--mkt-faint);
    color: var(--mkt-ink);
}
.mkt-navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.85)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.mkt-nav-link {
    color: var(--mkt-soft) !important;
    font-weight: 600;
    font-size: 0.92rem;
    letter-spacing: 0.02em;
    padding: 0.4rem 0.85rem !important;
}
.mkt-nav-link:hover,
.mkt-nav-link:focus,
.mkt-navbar .nav-link.show {
    color: var(--mkt-accent-hot) !important;
}

.mkt-dropdown {
    background: rgba(11, 17, 24, 0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--mkt-hair);
    border-radius: 10px;
    padding: 0.4rem 0;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.55);
}
.mkt-dropdown .dropdown-item {
    padding: 0.5rem 1rem;
    font-size: 0.92rem;
    color: var(--mkt-soft);
}
.mkt-dropdown .dropdown-item i { color: var(--mkt-accent) !important; }
.mkt-dropdown .dropdown-item:hover,
.mkt-dropdown .dropdown-item:focus {
    background: rgba(var(--mkt-accent-rgb), 0.10);
    color: var(--mkt-accent-hot);
}
.mkt-dropdown .dropdown-divider { border-top-color: var(--mkt-hair); }

.mkt-btn-signin { color: var(--mkt-accent-hot); }
.mkt-btn-enquire { color: #0a0d12; }

/* =====================================================================
   Type roles
   ===================================================================== */
.mkt-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.74rem;
    font-weight: 700;
    color: var(--mkt-accent);
    margin-bottom: 0.85rem;
}

.mkt-section-title,
.mkt-page-title,
.mkt-h2,
.mkt-hero-title {
    font-family: var(--mkt-display);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.0;
    color: #fff;
    text-wrap: balance;
}
.mkt-section-title {
    font-size: clamp(1.7rem, 3.2vw, 2.4rem);
    font-weight: 600;
    margin-bottom: 0.6rem;
}
.mkt-page-title {
    font-size: clamp(2rem, 4.4vw, 3rem);
    font-weight: 600;
    margin-bottom: 0.9rem;
}
.mkt-h2 {
    font-size: clamp(1.45rem, 2.6vw, 2rem);
    font-weight: 600;
    margin-bottom: 0.85rem;
}
.mkt-h3 {
    font-family: var(--mkt-display);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.4rem;
}

.mkt-section-lead,
.mkt-page-lead,
.mkt-prose-lead {
    color: var(--mkt-soft);
    line-height: 1.6;
}
.mkt-section-lead { font-size: 1.08rem; max-width: 720px; }
.mkt-page-lead { font-size: 1.16rem; max-width: 760px; margin-bottom: 0; }
.mkt-prose-lead { font-size: 1.14rem; }
.mkt-section-lead.text-center { margin-left: auto; margin-right: auto; }

.mkt-prose {
    font-size: 1.04rem;
    line-height: 1.7;
    color: var(--mkt-soft);
}
.mkt-prose strong, .mkt-prose-lead strong { color: var(--mkt-ink); }
.mkt-prose a, .mkt-prose-lead a { color: var(--mkt-accent-hot); text-decoration: underline; text-underline-offset: 2px; }
.mkt-prose-wrap { max-width: 820px; margin: 0 auto; }

.mkt-bullets { list-style: none; padding-left: 0; margin: 0.4rem 0 1rem; }
.mkt-bullets li {
    position: relative;
    padding-left: 1.6rem;
    margin-bottom: 0.7rem;
    font-size: 1.02rem;
    line-height: 1.6;
    color: var(--mkt-soft);
}
.mkt-bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--mkt-accent-hot);
    box-shadow: 0 0 12px rgba(var(--mkt-accent-rgb), 0.5);
}
.mkt-bullets li strong { color: var(--mkt-ink); }

.mkt-rounded-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
    border: 1px solid var(--mkt-hair);
}

/* =====================================================================
   Sections
   ===================================================================== */
.mkt-section { padding: 4rem 0; }
.mkt-section-tint {
    background: var(--mkt-bg-2);
    border-top: 1px solid var(--mkt-hair-2);
    border-bottom: 1px solid var(--mkt-hair-2);
}

/* =====================================================================
   HOME — cinematic hero (Pete embedded full-width, swept by an arc)
   ===================================================================== */
.mkt-hero {
    position: relative;
    width: 100%;
    min-height: 560px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    /* pull up under the translucent bar so the photo runs behind it */
    margin-top: -72px;
    padding-top: 72px;
}
.mkt-hero-media { position: absolute; inset: 0; z-index: 0; }
.mkt-hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 28%; display: block; }
.mkt-hero-scrim {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(180deg,
        rgba(6, 9, 15, 0.62) 0%,
        rgba(6, 9, 15, 0.20) 26%,
        rgba(6, 9, 15, 0.30) 52%,
        var(--mkt-bg) 99%);
}
.mkt-hero-arc { position: absolute; left: 0; right: 0; bottom: -1px; width: 100%; height: 132px; z-index: 2; display: block; }
.mkt-hero-arc .fill { fill: var(--mkt-bg); }
.mkt-hero-arc .line { fill: none; stroke: var(--mkt-accent); stroke-width: 1.5; vector-effect: non-scaling-stroke; opacity: 0.65; }
.mkt-hero-inner { position: relative; z-index: 3; padding-top: 90px; padding-bottom: 92px; }

.mkt-hero-ticker {
    display: flex; flex-direction: column; gap: 0.6rem;
    margin: 0 0 0.9rem;
}
.mkt-hero-ticker .line {
    font-family: var(--mkt-display);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--mkt-accent);
    min-height: 1.3em;
}
.mkt-hero-ticker .line > span { display: inline-block; animation: mkt-rise 0.6s var(--mkt-ease) both; }
.mkt-hero-rail { display: flex; gap: 0.45rem; max-width: 280px; }
.mkt-hero-rail button {
    flex: 1; height: 3px; border: 0; padding: 0; cursor: pointer;
    background: rgba(255, 255, 255, 0.22); border-radius: 999px;
    position: relative; overflow: hidden;
}
.mkt-hero-rail button .fill { position: absolute; inset: 0; width: 0; background: var(--mkt-accent-hot); border-radius: 999px; }
.mkt-hero-rail button.active .fill { animation: mkt-fill 4.6s linear forwards; }
.mkt-hero-rail button.done .fill { width: 100%; }
@keyframes mkt-fill { from { width: 0; } to { width: 100%; } }
@keyframes mkt-rise { from { transform: translateY(14px); } to { transform: none; } }

.mkt-hero-title {
    font-size: clamp(2.4rem, 5.4vw, 3.9rem);
    max-width: 16ch;
    margin: 0 0 1.1rem;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}
.mkt-hero-sub {
    font-size: 1.12rem; line-height: 1.55; color: var(--mkt-soft);
    max-width: 46ch; margin: 0 0 1.6rem;
}
.mkt-hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-bottom: 1.1rem; }
.mkt-hero-foot { color: var(--mkt-mute); font-size: 0.95rem; margin: 0; }
.mkt-hero-foot a { color: var(--mkt-accent-hot); font-weight: 600; }

.mkt-enquiry-confirm { border-radius: var(--mkt-radius); }

/* =====================================================================
   HOME — "problem" rows (no-box: hairline + gold icon chip)
   ===================================================================== */
.mkt-problem-card {
    background: transparent;
    border: 0;
    border-top: 1px solid var(--mkt-hair);
    border-radius: 0;
    padding: 1.6rem 0 0;
    height: 100%;
}
.mkt-problem-icon {
    width: 46px; height: 46px; border-radius: 999px;
    display: inline-flex; align-items: center; justify-content: center;
    border: 1px solid var(--mkt-faint);
    color: var(--mkt-accent);
    font-size: 1.3rem;
    margin-bottom: 0.9rem;
    background: rgba(var(--mkt-accent-rgb), 0.06);
}
.mkt-problem-title {
    font-family: var(--mkt-display);
    text-transform: uppercase; letter-spacing: 0.02em;
    font-size: 1.12rem; font-weight: 600;
    color: #fff; margin-bottom: 0.5rem;
}
.mkt-problem-body { color: var(--mkt-soft); font-size: 0.98rem; line-height: 1.6; margin: 0; }

/* =====================================================================
   Testimonial (borderless, big quote, gold mark)
   ===================================================================== */
.mkt-testimonial {
    position: relative;
    max-width: 860px;
    margin: 0 auto;
    padding: 1.5rem 0 0;
    border-top: 1px solid var(--mkt-hair);
}
.mkt-testimonial-mark {
    color: var(--mkt-accent-hot);
    font-size: 2.4rem;
    display: inline-block;
    line-height: 1;
    margin-bottom: 0.4rem;
}
.mkt-testimonial-body {
    font-family: var(--mkt-display);
    text-transform: none;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 500;
    line-height: 1.25;
    color: #fff;
    margin: 0.3rem 0 1.1rem;
    letter-spacing: 0.01em;
}
.mkt-testimonial-attrib { display: flex; flex-direction: column; gap: 0.15rem; color: var(--mkt-mute); font-size: 0.95rem; }
.mkt-testimonial-attrib strong { color: var(--mkt-accent); font-weight: 700; }

/* =====================================================================
   Feature tiles (home spotlight) + feature cards (features index)
   No drop-shadows; hairline borders, gold accent + lift on hover.
   ===================================================================== */
.mkt-feature-tile,
.mkt-feature-card,
.mkt-audience-pill,
.mkt-feature-tile-mini,
.mkt-contact-card,
.mkt-principle-card,
.mkt-roadmap-row {
    background: var(--mkt-bg-2);
    border: 1px solid var(--mkt-hair);
    border-radius: 12px;
    text-decoration: none;
    color: var(--mkt-ink);
    transition: transform 0.18s var(--mkt-ease), border-color 0.18s var(--mkt-ease),
                background 0.18s var(--mkt-ease);
}

.mkt-feature-tile { display: flex; align-items: stretch; gap: 0.9rem; padding: 1.1rem; height: 100%; }
.mkt-feature-tile:hover, .mkt-feature-tile:focus,
.mkt-feature-card:hover, .mkt-feature-card:focus,
.mkt-feature-tile-mini:hover, .mkt-feature-tile-mini:focus,
.mkt-audience-pill:hover, .mkt-audience-pill:focus {
    transform: translateY(-2px);
    border-color: var(--mkt-accent);
    background: var(--mkt-bg-3);
    color: var(--mkt-ink);
    text-decoration: none;
}
.mkt-feature-tile-icon {
    width: 46px; height: 46px; border-radius: 10px; flex-shrink: 0;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(var(--mkt-accent-rgb), 0.10);
    color: var(--mkt-accent); font-size: 1.25rem;
}
.mkt-feature-tile-body { flex: 1 1 auto; min-width: 0; }
.mkt-feature-tile-title {
    font-family: var(--mkt-display); text-transform: uppercase; letter-spacing: 0.02em;
    font-size: 1.02rem; font-weight: 600; color: #fff; margin-bottom: 0.2rem;
}
.mkt-feature-tile-tagline { color: var(--mkt-soft); font-size: 0.9rem; line-height: 1.45; margin: 0; }
.mkt-feature-tile-chev { align-self: center; color: var(--mkt-accent); font-size: 1.05rem; opacity: 0.7; }
.mkt-feature-tile:hover .mkt-feature-tile-chev { opacity: 1; transform: translateX(2px); color: var(--mkt-accent-hot); }

/* features index cards */
.mkt-group-rule { height: 2px; width: 56px; background: var(--mkt-accent); border-radius: 999px; margin-bottom: 1.1rem; }
.mkt-feature-card { display: flex; gap: 1rem; padding: 1.3rem; height: 100%; }
.mkt-feature-card-icon {
    width: 54px; height: 54px; border-radius: 12px; flex-shrink: 0;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(var(--mkt-accent-rgb), 0.10);
    color: var(--mkt-accent); font-size: 1.5rem;
}
.mkt-feature-card-title {
    font-family: var(--mkt-display); text-transform: uppercase; letter-spacing: 0.02em;
    font-size: 1.12rem; font-weight: 600; color: #fff; margin-bottom: 0.25rem;
}
.mkt-feature-card-tagline { color: var(--mkt-soft); font-size: 0.96rem; line-height: 1.5; margin-bottom: 0.5rem; }
.mkt-feature-card-link { color: var(--mkt-accent-hot); font-weight: 700; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.04em; }

/* =====================================================================
   Audience strip (home) + audience-page mini tiles + badges
   ===================================================================== */
.mkt-audience-pill {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 0.5rem; padding: 1.2rem 0.8rem; text-align: center; height: 100%;
    font-family: var(--mkt-display); text-transform: uppercase; letter-spacing: 0.04em;
    font-weight: 600; font-size: 0.92rem; color: var(--mkt-ink);
}
.mkt-audience-pill i { font-size: 1.7rem; color: var(--mkt-accent); }
.mkt-audience-pill:hover i, .mkt-audience-pill:focus i { color: var(--mkt-accent-hot); }

.mkt-feature-tile-mini {
    display: flex; align-items: center; gap: 0.7rem; padding: 0.9rem 1rem; height: 100%;
    font-weight: 600; font-size: 0.95rem; color: var(--mkt-ink);
}
.mkt-feature-tile-mini i { color: var(--mkt-accent); font-size: 1.15rem; }
.mkt-feature-tile-mini:hover, .mkt-feature-tile-mini:focus { color: var(--mkt-ink); }
.mkt-feature-tile-mini:hover i { color: var(--mkt-accent-hot); }
.mkt-audience-cta-row { max-width: 860px; margin: 2.6rem auto 0; }

.mkt-audience-badge,
.mkt-feature-eyebrow,
.mkt-roadmap-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(var(--mkt-accent-rgb), 0.12);
    border: 1px solid rgba(var(--mkt-accent-rgb), 0.30);
    color: var(--mkt-accent-hot);
    border-radius: 999px;
    padding: 0.3rem 0.9rem;
    font-size: 0.78rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.12em;
    margin-bottom: 0.9rem;
}

/* =====================================================================
   Page hero (deep-dives + audience pages) — dark, gold radial, hairline
   ===================================================================== */
.mkt-page-hero,
.mkt-feature-hero,
.mkt-audience-hero {
    padding: 5.5rem 0 2rem;
    background:
        radial-gradient(80% 60% at 50% -10%, rgba(var(--mkt-accent-rgb), 0.08), transparent 60%),
        var(--mkt-bg);
    border-bottom: 1px solid var(--mkt-hair-2);
}
.mkt-audience-hero {
    background:
        radial-gradient(70% 60% at 0% 0%, rgba(var(--mkt-accent-soft-rgb), 0.10), transparent 60%),
        var(--mkt-bg);
}
.mkt-breadcrumb .breadcrumb { background: transparent; padding: 0; margin-bottom: 0.7rem; font-size: 0.9rem; }
.mkt-breadcrumb .breadcrumb-item a { color: var(--mkt-accent); text-decoration: none; }
.mkt-breadcrumb .breadcrumb-item.active { color: var(--mkt-mute); }
.mkt-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: var(--mkt-mute); }

.mkt-feature-cta {
    display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.75rem;
    border-top: 1px solid var(--mkt-hair);
    padding-top: 1.6rem; margin-top: 2.6rem;
    max-width: 820px; margin-left: auto; margin-right: auto;
}

/* =====================================================================
   Principle cards (about) + roadmap rows (what's coming) + contact card
   ===================================================================== */
.mkt-principle-card {
    border-left: 3px solid var(--mkt-accent);
    padding: 1.2rem 1.3rem; height: 100%;
}
.mkt-principle-title {
    font-family: var(--mkt-display); text-transform: uppercase; letter-spacing: 0.02em;
    font-size: 1.08rem; font-weight: 600; color: #fff; margin-bottom: 0.5rem;
}
.mkt-principle-card i { color: var(--mkt-accent); }

.mkt-roadmap-row { padding: 1.5rem 1.6rem; margin-bottom: 1.4rem; }
.mkt-roadmap-status {
    color: var(--mkt-mute); font-weight: 500; text-transform: uppercase;
    letter-spacing: 0.08em; font-size: 0.7rem; padding-left: 0.5rem;
    border-left: 1px solid var(--mkt-faint);
}

.mkt-contact-card { padding: 1.7rem 1.6rem; }

/* =====================================================================
   Footer CTA band + footer
   ===================================================================== */
.mkt-footer-cta { padding: 4rem 0 0; background: var(--mkt-bg); }
.mkt-footer-cta-card {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.2rem;
    background: var(--mkt-bg-2);
    border: 1px solid var(--mkt-hair);
    border-radius: 16px;
    padding: 2.2rem 2.4rem;
    position: relative;
    overflow: hidden;
}
.mkt-footer-cta-card::before {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(80% 120% at 100% 0%, rgba(var(--mkt-accent-rgb), 0.12), transparent 55%);
}
.mkt-footer-cta-card > * { position: relative; }
.mkt-footer-cta-title {
    font-family: var(--mkt-display); text-transform: uppercase; letter-spacing: 0.02em;
    font-size: 1.7rem; font-weight: 600; color: #fff; margin: 0 0 0.4rem;
}
.mkt-footer-cta-sub { color: var(--mkt-soft); font-size: 1.02rem; max-width: 540px; }

.mkt-footer {
    background: var(--mkt-bg-2);
    border-top: 1px solid var(--mkt-hair);
    padding: 3.2rem 0 1.8rem;
    color: var(--mkt-mute);
}
.mkt-footer-brand {
    color: #fff; font-family: var(--mkt-display); font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; font-size: 1.02rem;
    display: inline-flex; align-items: center;
}
.mkt-footer-brand img { height: 34px; }
.mkt-footer-brand .mkt-peak { color: var(--mkt-accent); width: 24px; height: auto; }
.mkt-footer-tagline { font-size: 0.92rem; color: var(--mkt-mute); max-width: 320px; }
.mkt-footer-heading {
    font-family: var(--mkt-display); font-size: 0.8rem; text-transform: uppercase;
    letter-spacing: 0.14em; color: #fff; font-weight: 600; margin-bottom: 0.8rem;
}
.mkt-footer-links li { margin-bottom: 0.5rem; }
.mkt-footer-links a { color: var(--mkt-soft); text-decoration: none; font-size: 0.93rem; }
.mkt-footer-links a:hover, .mkt-footer-links a:focus { color: var(--mkt-accent-hot); }
.mkt-footer-divider { border-top: 1px solid var(--mkt-hair-2); margin: 1.8rem 0 1.1rem; opacity: 1; }
.mkt-footer-fineprint { color: var(--mkt-mute); font-size: 0.8rem; }

/* =====================================================================
   Legal pages (Terms / Privacy / Cookies)
   ===================================================================== */
.mkt-legal-note {
    background: rgba(var(--mkt-accent-rgb), 0.08);
    border: 1px solid rgba(var(--mkt-accent-rgb), 0.30);
    border-radius: 12px;
    padding: 1rem 1.2rem;
    color: var(--mkt-soft);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.8rem;
}
.mkt-legal-note strong { color: var(--mkt-accent-hot); }
.mkt-legal h2 { margin-top: 2.2rem; }
.mkt-legal h3 {
    font-family: var(--mkt-display); text-transform: uppercase; letter-spacing: 0.02em;
    font-size: 1.12rem; font-weight: 600; color: #fff; margin: 1.6rem 0 0.5rem;
}
.mkt-legal .mkt-placeholder {
    color: var(--mkt-accent-hot);
    background: rgba(var(--mkt-accent-rgb), 0.10);
    border-radius: 4px;
    padding: 0 0.3rem;
    font-weight: 600;
}
.mkt-legal-updated { color: var(--mkt-mute); font-size: 0.9rem; margin-bottom: 1.4rem; }

/* =====================================================================
   Auth / form controls on dark (login, register, forgot/reset password)
   — extends the .form-control / .form-select theming above with the bits
   Bootstrap leaves light by default (select caret, checkbox, help text).
   ===================================================================== */
.mkt-body .form-label {
    font-weight: 600;
    color: var(--mkt-ink);
    margin-bottom: 0.35rem;
}
.mkt-body .form-text { color: var(--mkt-mute); }
.mkt-body .form-control:disabled,
.mkt-body .form-select:disabled { opacity: 0.55; }

/* light chevron so the native-looking select caret is visible on dark.
   The .form-control/.form-select `background:` shorthand above resets
   background-repeat to the initial `repeat`, so the caret tiles unless we
   re-declare repeat/position/size explicitly here. */
.mkt-body .form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='rgba(255,255,255,0.7)' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    padding-right: 2.5rem;
}
.mkt-body .form-select option { color: #0a0d12; }

/* checkbox / radio — dark surface, gold when checked */
.mkt-body .form-check-input {
    background-color: var(--mkt-bg-3);
    border: 1px solid var(--mkt-faint);
}
.mkt-body .form-check-input:checked {
    background-color: var(--mkt-accent-hot);
    border-color: var(--mkt-accent-hot);
}
.mkt-body .form-check-input:focus {
    border-color: var(--mkt-accent-hot);
    box-shadow: 0 0 0 3px rgba(var(--mkt-accent-rgb), 0.25);
}
.mkt-body .form-check-label { color: var(--mkt-soft); }
.mkt-body .form-check-label a { color: var(--mkt-accent-hot); font-weight: 600; }

/* narrow auth card spacing */
.mkt-auth-card hr { border-top: 1px solid var(--mkt-hair); opacity: 1; }

/* =====================================================================
   Full-screen mobile menu (legacy .lp markup support — unused by the
   Bootstrap nav, kept harmless & scoped)
   ===================================================================== */
.lp-menu { display: none; }

/* =====================================================================
   Reduced motion
   ===================================================================== */
@media (prefers-reduced-motion: reduce) {
    .mkt-hero-ticker .line > span,
    .mkt-hero-rail button.active .fill { animation: none !important; }
}

/* =====================================================================
   Mobile
   ===================================================================== */
@media (max-width: 767.98px) {
    .mkt-hero { min-height: 520px; }
    .mkt-hero-inner { padding-bottom: 76px; }
    .mkt-section { padding: 2.8rem 0; }
    .mkt-page-hero, .mkt-feature-hero, .mkt-audience-hero { padding-top: 4.5rem; }
    .mkt-footer-cta-card { padding: 1.6rem 1.4rem; }
    .mkt-footer-cta-title { font-size: 1.35rem; }
    .mkt-nav-cta-group { padding-bottom: 0.4rem; }
}
