*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

:root {
    --bg: #030306;
    --bg1: #060610;
    --bg2: #0a0a18;
    --ink: #f4f0ff;
    --ink2: rgba(244, 240, 255, .52);
    --ink3: rgba(244, 240, 255, .2);
    --hook: #ff453a;
    /* Intro Hook — red */
    --intro: #5e5ce6;
    /* Introduction — indigo */
    --chapter: #30d158;
    /* Main Chapter — green */
    --broll: #ff9f0a;
    /* B-Roll — amber */
    --cta: #0a84ff;
    /* CTA — blue */
    --sponsor: #ffd60a;
    /* Sponsor — yellow */
    --outro: #bf5af2;
    /* Outro — purple */
    --acc: #5e5ce6;
    --bdr: rgba(255, 255, 255, .06);
    --bdr2: rgba(255, 255, 255, .12);
    --sans: 'Space Grotesk', sans-serif;
    --serif: 'Fraunces', serif;
    --mono: 'JetBrains Mono', monospace;
}

html {
    scroll-behavior: smooth
}

body {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--sans);
    overflow-x: hidden
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: overlay;
    opacity: .35
}

#prog {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, var(--hook), var(--intro), var(--chapter), var(--cta), var(--outro));
    z-index: 10000;
    pointer-events: none
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    padding: 0 clamp(16px, 5vw, 64px);
    border-bottom: 1px solid var(--bdr);
    transition: background .4s
}

nav.scrolled {
    background: rgba(3, 3, 6, .92);
    backdrop-filter: blur(24px)
}

.nav-logo {
    font-family: var(--serif);
    font-size: 20px;
    color: var(--ink);
    text-decoration: none;
    letter-spacing: -.02em
}

.nav-logo sup {
    font-family: var(--sans);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .18em;
    color: var(--hook);
    text-transform: uppercase;
    vertical-align: super
}

.nav-r {
    display: flex;
    gap: 10px;
    align-items: center
}

.nav-btn {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 4px;
    text-decoration: none;
    transition: all .2s
}

.nav-btn.out {
    color: var(--ink);
    border: 1px solid var(--bdr2);
    background: transparent
}

.nav-btn.out:hover {
    background: rgba(255, 255, 255, .05)
}

.nav-btn.fill {
    color: #030306;
    background: var(--ink);
    border: 1px solid var(--ink)
}

.nav-btn.fill:hover {
    background: var(--acc);
    border-color: var(--acc);
    color: #fff
}

/* HERO — editorial with subscribe counter aesthetic */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    position: relative;
    overflow: hidden
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 160px clamp(24px, 6vw, 80px) 80px;
    position: relative;
    z-index: 2
}

.hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 40px 80px;
    position: relative
}

.hero-right-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(94, 92, 230, .18) 0%, transparent 70%);
    pointer-events: none
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 14px;
    border: 1px solid rgba(94, 92, 230, .3);
    border-radius: 100px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--acc);
    background: rgba(94, 92, 230, .07);
    margin-bottom: 36px;
    animation: riseUp .8s .1s both
}

.hero h1 {
    font-family: var(--serif);
    font-size: clamp(48px, 6vw, 90px);
    font-weight: 900;
    line-height: .88;
    letter-spacing: -.04em;
    margin-bottom: 24px
}

.hero h1 .l1 {
    display: block;
    animation: riseUp .9s .2s cubic-bezier(.16, 1, .3, 1) both
}

.hero h1 .l2 {
    display: block;
    color: var(--ink2);
    animation: riseUp .9s .35s cubic-bezier(.16, 1, .3, 1) both
}

.hero h1 .l3 {
    display: block;
    animation: riseUp .9s .5s cubic-bezier(.16, 1, .3, 1) both
}

