/* ==========================================================================
   First Grow — Home (exact rebuild)
   Bootstrap 4 grid + custom theme layer
   ========================================================================== */

:root {
    --surface: #02161e;
    --surface-container-lowest: #001018;
    --surface-container: #0e222b;
    --surface-bright: #293c45;

    --on-surface: #d1e6f2;
    --on-surface-variant: #c2caaf;

    --outline: #8c947b;
    --outline-variant: #424935;

    --primary: #b1f72f;
    /* neon lime */
    --primary-dim: #97da00;
    --on-primary: #223600;

    --tertiary: #7df4ff;
    /* cyber cyan */

    --font-display: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    --container-max: 1440px;
    --gutter: 24px;
    --margin-desktop: 64px;
    --margin-mobile: 20px;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    background-color: var(--surface);
}

body {
    font-family: var(--font-body);
    color: var(--on-surface);
    overscroll-behavior: none;
    overflow-x: hidden;
}

body,
button,
a {
    cursor: none;
}

@media (max-width: 991.98px) {

    body,
    button,
    a {
        cursor: auto;
    }
}

::-webkit-scrollbar {
    display: none;
}

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

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

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    font-size: 20px;
    line-height: 1;
}

.container {
    max-width: var(--container-max);
}

/* -------------------------------------------------------------------------
   Custom cursor
   ------------------------------------------------------------------------- */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    border: 1px solid var(--primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 200;
    transform: translate3d(-50%, -50%, 0);
    transition: width .2s ease, height .2s ease, background-color .2s ease, border-color .2s ease;
    mix-blend-mode: screen;
}

.custom-cursor.is-active {
    width: 48px;
    height: 48px;
    background: rgba(177, 247, 47, 0.2);
    border-color: transparent;
}

.custom-cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 200;
    transform: translate3d(-50%, -50%, 0);
    mix-blend-mode: screen;
}

@media (max-width: 991.98px) {

    .custom-cursor,
    .custom-cursor-dot {
        display: none;
    }
}

/* -------------------------------------------------------------------------
   Header / glass nav
   ------------------------------------------------------------------------- */
.site-header {
    position: fixed;
    top: 8px;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 var(--margin-mobile);
}

.header-logo {
    width: 200px;
    padding: 15px;
}

@media (max-width: 992px) {
    .header-logo {
        width: 140px;
        padding: 5px;
    }
}

@media (min-width: 992px) {
    .site-header {
        padding: 0 var(--margin-desktop);
    }
}

.glass-nav {
    max-width: var(--container-max);
    margin: 0 auto;
    height: 80px;
    padding: 0 var(--gutter);
    background: rgba(2, 22, 30, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    border-radius: 0;
}

.brand-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 24px;
    color: var(--primary);
    letter-spacing: -0.01em;
}

.navbar-nav .nav-link {
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--on-surface-variant);
    padding: 8px 16px !important;
    transition: color .2s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary);
}

.navbar-nav .nav-link.is-active {
    color: var(--primary-dim);
    font-weight: 700;
}

.navbar-toggler {
    border: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.navbar-toggler .toggler-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary);
}

.nav-right-group {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1 1 auto;
    gap: 32px;
}

.avatar-btn {
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
    background: var(--primary);
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.avatar-btn .material-symbols-outlined {
    color: var(--on-primary);
    font-size: 18px;
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background: var(--surface-container);
        border: 1px solid var(--outline-variant);
        margin-top: 12px;
        padding: 8px;
    }

    .nav-right-group {
        display: block;
    }

    .navbar-nav {
        display: block;
        width: 100%;
    }

    .navbar-nav .nav-link {
        padding: 14px 12px !important;
        border-bottom: 1px solid var(--outline-variant);
    }

    .navbar-nav .nav-item:last-child .nav-link {
        border-bottom: none;
    }
}

/* -------------------------------------------------------------------------
   Hero
   ------------------------------------------------------------------------- */
.hero {
    position: relative;
    width: 100%;
    min-height: 921px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 128px var(--margin-mobile) 80px;
}

@media (min-width: 768px) {
    .hero {
        padding: 128px var(--margin-desktop) 80px;
    }
}

.hero-shader {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    mix-blend-mode: screen;
    pointer-events: none;
    z-index: 0;
}

.hero-shader canvas {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    opacity: 0.7;
    mix-blend-mode: lighten;
    pointer-events: none;
    z-index: 0;
}

@media (min-width: 768px) {
    .hero-orb {
        width: 1000px;
        height: 1000px;
    }
}

.hero-vignette {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(ellipse at center, rgba(177, 247, 47, 0.05) 0%, rgba(2, 22, 30, 0.8) 55%, var(--surface) 100%);
}

.hero-ghost {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.5);
    width: 100%;
    text-align: center;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    mix-blend-mode: overlay;
    user-select: none;
}

.hero-ghost h1 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 96px;
    letter-spacing: -0.04em;
    color: rgba(41, 60, 69, 0.3);
    white-space: nowrap;
    margin: 0;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-family: var(--font-mono);
    font-size: 14px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 32px;
}

.eyebrow .rule {
    width: 48px;
    height: 1px;
    background: rgba(177, 247, 47, 0.5);
}

.hero-headline {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--on-surface);
    margin-bottom: 48px;
}

@media (min-width: 768px) {
    .hero-headline {
        font-size: 40px;
    }
}

@media (min-width: 992px) {
    .hero-headline {
        font-size: 56px;
    }
}

.accent-gradient {
    background: linear-gradient(90deg, var(--primary), var(--tertiary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

@media (min-width: 576px) {
    .hero-actions {
        flex-direction: row;
        justify-content: center;
    }
}

.btn-neon-primary,
.btn-neon-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: 100%;
    padding: 16px 20px;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.05em;
    border-radius: 0;
    white-space: normal;
    text-align: center;
    transition: box-shadow .3s ease, background-color .3s ease;
}

@media (min-width: 400px) {

    .btn-neon-primary,
    .btn-neon-outline {
        white-space: nowrap;
        font-size: 12px;
        padding: 16px 24px;
    }
}

@media (min-width: 576px) {

    .btn-neon-primary,
    .btn-neon-outline {
        font-size: 14px;
        letter-spacing: 0.08em;
        padding: 16px 32px;
    }
}

.btn-neon-primary {
    background: var(--primary);
    color: var(--on-primary);
    border: none;
}

.btn-neon-primary:hover {
    box-shadow: 0 0 30px rgba(177, 247, 47, 0.3);
    color: var(--on-primary);
}

.btn-neon-primary .material-symbols-outlined {
    font-size: 18px;
    transition: transform .2s ease;
}

.btn-neon-primary:hover .material-symbols-outlined {
    transform: translateX(4px);
}

.btn-neon-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-neon-outline:hover {
    background: rgba(177, 247, 47, 0.1);
    box-shadow: 0 0 20px rgba(177, 247, 47, 0.15);
    color: var(--primary);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
}

.btn-neon-outline:hover .pulse-dot {
    animation: pulseDot 1s ease-out infinite;
}

@keyframes pulseDot {
    0% {
        box-shadow: 0 0 0 0 rgba(177, 247, 47, .6);
    }

    100% {
        box-shadow: 0 0 0 10px rgba(177, 247, 47, 0);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.5;
    z-index: 10;
}

.scroll-indicator span {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--on-surface-variant);
    writing-mode: vertical-rl;
}

.scroll-indicator i {
    display: block;
    width: 1px;
    height: 48px;
    background: linear-gradient(var(--on-surface-variant), transparent);
}

/* -------------------------------------------------------------------------
   Intro Split Section (Text + Video)
   ------------------------------------------------------------------------- */
.intro-split {
    position: relative;
    z-index: 20;
    padding: 90px 20px;
    background: radial-gradient(circle at 82% 45%, rgba(177, 247, 47, 0.05) 0%, transparent 45%),
        radial-gradient(circle at 18% 55%, rgba(125, 244, 255, 0.04) 0%, transparent 45%),
        var(--surface);
    overflow: hidden;
}

.intro-split::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(177, 247, 47, 0.3), rgba(125, 244, 255, 0.2), transparent);
}

