:root {
    --blue: #17213B;
    --blue-depth: #223158;
    --cream: #f7f8fa;
    --cream-deep: #eceef2;
    --sky: #6a91f0;
    --sky-soft: #cfd9f1;
    --white: #ffffff;
    --muted: #3d4e70;
    --faded40: #9ca2b4;
    --faded20: #c9cdd8;
    --sans: 'DM Sans', Helvetica, sans-serif;
    --mono: 'JetBrains Mono', monospace;
    --serif: 'Clash Display', sans-serif;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--mono);
    background: var(--cream);
    color: var(--blue);
    font-size: 16px;
    line-height: 1.6;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    height: 60px;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background .4s var(--ease), border-color .4s var(--ease);
}

nav.scrolled {
    background: rgba(247, 248, 250, .96);
    backdrop-filter: blur(12px);
    border-bottom-color: var(--faded20);
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nlm {
    width: 30px;
    height: 30px;
    transition: background .4s;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    font-family: var(--mono);
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, .55);
    text-decoration: none;
    letter-spacing: .02em;
    transition: color .2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: rgba(255, 255, 255, .95);
}

nav.scrolled .nav-links a {
    color: var(--muted);
}

nav.scrolled .nav-links a:hover,
nav.scrolled .nav-links a.active {
    color: var(--blue);
}

.nav-cta {
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 500;
    color: var(--blue);
    background: var(--sky);
    padding: 10px 16px;
    border-radius: 9999px;
    text-decoration: none;
    height: 37px;
    display: flex;
    align-items: center;
    transition: all .2s ease-out;
    letter-spacing: -.04px;
}

nav.scrolled .nav-cta {
    background: var(--blue);
    color: var(--cream);
}

.nav-cta:hover {
    filter: brightness(.92);
}

.mob-btn svg {
    stroke: rgba(255, 255, 255, .8);
    transition: stroke .4s;
}

nav.scrolled .mob-btn svg {
    stroke: var(--blue);
}

/* HERO */
.hero {
    position: relative;
    width: 100%;
    height: 75vh;
    min-height: 620px;
    overflow: hidden;
    background: var(--blue);
}

.hero-vid {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.4s ease;
}

.hero-vid.loaded {
    opacity: .42;
}

.hero-ovl {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to bottom, rgba(23, 33, 59, .65) 0%, rgba(23, 33, 59, .18) 38%, rgba(23, 33, 59, .6) 100%);
}

.hero-body {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 80px 32px 72px;
    max-width: 1200px;
    margin: 0 auto;
    left: 0;
    right: 0;
}

.hero-tag {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 300;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--sky);
    opacity: .75;
    margin-bottom: 18px;
}

.hero-h1 {
    font-family: var(--serif);
    font-size: clamp(40px, 5.5vw, 72px);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -.03em;
    color: var(--white);
    margin-bottom: 22px;
    max-width: 1050px;
}

.hero-h1 em {
    font-style: normal;
    font-weight: 600;
    color: var(--sky);
}

.hero-sub {
    font-family: var(--mono);
    font-size: 15px;
    font-weight: 300;
    color: rgba(255, 255, 255, .58);
    line-height: 1.65;
    margin-bottom: 36px;
    max-width: 620px;
    letter-spacing: -.01em;
}

.hero-acts {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-p {
    font-family: var(--sans);
    font-size: 16px;
    font-weight: 400;
    color: var(--blue);
    background: var(--sky);
    padding: 0 32px;
    border-radius: 9999px;
    text-decoration: none;
    height: 51px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -.04px;
    transition: filter .2s ease-out;
}

.btn-p:hover {
    filter: brightness(.92);
}

.btn-p svg {
    width: 14px;
    height: 14px;
}

.btn-g {
    font-family: var(--sans);
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, .75);
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .18);
    padding: 0 28px;
    border-radius: 9999px;
    text-decoration: none;
    height: 51px;
    display: inline-flex;
    align-items: center;
    backdrop-filter: blur(8px);
    transition: all .2s ease-out;
}

.btn-g:hover {
    background: rgba(255, 255, 255, .13);
    color: #fff;
}

