/* ==================== RESET & VARIABLES ==================== */
:root {
    --bg-light: #f1f4f1;
    --bg-dark: #1a1c1a;
    --green: #97c93c;
    --accent: #455a64;
    --white: #ffffff;
    --text-on-green: #1a1c1a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    color: var(--text-on-green);
    background: var(--bg-light);
    line-height: 1.6;
    cursor: none;
}

a,
button {
    cursor: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Syne", sans-serif;
    font-weight: 700;
}

/* ==================== UTILITY CLASSES ==================== */
.section-title {
    font-size: clamp(32px, 5vw, 52px);
    color: var(--text-on-green);
    text-align: center;
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--accent);
    text-align: center;
    margin-bottom: 48px;
}

/* ==================== NAVBAR ==================== */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    opacity: 0;
    transform: translateX(-50%) translateY(-16px);
    animation: navbarSlideIn 300ms cubic-bezier(0.22, 1, 0.36, 1) 300ms forwards;
}

@keyframes navbarSlideIn {
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.navbar-container {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 32px;
    background: rgba(220, 225, 220, 0.55);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    border-radius: 999px;
    padding: 10px 24px;
}

.navbar-left,
.navbar-center,
.navbar-right {
    display: flex;
    align-items: center;
}

.navbar-logo {
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #1a1c1a;
    line-height: 1;
    white-space: nowrap;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: color 200ms ease;
    opacity: 1;
}

.navbar-logo:hover {
    color: #1a1c1a;
}

.navbar-center {
    gap: 28px;
}

.nav-link {
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #1a1c1a;
    line-height: 1;
    white-space: nowrap;
    text-decoration: none;
    transition: color 200ms ease;
    opacity: 1;
}

.nav-link:hover {
    color: #1a1c1a;
}

.nav-link-desktop-only {
    display: inline;
}

.nav-link-mobile-only {
    display: none;
}

.nav-cta {
    background: var(--green);
    color: #1a1c1a;
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    border-radius: 999px;
    text-decoration: none;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    white-space: nowrap;
    transition: opacity 200ms ease;
    cursor: none;
}

.nav-cta:hover {
    opacity: 0.8;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: none;
    padding: 0;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-on-green);
    transition: all 300ms ease;
}

/* ==================== LANGUAGE DROPDOWN ==================== */
.language-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.language-btn {
    background: none;
    border: none;
    cursor: none;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #1a1c1a;
    line-height: 1;
    white-space: nowrap;
    opacity: 1;
    text-decoration: none;
    transition: color 200ms ease;
    display: inline-flex;
    align-items: center;
    padding: 0;
    margin: 0;
}

.language-btn:hover {
    color: #1a1c1a;
}

.language-menu {
    position: absolute;
    top: calc(100% + 18px);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    gap: 0;
    min-width: 100px;
    background: rgba(220, 225, 220, 0.65);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    opacity: 0;
    transform: translateX(-50%) translateY(-4px);
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 150ms ease,
        transform 150ms ease,
        visibility 0ms 150ms;
    z-index: 1001;
}

.language-menu.active {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    visibility: visible;
    pointer-events: auto;
    transition:
        opacity 150ms ease,
        transform 150ms ease,
        visibility 0ms 0ms;
}

.language-option {
    display: block;
    padding: 8px 20px;
    background: transparent;
    border: none;
    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #1a1c1a;
    text-align: center;
    cursor: none;
    transition:
        background 150ms ease,
        color 150ms ease;
}

.language-option + .language-option {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.language-option:hover {
    background: rgba(151, 201, 60, 0.3);
    color: #1a1c1a;
}

/* ==================== MOBILE MENU ==================== */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 32px;
    color: var(--bg-light);
    background: none;
    border: none;
    cursor: none;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

.mobile-nav-link {
    font-family: "Syne", sans-serif;
    font-size: 36px;
    color: var(--bg-light);
    text-decoration: none;
    transition: color 200ms ease;
    cursor: none;
}

.mobile-nav-link:hover {
    color: var(--green);
}

.mobile-nav-cta {
    background: var(--green);
    color: var(--text-on-green);
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    margin-top: 20px;
    cursor: none;
}

/* ==================== CUSTOM CURSOR ==================== */
#cursor {
    position: fixed;
    width: 10px;
    height: 10px;
    background: var(--green);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transition: transform 200ms ease;
    transform: translate(-5px, -5px);
}

#cursor.active {
    transform: translate(-5px, -5px) scale(2.4);
    opacity: 0.5;
}

/* ==================== BUTTONS ==================== */
.cta-primary {
    display: inline-block;
    background: var(--green);
    color: var(--text-on-green);
    padding: 13px 26px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    border: none;
    cursor: none;
    transition: opacity 200ms ease;
}

.cta-primary:hover {
    opacity: 0.85;
}

.cta-ghost {
    display: inline-block;
    background: transparent;
    color: var(--text-on-green);
    border: 1.5px solid var(--accent);
    padding: 13px 26px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    cursor: none;
    transition: all 200ms ease;
}

.cta-ghost:hover {
    border-color: var(--green);
    color: var(--green);
}

.cta-large {
    padding: 16px 36px;
    font-size: 16px;
}

/* ==================== HERO SECTION ==================== */
.hero {
    position: relative;
    height: 100vh;
    padding-top: 40px;
    background: var(--bg-light);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 160px;
    padding-bottom: 40px;
    flex: 0 0 auto;
    height: 40%;
    text-align: center;
}

.hero-label {
    font-size: 11px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    opacity: 0;
    animation: fadeInUp 600ms cubic-bezier(0.22, 1, 0.36, 1) 400ms forwards;
}

.hero-title {
    font-size: clamp(28.8px, 6.3vw, 54px);
    color: var(--text-on-green);
    margin-top: 24px;
    max-width: 920px;
    line-height: 1.15;
}

.hero-title .word {
    opacity: 0;
    transform: translateY(28px);
    display: inline-block;
    animation: wordReveal 600ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.word-reveal-target .word {
    opacity: 0;
    transform: translateY(28px);
    display: inline-block;
}

.word-reveal-target.is-visible .word {
    animation: wordReveal 600ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-title-secondary {
    display: block;
    white-space: nowrap;
}

@keyframes wordReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtext {
    font-size: 17px;
    color: var(--accent);
    max-width: 480px;
    margin-top: 18px;
    margin-bottom: 18px;
    opacity: 0;
    animation: fadeInUp 600ms cubic-bezier(0.22, 1, 0.36, 1) 870ms forwards;
}

.hero-video-cta {
    position: absolute;
    top: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-ctas {
    display: flex;
    gap: 14px;
    margin-top: 36px;
    justify-content: center;
}

.hero-cta-note {
    margin-top: 10px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: #fff;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.hero-ctas .cta-ghost {
    background: var(--bg-light);
    border-color: var(--bg-light);
    color: var(--text-on-green);
}

.hero-ctas .cta-ghost:hover {
    opacity: 0.9;
    border-color: var(--bg-light);
    color: var(--text-on-green);
}

.hero-ctas .cta-primary,
.hero-ctas .cta-ghost {
    padding: 12px 26px;
    border-radius: 999px;
    opacity: 1;
    font-size: 14px;
    letter-spacing: 0.03em;
    text-align: center;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-video-container {
    position: relative;
    flex: 1;
    overflow: hidden;
    height: 58%;
    margin-top: 10px;
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.hero-video {
    width: 110%;
    height: 112%;
    margin-left: -5%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.video-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, var(--bg-light) 0%, transparent 10%);
    pointer-events: none;
    z-index: 1;
}

.video-tint {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(151, 201, 60, 0.05);
    pointer-events: none;
    z-index: 1;
}

.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--accent);
    font-size: 11px;
    letter-spacing: 0.1em;
    animation: bounce 1.4s ease-in-out infinite;
    z-index: 10;
}

@keyframes bounce {
    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(7px);
    }
}

/* ==================== SECTION 2: PROBLEM ==================== */
.problem {
    background: var(--bg-dark);
    padding: 100px 40px;
    color: var(--bg-light);
}

.problem .section-title {
    color: var(--bg-light);
}

.problem-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1080px;
    margin: 48px auto 0;
}

