*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

:root {
    --bg: #06060a;
    --bg1: #0a0a12;
    --bg2: #0e0e18;
    --ink: #f2f0ea;
    --ink2: rgba(242, 240, 234, .5);
    --ink3: rgba(242, 240, 234, .22);
    --blue: #4b8ef0;
    --rust: #c84c22;
    --gold: #d9a840;
    --green: #22c97a;
    --purple: #9b5cf0;
    --pink: #e84d94;
    --bdr: rgba(255, 255, 255, .06);
    --bdr2: rgba(255, 255, 255, .11);
    --sans: 'Sora', sans-serif;
    --serif: 'Instrument Serif', serif;
    --mono: 'DM Mono', monospace;
    --cond: 'Outfit', sans-serif;
}

html {
    scroll-behavior: smooth;
    width: 100%;
}

body {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--sans);
    width: 100%;
    position: relative;
}

/* ── ELITE NOISE OVERLAY ── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 50;
    opacity: 0.12;
    mix-blend-mode: overlay;
}

@media(min-width:1025px) {
    body {
        cursor: default
    }

    #c-dot,
    #c-ring {
        display: none
    }
}

#c-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--ink);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width .2s, height .2s, background .2s
}

#c-ring {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(242, 240, 234, .25);
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width .3s, height .3s
}

body.hov #c-dot {
    width: 14px;
    height: 14px;
    background: var(--blue)
}

body.hov #c-ring {
    width: 60px;
    height: 60px;
    border-color: rgba(75, 142, 240, .5)
}

#prog {
    position: fixed;
    top: 0;
    left: 0;
    height: 1.5px;
    width: 0;
    background: linear-gradient(90deg, var(--blue), var(--purple), var(--pink));
    z-index: 10000;
    pointer-events: none
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 500;
    padding: 0 clamp(16px, 4vw, 56px);
    transition: background .4s, backdrop-filter .4s
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    border-bottom: 1px solid var(--bdr)
}

.logo {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 400;
    letter-spacing: .05em;
    color: var(--ink);
    text-decoration: none;
    display: flex;
    align-items: baseline;
    gap: 3px
}

.logo sup {
    font-family: var(--cond);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .15em;
    color: var(--rust);
    text-transform: uppercase;
    vertical-align: super
}

.nav-links {
    display: flex;
    gap: clamp(20px, 3vw, 36px);
    list-style: none
}

.nav-links a {
    font-family: var(--cond);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--ink2);
    text-decoration: none;
    transition: color .2s;
    position: relative;
    padding-bottom: 2px
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--rust);
    transition: width .3s
}

.nav-links a:hover {
    color: var(--ink)
}

.nav-links a:hover::after {
    width: 100%
}

.nav-r {
    display: flex;
    gap: 10px;
    align-items: center
}

.btn-o {
    font-family: var(--cond);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--ink);
    background: transparent;
    border: 1px solid var(--bdr2);
    padding: 8px 20px;
    border-radius: 2px;
    text-decoration: none;
    transition: all .25s;
    display: inline-block;
    white-space: nowrap
}

.btn-o:hover {
    background: rgba(255, 255, 255, .06);
    border-color: var(--ink)
}

.btn-f {
    font-family: var(--cond);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #09090c;
    background: var(--ink);
    border: 1px solid var(--ink);
    padding: 8px 20px;
    border-radius: 2px;
    text-decoration: none;
    transition: color .3s, border-color .3s;
    display: inline-block;
    position: relative;
    overflow: hidden;
    white-space: nowrap
}

.btn-f::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--rust);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s cubic-bezier(.4, 0, .2, 1)
}

.btn-f:hover::after {
    transform: scaleX(1)
}

.btn-f:hover {
    color: #fff;
    border-color: var(--rust)
}

.btn-f span {
    position: relative;
    z-index: 1
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 6px;
    z-index: 600
}

.hamburger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--ink);
    transition: transform .3s, opacity .3s
}

.hamburger.open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg)
}

.hamburger.open span:nth-child(2) {
    opacity: 0
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg)
}

.mob-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(9, 9, 12, .97);
    z-index: 550;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    backdrop-filter: blur(20px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s
}

.mob-menu.open {
    opacity: 1;
    pointer-events: all
}

.mob-menu a {
    font-family: var(--serif);
    font-size: clamp(28px, 8vw, 44px);
    font-weight: 300;
    color: var(--ink);
    text-decoration: none;
    letter-spacing: -.02em;
    transition: color .2s
}

.mob-menu a:hover {
    color: var(--rust)
}

.mob-div {
    width: 36px;
    height: 1px;
    background: var(--bdr2)
}

@media(max-width: 1024px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
    }

    .mob-menu {
        display: flex;
    }
}

/* HERO */
.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 40px 80px
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 35%, rgba(155, 92, 240, 0.28), transparent 60%), radial-gradient(circle at 50% 60%, rgba(75, 142, 240, 0.18), transparent 70%), linear-gradient(120deg, transparent 40%, rgba(255, 255, 255, 0.04), transparent 60%);
    pointer-events: none;
    z-index: 1
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(155, 92, 240, 0.1), transparent 70%);
    opacity: 1;
    pointer-events: none;
    z-index: 2
}