.hero-stats {
    position: absolute;
    bottom: 72px;
    right: 64px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hstat {
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.hstat:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.hstat-n {
    font-family: var(--serif);
    font-size: 34px;
    color: var(--sky);
    line-height: 1;
    letter-spacing: -.03em;
    font-weight: 500;
}

.hstat-l {
    font-family: var(--mono);
    font-size: 11px;
    color: rgba(255, 255, 255, .38);
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-top: 3px;
}

.scroll-hint {
    position: absolute;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, .28);
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .1em;
    text-transform: uppercase;
    animation: nudge 2.5s ease-in-out infinite;
}

.scroll-hint svg {
    width: 16px;
    height: 16px;
    stroke: rgba(255, 255, 255, .28);
    fill: none;
    stroke-width: 1.5;
}

@keyframes nudge {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
        opacity: .28
    }

    50% {
        transform: translateX(-50%) translateY(6px);
        opacity: .55
    }
}

/* PLATFORMS — stays green, hard edge */
.plats {
    background: var(--blue);
    border-top: 1px solid rgba(255, 255, 255, .07);
    padding: 26px 32px;
}

.plats-in {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 36px;
    flex-wrap: wrap;
}

.plats-lbl {
    font-family: var(--mono);
    font-size: 11px;
    color: rgba(255, 255, 255, .58);
    letter-spacing: .1em;
    text-transform: uppercase;
    white-space: nowrap;
}

.plats-list {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.plat-a {
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 300;
    color: rgba(255, 255, 255, .58);
    text-decoration: none;
    letter-spacing: .02em;
    transition: color .2s;
}

.plat-a:hover {
    color: var(--sky);
}

.plat-a svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* SECTION WRAPPERS */
.sc {
    padding: 80px 32px;
}

.sc-w {
    max-width: 1200px;
    margin: 0 auto;
}

.cream-bg {
    background: var(--cream);
}

.green-bg {
    background: var(--blue);
}

.divider {
    border-top: 1px solid var(--faded20);
}

/* LABELS */
.lbl {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 300;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 14px;
}

.lbl-lt {
    color: var(--white);
}

/* EPISODES */
.ep-hd {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 44px;
}

.ep-h2 {
    font-family: var(--serif);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -1.5px;
    font-weight: 500;
    color: var(--blue);
}

.lnk {
    font-family: var(--mono);
    font-size: 13px;
    color: var(--muted);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color .2s;
}

.lnk:hover {
    color: var(--blue);
}

.ep-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.ep-card {
    background: var(--white);
    border: 1px solid var(--faded20);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: var(--blue);
    transition: box-shadow .25s var(--ease), transform .25s var(--ease);
    display: flex;
    flex-direction: column;
}

.ep-card:hover {
    box-shadow: 0 8px 40px rgba(23, 33, 59, .08);
    transform: translateY(-2px);
}

.ep-img {
    width: 100%;
    height: 178px;
    background: var(--cream-deep);
    overflow: hidden;
}

.ep-img img {
    width: 100%;
    height: 178px;
    object-fit: cover;
}

.ep-bd {
    padding: 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ep-dt {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 300;
    color: var(--muted);
    letter-spacing: .04em;
    margin-bottom: 10px;
}

.ep-tt {
    font-family: var(--serif);
    font-size: 19px;
    line-height: 1.3;
    letter-spacing: -.3px;
    flex: 1;
    margin-bottom: 10px;
}

.ep-tx {
    font-family: var(--mono);
    font-size: 13px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.6;
}

/* ABOUT SPLIT */
.ab-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.ab-h2 {
    font-family: var(--serif);
    font-size: clamp(30px, 3.5vw, 48px);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -1.2px;
    margin-bottom: 22px;
}

.ab-p {
    font-family: var(--mono);
    font-size: 15px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 14px;
    letter-spacing: -.01em;
}

.btn-ol {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 400;
    color: var(--blue);
    border: 1.5px solid var(--blue);
    padding: 12px 24px;
    border-radius: 9999px;
    text-decoration: none;
    transition: all .2s ease-out;
    margin-top: 8px;
}

.btn-ol:hover {
    background: var(--blue);
    color: var(--sky);
}

.hosts-p {
    background: var(--blue);
    border-radius: 16px;
    padding: 36px;
    position: relative;
    overflow: hidden;
}

.hosts-p::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(106, 145, 240, .1) 0%, transparent 70%);
    pointer-events: none;
}

.hp-lbl {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 300;
    color: var(--white);
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 26px;
}

.h-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.h-row:first-of-type {
    border-top: 1px solid rgba(255, 255, 255, .07);
}