.intro-split::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(125, 244, 255, 0.15), transparent);
}

@media (min-width: 768px) {
    .intro-split {
        padding: 110px 40px;
    }
}

@media (min-width: 1200px) {
    .intro-split {
        padding: 120px 64px;
    }
}

.intro-split .container-fluid,
.intro-split>.container {
    max-width: 1400px;
    margin: 0 auto;
}

.intro-split-row {
    align-items: center;
    row-gap: 50px;
}

/* ── Left: text ── */
.intro-split-text {
    padding-right: 0;
}

@media (min-width: 992px) {
    .intro-split-text {
        padding-right: 50px;
    }
}

.intro-split .eyebrow-mini .accent-lime {
    color: var(--primary);
}

.intro-split-heading {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(38px, 4.5vw, 62px);
    line-height: 1.06;
    color: #fff;
    margin: 14px 0 24px;
    letter-spacing: -0.025em;
}

.intro-split-desc {
    font-family: var(--font-body);
    font-size: 15.5px;
    line-height: 1.85;
    color: var(--on-surface-variant);
    margin: 0 0 36px;
    max-width: 540px;
}

/* ── Left: Feature Cards ── */
.intro-feat-cards {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.intro-feat-card {
    flex: 1 1 0;
    min-width: 140px;
    background: rgba(4, 24, 32, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 12px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.28s ease,
        background 0.28s ease,
        box-shadow 0.28s ease;
}

.intro-feat-card:hover {
    transform: translateY(-2px);
    background: rgba(8, 32, 42, 0.88);
    border-color: rgba(177, 247, 47, 0.4);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
}

.intro-feat-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.intro-feat-icon.lime {
    background: rgba(177, 247, 47, 0.12);
    color: var(--primary);
}

.intro-feat-icon.cyan {
    background: rgba(125, 244, 255, 0.12);
    color: var(--tertiary);
}

.intro-feat-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.intro-feat-title {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.intro-feat-sub {
    font-family: var(--font-body);
    font-size: 11px;
    color: var(--on-surface-variant);
    line-height: 1.35;
    margin-top: 2px;
    white-space: nowrap;
}

@media (max-width: 575px) {
    .intro-feat-cards {
        flex-direction: column;
    }

    .intro-feat-card {
        min-width: 100%;
    }
}

/* ── Right: Video Frame (Testimonial Player Style) ── */
.intro-split-video-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-video-ts {
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(177, 247, 47, 0.15);
}

.intro-video-ts:hover {
    border-color: rgba(177, 247, 47, 0.7);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.75), 0 0 30px rgba(177, 247, 47, 0.2);
}

/* -------------------------------------------------------------------------
   Stats section
   ------------------------------------------------------------------------- */
.stats-section {
    position: relative;
    z-index: 20;
    background: var(--surface);
    padding: 128px var(--margin-mobile);
}

@media (min-width: 768px) {
    .stats-section {
        padding: 128px var(--margin-desktop);
    }
}

.eyebrow-mini {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--on-surface-variant);
    margin-bottom: 16px;
}

.stats-heading {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 24px;
    color: var(--on-surface);
    margin-bottom: 64px;
}

.stat-grid {
    row-gap: var(--gutter);
}

.stat-grid>[class*="col-"] {
    padding-left: 12px;
    padding-right: 12px;
}

.stat-card {
    position: relative;
    background: var(--surface-container);
    padding: 32px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(66, 73, 53, 0.3);
    transition: box-shadow .5s ease;
}

.stat-card:hover {
    box-shadow: inset 0 0 0 1px var(--primary), 0 0 40px rgba(177, 247, 47, 0.1);
}

.stat-card--cyan:hover {
    box-shadow: inset 0 0 0 1px var(--tertiary), 0 0 40px rgba(125, 244, 255, 0.1);
}

.scanline {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(transparent 50%, rgba(0, 0, 0, 0.25) 50%);
    background-size: 100% 4px;
    opacity: 0;
    transition: opacity .3s ease;
    pointer-events: none;
}

.stat-card:hover .scanline {
    opacity: 1;
}

.glow-source {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 50%;
    background: rgba(177, 247, 47, 0.05);
    filter: blur(40px);
    opacity: 0;
    transition: opacity .7s ease;
    pointer-events: none;
}

.stat-card--cyan .glow-source {
    background: rgba(125, 244, 255, 0.05);
}

.stat-card:hover .glow-source {
    opacity: 1;
}

.stat-number {
    position: relative;
    z-index: 1;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 40px;
    letter-spacing: -0.02em;
    color: var(--primary);
    margin-bottom: 8px;
    filter: drop-shadow(0 0 15px rgba(177, 247, 47, 0.4));
}

.stat-card--cyan .stat-number {
    color: var(--tertiary);
    filter: drop-shadow(0 0 15px rgba(125, 244, 255, 0.4));
}

.stat-label {
    position: relative;
    z-index: 1;
    font-family: var(--font-mono);
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--on-surface-variant);
}

.corner {
    position: absolute;
    width: 8px;
    height: 8px;
    border-color: var(--primary);
    opacity: 0;
    transition: opacity .2s ease;
}

.stat-card--cyan .corner {
    border-color: var(--tertiary);
}

.corner-tl {
    top: 0;
    left: 0;
    border-top: 1px solid;
    border-left: 1px solid;
}

.corner-br {
    bottom: 0;
    right: 0;
    border-bottom: 1px solid;
    border-right: 1px solid;
}

.stat-card:hover .corner {
    opacity: 1;
}

/* -------------------------------------------------------------------------
   Why First Grow
   ------------------------------------------------------------------------- */
.why-section {
    position: relative;
    z-index: 20;
    background: var(--surface);
    padding: 96px var(--margin-mobile) 120px;
}

@media (min-width: 768px) {
    .why-section {
        padding: 120px var(--margin-desktop) 160px;
    }
}

.why-intro {
    max-width: 780px;
    margin: 0 auto 96px;
    text-align: center;
}

.why-title {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 38px;
    letter-spacing: -0.02em;
    color: var(--on-surface);
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .why-title {
        font-size: 56px;
    }
}

.why-subtitle {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 20px;
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
    padding-bottom: 6px;
    margin-bottom: 28px;
}

@media (min-width: 768px) {
    .why-subtitle {
        font-size: 26px;
    }
}

.why-lead {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 16px;
    color: var(--on-surface);
    margin-bottom: 12px;
}

@media (min-width: 768px) {
    .why-lead {
        font-size: 18px;
    }
}

.why-desc {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: var(--on-surface-variant);
    margin-bottom: 0;
}

/* ---- Timeline ---- */
.why-timeline {
    position: relative;
    padding: 35px 0px;
}

.why-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    transform: translateX(-200%);
    background: rgba(140, 148, 123, 0.28);
    z-index: 2;
}

.why-line-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 210px;
    background: linear-gradient(180deg, var(--primary), rgba(177, 247, 47, 0));
    box-shadow: 0 0 8px rgba(177, 247, 47, 0.6);
}

