/*
Theme Name: Systems Success Pro — v2
Theme URI: https://systemssuccesspro.com
Author: Jonathan Probert
Description: AI Operating Systems for small business founders — white/warm redesign (Albert-led). Serif headlines (Fraunces), pill buttons, soft cards.
Version: 2.0.0
Text Domain: ssp-website-v2
*/

/* ============================================
   FONTS — Fraunces (display) · Poppins (body) · Barlow Condensed (labels)
============================================ */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Poppins:wght@300;400;500;600;700&family=Barlow+Condensed:wght@500;600;700&display=swap');

/* ============================================
   DESIGN TOKENS — white / warm / Albert-led
============================================ */
:root {
    /* Base surfaces */
    --white:      #FFFFFF;
    --off-white:  #F7F8FB;
    --paper:      #FCFCFE;
    /* Soft accent tints (section bands / glass) */
    --tint-blue:  #EEF2FD;
    --tint-navy:  #EAEDF7;
    --tint-orange:#FFF2E9;
    /* Brand */
    --navy:       #112970;
    --navy-deep:  #0C1E54;
    --blue:       #2A49A6;
    --blue-bright:#3B5BD9;
    --orange:     #FF6103;
    --orange-dk:  #E55500;
    /* Text */
    --ink:        #15203B;
    --body:       #41496180;
    --body-solid: #414961;
    --muted:      #6B7488;
    /* Lines */
    --line:       #E7EAF2;
    --line-soft:  #EFF1F7;

    /* Type */
    --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
    --font-body:    'Poppins', system-ui, -apple-system, sans-serif;
    --font-label:   'Barlow Condensed', var(--font-body);

    /* Radius — soft (Albert) */
    --r-sm: 10px;
    --r:    16px;
    --r-lg: 22px;
    --r-xl: 28px;
    --pill: 9999px;

    /* Shadows — navy-tinted, never black */
    --sh-sm:   0 2px 10px rgba(17,41,112,0.05);
    --sh-md:   0 12px 34px rgba(17,41,112,0.08);
    --sh-lg:   0 28px 64px rgba(17,41,112,0.12);
    --sh-chip: 0 10px 28px rgba(17,41,112,0.12);
    --sh-orange: 0 14px 30px rgba(255,97,3,0.28);

    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --t:    0.25s;

    --max: 1180px;
}

/* ============================================
   RESET & BASE
============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font-body);
    color: var(--body-solid);
    background: var(--white);
    line-height: 1.7;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
img { height: auto; }
ul { list-style: none; }
a  { text-decoration: none; color: inherit; }
button { font-family: inherit; }

/* ============================================
   UTILITY
============================================ */
.container { max-width: var(--max); margin: 0 auto; padding: 0 28px; }

.text--orange { color: var(--orange); }
.text--blue   { color: var(--blue-bright); }

h1, h2, h3 { font-family: var(--font-display); color: var(--ink); font-weight: 500; letter-spacing: -0.012em; line-height: 1.1; }

.eyebrow {
    display: inline-block;
    font-family: var(--font-label);
    font-size: 0.86rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 18px;
}
.eyebrow--pill {
    padding: 7px 16px 5px;
    border: 1px solid rgba(255,97,3,0.28);
    border-radius: var(--pill);
    background: var(--tint-orange);
    letter-spacing: 0.14em;
}
.eyebrow--muted { color: var(--muted); }

.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head h2 {
    font-size: clamp(2rem, 3.6vw, 3rem);
    font-weight: 500;
}
.section-head .section-sub {
    margin-top: 18px;
    font-size: 1.08rem;
    color: var(--muted);
    line-height: 1.75;
}

/* Scroll fade-in */
.fade-in { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.fade-in.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
    .fade-in { opacity: 1; transform: none; transition: none; }
    * { animation: none !important; }
    html { scroll-behavior: auto; }
}

/* ============================================
   BUTTONS — pills (Albert)
============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 14px 26px;
    border-radius: var(--pill);
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease),
                background var(--t) var(--ease), border-color var(--t) var(--ease), color var(--t) var(--ease);
    white-space: nowrap;
    line-height: 1;
}
.btn--primary { background: var(--orange); color: #fff; box-shadow: 0 6px 18px rgba(255,97,3,0.22); }
.btn--primary:hover { background: var(--orange-dk); transform: translateY(-2px); box-shadow: var(--sh-orange); }

.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-deep); transform: translateY(-2px); box-shadow: var(--sh-md); }

.btn--outline { background: transparent; color: var(--navy); border-color: var(--line); }
.btn--outline:hover { border-color: var(--navy); transform: translateY(-2px); box-shadow: var(--sh-sm); }

.btn--light { background: #fff; color: var(--navy); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--sh-md); }

.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.35); }
.btn--ghost-light:hover { background: rgba(255,255,255,0.08); border-color: #fff; }

.btn--sm { padding: 10px 18px; font-size: 0.86rem; }
.btn--lg { padding: 17px 32px; font-size: 1.02rem; }

.btn__arr { transition: transform var(--t) var(--ease); }
.btn:hover .btn__arr { transform: translateX(4px); }

.trust {
    font-size: 0.82rem;
    color: var(--muted);
    letter-spacing: 0.02em;
}

/* ============================================
   NAVIGATION — white, sticky, lean
============================================ */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(255,255,255,0);
    transition: background var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
    border-bottom: 1px solid transparent;
}
.nav.scrolled {
    background: rgba(255,255,255,0.88);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    box-shadow: var(--sh-sm);
    border-bottom-color: var(--line-soft);
}
.nav__inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 28px;
    height: 74px;
    display: flex;
    align-items: center;
    gap: 38px;
}
.nav__logo { flex-shrink: 0; margin-right: auto; display: flex; align-items: center; }
.nav__logo img { height: 30px; width: auto; }

.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a {
    color: var(--body-solid);
    font-size: 0.92rem;
    font-weight: 500;
    transition: color var(--t);
    position: relative;
}
.nav__links a:hover { color: var(--navy); }

.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav__burger span { width: 24px; height: 2px; background: var(--navy); display: block; border-radius: 2px; transition: all var(--t); }