.h-av {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    flex-shrink: 0;
    background: rgba(106, 145, 240, .12);
    border: 1px solid rgba(106, 145, 240, .22);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-size: 18px;
    color: var(--sky);
}

.h-name {
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
}

.h-role {
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 300;
    color: rgba(255, 255, 255, .38);
    margin-top: 2px;
}

.hp-q {
    margin-top: 28px;
    font-family: 'Clash Display', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    color: var(--sky);
    opacity: .65;
    line-height: 1.3;
    letter-spacing: -.02em;
}

/* CTA — green section */
.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.cta-h2 {
    font-family: var(--serif);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -1.5px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-p {
    font-family: var(--mono);
    font-size: 15px;
    font-weight: 300;
    color: var(--white);
    line-height: 1.7;
    letter-spacing: -.01em;
}

.cf-lbl {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 300;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 14px;
}

.cf-row {
    display: flex;
}

.cf-in {
    flex: 1;
    height: 52px;
    padding: 14px 20px;
    background: rgba(255, 255, 255, .05);
    border: 2px solid rgba(252, 252, 247, .14);
    border-right: none;
    border-radius: 9999px 0 0 9999px;
    font-family: var(--mono);
    font-size: 14px;
    font-weight: 300;
    color: var(--white);
    outline: none;
    transition: border-color .2s;
    letter-spacing: -.01em;
}

.cf-in::placeholder {
    color: rgba(255, 255, 255, .22);
}

.cf-in:focus {
    border-color: rgba(106, 145, 240, .45);
}

.cf-btn {
    height: 52px;
    padding: 0 28px;
    background: var(--sky);
    color: var(--blue);
    border: none;
    border-radius: 0 9999px 9999px 0;
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: filter .2s ease-out;
    white-space: nowrap;
}

.cf-btn:hover {
    filter: brightness(.92);
}

.cf-note {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 300;
    color: rgba(255, 255, 255, .6);
    margin-top: 10px;
    letter-spacing: .02em;
}

/* FOOTER */
footer {
    background: var(--cream);
    border-top: 1px solid var(--faded20);
    padding: 48px 32px;
}

.ft-in {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: start;
}

.ft-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 14px;
}

.ft-lm {
    width: 28px;
    height: 28px;
}

.ft-tag {
    font-family: var(--mono);
    font-size: 13px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.6;
    max-width: 280px;
}

.ft-cols {
    display: flex;
    gap: 64px;
}

.ft-col h4 {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--muted);
    margin-bottom: 14px;
}

.ft-col a {
    display: block;
    font-family: var(--mono);
    font-size: 13px;
    font-weight: 300;
    color: var(--muted);
    text-decoration: none;
    margin-bottom: 9px;
    transition: color .2s;
}

.ft-col a:hover {
    color: var(--blue);
}

