/* ══════════════════════════════════════════════════
   RESET & ROOT
══════════════════════════════════════════════════ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --red: #ff2d4e;
    --red-dim: rgba(255, 45, 78, 0.10);
    --red-glow: rgba(255, 45, 78, 0.35);
    --orange: #ff6a2f;
    --gold: #ffb830;
    --bg: #060608;
    --bg1: #0c0c10;
    --bg2: #111116;
    --bg3: #18181f;
    --surface: rgba(255, 255, 255, 0.034);
    --border: rgba(255, 255, 255, 0.07);
    --border-hi: rgba(255, 255, 255, 0.14);
    --text: #ffffff;
    --text2: rgba(255, 255, 255, 0.55);
    --text3: rgba(255, 255, 255, 0.28);
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --font-mono: 'DM Mono', monospace;
    --max: 1340px;
    --px: clamp(24px, 5vw, 90px);
    --sy: clamp(72px, 8vw, 120px);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    cursor: none;
}

/* ══ CUSTOM CURSOR ══ */
.cursor {
    position: fixed;
    width: 10px;
    height: 10px;
    background: var(--red);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.08s, width 0.25s, height 0.25s, background 0.25s;
    mix-blend-mode: difference;
}

.cursor-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 45, 78, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.18s cubic-bezier(0.22, 1, 0.36, 1), width 0.35s, height 0.35s, border-color 0.35s;
}

body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring {
    width: 56px;
    height: 56px;
    border-color: var(--red-glow);
}

/* ══ SCROLLBAR ══ */
::-webkit-scrollbar {
    width: 3px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--red);
    border-radius: 2px;
}

/* ══ 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='1'/%3E%3C/svg%3E");
    opacity: 0.025;
    pointer-events: none;
    z-index: 1000;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ══════════════════════════════════════════════════
   NAV
══════════════════════════════════════════════════ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 500;
    padding: 0 var(--px);
    mix-blend-mode: normal;
}

.nav-inner {
    max-width: var(--max);
    margin: 0 auto;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 0.5px solid transparent;
    transition: border-color 0.3s, background 0.3s;
}

.nav.scrolled {
    border-bottom: 0.5px solid var(--border);
    background: rgba(6, 6, 8, 0.85);
    backdrop-filter: blur(20px);
}

.nav.scrolled .nav-inner {
    border-color: transparent;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 26px;
    letter-spacing: 2px;
    color: #fff;
}

.nav-logo em {
    color: var(--red);
    font-style: normal;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    font-size: 13px;
    font-weight: 400;
    color: var(--text2);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #fff;
}

.nav-cta {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    background: transparent;
    border: 0.5px solid rgba(255, 45, 78, 0.6);
    padding: 10px 26px;
    border-radius: 2px;
    cursor: none;
    transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.nav-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--red);
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-cta:hover::before {
    transform: translateX(0);
}

.nav-cta span {
    position: relative;
    z-index: 1;
}

.nav-burger {
    display: none;
}

/* ══════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════ */
.hero {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px var(--px) clamp(48px, 7vh, 90px);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 80% 40%, rgba(255, 45, 78, 0.13) 0%, transparent 65%),
        radial-gradient(ellipse 40% 50% at 15% 80%, rgba(255, 106, 47, 0.07) 0%, transparent 60%),
        var(--bg);
    z-index: 0;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 80px 80px;
    z-index: 0;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: var(--max);
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 38%;
    align-items: center;
    gap: clamp(24px, 4vw, 80px);
}

.hero-text-content {
    min-width: 0;
    align-self: end;
}

.hero-visual {
    width: 100%;
    pointer-events: none;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-self: stretch;
}

.hero-video {
    width: 100%;
    height: auto;
    display: block;
    max-height: 55vh;
    object-fit: contain;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 32px;
}

.hero-tag-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 12px var(--red);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 8px var(--red);
    }

    50% {
        box-shadow: 0 0 20px var(--red), 0 0 40px rgba(255, 45, 78, 0.3);
    }
}

.hero-tag-text {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--red);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(72px, 12vw, 180px);
    line-height: 0.92;
    letter-spacing: -2px;
    color: #fff;
    margin-bottom: 0;
    overflow: hidden;
}

.hero h1 .line {
    display: block;
    overflow: hidden;
}