.problem-card {
    position: relative;
    padding: 40px 32px;
    border: 1px solid rgba(241, 244, 241, 0.06);
    border-radius: 10px;
    overflow: hidden;
    opacity: 0;
    animation: cardEnter 600ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.problem-card:nth-child(1) {
    animation-delay: 0ms;
}

.problem-card:nth-child(2) {
    animation-delay: 150ms;
}

.problem-card:nth-child(3) {
    animation-delay: 300ms;
}

@keyframes cardEnter {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ghost-number {
    position: absolute;
    font-family: "Bebas Neue", sans-serif;
    font-size: 160px;
    opacity: 0.04;
    color: var(--bg-light);
    bottom: -20px;
    left: 16px;
    z-index: 0;
}

.problem-card h3 {
    font-family: "Syne", sans-serif;
    font-size: 20px;
    color: var(--bg-light);
    position: relative;
    z-index: 1;
}

.problem-card p {
    font-size: 14px;
    color: rgba(241, 244, 241, 0.55);
    margin-top: 12px;
    position: relative;
    z-index: 1;
    line-height: 1.6;
}

/* ==================== SECTION 3: TICKER ==================== */
.ticker {
    background: #1a1c1a;
    border-top: 1px solid rgba(241, 244, 241, 0.06);
    height: 80px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.ticker-mask {
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 8%,
        black 92%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 8%,
        black 92%,
        transparent 100%
    );
}

.ticker-track {
    display: flex;
    align-items: center;
    gap: 16px;
    width: max-content;
    animation: ticker-scroll 40s linear infinite;
}

.ticker:hover .ticker-track {
    animation-play-state: paused;
}

.ticker-card {
    background: #222420;
    border: 1px solid rgba(241, 244, 241, 0.07);
    border-radius: 8px;
    padding: 10px 16px;
    height: 56px;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    flex-shrink: 0;
}



.ticker-number {
    font-family: "Bebas Neue", sans-serif;
    font-size: 22px;
    color: #97c93c;
    line-height: 1;
}

.ticker-label {
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    color: rgba(241, 244, 241, 0.55);
}

@keyframes ticker-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* ==================== SECTION 4: REALITY ==================== */
.reality {
    background: var(--bg-light);
    padding: 100px 40px;
}

.solution-divider {
    height: 1px;
    background: #e5e9e5;
    max-width: 1000px;
    margin: 80px auto;
}

.solution {
    max-width: 1080px;
    margin: 0 auto;
}

.solution .section-title {
    margin-bottom: 48px;
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.solution-label {
    font-size: 11px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.solution-text p {
    font-size: 16px;
    color: var(--text-on-green);
    line-height: 1.7;
    margin-top: 16px;
}

.solution-checks {
    margin-top: 20px;
}

.check-line {
    font-size: 15px;
    color: var(--text-on-green);
    margin: 10px 0;
    line-height: 1.6;
}

.check-line::before {
    content: "";
    color: var(--green);
    margin-right: 8px;
}

/* ── Browser shell ─────────────────────────────────────────── */
.browser-frame {
    background: #c6cac6;
    border-radius: 14px;
    padding: 10px 10px 0;
    box-shadow:
        0 2px 0 #aeb2ae,
        0 28px 72px rgba(0, 0, 0, 0.22),
        0 8px 24px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
    transform-style: preserve-3d;
}

.browser-title-bar {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 10px;
    height: 22px;
}

.browser-dots {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
}

.browser-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: block;
    flex-shrink: 0;
}

.browser-dot.red {
    background: #ff5f57;
}
.browser-dot.yellow {
    background: #ffbd2e;
}
.browser-dot.green {
    background: #28ca41;
}

.browser-address-bar {
    flex: 1;
    height: 18px;
    background: #d8dcd8;
    border-radius: 5px;
    margin: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "DM Sans", sans-serif;
    font-size: 8px;
    color: #7a807a;
    letter-spacing: 0.03em;
    user-select: none;
}

.browser-controls {
    display: flex;
    gap: 4px;
    flex-shrink: 0;
}

.browser-ctrl {
    display: block;
    width: 14px;
    height: 8px;
    background: #b4b8b4;
    border-radius: 2px;
}

/* ── Browser viewport ──────────────────────────────────────── */
.browser-content {
    border-radius: 0 0 10px 10px;
    height: 340px;
    overflow: hidden;
    position: relative;
}

/* Pagination pips */
.browser-pagination {
    position: absolute;
    bottom: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 30;
    pointer-events: none;
}

.bp-dot {
    width: 4px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.bp-dot.active {
    background: var(--green);
    height: 14px;
}

/* ── Screens wrapper ───────────────────────────────────────── */
.mb-screens {
    display: flex;
    flex-direction: column;
    height: 680px; /* 2 × 340px */
    transition: transform 0.82s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.mb-screens.scrolled {
    transform: translateY(-340px);
}

.mb-screen {
    height: 340px;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
}

/* ── Shared decorative elements ────────────────────────────── */
.bm-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(151, 201, 60, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(151, 201, 60, 0.04) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    z-index: 0;
}

.bm-glow-top {
    position: absolute;
    top: -70px;
    right: -50px;
    width: 220px;
    height: 220px;
    background: radial-gradient(
        circle,
        rgba(151, 201, 60, 0.13) 0%,
        transparent 70%
    );
    pointer-events: none;
    z-index: 0;
}

.bm-glow-bottom {
    position: absolute;
    bottom: -60px;
    left: -40px;
    width: 200px;
    height: 200px;
    background: radial-gradient(
        circle,
        rgba(151, 201, 60, 0.1) 0%,
        transparent 70%
    );
    pointer-events: none;
    z-index: 0;
}

/* ── Shared typography ─────────────────────────────────────── */
.bm-label {
    font-family: "DM Sans", sans-serif;
    font-size: 7px;
    font-weight: 600;
    color: var(--green);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 9px;
}

.bm-headline {
    font-family: "Syne", sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.bm-headline-lg {
    font-size: 16px;
    letter-spacing: -0.04em;
}

/* ═══════════════════════════════════════════════════════════
   SCREEN 1 — Hero (dark)
═══════════════════════════════════════════════════════════ */
.mb-screen-1 {
    background: #0d0f14;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 28px 22px;
}

.bm-s1-left {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.bm-subtext {
    font-family: "DM Sans", sans-serif;
    font-size: 7.5px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.65;
    margin: 8px 0 14px;
}

.bm-buttons {
    display: flex;
    gap: 8px;
    align-items: center;
}

.bm-btn-primary {
    font-family: "DM Sans", sans-serif;
    font-size: 7.5px;
    font-weight: 700;
    color: #0d0f14;
    background: var(--green);
    padding: 5px 13px;
    border-radius: 999px;
    cursor: default;
    user-select: none;
    border: none;
    outline: none;
}

.bm-btn-ghost {
    font-family: "DM Sans", sans-serif;
    font-size: 7.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.58);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 4px 12px;
    border-radius: 999px;
    cursor: default;
    user-select: none;
    outline: none;
}

/* Right column — 3 staggered floating glass cards */
.bm-s1-right {
    width: 118px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.bm-float-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 10px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.bm-fc-1 {
    animation: floatBm1 4.1s ease-in-out infinite;
}
.bm-fc-2 {
    margin-left: 10px;
    animation: floatBm2 4.9s ease-in-out infinite -1.6s;
}
.bm-fc-3 {
    margin-left: 5px;
    animation: floatBm3 4.4s ease-in-out infinite -2.2s;
}

@keyframes floatBm1 {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-6px);
    }
}
@keyframes floatBm2 {
    0%,
    100% {
        transform: translateY(-2px);
    }
    50% {
        transform: translateY(5px);
    }
}
@keyframes floatBm3 {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-7px);
    }
}

.bm-fc-icon {
    width: 20px;
    height: 20px;
    background: rgba(151, 201, 60, 0.12);
    border: 1px solid rgba(151, 201, 60, 0.22);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}

.bm-fc-title {
    font-family: "DM Sans", sans-serif;
    font-size: 8.5px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.01em;
}

.bm-fc-sub {
    font-family: "DM Sans", sans-serif;
    font-size: 7px;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.45;
}

/* ═══════════════════════════════════════════════════════════
   SCREEN 2 — Process / Proof (dark)
═══════════════════════════════════════════════════════════ */
.mb-screen-2 {
    background: #0d0f14;
    display: flex;
    flex-direction: column;
    padding: 22px 22px 18px;
    gap: 14px;
}

.bm-s2-top {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

/* Process cards row */
.bm-process-cards {
    display: flex;
    gap: 10px;
    position: relative;
    z-index: 1;
    flex: 1;
}

.bm-proc-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 12px 10px;
    display: flex;
    flex-direction: column;
    transition:
        border-color 0.25s ease,
        opacity 0.5s ease,
        transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    opacity: 0;
    transform: translateY(14px);
}

/* Cards animate in when screen 2 becomes active */
.mb-screen-2.screen-active .bm-proc-card:nth-child(1) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.05s;
}
.mb-screen-2.screen-active .bm-proc-card:nth-child(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.15s;
}
.mb-screen-2.screen-active .bm-proc-card:nth-child(3) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.25s;
}

/* Chips fade in staggered — float keyframes own the transform */
.mb-screen-2 .bm-chip {
    opacity: 0;
    transition: opacity 0.45s ease;
}
.mb-screen-2.screen-active .chip-1 {
    opacity: 1;
    transition-delay: 0.35s;
}
.mb-screen-2.screen-active .chip-2 {
    opacity: 1;
    transition-delay: 0.45s;
}
.mb-screen-2.screen-active .chip-3 {
    opacity: 1;
    transition-delay: 0.55s;
}

.bm-proc-num {
    font-family: "Syne", sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: rgba(151, 201, 60, 0.22);
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -0.05em;
}

.bm-proc-title {
    font-family: "DM Sans", sans-serif;
    font-size: 8.5px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
    letter-spacing: -0.01em;
}

.bm-proc-text {
    font-family: "DM Sans", sans-serif;
    font-size: 7px;
    color: rgba(255, 255, 255, 0.34);
    line-height: 1.55;
}

/* Floating accent chips */
.bm-chips {
    display: flex;
    gap: 7px;
    align-items: center;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    flex-wrap: nowrap;
}

.bm-chip {
    font-family: "DM Sans", sans-serif;
    font-size: 7px;
    font-weight: 600;
    color: var(--green);
    background: rgba(151, 201, 60, 0.09);
    border: 1px solid rgba(151, 201, 60, 0.22);
    padding: 4px 10px;
    border-radius: 999px;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.chip-1 {
    animation: chipFloat1 3.7s ease-in-out infinite;
}
.chip-2 {
    animation: chipFloat2 4.5s ease-in-out infinite -1s;
}
.chip-3 {
    animation: chipFloat3 4.1s ease-in-out infinite -2s;
}

@keyframes chipFloat1 {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-3px);
    }
}
@keyframes chipFloat2 {
    0%,
    100% {
        transform: translateY(-2px);
    }
    50% {
        transform: translateY(3px);
    }
}
@keyframes chipFloat3 {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-4px);
    }
}

