/**
 * home-v1.css
 * Born Pilates Home Page Styles
 * File: assets/css/home-v1.css
 */

/* =====================================================
   TOKENS
===================================================== */
:root {
    --cream: #FAFAF7;
    --cream-warm: #F5F1E9;
    --dark: #1C1A18;
    --mid: #6A6763;
    --light-mid: #A09A94;
    --hairline: rgba(28, 26, 24, .09);
    --hairline-mid: rgba(28, 26, 24, .14);
    --burgundy: #7A1F2B;
    --burgundy-dk: #5C1720;
    --gold: #C8A36A;
    --gold-lt: #D9BC8F;
    --white: #FFFFFF;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-spring: cubic-bezier(0.22, 1, 0.36, 1);
    --t: all 0.35s var(--ease);
    --font-display: 'Barlow Condensed', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --shadow-sm: 0 2px 12px rgba(28, 26, 24, .06);
    --shadow-card: 0 4px 24px rgba(28, 26, 24, .08);
    --shadow-lift: 0 16px 56px rgba(28, 26, 24, .14);
    --shadow-xl: 0 32px 80px rgba(28, 26, 24, .18);
}

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

html,
body {
    background: var(--cream);
    color: var(--dark);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility
}

body {
    overflow-x: hidden
}

img,
svg,
iframe,
video {
    display: block;
    max-width: 100%
}

a {
    color: inherit;
    text-decoration: none
}

button,
input,
select {
    font: inherit;
    color: inherit
}

button {
    border: 0;
    background: none;
    cursor: pointer
}

.display {
    font-family: var(--font-display);
    font-weight: 900;
    letter-spacing: -.01em;
    line-height: .95;
    text-transform: uppercase
}

.eyebrow {
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .2em;
    font-size: 11px;
    color: var(--gold)
}

.eyebrow.dark {
    color: var(--burgundy)
}

.wrap {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px
}

section {
    position: relative
}

/* =====================================================
   BUTTONS
===================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--burgundy);
    color: #fff;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14.5px;
    padding: 0 32px;
    height: 56px;
    border-radius: 999px;
    transition: background .3s var(--ease), transform .2s var(--ease), box-shadow .3s var(--ease);
    letter-spacing: .04em;
    text-transform: uppercase;
    text-align: center;
    box-shadow: 0 8px 24px -8px rgba(122, 31, 43, .38);
    position: relative;
    overflow: hidden;
}

/*.btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 35%, rgba(255, 255, 255, .16) 50%, transparent 65%);
    transform: translateX(-110%);
    transition: transform .8s var(--ease);
    pointer-events: none
}*/

.btn:hover {
    background: var(--burgundy-dk);
    transform: translateY(-2px);
    box-shadow: 0 16px 36px -10px rgba(122, 31, 43, .50)
}

.btn::after { display:none }

/*.btn:hover::after {
    transform: translateX(110%)
}*/

.btn:active {
    transform: translateY(0)
}

.btn .arrow {
    transition: transform .3s var(--ease)
}

.btn:hover .arrow {
    transform: translateX(4px)
}

.btn-xl {
    height: 64px;
    padding: 0 40px;
    font-size: 15.5px
}

.btn-ghost {
    background: transparent;
    color: var(--burgundy);
    border: 1.5px solid var(--burgundy);
    box-shadow: none
}

.btn-ghost:hover {
    background: var(--burgundy);
    color: #fff;
    box-shadow: 0 16px 36px -10px rgba(122, 31, 43, .40)
}

.btn-cream {
    background: var(--white);
    color: var(--burgundy);
    box-shadow: 0 8px 24px -8px rgba(28, 26, 24, .14)
}

.btn-cream:hover {
    background: var(--cream);
    color: var(--burgundy-dk)
}

.logo-img {
    height: 104px;
    width: auto;
    display: block;
    object-fit: contain
}

.logo-img.burg {
    filter: brightness(0) saturate(100%) invert(15%) sepia(40%) saturate(2200%) hue-rotate(330deg) brightness(85%) contrast(95%)
}

/* =====================================================
   HERO
===================================================== */
.hero {
    padding: 56px 0 72px;
    background: var(--cream)
}