.hero h1 .line span {
    display: block;
    transform: translateY(110%);
    animation: slideUp 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero h1 .line:nth-child(1) span {
    animation-delay: 0.1s;
}

.hero h1 .line:nth-child(2) span {
    animation-delay: 0.22s;
}

.hero h1 .line:nth-child(3) span {
    animation-delay: 0.34s;
}

@keyframes slideUp {
    to {
        transform: translateY(0);
    }
}

.hero h1 .accent {
    color: var(--red);
}

.hero h1 .outline {
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.3);
    color: transparent;
}

.hero-sub-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-top: 48px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.7s forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-desc {
    font-size: clamp(14px, 1.3vw, 16px);
    color: var(--text2);
    line-height: 1.8;
    max-width: 420px;
    font-weight: 300;
    margin-top: 48px;
}

.hero-actions {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    pointer-events: all;
}

.btn-fire {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--red);
    color: #fff;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    padding: 18px 40px;
    border: none;
    border-radius: 2px;
    cursor: none;
    overflow: hidden;
    transition: box-shadow 0.3s;
    white-space: nowrap;
}

.btn-fire::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 184, 48, 0.3), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-fire:hover {
    box-shadow: 0 0 40px rgba(255, 45, 78, 0.5), 0 0 80px rgba(255, 45, 78, 0.2);
}

.btn-fire:hover::after {
    opacity: 1;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--text2);
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    cursor: none;
    transition: color 0.2s;
}

.btn-outline:hover {
    color: #fff;
}

.btn-outline .arrow-line {
    width: 28px;
    height: 1px;
    background: currentColor;
    transition: width 0.3s;
}

.btn-outline:hover .arrow-line {
    width: 42px;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeUp 1s 1.2s forwards;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--red));
    animation: scrollDrop 2s ease-in-out infinite;
}

@keyframes scrollDrop {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    51% {
        transform: scaleY(1);
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

.scroll-label {
    font-family: var(--font-mono);
    font-size: 9px;
    color: var(--text3);
    letter-spacing: 2px;
    text-transform: uppercase;
    writing-mode: vertical-lr;
}

/* ══════════════════════════════════════════════════
   STATS MARQUEE
══════════════════════════════════════════════════ */
.marquee-strip {
    border-top: 0.5px solid var(--border);
    border-bottom: 0.5px solid var(--border);
    background: var(--bg1);
    overflow: hidden;
    padding: 0;
    position: relative;
}

.marquee-strip::before,
.marquee-strip::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
}

.marquee-strip::before {
    left: 0;
    background: linear-gradient(to right, var(--bg1), transparent);
}

.marquee-strip::after {
    right: 0;
    background: linear-gradient(to left, var(--bg1), transparent);
}

.marquee-track {
    display: flex;
    animation: marquee 18s linear infinite;
    width: max-content;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 20px 40px;
    white-space: nowrap;
}

.marquee-num {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--red);
    letter-spacing: 1px;
}

.marquee-lbl {
    font-size: 12px;
    color: var(--text3);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.marquee-sep {
    width: 4px;
    height: 4px;
    background: var(--border-hi);
    border-radius: 50%;
    flex-shrink: 0;
    margin: 0 16px;
}

/* ══════════════════════════════════════════════════
   SECTION COMMONS
══════════════════════════════════════════════════ */
.section {
    padding: var(--sy) var(--px);
}

.section-inner {
    max-width: var(--max);
    margin: 0 auto;
}

.section-eyebrow {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.eyebrow-line {
    width: 32px;
    height: 1px;
    background: var(--red);
}

.eyebrow-text {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--red);
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(48px, 6vw, 88px);
    line-height: 0.95;
    letter-spacing: -0.5px;
    color: #fff;
    margin-bottom: 24px;
}

.section-title .outline {
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.25);
    color: transparent;
}

.section-title .red {
    color: var(--red);
}

.section-lead {
    font-size: clamp(14px, 1.3vw, 16px);
    color: var(--text2);
    line-height: 1.8;
    max-width: 560px;
    font-weight: 300;
    margin-bottom: 64px;
}

/* Reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ══════════════════════════════════════════════════
   HOW IT WORKS — HORIZONTAL STEPS
══════════════════════════════════════════════════ */
.how-section {
    background: var(--bg1);
    position: relative;
    overflow: hidden;
}