/* ── Mockup reveal animation ───────────────────────────────── */
.solution-mockup {
    opacity: 0;
    animation: scaleIn 700ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.93) perspective(800px) rotateX(4deg);
    }
    to {
        opacity: 1;
        transform: scale(1) perspective(800px) rotateX(0deg);
    }
}

/* ==================== SECTION 5: HOW IT WORKS ==================== */
.how-it-works {
    background: var(--bg-dark);
    padding: 100px 40px;
    color: var(--bg-light);
}

.how-it-works .section-title {
    color: var(--bg-light);
}

.hiw-cards {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    max-width: 1080px;
    margin: 48px auto 0;
}

.hiw-card {
    flex: 1;
    padding: 36px;
    text-align: left;
    opacity: 0;
    transform: translateY(32px);
    transition:
        opacity 600ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hiw-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.hiw-card:nth-child(1) {
    transition-delay: 0ms;
}

.hiw-card:nth-child(3) {
    transition-delay: 180ms;
}

.hiw-card:nth-child(5) {
    transition-delay: 360ms;
}

.hiw-pill {
    display: inline-block;
    background: rgba(151, 201, 60, 0.12);
    border: 1px solid rgba(151, 201, 60, 0.25);
    border-radius: 999px;
    padding: 4px 14px;
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
    font-size: 12px;
    color: #97c93c;
    letter-spacing: 0.12em;
}

.hiw-accent-line {
    width: 40px;
    height: 2px;
    background: #97c93c;
    margin-top: 20px;
}

.hiw-card h3 {
    font-family: "Syne", sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #f1f4f1;
    margin-top: 16px;
    text-align: left;
}

.hiw-card p {
    font-size: 14px;
    color: rgba(241, 244, 241, 0.55);
    line-height: 1.7;
    margin-top: 10px;
    text-align: left;
}

.hiw-divider {
    width: 1px;
    background: rgba(241, 244, 241, 0.06);
    height: 80px;
    align-self: center;
    flex-shrink: 0;
}

/* ==================== SECTION 6: FEATURES ==================== */
.features {
    background: var(--bg-light);
    padding: 100px 40px;
}

.features .section-title {
    margin-bottom: 56px;
}

.features-list {
    max-width: 1080px;
    margin: 0 auto;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    margin-bottom: 56px;
}

.feature-row-reverse {
    grid-template-columns: 1fr 1fr;
}

.feature-row-reverse .feature-visual {
    order: -1;
}

.feature-label {
    font-size: 11px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.feature-text h3 {
    font-size: 24px;
    color: var(--text-on-green);
    margin-top: 12px;
}

.feature-text p {
    font-size: 15px;
    color: var(--accent);
    line-height: 1.7;
    margin-top: 16px;
}

.feature-visual {
    background: var(--bg-dark);
    border-radius: 12px;
    overflow: visible;
    height: 280px;
    position: relative;
}

.feature-visual-3 {
    overflow: hidden;
}

.feature-visual::after {
    display: none;
}

/* Feature row scroll animations */
.feature-row .feature-text .feature-label,
.feature-row .feature-text h3,
.feature-row .feature-text p {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 600ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-row.is-visible .feature-text .feature-label {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0ms;
}

.feature-row.is-visible .feature-text h3 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 120ms;
}

.feature-row.is-visible .feature-text p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 240ms;
}

.feature-row .feature-visual {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-row.is-visible .feature-visual {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== SECTION 7: SERVICES ==================== */
.services {
    background: var(--bg-dark);
    padding: 100px 40px;
    color: var(--bg-light);
}

.services .section-title {
    color: var(--bg-light);
}

.services .section-subtitle {
    color: rgba(241, 244, 241, 0.45);
}

.services-slider {
    position: relative;
    max-width: 1000px;
    margin: 48px auto 0;
}

.services-viewport {
    overflow: hidden;
    padding-top: 3px;
    margin-top: -3px;
}

.services-track {
    display: flex;
    gap: 20px;
    transition: transform 400ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 28px 24px;
    border: 1px solid rgba(163, 211, 149, 0.1);
    border-radius: 12px;
    background: rgba(163, 211, 149, 0.03);
    transition:
        border-color 300ms ease,
        background 300ms ease,
        transform 300ms ease;
    cursor: none;
    min-width: calc((100% - 40px) / 3);
    max-width: calc((100% - 40px) / 3);
    flex-shrink: 0;
}

.service-box:hover {
    border-color: rgba(163, 211, 149, 0.3);
    background: rgba(163, 211, 149, 0.06);
    transform: translateY(-3px);
}

.services-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(163, 211, 149, 0.2);
    background: rgba(163, 211, 149, 0.06);
    color: var(--green);
    font-size: 20px;
    cursor: none;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        opacity 300ms ease,
        background 300ms ease,
        border-color 300ms ease;
    padding: 0;
    line-height: 1;
}

.services-arrow:hover {
    background: rgba(163, 211, 149, 0.12);
    border-color: rgba(163, 211, 149, 0.4);
}

.services-arrow-left {
    left: -48px;
}

.services-arrow-right {
    right: -48px;
}

.services-arrow.hidden {
    opacity: 0;
    pointer-events: none;
}

.service-icon {
    font-size: 18px;
    color: var(--green);
    line-height: 1;
}

.service-label {
    font-family: "Syne", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--bg-light);
    margin: 0;
}

.service-motives {
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    color: rgba(241, 244, 241, 0.5);
    line-height: 1.9;
}

/* ==================== SECTION 8: PRICING ==================== */
.pricing {
    background: var(--bg-light);
    padding: 100px 40px;
}

.pricing .section-title {
    margin-bottom: 16px;
}

.pricing-promo {
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--green);
    margin-top: 18px;
    opacity: 0;
    transform: translateY(18px);
    transition:
        opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: 1s;
}