.hero-bg-img {
    position: absolute;
    inset: 0;
    background: url('../../main-bg.png') center/cover no-repeat;
    opacity: 0.4;
    filter: blur(6px) saturate(120%);
    transform: scale(1.1);
    z-index: 0;
    will-change: transform
}

@keyframes floatBg {
    0% {
        transform: scale(1.1) translateY(0);
    }

    100% {
        transform: scale(1.18) translateY(-30px);
    }
}

.hero-grad {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 85%, rgba(6, 6, 10, 0.85) 100%);
    z-index: 3;
    pointer-events: none
}

.hero-gridlines {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .015) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .015) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, black, transparent);
    z-index: 4;
    pointer-events: none;
    opacity: 0.6
}


.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 18px;
    border: 1px solid var(--bdr2);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--ink2);
    background: rgba(255, 255, 255, .03);
    margin-bottom: 44px;
    opacity: 0;
    animation: rise .8s .1s cubic-bezier(.16, 1, .3, 1) forwards
}

.eb-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    display: flex;
    align-items: center;
    justify-content: center
}

.eb-dot svg {
    width: 8px;
    height: 8px;
    fill: none;
    stroke: #fff;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round
}

.hero-h1 {
    font-family: var(--serif);
    font-size: clamp(80px, 10.5vw, 148px);
    font-weight: 400;
    line-height: .95;
    letter-spacing: -.03em;
    margin-bottom: 36px;
    flex-wrap: wrap;
    text-shadow: 0 0 40px rgba(155, 92, 240, 0.25), 0 0 80px rgba(75, 142, 240, 0.15);
}

.h1-l1 {
    /* display: block; */
    opacity: 0;
    animation: rise .9s .25s cubic-bezier(.16, 1, .3, 1) forwards
}

.h1-l2 {
    /* display: block; */
    color: var(--ink2);
    opacity: 0;
    animation: rise .9s .4s cubic-bezier(.16, 1, .3, 1) forwards
}

.h1-l3 {
    display: block;
    opacity: 0;
    animation: rise .9s .55s cubic-bezier(.16, 1, .3, 1) forwards
}

.h1-l3 em {
    font-style: italic;
    background: linear-gradient(135deg, var(--blue) 0%, var(--purple) 60%, var(--pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.hero-sub {
    font-size: clamp(15px, 1vw, 12px);
    color: white;
    max-width: 540px;
    line-height: 1.65;
    font-weight: 400;
    margin: 0 auto 52px;
    opacity: 0;
    animation: rise .9s .7s cubic-bezier(.16, 1, .3, 1) forwards
}

.hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
    opacity: 0;
    animation: rise .9s .85s cubic-bezier(.16, 1, .3, 1) forwards;
    margin-bottom: 80px
}

.hero-cta {
    position: relative;
    overflow: hidden;
    padding: 17px 40px;
    background: linear-gradient(135deg, #ffffff, #eae6ff);
    color: #0d0d12;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 700;
    font-family: var(--sans);
    text-decoration: none;
    letter-spacing: .02em;
    transition: transform .3s, box-shadow .3s;
    border: none;
    box-shadow: 0 10px 40px rgba(155, 92, 240, 0.4);
    cursor: pointer
}

.hero-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.6), transparent 70%);
    opacity: 0;
    transition: opacity .3s;
}

.hero-cta:hover::before {
    opacity: 0.4;
    animation: shine 1.2s linear;
}

@keyframes shine {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(100%);
    }
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 60px rgba(155, 92, 240, 0.4)
}

.hero-ghost {
    padding: 17px 32px;
    border: 1px solid var(--bdr2);
    border-radius: 100px;
    color: white;
    font-size: 15px;
    font-weight: 500;
    font-family: var(--sans);
    text-decoration: none;
    transition: all .25s;
    letter-spacing: .02em;
    display: flex;
    align-items: center;
    gap: 8px
}

.hero-ghost svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform .25s
}

.hero-ghost:hover {
    border-color: rgba(255, 255, 255, .25);
    color: var(--ink)
}

.hero-ghost:hover svg {
    transform: translateX(4px)
}

.hero-kpis {
    display: flex;
    gap: 0;
    border: 1px solid var(--bdr);
    border-radius: 16px;
    background: rgba(255, 255, 255, .035);
    backdrop-filter: blur(14px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    opacity: 0;
    animation: rise .9s 1s cubic-bezier(.16, 1, .3, 1) forwards
}

.kpi {
    padding: 22px 40px;
    text-align: center;
    flex: 1;
    position: relative
}

.kpi+.kpi::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: var(--bdr)
}

