/* ═══════════════════════════════════════════════════════════════════
   home-modern3.css  —  /modern3  —  Kinetic Learning Framework
   Design System: "The Living Laboratory"
   Principles: Intentional Asymmetry · Tonal Depth · No-Line Rule
   Fonts: Plus Jakarta Sans (display) · Be Vietnam Pro (body)
   All classes prefixed m3- · Loaded via <HeadContent>

   MainLayout wraps in article.content.layout-max.px-4
     padding-top: 2rem · padding-inline: 1.5rem · max-width: 1200px
   Full-bleed sections: margin-inline: -1.5rem; padding-inline: 1.5rem
   Hero cancels top padding: margin-top: -2rem
   ═══════════════════════════════════════════════════════════════════ */

/* ── Kinetic Palette Tokens ─────────────────────────────────────── */
:root {
    --k-primary:          #2056ba;
    --k-primary-dim:      #1a4396;
    --k-primary-surface:  #dce8ff;
    --k-secondary:        #006571;
    --k-secondary-cont:   #26e6ff;
    --k-tertiary:         #7e5200;
    --k-cta:              #feaa00;
    --k-cta-hover:        #e69900;
    --k-surface:          #f3f7fb;
    --k-surface-sub:      #ecf1f6;
    --k-surface-card:     #ffffff;
    --k-on-primary:       #ffffff;
    --k-text:             #0e1f3d;
    --k-text-muted:       #5a6b85;
    --k-outline-faint:    rgba(14,31,61,0.10);
    --k-radius-card:      2rem;
    --k-radius-btn:       3rem;
    --k-radius-sm:        1rem;
    --k-shadow-ambient:   0 8px 48px rgba(32,86,186,0.05), 0 2px 12px rgba(32,86,186,0.04);
    --k-shadow-float:     0 16px 64px rgba(32,86,186,0.08), 0 4px 24px rgba(32,86,186,0.05);
    --k-section-pad:      88px;
}

/* ── Shared Layout ──────────────────────────────────────────────── */
.m3-wrap {
    max-width: var(--layout-max, 1200px);
    margin-inline: auto;
}

.m3-section {
    background: var(--k-surface);
    padding-block: var(--k-section-pad);
}

/* Tonal sub-section — tinted */
.m3-section-sub {
    background: var(--k-surface-sub);
    padding-inline: 1.5rem;
}

/* ── Split Layout ───────────────────────────────────────────────── */
.m3-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* ── Dot Grid Pattern ───────────────────────────────────────────── */
.m3-hero-dotgrid,
.m3-founding-dotgrid,
.m3-cta-dotgrid,
.m3-bento-dotgrid::before {
    background-image: radial-gradient(circle, rgba(255,255,255,0.18) 1px, transparent 1px);
    background-size: 22px 22px;
}
.m3-bento-dotgrid::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    border-radius: inherit;
}

/* ── Typography ─────────────────────────────────────────────────── */
.m3-kicker {
    font-family: 'Be Vietnam Pro', 'DM Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--k-secondary);
    display: block;
    margin-bottom: 0.625rem;
}
.m3-kicker-gold { color: var(--k-cta); }
.m3-center { text-align: center; }

.m3-h2 {
    font-family: 'Plus Jakarta Sans', 'Barlow Condensed', sans-serif;
    font-size: clamp(1.9rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--k-text);
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}
.m3-h2-light { color: #fff; }

.m3-body-lg {
    font-family: 'Be Vietnam Pro', 'DM Sans', sans-serif;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--k-text);
    max-width: 60ch;
    margin-bottom: 1rem;
}
.m3-body {
    font-family: 'Be Vietnam Pro', 'DM Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--k-text-muted);
    max-width: 60ch;
    margin-bottom: 1rem;
}
.m3-body-light { color: rgba(255,255,255,0.7); }

.m3-sub-center {
    font-family: 'Be Vietnam Pro', 'DM Sans', sans-serif;
    text-align: center;
    color: var(--k-text-muted);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 540px;
    margin-inline: auto;
    margin-bottom: 3rem;
}