.pricing-promo.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 48px auto 0;
}

.pricing-card {
    background: var(--white);
    border: 1px solid rgba(26, 28, 26, 0.08);
    border-radius: 12px;
    padding: 36px;
    opacity: 0;
    animation: cardEnter 600ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
    position: relative;
}

.pricing-card:nth-child(1) {
    animation-delay: 0ms;
}

.pricing-card:nth-child(2) {
    animation-delay: 100ms;
}

.pricing-card:nth-child(3) {
    animation-delay: 200ms;
}

.pricing-featured {
    border: 1.5px solid var(--green);
    box-shadow: 0 8px 40px rgba(151, 201, 60, 0.1);
}

.pricing-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--green);
    color: var(--text-on-green);
    font-size: 10px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 0 12px 0 8px;
}

.pricing-name {
    font-size: 12px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.pricing-amount {
    font-family: "Bebas Neue", sans-serif;
    font-size: 52px;
    color: var(--text-on-green);
    margin-top: 12px;
}

.pricing-subtext {
    font-size: 13px;
    color: var(--accent);
    margin-top: 4px;
}

.pricing-divider {
    height: 1px;
    background: rgba(26, 28, 26, 0.08);
    margin: 20px 0;
}

.pricing-features {
    list-style: none;
    font-size: 14px;
    color: var(--text-on-green);
    line-height: 2;
    margin-bottom: 20px;
}

.pricing-cta {
    width: 100%;
    text-align: center;
    padding: 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: none;
}

.pricing-featured .pricing-cta {
    background: var(--green);
    color: var(--text-on-green);
    border: none;
}

.pricing-note {
    font-size: 13px;
    color: var(--accent);
    text-align: center;
    margin-top: 48px;
}

/* ==================== BUBBLES ZONE ==================== */
.bubbles-zone {
    position: relative;
    overflow: hidden;
}

#bubbles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* ==================== SECTION 9: FAQ ==================== */
.faq {
    background: var(--bg-dark);
    padding: 100px 40px;
    color: var(--bg-light);
}

.faq .section-title {
    color: var(--bg-light);
    margin-bottom: 48px;
}

.faq-container {
    max-width: 680px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(241, 244, 241, 0.07);
    padding: 20px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: none;
    border: none;
    font-family: "Syne", sans-serif;
    font-size: 17px;
    color: var(--bg-light);
    cursor: none;
    padding: 0;
    text-align: left;
    transition: color 200ms ease;
}

.faq-question:hover {
    color: var(--green);
}

.faq-chevron {
    color: var(--green);
    font-size: 20px;
    transition: transform 300ms ease;
}

.faq-item.active .faq-chevron {
    transform: rotate(90deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 400ms cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-answer p {
    padding-top: 12px;
    font-size: 15px;
    color: rgba(241, 244, 241, 0.55);
    line-height: 1.7;
}

/* ==================== SECTION 10: FINAL CTA ==================== */
.final-cta {
    background: var(--bg-dark);
    padding: 120px 40px;
    text-align: center;
    color: var(--bg-light);
}

.final-cta h2 {
    font-size: clamp(32px, 5vw, 52px);
    color: var(--bg-light);
    line-height: 1.15;
    max-width: 620px;
    margin: 0 auto 16px;
}

.final-cta > p:first-of-type {
    font-size: 17px;
    color: rgba(241, 244, 241, 0.55);
}

.final-cta .cta-primary {
    margin-top: 36px;
    animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(151, 201, 60, 0.45);
    }
    50% {
        box-shadow: 0 0 0 16px rgba(151, 201, 60, 0);
    }
}

.cta-subtext {
    font-size: 13px;
    color: rgba(241, 244, 241, 0.35);
    margin-top: 12px;
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--bg-dark);
    border-top: 1px solid rgba(241, 244, 241, 0.07);
    padding: 60px 40px 32px;
    color: var(--bg-light);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    max-width: 1080px;
    margin: 0 auto 40px;
}

.footer-col h4 {
    font-family: "Syne", sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: var(--bg-light);
    margin-bottom: 8px;
}

.footer-col > p {
    font-size: 13px;
    color: var(--accent);
}

.social-icons {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.social-icons a {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    text-decoration: none;
    font-size: 12px;
    transition: color 200ms ease;
}

.social-icons a:hover {
    color: var(--green);
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.footer-nav a {
    font-size: 14px;
    color: var(--accent);
    text-decoration: none;
    transition: color 200ms ease;
}

.footer-nav a:hover {
    color: var(--bg-light);
}

.footer-email {
    font-size: 14px;
    color: var(--bg-light);
}

.footer-availability {
    font-size: 12px;
    color: var(--accent);
    margin-top: 6px;
}

.footer-bottom {
    border-top: 1px solid rgba(241, 244, 241, 0.05);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 11px;
    color: var(--accent);
}

/* ==================== CURSOR SPOTLIGHT ==================== */
.spotlight-section {
    position: relative;
    overflow: hidden;
    --spot-x: -9999px;
    --spot-y: -9999px;
}

.spotlight-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    background: radial-gradient(
        250px circle at var(--spot-x) var(--spot-y),
        rgba(170, 215, 80, 0.18) 0%,
        rgba(155, 205, 65, 0.12) 12%,
        rgba(151, 201, 60, 0.07) 24%,
        rgba(151, 201, 60, 0.035) 36%,
        rgba(151, 201, 60, 0.015) 48%,
        rgba(151, 201, 60, 0.005) 60%,
        rgba(151, 201, 60, 0.001) 72%,
        transparent 84%
    );
    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent,
        black 120px,
        black calc(100% - 120px),
        transparent
    );
    mask-image: linear-gradient(
        to bottom,
        transparent,
        black 120px,
        black calc(100% - 120px),
        transparent
    );
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.spotlight-section.spotlight-active::before {
    opacity: 1;
}

/* ==================== GLOBAL ANIMATIONS ==================== */
.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 600ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .solution-content,
    .feature-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .navbar-center {
        gap: 16px;
    }

    .nav-link {
        font-size: 14px;
    }

    /* -- Hero (tablet) -- */
    .hero-text {
        padding-bottom: 20px;
    }

    .hero-title {
        margin-top: 16px;
    }

    .hero-subtext {
        margin-top: 12px;
        margin-bottom: 12px;
    }

    .hero-video-container {
        margin-top: 4px;
    }
}

@media (max-width: 768px) {
    body,
    a,
    button {
        cursor: auto;
    }

    #cursor {
        display: none;
    }

    .spotlight-section::before {
        display: none;
    }

    /* -- Global mobile -- */
    .section-title {
        font-size: 28px;
        padding: 0 4px;
    }

    .section-subtitle {
        font-size: 14px;
        margin-bottom: 32px;
    }

    /* -- Navbar -- */
    .navbar-container {
        padding: 10px 16px;
        gap: 14px;
    }

    .navbar-right {
        display: flex;
    }

    .navbar-center {
        display: flex;
        gap: 12px;
        align-items: center;
    }

    .language-dropdown {
        display: flex;
        align-items: center;
    }

    .language-btn {
        display: inline-flex;
        align-items: center;
        padding: 0;
    }

    .nav-link-desktop-only {
        display: inline-flex;
    }

    .nav-link-mobile-only {
        display: none;
    }

    .nav-link {
        font-size: 14px;
        white-space: nowrap;
    }

    .nav-link[href="#how-it-works"] {
        display: none !important;
    }

    .hamburger {
        display: none;
    }

    .mobile-menu {
        display: none !important;
    }

    .navbar-logo {
        font-size: 14px;
    }

    /* -- Hero -- */
    .hero {
        height: 100svh;
    }

    .hero-text {
        height: 38%;
        padding-top: 80px;
        padding-bottom: 12px;
    }

    .hero-title {
        max-width: 620px;
        font-size: 32px;
        margin-top: 16px;
    }

    .hero-subtext {
        margin-top: 12px;
        margin-bottom: 12px;
    }

    .hero-title-secondary {
        white-space: normal;
    }

    .hero-video-container {
        height: 62%;
        margin-top: 0;
    }

    .hero-video {
        width: 100%;
        height: 100%;
        margin-left: 0;
    }

    .hero-video-cta {
        top: 14px;
        width: 100%;
        padding: 0 16px;
    }

    .hero-ctas {
        flex-direction: row;
        width: auto;
        max-width: none;
        gap: 12px;
    }

    .hero-cta-note {
        font-size: 12px;
    }

    .hero-ctas .cta-primary,
    .hero-ctas .cta-ghost {
        width: auto;
        min-width: 130px;
        padding: 12px 26px;
        text-align: center;
        border-radius: 999px;
    }

    /* -- Problem -- */
    .problem {
        padding: 64px 20px;
    }

    .problem-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .problem-card {
        padding: 32px 24px;
    }

    /* -- Ticker -- */
    .ticker {
        height: 68px;
    }

    .ticker-card {
        padding: 8px 12px;
        height: 46px;
        gap: 8px;
    }

    .ticker-number {
        font-size: 18px;
    }

    .ticker-label {
        font-size: 11px;
    }

    /* -- Reality / Solution -- */
    .reality {
        padding: 64px 20px;
    }

    .solution-divider {
        margin: 40px auto;
    }

    /* -- How It Works -- */
    .how-it-works {
        padding: 64px 20px;
    }

    .hiw-cards {
        flex-direction: column;
        gap: 0;
        margin-top: 32px;
    }

    .hiw-card {
        padding: 28px 0;
    }

    .hiw-divider {
        width: 100%;
        height: 1px;
        align-self: stretch;
    }

    /* -- Features (card-based mobile layout — dark theme) -- */
    .features {
        padding: 64px 20px;
    }

    .features .section-title {
        margin-bottom: 32px;
    }

    .features-list {
        max-width: none;
    }

    .feature-row {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 20px;
        background: var(--white);
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    }

    .feature-visual {
        width: 100%;
        height: 210px;
        border-radius: 0;
        order: -1;
        overflow: hidden;
    }

    .feature-row-reverse .feature-visual {
        order: -1;
    }

    .feature-text {
        padding: 20px 22px 26px;
        text-align: left;
        max-width: none;
        margin: 0;
    }

    .feature-label {
        margin-bottom: 4px;
    }

    .feature-text h3 {
        font-size: 20px;
        line-height: 1.25;
    }

    .feature-text p {
        font-size: 14px;
        line-height: 1.6;
        margin-top: 8px;
    }

    /* -- Services -- */
    .services {
        padding: 64px 16px;
    }

    .services-slider {
        margin-top: 32px;
    }

    .services-track {
        gap: 10px;
    }

    .service-box {
        min-width: calc((100% - 10px) / 2);
        max-width: calc((100% - 10px) / 2);
        padding: 18px 16px;
    }

    .service-label {
        font-size: 14px;
    }

    .service-motives {
        font-size: 11px;
        line-height: 1.7;
    }

    .service-icon {
        font-size: 14px;
    }

    .services-arrow {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }

    .services-arrow-left {
        left: -4px;
    }

    .services-arrow-right {
        right: -4px;
    }

    /* -- Pricing -- */
    .pricing {
        padding: 64px 20px;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .pricing-card {
        padding: 28px 24px;
    }

    .pricing-amount {
        font-size: 44px;
    }

    .pricing-cta {
        border-radius: 999px;
    }

    /* -- FAQ -- */
    .faq {
        padding: 64px 20px;
    }

    .faq-question {
        font-size: 15px;
    }

    .faq-answer p {
        font-size: 14px;
    }

    /* -- Final CTA -- */
    .final-cta {
        padding: 80px 20px;
    }

    .final-cta .cta-primary {
        border-radius: 999px;
    }

    /* -- Footer -- */
    .footer {
        padding: 48px 20px 24px;
    }

    .footer-nav {
        gap: 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        transition-duration: 1ms !important;
        animation-duration: 1ms !important;
    }
}

/* ==================== FEATURE VISUALS: CUSTOM 3D COMPONENTS ==================== */

/* Disable default gradient overlay */
/* =====================================================
   FEATURE VISUALS — SHARED AMBIENT SYSTEM
   ===================================================== */

/* Dot-grid background overlay */
.fv-dot-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.055) 1px,
        transparent 1px
    );
    background-size: 22px 22px;
    pointer-events: none;
    z-index: 0;
    border-radius: 16px;
}