.hero .hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 56px;
    align-items: center
}

.hero .eyebrow {
    margin-bottom: 20px
}

.hero h1 {
    font-size: clamp(38px, 4.6vw, 66px);
    color: var(--dark)
}

.hero h1 .burg {
    color: var(--burgundy)
}

.hero .sub {
    margin: 22px 0 0;
    max-width: 520px;
    font-size: clamp(15px, 1.6vw, 17px);
    color: var(--mid);
    line-height: 1.75
}

.hero .sub strong {
    color: var(--dark);
    font-weight: 600
}

.hero .cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px
}

.hero .note {
    margin-top: 18px;
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
    font-size: 10px;
    color: var(--light-mid)
}

.hero .note span {
    color: var(--gold);
    margin: 0 8px
}

.hero-stats {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    margin-top: 36px;
    border: 1px solid var(--hairline);
    border-radius: 16px;
    background: var(--white);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.hstat {
    flex: 1;
    text-align: center;
    padding: 20px 16px
}

.hstat:not(:last-child) {
    border-right: 1px solid var(--hairline)
}

.hstat-n {
    display: block;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 32px;
    color: var(--burgundy);
    line-height: 1;
    letter-spacing: -.01em
}

.hstat-l {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: var(--light-mid);
    font-weight: 500;
    margin-top: 6px
}

.hero .vbox {
    position: relative
}

.vbox-inner {
    position: relative;
    z-index: 1;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
    aspect-ratio: 16/9;
    box-shadow: 0 32px 80px -20px rgba(28, 26, 24, .35), 0 0 0 1px rgba(28, 26, 24, .08);
}

.vbox-inner iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0
}

.vbox-inner .placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    background: #1c1a18;
    overflow: hidden;
    cursor: pointer
}

.vbox-inner .placeholder .vthumb {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 6s var(--ease)
}

.vbox-inner .placeholder:hover .vthumb {
    transform: scale(1.04)
}

.vbox-inner .placeholder .vshade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(28, 26, 24, .1) 0%, rgba(28, 26, 24, .52) 100%);
    z-index: 1
}

.vbox-inner .placeholder .play,
.vbox-inner .placeholder .meta {
    position: relative;
    z-index: 2
}

.vbox-inner .placeholder .play {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .96);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .35);
    transition: transform .35s var(--ease-spring), box-shadow .35s;
}

.vbox-inner .placeholder:hover .play {
    transform: scale(1.1);
    box-shadow: 0 20px 56px rgba(0, 0, 0, .50)
}

.vbox-inner .placeholder .play::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-left: 18px solid currentColor;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    margin-left: 4px
}

.vbox-inner .placeholder .meta {
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: .2em;
    text-transform: uppercase;
    font-size: 9.5px;
    color: #cdbfa6;
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2
}

.vbox-inner .placeholder .meta.bl {
    top: auto;
    bottom: 18px;
    left: 18px;
    letter-spacing: .16em
}

.vcap {
    margin-top: 16px;
    text-align: center;
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: .22em;
    text-transform: uppercase;
    font-size: 10px;
    color: var(--light-mid)
}

.vcap b {
    color: var(--burgundy);
    font-weight: 600
}

/* =====================================================
   TRUST STRIP
===================================================== */
.trust {
    background: var(--burgundy);
    color: #fff;
    height: 52px;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    z-index: 3
}

.trust .track {
    display: flex;
    gap: 48px;
    white-space: nowrap;
    animation: scroll 40s linear infinite;
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-size: 11.5px;
    padding: 0 24px;
    will-change: transform
}

.trust:hover .track {
    animation-play-state: paused
}

.trust .track span {
    display: inline-flex;
    align-items: center;
    gap: 48px;
    flex-shrink: 0
}

.trust .track span::after {
    content: "|";
    color: var(--gold);
    margin-left: 48px;
    font-weight: 300
}

@keyframes scroll {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

/* =====================================================
   PATHS
===================================================== */
.paths {
    padding: 120px 0;
    background: var(--cream)
}

.paths .head {
    text-align: center;
    margin-bottom: 60px
}

.paths h2 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(36px, 5vw, 66px);
    text-transform: uppercase;
    letter-spacing: -.01em;
    line-height: .95;
    color: var(--dark);
    max-width: 820px;
    margin: 0 auto
}