.ft-btm {
    max-width: 1200px;
    margin: 28px auto 0;
    padding-top: 22px;
    border-top: 1px solid var(--faded20);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.ft-copy {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 300;
    color: var(--muted);
}

.ft-disc {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 300;
    color: var(--faded40);
    max-width: 560px;
    line-height: 1.5;
}

/* REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .4s ease-out, transform .4s ease-out;
}

.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

.rd1 {
    transition-delay: 80ms;
}

.rd2 {
    transition-delay: 160ms;
}

.rd3 {
    transition-delay: 240ms;
}

/* MOBILE */
.mob-btn {
    display: none;
    position: relative;
    z-index: 210;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    width: 36px;
    height: 36px;
    flex-direction: column;
    justify-content: center;
    gap: 5.5px;
}

@media(max-width:768px) {
    .mob-btn {
        display: flex;
    }

    nav {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
    }

    .hero-body {
        padding: 0 24px 52px;
    }

    .hero-stats {
        display: none;
    }

    .scroll-hint {
        display: none;
    }

    .sc {
        padding: 56px 20px;
    }

    .ep-hd {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .ep-grid {
        grid-template-columns: 1fr;
    }

    .ab-split {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .cta-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .ft-in {
        grid-template-columns: 1fr;
    }

    .ft-cols {
        flex-wrap: wrap;
        gap: 32px;
    }

    .ft-btm {
        flex-direction: column;
        align-items: flex-start;
    }

    footer {
        padding: 40px 20px;
    }

    .plats {
        padding: 22px 20px;
    }
}

/* Real logo image */
.nlm-img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 50%;
    display: block;
    background: rgba(255, 255, 255, 0.92);
    /* white backing on dark hero */
    padding: 2px;
    transition: box-shadow .3s, opacity .4s;
}

nav.scrolled .nlm-img {
    background: transparent;
    padding: 0;
}

.ft-lm-img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    border-radius: 50%;
    display: block;
    background: var(--cream-deep);
    padding: 2px;
}

/* Footer platform icons */
.ft-col a {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ft-col a svg {
    opacity: .75;
    transition: opacity .2s;
}

.ft-col a:hover svg {
    opacity: 1;
}

.ft-col-a {
    display: flex;
    align-items: center;
    gap: 9px;
}

.brand-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    opacity: 0.75;
    transition: opacity .2s;
}

.ft-col a:hover .brand-icon {
    opacity: 1;
}

/* ── MOBILE MENU OVERLAY ── */
.mob-overlay {
    position: fixed;
    inset: 0;
    z-index: 190;
    background: rgba(23, 33, 59, .97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 40px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s cubic-bezier(0.16, 1, 0.3, 1);
}

.mob-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.mob-overlay-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
}

.mob-overlay-links a {
    font-family: 'Clash Display', sans-serif;
    font-size: clamp(32px, 8vw, 52px);
    font-weight: 500;
    color: rgba(255, 255, 255, .35);
    text-decoration: none;
    letter-spacing: -.03em;
    line-height: 1.2;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transform: translateY(20px);
    opacity: 0;
    transition: color .2s, transform .45s cubic-bezier(0.16, 1, 0.3, 1), opacity .45s cubic-bezier(0.16, 1, 0.3, 1);
}

.mob-overlay-links a:last-child {
    border-bottom: none;
}

.mob-overlay.open .mob-overlay-links a {
    transform: translateY(0);
    opacity: 1;
}

.mob-overlay.open .mob-overlay-links a:nth-child(1) {
    transition-delay: .08s;
}

.mob-overlay.open .mob-overlay-links a:nth-child(2) {
    transition-delay: .14s;
}

.mob-overlay.open .mob-overlay-links a:nth-child(3) {
    transition-delay: .20s;
}

.mob-overlay.open .mob-overlay-links a:nth-child(4) {
    transition-delay: .26s;
}

.mob-overlay-links a:hover {
    color: #fff;
}

.mob-overlay-links a.active {
    color: var(--sky);
}

.mob-link-arrow {
    font-size: 20px;
    color: rgba(255, 255, 255, .15);
    transition: color .2s, transform .2s;
}

.mob-overlay-links a:hover .mob-link-arrow,
.mob-overlay-links a.active .mob-link-arrow {
    color: var(--sky);
    transform: translateX(4px);
}

.mob-overlay-cta {
    margin-top: 40px;
    font-family: 'DM Sans', Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--blue);
    background: var(--sky);
    padding: 14px 32px;
    border-radius: 9999px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transform: translateY(20px);
    opacity: 0;
    transition: filter .2s, transform .5s cubic-bezier(0.16, 1, 0.3, 1), opacity .5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mob-overlay.open .mob-overlay-cta {
    transform: translateY(0);
    opacity: 1;
    transition-delay: .32s;
}

.mob-overlay-cta:hover {
    filter: brightness(.92);
}

.mob-overlay-bottom {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 20px;
    transform: translateY(10px);
    opacity: 0;
    transition: transform .5s cubic-bezier(0.16, 1, 0.3, 1), opacity .5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mob-overlay.open .mob-overlay-bottom {
    transform: translateY(0);
    opacity: 1;
    transition-delay: .38s;
}

.mob-overlay-bottom-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 300;
    color: rgba(255, 255, 255, .25);
    letter-spacing: .06em;
}

.mob-overlay-socials {
    display: flex;
    gap: 16px;
}

.mob-overlay-socials a {
    color: rgba(255, 255, 255, .3);
    text-decoration: none;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 300;
    transition: color .2s;
}

.mob-overlay-socials a:hover {
    color: var(--sky);
}

/* hamburger spans */
.mob-btn span {
    display: block;
    width: 20px;
    height: 1.5px;
    background: rgba(255, 255, 255, .8);
    border-radius: 2px;
    transform-origin: center;
    transition: transform .3s cubic-bezier(0.16, 1, 0.3, 1), opacity .2s, background .4s;
}

nav.scrolled .mob-btn span {
    background: var(--blue);
}

.mob-btn.open span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.mob-btn.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mob-btn.open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

.mob-btn.open span {
    background: var(--white) !important;
}

nav .nav-cta.hidden {
    opacity: 0;
    pointer-events: none;
}

/* ── MOBILE MENU ── */
.mob-overlay {
    position: fixed;
    inset: 0;
    z-index: 190;
    background: rgba(23, 33, 59, .97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 40px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s cubic-bezier(0.16, 1, 0.3, 1);
}

.mob-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.mob-overlay-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
}

.mob-overlay-links a {
    font-family: 'Clash Display', sans-serif;
    font-size: clamp(30px, 8vw, 50px);
    font-weight: 500;
    color: rgba(255, 255, 255, .3);
    text-decoration: none;
    letter-spacing: -.03em;
    line-height: 1.2;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transform: translateY(20px);
    opacity: 0;
    transition: color .2s, transform .45s cubic-bezier(0.16, 1, 0.3, 1), opacity .45s cubic-bezier(0.16, 1, 0.3, 1);
}

.mob-overlay-links a:last-child {
    border-bottom: none;
}

.mob-overlay.open .mob-overlay-links a {
    transform: translateY(0);
    opacity: 1;
}

.mob-overlay.open .mob-overlay-links a:nth-child(1) {
    transition-delay: .07s;
}

.mob-overlay.open .mob-overlay-links a:nth-child(2) {
    transition-delay: .13s;
}

.mob-overlay.open .mob-overlay-links a:nth-child(3) {
    transition-delay: .19s;
}

.mob-overlay.open .mob-overlay-links a:nth-child(4) {
    transition-delay: .25s;
}

.mob-overlay-links a:hover {
    color: #fff;
}

.mob-overlay-links a.active {
    color: var(--sky);
}

.mob-link-arrow {
    font-size: 18px;
    color: rgba(255, 255, 255, .12);
    transition: color .2s, transform .2s;
}

.mob-overlay-links a:hover .mob-link-arrow,
.mob-overlay-links a.active .mob-link-arrow {
    color: var(--sky);
    transform: translateX(5px);
}

.mob-overlay-cta {
    margin-top: 36px;
    font-family: 'DM Sans', Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--blue);
    background: var(--sky);
    padding: 14px 32px;
    border-radius: 9999px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transform: translateY(20px);
    opacity: 0;
    transition: filter .2s, transform .5s cubic-bezier(0.16, 1, 0.3, 1), opacity .5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mob-overlay.open .mob-overlay-cta {
    transform: translateY(0);
    opacity: 1;
    transition-delay: .31s;
}

.mob-overlay-cta:hover {
    filter: brightness(.92);
}

.mob-overlay-bottom {
    position: absolute;
    bottom: 36px;
    left: 40px;
    right: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 18px;
    transform: translateY(10px);
    opacity: 0;
    transition: transform .5s cubic-bezier(0.16, 1, 0.3, 1), opacity .5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mob-overlay.open .mob-overlay-bottom {
    transform: translateY(0);
    opacity: 1;
    transition-delay: .37s;
}

.mob-overlay-bottom-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 300;
    color: rgba(255, 255, 255, .2);
    letter-spacing: .06em;
}

.mob-overlay-socials {
    display: flex;
    gap: 16px;
}

.mob-overlay-socials a {
    color: rgba(255, 255, 255, .28);
    text-decoration: none;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 300;
    transition: color .2s;
}

.mob-overlay-socials a:hover {
    color: var(--sky);
}

/* hamburger → X morph */
.mob-btn span {
    display: block;
    width: 20px;
    height: 1.5px;
    border-radius: 2px;
    transform-origin: center;
    transition: transform .3s cubic-bezier(0.16, 1, 0.3, 1), opacity .2s, background .4s;
}

.mob-btn.open span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.mob-btn.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mob-btn.open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

.mob-btn span {
    background: rgba(255, 255, 255, .8);
}

nav.scrolled .mob-btn span {
    background: var(--blue);
}

/* Grid: featured left (2 cols) + two stacked right (1 col each) */
.books-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
}