/* Ambient colour blobs — act as light sources */
.fv-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(52px);
}
.fv-glow--purple {
    background: #3b1f6e;
    width: 170px;
    height: 170px;
    opacity: 0.5;
}
.fv-glow--teal {
    background: #0f3d3a;
    width: 150px;
    height: 150px;
    opacity: 0.45;
}
.fv-glow--green {
    background: rgba(151, 201, 60, 0.35);
    width: 130px;
    height: 130px;
    opacity: 0.55;
}

/* Circuit trace lines */
.fv-trace {
    position: absolute;
    height: 1px;
    pointer-events: none;
    z-index: 1;
}
.fv-trace--a {
    width: 55%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(201, 122, 80, 0.38),
        transparent
    );
    transform: rotate(-27deg);
    top: 38%;
    left: 5%;
}
.fv-trace--b {
    width: 48%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(151, 201, 60, 0.32),
        transparent
    );
    transform: rotate(21deg);
    bottom: 30%;
    right: 6%;
}

/* Glowing anchor node dot */
.fv-node {
    position: absolute;
    width: 7px;
    height: 7px;
    background: rgba(201, 122, 80, 0.95);
    border-radius: 50%;
    box-shadow:
        0 0 6px 2px rgba(201, 122, 80, 0.55),
        0 0 14px 4px rgba(201, 122, 80, 0.25);
    z-index: 2;
    pointer-events: none;
}

