/* ================= TOKENS ================= */
body.next-era-landing-page,
.next-era-landing {
    --bg: #07080D;
    --bg-2: #0B0D15;
    --panel: rgba(255, 255, 255, .028);
    --panel-2: rgba(255, 255, 255, .05);
    --border: rgba(255, 255, 255, .08);
    --border-strong: rgba(255, 255, 255, .16);
    --text: #F4F6FB;
    --text-2: rgba(222, 229, 244, .62);
    --text-3: rgba(222, 229, 244, .38);
    --blue: #4D7CFE;
    --violet: #8B5CF6;
    --cyan: #38D0F5;
    --gold: #FFC24B;
    --red: #FF5C7A;
    --green: #3DDC97;
    --upwork: #14A800;
    --grad: linear-gradient(120deg, var(--blue), var(--violet));
    --grad-text: linear-gradient(105deg, #7EA0FF 0%, #B08CFF 55%, #FFC24B 110%);
    --r-lg: 24px;
    --r-md: 16px;
    --ease-out: cubic-bezier(.16, 1, .3, 1);
    --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
    --font-display: 'Clash Display', Inter, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --nav-h: 72px;
}

.next-era-landing, .next-era-landing * {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html.next-era-page {
    background: #07080D;
    scroll-behavior: smooth
}

.lenis.lenis-smooth {
    scroll-behavior: auto
}

body.next-era-landing-page {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.625;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden
}

body.next-era-landing-page ::selection {
    background: rgba(139, 92, 246, .4)
}

.next-era-landing img, .next-era-landing svg {
    max-width: 100%;
    display: block
}

.next-era-landing a {
    color: inherit;
    text-decoration: none
}

.next-era-landing button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
    color: inherit
}

.next-era-landing :focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 3px;
    border-radius: 4px
}

body.next-era-landing-page::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9990;
    opacity: .35;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.035 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E")
}

/* ================= PRIMITIVES ================= */
.next-era-landing__wrap {
    width: min(1200px, calc(100% - 40px));
    margin-inline: auto
}

.landing-section {
    padding: clamp(80px, 9vw, 140px) 0;
    position: relative
}

.eyebrow {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--text-3);
    display: inline-flex;
    align-items: center;
    gap: 10px
}

.eyebrow::before {
    content: "";
    width: 24px;
    height: 1px;
    background: var(--grad)
}

.h-display {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(2.45rem, 6.4vw, 4rem);
    line-height: 1.03;
    letter-spacing: -.03em;
    text-wrap: balance
}

.h2 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(1.8rem, 3.6vw, 3rem);
    line-height: 1.08;
    letter-spacing: -.02em;
    text-wrap: balance
}

.h3 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    letter-spacing: -.01em;
    line-height: 1.2
}

.lead {
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    color: var(--text-2);
    max-width: 58ch;
    line-height: 1.7
}

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

.mono {
    font-family: var(--font-mono)
}

.landing-section__head {
    display: grid;
    gap: 16px;
    max-width: 760px;
    margin-bottom: clamp(38px, 5.5vw, 64px)
}

.landing-section__head.center {
    text-align: center;
    margin-inline: auto;
    justify-items: center
}

[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .8s var(--ease-out), transform .8s var(--ease-out)
}

[data-reveal].is-visible {
    opacity: 1;
    transform: none
}

[data-reveal="scale"] {
    transform: scale(.95)
}

[data-reveal].is-visible {
    transform: none
}

/* platform logos */
.plogo {
    display: inline-grid;
    place-items: center;
    flex: none
}

.plogo svg {
    width: 100%;
    height: 100%
}

/* ================= BUTTONS ================= */
.landing-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 54px;
    padding: 0 30px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 15.5px;
    letter-spacing: -.01em;
    white-space: nowrap;
    transition: transform .25s var(--ease-spring), box-shadow .3s ease, background .3s ease;
    will-change: transform
}

.landing-button--primary {
    color: #0A0B12;
    background: linear-gradient(120deg, #8FB0FF, #C3A5FF);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, .12) inset, 0 8px 32px -8px rgba(109, 124, 255, .55)
}

.landing-button--primary::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    z-index: -1;
    filter: blur(14px);
    opacity: .55;
    background: var(--grad);
    transition: opacity .3s
}

.landing-button--primary:hover {
    box-shadow: 0 0 0 1px rgba(255, 255, 255, .2) inset, 0 14px 44px -8px rgba(109, 124, 255, .75)
}

.landing-button--primary:hover::before {
    opacity: .9
}

.landing-button--primary:active {
    transform: scale(.97)
}

.landing-button--ghost {
    color: var(--text);
    background: var(--panel);
    box-shadow: 0 0 0 1px var(--border) inset;
    backdrop-filter: blur(12px)
}

.landing-button--ghost:hover {
    background: var(--panel-2);
    box-shadow: 0 0 0 1px var(--border-strong) inset
}

.landing-button svg {
    width: 17px;
    height: 17px;
    transition: transform .25s var(--ease-spring)
}

.landing-button:hover svg {
    transform: translateX(3px)
}

.landing-button--large {
    height: 62px;
    padding: 0 40px;
    font-size: 17px
}

/* CTA strip (repeatable) */
.cta-strip {
    margin-top: clamp(44px, 6vw, 72px);
    border-radius: var(--r-lg);
    position: relative;
    overflow: hidden;
    padding: clamp(28px, 4vw, 44px) clamp(24px, 4vw, 48px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    background: linear-gradient(120deg, rgba(77, 124, 254, .09), rgba(139, 92, 246, .07));
    box-shadow: 0 0 0 1px rgba(109, 124, 255, .25) inset
}

.cta-strip::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    right: -120px;
    top: -180px;
    background: radial-gradient(circle, rgba(139, 92, 246, .25), transparent 65%);
    filter: blur(50px);
    pointer-events: none
}

.cta-strip .cta-strip__copy b {
    display: block;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(1.25rem, 2.2vw, 1.7rem);
    letter-spacing: -.02em;
    margin-bottom: 4px
}

.cta-strip .cta-strip__copy span {
    font-size: 14.5px;
    color: var(--text-2)
}

/* ================= NAV ================= */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 900;
    height: var(--nav-h);
    transition: .35s ease;
    border-bottom: 1px solid transparent
}

.nav::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: calc(-1 * env(safe-area-inset-top, 0px));
    height: env(safe-area-inset-top, 0px);
    background: #07080D;
    pointer-events: none
}

.nav.is-scrolled {
    background: rgba(7, 8, 13, .72);
    backdrop-filter: blur(20px);
    border-color: var(--border)
}

.nav__inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 18px
}

.logo-mark {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: var(--grad);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    font-family: var(--font-mono);
    box-shadow: 0 4px 18px -4px rgba(109, 124, 255, .6)
}

.nav__links {
    display: flex;
    gap: 34px;
    font-size: 14.5px;
    font-weight: 500;
    color: var(--text-2)
}

.nav__links a {
    transition: color .2s
}

.nav__links a:hover {
    color: var(--text)
}

.nav .landing-button {
    height: 44px;
    padding: 0 22px;
    font-size: 14px
}

.nav__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 10px
}

.nav__burger span {
    width: 20px;
    height: 1.5px;
    background: var(--text);
    transition: .3s var(--ease-out)
}

.nav__mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 890;
    background: rgba(7, 8, 13, .96);
    backdrop-filter: blur(24px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s
}

.nav__mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto
}

.nav__mobile-menu a {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    padding: 10px;
    opacity: .85
}

.nav__mobile-menu .landing-button {
    margin-top: 22px
}

body.next-era-landing-page.is-menu-open .nav__burger span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg)
}

body.next-era-landing-page.is-menu-open .nav__burger span:nth-child(2) {
    opacity: 0
}

body.next-era-landing-page.is-menu-open .nav__burger span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg)
}

.progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 100%;
    z-index: 950;
    transform-origin: 0 50%;
    transform: scaleX(0);
    background: var(--grad)
}

/* ================= HERO ================= */
.hero {
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding: calc(var(--nav-h) + 56px) 0 88px;
    position: relative;
    overflow: hidden
}

.hero__background {
    position: absolute;
    inset: 0;
    pointer-events: none
}

.hero__grid {
    position: absolute;
    inset: -2px;
    background-image: linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 30%, transparent 75%);
    animation: gridDrift 26s linear infinite
}

@keyframes gridDrift {
    to {
        background-position: 56px 56px
    }
}

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

.orb-1 {
    width: 560px;
    height: 560px;
    background: radial-gradient(circle, rgba(77, 124, 254, .5), transparent 65%);
    top: -160px;
    left: -120px;
    animation: float1 14s ease-in-out infinite
}

.orb-2 {
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(139, 92, 246, .45), transparent 65%);
    top: 10%;
    right: -140px;
    animation: float2 17s ease-in-out infinite
}

.orb-3 {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(255, 194, 75, .16), transparent 65%);
    bottom: -120px;
    left: 32%;
    animation: float1 20s ease-in-out infinite reverse
}

@keyframes float1 {
    50% {
        transform: translate(40px, 28px) scale(1.06)
    }
}

@keyframes float2 {
    50% {
        transform: translate(-34px, 40px) scale(.95)
    }
}

.hero__mouse-glow {
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle, rgba(109, 124, 255, .12), transparent 65%);
    transform: translate(-50%, -50%);
    left: 50%;
    top: 40%;
    will-change: transform
}

.hero__inner {
    display: grid;
    grid-template-columns:1.05fr .95fr;
    gap: 56px;
    align-items: center;
    position: relative
}

.hero__copy {
    display: grid;
    gap: 26px;
    justify-items: start
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 11.5px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--text-3)
}

.hero__eyebrow .plat {
    display: flex;
    gap: 8px;
    align-items: center
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 4px
}

.hero__stats {
    display: grid;
    grid-template-columns:repeat(4, auto);
    justify-content: start;
    gap: clamp(20px, 3vw, 40px);
    margin-top: 26px;
    width: 100%
}

.hero__stat {
    padding-left: 16px;
    border-left: 1px solid var(--border-strong);
    display: grid;
    gap: 3px;
    align-content: start
}

.hero__stat b {
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2vw, 1.7rem);
    font-weight: 600;
    letter-spacing: -.02em;
    line-height: 1.1;
    white-space: nowrap
}

.hero__stat span {
    font-size: 11.5px;
    /*color: var(--text-3);*/
    font-family: var(--font-mono);
    letter-spacing: .05em;
    white-space: nowrap
}

.stars {
    color: var(--gold);
    letter-spacing: 2px;
    font-size: 12.5px
}

/* ---- scanner (signature) ---- */
.scanner__wrap {
    position: relative;
    perspective: 1200px
}

.scanner {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    background: linear-gradient(180deg, rgba(19, 22, 34, .92), rgba(11, 13, 21, .94));
    box-shadow: 0 0 0 1px var(--border) inset, 0 40px 90px -30px rgba(0, 0, 0, .8), 0 0 80px -30px rgba(109, 124, 255, .35);
    backdrop-filter: blur(18px);
    transform: rotateX(4deg) rotateY(-6deg);
    transition: transform .6s var(--ease-out);
    will-change: transform
}

.scanner__wrap:hover .scanner {
    transform: rotateX(0) rotateY(0)
}

.scanner::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    pointer-events: none;
    background: linear-gradient(140deg, rgba(109, 124, 255, .55), transparent 35%, transparent 65%, rgba(255, 194, 75, .4));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: borderPulse 6s linear infinite
}