.m3-quote {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem;
    font-style: italic;
    font-weight: 600;
    color: var(--k-primary);
    border-left: 4px solid var(--k-secondary-cont);
    padding-left: 1.25rem;
    margin: 1.5rem 0;
    line-height: 1.55;
}

/* ── Buttons — Kinetic Triggers, xl radius ──────────────────────── */
.m3-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.75rem 1.875rem;
    border-radius: var(--k-radius-btn);
    font-family: 'Be Vietnam Pro', 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: background 200ms ease, box-shadow 200ms ease, transform 120ms ease;
    white-space: nowrap;
}
.m3-btn:focus-visible {
    outline: 3px solid var(--k-secondary-cont);
    outline-offset: 3px;
}
.m3-btn:active { transform: scale(0.98); }

/* Primary — gradient */
.m3-btn-primary {
    background: linear-gradient(135deg, var(--k-primary) 0%, #3b7cfa 100%);
    color: var(--k-on-primary);
    box-shadow: 0 4px 20px rgba(32,86,186,0.30);
}
.m3-btn-primary:hover {
    background: linear-gradient(135deg, var(--k-primary-dim) 0%, var(--k-primary) 100%);
    box-shadow: 0 6px 28px rgba(32,86,186,0.38);
    color: var(--k-on-primary);
    text-decoration: none;
}

/* CTA — orange energy */
.m3-btn-cta {
    background: var(--k-cta);
    color: var(--k-text);
    box-shadow: 0 4px 20px rgba(254,170,0,0.35);
    font-weight: 700;
}
.m3-btn-cta:hover {
    background: var(--k-cta-hover);
    box-shadow: 0 6px 28px rgba(254,170,0,0.45);
    color: var(--k-text);
    text-decoration: none;
}

/* Ghost (light bg) */
.m3-btn-ghost {
    background: transparent;
    color: var(--k-primary);
    box-shadow: inset 0 0 0 2px rgba(32,86,186,0.30);
}
.m3-btn-ghost:hover {
    background: rgba(32,86,186,0.06);
    box-shadow: inset 0 0 0 2px var(--k-primary);
    color: var(--k-primary);
    text-decoration: none;
}

/* Ghost (dark bg) */
.m3-btn-ghost-light {
    background: transparent;
    color: #fff;
    box-shadow: inset 0 0 0 2px rgba(255,255,255,0.35);
}
.m3-btn-ghost-light:hover {
    background: rgba(255,255,255,0.10);
    box-shadow: inset 0 0 0 2px rgba(255,255,255,0.75);
    color: #fff;
    text-decoration: none;
}

.m3-btn-block { width: 100%; }

/* ── CTA-line centering ─────────────────────────────────────────── */
.m3-cta-line { text-align: center; margin-top: 3rem; }

/* ═══════════════════════════════════════════════════════════════════
   HERO — Living Laboratory
   Deep blue gradient + blobs + dot grid + editorial type
   ═══════════════════════════════════════════════════════════════════ */
.m3-hero {
    position: relative;
    overflow: hidden;
    padding-block: 6rem 5.5rem;
    margin-top: 0;
    margin-inline: -1.5rem;
    padding-inline: 1.5rem;
    background: linear-gradient(145deg, #0e1f3d 0%, #1a3a7c 45%, #2056ba 80%, #1c4fa8 100%);
    text-align: center;
}

/* Dot grid overlay on hero */
.m3-hero-dotgrid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.6;
}

/* Organic blobs */
.m3-blobs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.m3-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(72px);
}
.m3-blob-a {
    width: 560px;
    height: 560px;
    background: radial-gradient(circle, rgba(38,230,255,0.22) 0%, transparent 70%);
    top: -160px;
    right: -80px;
}
.m3-blob-b {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(254,170,0,0.18) 0%, transparent 70%);
    bottom: -120px;
    left: 5%;
}
.m3-blob-c {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(38,230,255,0.12) 0%, transparent 70%);
    top: 40%;
    left: 20%;
}

.m3-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin-inline: auto;
}

