/* ─── RESET & ROOT ─────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden
}

body {
    font-family: var(--font-d);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden
}

/* ─── NOISE OVERLAY ─────────────────────────────────────────── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
    opacity: .4;
}

/* ══════════════════════════════
   NAVBAR
══════════════════════════════ */

/* ══════════════════════════════════
NAVBAR
══════════════════════════════════ */
.nav-wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(var(--rgb-bg-deep), .85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: background .3s, border-color .3s;
}

.navbar {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 2rem;
    height: var(--nav-h);
}

.navbar.scrolled {
    background: rgba(var(--rgb-bg-deep), .98);
}

.navbar .logo {
    flex-shrink: 0;
    font-size: 1.25rem;
    font-weight: 800;
    font-family: var(--font-d);
    letter-spacing: -.02em;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text);
    justify-self: start;
}

.navbar .logo .logo-icon {
    width: 34px;
    height: 34px;
    background: var(--grad);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar .logo .logo-icon i {
    font-size: 15px;
    color: var(--white);
    line-height: 1;
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    justify-self: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-size: .9rem;
    font-weight: 500;
    padding: 1.5rem 1.25rem;
    cursor: pointer;
    transition: color .2s;
    white-space: nowrap;
    color: var(--text-soft);
    display: block;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-self: end;
}

.nav-globe {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .25s;
}

.nav-globe:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.nav-globe svg {
    width: 20px;
    height: 20px;
}

.nav-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 50px;
    background: var(--accent);
    color: var(--white);
    font-size: .85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    transition: all .3s;
    text-decoration: none;
}

.nav-cta-btn:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(var(--rgb-accent), .35);
}

.nav-cta-btn i {
    font-size: 14px;
    line-height: 1;
}

/* ─── Mobile nav toggle ─── */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    padding: 8px;
    justify-self: end;
    z-index: 1002;
    border-radius: 8px;
    transition: background .2s;
}

.mobile-toggle:hover {
    background: rgba(var(--rgb-white), .06);
}

@media (max-width: 900px) {
    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 1.25rem;
    }

    .navbar-links {
        display: none;
    }

    .navbar-links.mobile-open {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        position: fixed;
        top: var(--nav-h);
        left: 0;
        right: 0;
        padding: 12px 1.25rem 1.25rem;
        z-index: 1001;
        background: rgba(var(--rgb-card), 0.97);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        border-bottom: 1px solid rgba(var(--rgb-white), 0.08);
        max-height: min(70vh, calc(100dvh - var(--nav-h)));
        overflow-y: auto;
        box-shadow: 0 24px 48px rgba(var(--rgb-black), 0.45);
    }

    .mobile-toggle {
        display: block;
    }

    .nav-right {
        display: none;
    }

    .navbar-links.mobile-open .nav-item {
        width: 100%;
        border-bottom: 1px solid var(--border);
    }

    .navbar-links.mobile-open .nav-item:last-child {
        border-bottom: none;
    }

    .navbar-links.mobile-open .nav-link {
        padding: 1rem 0;
        white-space: normal;
    }

    .navbar-links.mobile-open .nav-link.active::after {
        display: none;
    }

    .mega-drop-inner {
        grid-template-columns: 1fr;
    }

    .drop-left {
        padding: 40px 30px;
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .drop-right {
        padding: 30px;
    }

    .drop-categories {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .drop-featured-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

body.mobile-nav-open {
    overflow: hidden;
}

/* ─── FULLSCREEN MEGA DROPDOWN ─── */
.mega-drop-fullscreen {
    position: fixed;
    top: var(--nav-h);
    padding: 0 2rem 2rem 2rem;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s ease, visibility .4s;
}

.mega-drop-fullscreen.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mega-drop-fullscreen::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(var(--rgb-bg-deep), .6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.mega-drop-container {
    position: relative;
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
}

.mega-drop-inner {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
    min-height: calc(100vh - var(--nav-h) - 2rem);
    background: rgba(var(--rgb-card), .5);
    backdrop-filter: blur(40px) saturate(1.4);
    -webkit-backdrop-filter: blur(40px) saturate(1.4);
    border: 1px solid rgba(var(--rgb-white), .08);
    border-top: none;
    border-radius: 0 0 var(--r-xl) var(--r-xl);
    box-shadow: 0 25px 80px rgba(var(--rgb-black), .5), 
                inset 0 1px 0 rgba(var(--rgb-white), .05);
    transform: translateY(-20px);
    opacity: 0;
    transition: transform .4s cubic-bezier(.22, 1, .36, 1), opacity .4s ease;
}

.mega-drop-fullscreen.open .mega-drop-inner {
    transform: translateY(0);
    opacity: 1;
}

/* Left side - Title & CTA */
.drop-left {
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid var(--border);
    background: rgba(var(--rgb-black), .2);
}

.drop-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.drop-badge::before {
    content: '';
    width: 20px;
    height: 20px;
    background: var(--grad);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.drop-tagline {
    font-family: var(--font-d);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.02em;
    margin-bottom: 1rem;
    color: var(--text);
}

.drop-desc {
    font-size: .95rem;
    color: var(--text-soft);
    line-height: 1.65;
    margin-bottom: 2rem;
    max-width: 380px;
}

.drop-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    background: var(--accent);
    color: var(--white);
    font-size: .85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    transition: all .3s;
    text-decoration: none;
    width: fit-content;
}

.drop-cta-btn:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(var(--rgb-accent), .35);
}

.drop-cta-btn i {
    font-size: 16px;
    line-height: 1;
}

/* Right side - Categories & Featured */
.drop-right {
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.drop-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.drop-cat-label {
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--muted);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

.drop-cat-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.drop-cat-items li a {
    font-size: .95rem;
    color: var(--text-soft);
    transition: color .2s, padding-left .2s;
    display: block;
    padding: 4px 0;
}

.drop-cat-items li a:hover {
    color: var(--accent);
    padding-left: 8px;
}

/* Featured section */
.drop-featured {
    margin-top: auto;
}

.drop-featured-label {
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--muted);
    margin-bottom: 16px;
}

.drop-featured-card {
    background: rgba(var(--rgb-accent), .06);
    border: 1px solid rgba(var(--rgb-accent), .15);
    border-radius: var(--r-md);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.drop-featured-card h4 {
    font-family: var(--font-d);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text);
}

.drop-featured-card p {
    font-size: .85rem;
    color: var(--text-soft);
    line-height: 1.5;
    flex: 1;
}

.drop-featured-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .8rem;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    white-space: nowrap;
    transition: gap .2s;
}

.drop-featured-link:hover {
    gap: 12px;
}

.drop-featured-link i {
    flex-shrink: 0;
    font-size: 15px;
    line-height: 1;
}

/* Body class when dropdown is open */
body.dropdown-open {
    overflow: hidden;
}

/* hover zone to keep dropdown open */
.nav-item {
    position: relative;
}


@media(max-width:900px) {
    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 1.25rem
    }

    .navbar-links {
        display: none
    }

    .navbar-links.mobile-open {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        position: fixed;
        top: var(--nav-h);
        left: 0;
        right: 0;
        padding: 12px 1.25rem 1.25rem;
        z-index: 1001;
        background: rgba(var(--rgb-card), 0.97);
        backdrop-filter: blur(30px);
        border-bottom: 1px solid rgba(var(--rgb-white), 0.08);
        max-height: min(70vh, calc(100dvh - var(--nav-h)));
        overflow-y: auto;
        box-shadow: 0 24px 48px rgba(var(--rgb-black), .45);
    }

    .mobile-toggle {
        display: block
    }

    .nav-right {
        display: none
    }

    .navbar-links.mobile-open .nav-item {
        width: 100%;
        border-bottom: 1px solid var(--border)
    }

    .navbar-links.mobile-open .nav-link {
        padding: 1rem 0
    }
}