/* =====================================================
   GLASS CARD BASE — used by .fv-float & .fv-tile
   ===================================================== */
.fv-float,
.fv-tile {
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px) saturate(1.5);
    -webkit-backdrop-filter: blur(20px) saturate(1.5);
    border-radius: 14px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.13),
        0 20px 55px rgba(0, 0, 0, 0.55),
        0 4px 14px rgba(0, 0, 0, 0.3);
}

/* =====================================================
   VISUAL 1 — MOBILE FIRST
   ===================================================== */

.fv-phone-wrap {
    position: absolute;
    top: 46%;
    left: 32%;
    transform: translate(-50%, -50%) perspective(700px) rotateX(10deg)
        rotateY(-22deg) rotateZ(2deg);
    z-index: 2;
    filter: drop-shadow(0 44px 64px rgba(0, 0, 0, 0.92));
}

.fv-phone {
    width: 155px;
    height: 308px;
    background: linear-gradient(155deg, #323532 0%, #181a18 100%);
    border: 1.5px solid rgba(255, 255, 255, 0.14);
    border-radius: 32px;
    position: relative;
    transform-style: preserve-3d;
    box-shadow:
        inset 0 0 0 8px #0e100e,
        -7px 12px 28px rgba(0, 0, 0, 0.7);
}

.fv-phone-notch {
    position: absolute;
    top: 11px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 6px;
    background: #0e100e;
    border-radius: 10px;
    z-index: 2;
}

.fv-phone-screen {
    position: absolute;
    top: 19px;
    left: 8px;
    right: 8px;
    bottom: 10px;
    background: #0a0c0a;
    border-radius: 24px;
    overflow: visible;
    padding: 12px 9px 9px;
    display: flex;
    flex-direction: column;
    gap: 0;
    transform-style: preserve-3d;
    perspective: 400px;
}

/* ---- Fake website mockup inside phone ---- */
.fv-ws-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 7px;
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.07);
    margin-bottom: 8px;
    flex-shrink: 0;
}

.fv-ws-logo {
    width: 28px;
    height: 4px;
    background: rgba(255, 255, 255, 0.55);
    border-radius: 2px;
}

.fv-ws-nav-btn {
    width: 22px;
    height: 7px;
    background: var(--green);
    border-radius: 3px;
    box-shadow: 0 0 6px rgba(151, 201, 60, 0.5);
    opacity: 0.9;
}

.fv-ws-hero {
    flex-shrink: 0;
    margin-bottom: 9px;
    transform: translateZ(6px);
    position: relative;
    z-index: 2;
}

.fv-ws-headline {
    font-family: "Syne", sans-serif;
    font-size: 8px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.3;
    margin: 0 0 4px;
}

.fv-ws-sub {
    font-size: 4.5px;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.5;
    margin: 0 0 6px;
    font-family: "DM Sans", sans-serif;
}

.fv-ws-cta {
    width: 44px;
    height: 9px;
    background: var(--green);
    border-radius: 4px;
    box-shadow:
        0 0 10px rgba(151, 201, 60, 0.75),
        0 0 24px rgba(151, 201, 60, 0.35);
    transform: translateZ(14px);
    position: relative;
    z-index: 3;
}

.fv-ws-cards {
    display: flex;
    gap: 4px;
    margin-bottom: 8px;
    flex-shrink: 0;
    transform: translateZ(10px);
    position: relative;
    z-index: 3;
}

.fv-ws-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.07);
    border: 0.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 5px;
    padding: 5px 5px 5px;
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.5),
        0 1px 0 rgba(255, 255, 255, 0.08) inset;
}

.fv-ws-card-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    margin-bottom: 4px;
    box-shadow: 0 0 5px rgba(151, 201, 60, 0.6);
}

.fv-ws-card-dot--dim {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: none;
}

.fv-ws-card-line {
    height: 2px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 1px;
    margin-bottom: 2px;
}

.fv-ws-card-line--s {
    width: 60%;
    background: rgba(255, 255, 255, 0.1);
}

.fv-ws-img {
    background: rgba(255, 255, 255, 0.05);
    border: 0.5px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    height: 36px;
    margin-bottom: 8px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    transform: translateZ(5px);
    z-index: 2;
}

.fv-ws-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(151, 201, 60, 0.06) 0%,
        transparent 55%
    );
}

.fv-ws-stats {
    display: flex;
    justify-content: space-between;
    flex-shrink: 0;
    transform: translateZ(16px);
    position: relative;
    z-index: 4;
}

.fv-ws-stat-val {
    font-family: "Syne", sans-serif;
    font-size: 8px;
    font-weight: 700;
    color: var(--green);
    margin: 0 0 1px;
    text-shadow:
        0 0 8px rgba(151, 201, 60, 0.75),
        0 0 20px rgba(151, 201, 60, 0.35);
}

.fv-ws-stat-lbl {
    font-size: 3.5px;
    color: rgba(255, 255, 255, 0.28);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
    font-family: "DM Sans", sans-serif;
}

/* Phone screen text */
.fv-psc-label {
    font-family: "DM Sans", sans-serif;
    font-size: 5.5px;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin: 0 0 2px;
}

.fv-psc-score {
    font-family: "Syne", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--green);
    line-height: 1;
    margin: 0 0 1px;
    text-shadow: 0 0 14px rgba(151, 201, 60, 0.65);
}

.fv-psc-sub {
    font-size: 5px;
    color: rgba(255, 255, 255, 0.28);
    margin: 0 0 5px;
}

.fv-psc-bar {
    height: 2.5px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 2px;
    margin-bottom: 7px;
    overflow: hidden;
}

.fv-psc-fill {
    height: 100%;
    width: 84%;
    background: var(--green);
    border-radius: 2px;
    box-shadow: 0 0 7px rgba(151, 201, 60, 0.75);
}