.paths h2 .burg {
    color: var(--burgundy)
}

.paths .sub {
    text-align: center;
    color: var(--mid);
    max-width: 540px;
    margin: 18px auto 0;
    font-size: 16px;
    line-height: 1.7
}

.grid2 {
    display: grid;
    gap: 20px;
    align-items: stretch
}

.ppath {
    position: relative;
    border: 1px solid var(--hairline);
    border-radius: 20px;
    overflow: hidden;
    background: var(--white);
    display: flex;
    flex-direction: row;
    box-shadow: var(--shadow-card);
    transition: transform .5s var(--ease-spring), box-shadow .5s var(--ease), border-color .35s;
}

.ppath:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(200, 163, 106, .3)
}

.ppath .ph {
    position: relative;
    overflow: hidden;
    flex: 0 0 42%;
    min-height: 100%
}

.ppath .ph img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.4s var(--ease);
    position: absolute;
    inset: 0
}

.ppath:hover .ph img {
    transform: scale(1.05)
}

.ppath .ph::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(28, 26, 24, .04) 0%, rgba(28, 26, 24, .42) 100%)
}

.ppath .tag {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    background: rgba(255, 255, 255, .96);
    color: var(--burgundy);
    font-family: var(--font-body);
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-size: 10px;
    padding: 7px 13px;
    border-radius: 999px;
    border: 1px solid rgba(122, 31, 43, .12)
}

.ppath .ph .loc {
    position: absolute;
    left: 18px;
    bottom: 14px;
    z-index: 2;
    color: #fff;
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-size: 10.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, .4)
}

.ppath .bd {
    padding: 36px 32px 32px;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0
}

.ppath h3 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(26px, 2.6vw, 36px);
    text-transform: uppercase;
    letter-spacing: -.01em;
    line-height: .96;
    color: var(--dark)
}

.ppath .blurb {
    color: var(--mid);
    font-size: 14.5px;
    line-height: 1.7;
    margin-top: 14px
}

.ppath .priceblock {
    margin: 24px 0 6px;
    padding: 22px;
    background: var(--cream);
    border-radius: 14px;
    border: 1px solid var(--hairline)
}

.ppath .pb-k {
    display: block;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    font-size: 10px;
    color: var(--light-mid);
    margin-bottom: 8px
}

.ppath .pb-v {
    display: block;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(34px, 3.6vw, 46px);
    line-height: .9;
    letter-spacing: -.02em;
    color: var(--burgundy)
}

.ppath .pb-v small {
    font-size: 14px;
    font-weight: 700;
    color: var(--mid);
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-left: 5px
}

.ppath .pb-meta {
    display: block;
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--mid);
    margin-top: 10px
}

.ppath .pb-meta strong {
    color: var(--dark);
    font-weight: 700
}

.ppath ul {
    list-style: none;
    margin: 22px 0 0
}

.ppath li {
    position: relative;
    padding: 10px 0 10px 26px;
    font-size: 14px;
    color: var(--dark);
    border-bottom: 1px solid var(--hairline);
    line-height: 1.5
}

.ppath li:first-child {
    border-top: 1px solid var(--hairline)
}

.ppath li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 10px;
    color: var(--gold);
    font-weight: 900;
    font-size: 14px
}

.ppath li strong {
    color: var(--burgundy);
    font-weight: 700
}

.ppath .foot {
    margin-top: auto;
    padding-top: 26px
}

.ppath .btn {
    width: 100%
}

/* =====================================================
   HOOK
===================================================== */
.hook {
    padding: 120px 0;
    background: var(--white);
    border-top: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline)
}

.hook h2 {
    font-size: clamp(34px, 5.6vw, 70px);
    max-width: 900px;
    margin: 0 auto;
    color: var(--dark);
    font-family: var(--font-display);
    font-weight: 900;
    text-transform: uppercase;
    line-height: .95;
    letter-spacing: -.01em
}

.hook h2 .burg {
    color: var(--burgundy)
}

.hook p {
    max-width: 600px;
    margin: 26px auto 0;
    font-size: 17px;
    color: var(--mid);
    font-weight: 300;
    line-height: 1.8
}