body.mobile-nav-open {
    overflow: hidden
}

/* ─── HERO ──────────────────────────────────────────────── */
#home {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: calc(var(--nav-h) + 4rem) 5vw 6rem;
    text-align: center;
    overflow: hidden;
    background-color: var(--hero-bg);
}

.hero-video-wrap {
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0
}

.hero-video-wrap .hero-bg-video {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top center;
    pointer-events: none
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none
}

.hero-orb-1 {
    width: 600px;
    height: 600px;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(var(--rgb-accent), .22) 0%, transparent 70%);
    animation: orbFloat 8s ease-in-out infinite alternate;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    bottom: -50px;
    right: -100px;
    background: radial-gradient(circle, rgba(var(--rgb-accent), .12) 0%, transparent 70%);
    animation: orbFloat 10s ease-in-out infinite alternate-reverse;
}

@keyframes orbFloat {
    from {
        transform: translateX(-50%) translateY(0)
    }

    to {
        transform: translateX(-50%) translateY(-30px)
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .45rem 1rem;
    border: 1px solid var(--border-accent);
    border-radius: 50px;
    background: rgba(var(--rgb-accent), .08);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--purple-light);
    margin-bottom: 1.8rem;
    animation: fadeUp .8s cubic-bezier(.16, 1, .3, 1) both;
}

.hero-eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse 2s infinite
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(var(--rgb-accent), .6)
    }

    50% {
        box-shadow: 0 0 0 6px transparent
    }
}

.hero-h1 {
    margin-top: 33%;
    font-size: clamp(2.8rem, 7vw, 6rem);
    font-family:  'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -.03em;
    animation: fadeUp .8s cubic-bezier(.16, 1, .3, 1) .12s both;
}

.hero-h1 .grad-word {
    background: var(--grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    margin-top: 1.5rem;
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-soft);
    max-width: 600px;
    margin-inline: auto;
    line-height: 1.7;
    animation: fadeUp .8s cubic-bezier(.16, 1, .3, 1) .22s both;
}

.hero-btns {
    margin-top: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeUp .8s cubic-bezier(.16, 1, .3, 1) .32s both;
}

.btn-primary {
    padding: .9rem 2rem;
    background: var(--grad);
    border: none;
    border-radius: 50px;
    color: var(--white);
    font-size: .95rem;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: .02em;
    box-shadow: 0 0 32px rgba(var(--rgb-accent), .35);
    transition: transform .25s cubic-bezier(.16, 1, .3, 1), box-shadow .25s;
    text-decoration: none;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 48px rgba(var(--rgb-accent), .5)
}

.btn-secondary {
    padding: .9rem 2rem;
    background: var(--surface-mid);
    border: 1px solid var(--border-accent);
    border-radius: 50px;
    color: var(--text);
    font-size: .95rem;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: .02em;
    transition: transform .25s cubic-bezier(.16, 1, .3, 1), background .25s;
    text-decoration: none;
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    background: rgba(var(--rgb-accent), .15)
}

.hero-trust {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: fadeUp .8s cubic-bezier(.16, 1, .3, 1) .44s both;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: .45rem;
    font-size: .82rem;
    color: var(--muted);
    font-weight: 500
}

.hero-trust-item i {
    color: var(--accent);
    font-size: 14px;
    width: 1em;
    text-align: center;
}

.hero-card-visual {
    position: relative;
    z-index: 2;
    margin-top: 4rem;
    animation: fadeUp .8s cubic-bezier(.16, 1, .3, 1) .54s both
}

.hero-card-visual img {
    width: 340px;
    max-width: 80vw;
    border-radius: 20px;
    box-shadow: 0 0 80px rgba(var(--rgb-accent), .25), 0 40px 80px rgba(var(--rgb-black), .6);
    transform: perspective(1000px) rotateY(-8deg) rotateX(4deg);
    transition: transform .5s cubic-bezier(.16, 1, .3, 1);
}

.hero-card-visual:hover img {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg)
}

/* ─── STATS ─────────────────────────────────────────────── */
#how-it-works {
    padding: 3rem 5vw;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(var(--rgb-card), .92);
    backdrop-filter: blur(20px);
}

.stats-grid {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center
}

.stat-number {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    background: var(--grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -.02em;
}

.stat-label {
    font-size: .82rem;
    color: var(--text-soft);
    font-weight: 500;
    margin-top: .3rem;
    letter-spacing: .04em;
    text-transform: uppercase
}

.stat-sublabel {
    font-size: .72rem;
    color: var(--muted);
    margin-top: .35rem;
    line-height: 1.4
}

/* ─── SECTION BASE ──────────────────────────────────────── */
.section {
    padding: 7rem 5vw;
    position: relative
}

.section-inner {
    max-width: var(--max-w);
    margin: 0 auto
}

.section-eyebrow {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1.1
}

.section-title .accent {
    background: var(--grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--text-soft);
    max-width: 560px;
    margin-top: 1rem;
    line-height: 1.75
}

.glow-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), var(--accent2), transparent);
    opacity: .2;
}

/* ─── ABOUT ─────────────────────────────────────────────── */
#about {
    background: var(--bg2)
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
    margin-top: 4rem
}

.about-img-wrap {
    position: sticky;
    top: calc(var(--nav-h) + 1.5rem);
    align-self: start;
    border-radius: var(--r-xl);
    overflow: hidden;
    aspect-ratio: 4/5;
}

.about-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.16, 1, .3, 1)
}

.about-img-wrap:hover img {
    transform: scale(1.04)
}

.about-img-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg, rgba(var(--rgb-accent), .15), transparent 60%)
}

.about-img-wrap::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--r-xl);
    border: 1px solid var(--border-accent);
    pointer-events: none;
    z-index: 2
}

.about-text p {
    color: var(--text-soft);
    line-height: 1.8;
    margin-bottom: 1.2rem;
    font-size: .98rem
}

.about-teaser-lead {
    margin-top: 1.25rem;
    color: var(--text-soft);
    font-size: .95rem;
    line-height: 1.75;
    max-width: 36rem
}

.about-modal-triggers {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 1.5rem
}

.about-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
    margin-top: 2rem
}

.value-card {
    padding: 1.4rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    transition: transform .3s cubic-bezier(.16, 1, .3, 1), border-color .3s, background .3s;
    cursor: default;
}