.hero h1 .l3 em {
    font-style: italic;
    background: linear-gradient(120deg, var(--hook) 0%, var(--intro) 50%, var(--outro) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.hero-sub {
    font-size: clamp(14px, 1.3vw, 17px);
    color: var(--ink2);
    max-width: 440px;
    line-height: 1.7;
    margin-bottom: 40px;
    animation: riseUp .9s .65s cubic-bezier(.16, 1, .3, 1) both
}

.hero-acts {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 44px;
    animation: riseUp .9s .8s cubic-bezier(.16, 1, .3, 1) both
}

.hero-cta {
    padding: 14px 32px;
    background: var(--hook);
    color: #fff;
    border: 1px solid var(--hook);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all .3s;
    box-shadow: 0 10px 36px rgba(255, 69, 58, .3)
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 50px rgba(255, 69, 58, .5)
}

.hero-ghost {
    padding: 14px 28px;
    border: 1px solid var(--bdr2);
    border-radius: 100px;
    color: var(--ink2);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all .25s
}

.hero-ghost:hover {
    border-color: rgba(255, 255, 255, .3);
    color: var(--ink)
}

.hero-stats {
    display: flex;
    gap: 28px;
    animation: riseUp .9s .95s cubic-bezier(.16, 1, .3, 1) both
}

.hero-stat-val {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -.02em;
    line-height: 1
}

.hero-stat-lbl {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--ink3);
    margin-top: 3px;
    font-family: var(--mono)
}

/* YOUTUBE MOCKUP */
.yt-mockup {
    width: 100%;
    max-width: 380px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--bdr2);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, .7);
    animation: riseUp 1.1s .5s both
}

.yt-top {
    background: #1a1a2e;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--bdr)
}

.yt-logo {
    width: 28px;
    height: 20px;
    background: var(--hook);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.yt-logo svg {
    width: 12px;
    height: 12px;
    fill: white
}

.yt-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--ink);
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.yt-badge {
    padding: 2px 7px;
    background: var(--hook);
    border-radius: 3px;
    font-family: var(--mono);
    font-size: 8px;
    font-weight: 700;
    color: #fff
}

.yt-body {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.yt-block {
    border-radius: 8px;
    padding: 10px 12px;
    border-left: 3px solid;
    transition: all .35s
}

.yt-block-label {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    font-family: var(--mono);
    margin-bottom: 4px
}

.yt-block-text {
    font-size: 10px;
    color: var(--ink2);
    line-height: 1.55
}

.yt-block.yt-hook {
    border-color: var(--hook);
    background: rgba(255, 69, 58, .07)
}

.yt-block.yt-intro {
    border-color: var(--intro);
    background: rgba(94, 92, 230, .07)
}

.yt-block.yt-chapter {
    border-color: var(--chapter);
    background: rgba(48, 209, 88, .07)
}

.yt-block.yt-broll {
    border-color: var(--broll);
    background: rgba(255, 159, 10, .07)
}

.yt-block.yt-cta {
    border-color: var(--cta);
    background: rgba(10, 132, 255, .07)
}

.yt-block.yt-sponsor {
    border-color: var(--sponsor);
    background: rgba(255, 214, 10, .07)
}

.yt-block.yt-outro {
    border-color: var(--outro);
    background: rgba(191, 90, 242, .07)
}

.yt-hook .yt-block-label {
    color: var(--hook)
}

.yt-intro .yt-block-label {
    color: var(--intro)
}

.yt-chapter .yt-block-label {
    color: var(--chapter)
}

.yt-broll .yt-block-label {
    color: var(--broll)
}

.yt-cta .yt-block-label {
    color: var(--cta)
}

.yt-sponsor .yt-block-label {
    color: var(--sponsor)
}

.yt-outro .yt-block-label {
    color: var(--outro)
}

/* SECTIONS */
.sec {
    padding: clamp(90px, 12vw, 160px) clamp(24px, 6vw, 80px);
    position: relative;
}

.sec-ey {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--acc);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--mono)
}

.sec-ey::before {
    content: '';
    width: 20px;
    height: 1.5px;
    background: var(--acc)
}

h2.sh {
    font-family: var(--serif);
    font-size: clamp(44px, 6vw, 88px);
    font-weight: 900;
    line-height: .9;
    letter-spacing: -.03em;
    margin-bottom: 20px
}

h2.sh em {
    font-style: italic;
    font-weight: 300;
    color: var(--ink2)
}

.sp {
    font-size: clamp(14px, 1.4vw, 17px);
    color: var(--ink2);
    line-height: 1.7;
    max-width: 480px
}

.rv {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity .9s cubic-bezier(.16, 1, .3, 1), transform .9s cubic-bezier(.16, 1, .3, 1)
}

.rv.in {
    opacity: 1;
    transform: none
}

.rv.d1 {
    transition-delay: .1s
}

.rv.d2 {
    transition-delay: .2s
}

.rv.d3 {
    transition-delay: .32s
}