/* Eyebrow pill chips */
.m3-hero-eyebrow-row {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2rem;
}
.m3-chip {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: rgba(38,230,255,0.12);
    color: var(--k-secondary-cont);
    border-radius: 999px;
    padding: 0.3rem 0.875rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Editorial headline */
.m3-hero-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(3rem, 6.5vw, 5rem);
    font-weight: 800;
    line-height: 1.0;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}
.m3-hero-title em {
    font-style: normal;
    color: var(--k-secondary-cont);
}

.m3-hero-sub {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.75);
    max-width: 52ch;
    margin-inline: auto;
    margin-bottom: 2.5rem;
}

.m3-hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 3rem;
}

/* Stats strip */
.m3-hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 2rem;
}

.m3-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-inline: 2rem;
}
.m3-stat strong {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}
.m3-stat span {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.55);
    margin-top: 0.25rem;
}
.m3-stat-sep {
    width: 1px;
    height: 2rem;
    background: rgba(255,255,255,0.14);
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════════
   HOW IT WORKS — tonal step cards, no borders
   ═══════════════════════════════════════════════════════════════════ */
.m3-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.m3-step-card {
    background: var(--k-surface-card);
    border-radius: var(--k-radius-card);
    padding: 2.25rem 1.75rem;
    text-align: center;
    box-shadow: var(--k-shadow-ambient);
    transition: box-shadow 200ms ease, transform 200ms ease;
}
.m3-step-card:hover {
    box-shadow: var(--k-shadow-float);
    transform: translateY(-4px);
}

.m3-step-art {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.25rem;
}
.m3-step-art svg { width: 80px; height: 80px; display: block; }

/* Step pill numbers */
.m3-step-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.3rem 1rem;
    border-radius: 999px;
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    margin-bottom: 1rem;
    color: #fff;
}
.m3-pill-blue   { background: var(--k-primary); }
.m3-pill-cyan   { background: var(--k-secondary); }
.m3-pill-orange { background: var(--k-cta); color: var(--k-text); }

.m3-step-h {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--k-text);
    margin-bottom: 0.75rem;
    line-height: 1.25;
}
.m3-step-p {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--k-text-muted);
    margin: 0;
}
.m3-step-p strong { color: var(--k-text); }

/* ═══════════════════════════════════════════════════════════════════
   TRACK CARDS — large radius, color band header, tonal lift
   ═══════════════════════════════════════════════════════════════════ */
.m3-tracks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin-inline: auto;
    align-items: stretch;
}

.m3-track {
    background: var(--k-surface-card);
    border-radius: var(--k-radius-card);
    overflow: hidden;
    box-shadow: var(--k-shadow-ambient);
    display: flex;
    flex-direction: column;
    transition: box-shadow 200ms ease, transform 200ms ease;
}
.m3-track:hover {
    box-shadow: var(--k-shadow-float);
    transform: translateY(-3px);
}
.m3-track-featured {
    box-shadow: 0 8px 48px rgba(0,101,113,0.16), 0 2px 12px rgba(0,101,113,0.08);
}
.m3-track-featured:hover {
    box-shadow: 0 16px 64px rgba(0,101,113,0.22), 0 4px 20px rgba(0,101,113,0.10);
}