@keyframes borderPulse {
    50% {
        opacity: .4
    }
}

.scanner__head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 18px;
    border-bottom: 1px solid var(--border)
}

.scanner__head .scanner__dots {
    display: flex;
    gap: 6px
}

.scanner__head .scanner__dots i {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .14)
}

.scanner__title {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-3);
    letter-spacing: .08em;
    margin-left: 4px
}

.scanner__status {
    margin-left: auto;
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: .1em;
    color: var(--cyan);
    display: flex;
    align-items: center;
    gap: 7px
}

.scanner__status i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 8px var(--cyan);
    animation: pulse 1.4s infinite
}

@keyframes pulse {
    50% {
        opacity: .4
    }
}

.scanner__body {
    padding: 16px 18px 18px;
    position: relative
}

.scanner__row {
    display: grid;
    grid-template-columns:1fr auto auto;
    align-items: center;
    gap: 12px;
    padding: 11px 13px;
    border-radius: 12px;
    margin-bottom: 8px;
    background: rgba(255, 255, 255, .025);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, .05) inset;
    transition: background .5s, box-shadow .5s;
    font-size: 13px
}

.scanner__row .scanner__row-name {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    min-width: 0
}

.scanner__row .scanner__row-name span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.scanner__row .scanner__icon {
    width: 26px;
    height: 26px;
    border-radius: 7px;
    display: grid;
    place-items: center;
    flex: none;
    padding: 5px
}

.scanner__icon--google {
    background: rgba(77, 124, 254, .14)
}

.scanner__icon--meta {
    background: rgba(139, 92, 246, .14)
}

.scanner__row .scanner__spend {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-2)
}

.scanner__row .scanner__tag {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: .08em;
    padding: 4px 9px;
    border-radius: 6px;
    background: rgba(61, 220, 151, .12);
    color: var(--green);
    transition: .5s;
    min-width: 74px;
    text-align: center
}

.scanner__row.leak {
    background: rgba(255, 92, 122, .07);
    box-shadow: 0 0 0 1px rgba(255, 92, 122, .28) inset
}

.scanner__row.leak .scanner__tag {
    background: rgba(255, 92, 122, .15);
    color: var(--red)
}

.scanner__beam {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 64px;
    pointer-events: none;
    background: linear-gradient(180deg, transparent, rgba(56, 208, 245, .1) 45%, rgba(56, 208, 245, .28) 50%, rgba(56, 208, 245, .1) 55%, transparent);
    animation: beam 4.5s ease-in-out infinite
}

@keyframes beam {
    0% {
        transform: translateY(-10%)
    }
    60% {
        transform: translateY(420%)
    }
    100% {
        transform: translateY(420%);
        opacity: 0
    }
}

.scanner__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding: 15px 18px;
    border-top: 1px solid var(--border);
    background: rgba(255, 194, 75, .045)
}

.scanner__footer .scanner__label {
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: .12em;
    color: var(--text-3);
    text-transform: uppercase
}

.scanner__footer .scanner__value {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 25px;
    color: var(--gold);
    letter-spacing: -.01em;
    text-shadow: 0 0 24px rgba(255, 194, 75, .4)
}

.scanner__footer .scanner__note {
    font-size: 12px;
    color: var(--text-3)
}

.scanner__float-chip {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 11px 15px;
    border-radius: 14px;
    font-size: 12.5px;
    font-weight: 600;
    background: rgba(15, 17, 26, .85);
    box-shadow: 0 0 0 1px var(--border) inset, 0 18px 40px -14px rgba(0, 0, 0, .7);
    backdrop-filter: blur(14px);
    animation: chipFloat 6s ease-in-out infinite
}

.scanner__float-chip .mono {
    font-size: 11px;
    color: var(--text-3)
}

.scanner__float-chip--first {
    top: -22px;
    right: 8%;
    animation-delay: .6s
}

.chip-2 {
    bottom: 16%;
    left: -34px;
    animation-delay: 1.4s
}

.scanner__float-chip--first b {
    color: var(--green)
}

.chip-2 b {
    color: var(--gold)
}

@keyframes chipFloat {
    50% {
        transform: translateY(-9px)
    }
}

/* ================= UPWORK TRUST BLOCK ================= */
.trust {
    padding: clamp(56px, 7vw, 90px) 0;
    background: var(--bg-2);
    border-block: 1px solid var(--border);
    position: relative;
    overflow: hidden
}

.trust::before {
    content: "";
    position: absolute;
    width: 640px;
    height: 400px;
    left: -160px;
    top: -200px;
    background: radial-gradient(ellipse, rgba(20, 168, 0, .12), transparent 65%);
    filter: blur(60px);
    pointer-events: none
}

.trust__card {
    display: grid;
    grid-template-columns:auto 1fr;
    gap: clamp(28px, 5vw, 64px);
    align-items: center;
    border-radius: var(--r-lg);
    padding: clamp(26px, 4vw, 44px);
    background: linear-gradient(150deg, rgba(20, 168, 0, .08), rgba(255, 255, 255, .02) 55%);
    box-shadow: 0 0 0 1px rgba(20, 168, 0, .28) inset
}

.trust__identity {
    display: grid;
    gap: 14px;
    justify-items: start
}

.uplogo {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.9rem, 3.4vw, 2.6rem);
    letter-spacing: -.02em;
    color: #7EE96A;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 12px
}

.uplogo svg {
    width: .95em;
    height: .95em
}

.trust__tier {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border-radius: 100px;
    background: rgba(20, 168, 0, .14);
    box-shadow: 0 0 0 1px rgba(126, 233, 106, .4) inset;
    font-size: 13.5px;
    font-weight: 600;
    color: #8BF07A
}

.trust__verified {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: .1em;
    color: var(--text-3);
    display: flex;
    align-items: center;
    gap: 8px
}

.trust__verified i {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(126, 233, 106, .15);
    display: grid;
    place-items: center;
    color: #7EE96A;
    font-style: normal;
    font-size: 9px
}

.trust__stats {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 8px
}

.trust__stat {
    padding: 18px 20px;
    border-radius: var(--r-md);
    background: rgba(255, 255, 255, .03);
    box-shadow: 0 0 0 1px var(--border) inset
}

.trust__stat b {
    display: block;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(1.5rem, 2.6vw, 2.1rem);
    letter-spacing: -.02em;
    line-height: 1.1
}

.trust__stat b em {
    font-style: normal;
    font-size: .55em;
    color: var(--text-3);
    font-family: var(--font-mono);
    font-weight: 500
}

.trust__stat span {
    font-size: 11.5px;
    font-family: var(--font-mono);
    letter-spacing: .06em;
    color: var(--text-3);
    text-transform: uppercase
}

.marquee {
    overflow: hidden;
    margin-top: 34px;
    mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent)
}

.marquee-track {
    display: flex;
    gap: 64px;
    width: max-content;
    animation: marquee 30s linear infinite
}

.marquee:hover .marquee-track {
    animation-play-state: paused
}

@keyframes marquee {
    to {
        transform: translateX(-50%)
    }
}

.mlogo {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 18px;
    letter-spacing: .02em;
    color: var(--text-3);
    white-space: nowrap
}

/* ================= AUDIT OFFER (the product) ================= */
.offer {
    position: relative;
    overflow: hidden
}

.offer__glow {
    position: absolute;
    width: 800px;
    height: 600px;
    right: -200px;
    top: 0;
    background: radial-gradient(ellipse, rgba(255, 194, 75, .08), transparent 65%);
    filter: blur(60px);
    pointer-events: none
}

.offer__grid {
    display: grid;
    grid-template-columns:1fr .92fr;
    gap: clamp(36px, 5vw, 72px);
    align-items: center
}

.deliverables {
    display: grid;
    gap: 0;
    counter-reset: d
}

.deliverables__item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 15px 0;
    border-bottom: 1px solid var(--border)
}

.deliverables__item:last-child {
    border: none
}

.deliverables__item i {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    flex: none;
    display: grid;
    place-items: center;
    background: rgba(61, 220, 151, .12);
    color: var(--green);
    margin-top: 2px
}

.deliverables__item i svg {
    width: 13px;
    height: 13px
}

.deliverables__item b {
    display: block;
    font-weight: 600;
    font-size: 15.5px;
    letter-spacing: -.01em
}

.deliverables__item span {
    font-size: 13.5px;
    color: var(--text-3)
}

/* score card visual */
.score-card {
    position: relative;
    border-radius: var(--r-lg);
    padding: 30px;
    background: linear-gradient(170deg, rgba(19, 22, 34, .9), rgba(11, 13, 21, .95));
    box-shadow: 0 0 0 1px var(--border) inset, 0 40px 90px -35px rgba(0, 0, 0, .8);
    overflow: hidden
}

.score-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    pointer-events: none;
    background: linear-gradient(160deg, rgba(255, 194, 75, .5), transparent 40%, transparent 60%, rgba(109, 124, 255, .5));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude
}

.score-card__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px
}

.score-card__top .t {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: .12em;
    color: var(--text-3);
    text-transform: uppercase
}

.score-ring {
    position: relative;
    width: 190px;
    height: 190px;
    margin: 0 auto 8px
}

.score-ring svg {
    transform: rotate(-90deg)
}

.score-ring .track {
    stroke: rgba(255, 255, 255, .07)
}

.score-ring .fill {
    stroke: url(#scoreGrad);
    stroke-linecap: round;
    stroke-dasharray: 502;
    stroke-dashoffset: 502;
    transition: stroke-dashoffset 1.8s var(--ease-out)
}

.score-num {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    text-align: center
}

.score-num b {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 52px;
    letter-spacing: -.03em;
    line-height: 1;
    display: block
}

.score-num b small {
    font-size: 10px;
    color: var(--text-3);
    font-family: var(--font-mono);
    font-weight: 500;
    display: block;
    margin-top: 8px;
    letter-spacing: .14em;
    max-width: 110px;
    margin-inline: auto;
    line-height: 1.5
}

.score-rows {
    display: grid;
    gap: 9px;
    margin-top: 22px
}

.srow {
    display: grid;
    grid-template-columns:auto 1fr auto;
    gap: 12px;
    align-items: center;
    font-size: 12.5px
}

.srow .l {
    font-family: var(--font-mono);
    color: var(--text-2);
    white-space: nowrap
}

.srow .bar {
    height: 5px;
    border-radius: 3px;
    background: rgba(255, 255, 255, .06);
    overflow: hidden
}

.srow .bar i {
    display: block;
    height: 100%;
    border-radius: 3px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1.2s var(--ease-out)
}

.score-card.is-visible .srow .bar i {
    transform: scaleX(1)
}

.srow .v {
    font-family: var(--font-mono);
    font-size: 11.5px;
    color: var(--text-3)
}

.outcomes {
    margin-top: clamp(44px, 6vw, 64px);
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 14px
}

.outcomes__item {
    display: flex;
    gap: 13px;
    align-items: flex-start;
    padding: 18px 20px;
    border-radius: var(--r-md);
    background: rgba(255, 255, 255, .028);
    box-shadow: 0 0 0 1px var(--border) inset;
    font-size: 14.5px;
    line-height: 1.55;
    transition: transform .35s var(--ease-out), box-shadow .35s
}

.outcomes__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 0 1px var(--border-strong) inset
}

.outcomes__item i {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    flex: none;
    display: grid;
    place-items: center;
    background: rgba(255, 194, 75, .13);
    color: var(--gold);
    margin-top: 1px
}