.value-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-accent);
    background: rgba(var(--rgb-accent), .06)
}

.value-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(var(--rgb-accent), .15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: .8rem
}

.value-title {
    font-weight: 700;
    font-size: .9rem;
    margin-bottom: .3rem
}

.value-desc {
    font-size: .8rem;
    color: var(--text-soft);
    line-height: 1.6
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem
}

.why-card {
    padding: 1.25rem 1.35rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    transition: border-color .25s, box-shadow .25s
}

.why-card:hover {
    border-color: var(--border-accent);
    box-shadow: var(--shadow-glow)
}

.why-card-num {
    font-size: .72rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: .12em;
    margin-bottom: .5rem
}

.why-card h4 {
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: .45rem;
    color: var(--text)
}

.why-card p {
    font-size: .82rem;
    color: var(--text-soft);
    line-height: 1.65
}

.mission-quote {
    margin: 2rem 0;
    padding: 1.5rem 1.75rem;
    border-radius: 0 var(--r-md) var(--r-md) 0;
    background: rgba(var(--rgb-accent), .06);
    border: 1px solid rgba(var(--rgb-accent), .22);
    border-left: 4px solid var(--accent);
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.65;
    color: var(--text);
}

/* ─── PRODUCTS ──────────────────────────────────────────── */
.product-tabs {
    display: flex;
    gap: .5rem;
    margin: 2.5rem 0;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: .35rem;
    width: fit-content;
}

.tab-btn {
    padding: .65rem 1.5rem;
    border: none;
    background: transparent;
    font-family: inherit;
    font-size: .88rem;
    font-weight: 600;
    color: var(--text-soft);
    border-radius: 50px;
    cursor: pointer;
    transition: all .3s cubic-bezier(.16, 1, .3, 1);
    letter-spacing: .02em;
}

.tab-btn.active {
    background: var(--grad);
    color: var(--white);
    box-shadow: 0 0 20px rgba(var(--rgb-accent), .3)
}

.tab-panel {
    display: none
}

.tab-panel.active {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: start
}

.product-badge {
    display: inline-block;
    padding: .35rem .9rem;
    background: rgba(var(--rgb-accent), .15);
    border: 1px solid var(--border-accent);
    border-radius: 50px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--purple-light);
    margin-bottom: 1.2rem;
}

.product-title {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: 1.1;
    margin-bottom: 1rem
}

.product-desc {
    color: var(--text-soft);
    line-height: 1.8;
    font-size: .97rem;
    margin-bottom: 1.5rem
}

.product-steps {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: .8rem
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.2rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    transition: border-color .25s, background .25s;
}

.step-item:hover {
    border-color: var(--border-accent);
    background: rgba(var(--rgb-accent), .05)
}

.step-num {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    font-weight: 800;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 0 0 12px rgba(var(--rgb-accent), .3);
}

.step-text strong {
    display: block;
    font-size: .88rem;
    font-weight: 700;
    margin-bottom: .2rem
}

.step-text span {
    font-size: .82rem;
    color: var(--text-soft)
}

.product-visual {
    position: sticky;
    top: calc(var(--nav-h) + 1.5rem);
    align-self: start;
    border-radius: var(--r-xl);
    overflow: hidden;
    aspect-ratio: 3/4;
}

.product-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.16, 1, .3, 1)
}

.product-visual:hover img {
    transform: scale(1.04)
}

.product-visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(var(--rgb-accent), .1), transparent 50%);
    z-index: 1
}

.product-visual::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--r-xl);
    border: 1px solid var(--border-accent);
    pointer-events: none;
    z-index: 2
}

/* ── Product debit: physical flip + virtual phone ── */
.product-visual.product-visual--debit {
    aspect-ratio: auto;
    overflow: visible;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d
}

.product-visual--debit .product-visual-overlay,
.product-visual--debit::after {
    pointer-events: none
}

.product-visual-debit-showcase {
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d
}

.product-visual-debit-stack {
    position: relative;
    z-index: 3;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: clamp(1.5rem, 4vw, 2.75rem);
    padding: 1rem .75rem 1.75rem;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d
}

.debit-card-flip {
    flex-shrink: 0;
    outline: none;
    border-radius: 14px;
    width: fit-content;
    max-width: 100%;
    perspective: 1200px;
    -webkit-perspective: 1200px;
    perspective-origin: 50% 50%;
    -webkit-perspective-origin: 50% 50%
}

.debit-card-flip:focus-visible {
    box-shadow: 0 0 0 2px var(--border-accent);
    border-radius: 16px
}

.debit-card-flip-inner {
    position: relative;
    width: min(200px, 46vw);
    height: calc(min(200px, 46vw) * 85.6 / 53.98);
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    transform: rotateY(0deg) translateZ(0);
    -webkit-transform: rotateY(0deg) translateZ(0);
    transition: transform .75s cubic-bezier(.16, 1, .3, 1);
    -webkit-transition: -webkit-transform .75s cubic-bezier(.16, 1, .3, 1)
}

.debit-card-flip:hover .debit-card-flip-inner,
.debit-card-flip:focus-within .debit-card-flip-inner {
    transform: rotateY(180deg) translateZ(0);
    -webkit-transform: rotateY(180deg) translateZ(0)
}

.debit-card-face {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 14px;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d
}

.debit-card-face--front {
    transform: rotateY(0deg) translateZ(1px);
    -webkit-transform: rotateY(0deg) translateZ(1px)
}

.debit-card-face--back {
    transform: rotateY(180deg) translateZ(1px);
    -webkit-transform: rotateY(180deg) translateZ(1px)
}

.product-visual--debit .debit-card-face .card-v {
    width: 100%;
    height: 100%;
    max-width: none;
    aspect-ratio: auto;
    min-height: 0
}

.debit-phone-wrap {
    flex-shrink: 0
}

.product-visual--debit .phone {
    width: min(270px, 86vw)
}

@media (prefers-reduced-motion: reduce) {
    .debit-card-flip-inner {
        transition: none;
        -webkit-transition: none
    }

    .debit-card-flip:hover .debit-card-flip-inner,
    .debit-card-flip:focus-within .debit-card-flip-inner {
        transform: rotateY(0deg) translateZ(0);
        -webkit-transform: rotateY(0deg) translateZ(0)
    }
}


