*,
*::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;
    --teal: #0ea5e9;
    --bdr: rgba(255, 255, 255, .06);
    --bdr2: rgba(255, 255, 255, .11);
    --sans: 'Sora', sans-serif;
    --serif: 'Instrument Serif', serif;
    --cond: 'Outfit', sans-serif;
    --mono: 'DM Mono', monospace;
}

html {
    scroll-behavior: smooth
}

body {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--sans);
    overflow-x: hidden
}

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: .12;
    mix-blend-mode: overlay
}

#prog {
    position: fixed;
    top: 0;
    left: 0;
    height: 1.5px;
    width: 0;
    background: linear-gradient(90deg, var(--rust), var(--purple), var(--pink), var(--gold), var(--green));
    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, backdrop-filter .4s
}

nav.scrolled {
    background: rgba(6, 6, 10, .94);
    backdrop-filter: blur(24px)
}

.nav-logo {
    font-family: var(--serif);
    font-size: 22px;
    color: var(--ink);
    text-decoration: none;
    display: flex;
    align-items: baseline;
    gap: 3px
}

.nav-logo sup {
    font-family: var(--cond);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .15em;
    color: var(--rust);
    text-transform: uppercase
}

.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
}

.nav-btn {
    font-family: var(--cond);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 2px;
    text-decoration: none;
    transition: all .25s;
    white-space: nowrap
}

.nav-btn.out {
    color: var(--ink);
    border: 1px solid var(--bdr2);
    background: transparent
}

.nav-btn.out:hover {
    background: rgba(255, 255, 255, .06);
    border-color: var(--ink)
}

.nav-btn.fill {
    color: #09090c;
    background: var(--ink);
    border: 1px solid var(--ink)
}

.nav-btn.fill:hover {
    background: var(--rust);
    border-color: var(--rust);
    color: #fff
}

/* HERO */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 40px 80px;
    overflow: hidden
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 40%, rgba(155, 92, 240, 0.22), transparent 55%), radial-gradient(circle at 70% 50%, rgba(75, 142, 240, 0.15), transparent 60%), radial-gradient(circle at 50% 80%, rgba(200, 76, 34, 0.1), transparent 50%);
    pointer-events: none;
    z-index: 1
}

.hero-grid {
    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 80% 70% at 50% 40%, black, transparent);
    z-index: 2;
    pointer-events: none;
    opacity: .6
}

.hero-grad {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 55%, rgba(6, 6, 10, 0.85) 100%);
    z-index: 3;
    pointer-events: none
}

.hero-eyebrow {
    position: relative;
    z-index: 10;
    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
}

.hero h1 {
    font-family: var(--serif);
    font-size: clamp(70px, 10vw, 140px);
    font-weight: 400;
    line-height: .93;
    letter-spacing: -.03em;
    margin-bottom: 36px;
    position: relative;
    z-index: 10;
    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) 50%, var(--pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.hero-sub {
    font-size: clamp(15px, 1.4vw, 18px);
    color: var(--ink2);
    max-width: 580px;
    line-height: 1.65;
    font-weight: 400;
    margin: 0 auto 52px;
    position: relative;
    z-index: 10;
    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;
    position: relative;
    z-index: 10;
    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;
    box-shadow: 0 10px 40px rgba(155, 92, 240, 0.2)
}

.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: var(--ink2);
    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:hover {
    border-color: rgba(255, 255, 255, .25);
    color: var(--ink)
}

.fmt-strip {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    z-index: 10;
    opacity: 0;
    animation: rise .9s 1s cubic-bezier(.16, 1, .3, 1) forwards
}

.fmt-pill {
    padding: 8px 18px;
    border: 1px solid var(--bdr);
    border-radius: 100px;
    font-family: var(--cond);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--ink3);
    background: rgba(255, 255, 255, .03);
    transition: all .3s
}

.fmt-pill:hover {
    border-color: var(--bdr2);
    color: var(--ink2);
    background: rgba(255, 255, 255, .06)
}

/* 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: var(--ink3)
}

.msep {
    color: var(--purple);
    margin: 0 18px;
    font-size: 8px
}

/* SECTION */
.sec {
    padding: clamp(90px, 11vw, 160px) clamp(24px, 6vw, 80px);
    width: 100%
}