.fv-psc-stat {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.fv-psc-big {
    font-family: "Syne", sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #e8e8e8;
}

.fv-psc-badge {
    font-size: 5.5px;
    background: rgba(151, 201, 60, 0.18);
    color: var(--green);
    border: 1px solid rgba(151, 201, 60, 0.28);
    border-radius: 4px;
    padding: 1px 4px;
    letter-spacing: 0.04em;
}

/* Floating glass cards */
.fv-float {
    position: absolute;
    z-index: 4;
    padding: 11px 13px;
}

.fv-float--a {
    top: 10px;
    right: 10px;
    width: 158px;
    transform: none;
}

.fv-float--b {
    top: 50%;
    right: 10px;
    width: 158px;
    transform: translateY(-50%);
}

.fv-float--c {
    bottom: 10px;
    right: 10px;
    width: 158px;
    transform: none;
}

/* Float card internals */
.fv-float-title {
    font-family: "DM Sans", sans-serif;
    font-size: 7px;
    color: rgba(255, 255, 255, 0.38);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin: 0 0 8px;
}

.fv-float-row {
    display: flex;
    gap: 14px;
}

.fv-float-row div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.fv-float-row b {
    font-family: "Syne", sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #e8e8e8;
    font-style: normal;
    text-shadow: 0 0 10px rgba(151, 201, 60, 0.35);
}

.fv-float-row span {
    font-size: 6px;
    color: rgba(255, 255, 255, 0.3);
    font-family: "DM Sans", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Performance row (card B) */
.fv-perf-row {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin: 3px 0 2px;
}

.fv-perf-big {
    font-family: "Syne", sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--green);
    text-shadow: 0 0 16px rgba(151, 201, 60, 0.7);
}

.fv-float-sublabel {
    font-size: 6.5px;
    color: rgba(255, 255, 255, 0.28);
    margin: 0 0 4px;
    font-family: "DM Sans", sans-serif;
}

/* Waveform SVG */
.fv-waveform {
    width: 100%;
    height: 26px;
    display: block;
    margin: 4px 0 7px;
}

/* Action rows (cards B, C) */
.fv-float-action {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 8px;
    color: rgba(255, 255, 255, 0.52);
    padding: 4px 0;
    font-family: "DM Sans", sans-serif;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.fv-float-action:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* Green CTA chip */
.fv-float-action--green {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 8px;
    font-family: "DM Sans", sans-serif;
    color: var(--green);
    background: rgba(151, 201, 60, 0.12);
    border: 1px solid rgba(151, 201, 60, 0.3);
    border-radius: 8px;
    padding: 5px 10px;
    margin-top: 4px;
    width: 100%;
    box-sizing: border-box;
}

/* Session dot indicators */
.fv-session-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
    display: inline-block;
}
.fv-session-dot--green {
    background: var(--green);
    box-shadow: 0 0 5px 1px rgba(151, 201, 60, 0.55);
}
.fv-session-dot--orange {
    background: rgba(201, 122, 80, 0.9);
    box-shadow: 0 0 5px 1px rgba(201, 122, 80, 0.5);
}
.fv-session-dot--dim {
    background: rgba(255, 255, 255, 0.25);
}

.fv-session-time {
    margin-left: auto;
    font-size: 7px;
    color: rgba(255, 255, 255, 0.28);
}

/* =====================================================
   VISUAL 2 — SPEED DESIGN
   ===================================================== */

/* Neon laser beam */
.fv-beam {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.fv-beam::after {
    content: "";
    position: absolute;
    top: 66%;
    left: -6%;
    width: 74%;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(151, 201, 60, 0.55) 20%,
        #c8ff00 48%,
        rgba(151, 201, 60, 0.55) 78%,
        transparent
    );
    transform: rotate(-36deg);
    transform-origin: 0% 50%;
    box-shadow:
        0 0 6px 1px rgba(200, 255, 0, 0.95),
        0 0 18px 5px rgba(151, 201, 60, 0.75),
        0 0 42px 12px rgba(151, 201, 60, 0.38),
        0 0 72px 22px rgba(151, 201, 60, 0.14);
}

/* Speed tiles */
.fv-tile {
    position: absolute;
    padding: 10px 13px;
    z-index: 2;
}

.fv-tile--main {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 136px;
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        0 30px 70px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.06);
    z-index: 3;
}

.fv-tile--tl {
    top: 16px;
    left: 14px;
    width: 90px;
    transform: rotate(-2.5deg) translateY(-2px);
}
.fv-tile--tr {
    top: 16px;
    right: 14px;
    width: 90px;
    transform: rotate(1.8deg) translateY(3px);
}
.fv-tile--bl {
    bottom: 16px;
    left: 14px;
    width: 90px;
    transform: rotate(2.2deg) translateY(-1px);
}
.fv-tile--br {
    bottom: 16px;
    right: 14px;
    width: 90px;
    transform: rotate(-1.6deg) translateY(2px);
}
.fv-tile--ex1 {
    bottom: 16px;
    left: 112px;
    width: 80px;
    transform: rotate(1.2deg);
    z-index: 2;
}
.fv-tile--ex2 {
    top: 16px;
    right: 112px;
    width: 80px;
    transform: rotate(-2deg);
    z-index: 2;
}

/* Tile text */
.fv-tile-lbl {
    font-family: "DM Sans", sans-serif;
    font-size: 6px;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.13em;
    margin: 0 0 3px;
}

.fv-tile-score {
    font-family: "Syne", sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--green);
    line-height: 1;
    margin: 0 0 2px;
    text-shadow: 0 0 18px rgba(151, 201, 60, 0.7);
}

.fv-tile-fasttag {
    font-family: "DM Sans", sans-serif;
    font-size: 7.5px;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 5px;
}

.fv-tile-sub {
    font-size: 8px;
    color: rgba(255, 255, 255, 0.32);
    margin: 0;
}

.fv-tile-sub strong {
    color: rgba(255, 255, 255, 0.7);
}

.fv-tile-val {
    font-family: "Syne", sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #e8e8e8;
    line-height: 1;
    margin: 0 0 2px;
}

/* ---- Speed grid — centred symmetric layout ---- */
.fv-speed-grid {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
    width: 270px;
    z-index: 3;
}

/* All tiles inside the grid flow naturally — no absolute positioning */
.fv-speed-grid .fv-tile {
    position: static;
    padding: 8px 10px;
    transform: none !important;
}

/* Main tile spans 2 columns — col 3 is used by the gauge */
.fv-speed-grid .fv-tile--main {
    grid-column: 1 / 3;
    grid-row: 2;
    padding: 10px 14px;
    transform: none !important;
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        0 24px 60px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(255, 255, 255, 0.06);
}

.fv-tile-tag {
    font-size: 7px;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0;
}

/* =====================================================
   VISUAL 3 — ARCHITECTURE / FUNNEL  (clean vertical stack)
   ===================================================== */

/* ---- Circular speedometer gauge — grid item col 3 row 2 ---- */
.fv-speed-gauge {
    grid-column: 3 / 4;
    grid-row: 2;
    position: relative;
    margin-left: -22px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.11);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    border-radius: 12px;
    padding: 8px 8px 6px;
    z-index: 4;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 4px 14px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.fv-gauge-lbl {
    font-family: "DM Sans", sans-serif;
    font-size: 7px;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin: 0 0 6px;
    text-align: center;
}

.fv-gauge-svg {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 6px;
}

.fv-gauge-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fv-gauge-slow {
    font-family: "DM Sans", sans-serif;
    font-size: 6px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(200, 70, 70, 0.65);
}

.fv-gauge-fast {
    font-family: "DM Sans", sans-serif;
    font-size: 6px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(151, 201, 60, 0.75);
}

.fv-gauge-val-wrap {
    text-align: center;
}

.fv-gauge-val {
    font-family: "Syne", sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--green);
    margin: 0;
    line-height: 1;
    text-shadow:
        0 0 10px rgba(151, 201, 60, 0.65),
        0 0 24px rgba(151, 201, 60, 0.3);
}