.kpi-n {
    font-family: var(--serif);
    font-size: 38px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -.02em;
    margin-bottom: 6px;
    background: linear-gradient(180deg, var(--ink) 0%, var(--ink2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.kpi-l {
    font-size: 11px;
    color: var(--ink3);
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase
}


@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(36px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@keyframes fade {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

/* MARQUEE */
.mband {
    border-top: 1px solid var(--bdr);
    border-bottom: 1px solid var(--bdr);
    padding: 12px 0;
    overflow: hidden;
    background: rgba(255, 255, 255, .015)
}

.mtrack {
    display: flex;
    white-space: nowrap;
    will-change: transform
}

.mitem {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    font-family: var(--cond);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.644);
}

.msep {
    color: var(--blue);
    margin: 0 18px;
    font-size: 8px
}

/* SECTION BASE */
.sec {
    padding: clamp(90px, 11vw, 160px) clamp(24px, 6vw, 80px);
    width: 100%;
    overflow-x: hidden;
}

.ey {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 12px
}

.ey::before {
    content: '';
    width: 28px;
    height: 1.5px;
    background: var(--blue);
    display: block
}

h2.sh {
    font-family: var(--serif);
    font-size: clamp(52px, 6vw, 88px);
    font-weight: 400;
    line-height: .92;
    letter-spacing: -.025em;
    margin-bottom: 24px
}

h2.sh em {
    font-style: italic;
    color: var(--ink2)
}

.sp {
    font-size: clamp(16px, 1.7vw, 19px);
    color: var(--ink2);
    line-height: 1.7;
    max-width: 500px;
    font-weight: 400
}

/* REVEAL */
.rv {
    opacity: 0;
    transform: translateY(44px);
    transition: opacity 1s cubic-bezier(.16, 1, .3, 1), transform 1s cubic-bezier(.16, 1, .3, 1)
}

.rv.in {
    opacity: 1;
    transform: none
}

.rv.d1 {
    transition-delay: .12s
}

.rv.d2 {
    transition-delay: .22s
}

.rv.d3 {
    transition-delay: .34s
}

.rv.d4 {
    transition-delay: .46s
}

.rvl {
    opacity: 0;
    transform: translateX(-44px);
    transition: opacity 1s cubic-bezier(.16, 1, .3, 1), transform 1s cubic-bezier(.16, 1, .3, 1)
}

.rvl.in {
    opacity: 1;
    transform: none
}

.rvr {
    opacity: 0;
    transform: translateX(44px);
    transition: opacity 1s cubic-bezier(.16, 1, .3, 1), transform 1s cubic-bezier(.16, 1, .3, 1)
}

.rvr.in {
    opacity: 1;
    transform: none
}

/* FORMATS */
.fmts-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 100px);
    align-items: end;
    max-width: 1400px;
    margin: 0 auto clamp(56px, 7vw, 88px)
}

#formats {
    position: relative;
}

#formats::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 20%, rgba(155, 92, 240, 0.08), transparent 60%);
    pointer-events: none;
}

.fmt-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 12px;
    max-width: 1400px;
    margin: 0 auto
}

.fc {
    aspect-ratio: .88;
    background: rgba(255, 255, 255, 0.02);
    border: none;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        background 0.3s, box-shadow 0.4s;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
}

.fmt-grid.in .fc {
    opacity: 1;
    transform: translateY(0);
}

.fmt-grid.in .fc:nth-child(1) {
    transition-delay: 0.1s;
}

.fmt-grid.in .fc:nth-child(2) {
    transition-delay: 0.18s;
}

.fmt-grid.in .fc:nth-child(3) {
    transition-delay: 0.26s;
}

.fmt-grid.in .fc:nth-child(4) {
    transition-delay: 0.34s;
}

.fmt-grid.in .fc:nth-child(5) {
    transition-delay: 0.42s;
}

.fmt-grid.in .fc:nth-child(6) {
    transition-delay: 0.5s;
}

.fmt-grid.in .fc:nth-child(7) {
    transition-delay: 0.58s;
}

.fc.featured {
    transform: scale(1.05);
    border-color: var(--purple);
    background: rgba(255, 255, 255, 0.06);
    z-index: 2;
}

.fc:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: var(--bdr2);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 40px rgba(155, 92, 240, 0.15);
}

.fc.featured:hover {
    transform: translateY(-12px) scale(1.08);
}

.fc::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 2px solid transparent;
    pointer-events: none;
    z-index: 5;
    transition: opacity 0.2s;
}

.fc.hover-loading::before {
    border-color: var(--blue);
    animation: holdProgress 1.5s linear forwards;
    opacity: 1;
}