.book-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: background .2s, border-color .2s, transform .25s var(--ease);
}

.book-card:hover {
    background: rgba(255, 255, 255, .07);
    border-color: rgba(255, 255, 255, .16);
    transform: translateY(-3px);
}

/* Featured card spans both rows */
.book-card-featured {
    grid-row: 1/3;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
}

.book-cover-wrap {
    overflow: hidden;
    position: relative;
}

.book-cover-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform .4s var(--ease);
}

.book-card:hover .book-cover-wrap img {
    transform: scale(1.03);
}

.book-card-featured .book-cover-wrap {
    height: 400px;
}

.book-card-sm .book-cover-wrap {
    height: 0;
}

/* hide cover on small cards, show inline */
/* Small cards — horizontal layout */
.book-card-sm {
    flex-direction: row;
    align-items: stretch;
}

.book-card-sm .book-cover-sm {
    width: 130px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 0;
}

.book-card-sm .book-cover-sm img {
    width: 130px;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform .4s var(--ease);
}

.book-card:hover .book-cover-sm img {
    transform: scale(1.04);
}

.book-body {
    padding: 28px 28px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.book-card-sm .book-body {
    padding: 24px;
}

.book-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--sky);
    background: rgba(106, 145, 240, .12);
    border: 1px solid rgba(106, 145, 240, .2);
    padding: 4px 10px;
    border-radius: 9999px;
    display: inline-block;
    margin-bottom: 14px;
}