.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
}

/* WHAT SECTION */
.what-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 100px);
    align-items: start;
    max-width: 1400px;
    margin: 0 auto
}

.big-quote {
    font-family: var(--serif);
    font-size: clamp(22px, 2.5vw, 30px);
    font-weight: 400;
    font-style: italic;
    line-height: 1.3;
    color: var(--ink2);
    border-left: 2px solid var(--rust);
    padding-left: 24px;
    margin: 32px 0;
    letter-spacing: -.01em
}

.what-body p {
    font-size: 16px;
    color: var(--ink2);
    line-height: 1.75;
    margin-bottom: 18px
}

.what-body p strong {
    color: var(--ink)
}

.prob-card {
    background: rgba(255, 255, 255, .025);
    border: 1px solid var(--bdr);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 16px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: border-color .3s, transform .3s
}

.prob-card:hover {
    border-color: var(--bdr2);
    transform: translateY(-3px)
}

.pc-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0
}

.pc-icon.red {
    background: rgba(200, 76, 34, .15)
}

.pc-icon.gold {
    background: rgba(217, 168, 64, .15)
}

.pc-icon.teal {
    background: rgba(34, 201, 122, .15)
}

.pc-body h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px
}

.pc-body p {
    font-size: 13px;
    color: var(--ink2);
    line-height: 1.6
}

/* FORMATS */
.formats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto
}

.fc {
    background: rgba(255, 255, 255, .025);
    border: 1px solid var(--bdr);
    border-radius: 20px;
    padding: 32px;
    transition: border-color .4s, background .4s, transform .4s;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    display: block;
    color: inherit
}

.fc:hover {
    border-color: var(--ca, var(--blue));
    background: rgba(255, 255, 255, .05);
    transform: translateY(-4px)
}

.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: .12
}

.fc-emoji {
    font-size: 32px;
    display: block;
    margin-bottom: 16px
}

.fc-name {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 12px;
    letter-spacing: -.01em
}

.fc-desc {
    font-size: 14px;
    color: var(--ink2);
    line-height: 1.7;
    margin-bottom: 20px
}

.fc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.fc-tag {
    padding: 4px 12px;
    border: 1px solid var(--bdr2);
    border-radius: 100px;
    font-family: var(--cond);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--ink3)
}

.fc-arrow {
    position: absolute;
    bottom: 24px;
    right: 24px;
    font-size: 18px;
    color: var(--ca, var(--blue));
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity .3s, transform .3s
}

.fc:hover .fc-arrow {
    opacity: 1;
    transform: none
}

/* STATS */
.stats-strip {
    background: var(--bg1);
    border-top: 1px solid var(--bdr);
    border-bottom: 1px solid var(--bdr);
    padding: clamp(60px, 8vw, 100px) clamp(24px, 6vw, 80px)
}

.stats-inner {
    display: flex;
    justify-content: center;
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
    border: 1px solid var(--bdr);
    border-radius: 16px;
    background: rgba(255, 255, 255, .02);
    overflow: hidden
}

.stat-item {
    flex: 1;
    padding: 40px;
    text-align: center;
    position: relative
}

.stat-item+.stat-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: var(--bdr)
}

.stat-num {
    font-family: var(--serif);
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -.02em;
    margin-bottom: 8px;
    background: linear-gradient(180deg, var(--ink) 0%, var(--ink2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.stat-lbl {
    font-family: var(--cond);
    font-size: 11px;
    color: var(--ink3);
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase
}

/* HOW STEPS */
.steps-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto
}

.step {
    padding: 32px 24px;
    background: rgba(255, 255, 255, .025);
    border: 1px solid var(--bdr);
    border-radius: 18px;
    position: relative;
    transition: border-color .3s, transform .3s
}

.step:hover {
    border-color: var(--bdr2);
    transform: translateY(-3px)
}

.step-num {
    font-family: var(--serif);
    font-size: 48px;
    font-weight: 400;
    color: var(--ink3);
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: -.02em
}

.step h3 {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 12px
}

.step p {
    font-size: 14px;
    color: var(--ink2);
    line-height: 1.7
}

.step-line {
    position: absolute;
    top: 58px;
    right: -12px;
    width: 24px;
    height: 1px;
    background: var(--bdr2);
    z-index: 1
}

.step:last-child .step-line {
    display: none
}

/* TOOLS */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1400px;
    margin: 0 auto
}

.tc {
    background: rgba(255, 255, 255, .025);
    border: 1px solid var(--bdr);
    border-radius: 18px;
    padding: 32px;
    transition: border-color .3s, background .3s, transform .3s
}

.tc:hover {
    border-color: var(--bdr2);
    background: rgba(255, 255, 255, .045);
    transform: translateY(-4px)
}

.tc-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px
}