.fc.holding {
    transform: scale(0.97);
    background: rgba(255, 255, 255, 0.08);
}

.fc.holding::before {
    border-color: var(--purple);
    animation: holdProgress 0.4s linear forwards;
    opacity: 1;
}

@keyframes holdProgress {
    from {
        clip-path: inset(100% 0 0 0);
        opacity: 0.4;
    }

    to {
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

.fc::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(200px circle at var(--x, 50%) var(--y, 50%), rgba(155, 92, 240, 0.15), transparent 60%);
    opacity: 0;
    transition: opacity .3s;
    pointer-events: none;
}

.fc:hover::after {
    opacity: 1;
}

.fc::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 120% at 50% 100%, var(--ca, var(--blue)) 0%, transparent 70%);
    opacity: 0;
    transition: opacity .4s
}

.fc:hover::before {
    opacity: .18
}

.fc:hover {
    border-color: var(--ca, var(--blue));
    transform: translateY(-6px);
    background: rgba(255, 255, 255, .06);
    box-shadow: 0 30px 60px rgba(0, 0, 0, .5)
}

.fc-ico {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center
}

.fc-ico svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: var(--ink2);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke .3s
}

.fc:hover .fc-ico svg {
    stroke: var(--ca, var(--blue))
}

.fc-lbl {
    font-family: var(--cond);
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--ink2);
    text-align: center;
    line-height: 1.3
}

.fc-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 2px 7px;
    border-radius: 4px;
    font-family: var(--cond);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, .06);
    color: var(--ink3)
}

/* STORY SCROLL */
.story-outer {
    position: relative;
    height: 500vh;
    width: 100%;
    background: #06060a
}

.story-sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    z-index: 1;
    overflow: hidden
}

.story-bg-layer {
    position: absolute;
    inset: 0;
    background: #06060a
}

.story-bg-layer img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.06);
    transition: opacity 1.4s ease, transform 8s ease
}

.story-bg-layer img.on {
    opacity: .7;
    transform: scale(1)
}

.story-vig {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(6, 6, 10, .96) 0%, rgba(6, 6, 10, .5) 55%, transparent 100%), linear-gradient(to top, rgba(6, 6, 10, .7) 0%, transparent 40%)
}

.story-steps {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    pointer-events: none
}

.sstep {
    width: 100%;
    overflow-x: hidden;
    height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    padding: 0 clamp(24px, 6vw, 100px);
    position: relative;
}

@media(max-width: 1024px) {
    .sstep {
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 20px;
        padding: 40px 24px;
        min-height: 100vh;
        height: auto;
    }

    .ssi {
        max-width: 100%;
        margin: 0 auto;
        opacity: 1 !important;
        transform: none !important;
    }

    .ssi .sst {
        justify-content: center;
    }

    .ssi .sst::before {
        display: none;
    }

    .ssh {
        font-size: clamp(28px, 8vw, 40px);
        line-height: 1.1;
    }

    .ss-visual {
        display: flex;
        width: 100%;
        height: auto;
        perspective: none;
        margin-top: 20px;
    }

    .vcard {
        max-width: 100%;
        margin: 0 auto;
        transform: none !important;
        opacity: 1 !important;
        padding: 24px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    }

    .story-bg-layer img {
        opacity: 0.3 !important;
    }

    .story-bg-layer img.on {
        opacity: 0.4 !important;
    }

    .sdots {
        display: none !important;
    }
}