.book-tag-alt {
    color: rgba(255, 255, 255, .5);
    background: rgba(255, 255, 255, .05);
    border-color: rgba(255, 255, 255, .1);
}

.book-title {
    font-family: 'Clash Display', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -.03em;
    color: var(--white);
    margin-bottom: 6px;
}

.book-card-featured .book-title {
    font-size: 26px;
}

.book-subtitle {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 300;
    color: rgba(255, 255, 255, .35);
    margin-bottom: 12px;
    line-height: 1.5;
    letter-spacing: -.01em;
}

.book-author {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 300;
    color: rgba(255, 255, 255, .25);
    letter-spacing: .04em;
    margin-bottom: 14px;
}

.book-desc {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, .45);
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
    letter-spacing: -.01em;
}

.book-cta {
    font-family: 'DM Sans', Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--blue);
    background: var(--sky);
    padding: 10px 20px;
    border-radius: 9999px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    width: fit-content;
    transition: filter .2s ease-out;
}

.book-cta:hover {
    filter: brightness(.9);
}

.book-cta svg {
    width: 12px;
    height: 12px;
}

.book-cta-alt {
    color: var(--white);
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .18);
}

.book-cta-alt:hover {
    background: rgba(255, 255, 255, .18);
}

/* divider between cover and body on featured card */
.book-card-featured .book-body {
    border-top: 1px solid rgba(255, 255, 255, .07);
}

/* divider between cover and body on sm cards */
.book-card-sm .book-cover-sm {
    border-right: 1px solid rgba(255, 255, 255, .07);
}

@media(max-width:900px) {
    .books-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .book-card-featured {
        grid-row: auto;
    }

    .book-card-featured .book-cover-wrap {
        height: 280px;
    }
}

@media(max-width:768px) {
    .books-wrap {
        padding: 0;
    }

    .books-grid {
        gap: 14px;
    }

    .book-card-sm {
        flex-direction: column;
    }

    .book-card-sm .book-cover-sm {
        width: 100%;
        height: 200px;
    }

    .book-card-sm .book-cover-sm img {
        width: 100%;
        height: 200px;
        object-position: top center;
    }

    .book-card-sm .book-cover-sm {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .07);
    }
}

/* ── BOOKS SECTION ── */
.books-section {
    background: #f7f8fa;
    border-top: 1px solid var(--faded20);
    padding: 64px 32px;
}

.books-wrap {
    max-width: 1200px;
    margin: 0 auto;
}

.books-header {
    margin-bottom: 52px;
}

.books-lbl {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 300;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 14px;
}

.books-h2 {
    font-family: 'Clash Display', sans-serif;
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 500;
    line-height: 1.06;
    letter-spacing: -2px;
    color: var(--blue);
}

.books-sub {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.75;
    letter-spacing: -.01em;
    max-width: 640px;
    margin-top: 14px;
}

.books-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.book-card {
    background: var(--white);
    border: 1px solid var(--faded20);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow .25s var(--ease), transform .25s var(--ease);
}

.book-card:hover {
    box-shadow: 0 8px 40px rgba(23, 33, 59, .1);
    transform: translateY(-3px);
}