/* Color band header — fixed min-height so both cards match regardless of chip */
.m3-track-colorband {
    padding: 1.75rem 1.75rem 1.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-height: 148px;
}
.m3-band-blue   { background: linear-gradient(135deg, #2056ba 0%, #3b7cfa 100%); }
.m3-band-cyan   { background: linear-gradient(135deg, #006571 0%, #009fb5 100%); }
.m3-band-purple { background: linear-gradient(135deg, #4a0d8f 0%, #7c3dc9 100%); }

.m3-track-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.85rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.02em;
}
.m3-track-age {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.72);
    font-weight: 500;
    letter-spacing: 0.03em;
}
.m3-track-icon {
    position: absolute;
    bottom: 1.5rem;
    right: 1.75rem;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.m3-track-icon svg { width: 22px; height: 22px; }

.m3-featured-chip {
    display: inline-block;
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: rgba(255,255,255,0.2);
    color: #fff;
    border-radius: 999px;
    padding: 0.2rem 0.75rem;
    margin-bottom: 0.5rem;
    align-self: flex-start;
}

.m3-track-body {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.m3-features {
    list-style: none;
    margin: 0 0 1.25rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}
.m3-features li {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 0.92rem;
    color: var(--k-text);
    padding-left: 1.25rem;
    position: relative;
    line-height: 1.55;
}
.m3-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--k-secondary-cont);
}

.m3-kit-label {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--k-secondary);
    margin: 0.875rem 0 0.3rem;
}
.m3-kit-sensors {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 0.76rem;
    line-height: 1.65;
    color: var(--k-text-muted);
    margin: 0 0 0.5rem;
}

.m3-price-row {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    background: var(--k-surface-sub);
    border-radius: var(--k-radius-sm);
    padding: 1rem 1.125rem;
    margin-top: auto;
    margin-bottom: 1.125rem;
    flex-wrap: wrap;
}
.m3-price-group { display: flex; flex-direction: column; }
.m3-price {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--k-text);
    line-height: 1;
}
.m3-price-label {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 0.68rem;
    color: var(--k-text-muted);
    margin-top: 0.1rem;
}
.m3-price-sep {
    font-size: 1.1rem;
    color: var(--k-text-muted);
    font-weight: 300;
}
.m3-cancel {
    text-align: center;
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 0.72rem;
    color: var(--k-text-muted);
    margin: 0.75rem 0 0;
}

/* ═══════════════════════════════════════════════════════════════════
   BENTO GRID — tonal cards, dot-grid on wide, no borders
   ═══════════════════════════════════════════════════════════════════ */
.m3-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(180px, auto);
    gap: 1.125rem;
    margin-top: 2.5rem;
}

.m3-bento-card {
    background: var(--k-surface-card);
    border-radius: var(--k-radius-card);
    padding: 1.875rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--k-shadow-ambient);
    transition: box-shadow 200ms ease, transform 200ms ease;
    /* Top accent via gradient */
    background-image: linear-gradient(
        to bottom,
        color-mix(in srgb, var(--bcard-accent, #2056ba) 8%, transparent) 0px,
        transparent 80px
    );
}
.m3-bento-card:hover {
    box-shadow: var(--k-shadow-float);
    transform: scale(1.015);
    transform-origin: center;
}

.m3-bento-wide { grid-column: span 2; }
.m3-bento-flex { display: flex; align-items: center; gap: 1.75rem; padding: 0; }
.m3-bento-flex .m3-bento-text {
    padding: 1.875rem;
    padding-right: 0;
    flex: 1 1 0;
    min-width: 0;
    position: relative;
    z-index: 1;
}
.m3-bento-flex .m3-bento-art {
    flex: 0 0 160px;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}
.m3-bento-card:not(.m3-bento-flex) { display: flex; flex-direction: column; }
.m3-bento-art-top {
    flex: 0 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.m3-art-svg { width: 100%; height: auto; max-height: 120px; display: block; }
.m3-art-img {
    width: 100%;
    max-width: 120px;
    height: auto;
    display: block;
    object-fit: contain;
}
.m3-sam-img {
    max-width: 110px;
    filter: drop-shadow(0 4px 14px rgba(106,13,173,0.18));
}
.m3-bento-photo {
    max-width: 100%;
    width: 100%;
    height: 108px;
    object-fit: contain;
    border-radius: var(--k-radius-sm);
}
.m3-bento-photo-wide {
    height: 126px;
    width: 162px;
    max-width: 162px;
    border-radius: var(--k-radius-sm);
}

.m3-bento-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: color-mix(in srgb, var(--bcard-accent, #2056ba) 10%, transparent);
    color: var(--bcard-accent, #2056ba);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}
.m3-bento-icon svg { width: 20px; height: 20px; }

.m3-bento-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--k-text);
    margin-bottom: 0.5rem;
    line-height: 1.25;
    position: relative;
    z-index: 1;
}
.m3-bento-body {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 0.88rem;
    line-height: 1.65;
    color: var(--k-text-muted);
    margin: 0;
    position: relative;
    z-index: 1;
}

/* DLK-only badge pill (track feature list) */
.m3-dlk-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #4a0d8f, #7c3dc9);
    color: #fff;
    padding: 2px 7px;
    border-radius: 20px;
    margin-left: 6px;
    vertical-align: middle;
    white-space: nowrap;
}

/* Bento card DLK-only note */
.m3-bento-dlk-note {
    font-size: 0.78rem;
    font-weight: 600;
    color: #7c3dc9;
    margin: 0.75rem 0 0;
    padding: 0.4rem 0.75rem;
    background: rgba(106, 13, 173, 0.08);
    border-left: 3px solid #7c3dc9;
    border-radius: 0 6px 6px 0;
}

/* ═══════════════════════════════════════════════════════════════════
   BADGE JOURNEY — badge image sizing (scoped CSS override)
   ═══════════════════════════════════════════════════════════════════ */
.m3-badge-panel .badge-row-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    justify-items: center;
}
.m3-badge-panel .badge-item .badge-img-wrap {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
}
.m3-badge-panel .badge-item .badge-png {
    width: 100px;
    height: 100px;
    object-fit: contain;
    display: block;
}

.m3-badge-panel {
    background: var(--k-surface-sub);
    border-radius: var(--k-radius-card);
    padding: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--k-shadow-ambient);
}

.m3-badge-rows {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}
.m3-badge-row {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}
.m3-badge-pip {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    flex-shrink: 0;
}
.m3-badge-row strong {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--k-text);
    line-height: 1.2;
}
.m3-badge-row p {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 0.82rem;
    color: var(--k-text-muted);
    margin: 0;
}