.product-visual-debit-showcase .card-v {
    width: 200px;
    aspect-ratio: 53.98/85.6;
    border-radius: 14px;
    position: relative;
    overflow: hidden;
}
.product-visual-debit-showcase .card-v-black {
    background: #0e0f0e;
    box-shadow: 0 0 0 0.5px rgba(255, 255, 255, 0.06), 0 24px 60px rgba(0, 0, 0, 0.85);
}
.product-visual-debit-showcase .cc {
    position: absolute;
    inset: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    padding: 9% 10%;
}
.product-visual-debit-showcase .chip {
    width: 36px;
    height: 28px;
    border-radius: 4px;
    background: linear-gradient(135deg, #c8a96a 0%, #e2c47e 30%, #f2dc96 50%, #c49240 72%, #d4ac62 100%);
    position: relative;
    flex-shrink: 0;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.3), 0 2px 6px rgba(0, 0, 0, 0.55);
}
.product-visual-debit-showcase .chip::before {
    content: '';
    position: absolute;
    inset: 4px;
    border: 0.5px solid rgba(90, 60, 5, 0.3);
    border-radius: 2px;
}
.product-visual-debit-showcase .chip::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 0.5px;
    background: rgba(70, 45, 5, 0.2);
}
.product-visual-debit-showcase .chip-v-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 0.5px;
    background: rgba(70, 45, 5, 0.18);
}
.product-visual-debit-showcase .visa-txt {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-style: italic;
    font-size: 22px;
    letter-spacing: -0.02em;
    line-height: 1;
}
.product-visual-debit-showcase .visa-sub {
    font-family: var(--font-share-tech-mono);
    font-size: 7px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-top: 1px;
    display: block;
}
.product-visual-debit-showcase .nfc {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}
.product-visual-debit-showcase .arc {
    border-style: solid;
    border-left: none;
    border-top-right-radius: 99px;
    border-bottom-right-radius: 99px;
}
.product-visual-debit-showcase .mag {
    position: absolute;
    left: 0;
    right: 0;
    top: 13%;
    height: 12%;
    z-index: 10;
}
.product-visual-debit-showcase .back-body {
    position: absolute;
    inset: 0;
    z-index: 11;
    padding: 29% 10% 8%;
    display: flex;
    flex-direction: column;
    gap: 5%;
}
.product-visual-debit-showcase .sig-row {
    display: flex;
    gap: 5%;
    align-items: center;
}
.product-visual-debit-showcase .sig-strip {
    flex: 1;
    height: 23px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    padding: 0 8px;
}
.product-visual-debit-showcase .cvv-panel {
    width: 42px;
    height: 23px;
    border-radius: 3px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    flex-shrink: 0;
}
.product-visual-debit-showcase .cvv-lbl {
    font-family: var(--font-share-tech-mono);
    font-size: 5px;
    letter-spacing: 0.1em;
}
.product-visual-debit-showcase .cvv-dots {
    display: flex;
    gap: 3px;
}
.product-visual-debit-showcase .cvv-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
}
.product-visual-debit-showcase .bf {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.product-visual-debit-showcase .bf-lbl {
    font-family: var(--font-share-tech-mono);
    font-size: 5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.product-visual-debit-showcase .bf-val {
    font-family: var(--font-share-tech-mono);
    font-size: 8.5px;
    letter-spacing: 0.07em;
}
.product-visual-debit-showcase .bf-row {
    display: flex;
    gap: 12%;
}
.product-visual-debit-showcase .divider {
    height: 0.5px;
    margin: 2% 0;
}
.product-visual-debit-showcase .bank-line {
    font-family: var(--font-share-tech-mono);
    font-size: 5px;
    letter-spacing: 0.06em;
    line-height: 2;
}
.product-visual-debit-showcase .back-foot {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
}
.product-visual-debit-showcase .comply {
    font-family: var(--font-share-tech-mono);
    font-size: 4px;
    letter-spacing: 0.05em;
    line-height: 2;
    max-width: 62%;
}
.product-visual-debit-showcase .logo svg {
    display: block;
}
.product-visual-debit-showcase .phone {
    width: 270px;
    background: #0f0f13;
    border-radius: 38px;
    border: 1.5px solid #1c1c24;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.85), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}
.product-visual-debit-showcase .notch-bar {
    height: 30px;
    background: #0f0f13;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-visual-debit-showcase .notch-pill {
    width: 64px;
    height: 10px;
    background: #060609;
    border-radius: 10px;
}
.product-visual-debit-showcase .pscreen {
    background: #0c0c14;
    padding: 18px 15px 22px;
}
.product-visual-debit-showcase .phead {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}
.product-visual-debit-showcase .pgreet {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
}
.product-visual-debit-showcase .psub {
    font-size: 8px;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.05em;
    margin-top: 2px;
    font-family: var(--font-share-tech-mono);
}
.product-visual-debit-showcase .avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
}
.product-visual-debit-showcase .bal-lbl {
    font-family: var(--font-share-tech-mono);
    font-size: 7px;
    letter-spacing: 0.16em;
    color: rgba(255, 255, 255, 0.28);
    text-transform: uppercase;
    margin-bottom: 4px;
}
.product-visual-debit-showcase .bal-num {
    font-size: 26px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.92);
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}
.product-visual-debit-showcase .bal-cur {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.4);
    margin-right: 2px;
}
.product-visual-debit-showcase .vc-wrap {
    width: 100%;
    aspect-ratio: 85.6/53.98;
    border-radius: 13px;
    position: relative;
    overflow: hidden;
    margin-bottom: 16px;
    box-shadow: 0 10px 36px rgba(255, 0, 200, 0.32), 0 4px 12px rgba(0, 0, 0, 0.5);
}
.product-visual-debit-showcase .vc-inner {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 14px 16px;
}
.product-visual-debit-showcase .vc-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.product-visual-debit-showcase .vc-bot {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.product-visual-debit-showcase .vc-num {
    font-family: var(--font-share-tech-mono);
    font-size: 8.5px;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.78);
    display: flex;
    gap: 6px;
}
.product-visual-debit-showcase .vc-name {
    font-family: 'Inter', sans-serif;
    font-size: 8px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
}
.product-visual-debit-showcase .vc-exp {
    font-family: var(--font-share-tech-mono);
    font-size: 7px;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 2px;
    letter-spacing: 0.1em;
}
.product-visual-debit-showcase .vc-visa {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.88);
    letter-spacing: -0.02em;
}
.product-visual-debit-showcase .actions {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}
.product-visual-debit-showcase .act-btn {
    flex: 1;
    background: #161620;
    border: 0.5px solid rgba(255, 255, 255, 0.07);
    border-radius: 11px;
    padding: 9px 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}
.product-visual-debit-showcase .act-ico {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-visual-debit-showcase .act-lbl {
    font-family: var(--font-share-tech-mono);
    font-size: 6px;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
}
.product-visual-debit-showcase .txn-hdr {
    font-family: var(--font-share-tech-mono);
    font-size: 7px;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.22);
    text-transform: uppercase;
    margin-bottom: 10px;
}
.product-visual-debit-showcase .txn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.05);
}
.product-visual-debit-showcase .txn:last-child {
    border-bottom: none;
}
.product-visual-debit-showcase .txn-l {
    display: flex;
    align-items: center;
    gap: 9px;
}
.product-visual-debit-showcase .txn-ico {
    width: 24px;
    height: 24px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-visual-debit-showcase .txn-nm {
    font-size: 9.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.78);
}
.product-visual-debit-showcase .txn-dt {
    font-family: var(--font-share-tech-mono);
    font-size: 6px;
    color: rgba(255, 255, 255, 0.22);
    letter-spacing: 0.05em;
    margin-top: 1px;
}
.product-visual-debit-showcase .txn-am {
    font-family: var(--font-share-tech-mono);
    font-size: 9px;
    letter-spacing: 0.04em;
}