.outcomes__item i svg {
    width: 11px;
    height: 11px
}

/* ================= LANG SWITCHER ================= */
.lang {
    display: flex;
    gap: 2px;
    padding: 3px;
    border-radius: 100px;
    background: var(--panel);
    box-shadow: 0 0 0 1px var(--border) inset;
}

.lang a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 11px;
    border-radius: 100px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: .06em;
    color: var(--text-3);
    text-decoration: none;
    transition: .25s;
    min-height: 28px;
}

.lang a.is-active {
    background: rgba(255, 255, 255, .09);
    color: var(--text);
}

.lang a:hover {
    color: var(--text-2);
}

.nav__mobile-menu .lang {
    margin-top: 10px;
}

/* ================= 3D LOGOS ================= */
.logo3d {
    display: inline-block;
    filter: drop-shadow(0 18px 34px rgba(0, 0, 0, .55));
    user-select: none;
    -webkit-user-drag: none
}

.video__float {
    position: absolute;
    z-index: 4; 
    animation: chipFloat 7s ease-in-out infinite;
    pointer-events: none
}

.video__float img {
    width: clamp(38px, 4.2vw, 54px)
}

.video__float--google {
    left: max(-20px, 2%);
    top: 8%;
    animation-delay: .5s;
    transform: rotate(-8deg)
}

.video__float--meta {
    right: max(-16px, 2%);
    bottom: 10%;
    animation-delay: 1.8s;
    transform: rotate(7deg)
}

/* ================= STORIES (vertical video reviews) ================= */
.stories {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 6px 4px 22px;
    scrollbar-width: none
}

.stories::-webkit-scrollbar {
    display: none
}

.stories__item {
    flex: 0 0 min(480px, 92%);
    scroll-snap-align: start;
    display: grid;
    grid-template-columns:186px 1fr;
    gap: 20px;
    padding: 16px;
    border-radius: 24px;
    background: linear-gradient(170deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .015));
    box-shadow: 0 0 0 1px var(--border) inset;
    transition: transform .4s var(--ease-out), box-shadow .4s
}

.stories__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 0 1px var(--border-strong) inset, 0 30px 60px -30px rgba(0, 0, 0, .7)
}

.stories__phone {
    position: relative;
    aspect-ratio: 9/16;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    background: linear-gradient(165deg, #151827, #0A0C14);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, .1) inset, 0 20px 44px -20px rgba(0, 0, 0, .8)
}

.stories__phone::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 52px;
    height: 5px;
    border-radius: 3px;
    background: rgba(255, 255, 255, .14);
    z-index: 3
}

.stories__phone iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: none
}

.stories__phone.is-playing iframe {
    display: block
}

.stories__phone.is-playing .stories__mesh, .stories__phone.is-playing .stories__play, .stories__phone.is-playing .stories__duration {
    display: none
}

.stories__mesh {
    position: absolute;
    inset: 0
}

.stories__item:nth-child(1) .stories__mesh {
    background: radial-gradient(80% 60% at 30% 22%, rgba(77, 124, 254, .28), transparent 65%), radial-gradient(70% 55% at 75% 82%, rgba(139, 92, 246, .24), transparent 60%)
}

.stories__item:nth-child(2) .stories__mesh {
    background: radial-gradient(80% 60% at 70% 20%, rgba(255, 194, 75, .2), transparent 65%), radial-gradient(70% 55% at 25% 80%, rgba(77, 124, 254, .26), transparent 60%)
}

.stories__item:nth-child(3) .stories__mesh {
    background: radial-gradient(80% 60% at 30% 78%, rgba(61, 220, 151, .18), transparent 65%), radial-gradient(70% 55% at 78% 22%, rgba(139, 92, 246, .26), transparent 60%)
}

.stories__item:nth-child(4) .stories__mesh {
    background: radial-gradient(80% 60% at 68% 76%, rgba(77, 124, 254, .26), transparent 65%), radial-gradient(70% 55% at 22% 20%, rgba(255, 194, 75, .16), transparent 60%)
}

.stories__item:nth-child(5) .stories__mesh {
    background: radial-gradient(80% 60% at 26% 24%, rgba(139, 92, 246, .26), transparent 65%), radial-gradient(70% 55% at 76% 80%, rgba(61, 220, 151, .16), transparent 60%)
}

.stories__item:nth-child(6) .stories__mesh {
    background: radial-gradient(80% 60% at 72% 22%, rgba(56, 208, 245, .2), transparent 65%), radial-gradient(70% 55% at 26% 80%, rgba(139, 92, 246, .24), transparent 60%)
}

.stories__phone .stories__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .09);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, .2) inset;
    backdrop-filter: blur(12px);
    transition: transform .35s var(--ease-spring)
}

.stories__phone .stories__play::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .22);
    animation: ring 2.6s var(--ease-out) infinite
}

.stories__phone .stories__play svg {
    width: 17px;
    height: 17px;
    fill: #fff;
    margin-left: 3px
}

.stories__phone:hover .stories__play {
    transform: translate(-50%, -50%) scale(1.12)
}

.stories__duration {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-mono);
    font-size: 9.5px;
    letter-spacing: .1em;
    color: rgba(255, 255, 255, .6);
    background: rgba(0, 0, 0, .4);
    padding: 4px 10px;
    border-radius: 100px;
    backdrop-filter: blur(8px)
}

.stories__info {
    display: grid;
    gap: 10px;
    align-content: center;
    padding-right: 6px
}

.stories__info .stories__result {
    justify-self: start;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: .08em;
    padding: 6px 11px;
    border-radius: 100px;
    background: rgba(255, 194, 75, .12);
    color: var(--gold);
    box-shadow: 0 0 0 1px rgba(255, 194, 75, .3) inset
}

.stories__info b {
    font-family: var(--font-display);
    font-size: 18px;
    letter-spacing: -.01em
}

.stories__info .stories__role {
    font-size: 12px;
    color: var(--text-3);
    font-family: var(--font-mono);
    letter-spacing: .04em;
    margin-top: -6px
}

.stories__info p {
    font-size: 13.5px;
    color: var(--text-2);
    line-height: 1.6
}

.stories__achievement {
    display: grid;
    gap: 6px
}

.stories__achievement span {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 12.5px;
    color: var(--text-2)
}

.stories__achievement i {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(61, 220, 151, .14);
    color: var(--green);
    display: grid;
    place-items: center;
    flex: none
}

.stories__achievement i svg {
    width: 8px;
    height: 8px
}

/* ================= PARTNER PHOTO ================= */
.founder-photo__wrap {
    position: relative;
    max-width: 420px;
    margin-inline: auto
}

.founder-photo {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: 26px;
    overflow: hidden;
    background: linear-gradient(165deg, #171a2a, #0B0D15);
    box-shadow: 0 0 0 1px var(--border) inset, 0 44px 90px -34px rgba(0, 0, 0, .85)
}

.founder-photo::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1.5px;
    pointer-events: none;
    z-index: 2;
    background: linear-gradient(160deg, rgba(109, 124, 255, .6), transparent 35%, transparent 65%, rgba(255, 194, 75, .45));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude
}

.founder-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.photo-ph {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: radial-gradient(70% 60% at 50% 30%, rgba(109, 124, 255, .16), transparent 65%)
}

.photo-ph b {
    font-family: var(--font-display);
    font-size: 110px;
    font-weight: 700;
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    opacity: .5
}

.photo-ph span {
    position: absolute;
    bottom: 20px;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: .14em;
    color: var(--text-3)
}

.founder-photo__float {
    position: absolute;
    z-index: 5;
    border-radius: 16px;
    padding: 13px 16px;
    background: rgba(13, 15, 24, .9);
    box-shadow: 0 0 0 1px var(--border-strong) inset, 0 22px 48px -18px rgba(0, 0, 0, .85);
    backdrop-filter: blur(16px);
    display: grid;
    gap: 8px;
    animation: chipFloat 7s ease-in-out infinite
}

.founder-photo__float .founder-photo__heading {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600
}

.founder-photo__float .founder-photo__heading .plogo {
    width: 15px;
    height: 15px
}

.founder-photo__float .founder-photo__value {
    display: flex;
    gap: 12px
}

.founder-photo__float .founder-photo__value div b {
    display: block;
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 600
}

.founder-photo__float .founder-photo__value div span {
    font-size: 9px;
    font-family: var(--font-mono);
    letter-spacing: .06em;
    color: var(--text-3);
    text-transform: uppercase
}

.founder-photo__float--first {
    top: 26px;
    left: -46px;
    animation-delay: .6s
}

.founder-photo__float--second {
    bottom: 34px;
    right: -42px;
    animation-delay: 2s
}

.founder-photo__float--first b {
    color: var(--gold)
}

.founder-photo__float--second b {
    color: var(--green)
}

/* ================= WHAT YOU GET ================= */
.services__grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 18px
}

.services__card {
    position: relative;
    border-radius: var(--r-lg);
    padding: 26px;
    background: linear-gradient(175deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .015));
    box-shadow: 0 0 0 1px var(--border) inset;
    overflow: hidden;
    transition: transform .4s var(--ease-out), box-shadow .4s
}

.services__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 0 1px var(--border-strong) inset, 0 30px 60px -30px rgba(0, 0, 0, .7)
}

.services__card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 2px;
    background: var(--grad);
    border-radius: 2px;
    opacity: .8
}

.services__card-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px
}

.services__card-head .services__icons {
    display: flex;
    gap: 6px;
    align-items: center
}

.services__card-head .services__icons img {
    width: 24px
}

.services__card-head .scanner__icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: linear-gradient(140deg, rgba(77, 124, 254, .14), rgba(139, 92, 246, .14));
    box-shadow: 0 0 0 1px rgba(109, 124, 255, .25) inset
}

.services__card-head .scanner__icon svg {
    width: 19px;
    height: 19px
}

.services__card-head b {
    font-family: var(--font-display);
    font-size: 17px;
    letter-spacing: -.01em
}

.services__card ul {
    list-style: none;
    display: grid;
    gap: 9px
}

.services__card li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 14px;
    color: var(--text-2);
    line-height: 1.45
}

.services__card li i {
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: rgba(61, 220, 151, .13);
    color: var(--green);
    display: grid;
    place-items: center;
    flex: none;
    margin-top: 2px
}

.services__card li i svg {
    width: 9px;
    height: 9px
}

.services__note {
    margin-top: 18px;
    text-align: center;
    font-family: var(--font-mono);
    font-size: 11.5px;
    letter-spacing: .1em;
    color: var(--text-3);
    text-transform: uppercase
}

/* ================= GUARANTEES ================= */
.guarantees {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 14px;
    margin-top: clamp(36px, 5vw, 56px)
}

.guarantees__item {
    display: flex;
    gap: 13px;
    align-items: center;
    padding: 17px 19px;
    border-radius: var(--r-md);
    background: rgba(255, 255, 255, .028);
    box-shadow: 0 0 0 1px var(--border) inset;
    font-size: 13.5px;
    line-height: 1.45;
    color: var(--text-2)
}

.guarantees__item i {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    flex: none;
    display: grid;
    place-items: center;
    background: rgba(255, 194, 75, .1);
    color: var(--gold);
    box-shadow: 0 0 0 1px rgba(255, 194, 75, .25) inset
}

.guarantees__item i svg {
    width: 16px;
    height: 16px
}

.guarantees__item b {
    color: var(--text);
    display: block;
    font-size: 13.5px
}