/* BLOCKS ANATOMY — horizontal card layout */
.blocks-sec {
    background: var(--bg1);
    border-top: 1px solid var(--bdr);
    border-bottom: 1px solid var(--bdr)
}

.blocks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 14px;
    max-width: 1400px;
    margin: 48px auto 0
}

.block-card {
    border: 1px solid var(--bdr);
    border-radius: 14px;
    padding: 24px;
    transition: border-color .3s, transform .3s;
    border-top: 3px solid var(--bc)
}

.block-card:hover {
    transform: translateY(-3px);
    border-color: var(--bdr2)
}

.bc-num {
    font-family: var(--mono);
    font-size: 9px;
    color: var(--ink3);
    margin-bottom: 12px
}

.bc-icon {
    font-size: 22px;
    margin-bottom: 10px;
    display: block
}

.bc-name {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--bc)
}

.bc-desc {
    font-size: 11px;
    color: var(--ink2);
    line-height: 1.65;
    margin-bottom: 12px
}

.bc-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 5px
}

.bc-tag {
    padding: 2px 8px;
    border-radius: 100px;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    border: 1px solid var(--bc);
    color: var(--bc);
    background: color-mix(in srgb, var(--bc) 12%, transparent)
}

.bc-key {
    font-family: var(--mono);
    font-size: 9px;
    color: var(--ink3);
    margin-top: 8px
}

/* FEATURES — right panel explainer */
.features-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    max-width: 1400px;
    margin: 0 auto;
}

.feat-panel {
    background: rgba(255, 255, 255, .03);
    border: 1px solid var(--bdr);
    border-radius: 16px;
    overflow: hidden;
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
    z-index: 20;
}

.fp-header {
    padding: 14px 18px;
    border-bottom: 1px solid var(--bdr);
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, .02)
}

.fp-dots {
    display: flex;
    gap: 5px
}

.fp-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%
}

.fp-title {
    font-family: var(--mono);
    font-size: 9px;
    color: var(--ink3);
    margin: 0 auto
}

.fp-badge {
    font-size: 8px;
    font-weight: 700;
    color: var(--chapter);
    font-family: var(--mono);
    letter-spacing: .08em;
    display: flex;
    align-items: center;
    gap: 4px
}

.fp-badge::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--chapter)
}

.fp-tabs {
    display: flex;
    border-bottom: 1px solid var(--bdr);
    padding: 0 14px;
    gap: 2px
}

.fp-tab {
    padding: 8px 12px;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--ink3);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all .2s;
    font-family: var(--mono)
}

.fp-tab.act {
    color: var(--acc);
    border-bottom-color: var(--acc)
}

.fp-body {
    padding: 14px 16px
}

.fp-stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .04);
    font-size: 11px
}

.fp-stat-row:last-child {
    border-bottom: none
}

.fp-stat-lbl {
    color: var(--ink3);
    font-size: 10px;
    font-family: var(--mono)
}

.fp-stat-val {
    font-weight: 700;
    color: var(--ink);
    font-size: 14px
}

.fp-seo-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .04);
    font-size: 10px;
    color: var(--ink2)
}

.fp-seo-item:last-child {
    border-bottom: none
}

.fp-check {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 7px;
    font-weight: 700;
    margin-top: 1px
}

.fp-check.ok {
    background: rgba(48, 209, 88, .2);
    color: var(--chapter)
}

.fp-check.warn {
    background: rgba(255, 159, 10, .2);
    color: var(--broll)
}

.fp-check.fail {
    background: rgba(255, 69, 58, .2);
    color: var(--hook)
}

.fp-ts-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .04);
    font-size: 10px
}

.fp-ts-item:last-child {
    border-bottom: none
}

.fp-ts-time {
    font-family: var(--mono);
    font-size: 9px;
    color: var(--acc);
    min-width: 36px
}

.fp-ts-lbl {
    color: var(--ink2);
    flex: 1
}

/* feature list */
.feat-items {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.feat-item {
    background: rgba(255, 255, 255, .025);
    border: 1px solid var(--bdr);
    border-radius: 12px;
    padding: 22px;
    cursor: pointer;
    transition: border-color .3s, background .3s
}

.feat-item:hover,
.feat-item.act {
    border-color: var(--bdr2);
    background: rgba(255, 255, 255, .04)
}

.feat-item-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px
}

.feat-item-icon {
    font-size: 20px
}