.nav__mobile {
    display: none;
    flex-direction: column;
    gap: 22px;
    padding: 22px 28px 30px;
    background: #fff;
    border-top: 1px solid var(--line-soft);
    box-shadow: var(--sh-md);
}
.nav__mobile.open { display: flex; }
.nav__mobile ul { display: flex; flex-direction: column; gap: 16px; }
.nav__mobile a { color: var(--body-solid); font-size: 1.02rem; font-weight: 500; }

/* ============================================
   HERO — orbit pattern (no photo)
============================================ */
.hero {
    position: relative;
    padding: 150px 0 90px;
    background:
        radial-gradient(58% 70% at 88% 8%, var(--tint-blue) 0%, rgba(238,242,253,0) 60%),
        radial-gradient(40% 50% at 6% 30%, var(--tint-orange) 0%, rgba(255,242,233,0) 55%),
        var(--white);
    overflow: hidden;
}
.hero__grid {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 28px;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 56px;
    align-items: center;
}
.hero__headline {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    font-weight: 500;
    line-height: 1.04;
    letter-spacing: -0.018em;
    color: var(--ink);
    margin: 18px 0 22px;
}
.hero__sub {
    font-size: clamp(1.02rem, 1.5vw, 1.18rem);
    color: var(--muted);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 34px;
}
.hero__cta-row { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }

/* Orbit visual */
.hero__visual { position: relative; min-height: 440px; display: flex; align-items: center; justify-content: center; }

.brief-card {
    position: relative;
    z-index: 2;
    width: 300px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    box-shadow: var(--sh-lg);
    padding: 22px 22px 18px;
}
.brief-card__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.brief-card__title { font-family: var(--font-display); font-size: 1.12rem; font-weight: 600; color: var(--ink); }
.brief-card__badge { font-family: var(--font-label); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); background: var(--tint-orange); padding: 4px 10px; border-radius: var(--pill); }
.brief-row { display: flex; align-items: center; gap: 12px; padding: 11px 0; border-top: 1px solid var(--line-soft); }
.brief-row:first-of-type { border-top: none; }
.brief-row__icon { width: 32px; height: 32px; flex-shrink: 0; border-radius: 9px; display: flex; align-items: center; justify-content: center; background: var(--tint-blue); color: var(--blue); }
.brief-row__icon svg { width: 17px; height: 17px; }
.brief-row__label { font-size: 0.82rem; color: var(--muted); flex: 1; }
.brief-row__val { font-size: 0.92rem; font-weight: 600; color: var(--ink); }
.brief-row__val.up { color: #1f9d6b; }

/* Floating chips */
.chip {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--line);
    border-radius: var(--pill);
    box-shadow: var(--sh-chip);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--ink);
    white-space: nowrap;
    animation: float 6s ease-in-out infinite;
}
.chip svg { width: 15px; height: 15px; color: var(--orange); flex-shrink: 0; }
.chip--check svg { color: #1f9d6b; }
.chip--blue svg { color: var(--blue); }
.chip-1 { top: 6%;  left: -6%;  animation-delay: 0s;   }
.chip-2 { top: 20%; right: -8%; animation-delay: 1.1s; }
.chip-3 { bottom: 22%; left: -10%; animation-delay: 0.5s; }
.chip-4 { bottom: 6%; right: -4%; animation-delay: 1.7s; }
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}
.hero__ring { position: absolute; inset: 4% 8%; border: 1px dashed var(--line); border-radius: 50%; z-index: 0; }

/* ============================================
   SECTION SHELL
============================================ */
.section { padding: 96px 0; }
.section--tint { background: var(--off-white); }
.section--tint-blue { background: var(--tint-blue); }

/* ============================================
   PROBLEM
============================================ */
.problem__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.problem__card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 32px 28px;
    box-shadow: var(--sh-sm);
    transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.problem__card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.icon-badge {
    width: 52px; height: 52px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    background: var(--tint-orange);
    color: var(--orange);
    margin-bottom: 18px;
}
.icon-badge svg { width: 24px; height: 24px; }
.icon-badge--blue { background: var(--tint-blue); color: var(--blue); }
.problem__card h3 { font-size: 1.22rem; font-weight: 600; margin-bottom: 10px; }
.problem__card p { font-size: 0.94rem; color: var(--muted); line-height: 1.7; }