.why-row {
    position: relative;
    display: flex;
    align-items: center;
    z-index: 1;
}

.why-row+.why-row {
    margin-top: 76px;
}

.why-row--reverse {
    flex-direction: row;
}

.why-col {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
}

.why-row .why-col:first-child {
    justify-content: flex-end;
    padding-right: 64px;
    padding-top: 20px;
}

.why-row .why-col:last-child {
    justify-content: flex-start;
    padding-left: 64px;
}

.why-col>* {
    width: 100%;
    max-width: 400px;
}

.why-marker {
    position: relative;
    flex: 0 0 auto;
    width: 0;
    align-self: stretch;
}

.why-num {
    position: absolute;
    top: -6px;
    left: 50%;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 54px;
    letter-spacing: -0.02em;
    line-height: 1;
    color: rgba(41, 60, 69, 0.85);
    white-space: nowrap;
    user-select: none;
    z-index: 1;
}

.left-box-num {
    transform: translateX(-200%);
}

.right-box-num {
    transform: translateX(90%);
}

.why-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-65%, -65%);
    width: 11px;
    height: 11px;
    border: 2px solid var(--primary);
    background: var(--surface);
    z-index: 3;
    box-shadow: 0 0 10px rgba(177, 247, 47, 0.5);
}

.why-dot--cyan {
    border-color: var(--tertiary);
    box-shadow: 0 0 10px rgba(125, 244, 255, 0.5);
}

/* ---- Text card ---- */
.why-card {
    background: var(--surface-container);
    padding: 34px 40px;
    transition: box-shadow .4s ease, transform .4s ease;
}

.why-card--right {
    text-align: right;
}

.why-card:hover {
    box-shadow: inset 0 0 0 1px rgba(177, 247, 47, 0.35), 0 0 40px rgba(0, 0, 0, 0.4);
}

.why-row--reverse .why-card:hover {
    box-shadow: inset 0 0 0 1px rgba(125, 244, 255, 0.35), 0 0 40px rgba(0, 0, 0, 0.4);
}

.why-card h3 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 24px;
    letter-spacing: -0.01em;
    color: #ffffff;
    margin: 0 0 12px;
}

@media (min-width: 992px) {
    .why-card h3 {
        font-size: 26px;
    }
}

.why-card-kicker {
    display: block;
    font-family: var(--font-mono);
    font-size: 12px;
    line-height: 1.6;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
}

.why-card-kicker--cyan {
    color: var(--tertiary);
}

/* ---- Media panel ---- */
.why-media {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #070d11;
    overflow: hidden;
}

@supports not (aspect-ratio: 16 / 9) {
    .why-media {
        height: 0;
        padding-bottom: 56.25%;
    }

    .why-media .why-illo {
        position: absolute;
        top: 0;
        left: 0;
    }
}

.why-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0) 30%, rgba(3, 10, 14, 0.75) 100%);
    pointer-events: none;
}

.why-illo {
    display: block;
    width: 100%;
    height: 100%;
}

.illo-bg {
    fill: #080f14;
}

.illo-soft {
    stroke: rgba(209, 230, 242, 0.22);
    stroke-width: 1;
}

.illo-web line {
    stroke: rgba(209, 230, 242, 0.13);
    stroke-width: 0.8;
}

.illo-grid-lines line {
    stroke: rgba(209, 230, 242, 0.07);
    stroke-width: 1;
}

.illo-flare line {
    stroke: rgba(209, 230, 242, 0.16);
    stroke-width: 0.8;
}

.illo-dots circle {
    fill: rgba(226, 240, 248, 0.55);
}

.illo-bars rect {
    fill: rgba(209, 230, 242, 0.14);
}

.illo-line {
    stroke: rgba(226, 240, 248, 0.6);
    stroke-width: 1.4;
}

.illo-halo {
    fill: rgba(177, 247, 47, 0.022);
}

.illo-hot {
    fill: #eafcd0;
    filter: drop-shadow(0 0 6px rgba(177, 247, 47, 0.9));
}

.illo-hot--cyan {
    fill: #dcfaff;
    filter: drop-shadow(0 0 6px rgba(125, 244, 255, 0.9));
}

.illo-mark {
    stroke: #e4ffb8;
    filter: drop-shadow(0 0 10px rgba(177, 247, 47, 0.75));
}

.illo-reflect path {
    stroke: rgba(177, 247, 47, 0.14);
}

/* ---- Mobile ---- */
@media (max-width: 767.98px) {
    .why-intro {
        margin-bottom: 56px;
    }

    .why-line {
        display: none;
    }

    .why-row,
    .why-row--reverse {
        flex-direction: column;
        align-items: stretch;
    }

    .why-row+.why-row {
        margin-top: 48px;
    }

    .why-row .why-col:first-child,
    .why-row .why-col:last-child {
        padding: 0;
        justify-content: stretch;
    }

    .why-col>* {
        max-width: none;
    }

    .why-marker {
        width: auto;
        align-self: flex-start;
        height: 30px;
        margin-bottom: 14px;
        order: 1;
    }

    /* number, then text card, then media - on every row */
    .why-row .why-col:first-child {
        order: 2;
    }

    .why-row .why-col:last-child {
        order: 3;
    }

    .why-row--reverse .why-col:first-child {
        order: 3;
        margin-top: 20px;
    }

    .why-row--reverse .why-col:last-child {
        order: 2;
    }

    .why-row:not(.why-row--reverse) .why-col:last-child {
        margin-top: 20px;
    }

    .why-num {
        position: static;
        transform: none;
        display: inline-block;
        font-size: 28px;
        vertical-align: middle;
        color: rgba(41, 60, 69, 1);
    }

    .why-dot {
        position: static;
        transform: none;
        display: inline-block;
        margin-left: 12px;
        vertical-align: middle;
    }

    .why-card {
        padding: 26px 24px;
    }

    .why-card--right {
        text-align: left;
    }

    .why-card h3 {
        font-size: 21px;
    }
}

/* -------------------------------------------------------------------------
   What You Get
   ------------------------------------------------------------------------- */
.wyg-section {
    position: relative;
    z-index: 20;
    background: var(--surface);
    padding: 40px var(--margin-mobile) 120px;
}

@media (min-width: 768px) {
    .wyg-section {
        padding: 40px var(--margin-desktop) 160px;
    }
}

.wyg-head {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 64px;
}

.wyg-eyebrow {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 18px;
}

.wyg-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 34px;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin-bottom: 22px;
}

@media (min-width: 768px) {
    .wyg-title {
        font-size: 46px;
    }
}

.wyg-subtitle {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 17px;
    line-height: 1.5;
    color: var(--on-surface);
    margin-bottom: 14px;
}

@media (min-width: 768px) {
    .wyg-subtitle {
        font-size: 21px;
    }
}

.wyg-desc {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: var(--on-surface-variant);
    margin-bottom: 0;
}

.wyg-grid {
    row-gap: var(--gutter);
}

.wyg-grid>[class*="col-"] {
    padding-left: 12px;
    padding-right: 12px;
}

@media (max-width: 991.98px) {
    .wyg-grid>[class*="col-"]+[class*="col-"] {
        margin-top: var(--gutter);
    }
}

.wyg-card {
    position: relative;
    height: 100%;
    background: var(--surface-container);
    border: 1px solid rgba(66, 73, 53, 0.45);
    border-radius: 14px;
    padding: 32px 28px;
    overflow: hidden;
    transition: border-color .4s ease, box-shadow .4s ease, transform .4s ease;
}