.ss-visual {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.vcard {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 32px;
    width: 100%;
    max-width: 440px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
    opacity: 0;
    transform: translateX(40px) rotateY(-10deg);
    transition: all 1s cubic-bezier(.16, 1, .3, 1);
}

.ssi.on+.ss-visual .vcard {
    opacity: 1;
    transform: none;
}

.vc-badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(155, 92, 240, 0.15);
    color: var(--purple);
    font-size: 10px;
    font-weight: 800;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.vc-title {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
}

.vc-content {
    font-size: 14px;
    color: var(--ink2);
    line-height: 1.6;
}

/* CARD 1: Focus */
.vc-focus-ui {
    margin-top: 24px;
    height: 100px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.vc-cursor {
    position: absolute;
    left: 20px;
    top: 20px;
    width: 2px;
    height: 20px;
    background: var(--blue);
    animation: blink 1s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* CARD 2: Format Icons */
.vc-format-grid {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.vfg-item {
    height: 48px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--ink2);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* CARD 3: Save Status */
.vc-save-bar {
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(52, 199, 89, 0.05);
    border: 1px solid rgba(52, 199, 89, 0.1);
    border-radius: 100px;
    color: #34c759;
    font-size: 13px;
    font-weight: 600;
}

.vc-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #34c759;
    box-shadow: 0 0 10px #34c759;
    animation: pulseSave 2s infinite;
}

@keyframes pulseSave {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* CARD 4: Export Stack */
.vc-stack {
    margin-top: 24px;
    position: relative;
    height: 60px;
}

.vcs-item {
    position: absolute;
    width: 40px;
    height: 54px;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 900;
    color: #000;
    transition: all 0.5s ease;
}

.ssi.on+.ss-visual .vcs-item:nth-child(1) {
    transform: rotate(-10deg) translateX(-20px);
}

.ssi.on+.ss-visual .vcs-item:nth-child(2) {
    transform: rotate(0) translateX(0);
    z-index: 2;
}

.ssi.on+.ss-visual .vcs-item:nth-child(3) {
    transform: rotate(10deg) translateX(20px);
}

.ssi {
    max-width: 580px;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .8s cubic-bezier(.16, 1, .3, 1), transform .8s cubic-bezier(.16, 1, .3, 1)
}

.ssi.on {
    opacity: 1;
    transform: none
}

.sst {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 500;
    color: var(--blue);
    letter-spacing: .12em;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px
}

.sst::before {
    content: '';
    width: 20px;
    height: 1px;
    background: var(--blue)
}

.ssh {
    font-family: var(--serif);
    font-size: clamp(40px, 4.5vw, 64px);
    font-weight: 400;
    line-height: 1.04;
    letter-spacing: -.025em;
    margin-bottom: 20px
}

.ssh em {
    font-style: italic;
    color: var(--ink2)
}

.ssp {
    font-size: 16px;
    color: var(--ink2);
    line-height: 1.75;
    margin-bottom: 28px
}

.sspills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.spill {
    padding: 6px 16px;
    border: 1px solid var(--bdr2);
    border-radius: 100px;
    font-size: 12px;
    color: var(--ink2);
    font-family: var(--cond);
    font-weight: 600;
    letter-spacing: .06em
}

.sdots {
    position: absolute;
    right: clamp(24px, 4vw, 60px);
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 10
}

.sdot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
    transition: background .4s, transform .4s
}

.sdot.on {
    background: var(--blue);
    transform: scale(1.5)
}

/* TYPEWRITER */
.tw-sec {
    background-image: linear-gradient(rgba(6, 6, 10, 0.82), rgba(6, 6, 10, 0.82)), url(../../main-bg.png);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.tw-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: clamp(48px, 7vw, 120px);
    align-items: center
}

.tw-win {
    background: rgba(255, 255, 255, .025);
    border: 1px solid var(--bdr);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, .5), 0 0 0 1px rgba(255, 255, 255, .04)
}

.tw-bar {
    padding: 14px 18px;
    border-bottom: 1px solid var(--bdr);
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, .02)
}


.tw-file {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--ink3);
    margin-left: auto
}

.tw-live {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    color: var(--green)
}

.tw-pulse {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    animation: pulse 1.5s ease-in-out infinite
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .25
    }
}

.tw-body {
    padding: clamp(22px, 3vw, 40px);
    min-height: 300px;
    font-family: var(--mono);
    font-size: 13px;
    line-height: 1.9
}

.tw-lbl {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: .6
}

.sc-slug {
    display: block;
    color: #25c273;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 2px
}

.sc-act {
    display: block;
    color: var(--ink2);
    margin-bottom: 6px
}

.sc-char {
    display: block;
    color: #9b6dff;
    text-align: center;
    font-weight: 600;
    margin-bottom: 2px
}

.sc-dial {
    display: block;
    color: var(--ink);
    padding: 0 18%;
    margin-bottom: 6px
}

.sc-par {
    display: block;
    color: #e07540;
    text-align: center;
    font-size: 12px;
    margin-bottom: 2px
}

.tw-cur {
    display: inline-block;
    width: 2px;
    height: 14px;
    background: var(--blue);
    animation: blink .85s step-end infinite;
    vertical-align: text-bottom;
    margin-left: 1px
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0
    }
}

/* MANIFESTO */
.mani-sec {
    background: var(--bg1);
    border-top: 1px solid var(--bdr);
    border-bottom: 1px solid var(--bdr);
    padding: clamp(100px, 14vw, 180px) clamp(24px, 6vw, 80px);
    text-align: center
}

.mani-text {
    font-family: var(--serif);
    font-size: clamp(40px, 5.5vw, 78px);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -.025em;
    max-width: 1000px;
    margin: 0 auto
}