.book-cover {
    overflow: hidden;
    height: 300px;
    background: var(--cream-deep);
    display: flex;
    align-items: center;
    justify-content: center;
}

.book-cover img {
    width: auto;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    display: block;
    transition: transform .4s var(--ease);
    padding: 20px;
    box-sizing: border-box;
}

.book-card:hover .book-cover img {
    transform: scale(1.03);
}

.book-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.book-cat {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--muted);
    margin-bottom: 8px;
}

.book-title {
    font-family: 'Clash Display', sans-serif;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -.02em;
    color: var(--blue);
    margin-bottom: 10px;
    line-height: 1.2;
}

.book-desc {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 24px;
    flex: 1;
    letter-spacing: -.01em;
}

.book-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.book-cta-amazon {
    font-family: 'DM Sans', Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--cream);
    background: var(--blue);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    border-radius: 9999px;
    transition: background .2s;
}

.book-cta-amazon:hover {
    background: var(--blue-depth);
}

.book-cta-amazon svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.book-cta-talk {
    font-family: 'DM Sans', Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: var(--muted);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border-bottom: 1px solid var(--faded20);
    padding-bottom: 2px;
    transition: color .2s, border-color .2s;
}

.book-cta-talk:hover {
    color: var(--blue);
    border-bottom-color: var(--blue);
}

@media(max-width:900px) {
    .books-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:768px) {
    .books-section {
        padding: 56px 20px;
    }

    .books-grid {
        grid-template-columns: 1fr;
    }

    .book-cover {
        height: 240px;
    }
}

/* Real headshot avatars */
.h-av img,
.hc-av img,
.sc-av img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 50%;
    display: block;
}

.h-av,
.hc-av,
.sc-av {
    background: none !important;
    font-size: 0 !important;
    overflow: hidden;
}

/* ── JOIN COMMUNITY MODAL ── */
.jm-overlay {
    position: fixed;
    inset: 0;
    z-index: 900;
    background: rgba(23, 33, 59, .65);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s var(--ease);
}

.jm-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.jm-panel {
    background: var(--white);
    border-radius: 20px;
    width: 100%;
    max-width: 700px;
    max-height: 92vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
    transform: translateY(24px);
    transition: transform .35s var(--ease);
    box-shadow: 0 32px 80px rgba(23, 33, 59, .22);
}

.jm-overlay.open .jm-panel {
    transform: translateY(0);
}

.jm-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.5px solid var(--faded20);
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 20px;
    line-height: 1;
    transition: all .2s;
}

.jm-close:hover {
    background: var(--cream-deep);
    color: var(--blue);
}

/* PDF pill tag */
.jm-pill-wrap {
    text-align: center;
    margin-bottom: 16px;
}

.jm-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--cream-deep);
    border: 1px solid var(--faded20);
    border-radius: 9999px;
    padding: 6px 14px 6px 10px;
}

.jm-pill svg {
    width: 14px;
    height: 14px;
    color: var(--muted);
    flex-shrink: 0;
}

.jm-pill-text {
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 400;
    color: var(--blue);
    letter-spacing: .02em;
}

/* Form header */
.jm-title {
    font-family: 'Clash Display', sans-serif;
    font-size: clamp(20px, 2.8vw, 26px);
    font-weight: 500;
    color: var(--blue);
    letter-spacing: -.03em;
    line-height: 1.2;
    margin-bottom: 8px;
    text-align: center;
}

.jm-sub {
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 24px;
    letter-spacing: -.01em;
    text-align: center;
}

/* Fields */
.jm-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
}

.jm-lbl {
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 400;
    color: var(--blue);
    letter-spacing: .08em;
    text-transform: uppercase;
}

.jm-req {
    color: var(--sky);
}

.jm-in {
    font-family: var(--mono);
    font-size: 13px;
    font-weight: 300;
    color: var(--blue);
    background: var(--cream);
    border: 1.5px solid var(--faded20);
    border-radius: 10px;
    padding: 11px 14px;
    outline: none;
    transition: border-color .2s;
    width: 100%;
}

.jm-in:focus {
    border-color: var(--sky);
    background: var(--white);
}

.jm-in::placeholder {
    color: var(--faded40);
}

.jm-check-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 20px;
    cursor: pointer;
}

.jm-check {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    accent-color: var(--blue);
    margin-top: 3px;
    cursor: pointer;
}