.product-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .7rem
}

.product-features li {
    display: flex;
    align-items: center;
    gap: .8rem;
    font-size: .88rem;
    color: var(--text-soft)
}

.product-features li::before {
    content: '';
    width: 18px;
    height: 18px;
    border-radius: 50%;
    flex-shrink: 0;
    background: rgba(var(--rgb-accent), .15);
    border: 1px solid rgba(var(--rgb-accent), .3);
    background-image: var(--icon-check-mark);
    background-size: 12px;
    background-position: center;
    background-repeat: no-repeat;
}

.card-type-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.25rem
}

.card-type-box {
    padding: 1.1rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-md)
}

.card-type-box h4 {
    font-size: .88rem;
    margin-bottom: .5rem;
    color: var(--text)
}

.card-type-box p {
    font-size: .8rem;
    color: var(--text-soft);
    line-height: 1.6
}

.tech-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .85rem;
    margin-top: 1.25rem
}

.tech-pillar {
    padding: 1rem;
    background: rgba(var(--rgb-accent), .06);
    border: 1px solid rgba(var(--rgb-accent), .2);
    border-radius: var(--r-md);
    font-size: .78rem;
    color: var(--text-soft);
    line-height: 1.55
}

.tech-pillar strong {
    display: block;
    color: var(--accent2);
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: .35rem
}

.trust-line-muted {
    font-size: .8rem;
    color: var(--muted);
    text-align: center;
    margin-top: 1rem
}

/* ─── FAQ ───────────────────────────────────────────────── */
#faq {}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 3rem
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    overflow: hidden;
    transition: border-color .3s
}

.faq-item.open {
    border-color: var(--border-accent)
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.3rem 1.4rem;
    background: var(--surface);
    border: none;
    font-family: inherit;
    font-size: .9rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    text-align: left;
    gap: 1rem;
    transition: background .25s;
}

.faq-item.open .faq-q {
    background: rgba(var(--rgb-accent), .07)
}

.faq-chevron {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    border: 1px solid var(--border);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .35s cubic-bezier(.16, 1, .3, 1), background .25s, border-color .25s;
    color: var(--muted);
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white)
}

.faq-chevron i {
    font-size: 10px;
    line-height: 1;
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s cubic-bezier(.16, 1, .3, 1), padding .35s;
    padding: 0 1.4rem
}

.faq-item.open .faq-a {
    padding: 0 1.4rem 1.3rem
}

.faq-a p {
    font-size: .87rem;
    color: var(--text-soft);
    line-height: 1.75
}

/* ─── TESTIMONIALS ──────────────────────────────────────── */
#testimonials {
    background: var(--bg2)
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem
}

.testi-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-top: 2px solid rgba(var(--rgb-accent), .4);
    border-radius: var(--r-lg);
    padding: 1.8rem;
    backdrop-filter: blur(12px);
    transition: transform .3s cubic-bezier(.16, 1, .3, 1), box-shadow .3s, border-top-color .3s;
    position: relative;
    overflow: hidden;
}

.testi-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(var(--rgb-accent), .06);
    line-height: 1;
    pointer-events: none
}

.testi-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow);
    border-top-color: var(--accent)
}

.testi-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 1rem
}

.star {
    color: var(--amber);
    font-size: .9rem
}

.testi-quote {
    font-size: .88rem;
    color: var(--text-soft);
    line-height: 1.75;
    margin-bottom: 1.2rem;
    font-style: italic
}

.testi-author {
    display: flex;
    align-items: center;
    gap: .9rem
}

.testi-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    font-weight: 800;
    color: var(--white);
    flex-shrink: 0
}

.testi-name {
    font-size: .88rem;
    font-weight: 700
}

.testi-badge {
    display: inline-block;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--accent);
    border: 1px solid var(--border-accent);
    border-radius: 6px;
    padding: .2rem .5rem;
    margin-bottom: .75rem;
}

.testi-trust-line {
    text-align: center;
    margin-top: 2rem;
    font-size: .82rem;
    color: var(--muted);
    letter-spacing: .02em;
}

.testimonials-carousel-wrap {
    display: none;
    margin-top: 2.5rem;
    position: relative;
}

.testi-carousel-viewport {
    overflow: hidden;
    border-radius: var(--r-lg);
}

.testi-carousel-track {
    display: flex;
    transition: transform 0.45s var(--expand-ease);
}

.testi-slide {
    flex: 0 0 100%;
    padding: 0 0.25rem;
    box-sizing: border-box;
}

.testi-carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.25rem;
}

.testi-carousel-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s, background 0.2s;
}

.testi-carousel-btn:hover {
    border-color: var(--border-accent);
    background: rgba(var(--rgb-accent), 0.08);
}

.testi-dots {
    display: flex;
    gap: 0.45rem;
}

.testi-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.testi-dot.active {
    background: var(--accent);
    transform: scale(1.15);
}

.rm-status-key {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem 1.25rem;
    padding: 1rem 1.15rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    margin-bottom: 1.5rem;
    font-size: 0.78rem;
    color: var(--text-soft);
}

.rm-status-key span.rm-sk-label {
    color: var(--text);
    font-weight: 700;
}

.about-details {
    margin-top: 0.5rem;
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    background: var(--surface);
    overflow: hidden;
}

.about-details summary {
    padding: 1rem 1.15rem;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.88rem;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.about-details summary::-webkit-details-marker {
    display: none;
}

.about-details[open] summary {
    border-bottom: 1px solid var(--border);
}

.about-details .about-details-body {
    padding: 1rem 1.15rem 1.15rem;
    font-size: 0.84rem;
    color: var(--text-soft);
    line-height: 1.65;
}

.section-cta-row.flex-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.faq-help-link {
    font-size: 0.9rem;
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

.faq-help-link:hover {
    text-decoration: underline;
}

.rm-quarter-tags {
    display: block;
    margin-top: 0.65rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--accent);
}

.modal-card .rm-bullets {
    margin: 0.75rem 0 0;
    padding-left: 1.1rem;
    font-size: 0.82rem;
    color: var(--text-soft);
    line-height: 1.55;
}

.modal-card .rm-bullets li {
    margin-bottom: 0.35rem;
}

.testi-city {
    font-size: .78rem;
    color: var(--muted)
}

.testi-use {
    margin-top: .75rem;
    display: inline-block;
    padding: .25rem .7rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: .72rem;
    color: var(--muted)
}

/* ─── CTA ───────────────────────────────────────────────── */
#contact {
    padding: 8rem 5vw;
    text-align: center;
    position: relative;
    overflow: hidden
}

.cta-orb {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--rgb-accent), .15) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    filter: blur(60px);
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    text-align: center
}

.cta-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    letter-spacing: -.03em;
    line-height: 1.05
}

.cta-sub {
    color: var(--text-soft);
    font-size: 1.1rem;
    margin: 1.5rem auto;
    max-width: 500px;
    line-height: 1.7
}