/* ═══════════════════════════════════════════════════════════════════
   STORY IMAGE
   ═══════════════════════════════════════════════════════════════════ */
.m3-link-cta {
    display: inline-block;
    margin-top: 1.25rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--k-primary, #2056ba);
    text-decoration: none;
    transition: color 0.15s;
}
.m3-link-cta:hover { color: var(--k-cta, #feaa00); text-decoration: underline; }

.m3-story-img-wrap {
    border-radius: var(--k-radius-card);
    overflow: hidden;
    box-shadow: var(--k-shadow-float);
}
.m3-story-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: contain;
    display: block;
}

/* ═══════════════════════════════════════════════════════════════════
   FOUNDING 25 — deep primary, dot grid, orange CTA energy
   ═══════════════════════════════════════════════════════════════════ */
.m3-founding {
    position: relative;
    overflow: hidden;
    background: linear-gradient(140deg, #0e1f3d 0%, #1a3a7c 55%, #2056ba 100%);
    padding-block: var(--k-section-pad);
    padding-inline: 1.5rem;
}
.m3-founding-dotgrid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
}
.m3-founding-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}
.m3-check-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.m3-check-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255,255,255,0.88);
}
.m3-check-list li::before {
    content: '';
    display: inline-flex;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    flex-shrink: 0;
    background-color: var(--k-cta);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230e1f3d' stroke-width='2.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 12px;
    background-position: center;
}

.m3-spots-card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--k-radius-card);
    padding: 2.25rem;
    text-align: center;
    min-width: 240px;
    display: flex;
    flex-direction: column;
    gap: 0;
    box-shadow: 0 8px 48px rgba(0,0,0,0.25), inset 0 0 0 1px rgba(255,255,255,0.08);
}
.m3-spots-eyebrow {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 0.64rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin: 0 0 0.25rem;
}
.m3-spots-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 5rem;
    font-weight: 800;
    color: var(--k-cta);
    line-height: 1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
}
.m3-spots-note {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.35);
    margin: 0.875rem 0 0;
}
.m3-spots-full s {
    color: rgba(255,255,255,0.3);
    text-decoration-color: rgba(255,80,60,0.7);
    text-decoration-thickness: 3px;
}
.m3-spots-full-msg {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255,255,255,0.72);
    margin-bottom: 1rem;
}

/* ═══════════════════════════════════════════════════════════════════
   CAROUSEL
   ═══════════════════════════════════════════════════════════════════ */
.m3-carousel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
}
.m3-carousel-main {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    border-radius: var(--k-radius-card);
    overflow: hidden;
    box-shadow: var(--k-shadow-float);
}
.m3-carousel-img { width: 100%; height: 100%; object-fit: cover; display: block; }