/* =====================================================
   PROMISES
===================================================== */
.promises {
    padding: 120px 0;
    background: var(--cream)
}

.promises h2 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(36px, 5vw, 66px);
    text-transform: uppercase;
    letter-spacing: -.01em;
    line-height: .95;
    color: var(--dark);
    text-align: center;
    max-width: 780px;
    margin: 0 auto
}

.promises h2 .burg {
    color: var(--burgundy)
}

.promises .sub {
    text-align: center;
    color: var(--mid);
    max-width: 500px;
    margin: 18px auto 56px;
    font-size: 16px;
    line-height: 1.7
}

.promises .card .ico img {
    width: 44px;
    height: 44px;
    display: block;
    margin: 0 auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px
}

.card {
    background: var(--white);
    border: 1px solid var(--hairline);
    border-radius: 16px;
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform .5s var(--ease-spring), box-shadow .5s var(--ease), border-color .35s;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lift);
    border-color: rgba(200, 163, 106, .28)
}

.card-num {
    position: absolute;
    top: -4px;
    right: 20px;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 130px;
    line-height: 1;
    color: rgba(122, 31, 43, .04);
    user-select: none;
    pointer-events: none;
    letter-spacing: -.02em;
}

.card .ico {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--burgundy);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
    transition: transform .45s var(--ease-spring)
}

.card:hover .ico {
    transform: scale(1.1) rotate(-4deg)
}

.card h3 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: -.005em;
    margin-bottom: 14px;
    color: var(--dark);
    line-height: 1;
    position: relative;
    z-index: 1
}

.card p {
    color: var(--mid);
    font-size: 15px;
    line-height: 1.7;
    position: relative;
    z-index: 1
}

/* =====================================================
   FOUNDER
===================================================== */
.founder {
    padding: 120px 0;
    background: var(--white);
    border-top: 1px solid var(--hairline)
}

.founder .grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 72px;
    align-items: center
}

.founder .portrait {
    aspect-ratio: 4/5;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl), 0 0 0 1px var(--hairline);
}

.founder .portrait img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 55% 22%;
    animation: kenBurns 24s ease-in-out infinite;
    will-change: transform
}

.founder .portrait::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(28, 26, 24, .36) 100%);
    pointer-events: none;
    z-index: 1
}

@keyframes kenBurns {

    0%,
    100% {
        transform: scale(1.02) translate(0, 0)
    }

    50% {
        transform: scale(1.08) translate(-1.5%, -1.5%)
    }
}

.founder h2 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(32px, 4.6vw, 58px);
    text-transform: uppercase;
    letter-spacing: -.01em;
    line-height: .95;
    color: var(--dark);
    margin-top: 14px
}

.founder h2 .burg {
    color: var(--burgundy)
}

.founder p {
    margin-top: 20px;
    color: var(--mid);
    font-size: 16px;
    line-height: 1.8;
    max-width: 520px
}

/* =====================================================
   PARTNERS
===================================================== */
.partners {
    padding: 64px 0;
    background: var(--cream);
    border-top: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline)
}

.partners .lbl {
    text-align: center;
    margin-bottom: 28px
}

.partners-carousel {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%)
}

.partners-lane {
    --gap-half: 32px;
    display: flex;
    gap: 64px;
    width: max-content;
    animation: partnersLane 18s linear infinite;
    align-items: center;
    will-change: transform
}

.partners:hover .partners-lane {
    animation-play-state: paused
}

@keyframes partnersLane {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(calc(-50% - var(--gap-half, 32px)))
    }
}

.partner {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark);
    opacity: .8;
    white-space: nowrap;
    transition: transform .4s var(--ease), opacity .4s
}

.partner:hover {
    transform: scale(1.08);
    opacity: 1
}

.partner-logo {
    height: 46px;
    width: auto;
    display: block;
    object-fit: contain;
    max-width: 220px
}

.partner-logo-lg {
    height: 68px;
    max-width: 280px
}

/* =====================================================
   TESTIMONIALS
===================================================== */
.trans {
    padding: 120px 0;
    background: var(--white);
    border-top: 1px solid var(--hairline)
}