/* ============================================
   SOLUTION — accordion
============================================ */
.solution__hint { text-align: center; font-size: 0.88rem; color: var(--muted); margin: -32px auto 30px; }
.solution__stack {
    max-width: 920px; margin: 0 auto;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    overflow: hidden;
    background: #fff;
    box-shadow: var(--sh-md);
}
.solution__row {
    display: flex; align-items: flex-start; gap: 28px;
    width: 100%;
    padding: 28px 34px;
    border: none;
    border-bottom: 1px solid var(--line-soft);
    background: #fff;
    text-align: left;
    cursor: pointer;
    transition: background var(--t) var(--ease);
}
.solution__row:last-child { border-bottom: none; }
.solution__row:hover { background: var(--paper); }
.solution__num {
    font-family: var(--font-display);
    font-size: 1.6rem; font-weight: 600;
    color: var(--orange);
    line-height: 1; min-width: 44px; padding-top: 2px; flex-shrink: 0;
}
.solution__body { flex: 1; min-width: 0; }
.solution__head { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.solution__body h3 { font-size: 1.3rem; font-weight: 600; margin: 0; }
.solution__toggle {
    width: 28px; height: 28px; flex-shrink: 0;
    border-radius: 50%; background: var(--tint-blue); color: var(--blue);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; line-height: 1; transition: transform 0.35s var(--ease), background var(--t);
}
.solution__row[aria-expanded="true"] .solution__toggle { transform: rotate(45deg); background: var(--orange); color: #fff; }
.solution__lead { font-size: 0.96rem; color: var(--muted); line-height: 1.7; margin-top: 8px; max-width: 640px; }
.solution__detail { display: grid; grid-template-rows: 0fr; opacity: 0; transition: grid-template-rows 0.4s var(--ease), opacity 0.3s var(--ease), margin-top 0.4s var(--ease); }
.solution__detail-inner { overflow: hidden; min-height: 0; }
.solution__row[aria-expanded="true"] .solution__detail { grid-template-rows: 1fr; opacity: 1; margin-top: 16px; }
.solution__detail p { font-size: 0.92rem; color: var(--body-solid); line-height: 1.8; margin-bottom: 12px; max-width: 640px; }
.solution__detail p:last-child { margin-bottom: 0; }
.solution__detail strong { color: var(--navy); font-weight: 600; }
.solution__cta { text-align: center; margin-top: 44px; }

/* ============================================
   ABOUT — Jonathan's photo lives here
============================================ */
.about__grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 72px; align-items: center; }
.about__photo-wrap { position: relative; }
.about__photo-wrap img {
    width: 100%; border-radius: var(--r-xl);
    object-fit: cover; object-position: top center;
    aspect-ratio: 4/5; box-shadow: var(--sh-lg);
}
.about__badge {
    position: absolute; bottom: -18px; right: -14px;
    background: var(--orange); color: #fff;
    padding: 15px 20px; border-radius: var(--r);
    font-size: 0.8rem; font-weight: 500; line-height: 1.45; text-align: center;
    box-shadow: var(--sh-orange);
}
.about__badge strong { font-size: 1rem; display: block; font-weight: 700; }
.about__content h2 { font-size: clamp(2rem, 3.4vw, 2.7rem); font-weight: 500; margin-bottom: 16px; }
.about__lead { font-size: 1.14rem; font-weight: 500; color: var(--navy); margin-bottom: 18px; line-height: 1.55; font-family: var(--font-body); }
.about__content p { font-size: 0.96rem; color: var(--muted); line-height: 1.8; margin-bottom: 16px; }
.about__stats { display: flex; gap: 34px; padding: 26px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin: 30px 0; }
.about__stat-num { font-family: var(--font-display); font-size: 2.1rem; font-weight: 600; color: var(--orange); display: block; }
.about__stat-label { font-size: 0.74rem; color: var(--muted); font-weight: 500; line-height: 1.4; display: block; margin-top: 4px; }

/* ============================================
   PILLARS
============================================ */
.pillars__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pillar__card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
    padding: 30px 26px; box-shadow: var(--sh-sm);
    transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.pillar__card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.pillar__card h3 { font-size: 1.08rem; font-weight: 600; margin-bottom: 10px; }
.pillar__card p { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }
.pillars__cta { text-align: center; margin-top: 44px; }

/* ============================================
   HOW IT WORKS
============================================ */
.hiw__steps { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; position: relative; }
.hiw__steps::before { content: ''; position: absolute; left: 27px; top: 40px; bottom: 40px; width: 2px; background: var(--line); }
.hiw__step { display: flex; gap: 34px; padding: 28px 0; position: relative; }
.hiw__num {
    width: 56px; height: 56px; flex-shrink: 0; z-index: 1;
    border-radius: 50%; background: #fff; border: 2px solid var(--tint-blue);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; color: var(--blue);
    box-shadow: var(--sh-sm);
}
.hiw__body h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 8px; }
.hiw__body p { font-size: 0.94rem; color: var(--muted); line-height: 1.75; margin-bottom: 12px; }
.hiw__tag {
    display: inline-block; font-family: var(--font-label); font-size: 0.78rem; font-weight: 600;
    letter-spacing: 0.06em; text-transform: uppercase; color: var(--orange);
    background: var(--tint-orange); padding: 5px 14px 3px; border-radius: var(--pill);
}
.hiw__cta { text-align: center; margin-top: 48px; }