.cta-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem
}

.section-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-top: 2.5rem
}

/* ─── FOOTER ────────────────────────────────────────────── */
footer {
    padding: 4rem 5vw 2.5rem;
    border-top: 1px solid var(--border);
    background: var(--bg2)
}

.footer-inner {
    max-width: var(--max-w);
    margin: 0 auto
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem
}

.footer-brand p {
    color: var(--text-soft);
    font-size: .85rem;
    line-height: 1.7;
    margin-top: 1rem;
    max-width: 260px
}

.footer-col h4 {
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 1rem
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .6rem
}

.footer-col ul a {
    font-size: .83rem;
    color: var(--text-soft);
    text-decoration: none;
    transition: color .2s
}

.footer-col ul a:hover {
    color: var(--purple-light)
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    font-size: .8rem;
    color: var(--muted);
}

.footer-socials {
    display: flex;
    gap: .8rem
}

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--surface);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    text-decoration: none;
    font-size: 1rem;
    transition: all .25s;
}

.social-btn .fab {
    font-size: 1.05rem;
    line-height: 1;
}

.social-btn:hover {
    background: rgba(var(--rgb-accent), .15);
    border-color: var(--border-accent);
    color: var(--purple-light)
}

/* ─── TEASER SECTION ────────────────────────────────────── */
/* ─── TEASER SECTION ────────────────────────────────────── */
.teaser-section {
    padding: 6rem 5vw;
    position: relative;
}

.teaser-section.dark-bg {
    background: var(--bg2);
}

/* 1. Center the section and set max-width */
.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

/* 2. Create the 7-column Bento Grid */
.teaser-cards {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-auto-rows: 140px; /* Base height for bento rows */
    gap: 1.5rem;
    margin-top: 3rem;
}

/* 3. Default card size: width 2, height 2 */
.teaser-card {
    grid-column: span 2;
    grid-row: span 2;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 2rem;
    backdrop-filter: blur(12px);
    transition: transform .3s cubic-bezier(.16, 1, .3, 1), border-color .3s, box-shadow .3s;
    position: relative;
    overflow: hidden;
    /* Added to align content nicely inside the bento box */
    display: flex;
    flex-direction: column; 
}

/* Push the button to the bottom of the card automatically */
.teaser-card .teaser-trigger {
    margin-top: auto;
    align-self: flex-start;
}

/* 4. Featured Card (Affiliate): width 3, height 4 */
.teaser-card.bento-featured {
    grid-column: span 3;
    grid-row: span 4;
}
/* Responsive fallback for smaller screens */
@media (max-width: 992px) {
    .teaser-cards {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: minmax(140px, auto);
    }
    .teaser-card {
        grid-column: span 2;
        grid-row: span 2;
    }
    .teaser-card.bento-featured {
        grid-column: span 4;
        grid-row: span 2; /* Adjust height for mobile */
    }
}

@media (max-width: 768px) {
    .teaser-cards {
        grid-template-columns: 1fr;
    }
    .teaser-card, .teaser-card.bento-featured {
        grid-column: span 1;
        grid-row: auto; /* Let content dictate height on mobile */
    }
}

.teaser-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: .5rem
}

.teaser-card p {
    font-size: .83rem;
    color: var(--text-soft);
    line-height: 1.65;
    margin-bottom: 1.25rem
}

.teaser-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--grad);
    opacity: 0;
    transition: opacity .3s
}

.teaser-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-accent);
    box-shadow: var(--shadow-glow)
}

.teaser-card:hover::before {
    opacity: 1
}

.teaser-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--r-sm);
    background: rgba(var(--rgb-accent), .15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    border: 1px solid var(--border-accent);
}


.teaser-trigger {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .82rem;
    font-weight: 600;
    color: var(--accent);
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    padding: 0;
    transition: gap .2s, color .2s;
}

.teaser-trigger:hover {
    gap: .8rem;
    color: var(--purple-light)
}

.teaser-trigger i {
    flex-shrink: 0;
    font-size: 13px;
    line-height: 1;
    transition: transform .2s
}

.teaser-trigger:hover i {
    transform: translateX(2px)
}

.teaser-trigger-outline {
    padding: .55rem 1rem;
    border: 1px solid var(--teaser-outline-border);
    border-radius: var(--r-md);
    background: transparent;
    color: var(--text-soft);
}

.teaser-trigger-outline:hover {
    color: var(--accent);
    background: var(--teaser-outline-bg-hover);
    border-color: var(--border-accent);
}

.about-values-modal {
    margin-top: 1rem
}

.teaser-pill {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    gap: .35rem;
    padding: .2rem .65rem;
    background: rgba(var(--rgb-accent), .1);
    border: 1px solid var(--border-accent);
    border-radius: 50px;
    font-size: .7rem;
    font-weight: 600;
    color: var(--purple-light);
    margin-bottom: .75rem;
}

/* ─── FUTURE MARQUEE ─────────────────────────────────────── */
.future-marquee-wrap {
    position: relative;
    margin: 2rem 0;
    overflow: hidden
}

.future-marquee-wrap::before,
.future-marquee-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 1;
}

.future-marquee-wrap::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg), transparent)
}

.future-marquee-wrap::after {
    right: 0;
    background: linear-gradient(-90deg, var(--bg), transparent)
}

.future-marquee {
    display: flex;
    gap: 1.2rem;
    animation: marquee 30s linear infinite;
    width: max-content
}

@keyframes marquee {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

.future-chip {
    padding: .7rem 1.3rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 50px;
    white-space: nowrap;
    font-size: .82rem;
    font-weight: 600;
    color: var(--text-soft);
    transition: all .3s;
}

.future-chip:hover {
    background: rgba(var(--rgb-accent), .12);
    border-color: var(--border-accent);
    color: var(--purple-light)
}

/* ─── SCROLL ANIMATIONS ─────────────────────────────────── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

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

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .8s cubic-bezier(.16, 1, .3, 1), transform .8s cubic-bezier(.16, 1, .3, 1)
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0)
}

.reveal-delay-1 {
    transition-delay: .1s
}

.reveal-delay-2 {
    transition-delay: .2s
}

.reveal-delay-3 {
    transition-delay: .3s
}

.reveal-delay-4 {
    transition-delay: .4s
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity .8s cubic-bezier(.16, 1, .3, 1), transform .8s cubic-bezier(.16, 1, .3, 1)
}

.reveal-left.in-view {
    opacity: 1;
    transform: translateX(0)
}

.reveal-fade {
    opacity: 0;
    transition: opacity .8s cubic-bezier(.16, 1, .3, 1)
}

.reveal-fade.in-view {
    opacity: 1
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity .8s cubic-bezier(.16, 1, .3, 1), transform .8s cubic-bezier(.16, 1, .3, 1)
}

.reveal-right.in-view {
    opacity: 1;
    transform: translateX(0)
}

/* ════════════════════════════════════════
   MODAL SYSTEM
════════════════════════════════════════ */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(var(--rgb-bg-deep), .88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s cubic-bezier(.16, 1, .3, 1), visibility .35s;
    padding: 0;
}

@media(min-width:700px) {
    .modal-overlay {
        align-items: center;
        padding: 1.5rem
    }
}

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

.modal-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    background: rgba(var(--rgb-elevated), .97);
    border: 1px solid var(--border-accent);
    border-radius: var(--r-xl) var(--r-xl) 0 0;
    max-height: 92dvh;
    display: flex;
    flex-direction: column;
    transform: translateY(60px) scale(.98);
    transition: transform .4s cubic-bezier(.16, 1, .3, 1);
    overflow: hidden;
    box-shadow: 0 -4px 80px rgba(var(--rgb-accent), .15), 0 0 0 1px rgba(var(--rgb-accent), .08);
}