.fv-gauge-valsub {
    font-family: "DM Sans", sans-serif;
    font-size: 5.5px;
    color: rgba(255, 255, 255, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 3px 0 0;
}

.fv-funnel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 18px 22px;
    gap: 0;
    overflow: hidden;
}

/* Stack is a normal flex column — no absolute positioning */
.fv-stack {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
    position: static;
    height: auto;
    transform: none;
    transform-style: flat;
}

/* Base card — every layer is a clean equal-height row */
.fv-layer {
    position: static;
    width: 100%;
    height: 46px;
    background: rgba(18, 22, 18, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    transform: none;
    opacity: 1;
    z-index: auto;
    flex-shrink: 0;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.45);
}

/* Conversion card — same height, green accent only */
.fv-layer--5 {
    height: 46px;
    flex-direction: row;
    align-items: center;
    padding: 0 18px;
    background: rgba(151, 201, 60, 0.12);
    border-color: rgba(151, 201, 60, 0.5);
    box-shadow:
        inset 0 1px 0 rgba(151, 201, 60, 0.2),
        0 0 20px rgba(151, 201, 60, 0.3),
        0 0 48px rgba(151, 201, 60, 0.14),
        0 2px 8px rgba(0, 0, 0, 0.4);
}

/* Layer name labels */
.fv-lname {
    font-family: "Syne", sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.82);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
}

.fv-layer--5 .fv-lname {
    color: var(--green);
    font-size: 11px;
    margin-bottom: 0;
    text-shadow: 0 0 10px rgba(151, 201, 60, 0.6);
}

/* Wireframe UI placeholders inside layers */
.fv-wire-ui {
    display: flex;
    align-items: center;
    gap: 5px;
}

.fv-wire-img {
    width: 34px;
    height: 26px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    flex-shrink: 0;
}

.fv-wire-lines {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.fv-wire-lines i {
    display: block;
    height: 2.5px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.2);
    font-style: normal;
}

.fv-wire-lines i:nth-child(1) {
    width: 46px;
}
.fv-wire-lines i:nth-child(2) {
    width: 32px;
}
.fv-wire-lines i:nth-child(3) {
    width: 40px;
}

/* CTA button inside conversion layer */
.fv-lcta {
    font-family: "Syne", sans-serif;
    font-size: 9px;
    font-weight: 700;
    background: var(--green);
    color: #0f110f;
    border-radius: 6px;
    padding: 6px 14px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    letter-spacing: 0.05em;
    box-shadow:
        0 0 14px rgba(151, 201, 60, 0.55),
        0 0 28px rgba(151, 201, 60, 0.22),
        0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Dashed arc connectors between layers */
.fv-arc {
    position: absolute;
    width: 32px;
    height: 32px;
    border: 1.5px dashed rgba(151, 201, 60, 0.45);
    border-radius: 50%;
    right: -10px;
    top: 5px;
    clip-path: inset(0 0 0 44%);
    pointer-events: none;
    transform-style: preserve-3d;
}

/* Arcs hidden in 2-D deck mode — no translateZ needed */
.fv-arc {
    display: none;
}

/* =====================================================
   RESPONSIVE — MOBILE (max 768px)
   ===================================================== */
@media (max-width: 768px) {
    /* Phone visual — scale down + simplify */
    .fv-phone-wrap {
        top: 50%;
        left: 28%;
        transform: translate(-50%, -50%) perspective(600px) rotateX(7deg)
            rotateY(-16deg) scale(0.72);
    }

    .fv-phone {
        width: 132px;
        height: 258px;
    }

    /* Float cards — stack tighter on small screen */
    .fv-float--a {
        top: 6px;
        right: 6px;
        width: 122px;
        padding: 8px 10px;
        transform: none;
    }

    .fv-float--b {
        top: 50%;
        right: 6px;
        width: 122px;
        padding: 8px 10px;
        transform: translateY(-50%);
    }

    .fv-float--c {
        bottom: 6px;
        right: 6px;
        width: 122px;
        padding: 8px 10px;
        transform: none;
    }

    /* Speed tiles — compact */
    .fv-tile--main {
        width: 116px;
        padding: 9px 11px;
    }

    .fv-tile-score {
        font-size: 26px;
    }

    .fv-tile--tl {
        top: 10px;
        left: 10px;
        width: 78px;
        padding: 8px 10px;
        transform: none;
    }
    .fv-tile--tr {
        top: 10px;
        right: 10px;
        width: 78px;
        padding: 8px 10px;
        transform: none;
    }
    .fv-tile--bl {
        bottom: 10px;
        left: 10px;
        width: 78px;
        padding: 8px 10px;
        transform: none;
    }
    .fv-tile--br {
        bottom: 10px;
        right: 10px;
        width: 78px;
        padding: 8px 10px;
        transform: none;
    }
    .fv-tile--ex1,
    .fv-tile--ex2 {
        display: none;
    }

    /* Speed grid — compact on mobile */
    .fv-speed-grid {
        width: 164px;
        gap: 4px;
    }

    .fv-speed-grid .fv-tile {
        padding: 5px 6px;
    }

    .fv-speed-grid .fv-tile .fv-tile-lbl {
        font-size: 5.5px;
        margin: 0 0 2px;
        letter-spacing: 0.1em;
    }

    .fv-speed-grid .fv-tile .fv-tile-val {
        font-size: 13px;
    }

    .fv-speed-grid .fv-tile .fv-tile-tag {
        font-size: 5.5px;
    }

    .fv-speed-grid .fv-tile--main {
        padding: 7px 10px;
    }

    .fv-speed-grid .fv-tile--main .fv-tile-score {
        font-size: 20px;
    }

    .fv-speed-grid .fv-tile--main .fv-tile-fasttag {
        font-size: 6px;
        margin: 0 0 3px;
    }

    .fv-speed-grid .fv-tile--main .fv-tile-sub {
        font-size: 6.5px;
    }

    /* Speed gauge — compact on mobile */
    .fv-speed-gauge {
        padding: 6px 6px 5px;
        border-radius: 10px;
        margin-left: -20px;
    }

    .fv-gauge-lbl {
        font-size: 5.5px;
        margin: 0 0 3px;
    }

    .fv-gauge-svg {
        margin-bottom: 3px;
    }

    .fv-gauge-val {
        font-size: 12px;
    }

    .fv-gauge-valsub {
        font-size: 4.5px;
        margin: 1px 0 0;
    }

    .fv-gauge-slow,
    .fv-gauge-fast {
        font-size: 5px;
    }

    /* Funnel — compact vertical stack on mobile */
    .fv-funnel {
        padding: 12px 14px;
    }

    .fv-stack {
        gap: 5px;
    }

    .fv-layer {
        height: 32px;
        padding: 0 12px;
        border-radius: 8px;
    }

    .fv-layer--5 {
        height: 32px;
        padding: 0 12px;
    }

    .fv-lname {
        font-size: 8px;
        letter-spacing: 0.06em;
    }

    .fv-layer--5 .fv-lname {
        font-size: 8px;
    }

    .fv-lcta {
        font-size: 7px;
        padding: 3px 8px;
        border-radius: 5px;
    }

    /* Glows — smaller on mobile */
    .fv-glow--purple {
        width: 100px;
        height: 100px;
    }
    .fv-glow--teal {
        width: 90px;
        height: 90px;
    }
    .fv-glow--green {
        width: 80px;
        height: 80px;
    }
}