.wyg-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, rgba(177, 247, 47, 0), rgba(177, 247, 47, 0.45), rgba(177, 247, 47, 0));
    opacity: 0;
    transition: opacity .4s ease;
}

.wyg-card:hover {
    border-color: rgba(177, 247, 47, 0.45);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45), 0 0 40px rgba(177, 247, 47, 0.06);
    transform: translateY(-4px);
}

.wyg-card:hover::before {
    opacity: 1;
}

.wyg-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 26px;
}

.wyg-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 11px;
    background: rgba(177, 247, 47, 0.1);
    border: 1px solid rgba(177, 247, 47, 0.25);
    transition: background-color .4s ease, box-shadow .4s ease;
}

.wyg-svg {
    width: 23px;
    height: 23px;
    color: var(--primary);
    filter: drop-shadow(0 0 8px rgba(177, 247, 47, 0.4));
}

.wyg-card:hover .wyg-icon {
    background: rgba(177, 247, 47, 0.18);
    box-shadow: 0 0 22px rgba(177, 247, 47, 0.18);
}

.wyg-index {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 22px;
    line-height: 1;
    color: var(--surface-bright);
    user-select: none;
}

.wyg-card-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 22px;
    letter-spacing: -0.01em;
    color: #ffffff;
    margin: 0 0 14px;
}

.wyg-card-text {
    font-family: var(--font-body);
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--on-surface-variant);
    margin: 0 0 24px;
}

.wyg-list {
    list-style: none;
    margin: 0;
    padding: 22px 0 0;
    border-top: 1px solid rgba(66, 73, 53, 0.45);
}

.wyg-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--on-surface);
}

.wyg-list li+li {
    margin-top: 12px;
}

.wyg-check {
    flex: 0 0 auto;
    width: 14px;
    height: 14px;
    color: var(--primary);
}

/* -------------------------------------------------------------------------
   Our Works (portfolio)
   ------------------------------------------------------------------------- */
.ow-section {
    position: relative;
    z-index: 20;
    background: var(--surface);
    padding: 40px var(--margin-mobile) 120px;
}

@media (min-width: 768px) {
    .ow-section {
        padding: 40px var(--margin-desktop) 160px;
    }
}

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

.ow-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--tertiary);
    margin-bottom: 20px;
}

.ow-rule {
    display: block;
    width: 34px;
    height: 1px;
    background: var(--tertiary);
    opacity: .7;
}

.ow-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 36px;
    letter-spacing: 0.01em;
    color: #ffffff;
    margin-bottom: 18px;
}

@media (min-width: 768px) {
    .ow-title {
        font-size: 54px;
    }
}

.ow-title span {
    color: var(--primary);
    text-shadow: 0 0 26px rgba(177, 247, 47, 0.55), 0 0 60px rgba(177, 247, 47, 0.22);
}

.ow-tagline {
    font-family: var(--font-mono);
    font-size: 13px;
    letter-spacing: 0.06em;
    color: var(--on-surface-variant);
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .ow-tagline {
        font-size: 15px;
    }
}

.ow-caret {
    display: inline-block;
    width: 8px;
    height: 1em;
    margin-left: 4px;
    border-bottom: 2px solid var(--primary);
    vertical-align: -2px;
    animation: owBlink 1.1s steps(1) infinite;
}

@keyframes owBlink {

    0%,
    49% {
        opacity: 1;
    }

    50%,
    100% {
        opacity: 0;
    }
}

/* ---- Cards ---- */
.ow-grid>[class*="col-"] {
    padding-left: 12px;
    padding-right: 12px;
}

@media (max-width: 991.98px) {
    .ow-grid>[class*="col-"]+[class*="col-"] {
        margin-top: var(--gutter);
    }
}

.ow-card {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: var(--surface-container-lowest);
    border: 1px solid rgba(66, 73, 53, 0.5);
    border-top: 2px solid var(--tertiary);
    transition: border-color .4s ease, box-shadow .4s ease, transform .4s ease;
}

.ow-card:hover {
    border-color: rgba(177, 247, 47, 0.4);
    border-top-color: var(--primary);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(177, 247, 47, 0.07);
    transform: translateY(-5px);
}

.ow-media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #05090c;
}

@supports not (aspect-ratio: 16 / 10) {
    .ow-media {
        height: 0;
        padding-bottom: 62.5%;
    }
}

.ow-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: grayscale(0.9) brightness(0.55) contrast(1.08);
    transition: filter .55s ease, transform .55s ease;
}

.ow-card:hover .ow-media img {
    filter: grayscale(0.15) brightness(0.85) contrast(1.02);
    transform: scale(1.04);
}

.ow-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(8, 15, 20, 0.35) 0%, rgba(8, 15, 20, 0) 45%, rgba(8, 15, 20, 0.85) 100%),
        radial-gradient(ellipse at center, rgba(177, 247, 47, 0.06), rgba(0, 0, 0, 0) 65%);
    pointer-events: none;
    transition: opacity .55s ease;
}

.ow-card:hover .ow-media::after {
    opacity: .65;
}

.ow-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    display: inline-block;
    padding: 5px 12px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--tertiary);
    background: rgba(6, 12, 16, 0.78);
    border: 1px solid rgba(125, 244, 255, 0.3);
    backdrop-filter: blur(4px);
}

.ow-badge i {
    font-style: normal;
    color: rgba(125, 244, 255, 0.55);
}

.ow-body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    padding: 28px 26px 26px;
}

.ow-card-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 24px;
    letter-spacing: 0.01em;
    color: #ffffff;
    margin: 0 0 14px;
}

@media (min-width: 992px) {
    .ow-card-title {
        font-size: 27px;
    }
}

.ow-card-text {
    font-family: var(--font-body);
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--on-surface-variant);
    margin: 0 0 26px;
}

.ow-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: auto;
    padding: 15px 20px;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary);
    border: 1px solid rgba(177, 247, 47, 0.35);
    background: rgba(177, 247, 47, 0.04);
    transition: background-color .35s ease, border-color .35s ease, color .35s ease;
}

.ow-cta:hover,
.ow-cta:focus {
    color: var(--on-primary);
    background: var(--primary);
    border-color: var(--primary);
    text-decoration: none;
}

.ow-arrow {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    transition: transform .35s ease;
}

.ow-cta:hover .ow-arrow {
    transform: translateX(5px);
}

/* ---- Stats strip ---- */
.ow-stats {
    margin-top: 64px;
    padding: 44px 16px;
    background: var(--surface-container);
    border: 1px solid rgba(66, 73, 53, 0.45);
}

@media (min-width: 768px) {
    .ow-stats {
        margin-top: 88px;
        padding: 52px 24px;
    }
}

.ow-stat {
    text-align: center;
    padding: 16px 8px;
}

.ow-stat-num {
    display: block;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 32px;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: #ffffff;
    margin-bottom: 10px;
    font-variant-numeric: tabular-nums;
}

@media (min-width: 768px) {
    .ow-stat-num {
        font-size: 46px;
    }
}

.ow-stat--lime .ow-stat-num {
    color: var(--primary);
    text-shadow: 0 0 22px rgba(177, 247, 47, 0.4);
}

.ow-stat-label {
    display: block;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 12.5px;
    letter-spacing: 0.02em;
    color: var(--on-surface-variant);
}

@media (min-width: 768px) {
    .ow-stat-label {
        font-size: 14px;
    }
}

/* -------------------------------------------------------------------------
   Testimonials
   ------------------------------------------------------------------------- */
.ts-section {
    position: relative;
    z-index: 20;
    background: var(--surface);
    padding: 40px var(--margin-mobile) 120px;
}