.how-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 45, 78, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.steps-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.step-card {
    padding: 48px 40px;
    border-left: 0.5px solid var(--border);
    position: relative;
    transition: background 0.3s;
    cursor: none;
}

.step-card:first-child {
    border-left: none;
}

.step-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, var(--red), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.step-card:hover {
    background: var(--surface);
}

.step-card:hover::after {
    transform: scaleX(1);
}

.step-num {
    font-family: var(--font-display);
    font-size: 80px;
    color: rgba(254, 47, 79, 0.5);
    line-height: 1;
    margin-bottom: 24px;
    transition: color 0.3s;
}

.step-card:hover .step-num {
    color: rgba(254, 47, 79, 1);
}

.step-icon-wrap {
    width: 48px;
    height: 48px;
    border: 0.5px solid var(--border-hi);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.step-card:hover .step-icon-wrap {
    border-color: rgba(255, 45, 78, 0.4);
    box-shadow: 0 0 20px rgba(255, 45, 78, 0.12);
}

.step-icon-wrap i {
    font-size: 20px;
    color: var(--text2);
}

.step-card h3 {
    font-family: var(--font-display);
    font-size: 28px;
    letter-spacing: 0.5px;
    color: #fff;
    margin-bottom: 14px;
}

.step-card p {
    font-size: 14px;
    color: var(--text2);
    line-height: 1.8;
    font-weight: 300;
}

.step-connector {
    position: absolute;
    top: 80px;
    right: -16px;
    width: 32px;
    height: 32px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text3);
    font-size: 12px;
}

/* ══════════════════════════════════════════════════
   BENEFITS — BENTO GRID
══════════════════════════════════════════════════ */
.benefits-section {
    background: var(--bg);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: auto;
    gap: 12px;
}

.bento-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--bg2);
    border: 0.5px solid var(--border);
    border-radius: 4px;
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s;
    cursor: none;
}

.bento-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 45, 78, 0.06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
}

.bento-card:hover::before {
    opacity: 1;
}

.bento-card:hover {
    border-color: var(--border-hi);
    transform: translateY(-3px);
}

.bento-card:nth-child(1) {
    grid-column: 1 / 4;
}

.bento-card:nth-child(2) {
    grid-column: 4 / 7;
}

.bento-card:nth-child(3) {
    grid-column: 1 / 3;
}

.bento-card:nth-child(4) {
    grid-column: 3 / 5;
}

.bento-card:nth-child(5) {
    grid-column: 5 / 7;
}

.bento-card:nth-child(6) {
    grid-column: 1 / 4;
}

.bento-icon {
    width: 44px;
    height: 44px;
    background: var(--red-dim);
    border: 0.5px solid rgba(255, 45, 78, 0.2);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}

.bento-icon i {
    font-size: 20px;
    color: var(--red);
}

.bento-card h4 {
    font-family: var(--font-display);
    font-size: 26px;
    letter-spacing: 0.5px;
    color: #fff;
    margin-bottom: 12px;
}

.bento-card p {
    font-size: 13.5px;
    color: var(--text2);
    line-height: 1.8;
    font-weight: 300;
}

/* Large card extras */
.bento-card.large .bento-big-num {
    font-family: var(--font-display);
    font-size: 96px;
    color: var(--red);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -2px;
}

.bento-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--red-dim);
    border: 0.5px solid rgba(255, 45, 78, 0.2);
    border-radius: 100px;
    padding: 4px 14px;
    font-size: 11px;
    color: rgba(255, 120, 120, 0.9);
    font-family: var(--font-mono);
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

/* ══════════════════════════════════════════════════
   REQUIREMENTS — TICKER STYLE
══════════════════════════════════════════════════ */
.reqs-section {
    background: var(--bg1);
}

.reqs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.req-card {
    background: var(--bg);
    border: 0.5px solid var(--border);
    border-radius: 4px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: border-color 0.3s;
    cursor: none;
}

.req-card:hover {
    border-color: rgba(255, 45, 78, 0.3);
}

.req-overline {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--text3);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.req-big {
    font-family: var(--font-display);
    font-size: 64px;
    color: #fff;
    line-height: 1;
    letter-spacing: -1px;
    margin-bottom: 12px;
}