.mani-text em {
    font-style: italic;
    background: linear-gradient(135deg, var(--blue), var(--purple), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.mw {
    display: inline-block;
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s ease, transform .7s ease
}

.mani-text.in .mw {
    opacity: 1;
    transform: none
}

/* BENTO */
.bento {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: clamp(8px, 1vw, 14px);
    max-width: 1400px;
    margin: 0 auto
}

.bc {
    background: rgba(255, 255, 255, .028);
    border: 1px solid var(--bdr);
    border-radius: 18px;
    padding: clamp(26px, 3vw, 40px);
    transition: border-color .4s, background .4s, transform .4s;
    position: relative;
    overflow: hidden
}

.bc:hover {
    border-color: var(--bdr2);
    background: rgba(255, 255, 255, .05);
    transform: translateY(-4px)
}

.bc::after {
    content: '';
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(75, 142, 240, .07) 0%, transparent 70%);
    pointer-events: none;
    left: calc(var(--gx, 50%) - 120px);
    top: calc(var(--gy, 50%) - 120px);
    opacity: 0;
    transition: opacity .4s
}

.bc:hover::after {
    opacity: 1
}

.s7 {
    grid-column: span 7
}

.s5 {
    grid-column: span 5
}

.s4 {
    grid-column: span 4
}

.s6 {
    grid-column: span 6
}

.s12 {
    grid-column: span 12
}

.bc-num {
    font-family: var(--mono);
    font-size: 10px;
    color: var(--ink3);
    letter-spacing: .1em;
    margin-bottom: 18px
}

.bc-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 1px solid var(--bdr);
    background: rgba(255, 255, 255, .04)
}

.bc-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: var(--ink2);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round
}

.bc h3 {
    font-family: var(--serif);
    font-size: clamp(22px, 2.2vw, 30px);
    font-weight: 400;
    margin-bottom: 12px;
    letter-spacing: -.015em;
    line-height: 1.1
}

.bc p {
    font-size: 14px;
    color: var(--ink2);
    line-height: 1.7
}

.script-prev {
    margin-top: 22px;
    background: rgba(0, 0, 0, .35);
    border: 1px solid var(--bdr);
    border-radius: 12px;
    padding: 18px 22px;
    font-family: var(--mono);
    font-size: 12px;
    line-height: 1.9
}

.v-list {
    margin-top: 22px;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.v-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid var(--bdr);
    background: rgba(255, 255, 255, .02)
}

.v-bar {
    width: 3px;
    height: 32px;
    border-radius: 2px;
    flex-shrink: 0
}

.v-name {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 3px
}

.v-time {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--ink3)
}

.v-badge {
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-left: auto
}

.collab-demo {
    margin-top: 22px;
    display: flex;
    align-items: center;
    gap: 14px
}

.av-stack {
    display: flex
}

.av {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--bg1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--cond);
    font-size: 12px;
    font-weight: 700;
    margin-left: -10px
}

.av:first-child {
    margin-left: 0
}

.live-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    color: var(--green);
    padding: 4px 10px;
    background: rgba(34, 201, 122, .1);
    border-radius: 100px
}

/* REEL */
.reel-sec {
    background: var(--bg);
    padding: clamp(70px, 9vw, 120px) 0
}

.reel-lbl {
    padding: 0 clamp(24px, 6vw, 80px);
    margin-bottom: 32px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--ink3)
}

.reel-wrap {
    overflow: hidden;
    cursor: grab
}

.reel-track {
    display: flex;
    gap: 14px;
    will-change: transform;
    padding: 0 clamp(24px, 6vw, 80px)
}

.rc {
    flex-shrink: 0;
    width: clamp(330px, 36vw, 710px);
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--bdr);
    background: rgba(255, 255, 255, .02);
    transition: transform .4s, border-color .3s
}

.rc:hover {
    transform: scale(1.05);
    z-index: 10;
    border-color: var(--bdr2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.rc-img {
    width: 100%;
    /* aspect-ratio: 16/9; */
    overflow: hidden;
    position: relative;
}

.rc-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 60%,
            rgba(155, 92, 240, 0.12),
            transparent 70%);
    z-index: 2;
    pointer-events: none;
}

.rc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.5) brightness(.7);
    transition: filter .5s, transform .5s;
    display: block
}

.rc:hover .rc-img img {
    filter: saturate(.9) brightness(.9);
}

.rc-body {
    padding: 18px 22px
}

.rc-num {
    font-family: var(--mono);
    font-size: 10px;
    color: var(--ink3);
    margin-bottom: 5px
}

.rc-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
    letter-spacing: -.01em
}

.rc-sub {
    font-size: 12px;
    color: var(--ink2)
}

/* ── PRICE DESIGN (UNIFIED WITH PLAN.HTML) ── */
.plans-wrap {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
}

.plan-card {
    background: rgba(255, 255, 255, 0.022);
    border: 1px solid var(--bdr);
    border-radius: 24px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s;
}

.plan-card:hover {
    border-color: var(--bdr2);
    background: rgba(255, 255, 255, 0.035);
    transform: translateY(-8px);
}

.plan-card.featured {
    border: 2px solid var(--blue);
    background: linear-gradient(170deg, rgba(75, 142, 240, 0.08), rgba(15, 15, 24, 0.1));
    box-shadow: 0 0 60px rgba(75, 142, 240, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transform: scale(1.02);
    z-index: 2;
}

.plan-card.featured:hover {
    transform: scale(1.03) translateY(-8px);
}

.badge-popular {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blue);
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 5px 20px;
    border-radius: 0 0 12px 12px;
}