.tc h3 {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 12px
}

.tc p {
    font-size: 14px;
    color: var(--ink2);
    line-height: 1.7
}

/* COMPARISON TABLE */
.comp-wrap {
    max-width: 1000px;
    margin: 0 auto
}

.table-scroll {
    width: 100%;
    overflow-x: auto;
    border: 1px solid var(--bdr);
    border-radius: 12px;
    background: rgba(255, 255, 255, .015);
    -webkit-overflow-scrolling: touch
}

.comp-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    min-width: 800px;
}

.comp-table th {
    font-family: var(--cond);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--ink3);
    padding: 16px 20px;
    border-bottom: 1px solid var(--bdr);
    text-align: left;
    background: rgba(255, 255, 255, .02)
}

.comp-table th:first-child {
    color: var(--ink2);
    font-size: 11px
}

.comp-table td {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .04);
    color: var(--ink2);
    vertical-align: middle
}

.comp-table tr:last-child td {
    border-bottom: none
}

.comp-table tr:hover td {
    background: rgba(255, 255, 255, .03)
}

.comp-check {
    color: var(--green);
    font-size: 14px;
    font-weight: 700
}

.comp-x {
    color: var(--ink3);
    font-size: 14px
}

.comp-feat {
    color: var(--ink);
    font-weight: 500
}

/* TESTIMONIALS */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1400px;
    margin: 0 auto
}

.tcard {
    background: rgba(255, 255, 255, .025);
    border: 1px solid var(--bdr);
    border-radius: 20px;
    padding: 32px;
    transition: border-color .3s, transform .3s;
    position: relative
}

.tcard:hover {
    border-color: var(--bdr2);
    transform: translateY(-3px)
}

.tcard::before {
    content: '"';
    font-family: var(--serif);
    font-size: 80px;
    line-height: .7;
    color: var(--bdr2);
    position: absolute;
    top: 20px;
    left: 20px
}

.tcard-body {
    font-size: 15px;
    color: var(--ink2);
    line-height: 1.7;
    margin-bottom: 24px;
    position: relative;
    z-index: 1
}

.tcard-author {
    display: flex;
    align-items: center;
    gap: 12px
}

.tcard-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bdr2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px
}

.tcard-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink)
}

.tcard-role {
    font-size: 12px;
    color: var(--ink3)
}

/* WHO */
.who-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto
}

.wc {
    background: rgba(255, 255, 255, .025);
    border: 1px solid var(--bdr);
    border-radius: 20px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: border-color .3s, transform .3s
}

.wc:hover {
    border-color: var(--bdr2);
    transform: translateY(-4px)
}

.wc-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--ca, var(--blue));
    border-radius: 20px 20px 0 0
}

.wc-emoji {
    font-size: 28px;
    margin-bottom: 16px;
    display: block
}

.wc h3 {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 10px
}

.wc p {
    font-size: 14px;
    color: var(--ink2);
    line-height: 1.6;
    margin-bottom: 16px
}

.wc-uses {
    list-style: none;
    font-size: 13px;
    color: var(--ink3);
    display: flex;
    flex-direction: column;
    gap: 6px
}

.wc-uses li::before {
    content: '→';
    color: var(--ca, var(--blue));
    margin-right: 8px;
    font-family: var(--cond)
}

/* MISSION */
.mission-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(60px, 7vw, 120px);
    max-width: 1400px;
    margin: 0 auto;
    align-items: start
}