/* ============================================
   FAQ
============================================ */
.faq__list { max-width: 800px; margin: 0 auto; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; background: #fff; box-shadow: var(--sh-sm); }
.faq__item { border-bottom: 1px solid var(--line-soft); }
.faq__item:last-child { border-bottom: none; }
.faq__q {
    width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 18px;
    padding: 22px 28px; background: none; border: none; text-align: left; cursor: pointer;
    font-family: var(--font-body); font-size: 1rem; font-weight: 600; color: var(--ink);
    transition: background var(--t);
}
.faq__q:hover { background: var(--paper); }
.faq__icon { width: 26px; height: 26px; flex-shrink: 0; border-radius: 50%; background: var(--tint-blue); color: var(--blue); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; line-height: 1; transition: transform var(--t) var(--ease), background var(--t); }
.faq__q[aria-expanded="true"] .faq__icon { transform: rotate(45deg); background: var(--orange); color: #fff; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq__a.open { max-height: 600px; }
.faq__a p { padding: 0 28px 24px; font-size: 0.94rem; color: var(--muted); line-height: 1.8; }

/* ============================================
   FINAL CTA
============================================ */
.final-cta { padding: 112px 0; position: relative; overflow: hidden; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 60%, #1a2f7a 100%); }
.final-cta::before { content: ''; position: absolute; top: -160px; left: 50%; transform: translateX(-50%); width: 680px; height: 680px; background: radial-gradient(circle, rgba(255,97,3,0.16) 0%, transparent 68%); pointer-events: none; }
.final-cta__inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; text-align: center; }
.final-cta__inner .eyebrow { color: rgba(255,255,255,0.6); }
.final-cta__inner h2 { font-size: clamp(2.1rem, 4vw, 3.2rem); font-weight: 500; color: #fff; margin: 12px 0 20px; }
.final-cta__inner p { font-size: 1.06rem; color: rgba(255,255,255,0.72); margin-bottom: 36px; line-height: 1.75; }
.final-cta__trust { display: block; font-size: 0.82rem; color: rgba(255,255,255,0.45); margin-top: 18px; }

/* ============================================
   FOOTER
============================================ */
.footer { background: var(--navy-deep); padding: 70px 0 38px; color: #fff; }
.footer__top { display: grid; grid-template-columns: 1.3fr 2fr; gap: 64px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 30px; }
.footer__brand img { height: 30px; margin-bottom: 18px; }
.footer__brand p { font-size: 0.9rem; color: rgba(255,255,255,0.5); line-height: 1.7; max-width: 290px; }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.footer__col h4 { font-family: var(--font-label); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 16px; }
.footer__col ul { display: flex; flex-direction: column; gap: 11px; }
.footer__col a { font-size: 0.9rem; color: rgba(255,255,255,0.7); transition: color var(--t); }
.footer__col a:hover { color: #fff; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; }
.footer__bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); }

/* ============================================
   PILL TAB-SWITCHER (reusable — services/etc.)
============================================ */
.tabs { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 36px; }
.tab {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 9px 18px; border-radius: var(--pill);
    border: 1px solid var(--line); background: #fff;
    font-size: 0.9rem; font-weight: 500; color: var(--muted); cursor: pointer;
    transition: all var(--t) var(--ease);
}
.tab svg { width: 16px; height: 16px; }
.tab:hover { border-color: var(--line); color: var(--ink); box-shadow: var(--sh-sm); }
.tab[aria-selected="true"] { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1024px) {
    .hero__grid { gap: 32px; }
    .problem__grid, .pillars__grid { grid-template-columns: 1fr 1fr; }
    .pillars__grid .pillar__card:last-child { grid-column: 1 / -1; }
    .about__grid { gap: 44px; }
    .footer__top { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .nav__links, .nav__inner > .btn { display: none; }
    .nav__burger { display: flex; }
    .hero { padding: 124px 0 64px; }
    .hero__grid { grid-template-columns: 1fr; }
    .hero__visual { min-height: 380px; margin-top: 12px; }
    .hero__cta-row { align-items: flex-start; }
    .problem__grid, .pillars__grid { grid-template-columns: 1fr; }
    .pillars__grid .pillar__card:last-child { grid-column: auto; }
    .about__grid { grid-template-columns: 1fr; }
    .about__badge { right: 12px; bottom: 12px; }
    .solution__row { gap: 18px; padding: 22px 22px; }
    .hiw__step { gap: 22px; }
    .section { padding: 72px 0; }
    .final-cta { padding: 84px 0; }
    .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
}
@media (max-width: 480px) {
    .hero__headline { font-size: 2.4rem; }
    .chip { font-size: 0.74rem; padding: 7px 11px; }
    .brief-card { width: 260px; }
    .about__stats { gap: 18px; flex-wrap: wrap; }
    .footer__cols { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   === SOLUTION LAYERS — Albert pill tab-switcher + animated mockups
   ============================================================ */
[hidden] { display: none !important; }

.layers { max-width: 1000px; margin: 0 auto; }
.layers__tabs { margin-bottom: 44px; }
.layers__tabs .tab { font-weight: 600; }

.layer-panel {
    display: grid;
    grid-template-columns: 1fr 1.04fr;
    gap: 54px;
    align-items: center;
    animation: panelIn 0.5s var(--ease);
}
@keyframes panelIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

.layer-panel__num { font-family: var(--font-label); font-size: 0.84rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--orange); }
.layer-panel__text h3 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); font-weight: 600; margin: 8px 0 14px; }
.layer-panel__text .lead { font-size: 1.06rem; color: var(--body-solid); line-height: 1.65; margin-bottom: 14px; }
.layer-panel__text p { font-size: 0.95rem; color: var(--muted); line-height: 1.75; margin-bottom: 10px; }
.layer-panel__text p:last-child { margin-bottom: 0; }
.layer-panel__text strong { color: var(--navy); font-weight: 600; }

.layer-panel__visual {
    position: relative;
    background: linear-gradient(160deg, var(--tint-blue) 0%, #ffffff 72%);
    border: 1px solid var(--line);
    border-radius: var(--r-xl);
    padding: 38px;
    min-height: 320px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--sh-md);
    overflow: hidden;
}

/* mock card base */
.mock { width: 100%; max-width: 340px; background: #fff; border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--sh-lg); padding: 18px 18px 16px; }
.mock__head { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 0.92rem; color: var(--ink); margin-bottom: 14px; }
.mock__head svg { width: 17px; height: 17px; color: var(--blue); }
.mock__badge { margin-left: auto; font-family: var(--font-label); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--orange); background: var(--tint-orange); padding: 3px 9px; border-radius: var(--pill); }
.mock__live { margin-left: auto; font-size: 0.72rem; font-weight: 600; color: #1f9d6b; display: inline-flex; align-items: center; gap: 6px; }
.mock__live::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: #1f9d6b; animation: pulse 1.6s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.35; transform: scale(0.6); } }

/* Layer 1 — context list */
.ctx-list { display: flex; flex-direction: column; gap: 11px; }
.ctx-list li { display: flex; align-items: flex-start; gap: 9px; font-size: 0.85rem; color: var(--body-solid); line-height: 1.4; }
.ctx-list svg { width: 15px; height: 15px; color: #1f9d6b; flex-shrink: 0; margin-top: 2px; }

/* Layer 2 — data bars */
.bars { display: flex; align-items: flex-end; gap: 7px; height: 86px; margin-bottom: 16px; }
.bars span { flex: 1; height: var(--h); border-radius: 5px 5px 0 0; background: linear-gradient(to top, var(--blue), var(--blue-bright)); transform-origin: bottom; animation: grow 0.85s var(--ease) both; }
.bars span:nth-child(even) { background: linear-gradient(to top, var(--orange), #ff8a47); }
.bars span:nth-child(2){animation-delay:.05s} .bars span:nth-child(3){animation-delay:.1s} .bars span:nth-child(4){animation-delay:.15s} .bars span:nth-child(5){animation-delay:.2s} .bars span:nth-child(6){animation-delay:.25s} .bars span:nth-child(7){animation-delay:.3s}
@keyframes grow { from { transform: scaleY(0); } to { transform: scaleY(1); } }
.mock__stats { display: flex; justify-content: space-between; gap: 8px; border-top: 1px solid var(--line-soft); padding-top: 13px; }
.mock__stats b { display: block; font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; color: var(--ink); }
.mock__stats small { font-size: 0.68rem; color: var(--muted); }

/* Layer 3 — brief lines */
.brief-line { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: var(--body-solid); padding: 10px 0; border-top: 1px solid var(--line-soft); }
.brief-line:first-of-type { border-top: none; }
.brief-line svg { width: 16px; height: 16px; color: var(--blue); flex-shrink: 0; }
.brief-line.flag { color: var(--navy); font-weight: 500; }
.brief-line.flag svg { color: var(--orange); }

/* Layer 4 — automation flow */
.mock--flow { display: flex; flex-direction: column; }
.flow-step { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; font-weight: 500; color: var(--ink); background: var(--off-white); border: 1px solid var(--line); border-radius: 10px; padding: 11px 13px; animation: flowin 0.5s var(--ease) both; }
.flow-step svg { width: 16px; height: 16px; color: var(--blue); flex-shrink: 0; }
.flow-step.done { background: var(--tint-orange); border-color: rgba(255,97,3,0.3); }
.flow-step.done svg { color: var(--orange); }
.flow-step:nth-child(1){animation-delay:.1s} .flow-step:nth-child(3){animation-delay:.35s} .flow-step:nth-child(5){animation-delay:.6s} .flow-step:nth-child(7){animation-delay:.85s}
.flow-arrow { display: flex; justify-content: center; color: var(--line); padding: 3px 0; }
.flow-arrow svg { width: 16px; height: 16px; }
@keyframes flowin { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* Layer 5 — build modules */
.mock--build { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; max-width: 360px; padding: 0; background: transparent; border: none; box-shadow: none; }
.mod { display: flex; flex-direction: column; gap: 9px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 15px; font-size: 0.82rem; font-weight: 600; color: var(--ink); box-shadow: var(--sh-sm); transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease); animation: flowin 0.5s var(--ease) both; }
.mod:nth-child(2){animation-delay:.08s} .mod:nth-child(3){animation-delay:.16s} .mod:nth-child(4){animation-delay:.24s}
.mod:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.mod svg { width: 20px; height: 20px; color: var(--orange); }

/* ============================================================
   === FAQ — two-column (Albert) ===
   ============================================================ */
.faq2 { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 56px; align-items: start; }
.faq2__intro { position: sticky; top: 108px; }
.faq2__intro h2 { font-size: clamp(2rem, 3.4vw, 2.8rem); font-weight: 500; margin: 8px 0 14px; }
.faq2__intro p { color: var(--muted); font-size: 1.02rem; line-height: 1.7; margin-bottom: 24px; max-width: 340px; }
.faq2__list { display: flex; flex-direction: column; gap: 12px; }
.faq2__list .faq__item { background: #fff; border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--sh-sm); overflow: hidden; transition: box-shadow var(--t) var(--ease), border-color var(--t) var(--ease); }
.faq2__list .faq__item:hover { box-shadow: var(--sh-md); }
.faq2__list .faq__item:has(.faq__q[aria-expanded="true"]) { border-color: rgba(42,73,166,0.35); box-shadow: var(--sh-md); }

@media (max-width: 880px) {
    .layer-panel { grid-template-columns: 1fr; gap: 30px; }
    .layer-panel__visual { min-height: auto; padding: 30px; }
    .faq2 { grid-template-columns: 1fr; gap: 28px; }
    .faq2__intro { position: static; }
    .faq2__intro p { max-width: none; }
}

/* ============================================================
   === SHARED PAGE COMPONENTS (services / tutoring / podcast / blog)
   ============================================================ */

/* Inner-page hero — centered, white with tint glow */
.page-hero {
    padding: 150px 0 72px;
    text-align: center;
    background:
        radial-gradient(60% 72% at 50% 0%, var(--tint-blue) 0%, rgba(238,242,253,0) 62%),
        radial-gradient(38% 46% at 88% 18%, var(--tint-orange) 0%, rgba(255,242,233,0) 60%),
        var(--white);
}
.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 4.6vw, 3.7rem);
    font-weight: 500; line-height: 1.07; letter-spacing: -0.018em;
    color: var(--ink); margin: 16px auto 18px; max-width: 880px;
}
.page-hero__sub { font-size: clamp(1.02rem, 1.6vw, 1.18rem); color: var(--muted); line-height: 1.7; max-width: 640px; margin: 0 auto 30px; }
.page-hero__cta { display: flex; flex-direction: column; align-items: center; gap: 13px; }
.page-hero__note { font-size: 0.92rem; color: var(--muted); max-width: 600px; margin: 22px auto 0; line-height: 1.6; }
.page-hero__note strong { color: var(--navy); }

/* Lede paragraph (intro under a heading) */
.lede { max-width: 760px; margin: 0 auto; text-align: center; font-size: 1.1rem; color: var(--body-solid); line-height: 1.7; }
.lede + .lede { margin-top: 18px; }

/* Generic card grids */
.grid { display: grid; gap: 22px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* Generic soft card */
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px 26px; box-shadow: var(--sh-sm); transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease); }
.card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.card h3 { font-size: 1.14rem; font-weight: 600; margin-bottom: 10px; }
.card p { font-size: 0.92rem; color: var(--muted); line-height: 1.7; }
.card--tint { background: var(--off-white); box-shadow: none; }

/* Checklist */
.checklist { display: flex; flex-direction: column; gap: 11px; }
.checklist li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.95rem; color: var(--body-solid); line-height: 1.5; }
.checklist svg { width: 17px; height: 17px; color: var(--orange); flex-shrink: 0; margin-top: 3px; }
.checklist--green svg { color: #1f9d6b; }

/* Detail strip (tutoring facts) */
.detail-strip { display: grid; grid-template-columns: repeat(4, 1fr); max-width: 940px; margin: 0 auto; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; background: #fff; box-shadow: var(--sh-md); }
.detail-strip__item { padding: 26px 24px; border-right: 1px solid var(--line-soft); }
.detail-strip__item:last-child { border-right: none; }
.detail-strip__label { font-family: var(--font-label); font-size: 0.74rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange); margin-bottom: 9px; }
.detail-strip__val { font-size: 0.9rem; color: var(--body-solid); line-height: 1.5; }
.detail-strip__val b { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--ink); display: block; margin-bottom: 2px; }

/* Offer cards (services) */
.offer { display: flex; flex-direction: column; border-top: 4px solid var(--orange); }
.offer__step { font-family: var(--font-label); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); margin-bottom: 6px; }
.offer h3 { font-size: 1.5rem; font-weight: 600; line-height: 1.15; margin-bottom: 8px; }
.offer__sub { font-size: 0.96rem; color: var(--muted); margin-bottom: 20px; }
.offer h4 { font-family: var(--font-body); font-size: 0.76rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy); margin: 18px 0 10px; }
.offer .checklist { margin-bottom: 6px; }
.offer__fit { margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line-soft); font-size: 0.88rem; color: var(--muted); font-style: italic; }

/* "Both include" strip */
.both-strip { max-width: 940px; margin: 24px auto 0; background: var(--tint-blue); border-radius: var(--r-lg); padding: 26px 30px; }
.both-strip h4 { font-family: var(--font-body); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy); margin-bottom: 14px; text-align: center; }
.both-strip ul { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px 24px; }
.both-strip li { display: flex; gap: 9px; align-items: flex-start; font-size: 0.88rem; color: var(--body-solid); }
.both-strip li svg { width: 15px; height: 15px; color: #1f9d6b; flex-shrink: 0; margin-top: 3px; }

/* Session cards (tutoring) */
.session { display: flex; flex-direction: column; }
.session__num { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 12px; background: var(--tint-blue); color: var(--blue); font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; margin-bottom: 14px; }
.session h3 { font-size: 1.2rem; font-weight: 600; margin-bottom: 6px; }
.session__goal { font-size: 0.9rem; color: var(--muted); line-height: 1.6; margin-bottom: 14px; }
.session .checklist { margin-bottom: 16px; }
.session .checklist li { font-size: 0.88rem; }
.session__win { margin-top: auto; font-size: 0.86rem; color: var(--navy); font-weight: 500; background: var(--tint-orange); border-radius: 10px; padding: 11px 13px; line-height: 1.45; }
.session__win b { font-weight: 700; }

/* Keep-going menu (tutoring) */
.menu-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.menu-item { display: flex; gap: 14px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 18px 22px; box-shadow: var(--sh-sm); transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease); }
.menu-item:hover { transform: translateX(4px); box-shadow: var(--sh-md); }
.menu-item__icon { width: 40px; height: 40px; flex-shrink: 0; border-radius: 11px; background: var(--tint-orange); color: var(--orange); display: flex; align-items: center; justify-content: center; }
.menu-item__icon svg { width: 19px; height: 19px; }
.menu-item h4 { font-family: var(--font-body); font-size: 1rem; font-weight: 600; color: var(--ink); margin-bottom: 3px; }
.menu-item p { font-size: 0.88rem; color: var(--muted); line-height: 1.55; }