.req-big em {
    color: var(--red);
    font-style: normal;
}

.req-card h4 {
    font-family: var(--font-display);
    font-size: 20px;
    letter-spacing: 0.3px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 14px;
}

.req-card p {
    font-size: 13px;
    color: var(--text3);
    line-height: 1.75;
    font-weight: 300;
}

.req-bar {
    width: 100%;
    height: 1px;
    background: var(--border);
    margin: 24px 0;
    position: relative;
    overflow: hidden;
}

.req-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: var(--red);
    transition: width 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.req-card.visible .req-bar::after {
    width: var(--fill, 60%);
}

/* ══════════════════════════════════════════════════
   TESTIMONIALS — DIAGONAL LAYOUT
══════════════════════════════════════════════════ */
.testi-section {
    background: var(--bg);
    overflow: hidden;
    position: relative;
}

.testi-section::before {
    content: '';
    position: absolute;
    left: -300px;
    top: 50%;
    transform: translateY(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 45, 78, 0.05) 0%, transparent 70%);
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.testi-card {
    background: var(--bg2);
    border: 0.5px solid var(--border);
    border-radius: 4px;
    padding: 36px 32px;
    position: relative;
    transition: border-color 0.3s, transform 0.4s;
    cursor: none;
}

.testi-card:hover {
    border-color: var(--border-hi);
    transform: translateY(-6px);
}

.testi-card:nth-child(even) {
    margin-top: 32px;
}

.testi-quote {
    font-family: var(--font-display);
    font-size: 48px;
    color: var(--red);
    line-height: 1;
    margin-bottom: 20px;
    opacity: 0.6;
}

.testi-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.85;
    font-weight: 300;
    margin-bottom: 28px;
}

.testi-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 28px;
}

.testi-rating span {
    width: 6px;
    height: 6px;
    background: var(--red);
    border-radius: 50%;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 0.5px solid var(--border);
    padding-top: 20px;
}

.testi-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red) 0%, var(--orange) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 18px;
    color: #fff;
    flex-shrink: 0;
}

.testi-name {
    font-weight: 500;
    font-size: 14px;
    color: #fff;
    margin-bottom: 2px;
}

.testi-handle {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text3);
}

/* ══════════════════════════════════════════════════
   MANAGERS
══════════════════════════════════════════════════ */
.mgr-section {
    background: var(--bg1);
}

.mgr-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.mgr-card {
    background: var(--bg);
    border: 0.5px solid var(--border);
    border-radius: 4px;
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s;
}

.mgr-card:hover {
    border-color: rgba(255, 45, 78, 0.25);
}

.mgr-card-tag {
    font-family: var(--font-display);
    font-size: 56px;
    color: rgba(254, 47, 79, 1) !important;
    line-height: 1;
    margin-bottom: 20px;
}

.mgr-card h4 {
    font-family: var(--font-display);
    font-size: 22px;
    letter-spacing: 0.3px;
    color: #fff;
    margin-bottom: 12px;
}

.mgr-card p {
    font-size: 13.5px;
    color: var(--text2);
    line-height: 1.8;
    font-weight: 300;
}

.mgr-card-icon {
    width: 40px;
    height: 40px;
    border: 0.5px solid var(--border-hi);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.mgr-card-icon i {
    font-size: 18px;
    color: var(--text2);
}

/* ══════════════════════════════════════════════════
   FORM SECTION
══════════════════════════════════════════════════ */
.form-section {
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

.form-section::before {
    content: '';
    position: absolute;
    right: -100px;
    top: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 45, 78, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.form-inner {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 100px);
    align-items: start;
}

.form-info {}

.form-info .perks {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 40px;
}

.perk {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    color: var(--text2);
    font-weight: 300;
}

.perk-dot {
    width: 4px;
    height: 4px;
    background: var(--red);
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-blk {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text2);
}

.contact-row .ci {
    width: 32px;
    height: 32px;
    border: 0.5px solid var(--border-hi);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* Form card */
.form-card {
    background: var(--bg2);
    border: 0.5px solid var(--border);
    border-radius: 4px;
    padding: clamp(28px, 4vw, 52px);
}

.form-card h3 {
    font-family: var(--font-display);
    font-size: 36px;
    letter-spacing: 0.3px;
    color: #fff;
    margin-bottom: 6px;
}

.form-subtitle {
    font-size: 13px;
    color: var(--text3);
    margin-bottom: 32px;
    font-weight: 300;
}

.field {
    margin-bottom: 20px;
}

.field label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    color: var(--text3);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    background: var(--bg);
    border: 0.5px solid var(--border);
    border-radius: 2px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-family: var(--font-body);
    font-weight: 300;
    padding: 13px 16px;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: rgba(255, 45, 78, 0.4);
    box-shadow: 0 0 0 3px rgba(255, 45, 78, 0.06);
}

.field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.3)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: none;
}