/* mobile for new blocks */
@media (max-width: 1024px) {
    .services__grid {
        grid-template-columns:1fr
    }

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

    .founder-photo__wrap {
        max-width: 380px
    }

    .founder-photo__float--first {
        left: -14px
    }

    .founder-photo__float--second {
        right: -12px
    }
}

@media (max-width: 760px) {
    .stories__item {
        flex-basis: 88%;
        grid-template-columns:140px 1fr;
        gap: 14px;
        padding: 13px
    }

    .stories__info b {
        font-size: 15.5px
    }

    .stories__info p {
        font-size: 12.5px
    }

    .stories__achievement span {
        font-size: 11.5px
    }

    .guarantees {
        grid-template-columns:1fr;
        gap: 10px
    }

    .founder-photo__float--first {
        top: 14px;
        left: -8px;
        transform: scale(.88)
    }

    .founder-photo__float--second {
        bottom: 16px;
        right: -8px;
        transform: scale(.88)
    }

    .video__float {
        display: none
    }

    .nav .lang {
        display: none
    }
}

/* ================= VIDEO CASE STUDIES ================= */
.case-studies__grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 18px
}

.case-studies__card {
    border-radius: var(--r-lg);
    overflow: hidden;
    background: linear-gradient(175deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .015));
    box-shadow: 0 0 0 1px var(--border) inset;
    transition: transform .4s var(--ease-out), box-shadow .4s;
    display: flex;
    flex-direction: column
}

.case-studies__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 0 1px var(--border-strong) inset, 0 34px 70px -30px rgba(0, 0, 0, .8)
}

.case-studies__video {
    position: relative;
    aspect-ratio: 16/9;
    cursor: pointer;
    background: linear-gradient(160deg, #141726, #0A0C14)
}

.case-studies__video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: none
}

.case-studies__video.is-playing iframe {
    display: block
}

.case-studies__video.is-playing .case-studies__mesh, .case-studies__video.is-playing .stories__play {
    display: none
}

.case-studies__mesh {
    position: absolute;
    inset: 0
}

.case-studies__card:nth-child(1) .case-studies__mesh {
    background: radial-gradient(80% 90% at 25% 20%, rgba(77, 124, 254, .24), transparent 60%), radial-gradient(70% 80% at 80% 85%, rgba(255, 194, 75, .14), transparent 60%)
}

.case-studies__card:nth-child(2) .case-studies__mesh {
    background: radial-gradient(80% 90% at 75% 18%, rgba(139, 92, 246, .24), transparent 60%), radial-gradient(70% 80% at 20% 85%, rgba(61, 220, 151, .13), transparent 60%)
}

.case-studies__card:nth-child(3) .case-studies__mesh {
    background: radial-gradient(80% 90% at 30% 82%, rgba(56, 208, 245, .18), transparent 60%), radial-gradient(70% 80% at 78% 20%, rgba(139, 92, 246, .22), transparent 60%)
}

.case-studies__video .stories__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .09);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, .2) inset;
    backdrop-filter: blur(12px);
    transition: transform .35s var(--ease-spring)
}

.case-studies__video .stories__play::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .22);
    animation: ring 2.6s var(--ease-out) infinite
}

.case-studies__video .stories__play svg {
    width: 18px;
    height: 18px;
    fill: #fff;
    margin-left: 3px
}

.case-studies__video:hover .stories__play {
    transform: translate(-50%, -50%) scale(1.12)
}

.case-studies__industry {
    position: absolute;
    top: 12px;
    left: 13px;
    font-family: var(--font-mono);
    font-size: 9.5px;
    letter-spacing: .1em;
    padding: 6px 11px;
    border-radius: 100px;
    background: rgba(13, 15, 24, .75);
    color: var(--text-2);
    box-shadow: 0 0 0 1px var(--border-strong) inset;
    backdrop-filter: blur(8px);
    text-transform: uppercase
}

.case-studies__body {
    padding: 20px 22px 22px;
    display: grid;
    gap: 10px;
    flex: 1;
    align-content: start
}

.case-studies__body b {
    font-family: var(--font-display);
    font-size: 18px;
    letter-spacing: -.01em
}

.case-studies__body p {
    font-size: 13.5px;
    color: var(--text-2);
    line-height: 1.6
}

.case-studies__metrics {
    display: flex;
    gap: 10px;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--border)
}

.case-studies__metrics div {
    flex: 1
}

.case-studies__metrics b {
    display: block;
    font-family: var(--font-mono);
    font-size: 16px;
    font-weight: 600;
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.case-studies__metrics span {
    font-size: 9.5px;
    font-family: var(--font-mono);
    letter-spacing: .06em;
    color: var(--text-3);
    text-transform: uppercase
}

/* ================= INDUSTRIES CAROUSEL ================= */
.industries {
    overflow: hidden;
}

.industries__rail {
    position: relative;
    overflow: hidden;
}

.industries__track {
    align-items: stretch;
    padding: 6px 4px 22px;
}

.industries__item {
    position: relative;
    width: 218px;
    height: auto;
    aspect-ratio: 3 / 4.1;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(170deg, #121527, #0A0C14);
    box-shadow: 0 0 0 1px var(--border) inset;
    transition: transform .4s var(--ease-out), box-shadow .4s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 18px;
}

.industries__item:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 0 1px var(--border-strong) inset, 0 30px 60px -28px rgba(0, 0, 0, .85);
}

.industries__art {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
}

.industries__art::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(7, 8, 13, .55) 68%, rgba(7, 8, 13, .92));
}

.industries__art svg {
    width: 64px;
    height: 64px;
    opacity: .9;
    filter: drop-shadow(0 10px 26px rgba(0, 0, 0, .5));
    transform: translateY(-26px);
    transition: transform .5s var(--ease-spring);
}

.industries__item:hover .industries__art svg {
    transform: translateY(-32px) scale(1.08);
}

.industries__art img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.industries__item b {
    position: relative;
    z-index: 2;
    font-family: var(--font-display);
    font-size: 17px;
    letter-spacing: -.01em;
}

.industries__item span {
    position: relative;
    z-index: 2;
    font-size: 12px;
    color: var(--text-2);
    line-height: 1.5;
    margin-top: 5px;
}

.industries__more {
    background: linear-gradient(160deg, rgba(77, 124, 254, .16), rgba(139, 92, 246, .12));
    justify-content: center;
    text-align: center;
    cursor: pointer;
}

.industries__more b {
    font-size: 18px;
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.industries__more span {
    color: var(--text-2);
}

.industries__more .landing-button {
    margin: 14px auto 0;
    position: relative;
    z-index: 2;
}

.industries__nav {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-bottom: 16px;
}

.industries__nav button {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--panel);
    box-shadow: 0 0 0 1px var(--border) inset;
    color: var(--text-2);
    transition: .25s;
}

.industries__nav button:hover {
    color: var(--text);
    box-shadow: 0 0 0 1px var(--border-strong) inset;
    background: rgba(255, 255, 255, .06);
}

.industries__nav button.swiper-button-disabled {
    opacity: .35;
    cursor: default;
    pointer-events: none;
}

.industries__nav svg {
    width: 17px;
    height: 17px;
}

/* ================= QUIZ MODAL ================= */
.quiz-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(5, 6, 10, .7);
    backdrop-filter: blur(14px);
    display: grid;
    place-items: center;
    padding: 18px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s
}

.quiz-overlay.is-open {
    opacity: 1;
    pointer-events: auto
}

.quiz {
    width: min(560px, 100%);
    max-height: min(92vh, 760px);
    overflow-y: auto;
    border-radius: 26px;
    background: linear-gradient(170deg, #12152A, #0B0D15);
    box-shadow: 0 0 0 1px var(--border-strong) inset, 0 60px 140px -40px rgba(0, 0, 0, .9);
    padding: clamp(22px, 4vw, 34px);
    transform: translateY(18px) scale(.97);
    transition: transform .4s var(--ease-spring);
    position: relative;
    scrollbar-width: thin
}

.quiz-overlay.is-open .quiz {
    transform: none
}

.quiz__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .05);
    color: var(--text-3);
    box-shadow: 0 0 0 1px var(--border) inset;
    transition: .25s;
    z-index: 3
}

.quiz__close:hover {
    color: var(--text);
    background: rgba(255, 255, 255, .09)
}

.quiz__close svg {
    width: 15px;
    height: 15px
}

.quiz__progress {
    display: flex;
    gap: 6px;
    margin-bottom: 22px
}

.quiz__progress i {
    height: 3px;
    flex: 1;
    border-radius: 2px;
    background: rgba(255, 255, 255, .09);
    overflow: hidden;
    position: relative
}

.quiz__progress i.is-complete::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--grad)
}

.quiz h3 {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 3vw, 1.55rem);
    letter-spacing: -.02em;
    line-height: 1.2;
    margin-bottom: 6px
}

.quiz .quiz__subtitle {
    font-size: 13.5px;
    color: var(--text-3);
    margin-bottom: 22px
}

.quiz__step {
    display: none
}

.quiz__step.is-active {
    display: block;
    animation: qzIn .4s var(--ease-out)
}

@keyframes qzIn {
    from {
        opacity: 0;
        transform: translateX(14px)
    }
    to {
        opacity: 1
    }
}

.quiz label {
    display: block;
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: .1em;
    color: var(--text-3);
    text-transform: uppercase;
    margin: 16px 0 8px
}

.quiz input[type=text], .quiz input[type=email], .quiz input[type=tel], .quiz input[type=url], .quiz textarea {
    width: 100%;
    padding: 13px 15px;
    border-radius: 13px;
    background: rgba(255, 255, 255, .04);
    box-shadow: 0 0 0 1px var(--border) inset;
    color: var(--text);
    font-size: 14.5px;
    font-family: var(--font-body);
    transition: box-shadow .25s;
    border: 0;
    outline: 0
}

.quiz input:focus, .quiz textarea:focus {
    box-shadow: 0 0 0 1.5px rgba(109, 124, 255, .65) inset
}

.quiz input.has-error {
    box-shadow: 0 0 0 1.5px rgba(255, 92, 122, .7) inset
}

.quiz .landing-button.has-error {
    box-shadow: 0 0 0 1.5px rgba(255, 92, 122, .8) inset
}

.quiz .landing-button:disabled {
    cursor: progress;
    opacity: .72
}

.quiz textarea {
    min-height: 76px;
    resize: vertical
}

.quiz__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.quiz__chip {
    padding: 10px 15px;
    border-radius: 100px;
    background: rgba(255, 255, 255, .04);
    box-shadow: 0 0 0 1px var(--border) inset;
    font-size: 13px;
    color: var(--text-2);
    cursor: pointer;
    transition: .22s;
    user-select: none
}

.quiz__chip:hover {
    color: var(--text);
    box-shadow: 0 0 0 1px var(--border-strong) inset
}

.quiz__chip.is-active {
    background: linear-gradient(135deg, rgba(77, 124, 254, .22), rgba(139, 92, 246, .22));
    color: var(--text);
    box-shadow: 0 0 0 1.5px rgba(109, 124, 255, .6) inset
}

.quiz__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-top: 26px
}

.quiz__back {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: .06em;
    color: var(--text-3);
    padding: 10px 6px;
    transition: .2s
}

.quiz__back:hover {
    color: var(--text)
}

.quiz__note {
    font-size: 11px;
    color: var(--text-3);
    text-align: center;
    margin-top: 14px;
    font-family: var(--font-mono);
    letter-spacing: .04em
}