@media (min-width: 768px) {
    .ts-section {
        padding: 40px var(--margin-desktop) 160px;
    }
}

.ts-head {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 64px;
}

.ts-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 34px;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin-bottom: 18px;
}

@media (min-width: 768px) {
    .ts-title {
        font-size: 48px;
    }
}

@media (min-width: 1200px) {
    .ts-title {
        font-size: 56px;
    }
}

.ts-title span {
    display: block;
    color: var(--primary);
    text-shadow: 0 0 30px rgba(177, 247, 47, .45), 0 0 70px rgba(177, 247, 47, .18);
}

.ts-subtitle {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--on-surface-variant);
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .ts-subtitle {
        font-size: 17px;
    }
}

/* Section label with trailing rule */
.ts-label {
    display: flex;
    align-items: center;
    gap: 18px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 26px;
}

@media (min-width: 768px) {
    .ts-label {
        font-size: 20px;
    }
}

.ts-label::after {
    content: '';
    flex: 1 1 auto;
    height: 1px;
    background: linear-gradient(90deg, rgba(177, 247, 47, .5), rgba(177, 247, 47, 0));
}

/* ---- Video testimonials ---- */
.ts-videos {
    margin-bottom: 70px;
}

.ts-videos>[class*="col-"] {
    padding-left: 12px;
    padding-right: 12px;
}

@media (max-width: 991.98px) {
    .ts-videos>[class*="col-"]+[class*="col-"] {
        margin-top: var(--gutter);
    }
}

.ts-video {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid rgba(66, 73, 53, .55);
    background: var(--surface-container-lowest);
    transition: border-color .4s ease, transform .4s ease, box-shadow .4s ease;
}

.ts-video--portrait {
    aspect-ratio: 9 / 16;
    max-width: 360px;
    margin: 0 auto;
}

@supports not (aspect-ratio: 16 / 9) {
    .ts-video {
        height: 0;
        padding-bottom: 56.25%;
    }

    .ts-video--portrait {
        padding-bottom: 177%;
    }
}

.ts-video:hover {
    border-color: rgba(177, 247, 47, .5);
    transform: translateY(-4px);
    box-shadow: 0 24px 55px rgba(0, 0, 0, .5);
    text-decoration: none;
}

.ts-video--cyan:hover {
    border-color: rgba(125, 244, 255, .5);
}

/* poster area - drop an <img> in here and it fills the frame */
.ts-video-thumb {
    position: absolute;
    inset: 0;
    background-color: #070d11;
    background-image:
        linear-gradient(rgba(140, 148, 123, .06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(140, 148, 123, .06) 1px, transparent 1px);
    background-size: 28px 28px;
    overflow: hidden;
}

.ts-video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter .5s ease, transform .5s ease;
}

.ts-video:hover .ts-video-thumb img {
    transform: scale(1.04);
}

.ts-video-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 45%, rgba(177, 247, 47, .1), transparent 60%),
        linear-gradient(180deg, rgba(7, 13, 17, .25), rgba(4, 9, 12, .88));
}

.ts-video--cyan .ts-video-thumb::after {
    background:
        radial-gradient(circle at 50% 45%, rgba(125, 244, 255, .1), transparent 60%),
        linear-gradient(180deg, rgba(7, 13, 17, .25), rgba(4, 9, 12, .88));
}

.ts-video-play {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 78px;
    height: 78px;
    border-radius: 50%;
    border: 2.5px solid var(--primary);
    background: rgba(177, 247, 47, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 26px rgba(177, 247, 47, .35);
    transition: transform .35s ease, background-color .35s ease, box-shadow .35s ease;
}

.ts-video-play svg {
    width: 26px;
    height: 26px;
    color: var(--primary);
    margin-left: 4px;
}

.ts-video--cyan .ts-video-play {
    border-color: var(--tertiary);
    background: rgba(125, 244, 255, .1);
    box-shadow: 0 0 26px rgba(125, 244, 255, .35);
}

.ts-video--cyan .ts-video-play svg {
    color: var(--tertiary);
}

.ts-video:hover .ts-video-play {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(177, 247, 47, .2);
    box-shadow: 0 0 40px rgba(177, 247, 47, .55);
}

.ts-video--cyan:hover .ts-video-play {
    background: rgba(125, 244, 255, .2);
    box-shadow: 0 0 40px rgba(125, 244, 255, .55);
}

.ts-video-label {
    position: absolute;
    z-index: 2;
    left: 22px;
    bottom: 20px;
    padding-bottom: 5px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 12.5px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
    border-bottom: 2px solid rgba(177, 247, 47, .55);
}

.ts-video--cyan .ts-video-label {
    color: var(--tertiary);
    border-bottom-color: rgba(125, 244, 255, .55);
}

/* ---- Quote cards ---- */
.ts-quotes {
    margin-left: -12px;
    margin-right: -12px;
}

.ts-quotes>[class*="col-"] {
    padding: 0 12px var(--gutter);
}

.ts-card {
    position: relative;
    height: 100%;
    margin: 0;
    padding: 34px 32px 28px;
    border-radius: 10px;
    background: var(--surface-container);
    border: 1px solid rgba(66, 73, 53, .4);
    overflow: hidden;
    transition: border-color .4s ease, transform .4s ease, box-shadow .4s ease;
}

.ts-card:hover {
    border-color: rgba(177, 247, 47, .35);
    transform: translateY(-4px);
    box-shadow: 0 22px 55px rgba(0, 0, 0, .45);
}

.ts-card--cyan:hover {
    border-color: rgba(125, 244, 255, .35);
}

.ts-quote {
    position: absolute;
    top: 26px;
    right: 26px;
    width: 46px;
    height: 37px;
    color: rgba(177, 247, 47, .16);
    pointer-events: none;
}

.ts-card--cyan .ts-quote {
    color: rgba(125, 244, 255, .16);
}

.ts-card blockquote {
    position: relative;
    z-index: 1;
    margin: 0 0 26px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(66, 73, 53, .5);
    font-family: var(--font-body);
    font-style: italic;
    font-size: 15px;
    line-height: 1.75;
    color: var(--on-surface);
}

@media (min-width: 768px) {
    .ts-card blockquote {
        font-size: 15.5px;
    }
}

.ts-person {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* initials by default; drop an <img> inside for a real headshot */
.ts-avatar {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(177, 247, 47, .1);
    border: 1px solid rgba(177, 247, 47, .3);
    font-family: var(--font-mono);
    font-size: 13px;
    letter-spacing: .04em;
    color: var(--primary);
}

.ts-card--cyan .ts-avatar {
    background: rgba(125, 244, 255, .1);
    border-color: rgba(125, 244, 255, .3);
    color: var(--tertiary);
}

.ts-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.ts-person-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.ts-person-meta strong {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
    color: #ffffff;
}

.ts-person-meta em {
    font-family: var(--font-body);
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--primary);
}

.ts-card--cyan .ts-person-meta em {
    color: var(--tertiary);
}

@media (max-width: 575.98px) {
    .ts-card {
        padding: 26px 22px 24px;
    }

    .ts-video-play {
        width: 60px;
        height: 60px;
    }

    .ts-video-play svg {
        width: 20px;
        height: 20px;
    }

    .ts-video-label {
        left: 16px;
        bottom: 16px;
        font-size: 11px;
    }
}

/* -------------------------------------------------------------------------
   Contact
   ------------------------------------------------------------------------- */
.ct-section {
    position: relative;
    z-index: 20;
    overflow: hidden;
    background: var(--surface);
    padding: 40px var(--margin-mobile) 130px;
}

@media (min-width: 768px) {
    .ct-section {
        padding: 40px var(--margin-desktop) 170px;
    }
}

/* ---- animated backdrop ---- */
.ct-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.ct-grid {
    position: absolute;
    inset: -50% 0 -50%;
    background-image:
        linear-gradient(rgba(140, 148, 123, .055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(140, 148, 123, .055) 1px, transparent 1px);
    background-size: 58px 58px;
    -webkit-mask-image: radial-gradient(ellipse 70% 55% at 50% 50%, #000 20%, transparent 78%);
    mask-image: radial-gradient(ellipse 70% 55% at 50% 50%, #000 20%, transparent 78%);
    animation: ctGridPan 26s linear infinite;
}

@keyframes ctGridPan {
    to {
        background-position: 58px 58px;
    }
}

.ct-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: .5;
}

.ct-orb--lime {
    top: 4%;
    left: 6%;
    width: 44vw;
    max-width: 520px;
    aspect-ratio: 1;
    background: radial-gradient(circle, rgba(177, 247, 47, .3), transparent 68%);
    animation: ctDriftA 17s ease-in-out infinite;
}

.ct-orb--cyan {
    bottom: 0;
    right: 4%;
    width: 40vw;
    max-width: 480px;
    aspect-ratio: 1;
    background: radial-gradient(circle, rgba(125, 244, 255, .26), transparent 68%);
    animation: ctDriftB 21s ease-in-out infinite;
}

@keyframes ctDriftA {

    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    50% {
        transform: translate3d(9%, 12%, 0) scale(1.14);
    }
}

@keyframes ctDriftB {

    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1.08);
    }

    50% {
        transform: translate3d(-11%, -9%, 0) scale(.92);
    }
}

/* thin light sweeping down the section */
.ct-scan {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(177, 247, 47, .55), rgba(125, 244, 255, .45), transparent);
    animation: ctScan 7.5s cubic-bezier(.6, 0, .4, 1) infinite;
}