.plan-tier {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink3);
    margin-bottom: 10px;
}

.plan-name {
    font-family: var(--sans);
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.01em;
    margin-bottom: 6px;
}

.plan-tagline {
    font-size: 13px;
    color: var(--ink2);
    font-weight: 300;
    margin-bottom: 28px;
    line-height: 1.5;
}

.price-block {
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--bdr);
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 6px;
}

.price-main {
    font-family: var(--serif);
    font-size: 48px;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1;
}

.price-unit {
    font-size: 14px;
    color: var(--ink3);
    font-weight: 300;
}

.price-note {
    font-size: 12px;
    color: var(--ink3);
}

.limit-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--bdr);
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 20px;
}

.limit-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    font-size: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.limit-row:last-child {
    border-bottom: none;
}

.limit-label {
    color: var(--ink2);
}

.limit-val {
    font-weight: 700;
    font-size: 12px;
}

.sec-label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink3);
    margin: 18px 0 10px;
}

.feat-list {
    list-style: none;
}

.feat-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    font-size: 13px;
    color: var(--ink2);
    line-height: 1.45;
}

.feat-list li:last-child {
    border-bottom: none;
}

.feat-list li strong {
    color: var(--ink);
    font-weight: 600;
}

.ic {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    margin-top: 1px;
}

.ic-y {
    background: rgba(34, 201, 122, 0.15);
    color: var(--green);
}

.ic-n {
    background: rgba(255, 255, 255, 0.04);
    color: var(--ink3);
}

.plan-btn {
    width: 100%;
    padding: 16px;
    border-radius: 14px;
    border: 1px solid var(--bdr2);
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
    margin-top: auto;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s;
}

.plan-btn.primary {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
    box-shadow: 0 10px 30px rgba(75, 142, 240, 0.2);
}

.plan-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.plan-btn.primary:hover {
    background: #6aa2f5;
    box-shadow: 0 15px 40px rgba(75, 142, 240, 0.35);
}



/* ── TOGGLE ── */
.billing-toggle-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 50px;
}

.billing-toggle {
    position: relative;
    width: 50px;
    height: 26px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--bdr2);
    border-radius: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.billing-toggle .ball {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    background: var(--blue);
    border-radius: 50%;
    transition: 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.billing-toggle.yearly .ball {
    left: calc(100% - 21px);
    background: var(--purple);
}

.toggle-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--ink3);
    transition: 0.2s;
}

.toggle-label.active {
    color: var(--ink);
}

.discount-badge {
    background: rgba(34, 201, 122, 0.15);
    color: var(--green);
    font-size: 10px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 6px;
    margin-left: 5px;
    text-transform: uppercase;
}

/* FINAL CTA */
.fcta {
    position: relative;
    overflow: hidden;
    text-align: center;
    background: var(--bg1);
    border-top: 1px solid var(--bdr);
    padding: clamp(110px, 15vw, 200px) clamp(24px, 6vw, 80px)
}

.fcta-g {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 700px;
    background: radial-gradient(ellipse, rgba(155, 92, 240, .11) 0%, rgba(75, 142, 240, .07) 45%, transparent 70%);
    filter: blur(80px);
    pointer-events: none
}

.fcta-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px);
    background-size: 100% 80px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black, transparent)
}

.fcta h2 {
    font-family: var(--serif);
    font-size: clamp(64px, 8vw, 118px);
    font-weight: 400;
    line-height: .88;
    letter-spacing: -.03em;
    margin-bottom: 30px;
    position: relative
}

.fcta h2 em {
    font-style: italic;
    color: var(--ink2)
}

.fcta p {
    font-size: 18px;
    color: var(--ink2);
    margin-bottom: 52px;
    line-height: 1.65;
    position: relative
}

.fcta-acts {
    display: flex;
    gap: 14px;
    justify-content: center;
    position: relative
}

.fcta-note {
    margin-top: 22px;
    font-size: 13px;
    color: var(--ink3);
    position: relative;
    letter-spacing: .03em
}

/* FOOTER */
footer {
    border-top: 1px solid var(--bdr);
    background: var(--bg);
    padding: clamp(60px, 9vh, 110px) 0;
    position: relative;
    overflow: hidden
}

footer::after {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(194, 84, 31, .05) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none
}

.ft-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 clamp(16px, 5vw, 64px);
    position: relative;
    z-index: 1
}

.ft-main {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 60px;
    margin-bottom: 80px
}

.ft-brand {
    max-width: 320px
}

.ft-logo-wrap {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 300;
    color: var(--ink);
    margin-bottom: 20px;
    display: flex;
    align-items: baseline;
    gap: 4px
}