.quiz__done {
    text-align: center;
    padding: 26px 6px 10px;
    display: none
}

.quiz__done.is-active {
    display: block;
    animation: qzIn .4s var(--ease-out)
}

.quiz__done .ok {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin: 0 auto 18px;
    display: grid;
    place-items: center;
    background: rgba(61, 220, 151, .12);
    color: var(--green);
    box-shadow: 0 0 0 1px rgba(61, 220, 151, .35) inset
}

.quiz__done .ok svg {
    width: 26px;
    height: 26px
}

.quiz__done h3 {
    margin-bottom: 10px
}

.quiz__done p {
    font-size: 14px;
    color: var(--text-2);
    line-height: 1.65;
    max-width: 38ch;
    margin-inline: auto
}

@media (max-width: 760px) {
    .case-studies__grid {
        grid-template-columns:1fr
    }

    .industries__item {
        flex-basis: 180px
    }

    .industries__art svg {
        width: 52px;
        height: 52px
    }

    .quiz {
        max-height: 94vh
    }
}

body.next-era-landing-page.is-quiz-open {
    overflow: hidden
}

/* ================= QUOTE MARQUEE ================= */
.quote-marquee {
    overflow: hidden;
    margin-top: 20px;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent)
}

.quote-marquee__track {
    display: flex;
    gap: 14px;
    width: max-content;
    animation: marquee 46s linear infinite;
    padding: 4px 0
}

.quote-marquee.rev .quote-marquee__track {
    animation-direction: reverse;
    animation-duration: 56s
}

.quote-marquee:hover .quote-marquee__track {
    animation-play-state: paused
}

.quote-card {
    flex: none;
    width: 330px;
    padding: 17px 19px;
    border-radius: 16px;
    background: linear-gradient(170deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .015));
    box-shadow: 0 0 0 1px var(--border) inset;
    display: grid;
    gap: 9px
}

.quote-card .quote-card__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px
}

.quote-card .quote-card__top .amt {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-3)
}

.quote-card .quote-card__top .amt b {
    color: var(--gold);
    font-weight: 600
}

.quote-card p {
    font-size: 12.8px;
    line-height: 1.55;
    color: var(--text-2)
}

.quote-card .quote-card__person {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: .05em;
    color: var(--text-3)
}

.quote-card .quote-card__person svg {
    width: 11px;
    height: 11px;
    color: #7EE96A;
    flex: none
}

.video__fallback {
    display: block;
    text-align: center;
    margin-top: 16px;
    font-family: var(--font-mono);
    font-size: 11.5px;
    letter-spacing: .06em;
    color: var(--text-3);
    transition: color .2s
}

.video__fallback:hover {
    color: var(--text-2)
}

/* ================= GLOBAL REACH ================= */
.global-reach {
    position: relative;
    overflow: hidden;
    background: var(--bg-2);
    border-block: 1px solid var(--border);
}

.global-reach__glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
            radial-gradient(600px 300px at 15% -10%, rgba(77, 124, 254, .10), transparent 70%),
            radial-gradient(600px 300px at 85% 110%, rgba(139, 92, 246, .10), transparent 70%);
}

.global-reach .landing-section__head {
    position: relative;
    z-index: 1;
}

.global-reach .lead {
    text-align: center;
}

.global-reach__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(139, 92, 246, .08);
    box-shadow: 0 0 0 1px rgba(139, 92, 246, .28) inset;
    color: var(--text-2);
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.global-reach__eyebrow::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--violet);
    box-shadow: 0 0 10px var(--violet);
}

.global-reach__rows {
    display: grid;
    gap: 14px;
    margin-top: clamp(30px, 4vw, 48px);
    position: relative;
    z-index: 1;
}

.global-reach__row {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.global-reach__row::before,
.global-reach__row::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
    width: clamp(28px, 6vw, 90px);
    pointer-events: none;
}

.global-reach__row::before {
    left: 0;
    background: linear-gradient(
            90deg,
            var(--bg-2) 0%,
            rgba(11, 13, 21, .92) 24%,
            rgba(11, 13, 21, 0) 100%
    );
}

.global-reach__row::after {
    right: 0;
    background: linear-gradient(
            270deg,
            var(--bg-2) 0%,
            rgba(11, 13, 21, .92) 24%,
            rgba(11, 13, 21, 0) 100%
    );
}

.global-reach__track {
    display: flex;
    gap: 14px;
    width: max-content;
    min-width: max-content;
    transform: translate3d(0, 0, 0);
    animation: globalReachScroll 60s linear infinite;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.global-reach__row--reverse .global-reach__track {
    animation-direction: reverse;
    animation-duration: 74s;
}

.global-reach__rows:hover .global-reach__track {
    animation-play-state: paused;
}

@keyframes globalReachScroll {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(calc(-50% - 7px), 0, 0);
    }
}

.global-reach__chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
    padding: 11px 18px;
    border-radius: 999px;
    white-space: nowrap;
    background: rgba(255, 255, 255, .03);
    box-shadow: 0 0 0 1px var(--border) inset;
    color: var(--text);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.2;
    transition: background .3s, box-shadow .3s, transform .3s;
}

.global-reach__chip:hover {
    background: rgba(255, 255, 255, .06);
    box-shadow: 0 0 0 1px var(--border-strong) inset;
    transform: translateY(-2px);
}

.global-reach__flag {
    display: inline-block;
    flex: 0 0 auto;
    font-size: 20px;
    line-height: 1;
}

@media (max-width: 640px) {
    .global-reach__rows {
        gap: 10px;
    }

    .global-reach__row::before,
    .global-reach__row::after {
        width: 36px;
    }

    .global-reach__chip {
        gap: 8px;
        padding: 9px 14px;
        font-size: 13.5px;
    }

    .global-reach__flag {
        font-size: 17px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .global-reach__track {
        animation: none;
        transform: none;
    }

    .global-reach__row {
        overflow-x: auto;
        scrollbar-width: none;
    }

    .global-reach__row::-webkit-scrollbar {
        display: none;
    }

    .global-reach__row::before,
    .global-reach__row::after {
        display: none;
    }
}
/* ================= VIDEO / PROOF ================= */
.video {
    position: relative;
    overflow: hidden;
    background: var(--bg-2);
    border-block: 1px solid var(--border)
}

.video__glow {
    position: absolute;
    width: 900px;
    height: 520px;
    left: 50%;
    top: 55%;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse, rgba(109, 124, 255, .2), transparent 65%);
    filter: blur(60px);
    pointer-events: none
}

.video__points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    max-width: 820px;
    margin: 0 auto clamp(34px, 4vw, 48px)
}

.video__point {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border-radius: 100px;
    background: var(--panel);
    box-shadow: 0 0 0 1px var(--border) inset;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-2)
}

.video__point i {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(61, 220, 151, .14);
    color: var(--green);
    display: grid;
    place-items: center;
    flex: none
}

.video__point i svg {
    width: 9px;
    height: 9px
}

.video__frame {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    aspect-ratio: 16/9;
    max-width: 960px;
    margin-inline: auto;
    background: linear-gradient(160deg, #121520, #0A0C14);
    box-shadow: 0 0 0 1px var(--border) inset, 0 50px 110px -40px rgba(0, 0, 0, .85), 0 0 100px -30px rgba(139, 92, 246, .4)
}

.video__frame::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1.5px;
    pointer-events: none;
    z-index: 2;
    background: conic-gradient(from var(--ang, 0deg), rgba(109, 124, 255, .7), rgba(255, 194, 75, .35), rgba(139, 92, 246, .7), rgba(109, 124, 255, .7));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: spinBorder 7s linear infinite
}

@property --ang {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false
}

@keyframes spinBorder {
    to {
        --ang: 360deg
    }
}

.video__inner {
    position: absolute;
    inset: 0
}

.video__inner iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: none
}

.video__frame.is-playing iframe {
    display: block
}

.video__frame.is-playing .video__poster {
    display: none
}

.video__poster {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    cursor: pointer
}

.video__poster .mesh {
    position: absolute;
    inset: 0;
    background: radial-gradient(60% 90% at 20% 20%, rgba(77, 124, 254, .18), transparent 60%), radial-gradient(60% 90% at 85% 75%, rgba(139, 92, 246, .2), transparent 60%)
}

.video__play-button {
    position: relative;
    width: 92px;
    height: 92px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .06);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, .16) inset;
    backdrop-filter: blur(14px);
    transition: transform .35s var(--ease-spring)
}

.video__play-button::before, .video__play-button::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .2);
    animation: ring 2.6s var(--ease-out) infinite
}

.video__play-button::after {
    animation-delay: 1.3s
}

@keyframes ring {
    to {
        transform: scale(1.7);
        opacity: 0
    }
}

.video__play-button svg {
    width: 29px;
    height: 29px;
    fill: #fff;
    margin-left: 5px
}

.video__poster:hover .video__play-button {
    transform: scale(1.1)
}

.video__caption {
    position: absolute;
    left: 26px;
    bottom: 22px;
    z-index: 3;
    display: grid;
    gap: 3px
}

.video__caption b {
    font-family: var(--font-display);
    font-size: 16px
}

.video__caption span {
    font-size: 12px;
    color: var(--text-3);
    font-family: var(--font-mono);
    letter-spacing: .05em
}

/* ================= GROWTH PARTNER (merged) ================= */
.partner__grid {
    display: grid;
    grid-template-columns:.95fr 1.05fr;
    gap: clamp(36px, 5vw, 64px);
    align-items: center;
    margin-bottom: clamp(48px, 6vw, 72px)
}

.partner__copy {
    display: grid;
    gap: 20px;
    justify-items: start
}

.founder-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border-radius: var(--r-md);
    background: rgba(255, 255, 255, .03);
    box-shadow: 0 0 0 1px var(--border) inset;
    margin-top: 4px
}

.founder-card__avatar {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--grad);
    display: grid;
    place-items: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 22px;
    flex: none;
    box-shadow: 0 8px 24px -8px rgba(109, 124, 255, .6)
}

.founder-card b {
    display: block;
    font-size: 15.5px
}

.founder-card span {
    font-size: 12.5px;
    color: var(--text-3)
}

.founder-card .up-mini {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 13px;
    border-radius: 100px;
    background: rgba(20, 168, 0, .12);
    box-shadow: 0 0 0 1px rgba(126, 233, 106, .35) inset;
    font-size: 11.5px;
    font-weight: 600;
    color: #8BF07A;
    white-space: nowrap
}

/* ================= PROCESS (fixed line) ================= */
.timeline {
    position: relative;
    max-width: 780px;
    margin-inline: auto
}

.timeline::before {
    content: "";
    position: absolute;
    left: 9px;
    top: 14px;
    bottom: 14px;
    width: 1.5px;
    background: rgba(255, 255, 255, .08)
}

.timeline__line {
    position: absolute;
    left: 9px;
    top: 14px;
    width: 1.5px;
    height: 0;
    background: linear-gradient(180deg, var(--blue), var(--violet), var(--gold));
    box-shadow: 0 0 12px rgba(109, 124, 255, .6)
}

.timeline__step {
    display: grid;
    grid-template-columns:20px 54px 1fr;
    gap: 0 20px;
    padding: 24px 0;
    position: relative
}

.timeline__dot {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    height: 54px
}

.timeline__dot i {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--bg);
    box-shadow: 0 0 0 1.5px rgba(255, 255, 255, .2);
    transition: .5s;
    margin-left: -1px
}