.field select option {
    background: #1a1a22;
    color: #fff;
}

.field textarea {
    resize: vertical;
    min-height: 110px;
    line-height: 1.7;
}

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.field-row .field {
    margin-bottom: 0;
}

.submit-btn {
    width: 100%;
    background: var(--red);
    color: #fff;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 16px;
    border: none;
    border-radius: 2px;
    cursor: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
    transition: box-shadow 0.3s, transform 0.2s;
}

.submit-btn:hover {
    box-shadow: 0 0 30px rgba(255, 45, 78, 0.4);
    transform: translateY(-1px);
}

.form-note {
    font-size: 11px;
    color: var(--text3);
    text-align: center;
    margin-top: 16px;
    line-height: 1.6;
    font-family: var(--font-mono);
}

/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
.footer {
    background: var(--bg1);
    border-top: 0.5px solid var(--border);
    padding: 48px var(--px) 32px;
}

.footer-inner {
    max-width: var(--max);
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: start;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 0.5px solid var(--border);
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 40px;
    color: rgba(255, 255, 255, 0.2);
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.footer-logo em {
    color: var(--red);
    font-style: normal;
    opacity: 0.7;
}

.footer-tagline {
    font-size: 13px;
    color: var(--text3);
    font-weight: 300;
}

.footer-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.footer-links a {
    font-size: 13px;
    color: var(--text3);
    transition: color 0.2s;
    letter-spacing: 0.3px;
}

.footer-links a:hover {
    color: var(--text2);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copy {
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.15);
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    width: 32px;
    height: 32px;
    border: 0.5px solid var(--border);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text3);
    font-size: 13px;
    transition: border-color 0.2s, color 0.2s;
}

.footer-social a:hover {
    border-color: var(--border-hi);
    color: #fff;
}

/* ══════════════════════════════════════════════════
   MOBILE MENU
══════════════════════════════════════════════════ */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 490;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    transform: translateY(-100%);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-menu.open {
    transform: translateY(0);
}

.mobile-menu a {
    font-family: var(--font-display);
    font-size: 48px;
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 2px;
    transition: color 0.2s;
}

.mobile-menu a:hover {
    color: #fff;
}

/*EXTRAS*/

.hero-actions--text {
    display: none;
}

.hero-actions--visual {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    pointer-events: all;
}

.tiktok-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    justify-items: center;
    align-items: start;
}

.tiktok-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
}

.tiktok-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tiktok-card {
    width: 100%;
    max-width: 340px;
    border-radius: 6px;
    overflow: hidden;
    border: 0.5px solid var(--border);
    background: var(--bg2);
    transition: border-color 0.3s, transform 0.4s;
}

.tiktok-card:hover {
    border-color: rgba(255, 45, 78, 0.3);
    transform: translateY(-4px);
}

.tiktok-thumb {
    position: relative;
    aspect-ratio: 9 / 16;
    overflow: hidden;
}