.m3-thumbs {
    display: flex;
    gap: 0.625rem;
    flex-wrap: wrap;
    justify-content: center;
}
.m3-thumb {
    width: 58px; height: 58px;
    min-width: 44px; min-height: 44px;
    border-radius: 14px;
    overflow: hidden;
    background: none;
    padding: 0;
    cursor: pointer;
    box-shadow: var(--k-shadow-ambient);
    transition: box-shadow 180ms ease, transform 180ms ease;
    outline: 3px solid transparent;
    outline-offset: 2px;
}
.m3-thumb:hover { transform: scale(1.08); }
.m3-thumb-on { outline-color: var(--k-secondary-cont); }
.m3-thumb:focus-visible { outline-color: var(--k-primary); }
.m3-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

.m3-dots { display: flex; gap: 0.5rem; }
.m3-dot {
    width: 22px; height: 22px;
    border-radius: 50%;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.m3-dot::after {
    content: '';
    display: block;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--k-outline-faint);
    transition: background 200ms ease, transform 200ms ease, width 200ms ease;
}
.m3-dot-on::after {
    background: var(--k-primary);
    transform: scale(1.35);
    width: 20px;
    border-radius: 4px;
}
.m3-dot:focus-visible { outline: 2px solid var(--k-primary); outline-offset: 2px; border-radius: 4px; }

/* ═══════════════════════════════════════════════════════════════════
   FINAL CTA — deep primary + dot grid
   ═══════════════════════════════════════════════════════════════════ */
.m3-cta {
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, #0e1f3d 0%, #162f6a 50%, #2056ba 100%);
    text-align: center;
    padding-block: 5.5rem;
    padding-inline: 1.5rem;
}
.m3-cta-dotgrid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.55;
}
.m3-cta-inner {
    max-width: 680px;
    position: relative;
    z-index: 1;
}
.m3-cta-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2.25rem, 5.5vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 1.25rem;
    letter-spacing: -0.03em;
}
.m3-cta-body {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.68);
    max-width: 54ch;
    margin-inline: auto;
    margin-bottom: 2.5rem;
}
.m3-cta-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════════════
   REDUCED MOTION
   ═══════════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
    .m3-track, .m3-bento-card, .m3-step-card, .m3-thumb,
    .m3-dot::after, .m3-btn { transition: none !important; transform: none !important; }
}

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE — 960px
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 960px) {
    .m3-split         { grid-template-columns: 1fr; gap: 2.5rem; }
    .m3-steps         { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
    .m3-tracks        { grid-template-columns: repeat(2, 1fr); max-width: 680px; margin-inline: auto; }
    .m3-bento         { grid-template-columns: 1fr 1fr; }
    .m3-bento-wide    { grid-column: span 2; }
    .m3-founding-grid { grid-template-columns: 1fr; }
    .m3-spots-card    { min-width: unset; }
    .m3-stat-sep      { display: none; }
    .m3-stat          { padding-inline: 1.25rem; }
}

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE — 560px
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 560px) {
    :root { --k-section-pad: 56px; }
    .m3-hero          { padding-block: 3.5rem 3rem; }
    .m3-hero-ctas     { flex-direction: column; }
    .m3-hero-ctas .m3-btn { width: 100%; }
    .m3-hero-title    { font-size: clamp(2.25rem, 8vw, 3rem); }
    .m3-tracks        { grid-template-columns: 1fr; max-width: 440px; }
    .m3-bento         { grid-template-columns: 1fr; }
    .m3-bento-wide    { grid-column: span 1; }
    .m3-bento-flex    { flex-direction: column; padding: 0 !important; }
    .m3-bento-flex .m3-bento-text { padding: 1.5rem; padding-bottom: 0; }
    .m3-bento-flex .m3-bento-art  { padding: 1rem 1.5rem; }
    .m3-hero-stats    { gap: 0.5rem; }
    .m3-stat          { flex: 1 1 40%; }
    .m3-cta-btns      { flex-direction: column; }
    .m3-cta-btns .m3-btn { width: 100%; max-width: 340px; }
    .m3-spots-num     { font-size: 3.75rem; }
}