.timeline__step.is-visible .timeline__dot i {
    background: var(--blue);
    box-shadow: 0 0 0 1.5px var(--blue), 0 0 16px rgba(77, 124, 254, .8)
}

.timeline__number {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    position: relative;
    z-index: 2;
    background: var(--bg-2);
    box-shadow: 0 0 0 1px var(--border) inset;
    font-family: var(--font-mono);
    font-weight: 600;
    font-size: 13.5px;
    color: var(--text-2);
    transition: all .5s var(--ease-out)
}

.timeline__step.is-visible .timeline__number {
    background: linear-gradient(140deg, rgba(77, 124, 254, .2), rgba(139, 92, 246, .2));
    box-shadow: 0 0 0 1px rgba(109, 124, 255, .5) inset, 0 0 26px -6px rgba(109, 124, 255, .6);
    color: var(--text)
}

.timeline__step h3 {
    margin-bottom: 7px
}

.timeline__step p {
    color: var(--text-2);
    font-size: 15px;
    max-width: 52ch
}

.timeline__step .dur {
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: .1em;
    color: var(--text-3);
    text-transform: uppercase;
    display: inline-block;
    margin-top: 11px;
    padding: 5px 11px;
    border-radius: 6px;
    background: rgba(255, 255, 255, .04)
}

/* ================= WHY US ================= */
.compare {
    border-radius: var(--r-lg);
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .015));
    box-shadow: 0 0 0 1px var(--border) inset
}

.compare__row {
    display: grid;
    grid-template-columns:1.3fr 1fr 1fr;
    border-bottom: 1px solid var(--border)
}

.compare__row:last-child {
    border: none
}

.compare__row > div {
    padding: 19px 26px;
    font-size: 14.5px;
    display: flex;
    align-items: center;
    gap: 10px
}

.compare__row--head {
    background: rgba(255, 255, 255, .03)
}

.compare__row--head > div {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 16px
}

.compare__cell--us {
    background: linear-gradient(180deg, rgba(109, 124, 255, .07), rgba(139, 92, 246, .04))
}

.compare__row--head .compare__cell--us {
    color: transparent;
    background-image: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text
}

.compare__feature {
    color: var(--text-2)
}

.check, .cross {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    flex: none
}

.check {
    background: rgba(61, 220, 151, .14);
    color: var(--green)
}

.cross {
    background: rgba(255, 92, 122, .1);
    color: var(--red)
}

.check svg, .cross svg {
    width: 12px;
    height: 12px
}

/* ================= RESULTS (Stripe-grade) ================= */
.results {
    position: relative;
    overflow: hidden;
    background: var(--bg-2);
    border-block: 1px solid var(--border)
}

.results::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 80% 90% at 50% 100%, #000 20%, transparent 75%);
    pointer-events: none
}

.results__glow {
    position: absolute;
    inset: auto 0 -45%;
    height: 130%;
    background: radial-gradient(ellipse 65% 55% at 50% 100%, rgba(109, 124, 255, .16), transparent 70%);
    pointer-events: none;
    animation: glowPulse 8s ease-in-out infinite
}

@keyframes glowPulse {
    50% {
        opacity: .6
    }
}

.results__grid {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: clamp(24px, 3.5vw, 48px);
    position: relative
}

.results__stat {
    padding-top: 26px;
    position: relative
}

.results__stat::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 44px;
    height: 2px;
    background: var(--grad);
    border-radius: 2px
}

.results__stat b {
    display: block;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(2.5rem, 4.4vw, 3.8rem);
    letter-spacing: -.03em;
    line-height: 1;
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.results__stat span {
    display: block;
    margin-top: 12px;
    font-size: 16px;
    color: var(--text-2);
    line-height: 1.5;
    max-width: 22ch;
    letter-spacing:0em;
}

.results__stat .landing-footer {
    margin-top: 8px;
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: .08em;
    color: var(--text-3);
    text-transform: uppercase
}

/* ================= REVIEWS (Upwork contract cards) ================= */
/* ================= FAQ ================= */
.faq {
    max-width: 760px;
    margin-inline: auto
}

.faq__item {
    border-bottom: 1px solid var(--border)
}

.faq__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    text-align: left;
    padding: 23px 4px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    letter-spacing: -.01em;
    transition: color .2s
}

.faq__question:hover {
    color: #B8C8FF
}

.faq__question i {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    flex: none;
    box-shadow: 0 0 0 1px var(--border) inset;
    transition: transform .4s var(--ease-out), background .3s
}

.faq__item.is-open .faq__question i {
    transform: rotate(45deg);
    background: rgba(109, 124, 255, .15)
}

.faq__question svg {
    width: 13px;
    height: 13px
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .5s var(--ease-out)
}

.faq__answer p {
    padding: 0 4px 25px;
    color: var(--text-2);
    font-size: 15px;
    max-width: 62ch
}

/* ================= FINAL ================= */
.final {
    position: relative;
    overflow: hidden;
    text-align: center
}

.final__background {
    position: absolute;
    inset: 0;
    pointer-events: none
}

.final__background .final__orb {
    position: absolute;
    width: 700px;
    height: 700px;
    left: 50%;
    top: 62%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(109, 124, 255, .22), transparent 60%);
    filter: blur(80px);
    animation: float1 12s ease-in-out infinite
}

.final__inner {
    position: relative;
    display: grid;
    gap: 26px;
    justify-items: center
}

.final .h-display {
    max-width: 16ch
}

.final__note {
    font-family: var(--font-mono);
    font-size: 11.5px;
    letter-spacing: .08em;
    color: var(--text-3);
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center
}

/* ================= FOOTER / STICKY ================= */
footer {
    border-top: 1px solid var(--border);
    padding: 52px 0 36px!important;
    background: var(--bg-2)
}

.landing-footer__grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    align-items: flex-start
}

.landing-footer__brand {
    display: grid;
    gap: 14px;
    max-width: 300px
}

.landing-footer__brand p {
    font-size: 13.5px;
    color: var(--text-3)
}

.landing-footer__up {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    border-radius: 100px;
    background: rgba(20, 168, 0, .1);
    box-shadow: 0 0 0 1px rgba(126, 233, 106, .3) inset;
    font-size: 12.5px;
    font-weight: 600;
    color: #8BF07A;
    justify-self: start
}

.landing-footer__links {
    display: flex;
    gap: clamp(32px, 6vw, 80px);
    flex-wrap: wrap
}

.landing-footer__column {
    display: grid;
    gap: 11px;
    align-content: start
}

.landing-footer__column b {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--text-3);
    margin-bottom: 4px
}

.landing-footer__column a {
    font-size: 14px;
    color: var(--text-2);
    transition: color .2s
}

.landing-footer__column a:hover {
    color: var(--text)
}

.landing-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 44px;
    padding-top: 22px;
    border-top: 1px solid var(--border);
    font-size: 12px;
    color: var(--text-3);
    font-family: var(--font-mono)
}

.sticky-cta {
    position: fixed;
    bottom: 18px;
    left: 50%;
    transform: translate(-50%, 150%);
    z-index: 880;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 9px 9px 9px 20px;
    border-radius: 100px;
    background: rgba(13, 15, 24, .85);
    box-shadow: 0 0 0 1px var(--border-strong) inset, 0 24px 60px -20px rgba(0, 0, 0, .8);
    backdrop-filter: blur(20px);
    transition: transform .55s var(--ease-spring)
}

.sticky-cta.show {
    transform: translate(-50%, 0)
}

.sticky-cta span {
    font-size: 13.5px;
    font-weight: 500;
    white-space: nowrap
}

.sticky-cta .landing-button {
    height: 42px;
    padding: 0 20px;
    font-size: 13.5px
}

/* ================= MOBILE — native, per section ================= */
@media (max-width: 1024px) {
    .hero__inner {
        grid-template-columns:1fr;
        gap: 56px
    }

    .scanner__wrap {
        max-width: 620px;
        margin-inline: auto
    }

    .offer__grid {
        grid-template-columns:1fr;
        gap: 44px
    }

    .score-card {
        max-width: 480px;
        margin-inline: auto
    }

    .partner__grid {
        grid-template-columns:1fr;
        gap: 48px
    }

    .collage {
        min-height: 440px;
        max-width: 620px;
        margin-inline: auto
    }

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

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

    .results__grid {
        grid-template-columns:1fr 1fr;
        gap: 36px 28px
    }

    .trust__card {
        grid-template-columns:1fr;
        gap: 26px
    }

    .trust__stats {
        grid-template-columns:repeat(2, 1fr)
    }
}

@media (max-width: 760px) {
    .next-era-landing__wrap {
        width: calc(100% - 36px)
    }

    .landing-section {
        padding: 64px 0
    }

    .nav__links, .nav > .next-era-landing__wrap > .landing-button {
        display: none
    }

    .nav__burger {
        display: flex
    }

    /* hero: stacked, full-width CTAs, 2-col stats */
    .hero {
        padding: calc(var(--nav-h) + 20px) 0 56px;
        min-height: auto
    }

    .hero__copy {
        gap: 20px
    }

    .hero__actions {
        width: 100%;
        flex-direction: column
    }

    .hero__actions .landing-button {
        width: 100%;
        height: 56px
    }

    .hero__stats {
        grid-template-columns:1fr 1fr;
        gap: 12px
    }

    .hero__stat {
        border-left: none;
        padding: 14px 16px;
        border-radius: 14px;
        background: rgba(255, 255, 255, .03);
        box-shadow: 0 0 0 1px var(--border) inset
    }

    .hero__stat b, .hero__stat span {
        white-space: normal
    }

    .scanner {
        transform: none
    }

    .scanner__wrap:hover .scanner {
        transform: none
    }

    .scanner__row {
        grid-template-columns:1fr auto;
        padding: 10px 12px
    }

    .scanner__row .scanner__spend {
        display: none
    }

    .scanner__float-chip {
        display: none
    }

    .scanner__footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px
    }

    .scanner__footer .scanner__note br {
        display: none
    }

    /* trust */
    .trust__stats {
        grid-template-columns:1fr 1fr;
        gap: 8px
    }

    .trust__stat {
        padding: 14px 15px
    }

    /* offer */
    .deliverables__item {
        padding: 13px 0
    }

    .outcomes {
        grid-template-columns:1fr;
        gap: 10px
    }

    .cta-strip {
        flex-direction: column;
        align-items: stretch;
        text-align: center
    }

    .cta-strip .landing-button {
        width: 100%
    }

    /* video */
    .video__frame {
        border-radius: 18px
    }

    .video__play-button {
        width: 68px;
        height: 68px
    }

    .video__play-button svg {
        width: 22px;
        height: 22px
    }

    .video__caption {
        left: 16px;
        bottom: 14px
    }

    .video__caption b {
        font-size: 13px
    }

    .video__caption span {
        font-size: 10px
    }

    .video__point {
        font-size: 12px;
        padding: 8px 13px
    }

    /* collage → stacked static cards */
    .collage {
        min-height: 0;
        display: grid;
        gap: 14px
    }

    .dash {
        position: static;
        width: 100% !important
    }

    .ba-chip {
        display: none
    }

    /* cases */
    .cases-grid {
        grid-template-columns:1fr
    }

    /* timeline compact */
    .timeline__step {
        grid-template-columns:14px 44px 1fr;
        gap: 0 14px;
        padding: 20px 0
    }

    .timeline::before, .timeline__line {
        left: 6px
    }

    .timeline__dot {
        height: 44px
    }

    .timeline__number {
        width: 44px;
        height: 44px;
        border-radius: 13px;
        font-size: 12px
    }

    .timeline__step p {
        font-size: 14px
    }

    /* compare → stacked feature blocks */
    .compare__row--head {
        display: none
    }

    .compare__row {
        grid-template-columns:1fr;
        border-bottom: none;
        margin-bottom: 12px;
        border-radius: var(--r-md);
        overflow: hidden;
        box-shadow: 0 0 0 1px var(--border) inset
    }

    .compare__row > div {
        padding: 13px 16px;
        font-size: 13.5px
    }

    .compare__feature {
        background: rgba(255, 255, 255, .04);
        font-weight: 600;
        color: var(--text);
        font-family: var(--font-display);
        letter-spacing: -.01em
    }

    .compare__cell--us::before {
        content: "NEXT ERA";
        font-family: var(--font-mono);
        font-size: 9px;
        letter-spacing: .12em;
        color: #9DB4FF;
        min-width: 64px
    }

    .compare__row > div:last-child::before {
        content: "TYPICAL";
        font-family: var(--font-mono);
        font-size: 9px;
        letter-spacing: .12em;
        color: var(--text-3);
        min-width: 64px
    }

    /* results 1-col, larger */
    .results__grid {
        grid-template-columns:1fr;
        gap: 32px
    }

    .results__stat span {
        max-width: none
    }

    /* reviews */
    .vrev-grid {
        grid-template-columns:1fr
    }

    .vrev {
        aspect-ratio: 16/9
    }

    .quote-card {
        width: 280px
    }

    .ba-big {
        font-size: 1.9rem
    }

    .ba-rows {
        gap: 6px
    }

    .ba-row {
        padding: 9px 11px;
        font-size: 11.5px
    }

    .ba-side {
        padding: 18px
    }

    .ba-label {
        margin-bottom: 12px
    }

    .ba-cap {
        margin-bottom: 12px
    }

    /* footer */
    .landing-footer__grid {
        flex-direction: column;
        gap: 32px
    }

    .landing-footer__links {
        gap: 28px 44px
    }

    .sticky-cta span {
        display: none
    }

    .sticky-cta {
        padding: 8px
    }

    .final .h-display {
        font-size: 2.1rem
    }
}