.ft-logo-wrap sup {
    font-size: 10px;
    color: var(--rust);
    font-family: var(--cond);
    font-weight: 700
}

.ft-tagline {
    font-size: 14px;
    line-height: 1.6;
    color: var(--ink2);
    margin-bottom: 32px
}

.ft-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px
}

.ft-col h6 {
    font-family: var(--cond);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 24px
}

.ft-col a {
    display: block;
    font-size: 14px;
    color: var(--ink2);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color .2s
}

.ft-col a:hover {
    color: var(--rust)
}

.ft-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--bdr);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px
}

.ft-copy {
    font-size: 12px;
    color: var(--ink3)
}

.ft-built {
    font-family: var(--serif);
    font-style: italic;
    font-size: 13px;
    color: var(--ink2)
}

.ft-built span {
    color: var(--ink);
    font-weight: 500
}

@media(max-width:1100px) {
    .ft-main {
        grid-template-columns: 1fr;
        gap: 48px
    }

    .ft-brand {
        max-width: none;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center
    }

    .ft-cols {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        text-align: center
    }

    .ft-bottom {
        flex-direction: column;
        text-align: center
    }
}

@media(max-width:900px) {
    .fmt-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .fmt-grid .fc:last-child {
        grid-column: 2;
    }

    .s7,
    .s5,
    .s6,
    .s4,
    .s12 {
        grid-column: span 12
    }

    .tw-inner {
        grid-template-columns: 1fr
    }

    .plans-grid {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .plan-card.featured {
        transform: none;
        margin: 0
    }

    .plan-card.featured:hover {
        transform: translateY(-8px)
    }

    .fmts-head {
        grid-template-columns: 1fr
    }

    .hero-kpis {
        flex-wrap: wrap
    }

    .story-bg-layer img {
        object-position: center;
        height: 100vh;
        width: 100%;
    }

    .story-sticky {
        height: 100vh;
    }

    .kpi {
        min-width: 140px
    }
}

@media(max-width:480px) {
    .hero-actions {
        flex-direction: column
    }

    .fmt-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px
    }

    .fmt-grid .fc:last-child {
        grid-column: 2;
    }
}

/* MODAL (UNIFIED) */
.fmodal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(6, 6, 12, 0.88);
    z-index: 5000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 24px;
}

.fmodal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.fmodal {
    background: #0d0d12;
    border: none;
    border-radius: 32px 32px 0 0;
    width: 100%;
    max-width: 1100px;
    height: 85vh;
    position: fixed;
    bottom: 0;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: 0 -40px 100px rgba(0, 0, 0, 0.9);
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.fmodal-overlay.open .fmodal {
    transform: translateY(0);
}

.fm-left {
    padding: clamp(40px, 6vw, 80px);
    display: flex;
    flex-direction: column;
    border: none;
}

.fm-right {
    background: #09090d;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.fm-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fmodal-overlay.open .fm-img {
    transform: scale(1.05);
}

.fm-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 20px;
}

.fm-title {
    font-family: var(--serif);
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1.1;
    margin-bottom: 24px;
}

.fm-desc {
    font-size: 15px;
    color: var(--ink2);
    line-height: 1.7;
    margin-bottom: 32px;
}

.fm-feats {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: auto;
}

.fmf {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: var(--ink);
}

.fmf-ic {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: var(--blue);
}

.fm-btns {
    margin-top: 40px;
    display: flex;
    gap: 12px;
}

.fm-btns .hero-cta {
    padding: 12px 24px;
    font-size: 14px;
}

.fm-btns .hero-ghost {
    padding: 12px 24px;
    font-size: 14px;
}

.close-fm {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.close-fm:hover {
    background: rgba(255, 255, 255, 0.1);
}

.prev-ui {
    width: 100%;
    height: 100%;
    border: 1px solid var(--bdr);
    border-radius: 12px;
    background: #11111a;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pui-head {
    height: 24px;
    background: #1a1a25;
    display: flex;
    align-items: center;
    padding: 0 10px;
    gap: 5px;
}

.pui-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.pui-body {
    flex: 1;
    padding: 20px;
    font-family: var(--mono);
    font-size: 10px;
    color: var(--ink3);
    white-space: pre-wrap;
}

.pui-body .hl {
    color: var(--blue);
}

@media (max-width: 800px) {
    .fmodal {
        grid-template-columns: 1fr;
    }

    .fm-right {
        display: none;
    }
}

.fc-meta {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(15, 15, 24, 0.95) 40%, transparent);
    padding: 40px 16px 16px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    text-align: center;
}

.fc:hover .fc-meta {
    opacity: 1;
    transform: translateY(0);
}

.fcm-ti {
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
    display: block;
}

.fcm-sub {
    font-size: 9px;
    color: var(--ink3);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}