.trans .head {
    text-align: center;
    margin-bottom: 48px
}

.trans h2 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(36px, 5vw, 66px);
    text-transform: uppercase;
    letter-spacing: -.01em;
    line-height: .95
}

.trans h2 .burg {
    color: var(--burgundy)
}

.trans .stars {
    color: var(--gold);
    font-size: 13px;
    letter-spacing: 4px;
    margin-bottom: 14px
}

.carousel {
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%)
}

.carousel .lane {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: lane 60s linear infinite;
    will-change: transform;
    margin-bottom: 20px
}

.carousel:hover .lane {
    animation-play-state: paused
}

@keyframes lane {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(calc(-50% - 8px))
    }
}

.qc {
    flex: 0 0 340px;
    background: var(--white);
    border: 1px solid var(--hairline);
    border-radius: 16px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 270px;
    box-shadow: var(--shadow-sm);
    transition: transform .4s var(--ease-spring), box-shadow .4s var(--ease), border-color .35s;
}

.qc:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lift);
    border-color: rgba(200, 163, 106, .25)
}

.qc .top-row {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.qc .av {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--burgundy);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 17px;
    flex: 0 0 auto
}

.qc .stars {
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--gold);
    margin: 0
}

.qc q {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 15px;
    line-height: 1.65;
    color: var(--dark);
    font-style: normal;
    quotes: none;
    flex: 1
}

.qc q::before,
.qc q::after {
    content: ""
}

.qc .who {
    padding-top: 16px;
    border-top: 1px solid var(--hairline)
}

.qc .name {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: .02em;
    color: var(--dark)
}

.qc .role {
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-size: 9.5px;
    color: var(--light-mid);
    margin-top: 3px
}

/* =====================================================
   FOR / NOT FOR
===================================================== */
.fornotfor {
    padding: 120px 0;
    background: var(--cream);
    border-top: 1px solid var(--hairline)
}

.fornotfor .head {
    text-align: center;
    margin-bottom: 52px
}

.fornotfor h2 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(34px, 4.6vw, 60px);
    text-transform: uppercase;
    letter-spacing: -.01em;
    line-height: .95;
    color: var(--dark)
}

.cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.col {
    padding: 44px 36px;
    border-radius: 20px;
    color: #fff
}

.col.for {
    background: var(--burgundy)
}

.col.not {
    background: var(--dark)
}

.col h3 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 26px;
    text-transform: uppercase;
    letter-spacing: .02em;
    margin-bottom: 24px;
    color: #fff
}

.col ul {
    list-style: none
}

.col li {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, .15);
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, .9)
}

.col li:first-child {
    border-top: 0
}

.col .mk {
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    margin-top: 2px
}

.col.for .mk {
    background: var(--gold);
    color: var(--burgundy)
}

.col.not .mk {
    background: rgba(255, 255, 255, .14);
    color: #fff
}

/* =====================================================
   INTAKES
===================================================== */
.intakes {
    padding: 80px 0;
    background: var(--burgundy);
    color: #fff;
    position: relative;
    overflow: hidden;
    text-align: center
}

.intakes::before {
    content: "";
    position: absolute;
    left: -10%;
    top: -10%;
    width: 55%;
    height: 55%;
    background: radial-gradient(circle, rgba(200, 163, 106, .15), transparent 65%);
    pointer-events: none;
    filter: blur(48px)
}

.intakes .eyebrow {
    color: rgba(255, 255, 255, .65)
}

.intakes h2 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(30px, 4.6vw, 58px);
    text-transform: uppercase;
    letter-spacing: -.01em;
    line-height: 1;
    color: #fff;
    margin: 14px auto 0;
    max-width: 880px;
    position: relative
}

.intakes h2 .gold {
    color: var(--gold)
}

.intake-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 820px;
    margin: 40px auto 0;
    position: relative
}

.icard {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, .16);
    text-align: left;
    transition: var(--t);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
}

.icard img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 1.2s var(--ease)
}

.icard::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(122, 31, 43, .35) 0%, rgba(28, 20, 20, .55) 55%, rgba(20, 14, 14, .88) 100%)
}

.icard:hover img {
    transform: scale(1.06)
}