@keyframes ctScan {
    0% {
        transform: translateY(0);
        opacity: 0;
    }

    12%,
    82% {
        opacity: 1;
    }

    100% {
        transform: translateY(600px);
        opacity: 0;
    }
}

/* ---- card with rotating gradient rim ---- */
.ct-card {
    position: relative;
    max-width: 960px;
    margin: 0 auto;
    padding: 1px;
    /* rim thickness */
    border-radius: 26px;
    overflow: hidden;
    isolation: isolate;
}

.ct-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 160%;
    aspect-ratio: 1;
    transform: translate(-50%, -50%);
    background: conic-gradient(from 0deg,
            rgba(177, 247, 47, 0) 0deg,
            rgba(177, 247, 47, .85) 40deg,
            rgba(125, 244, 255, .8) 90deg,
            rgba(177, 247, 47, 0) 150deg,
            rgba(177, 247, 47, 0) 360deg);
    animation: ctSpin 9s linear infinite;
    z-index: 0;
}

@keyframes ctSpin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.ct-card-inner {
    position: relative;
    z-index: 1;
    border-radius: 25px;
    padding: 56px 26px 48px;
    text-align: center;
    overflow: hidden;
    background:
        radial-gradient(ellipse 90% 120% at 50% 0%, rgba(23, 40, 47, .96), rgba(13, 26, 32, .98)),
        var(--surface-container);
}

@media (min-width: 768px) {
    .ct-card-inner {
        padding: 80px 60px 66px;
    }
}

/* pointer-following highlight (co-ordinates set in script.js) */
.ct-spot {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    background: radial-gradient(340px circle at var(--mx, 50%) var(--my, 50%), rgba(177, 247, 47, .13), transparent 70%);
    transition: opacity .45s ease;
}

.ct-card:hover .ct-spot {
    opacity: 1;
}

/* ---- content ---- */
.ct-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    margin-bottom: 26px;
    border: 1px solid rgba(177, 247, 47, .3);
    border-radius: 999px;
    background: rgba(177, 247, 47, .06);
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--primary);
}

.ct-eyebrow::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 0 rgba(177, 247, 47, .6);
    animation: ctPing 2.2s ease-out infinite;
}

@keyframes ctPing {
    0% {
        box-shadow: 0 0 0 0 rgba(177, 247, 47, .55);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(177, 247, 47, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(177, 247, 47, 0);
    }
}

.ct-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 34px;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: #ffffff;
    margin-bottom: 22px;
}

@media (min-width: 768px) {
    .ct-title {
        font-size: 52px;
    }
}

@media (min-width: 1200px) {
    .ct-title {
        font-size: 62px;
    }
}

.ct-title-accent {
    display: block;
    background: linear-gradient(100deg, var(--primary) 12%, #e8ffb0 32%, var(--tertiary) 55%, var(--primary) 78%);
    background-size: 260% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: ctShimmer 7s ease-in-out infinite;
}

@keyframes ctShimmer {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.ct-sub {
    max-width: 520px;
    margin: 0 auto 40px;
    font-family: var(--font-body);
    font-size: 15.5px;
    line-height: 1.7;
    color: var(--on-surface-variant);
}

@media (min-width: 768px) {
    .ct-sub {
        font-size: 17px;
        margin-bottom: 46px;
    }
}

/* ---- actions ---- */
.ct-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}

@media (min-width: 576px) {
    .ct-actions {
        flex-direction: row;
        justify-content: center;
        gap: 22px;
    }
}

.ct-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    width: 100%;
    max-width: 290px;
    padding: 17px 32px;
    border-radius: 999px;
    overflow: hidden;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14.5px;
    letter-spacing: .03em;
    white-space: nowrap;
    transition: transform .35s cubic-bezier(.2, .8, .3, 1), box-shadow .35s ease,
        background-color .35s ease, color .35s ease, border-color .35s ease;
}

@media (min-width: 576px) {
    .ct-btn {
        width: auto;
    }
}

.ct-btn svg {
    width: 19px;
    height: 19px;
    flex: 0 0 auto;
}

.ct-btn:hover,
.ct-btn:focus {
    text-decoration: none;
    transform: translateY(-3px);
}

.ct-btn--primary {
    color: var(--on-primary);
    background: var(--primary);
    box-shadow: 0 10px 34px rgba(177, 247, 47, .22);
}

.ct-btn--primary:hover {
    color: var(--on-primary);
    box-shadow: 0 16px 48px rgba(177, 247, 47, .42), 0 0 0 5px rgba(177, 247, 47, .12);
}

/* sweeping gloss */
.ct-btn-shine {
    position: absolute;
    top: 0;
    bottom: 0;
    left: -60%;
    width: 45%;
    background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .55), transparent);
    transform: skewX(-18deg);
    animation: ctShine 4.2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes ctShine {

    0%,
    62% {
        left: -60%;
    }

    92%,
    100% {
        left: 130%;
    }
}

.ct-btn--ghost {
    color: var(--tertiary);
    border: 1px solid rgba(125, 244, 255, .38);
    background: rgba(125, 244, 255, .05);
}

.ct-btn--ghost:hover {
    color: var(--on-primary);
    background: var(--tertiary);
    border-color: var(--tertiary);
    box-shadow: 0 16px 44px rgba(125, 244, 255, .32);
}

.ct-or {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(140, 148, 123, .9);
}

.ct-or i {
    display: block;
    width: 26px;
    height: 1px;
    background: rgba(140, 148, 123, .35);
}

@media (min-width: 576px) {
    .ct-or i {
        width: 1px;
        height: 18px;
    }
}