.big-statement {
    font-family: var(--serif);
    font-size: clamp(52px, 6vw, 88px);
    font-weight: 400;
    line-height: .92;
    letter-spacing: -.025em;
    margin-bottom: 32px
}

.big-statement 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
}

.mission-body p {
    font-size: 16px;
    color: var(--ink2);
    line-height: 1.75;
    margin-bottom: 18px
}

.mission-body p strong {
    color: var(--ink)
}

.pillars {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.pillar {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, .025);
    border: 1px solid var(--bdr);
    border-radius: 16px;
    transition: border-color .3s
}

.pillar:hover {
    border-color: var(--bdr2)
}

.pillar-num {
    font-family: var(--serif);
    font-size: 32px;
    font-weight: 400;
    color: var(--ink3);
    flex-shrink: 0;
    line-height: 1
}

.pillar h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px
}

.pillar p {
    font-size: 13px;
    color: var(--ink2);
    line-height: 1.65
}

/* ROADMAP */
.roadmap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 1400px;
    margin: 0 auto
}

.rm-card {
    background: rgba(255, 255, 255, .025);
    border: 1px solid var(--bdr);
    border-radius: 16px;
    padding: 24px;
    transition: border-color .3s;
    position: relative;
    overflow: hidden
}

.rm-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--rc, var(--blue))
}

.rm-card:hover {
    border-color: var(--bdr2)
}

.rm-label {
    font-family: var(--cond);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--rc, var(--blue));
    margin-bottom: 12px
}

.rm-card h4 {
    font-family: var(--serif);
    font-size: 19px;
    font-weight: 400;
    margin-bottom: 8px
}

.rm-card p {
    font-size: 13px;
    color: var(--ink2);
    line-height: 1.65
}

.rm-tag {
    display: inline-block;
    margin-top: 12px;
    padding: 2px 8px;
    border-radius: 4px;
    font-family: var(--cond);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, .05);
    color: var(--ink3)
}

/* 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
}

/* 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 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;
    flex-wrap: wrap
}

.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
}

.ft-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 clamp(16px, 5vw, 64px)
}

.ft-main {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 60px;
    margin-bottom: 80px
}

.ft-brand p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--ink2);
    margin-top: 16px;
    margin-bottom: 24px
}

.ft-logo-wrap {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 300;
    color: var(--ink)
}

.ft-logo-wrap sup {
    font-size: 10px;
    color: var(--rust);
    font-family: var(--cond);
    font-weight: 700
}

.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)
}

@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(36px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@media(max-width:1024px) {

    .what-grid,
    .mission-inner {
        grid-template-columns: 1fr
    }

    .steps-row {
        grid-template-columns: repeat(2, 1fr)
    }

    .tools-grid,
    .who-grid,
    .testi-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .roadmap {
        grid-template-columns: repeat(2, 1fr)
    }

    .ft-main {
        grid-template-columns: 1fr
    }
}

@media(max-width:600px) {

    .steps-row,
    .tools-grid,
    .who-grid,
    .testi-grid,
    .roadmap {
        grid-template-columns: 1fr
    }

    .stats-inner {
        flex-direction: column
    }

    .hero-actions {
        flex-direction: column
    }
}

/* LUCIDE ICONS */
i[data-lucide] {
    display: inline-block;
    vertical-align: middle;
}

.pc-icon i {
    width: 20px;
    height: 20px;
    stroke-width: 2.5px;
}

.fc-emoji i {
    width: 32px;
    height: 32px;
    stroke-width: 1.5px;
}

.tc-icon i {
    width: 24px;
    height: 24px;
    stroke-width: 2px;
}

.wc-emoji i {
    width: 28px;
    height: 28px;
    stroke-width: 2px;
}

.tcard-avatar i {
    width: 20px;
    height: 20px;
    stroke-width: 2px;
    color: var(--ink2);
}

.comp-check i {
    width: 14px;
    height: 14px;
    stroke-width: 3px;
    color: var(--green);
}

.comp-x i {
    width: 14px;
    height: 14px;
    stroke-width: 2.5px;
    color: var(--ink3);
}

.hero-ghost i {
    width: 14px;
    height: 14px;
    stroke-width: 2.5px;
}