.icard:hover {
    border-color: rgba(200, 163, 106, .5)
}

.icard>* {
    position: relative;
    z-index: 2
}

.icard .loc {
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-size: 10.5px;
    color: var(--gold)
}

.icard .dt {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(22px, 3vw, 30px);
    text-transform: uppercase;
    letter-spacing: -.01em;
    line-height: 1.05;
    margin: 8px 0 4px;
    color: #fff
}

.icard .sp {
    font-size: 13.5px;
    color: rgba(255, 255, 255, .75)
}

.icard a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    font-size: 12.5px;
    color: var(--gold)
}

.icard a:hover {
    color: #fff
}

/* =====================================================
   APPLY
===================================================== */
.apply {
    padding: 112px 0;
    color: #fff;
    position: relative;
    overflow: hidden
}

.apply .bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(28, 26, 24, .88) 0%, rgba(28, 26, 24, .75) 50%, rgba(28, 26, 24, .65) 100%), radial-gradient(80% 100% at 30% 50%, #3a2e26, #1c1a18 70%), repeating-linear-gradient(120deg, #2a221c 0 18px, #251f19 18px 36px)
}

.apply .wrap {
    position: relative;
    z-index: 2
}

.apply .grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1120px;
    margin: 0 auto
}

.apply .eyebrow {
    color: var(--gold)
}

.apply h2 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(34px, 5.6vw, 68px);
    text-transform: uppercase;
    letter-spacing: -.01em;
    line-height: .95;
    margin-top: 16px
}

.apply h2 .gold {
    color: var(--gold)
}

.apply p.sub {
    margin-top: 18px;
    color: rgba(255, 255, 255, .82);
    font-size: 16px;
    max-width: 440px;
    line-height: 1.75
}

form {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 20px;
    padding: 32px;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    gap: 16px
}

form label {
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
    font-size: 10.5px;
    color: rgba(255, 255, 255, .7);
    display: block;
    margin-bottom: 8px
}

form input,
form select,
form textarea {
    width: 100%;
    background: transparent;
    border: 0;
    border-bottom: 1.5px solid rgba(255, 255, 255, .28);
    padding: 12px 0;
    color: #fff;
    font-size: 16px;
    font-family: var(--font-body);
    transition: var(--t);
    resize: none
}

form select option {
    color: var(--dark)
}

form input::placeholder,
form textarea::placeholder {
    color: rgba(255, 255, 255, .4)
}

form input:focus,
form select:focus,
form textarea:focus {
    outline: none;
    border-color: var(--gold)
}

form .field {
    display: flex;
    flex-direction: column
}

form .field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

form button[type=submit] {
    margin-top: 8px;
    background: var(--burgundy);
    color: #fff;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    font-size: 14.5px;
    padding: 0 32px;
    height: 58px;
    border-radius: 999px;
    cursor: pointer;
    transition: var(--t);
    border: 0;
    box-shadow: 0 8px 24px -8px rgba(122, 31, 43, .5);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px
}

form button[type=submit]:hover {
    background: var(--burgundy-dk);
    transform: translateY(-2px)
}

.form-seg {
    display: flex;
    gap: 8px;
    margin-bottom: 14px
}

.form-seg-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 13px 12px;
    border-radius: 999px;
    border: 1.5px solid rgba(255, 255, 255, .25);
    background: transparent;
    color: rgba(255, 255, 255, .68);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .02em;
    cursor: pointer;
    text-decoration: none;
    transition: all .25s;
    line-height: 1.2
}

.form-seg-btn.active {
    background: var(--burgundy);
    border-color: var(--burgundy);
    color: #fff
}

.form-seg-btn:hover:not(.active) {
    border-color: rgba(255, 255, 255, .5);
    color: #fff
}

.wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    width: 100%;
    margin-top: 12px;
    padding: 15px 24px;
    border-radius: 14px;
    background: linear-gradient(180deg, #29D06A 0%, #1FAE58 100%);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: .01em;
    text-decoration: none;
    transition: transform .2s ease, filter .2s ease
}

.wa-btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.06)
}