.ct-note {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 0;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--on-surface-variant);
}

.ct-note-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 10px rgba(177, 247, 47, .8);
    animation: ctBreathe 2.6s ease-in-out infinite;
}

@keyframes ctBreathe {

    0%,
    100% {
        opacity: .35;
        transform: scale(.8);
    }

    50% {
        opacity: 1;
        transform: scale(1.15);
    }
}

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

    .ct-grid,
    .ct-orb,
    .ct-scan,
    .ct-card::before,
    .ct-title-accent,
    .ct-btn-shine,
    .ct-eyebrow::before,
    .ct-note-dot {
        animation: none;
    }

    .ct-scan {
        opacity: .5;
    }
}

/* -------------------------------------------------------------------------
   Scroll reveal
   ------------------------------------------------------------------------- */
.reveal-elem {
    opacity: 0;
    transform: translateY(24px);
}

.reveal-elem.is-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .8s cubic-bezier(.2, .8, .2, 1), transform .8s cubic-bezier(.2, .8, .2, 1);
}

/* -------------------------------------------------------------------------
   Footer
   ------------------------------------------------------------------------- */
.site-footer {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: var(--surface-container-lowest);
    padding-top: 70px;
    border-top: 1px solid rgba(140, 148, 123, 0.08);
}

.footer-logo {
    width: 160px;
}

@media (min-width: 768px) {
    .site-footer {
        padding-top: 90px;
    }
}

/* animated light bleeding up from the top edge */
.site-footer::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(177, 247, 47, .7), rgba(125, 244, 255, .6), transparent);
    background-size: 220% 100%;
    animation: ftEdge 9s linear infinite;
}

@keyframes ftEdge {
    to {
        background-position: 220% 0;
    }
}

.footer-glow {
    position: absolute;
    top: -160px;
    left: 50%;
    width: 720px;
    height: 320px;
    transform: translateX(-50%);
    background: radial-gradient(ellipse at center, rgba(177, 247, 47, .12), transparent 68%);
    filter: blur(40px);
    pointer-events: none;
    animation: ftBreathe 8s ease-in-out infinite;
}

@keyframes ftBreathe {

    0%,
    100% {
        opacity: .55;
        transform: translateX(-50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translateX(-50%) scale(1.12);
    }
}

.footer-top {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-bottom: 46px;
}

@media (min-width: 768px) {
    .footer-top {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        gap: 30px;
    }
}

/* ---- brand block ---- */
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 14px;
}

.footer-logo:hover {
    text-decoration: none;
}

.footer-logo img {
    transition: transform .5s cubic-bezier(.2, .8, .3, 1);
}

.footer-logo:hover img {
    transform: rotate(-12deg) scale(1.12);
}

.footer-logo span {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 22px;
    letter-spacing: -0.01em;
    color: #ffffff;
}

.footer-tag {
    font-family: var(--font-mono);
    font-size: 13px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 18px;
}

.footer-mail {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--font-body);
    font-size: 14.5px;
    color: var(--on-surface-variant);
    transition: color .3s ease;
}

.footer-mail svg {
    width: 17px;
    height: 17px;
    flex: 0 0 auto;
}

.footer-mail span {
    position: relative;
}

/* underline wipes in from the left */
.footer-mail span::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 1px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s cubic-bezier(.2, .8, .3, 1);
}

.footer-mail:hover {
    color: var(--primary);
    text-decoration: none;
}

.footer-mail:hover span::after {
    transform: scaleX(1);
}

/* ---- social ---- */
.footer-heading {
    display: block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
    color: #ffffff;
    margin-bottom: 16px;
}

.footer-social-row {
    display: flex;
    gap: 12px;
}

.social-dot {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid rgba(66, 73, 53, .8);
    background: var(--surface-container);
    color: var(--on-surface-variant);
    transition: color .35s ease, border-color .35s ease, transform .35s cubic-bezier(.2, .8, .3, 1), box-shadow .35s ease;
}

.social-dot svg {
    width: 18px;
    height: 18px;
    transition: transform .4s cubic-bezier(.2, .8, .3, 1), opacity .3s ease;
}

/* the IG / IN / F label slides up as the glyph slides out */
.social-dot i {
    position: absolute;
    font-family: var(--font-mono);
    font-style: normal;
    font-size: 12px;
    letter-spacing: .06em;
    opacity: 0;
    transform: translateY(14px);
    transition: transform .4s cubic-bezier(.2, .8, .3, 1), opacity .3s ease;
}

.social-dot:hover {
    color: var(--primary);
    border-color: rgba(177, 247, 47, .55);
    transform: translateY(-4px);
    box-shadow: 0 10px 26px rgba(0, 0, 0, .45), 0 0 22px rgba(177, 247, 47, .18);
    text-decoration: none;
}

.social-dot:hover svg {
    transform: translateY(-15px);
    opacity: 0;
}

.social-dot:hover i {
    transform: translateY(0);
    opacity: 1;
}

/* ---- bottom bar ---- */
.footer-bottom {
    padding: 26px 0 30px;
    border-top: 1px solid rgba(140, 148, 123, 0.09);
    text-align: center;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.footer-legal-btn {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--on-surface-variant);
    text-decoration: none;
    transition: color .25s ease;
}

.footer-legal-btn:hover {
    color: var(--primary);
    text-decoration: none;
}

.footer-copy {
    margin: 0;
    font-family: var(--font-body);
    font-size: 13.5px;
    color: var(--on-surface-variant);
}

.footer-sep {
    margin: 0 8px;
    color: rgba(140, 148, 123, .45);
}

.footer-dev {
    position: relative;
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--primary);
    transition: color .3s ease, text-shadow .3s ease;
}

.footer-dev::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .4s cubic-bezier(.2, .8, .3, 1);
}

.footer-dev:hover {
    color: var(--tertiary);
    text-shadow: 0 0 16px rgba(125, 244, 255, .55);
    text-decoration: none;
}

.footer-dev:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

@media (max-width: 575.98px) {
    .footer-copy {
        font-size: 12.5px;
        line-height: 1.9;
    }

    .footer-sep {
        display: block;
        height: 0;
        overflow: hidden;
        margin: 0;
    }
}

/* -------------------------------------------------------------------------
   Back to top — scroll progress ring + rocket
   ------------------------------------------------------------------------- */
.to-top {
    position: fixed;
    z-index: 900;
    right: 22px;
    bottom: 22px;
    width: 52px;
    height: 52px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(9, 18, 23, .82);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .5);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px) scale(.85);
    transition: opacity .4s ease, transform .45s cubic-bezier(.2, .8, .3, 1), visibility .4s;
}

@media (min-width: 768px) {
    .to-top {
        right: 34px;
        bottom: 34px;
        width: 58px;
        height: 58px;
    }
}

.to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.to-top:hover {
    box-shadow: 0 14px 38px rgba(0, 0, 0, .55), 0 0 28px rgba(177, 247, 47, .28);
}

.to-top:focus {
    outline: none;
}

.to-top:focus-visible {
    box-shadow: 0 0 0 3px rgba(177, 247, 47, .45);
}