/* Testimonial quote */
.quote { max-width: 780px; margin: 0 auto; text-align: center; }
.quote__icon { width: 52px; height: 52px; border-radius: 14px; background: var(--tint-orange); color: var(--orange); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 22px; }
.quote__icon svg { width: 24px; height: 24px; }
.quote p { font-family: var(--font-display); font-size: clamp(1.3rem, 2.3vw, 1.75rem); font-weight: 500; line-height: 1.45; color: var(--ink); margin-bottom: 22px; }
.quote__author { font-weight: 600; color: var(--navy); font-size: 1rem; }
.quote__role { font-size: 0.9rem; color: var(--muted); margin-top: 2px; }

/* Tutoring teaser card (on services) */
.teaser { display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center; max-width: 940px; margin: 0 auto; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 70%); color: #fff; border-radius: var(--r-xl); padding: 40px 44px; box-shadow: var(--sh-lg); }
.teaser__eyebrow { font-family: var(--font-label); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: #ffb27a; margin-bottom: 10px; }
.teaser h3 { font-size: clamp(1.5rem, 2.6vw, 2rem); font-weight: 600; color: #fff; margin-bottom: 12px; line-height: 1.2; }
.teaser p { color: rgba(255,255,255,0.72); font-size: 0.98rem; line-height: 1.65; max-width: 520px; }
.teaser__price { font-family: var(--font-display); font-weight: 600; color: #fff; }

/* "Before you start" callout */
.callout { max-width: 820px; margin: 0 auto; background: var(--off-white); border: 1px solid var(--line); border-left: 4px solid var(--orange); border-radius: var(--r); padding: 26px 30px; }
.callout h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 12px; }

@media (max-width: 1024px) {
    .grid--4 { grid-template-columns: repeat(2, 1fr); }
    .grid--3 { grid-template-columns: repeat(2, 1fr); }
    .both-strip ul { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .page-hero { padding: 120px 0 56px; }
    .detail-strip { grid-template-columns: 1fr 1fr; }
    .detail-strip__item:nth-child(2) { border-right: none; }
    .detail-strip__item:nth-child(1), .detail-strip__item:nth-child(2) { border-bottom: 1px solid var(--line-soft); }
    .teaser { grid-template-columns: 1fr; text-align: center; padding: 32px; }
    .teaser__cta { display: flex; justify-content: center; }
}
@media (max-width: 680px) {
    .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
    .both-strip ul { grid-template-columns: 1fr; }
}

/* Expandable testimonial (long story) */
.story { max-width: 820px; margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl); box-shadow: var(--sh-md); padding: 42px 46px; }
.story__icon { width: 50px; height: 50px; border-radius: 14px; background: var(--tint-orange); color: var(--orange); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 22px; }
.story__icon svg { width: 23px; height: 23px; }
.story__clip { max-height: 214px; overflow: hidden; position: relative; transition: max-height 0.55s var(--ease); }
.story.is-open .story__clip { max-height: 1600px; }
.story__clip::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 90px; background: linear-gradient(transparent, #fff); pointer-events: none; transition: opacity 0.3s var(--ease); }
.story.is-open .story__clip::after { opacity: 0; }
.story__body p { font-size: 1.04rem; color: var(--body-solid); line-height: 1.72; margin-bottom: 14px; }
.story__body p:first-child { font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; color: var(--ink); line-height: 1.5; }
.story__body ul { display: flex; flex-direction: column; gap: 9px; margin: 4px 0 16px; }
.story__body li { display: flex; gap: 11px; align-items: flex-start; font-size: 0.98rem; color: var(--body-solid); line-height: 1.55; }
.story__body li svg { width: 16px; height: 16px; color: var(--orange); flex-shrink: 0; margin-top: 5px; }
.story__toggle { display: inline-flex; align-items: center; gap: 7px; margin-top: 18px; background: none; border: none; cursor: pointer; color: var(--blue-bright); font-weight: 600; font-size: 0.94rem; font-family: var(--font-body); }
.story__toggle svg { width: 16px; height: 16px; transition: transform var(--t) var(--ease); }
.story.is-open .story__toggle svg { transform: rotate(180deg); }
.story__author { margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--line-soft); font-weight: 600; color: var(--navy); font-size: 1rem; }
.story__author span { display: block; font-weight: 400; font-size: 0.9rem; color: var(--muted); margin-top: 2px; }
@media (max-width: 680px) { .story { padding: 30px 26px; } }

/* Bandwidth before/after (services) */
.bandwidth { max-width: 720px; margin: 0 auto; }
.bandwidth__row { margin-bottom: 18px; }
.bandwidth__row:last-child { margin-bottom: 0; }
.bandwidth__label { display: flex; justify-content: space-between; font-size: 0.82rem; font-weight: 600; color: var(--muted); margin-bottom: 9px; }
.bandwidth__bar { display: flex; height: 36px; border-radius: var(--pill); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--sh-sm); }
.bandwidth__seg { display: flex; align-items: center; justify-content: center; font-size: 0.76rem; font-weight: 600; white-space: nowrap; overflow: hidden; }
.bandwidth__seg--ops-bad { background: #c4623f; color: #fff; }
.bandwidth__seg--vis-bad { background: #ced4e0; color: var(--navy); }
.bandwidth__seg--ops-good { background: #ced4e0; color: var(--navy); }
.bandwidth__seg--vis-good { background: linear-gradient(90deg, var(--orange), #ff8a47); color: #fff; }
.bandwidth__caption { text-align: center; font-size: 0.84rem; color: var(--muted); margin-top: 18px; }

/* Audit spotlight card (services) */
.audit-card { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: 72px 1fr; gap: 28px; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 70%); color: #fff; border-radius: var(--r-xl); padding: 42px 46px; box-shadow: var(--sh-lg); align-items: start; }
.audit-card__num { font-family: var(--font-display); font-size: 2.6rem; font-weight: 600; color: #ffb27a; line-height: 1; }
.audit-card__tag { display: inline-block; font-family: var(--font-label); font-size: 0.74rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: #ffb27a; background: rgba(255,178,122,0.14); border-radius: var(--pill); padding: 4px 13px; margin-bottom: 14px; }
.audit-card h3 { font-size: 1.6rem; font-weight: 600; color: #fff; margin-bottom: 12px; }
.audit-card p { color: rgba(255,255,255,0.78); font-size: 1rem; line-height: 1.7; margin-bottom: 14px; }
.audit-card p:last-of-type { margin-bottom: 22px; }
@media (max-width: 680px) { .audit-card { grid-template-columns: 1fr; gap: 12px; padding: 32px 26px; } }

/* Single-card carousel — one centered, neighbors peeking, looping */
.carousel-wrap { position: relative; max-width: 920px; margin: 0 auto; }
.carousel-viewport { position: relative; overflow: hidden; padding: 12px 0; }
.carousel-track { display: flex; will-change: transform; }
.carousel-slide { flex: 0 0 76%; padding: 0 13px; box-sizing: border-box; opacity: 0.4; transform: scale(0.92); transition: opacity 0.45s var(--ease), transform 0.45s var(--ease); }
.carousel-slide.is-active { opacity: 1; transform: scale(1); }
.carousel-slide .session { height: 100%; }
.carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 50px; height: 50px; border-radius: 50%; border: 1px solid var(--line); background: rgba(255,255,255,0.96); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); color: var(--navy); display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: var(--sh-md); z-index: 6; transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease); }
.carousel-btn:hover { border-color: var(--navy); box-shadow: var(--sh-lg); transform: translateY(-50%) scale(1.07); }
.carousel-btn svg { width: 21px; height: 21px; }
.carousel-btn--prev { left: 6px; }
.carousel-btn--next { right: 6px; }
.carousel-dots { display: flex; gap: 9px; justify-content: center; margin-top: 22px; }
.carousel-dot { width: 9px; height: 9px; padding: 0; border: none; border-radius: 999px; background: var(--line); cursor: pointer; transition: width 0.3s var(--ease), background 0.3s var(--ease); }
.carousel-dot:hover { background: var(--muted); }
.carousel-dot.is-active { background: var(--orange); width: 28px; }
@media (max-width: 680px) { .carousel-slide { flex-basis: 86%; padding: 0 8px; } .carousel-btn { width: 42px; height: 42px; } .carousel-btn svg { width: 18px; height: 18px; } }

/* ============================================================
   === PODCAST ===
   ============================================================ */
.podcast-wordmark { font-family: var(--font-display); font-size: clamp(3rem, 9vw, 6rem); font-weight: 600; letter-spacing: -0.02em; line-height: 1; color: var(--ink); margin: 14px 0 6px; }
.podcast-wordmark .dot { color: var(--orange); }
.podcast-tagline { font-size: clamp(1.04rem, 1.8vw, 1.24rem); color: var(--muted); max-width: 600px; margin: 18px auto 30px; line-height: 1.6; }
.platforms { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 30px; }
.platform-pill { display: inline-flex; align-items: center; gap: 9px; padding: 11px 20px; border-radius: var(--pill); border: 1px solid var(--line); background: #fff; color: var(--ink); font-size: 0.9rem; font-weight: 500; box-shadow: var(--sh-sm); transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease); }
.platform-pill:hover { transform: translateY(-2px); box-shadow: var(--sh-md); border-color: var(--blue); }
.platform-pill svg { width: 18px; height: 18px; flex-shrink: 0; }
.platform-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.platform-card { display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; padding: 30px 18px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--sh-sm); transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease); }
.platform-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); border-color: var(--blue); }
.platform-card svg { width: 42px; height: 42px; }
.platform-card__name { font-size: 0.92rem; font-weight: 600; color: var(--navy); }
.platform-card__action { font-size: 0.78rem; color: var(--orange); font-weight: 600; }
.hosts { display: flex; gap: 28px; flex-wrap: wrap; margin-top: 30px; padding-top: 28px; border-top: 1px solid var(--line); }
.host { display: flex; align-items: center; gap: 14px; }
.host__avatar { width: 58px; height: 58px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--blue)); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; flex-shrink: 0; }
.host__name { font-weight: 600; color: var(--navy); display: block; }
.host__role { font-size: 0.84rem; color: var(--muted); }
@media (max-width: 900px) { .platform-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .platform-grid { grid-template-columns: 1fr 1fr; } }

/* ============================================================
   === BLOG INDEX ===
   ============================================================ */
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.blog-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-sm); transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease); }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.blog-card__media { display: block; aspect-ratio: 16 / 9; background: linear-gradient(135deg, var(--navy), var(--blue)); overflow: hidden; }
.blog-card__media img { width: 100%; height: 100%; object-fit: cover; }
.blog-card__media-fallback { display: flex; align-items: center; justify-content: center; height: 100%; }
.blog-card__media-fallback img { width: 42%; max-width: 150px; opacity: 0.9; }
.blog-card__body { padding: 24px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.blog-card__date { font-family: var(--font-label); font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.blog-badge--old { display: inline-block; margin-left: 8px; padding: 2px 9px; border-radius: var(--pill); background: var(--tint-navy); color: var(--navy); font-size: 0.66rem; letter-spacing: 0.04em; }
.blog-card__title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; line-height: 1.25; margin-bottom: 10px; }
.blog-card__title a { color: var(--ink); }
.blog-card__title a:hover { color: var(--orange); }
.blog-card__excerpt { font-size: 0.95rem; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }
.blog-card__more { margin-top: auto; font-weight: 600; color: var(--orange); font-size: 0.92rem; display: inline-flex; align-items: center; gap: 6px; }
.blog-card__more svg { width: 15px; height: 15px; transition: transform var(--t) var(--ease); }
.blog-card:hover .blog-card__more svg { transform: translateX(4px); }
.blog-pagination { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; margin-top: 52px; }
.blog-pagination a, .blog-pagination span { padding: 10px 16px; border: 1px solid var(--line); border-radius: var(--r-sm); color: var(--navy); font-weight: 600; font-size: 0.92rem; text-decoration: none; }
.blog-pagination .current { background: var(--navy); color: #fff; border-color: var(--navy); }
.blog-pagination a:hover { background: var(--off-white); border-color: var(--navy); }
.blog-empty { text-align: center; color: var(--muted); padding: 40px 0; font-size: 1.05rem; }
@media (max-width: 768px) { .blog-grid { grid-template-columns: 1fr; gap: 24px; } }

/* === SINGLE POST === */
.post__hero { padding: 140px 0 8px; text-align: center; background: radial-gradient(60% 72% at 50% 0%, var(--tint-blue) 0%, rgba(238,242,253,0) 62%), var(--white); }
.post__hero .container { max-width: 780px; }
.post__crumb { display: inline-flex; align-items: center; gap: 6px; color: var(--muted); font-size: 0.9rem; font-weight: 500; margin-bottom: 16px; }
.post__crumb svg { width: 15px; height: 15px; }
.post__crumb:hover { color: var(--orange); }
.post__date { display: block; font-family: var(--font-label); font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.post__title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 500; line-height: 1.1; letter-spacing: -0.018em; color: var(--ink); margin: 0; }
.post__feature { padding: 26px 0 0; background: var(--white); }
.post__feature .container { max-width: 900px; }
.post__feature img { width: 100%; border-radius: var(--r-lg); box-shadow: var(--sh-lg); }
.post__body { padding: 48px 0 56px; background: var(--white); }
.post__body .container { max-width: 720px; }
.post__body p, .post__body ul, .post__body ol { font-size: 1.1rem; line-height: 1.75; color: var(--body-solid); margin: 0 0 1.2em; }
.post__body h2 { font-family: var(--font-display); font-size: 1.7rem; font-weight: 600; color: var(--ink); margin: 1.8em 0 0.6em; }
.post__body h3 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; color: var(--ink); margin: 1.5em 0 0.5em; }
.post__body h4 { font-size: 1.05rem; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: 0.04em; margin: 1.4em 0 0.4em; }
.post__body a { color: var(--orange); text-decoration: underline; text-underline-offset: 3px; }
.post__body a:hover { color: var(--orange-dk); }
.post__body strong { color: var(--navy); }
.post__body blockquote { border-left: 4px solid var(--orange); padding: 4px 0 4px 20px; margin: 1.5em 0; color: var(--muted); font-style: italic; }
.post__body ul, .post__body ol { padding-left: 1.4em; }
.post__body li { margin-bottom: 0.5em; }
.post__body img { border-radius: var(--r); margin: 1.4em 0; }
.post__body code { background: var(--tint-navy); padding: 2px 6px; border-radius: 4px; font-size: 0.92em; }
.post__body pre { background: var(--navy-deep); color: #e8edff; padding: 18px 20px; border-radius: var(--r); overflow-x: auto; margin: 1.5em 0; }
.post__body pre code { background: transparent; padding: 0; color: inherit; }
.post__faq h2 { border-top: 1px solid var(--line); padding-top: 1.2em; }
.post__outdated { margin: 0 0 28px; padding: 14px 20px; border-left: 4px solid var(--orange); border-radius: 8px; background: var(--tint-orange); color: var(--body-solid); font-size: 0.95rem; line-height: 1.5; }
.post__outdated strong { color: var(--navy); }
.post__more { padding: 64px 0 80px; background: var(--off-white); }
.post__more-title { text-align: center; font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; color: var(--ink); margin: 0 0 32px; }