.jm-check-lbl {
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.65;
    letter-spacing: .01em;
}

.jm-submit {
    width: 100%;
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
    background: var(--blue);
    border: none;
    border-radius: 9999px;
    height: 50px;
    cursor: pointer;
    transition: background .2s, transform .15s;
}

.jm-submit:hover {
    background: var(--blue-depth);
    transform: scale(.99);
}

/* Thank-you state */
.jm-thankyou {
    display: none;
    text-align: center;
    padding: 16px 0;
}

.jm-thankyou.show {
    display: block;
}

.jm-form.hide {
    display: none;
}

#jm-header.hide {
    display: none;
}

.jm-ty-icon {
    width: 56px;
    height: 56px;
    background: rgba(106, 145, 240, .1);
    border: 1.5px solid rgba(106, 145, 240, .25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.jm-ty-icon svg {
    width: 26px;
    height: 26px;
    color: var(--sky);
}

.jm-ty-h {
    font-family: 'Clash Display', sans-serif;
    font-size: 26px;
    font-weight: 500;
    color: var(--blue);
    letter-spacing: -.03em;
    margin-bottom: 10px;
}

.jm-ty-p {
    font-family: var(--mono);
    font-size: 13px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 28px;
}

.jm-download {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
    background: var(--blue);
    text-decoration: none;
    padding: 0 32px;
    height: 50px;
    border-radius: 9999px;
    transition: background .2s;
}

.jm-download:hover {
    background: var(--blue-depth);
}

.jm-download svg {
    width: 16px;
    height: 16px;
}

.toolkit-box {
    max-width: 760px;
    margin: 0 auto 34px;
    padding: 18px 22px;
    border: 1px solid var(--faded20);
    border-radius: 20px;
    background: var(--cream);
    text-align: left;
}

.toolkit-label {
    margin: 0 0 13px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .16em;
    line-height: 1;
    text-transform: uppercase;
    color: var(--blue);
}

.toolkit-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.toolkit-item {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    min-width: 0;
}

.toolkit-item span {
    display: inline-grid;
    place-items: center;
    flex: 0 0 21px;
    width: 21px;
    height: 21px;
    margin-top: 1px;
    border-radius: 999px;
    background: rgba(106, 145, 240, .14);
    color: var(--sky);
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 700;
}

.toolkit-item p {
    margin: 0;
    font-family: var(--sans);
    font-size: 14px;
    line-height: 1.35;
    font-weight: 600;
    color: var(--blue-depth);
}

.privacy-note {
    margin: 17px 0 0;
    text-align: center;
    font-family: var(--sans);
    font-size: 13px;
    line-height: 1.4;
    color: var(--faded40);
}

@media(max-width:767px) {
    .ft-col a.hide-ft-menu-mob {
        display: none;
    }

    .cf-btn {
        padding: 0 15px;
    }
}

@media(max-width:600px) {
    .plats-in {
        gap: 18px;
    }

    .plats-list {
        gap: 15px;
    }

    .jm-panel {
        padding: 58px 20px 28px;
    }

    .hero-body {
        padding: 60px 24px 30px;
    }

    .hero-sub {
        margin-bottom: 25px;
    }

    .toolkit-box {
        margin: 0 auto 25px;
        padding: 18px 15px;
    }

    .toolkit-label {
        letter-spacing: .10em;
    }

    .toolkit-list {
        grid-template-columns: repeat(1, 1fr);
    }

    .btn-p,
    .btn-g {
        min-width: 210px;
        text-align: center;
        justify-content: center;
        padding: 0 20px;
    }

    .books-section,
    .sc {
        padding: 40px 20px;
    }

    .books-header,
    .ep-hd {
        margin-bottom: 30px;
    }

    .book-body,
    .hosts-p {
        padding: 25px 15px;
    }

    .book-title {
        font-size: 18px;
        letter-spacing: -.01em;
    }

    .hp-lbl {
        margin-bottom: 15px;
    }

    .hp-q {
        margin-top: 20px;
        font-size: 22px;
        line-height: 1.2;
    }

    .cf-note {
        font-size: 10px;
        letter-spacing: .01em;
    }

    .cf-in {
        width: calc(100% - 95px);
    }

    .cf-btn {
        width: 95px;
    }

    .cta-p {
        font-size: 14px;
    }

    .cta-grid {
        gap: 20px;
    }

    .ft-in {
        gap: 25px;
    }
}