/* =====================================================
   STICKY CTA
===================================================== */
.sticky-bot {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 60;
    display: none;
    background: var(--burgundy);
    color: #fff;
    padding: 14px 22px;
    border-radius: 999px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    font-size: 13.5px;
    box-shadow: 0 18px 48px -10px rgba(80, 15, 30, .5);
    transform: translateY(120%);
    transition: transform .35s var(--ease);
    text-align: center
}

.sticky-bot.show {
    transform: none
}

/* =====================================================
   REVEAL
===================================================== */
@keyframes rvIn {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.rv.in {
    animation: rvIn .65s cubic-bezier(0.16, 1, 0.3, 1) both
}

.rv-1.in {
    animation-delay: .05s
}

.rv-2.in {
    animation-delay: .15s
}

.rv-3.in {
    animation-delay: .25s
}

.rv-4.in {
    animation-delay: .35s
}

.rv-5.in {
    animation-delay: .45s
}

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width:1024px) {
    .hero .hero-grid {
        grid-template-columns: 1fr;
        gap: 36px;
        text-align: center
    }

    .hero .sub {
        margin-left: auto;
        margin-right: auto
    }

    .hero .cta-row {
        justify-content: center
    }

    .hero-stats {
        margin-left: auto;
        margin-right: auto
    }

    .ppath {
        flex-direction: column
    }

    .ppath .ph {
        flex: 0 0 auto;
        aspect-ratio: 16/10;
        min-height: 0
    }

    .founder .grid {
        grid-template-columns: 1fr;
        gap: 44px
    }

    .founder .portrait {
        aspect-ratio: 3/4;
        width: 100%;
        max-width: 420px;
        margin: 0 auto
    }

    .apply .grid {
        grid-template-columns: 1fr;
        gap: 36px
    }
}

@media (max-width:768px) {
    .wrap {
        padding: 0 18px
    }

    .hero {
        padding: 36px 0 48px
    }

    .hero-stats {
        max-width: 100%;
        border-radius: 12px
    }

    .hstat {
        padding: 16px 10px
    }

    .hstat-n {
        font-size: 26px
    }

    .vbox-inner {
        border-radius: 14px
    }

    .paths,
    .hook,
    .promises,
    .founder,
    .fornotfor,
    .trans,
    .apply {
        padding: 72px 0
    }

    .grid2 {
        grid-template-columns: 1fr;
        gap: 16px
    }

    .ppath .bd {
        padding: 28px 22px 24px
    }

    .bento {
        grid-template-columns: 1fr;
        gap: 12px
    }

    .card {
        padding: 32px 24px
    }

    .card-num {
        font-size: 90px;
        right: 12px
    }

    .cols {
        grid-template-columns: 1fr;
        gap: 12px
    }

    .col {
        padding: 32px 24px
    }

    .qc {
        flex-basis: 272px;
        padding: 22px;
        min-height: 0
    }

    .partners {
        padding: 48px 0
    }

    .partner-logo {
        height: 34px;
        max-width: 150px
    }

    .partner-logo-lg {
        height: 50px;
        max-width: 190px
    }

    .partners-lane {
        --gap-half: 20px;
        gap: 40px;
        animation-duration: 14s
    }

    .intakes {
        padding: 64px 0
    }

    .intake-cards {
        grid-template-columns: 1fr;
        gap: 12px
    }

    form .field-row {
        grid-template-columns: 1fr
    }

    .sticky-bot {
        display: flex
    }

    body {
        padding-bottom: 76px
    }
}

@media (prefers-reduced-motion:reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .001ms !important;
        transition-duration: .001ms !important
    }

    .trust .track,
    .carousel .lane,
    .partners-lane {
        animation: none !important
    }
}

html {
    scroll-behavior: smooth;
    overflow-x: clip
}

::selection {
    background: var(--burgundy);
    color: #fff
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px
}

::-webkit-scrollbar-track {
    background: var(--cream)
}

::-webkit-scrollbar-thumb {
    background: var(--burgundy);
    border-radius: 10px;
    border: 2px solid var(--cream)
}

::-webkit-scrollbar-thumb:hover {
    background: var(--burgundy-dk)
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 8px;
    background: var(--burgundy);
    color: #fff;
    padding: 10px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    z-index: 100
}

.skip-link:focus {
    left: 8px
}