@media(min-width:700px) {
    .modal-container {
        border-radius: var(--r-xl);
        max-height: 88dvh;
        box-shadow: 0 40px 120px rgba(var(--rgb-black), .7), 0 0 0 1px rgba(var(--rgb-accent), .12), 0 0 60px rgba(var(--rgb-accent), .1)
    }
}

.modal-overlay.is-open .modal-container {
    transform: translateY(0) scale(1)
}

/* drag handle (mobile) */
.modal-handle {
    width: 40px;
    height: 4px;
    background: rgba(var(--rgb-white), .15);
    border-radius: 2px;
    margin: 10px auto 0;
    flex-shrink: 0;
    display: block;
}

@media(min-width:700px) {
    .modal-handle {
        display: none
    }
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.75rem;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
    background: rgba(var(--rgb-accent), .04);
}

.modal-header-left {
    display: flex;
    align-items: center;
    gap: .9rem
}

.modal-header-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(var(--rgb-accent), .15);
    border: 1px solid var(--border-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.modal-header-icon i {
    line-height: 1;
    color: var(--accent2);
}

.modal-header h2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text)
}

.modal-header .modal-subtitle {
    font-size: .78rem;
    color: var(--muted)
}

.modal-close {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
    flex-shrink: 0;
}

.modal-close:hover {
    background: rgba(var(--rgb-accent), .15);
    border-color: var(--border-accent);
    color: var(--text)
}

.modal-body {
    overflow-y: auto;
    flex: 1;
    padding: 0;
    scroll-behavior: smooth
}

.modal-body::-webkit-scrollbar {
    width: 4px
}

.modal-body::-webkit-scrollbar-track {
    background: transparent
}

.modal-body::-webkit-scrollbar-thumb {
    background: rgba(var(--rgb-accent), .3);
    border-radius: 2px
}

/* ── MODAL TABS ── */
.modal-tabs {
    display: flex;
    gap: 0;
    border-bottom: 1px solid var(--border);
    padding: 0 1.75rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    flex-shrink: 0;
    scrollbar-width: none;
}

.modal-tabs::-webkit-scrollbar {
    display: none
}

.modal-tab-btn {
    padding: .9rem 1.25rem;
    border: none;
    background: transparent;
    font-family: inherit;
    font-size: .85rem;
    font-weight: 600;
    color: var(--muted);
    cursor: pointer;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: all .25s;
    position: relative;
    top: 1px;
}

.modal-tab-btn:hover {
    color: var(--text-soft)
}

.modal-tab-btn.active {
    color: var(--purple-light);
    border-bottom-color: var(--accent)
}

.modal-tab-panel {
    display: none;
    padding: 1.75rem
}

.modal-tab-panel.active {
    display: block
}

/* ── MODAL ACCORDION ── */
.modal-acc-item {
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    margin-bottom: .6rem;
    overflow: hidden;
    background: var(--surface);
    transition: border-color .25s;
}

.modal-acc-item.open {
    border-color: var(--border-accent)
}

.modal-acc-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 1.3rem;
    background: transparent;
    border: none;
    font-family: inherit;
    font-size: .9rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    text-align: left;
    gap: 1rem;
    transition: background .2s;
}

.modal-acc-item.open .modal-acc-q {
    background: rgba(var(--rgb-accent), .06);
    color: var(--text)
}

.modal-acc-chevron {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    border: 1px solid var(--border);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .3s cubic-bezier(.16, 1, .3, 1), background .2s, border-color .2s;
    color: var(--muted);
}

.modal-acc-item.open .modal-acc-chevron {
    transform: rotate(180deg);
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white)
}

.modal-acc-chevron i {
    font-size: 10px;
    line-height: 1;
}

.modal-acc-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s cubic-bezier(.16, 1, .3, 1);
    padding: 0 1.3rem
}

.modal-acc-item.open .modal-acc-a {
    max-height: 1400px;
    padding: 0 1.3rem 1.1rem
}

.modal-acc-a p,
.modal-acc-a li {
    font-size: .85rem;
    color: var(--text-soft);
    line-height: 1.75
}

.modal-acc-a ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .4rem
}

.modal-acc-a li {
    padding-left: 1rem;
    position: relative
}

.modal-acc-a li::before {
    content: '·';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold
}

/* ── MODAL CARDS ── */
.modal-card {
    background: rgba(var(--rgb-white), .03);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 1.3rem;
    transition: border-color .25s, background .25s;
}

.modal-card:hover {
    border-color: var(--border-accent);
    background: rgba(var(--rgb-accent), .05)
}

.modal-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 1.25rem
}

.modal-card h4 {
    font-size: .92rem;
    font-weight: 700;
    margin-bottom: .4rem;
    color: var(--text)
}

.modal-card p {
    font-size: .8rem;
    color: var(--text-soft);
    line-height: 1.6
}

.modal-card .card-icon {
    font-size: 1.4rem;
    margin-bottom: .65rem
}

.modal-card .card-icon i {
    line-height: 1;
    color: var(--accent2);
}

.modal-card .card-badge {
    display: inline-block;
    padding: .2rem .6rem;
    border-radius: 50px;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: .6rem;
}

.badge-complete {
    background: rgba(var(--rgb-accent), .12);
    border: 1px solid rgba(var(--rgb-accent), .25);
    color: var(--accent2)
}

.badge-progress {
    background: rgba(var(--rgb-amber), .12);
    border: 1px solid rgba(var(--rgb-amber), .25);
    color: var(--amber)
}

.badge-upcoming {
    background: rgba(var(--rgb-accent), .12);
    border: 1px solid rgba(var(--rgb-accent), .25);
    color: var(--purple-light)
}

/* ── MODAL STEP LIST ── */
.modal-steps {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    counter-reset: step
}

.modal-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.1rem 1.2rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    position: relative;
    counter-increment: step;
    transition: border-color .2s, background .2s;
}

.modal-step:hover {
    border-color: var(--border-accent);
    background: rgba(var(--rgb-accent), .04)
}

.modal-step-num {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    font-weight: 800;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 0 0 12px rgba(var(--rgb-accent), .25);
}

.modal-step p {
    font-size: .87rem;
    color: var(--text-soft);
    line-height: 1.7
}

/* ── MODAL TIER GRID ── */
.modal-tier-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.25rem
}

@media(min-width:600px) {
    .modal-tier-grid {
        grid-template-columns: repeat(4, 1fr)
    }
}