@media (prefers-reduced-motion: reduce) {
    .next-era-landing *, .next-era-landing *::before, .next-era-landing *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important
    }

    html.next-era-page {
        scroll-behavior: auto
    }

    [data-reveal] {
        opacity: 1;
        transform: none
    }
}

/* ================= LANG SWITCHER ================= */
.lang {
    display: flex;
    gap: 2px;
    padding: 3px;
    border-radius: 100px;
    background: var(--panel);
    box-shadow: 0 0 0 1px var(--border) inset
}

.lang button {
    padding: 6px 11px;
    border-radius: 100px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: .06em;
    color: var(--text-3);
    transition: .25s;
    min-height: 28px
}

.lang button.is-active {
    background: rgba(255, 255, 255, .09);
    color: var(--text)
}

.lang button:hover {
    color: var(--text-2)
}

.nav__mobile-menu .lang {
    margin-top: 10px
}

/* ================= 3D LOGOS ================= */
.logo3d {
    display: inline-block;
    filter: drop-shadow(0 18px 34px rgba(0, 0, 0, .55));
    user-select: none;
    -webkit-user-drag: none
}

.video__float {
    position: absolute;
    z-index: 4;
    animation: chipFloat 7s ease-in-out infinite;
    pointer-events: none
}

.video__float img {
    width: clamp(72px, 8vw, 80px)
}

.video__float--google {
    left: max(-20px, 2%);
    top: 8%;
    animation-delay: .5s;
    transform: rotate(-8deg)
}

.video__float--meta {
    right: max(-16px, 2%);
    bottom: 10%;
    animation-delay: 1.8s;
    transform: rotate(7deg)
}

/* ================= STORIES (vertical video reviews) ================= */
.stories {
    width: 100%;
    overflow: hidden;
    padding: 6px 4px 22px;
}

.stories__wrapper {
    align-items: stretch;
}

.stories__item {
    width: min(480px, 92%);
    height: auto;
    display: grid;
    grid-template-columns: 186px 1fr;
    gap: 20px;
    padding: 16px;
    border-radius: 24px;
    background: linear-gradient(170deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .015));
    box-shadow: 0 0 0 1px var(--border) inset;
    transition: transform .4s var(--ease-out), box-shadow .4s;
}

.stories__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 0 1px var(--border-strong) inset, 0 30px 60px -30px rgba(0, 0, 0, .7);
}

.stories__phone {
    position: relative;
    aspect-ratio: 9 / 16;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    background: linear-gradient(165deg, #151827, #0A0C14);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, .1) inset, 0 20px 44px -20px rgba(0, 0, 0, .8);
}

.stories__phone::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 52px;
    height: 5px;
    border-radius: 3px;
    background: rgba(255, 255, 255, .14);
    z-index: 3;
}

.stories__phone iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: none;
}

.stories__phone.is-playing iframe {
    display: block;
}

.stories__phone.is-playing .stories__mesh,
.stories__phone.is-playing .stories__play,
.stories__phone.is-playing .stories__duration {
    display: none;
}

.stories__mesh {
    position: absolute;
    inset: 0;
}

.stories__item:nth-child(1) .stories__mesh {
    background: radial-gradient(80% 60% at 30% 22%, rgba(77, 124, 254, .28), transparent 65%), radial-gradient(70% 55% at 75% 82%, rgba(139, 92, 246, .24), transparent 60%);
}

.stories__item:nth-child(2) .stories__mesh {
    background: radial-gradient(80% 60% at 70% 20%, rgba(255, 194, 75, .2), transparent 65%), radial-gradient(70% 55% at 25% 80%, rgba(77, 124, 254, .26), transparent 60%);
}

.stories__item:nth-child(3) .stories__mesh {
    background: radial-gradient(80% 60% at 30% 78%, rgba(61, 220, 151, .18), transparent 65%), radial-gradient(70% 55% at 78% 22%, rgba(139, 92, 246, .26), transparent 60%);
}

.stories__phone .stories__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .09);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, .2) inset;
    backdrop-filter: blur(12px);
    transition: transform .35s var(--ease-spring);
}

.stories__phone .stories__play::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .22);
    animation: ring 2.6s var(--ease-out) infinite;
}

.stories__phone .stories__play svg {
    width: 17px;
    height: 17px;
    fill: #fff;
    margin-left: 3px;
}

.stories__phone:hover .stories__play {
    transform: translate(-50%, -50%) scale(1.12);
}

.stories__duration {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-mono);
    font-size: 9.5px;
    letter-spacing: .1em;
    color: rgba(255, 255, 255, .6);
    background: rgba(0, 0, 0, .4);
    padding: 4px 10px;
    border-radius: 100px;
    backdrop-filter: blur(8px);
}

.stories__info {
    display: grid;
    gap: 10px;
    align-content: center;
    padding-right: 6px;
}

.stories__info .stories__result {
    justify-self: start;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: .08em;
    padding: 6px 11px;
    border-radius: 100px;
    background: rgba(255, 194, 75, .12);
    color: var(--gold);
    box-shadow: 0 0 0 1px rgba(255, 194, 75, .3) inset;
}

.stories__info b {
    font-family: var(--font-display);
    font-size: 18px;
    letter-spacing: -.01em;
}

.stories__info .stories__role {
    font-size: 12px;
    color: var(--text-3);
    font-family: var(--font-mono);
    letter-spacing: .04em;
    margin-top: -6px;
}

.stories__info p {
    font-size: 13.5px;
    color: var(--text-2);
    line-height: 1.6;
}

.stories__achievement {
    display: grid;
    gap: 6px;
}

.stories__achievement span {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 12.5px;
    color: var(--text-2);
}

.stories__achievement i {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(61, 220, 151, .14);
    color: var(--green);
    display: grid;
    place-items: center;
    flex: none;
}

.stories__achievement i svg {
    width: 8px;
    height: 8px;
}

@media (max-width: 560px) {
    .stories__item {
        width: 92%;
        grid-template-columns: 150px 1fr;
        gap: 14px;
        padding: 12px;
    }
}


/* ================= PARTNER PHOTO ================= */
.founder-photo__wrap {
    position: relative;
    max-width: 420px;
    margin-inline: auto
}

.founder-photo {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: 26px;
    overflow: hidden;
    background: linear-gradient(165deg, #171a2a, #0B0D15);
    box-shadow: 0 0 0 1px var(--border) inset, 0 44px 90px -34px rgba(0, 0, 0, .85)
}

.founder-photo::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1.5px;
    pointer-events: none;
    z-index: 2;
    background: linear-gradient(160deg, rgba(109, 124, 255, .6), transparent 35%, transparent 65%, rgba(255, 194, 75, .45));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude
}

.founder-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.photo-ph {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: radial-gradient(70% 60% at 50% 30%, rgba(109, 124, 255, .16), transparent 65%)
}

.photo-ph b {
    font-family: var(--font-display);
    font-size: 110px;
    font-weight: 700;
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    opacity: .5
}

.photo-ph span {
    position: absolute;
    bottom: 20px;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: .14em;
    color: var(--text-3)
}

.founder-photo__float {
    position: absolute;
    z-index: 5;
    border-radius: 16px;
    padding: 13px 16px;
    background: rgba(13, 15, 24, .9);
    box-shadow: 0 0 0 1px var(--border-strong) inset, 0 22px 48px -18px rgba(0, 0, 0, .85);
    backdrop-filter: blur(16px);
    display: grid;
    gap: 8px;
    animation: chipFloat 7s ease-in-out infinite
}

.founder-photo__float .founder-photo__heading {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600
}

.founder-photo__float .founder-photo__heading .plogo {
    width: 15px;
    height: 15px
}

.founder-photo__float .founder-photo__value {
    display: flex;
    gap: 12px
}

.founder-photo__float .founder-photo__value div b {
    display: block;
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 600
}

.founder-photo__float .founder-photo__value div span {
    font-size: 9px;
    font-family: var(--font-mono);
    letter-spacing: .06em;
    color: var(--text-3);
    text-transform: uppercase
}

.founder-photo__float--first {
    top: 26px;
    left: -46px;
    animation-delay: .6s
}

.founder-photo__float--second {
    bottom: 34px;
    right: -42px;
    animation-delay: 2s
}

.founder-photo__float--first b {
    color: var(--gold)
}

.founder-photo__float--second b {
    color: var(--green)
}

/* ================= WHAT YOU GET ================= */
.services__grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 18px
}

.services__card {
    position: relative;
    border-radius: var(--r-lg);
    padding: 26px;
    background: linear-gradient(175deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .015));
    box-shadow: 0 0 0 1px var(--border) inset;
    overflow: hidden;
    transition: transform .4s var(--ease-out), box-shadow .4s
}

.services__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 0 1px var(--border-strong) inset, 0 30px 60px -30px rgba(0, 0, 0, .7)
}

.services__card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 2px;
    background: var(--grad);
    border-radius: 2px;
    opacity: .8
}

.services__card-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px
}

.services__card-head .services__icons {
    display: flex;
    gap: 6px;
    align-items: center
}

.services__card-head .services__icons img {
    width: 38px
}