.feat-item-name {
    font-size: 14px;
    font-weight: 700
}

.feat-item-desc {
    font-size: 11px;
    color: var(--ink2);
    line-height: 1.65
}

/* TEMPLATES */
.tmpl-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    max-width: 1400px;
    margin: 48px auto 0
}

.tmpl-card {
    background: rgba(255, 255, 255, .025);
    border: 1px solid var(--bdr);
    border-radius: 12px;
    padding: 22px;
    transition: border-color .3s, transform .3s;
    cursor: pointer
}

.tmpl-card:hover {
    border-color: var(--bdr2);
    transform: translateY(-2px)
}

.tmpl-icon {
    font-size: 28px;
    margin-bottom: 12px;
    display: block
}

.tmpl-name {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 6px
}

.tmpl-desc {
    font-size: 10px;
    color: var(--ink2);
    line-height: 1.55;
    margin-bottom: 12px
}

.tmpl-flow {
    font-family: var(--mono);
    font-size: 9px;
    color: var(--ink3);
    line-height: 1.6
}

/* WORKFLOW */
.timeline {
    max-width: 820px;
    margin: 0 auto
}

.tl-item {
    position: relative;
    padding: 0 0 44px 44px
}

.tl-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--dc, var(--acc));
    box-shadow: 0 0 18px var(--dc, var(--acc))
}

.tl-item::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 20px;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, var(--dc, var(--acc)), transparent)
}

.tl-item:last-child::after {
    display: none
}

.tl-lbl {
    font-family: var(--mono);
    font-size: 8px;
    color: var(--ink3);
    margin-bottom: 6px;
    letter-spacing: .12em;
    text-transform: uppercase
}

.tl-title {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px
}

.tl-body {
    font-size: 12px;
    color: var(--ink2);
    line-height: 1.7;
    margin-bottom: 12px
}

.tl-ex {
    background: rgba(255, 255, 255, .025);
    border: 1px solid var(--bdr);
    border-radius: 8px;
    padding: 12px 14px;
    font-family: var(--mono);
    font-size: 10px;
    line-height: 1.9
}

/* GROWTH FEATURES */
.growth-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    max-width: 1400px;
    margin: 48px auto 0
}

.growth-card {
    background: rgba(255, 255, 255, .025);
    border: 1px solid var(--bdr);
    border-radius: 14px;
    padding: 26px;
    transition: border-color .3s, transform .3s;
    position: relative;
    overflow: hidden
}

.growth-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gc, var(--acc)), transparent)
}

.growth-card:hover {
    border-color: var(--bdr2);
    transform: translateY(-3px)
}

.gc-icon {
    font-size: 22px;
    margin-bottom: 12px;
    display: block
}

.gc-name {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 7px
}

.gc-desc {
    font-size: 11px;
    color: var(--ink2);
    line-height: 1.65;
    margin-bottom: 12px
}

.gc-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    font-family: var(--mono)
}

.gc-badge.free {
    background: rgba(48, 209, 88, .15);
    color: var(--chapter);
    border: 1px solid rgba(48, 209, 88, .3)
}

.gc-badge.ace {
    background: rgba(255, 214, 10, .15);
    color: var(--sponsor);
    border: 1px solid rgba(255, 214, 10, .3)
}

.gc-badge.pro {
    background: rgba(255, 69, 58, .15);
    color: var(--hook);
    border: 1px solid rgba(255, 69, 58, .3)
}

/* SHORTCUTS */
.sc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: 900px;
    margin: 48px auto 0
}

.sc-group {
    background: rgba(255, 255, 255, .025);
    border: 1px solid var(--bdr);
    border-radius: 12px;
    padding: 20px
}

.sc-head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    font-family: var(--mono);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--ink)
}

.sk-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .04);
    font-size: 11px;
    color: var(--ink2)
}

.sk-row:last-child {
    border-bottom: none
}

.sk-key {
    padding: 1px 6px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--bdr2);
    border-radius: 3px;
    font-family: var(--mono);
    font-size: 8px;
    color: var(--ink)
}

/* TIPS */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 10px;
    max-width: 1400px;
    margin: 40px auto 0
}

.tip-card {
    background: rgba(255, 255, 255, .025);
    border: 1px solid var(--bdr);
    border-radius: 12px;
    padding: 20px;
    border-left: 3px solid var(--tc, var(--acc));
    transition: transform .3s
}