.modal-tier {
    padding: 1.3rem;
    background: rgba(var(--rgb-white), .03);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    text-align: center;
    transition: border-color .25s, transform .25s;
}

.modal-tier:hover {
    border-color: var(--border-accent);
    transform: translateY(-3px)
}

.modal-tier h4 {
    font-size: .88rem;
    color: var(--accent);
    margin-bottom: .35rem;
    font-weight: 700
}

.modal-tier .rate {
    font-size: 1.6rem;
    font-weight: 900;
    background: var(--grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.modal-tier p {
    font-size: .75rem;
    color: var(--muted);
    line-height: 1.5;
    margin-top: .4rem
}

/* ── MODAL STAT ROW ── */
.modal-stat-row {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 1.25rem
}

.modal-stat {
    flex: 1;
    min-width: 120px;
    padding: 1rem 1.1rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    text-align: center;
}

.modal-stat .val {
    font-size: 1.4rem;
    font-weight: 800;
    background: var(--grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.modal-stat .lbl {
    font-size: .72rem;
    color: var(--muted);
    margin-top: .2rem;
    text-transform: uppercase;
    letter-spacing: .06em
}

/* ── MODAL FEATURE LIST ── */
.modal-feature-list {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    margin-top: .75rem
}

.modal-feature-list li {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: .85rem;
    color: var(--text-soft);
    padding: .55rem .75rem;
    background: var(--surface);
    border-radius: 8px;
    list-style: none;
}

.modal-feature-list li::before {
    content: '';
    width: 16px;
    height: 16px;
    border-radius: 50%;
    flex-shrink: 0;
    background: rgba(var(--rgb-accent), .15);
    border: 1px solid rgba(var(--rgb-accent), .25);
    background-image: var(--icon-check-mark);
    background-size: 10px;
    background-position: center;
    background-repeat: no-repeat;
}

/* ── MODAL CONTENT HELPERS ── */
.modal-section-label {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--accent);
    margin: 1.5rem 0 .75rem;
    display: block;
}

.modal-section-label:first-child {
    margin-top: 0
}

.modal-body-pad {
    padding: 1.75rem
}

.modal-desc {
    font-size: .9rem;
    color: var(--text-soft);
    line-height: 1.75;
    margin-bottom: 1.25rem
}

.modal-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 2rem;
    padding: 1.75rem;
    border-top: 1px solid var(--border)
}

.modal-cta-row .btn-primary,
.modal-cta-row .btn-secondary {
    font-size: .85rem;
    padding: .75rem 1.5rem
}

/* ── TECH GRID ── */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 1.25rem
}

.tech-card {
    padding: 1.3rem;
    background: rgba(var(--rgb-accent), .04);
    border: 1px solid rgba(var(--rgb-accent), .15);
    border-radius: var(--r-md);
    transition: border-color .25s, box-shadow .25s;
}

.tech-card:hover {
    border-color: rgba(var(--rgb-accent), .35);
    box-shadow: 0 0 24px rgba(var(--rgb-accent), .06)
}

.tech-card strong {
    display: block;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--accent2);
    margin-bottom: .45rem
}

.tech-card p {
    font-size: .82rem;
    color: var(--text-soft);
    line-height: 1.65
}

/* ── FUTURE PLATFORM GRID ── */
.future-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: .75rem;
    margin-top: 1.25rem
}

.future-platform-card {
    padding: 1.1rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    text-align: center;
    transition: border-color .25s, transform .25s, background .25s;
    cursor: default;
}

.future-platform-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-3px);
    background: rgba(var(--rgb-accent), .06)
}

.future-platform-card .fp-icon {
    font-size: 1.5rem;
    margin-bottom: .5rem
}

.future-platform-card h4 {
    font-size: .8rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: .3rem
}

.future-platform-card p {
    font-size: .72rem;
    color: var(--muted);
    line-height: 1.5
}

/* ── ROADMAP YEAR TABS ── */
.rmyear-tabs {
    display: flex;
    gap: .4rem;
    padding: 1.25rem 1.75rem;
    border-bottom: 1px solid var(--border);
    overflow-x: auto;
    flex-shrink: 0
}

.rmyear-tabs::-webkit-scrollbar {
    display: none
}

.rmyear-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .2rem;
    padding: .7rem 1.1rem;
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    background: var(--surface);
    cursor: pointer;
    font-family: inherit;
    color: var(--text-soft);
    transition: all .25s;
    white-space: nowrap;
    min-width: 80px;
}

.rmyear-btn.active {
    background: rgba(var(--rgb-accent), .15);
    border-color: var(--border-accent);
    color: var(--text)
}

.rmyear-btn:hover {
    border-color: var(--border-accent);
    color: var(--text)
}

.rmyear-num {
    font-size: .95rem;
    font-weight: 800
}

.rmyear-lbl {
    font-size: .65rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    opacity: .7
}

.rm-year-panel {
    display: none
}

.rm-year-panel.active {
    display: block
}

.rm-quarter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem
}

/* ── AFFILIATE STEPS ── */
.aff-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    margin-bottom: .7rem;
}

.aff-step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    font-weight: 800;
    color: var(--white);
    flex-shrink: 0;
}

.aff-step-content strong {
    display: block;
    font-size: .9rem;
    font-weight: 700;
    margin-bottom: .25rem
}

.aff-step-content p {
    font-size: .82rem;
    color: var(--text-soft);
    line-height: 1.65
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media(max-width:1024px) {

    .about-grid,
    .tab-panel.active {
        grid-template-columns: 1fr
    }

    .why-choose-grid {
        grid-template-columns: 1fr 1fr
    }

    .tech-pillars {
        grid-template-columns: 1fr
    }

    .card-type-row {
        grid-template-columns: 1fr
    }

    .about-img-wrap,
    .product-visual {
        position: relative;
        top: auto;
        align-self: stretch
    }

    .footer-top {
        grid-template-columns: 1fr 1fr
    }

    .testimonials-grid {
        grid-template-columns: 1fr 1fr
    }

    .faq-grid {
        grid-template-columns: 1fr
    }
}

@media(max-width:768px) {
    .testimonials-grid {
        display: none
    }

    .testimonials-carousel-wrap {
        display: block
    }

    .rm-status-key {
        grid-template-columns: 1fr
    }

    .footer-top {
        grid-template-columns: 1fr
    }

    .product-tabs {
        flex-wrap: wrap
    }

    .about-values {
        grid-template-columns: 1fr
    }

    .why-choose-grid {
        grid-template-columns: 1fr
    }

    .teaser-cards {
        grid-template-columns: 1fr
    }

    .modal-tier-grid {
        grid-template-columns: 1fr 1fr
    }

    .modal-cards-grid {
        grid-template-columns: 1fr
    }
}

@media(max-width:480px) {

    .section,
    .teaser-section {
        padding: 5rem 5vw
    }

    .hero-trust {
        flex-direction: column;
        gap: .8rem;
        align-items: flex-start;
        padding: 0 1rem
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center
    }
}