.tiktok-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(6, 6, 8, 0.75);
    border: 0.5px solid var(--border-hi);
    border-radius: 3px;
    padding: 5px 10px;
    font-family: var(--font-mono);
    font-size: 9px;
    color: var(--text2);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.tiktok-label {
    padding: 16px 18px 18px;
    background: var(--bg2);
    border-top: 0.5px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.tiktok-tag {
    font-family: var(--font-mono);
    font-size: 9px;
    color: var(--red);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.tiktok-name {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--text);
    letter-spacing: 0.5px;
    line-height: 1;
}

.tiktok-handle {
    font-size: 12px;
    color: var(--text3);
    font-weight: 300;
    margin-top: 2px;
}

/* ══════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════ */
@media (min-width: 1600px) {
    :root {
        --max: 1600px;
    }

    .hero h1 {
        font-size: clamp(100px, 8vw, 160px);
    }

    .hero-desc {
        max-width: 560px;
        font-size: 17px;
    }

    .hero-inner {
        grid-template-columns: 1fr 32%;
    }

    .hero-visual {
        max-width: 420px;
    }
}

@media (min-width: 1800px) {
    .hero h1 {
        font-size: clamp(120px, 10vw, 200px);
    }

    .hero-visual {
        max-width: 500px;
        margin-left: auto;
    }

    .hero-inner {
        grid-template-columns: 1fr 35%;
    }
}

@media (min-width: 2000px) {
    :root {
        --max: 1900px;
    }

    .hero h1 {
        font-size: clamp(120px, 7vw, 180px);
    }

    .hero-desc {
        max-width: 640px;
        font-size: 18px;
    }

    .hero-inner {
        grid-template-columns: 1fr 30%;
    }
}

@media (max-width: 1100px) {
    .bento-card:nth-child(1) {
        grid-column: 1 / 4;
    }

    .bento-card:nth-child(2) {
        grid-column: 4 / 7;
    }

    .bento-card:nth-child(3),
    .bento-card:nth-child(4),
    .bento-card:nth-child(5) {
        grid-column: span 2;
    }

    .bento-card:nth-child(6) {
        grid-column: 1 / 4;
    }
}

@media (max-width: 900px) {
    body {
        cursor: auto;
    }

    .cursor,
    .cursor-ring {
        display: none;
    }

    .nav-links {
        display: none;
    }

    .nav-burger {
        display: flex;
        background: none;
        border: none;
        cursor: pointer;
        flex-direction: column;
        gap: 5px;
        padding: 4px;
    }

    .nav-burger span {
        width: 22px;
        height: 1px;
        background: #fff;
        transition: all 0.3s;
        display: block;
    }

    .hero {
        justify-content: flex-end;
        padding-top: 25px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 0;
    }

    .hero-text-content {
        order: 2;
        align-self: auto;
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .hero-visual {
        order: 1;
        position: relative;
        width: 80%;
        margin: 0 auto;
        align-self: auto;
    }

    .hero-video {
        max-height: 55vw;
    }

    .hero-actions--visual {
        display: none;
    }

    .hero-actions--text {
        position: static !important;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-top: 8px !important;
        width: 100%;
        pointer-events: all;
    }

    .hero-actions--text .btn-fire {
        width: 80%;
        justify-content: center;
    }

    .hero-desc {
        margin-top: 12px;
        margin-bottom: 0;
    }

    .hero-scroll {
        left: auto;
        right: var(--px);
        transform: none;
        padding-bottom: 10px;
    }

    .tiktok-grid {
        grid-template-columns: 1fr;
    }

    .tiktok-card {
        max-width: 320px;
    }



    .steps-wrap {
        grid-template-columns: 1fr;
    }

    .step-card {
        border-left: none;
        border-top: 0.5px solid var(--border);
    }

    .step-card:first-child {
        border-top: none;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-card:nth-child(n) {
        grid-column: 1 / -1;
    }

    .reqs-grid {
        grid-template-columns: 1fr;
    }

    .testi-grid {
        grid-template-columns: 1fr;
    }

    .testi-card:nth-child(even) {
        margin-top: 0;
    }

    .mgr-grid {
        grid-template-columns: 1fr;
    }

    .form-inner {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .nav-cta {
        display: none;
    }

    .hero h1 {
        font-size: clamp(56px, 16vw, 90px);
    }

    .hero-visual {
        width: 70%;
    }

    .hero-video {
        max-height: 45vw;
    }

    .field-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 430px) {
    .hero-visual {
        width: 65%;
    }

    .hero-video {
        max-height: 40vw;
    }

    .hero-desc {
        margin-top: 8px;
        margin-bottom: 8px;
        font-size: 13px;
    }

    .hero-actions--text {
        margin-top: 8px !important;
        gap: 10px;
    }

    .hero-actions--text .btn-fire {
        padding: 14px 24px;
        font-size: 14px;
    }
}