.services__card-head .scanner__icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: linear-gradient(140deg, rgba(77, 124, 254, .14), rgba(139, 92, 246, .14));
    box-shadow: 0 0 0 1px rgba(109, 124, 255, .25) inset
}

.services__card-head .scanner__icon svg {
    width: 19px;
    height: 19px
}

.services__card-head b {
    font-family: var(--font-display);
    font-size: 17px;
    letter-spacing: -.01em
}

.services__card ul {
    list-style: none;
    display: grid;
    gap: 9px
}

.services__card li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 14px;
    color: var(--text-2);
    line-height: 1.45
}

.services__card li i {
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: rgba(61, 220, 151, .13);
    color: var(--green);
    display: grid;
    place-items: center;
    flex: none;
    margin-top: 2px
}

.services__card li i svg {
    width: 9px;
    height: 9px
}

.services__note {
    margin-top: 18px;
    text-align: center;
    font-family: var(--font-mono);
    font-size: 11.5px;
    letter-spacing: .1em;
    color: var(--text-3);
    text-transform: uppercase
}

/* ================= GUARANTEES ================= */
.guarantees {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 14px;
    margin-top: clamp(36px, 5vw, 56px)
}

.guarantees__item {
    display: flex;
    gap: 13px;
    align-items: center;
    padding: 17px 19px;
    border-radius: var(--r-md);
    background: rgba(255, 255, 255, .028);
    box-shadow: 0 0 0 1px var(--border) inset;
    font-size: 13.5px;
    line-height: 1.45;
    color: var(--text-2)
}

.guarantees__item i {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    flex: none;
    display: grid;
    place-items: center;
    background: rgba(255, 194, 75, .1);
    color: var(--gold);
    box-shadow: 0 0 0 1px rgba(255, 194, 75, .25) inset
}

.guarantees__item i svg {
    width: 16px;
    height: 16px
}

.guarantees__item b {
    color: var(--text);
    display: block;
    font-size: 13.5px
}

/* mobile for new blocks */
@media (max-width: 1024px) {
    .services__grid {
        grid-template-columns:1fr
    }

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

    .founder-photo__wrap {
        max-width: 380px
    }

    .founder-photo__float--first {
        left: -14px
    }

    .founder-photo__float--second {
        right: -12px
    }
}

@media (max-width: 760px) {
    .stories__item {
        flex-basis: 88%;
        grid-template-columns:140px 1fr;
        gap: 14px;
        padding: 13px
    }

    .stories__info b {
        font-size: 15.5px
    }

    .stories__info p {
        font-size: 12.5px
    }

    .stories__achievement span {
        font-size: 11.5px
    }

    .guarantees {
        grid-template-columns:1fr;
        gap: 10px
    }

    .founder-photo__float--first {
        top: 14px;
        left: -8px;
        transform: scale(.88)
    }

    .founder-photo__float--second {
        bottom: 16px;
        right: -8px;
        transform: scale(.88)
    }

    .video__float {
        display: none
    }

    .nav .lang {
        display: none
    }
}

/* ================= v5.2 ADDITIONS ================= */

/* ---- Growth Partner: credibility badges ---- */
.founder-card__credibility {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 10px;
    margin-top: 4px;
    width: 100%;
    max-width: 430px
}

.founder-card__credibility-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 13px 15px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .03);
    box-shadow: 0 0 0 1px var(--border) inset;
    transition: box-shadow .35s, transform .35s var(--ease-out)
}

.founder-card__credibility-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 0 1px var(--border-strong) inset
}

.founder-card__credibility-item b {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.2rem;
    letter-spacing: -.02em;
    line-height: 1;
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.founder-card__credibility-item span {
    font-size: 11.5px;
    color: var(--text-3);
    font-family: var(--font-mono);
    letter-spacing: .03em;
    line-height: 1.4
}

.founder-card__trust {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 2px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: .05em;
    color: var(--text-3)
}

.founder-card__trust svg {
    width: 13px;
    height: 13px;
    color: var(--gold);
    flex: none
}

/* ---- Audit preview: the real deliverable ---- */
.audit-preview {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: #0A0C14;
    box-shadow: 0 0 0 1px var(--border) inset, 0 26px 60px -32px rgba(0, 0, 0, .9);
    margin-bottom: 16px
}

.audit-preview img {
    width: 100%;
    height: auto;
    display: block
}

.audit-preview::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, .05) inset;
    pointer-events: none
}

.audit-preview__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px
}

.audit-preview__tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 12px;
    border-radius: 100px;
    font-size: 12px;
    color: var(--text-2);
    background: rgba(255, 255, 255, .03);
    box-shadow: 0 0 0 1px var(--border) inset
}

.audit-preview__tag i {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    flex: none;
    display: grid;
    place-items: center;
    background: rgba(61, 220, 151, .14);
    color: var(--green)
}

.audit-preview__tag i svg {
    width: 8px;
    height: 8px
}

/* ---- Premium audio experience ---- */
.audio-note {
    position: relative;
    border-radius: var(--r-md);
    background: linear-gradient(150deg, rgba(77, 124, 254, .085), rgba(139, 92, 246, .06));
    box-shadow: 0 0 0 1px rgba(109, 124, 255, .22) inset;
    backdrop-filter: blur(12px);
    overflow: hidden;
    transition: box-shadow .4s ease
}

.audio-note::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    right: -90px;
    top: -150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 92, 246, .16), transparent 65%);
    filter: blur(42px);
    pointer-events: none
}

.audio-note.is-playing {
    box-shadow: 0 0 0 1px rgba(109, 124, 255, .42) inset, 0 20px 50px -26px rgba(109, 124, 255, .4)
}

.audio-note__head {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    position: relative;
    z-index: 1
}

.audio-note--hero {
    width: 100%
}

.audio-note__play {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    height: 42px;
    padding: 0 18px 0 16px;
    border-radius: 100px;
    flex: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: -.01em;
    color: #0A0B12;
    background: linear-gradient(120deg, #8FB0FF, #C3A5FF);
    box-shadow: 0 6px 20px -8px rgba(109, 124, 255, .7);
    transition: transform .2s var(--ease-spring), box-shadow .3s;
    will-change: transform
}

.audio-note__play:hover {
    box-shadow: 0 10px 26px -8px rgba(109, 124, 255, .9)
}

.audio-note__play:active {
    transform: scale(.96)
}

.audio-note__play svg {
    width: 15px;
    height: 15px;
    fill: currentColor
}

.audio-note__play .i-pause {
    display: none
}

.audio-note.is-playing .audio-note__play .i-play {
    display: none
}

.audio-note.is-playing .audio-note__play .i-pause {
    display: inline
}

.audio-note__intro {
    display: grid;
    gap: 2px;
    min-width: 0;
    flex: 1
}

.audio-note__intro b {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 14.5px;
    letter-spacing: -.01em;
    line-height: 1.3
}

.audio-note__intro span {
    font-size: 12.5px;
    color: var(--text-2);
    line-height: 1.4
}

.audio-note__meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
    flex: none
}

.audio-note__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-mono);
    font-size: 9.5px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--text-3);
    white-space: nowrap
}

.audio-note__badge::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--violet);
    box-shadow: 0 0 8px var(--violet)
}

.audio-note__time {
    font-family: var(--font-mono);
    font-size: 11.5px;
    color: var(--text-3);
    white-space: nowrap
}

.audio-note__time i {
    font-style: normal
}

.audio-note__time .audio-note__current {
    color: var(--text-2)
}

.audio-note__panel {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height .5s var(--ease-out), opacity .4s ease;
    padding: 0 16px
}

.audio-note.is-open .audio-note__panel {
    max-height: 240px;
    opacity: 1;
    padding: 2px 16px 16px
}

.audio-note__wave {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 40px;
    cursor: pointer;
    margin-bottom: 14px
}

.audio-note__bar {
    flex: 1 1 auto;
    min-width: 2px;
    border-radius: 2px;
    background: rgba(255, 255, 255, .14);
    height: var(--h, 40%);
    transform-origin: center bottom;
    transition: background .25s ease
}

.audio-note__bar.is-played {
    background: linear-gradient(180deg, var(--cyan), var(--blue))
}

.audio-note.is-playing .audio-note__bar {
    animation: audio-noteBounce 1.05s ease-in-out infinite;
    animation-delay: var(--d, 0s)
}

@keyframes audio-noteBounce {
    0%, 100% {
        transform: scaleY(.5)
    }
    50% {
        transform: scaleY(1)
    }
}

.audio-note__caption {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    min-height: 40px
}

.audio-note__caption-icon {
    width: 23px;
    height: 23px;
    border-radius: 50%;
    flex: none;
    display: grid;
    place-items: center;
    background: rgba(109, 124, 255, .16);
    color: #B9C6FF;
    margin-top: 1px;
    transition: .3s
}

.audio-note__caption-icon svg {
    width: 12px;
    height: 12px
}

.audio-note__caption-icon:empty {
    display: none
}

.audio-note__caption.is-complete .audio-note__caption-icon {
    background: rgba(61, 220, 151, .16);
    color: var(--green)
}

.audio-note__caption-text {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text);
    font-weight: 500;
    transition: opacity .26s ease, transform .26s ease
}

.audio-note__caption-text.swap {
    opacity: 0;
    transform: translateY(4px)
}

.audio-note__dots {
    display: flex;
    gap: 6px;
    margin-top: 14px
}

.audio-note__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .16);
    transition: .3s var(--ease-out)
}

.audio-note__dot.is-past {
    background: rgba(185, 198, 255, .55)
}

.audio-note__dot.is-active {
    background: var(--grad);
    transform: scale(1.2)
}

/* CTA that has "warmed up" after listening */
.cta-ready {
    box-shadow: 0 0 0 1px rgba(255, 255, 255, .2) inset, 0 14px 44px -8px rgba(109, 124, 255, .85);
    animation: ctaReady 2.4s ease-in-out infinite
}

@keyframes ctaReady {
    50% {
        box-shadow: 0 0 0 1px rgba(255, 255, 255, .28) inset, 0 18px 54px -8px rgba(139, 92, 246, .95)
    }
}

/* quiz variant — compact */
.audio-note--quiz {
    margin-bottom: 20px
}

.audio-note--quiz .audio-note__head {
    padding: 12px 13px;
    gap: 11px
}

.audio-note--quiz .audio-note__intro b {
    font-size: 13.5px
}

.audio-note--quiz .audio-note__intro span {
    font-size: 12px
}

.audio-note--quiz .audio-note__play {
    height: 38px;
    padding: 0 15px 0 13px;
    font-size: 13px
}

.audio-note--quiz.is-open .audio-note__panel {
    max-height: 160px
}

.audio-note--quiz .audio-note__wave {
    height: 30px;
    margin-bottom: 11px
}

.audio-note--quiz .audio-note__dots {
    display: none
}

@media (max-width: 600px) {
    .audio-note__head {
        flex-wrap: wrap
    }

    .audio-note__meta {
        order: 3;
        flex-direction: row;
        align-items: center;
        gap: 12px;
        width: 100%;
        justify-content: space-between;
        margin-top: 2px
    }

    .audio-note__intro {
        flex-basis: calc(100% - 130px)
    }
}

@media (prefers-reduced-motion: reduce) {
    .audio-note.is-playing .audio-note__bar {
        animation: none
    }

    .audio-note__caption-text {
        transition: opacity .2s
    }

    .cta-ready {
        animation: none
    }
}

.quiz-cf7 {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    opacity: 0;
    pointer-events: none;
}