.tip-card:hover {
    transform: translateY(-2px)
}

.tip-head {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 9px
}

.tip-icon {
    font-size: 14px
}

.tip-title {
    font-size: 12px;
    font-weight: 700
}

.tip-body {
    font-size: 11px;
    color: var(--ink2);
    line-height: 1.6
}

/* EXPORT */
.exp-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    max-width: 1000px;
    margin: 40px auto 0
}

.exp-card {
    background: rgba(255, 255, 255, .025);
    border: 1px solid var(--bdr);
    border-radius: 12px;
    padding: 22px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    transition: border-color .3s, transform .3s
}

.exp-card:hover {
    border-color: var(--bdr2);
    transform: translateY(-2px)
}

.exp-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0
}

.exp-name {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 5px
}

.exp-desc {
    font-size: 10px;
    color: var(--ink2);
    line-height: 1.6
}

/* CTA */
.fcta {
    position: relative;
    overflow: hidden;
    text-align: center;
    background: var(--bg1);
    border-top: 1px solid var(--bdr);
    padding: clamp(100px, 14vw, 160px) clamp(24px, 6vw, 80px)
}

.fcta-g {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(255, 69, 58, .1) 0%, rgba(94, 92, 230, .08) 50%, transparent 70%);
    filter: blur(60px);
    pointer-events: none
}

.fcta h2 {
    font-family: var(--serif);
    font-size: clamp(48px, 7vw, 100px);
    font-weight: 900;
    line-height: .9;
    letter-spacing: -.03em;
    margin-bottom: 22px;
    position: relative
}

.fcta h2 em {
    font-style: italic;
    font-weight: 300;
    color: var(--ink2)
}

.fcta p {
    font-size: 16px;
    color: var(--ink2);
    margin-bottom: 38px;
    position: relative
}

.fcta-acts {
    display: flex;
    gap: 14px;
    justify-content: center;
    position: relative;
    flex-wrap: wrap
}

.fcta-note {
    margin-top: 16px;
    font-size: 11px;
    color: var(--ink3);
    position: relative;
    font-family: var(--mono)
}

/* FOOTER */
footer {
    border-top: 1px solid var(--bdr);
    background: var(--bg);
    padding: clamp(60px, 8vh, 100px) 0
}

.ft-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(16px, 5vw, 64px)
}

.ft-main {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 60px;
    margin-bottom: 50px
}

.ft-brand p {
    font-size: 12px;
    color: var(--ink2);
    line-height: 1.6;
    margin-top: 10px;
    max-width: 260px
}

.ft-logo {
    font-family: var(--serif);
    font-size: 24px;
    color: var(--ink)
}

.ft-logo sup {
    font-size: 8px;
    color: var(--hook);
    font-family: var(--sans);
    font-weight: 700
}

.ft-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.ft-col h6 {
    font-family: var(--mono);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 16px
}

.ft-col a {
    display: block;
    font-size: 11px;
    color: var(--ink2);
    text-decoration: none;
    margin-bottom: 8px;
    transition: color .2s
}

.ft-col a:hover {
    color: var(--hook)
}

.ft-bottom {
    padding-top: 22px;
    border-top: 1px solid var(--bdr);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px
}

.ft-copy {
    font-size: 10px;
    color: var(--ink3);
    font-family: var(--mono)
}

.ft-built {
    font-family: var(--serif);
    font-style: italic;
    font-size: 12px;
    color: var(--ink2)
}

.ft-built span {
    color: var(--ink)
}

/* DIVIDER */
.sec-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--bdr2) 30%, var(--bdr2) 70%, transparent);
    max-width: 1400px;
    margin: 0 auto
}

@keyframes riseUp {
    from {
        opacity: 0;
        transform: translateY(28px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@media(max-width:1024px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: auto
    }

    .hero-right {
        display: none
    }

    .hero-left {
        padding: 140px 24px 60px
    }

    .tmpl-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .features-layout {
        grid-template-columns: 1fr
    }

    .feat-panel {
        position: relative;
        top: 0
    }

    .growth-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .ft-main {
        grid-template-columns: 1fr
    }
}

@media(max-width:600px) {

    .tmpl-grid,
    .growth-grid,
    .sc-grid,
    .exp-row {
        grid-template-columns: 1fr
    }

    .hero-acts {
        flex-direction: column;
        align-items: flex-start
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px
    }
}