/* progress ring */
.to-top-ring {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.to-top-ring circle {
    fill: none;
    stroke-width: 2.5;
    cx: 22;
    cy: 22;
    r: 20;
}

.to-top-track {
    stroke: rgba(140, 148, 123, .25);
}

.to-top-bar {
    stroke: var(--primary);
    stroke-linecap: round;
    stroke-dasharray: 125.6;
    /* 2 * PI * 20 */
    stroke-dashoffset: 125.6;
    /* JS drives this */
    filter: drop-shadow(0 0 5px rgba(177, 247, 47, .8));
    transition: stroke-dashoffset .15s linear;
}

/* rocket */
.to-top-rocket {
    position: relative;
    width: 22px;
    height: 22px;
    color: var(--primary);
    transition: transform .45s cubic-bezier(.2, .8, .3, 1), color .3s ease;
}

.to-top:hover .to-top-rocket {
    color: #eaffc0;
    transform: translateY(-3px);
}

.to-top-flame {
    opacity: .55;
    transform-origin: 12px 18px;
    animation: ftFlame 1s ease-in-out infinite;
}

@keyframes ftFlame {

    0%,
    100% {
        opacity: .35;
        transform: scaleY(.72);
    }

    50% {
        opacity: 1;
        transform: scaleY(1.25);
    }
}

/* launch animation once clicked */
.to-top.is-launching .to-top-rocket {
    animation: ftLaunch .75s cubic-bezier(.5, -0.4, .7, 0) forwards;
}

@keyframes ftLaunch {
    0% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }

    60% {
        transform: translateY(-34px) scale(.85);
        opacity: 0;
    }

    61% {
        transform: translateY(28px) scale(.85);
        opacity: 0;
    }

    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* -------------------------------------------------------------------------
   In-Site Universal Video Lightbox Modal
   ------------------------------------------------------------------------- */
.fg-video-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(1, 12, 18, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
}

.fg-video-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.fg-video-modal-backdrop {
    position: absolute;
    inset: 0;
    cursor: pointer;
}

.fg-video-modal-dialog {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px;
    aspect-ratio: 16 / 9;
    background: #000;
    border: 1px solid rgba(177, 247, 47, 0.35);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.8), 0 0 40px rgba(177, 247, 47, 0.15);
    transform: scale(0.94);
    transition: transform .3s cubic-bezier(0.16, 1, 0.3, 1);
}

.fg-video-modal.is-open .fg-video-modal-dialog {
    transform: scale(1);
}

.fg-video-modal-dialog.is-portrait {
    max-width: 440px;
    aspect-ratio: 9 / 16;
    max-height: 85vh;
}

.fg-video-modal-close {
    position: absolute;
    top: -46px;
    right: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(14, 34, 43, 0.85);
    border: 1px solid rgba(177, 247, 47, 0.4);
    color: var(--primary);
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    padding: 6px 14px;
    border-radius: 999px;
    cursor: pointer;
    transition: all .25s ease;
}

.fg-video-modal-close:hover {
    background: var(--primary);
    color: #000;
    box-shadow: 0 0 16px rgba(177, 247, 47, 0.6);
    transform: translateY(-2px);
}

.fg-video-modal-body {
    width: 100%;
    height: 100%;
    position: relative;
}

.fg-video-modal-body iframe,
.fg-video-modal-body video {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.fg-video-drive-blocker {
    position: absolute;
    top: 0;
    right: 0;
    width: 130px;
    height: 55px;
    z-index: 8;
    background: transparent;
}

@media (max-width: 768px) {
    .fg-video-modal {
        padding: 12px;
    }

    .fg-video-modal-close {
        top: -40px;
    }

    .fg-video-modal-dialog.is-portrait {
        max-width: 100%;
        max-height: 80vh;
    }
}

/* =========================================================================
   Instagram Embed Cropping (Hides Top Header & Bottom Likes/Footer)
   Only for Instagram videos
   ========================================================================= */
.vid-card,
.vid-video-wrap,
.sw-card,
.sw-video-wrap,
.ts-video-wrap,
.fg-video-modal-body {
    overflow: hidden !important;
}

.vid-video-frame.is-instagram-frame,
.sw-video-frame.is-instagram-frame,
.ts-video-frame.is-instagram-frame,
.fg-video-modal-body iframe.is-instagram-frame {
    display: block !important;
    position: absolute !important;
    top: -58px !important;
    left: -2% !important;
    right: -2% !important;
    bottom: auto !important;
    width: 104% !important;
    height: calc(100% + 140px) !important;
    border: none !important;
    z-index: 5 !important;
    background: #000 !important;
}

.vid-video-close,
.sw-video-close,
.ts-video-close {
    z-index: 20 !important;
}

.footer-legal-links {
    padding: 20px 0px;
}

/* ── Intro Split Section (Text + Video) ── */
.intro-split {
    position: relative;
    z-index: 20;
    padding: 90px 20px;
    background: radial-gradient(circle at 82% 45%, rgba(177, 247, 47, 0.06) 0%, transparent 48%),
        radial-gradient(circle at 18% 55%, rgba(125, 244, 255, 0.05) 0%, transparent 48%),
        var(--surface, #02161e);
    overflow: hidden;
}

.intro-split::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(177, 247, 47, 0.35), rgba(125, 244, 255, 0.2), transparent);
}

.intro-split::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(125, 244, 255, 0.15), transparent);
}

@media (min-width: 768px) {
    .intro-split {
        padding: 110px 40px;
    }
}

@media (min-width: 1200px) {
    .intro-split {
        padding: 125px 64px;
    }
}

.intro-split-row {
    align-items: center;
    row-gap: 48px;
}

.intro-split-text {
    padding-right: 0;
}

@media (min-width: 992px) {
    .intro-split-text {
        padding-right: 45px;
    }
}

.intro-split .eyebrow-mini {
    font-family: var(--font-mono, 'JetBrains Mono', monospace);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 18px;
    text-transform: uppercase;
}

.intro-split .eyebrow-mini .accent-lime {
    color: var(--primary, #b1f72f);
}

.intro-split-heading {
    font-family: var(--font-display, 'Montserrat', sans-serif);
    font-weight: 900;
    font-size: clamp(34px, 4.2vw, 56px);
    line-height: 1.08;
    color: #ffffff;
    margin: 12px 0 22px;
    letter-spacing: -0.025em;
}

.intro-split-desc {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 15.5px;
    line-height: 1.8;
    color: var(--on-surface-variant, rgba(255, 255, 255, 0.7));
    margin: 0 0 32px;
    max-width: 520px;
}

.intro-feat-cards {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.intro-feat-card {
    flex: 1 1 0;
    min-width: 140px;
    background: rgba(5, 25, 34, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 12px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.28s ease,
        background 0.28s ease,
        box-shadow 0.28s ease;
}

.intro-feat-card:hover {
    transform: translateY(-2px);
    background: rgba(8, 35, 48, 0.9);
    border-color: rgba(177, 247, 47, 0.4);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
}

.intro-feat-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.intro-feat-icon.lime {
    background: rgba(177, 247, 47, 0.12);
    color: var(--primary, #b1f72f);
}

.intro-feat-icon.cyan {
    background: rgba(125, 244, 255, 0.12);
    color: var(--tertiary, #7df4ff);
}

.intro-feat-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.intro-feat-title {
    font-family: var(--font-display, 'Montserrat', sans-serif);
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.intro-feat-sub {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 11px;
    color: var(--on-surface-variant, rgba(255, 255, 255, 0.6));
    line-height: 1.35;
    margin-top: 2px;
    white-space: nowrap;
}

@media (max-width: 575px) {
    .intro-feat-cards {
        flex-direction: column;
    }

    .intro-feat-card {
        min-width: 100%;
    }
}

.intro-split-video-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-video-ts {
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(177, 247, 47, 0.15);
}

.intro-video-ts:hover {
    border-color: rgba(177, 247, 47, 0.7);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.75), 0 0 30px rgba(177, 247, 47, 0.2);
}