/* HGX Media — HGX for Creators */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

#hgx-creators {
    --hgx-blue: #1B6CF2;
    --hgx-blue-bg: rgba(27, 108, 242, 0.06);
    --hgx-bg: #070b15;
    --hgx-bg-off: #0d1526;
    --hgx-text: #ffffff;
    --hgx-text-sec: rgba(255, 255, 255, 0.9);
    --hgx-text-muted: rgba(255, 255, 255, 0.9);
    --hgx-border: rgba(255, 255, 255, 0.08);
    --hgx-border2: rgba(255, 255, 255, 0.12);
    --hgx-font: 'Inter', -apple-system, sans-serif;
    --hgx-serif: 'Playfair Display', Georgia, serif;
    --hgx-max-w: 1200px;
    --hgx-r: 12px;
    --hgx-r-lg: 16px;
    --hgx-r-xl: 20px;
}

/* html { — removed for Elementor */
/*       scroll-behavior: smooth; */
/* } */

/* body { — moved to #hgx-creators */
/*       font-family: var(--font); */
/*       background: var(--bg); */
/*       background-image: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px); */
/*       background-size: 24px 24px; */
/*       color: var(--text); */
/*       overflow-x: hidden; */
/*       -webkit-font-smoothing: antialiased; */
/* } */

/* ::-webkit-scrollbar { — removed for Elementor */
/*       width: 3px; */
/* } */

/* ::-webkit-scrollbar-track { — removed for Elementor */
/*       background: var(--bg-off); */
/* } */

/* ::-webkit-scrollbar-thumb { — removed for Elementor */
/*       background: var(--blue); */
/* } */

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

img {
    display: block;
    max-width: 100%;
}

/* ── GRAIN ── */
.grain::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
    background-size: 128px 128px;
    opacity: .5;
    mix-blend-mode: overlay;
}

/* ── SHIMMER (shared) ── */
.has-shimmer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
    animation: shimmer 3.5s ease infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0% {
        left: -100%
    }

    40% {
        left: 130%
    }

    100% {
        left: 130%
    }
}

.btn-primary {
    background: var(--hgx-blue);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 13px 28px;
    border-radius: 100px;
    font-family: var(--hgx-font);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    letter-spacing: .01em;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(27, 108, 242, 0.45), 0 0 60px rgba(27, 108, 242, 0.12);
    transition: all .35s cubic-bezier(.23, 1, .32, 1);
    text-decoration: none;
}

.btn-primary:hover {
    box-shadow: 0 8px 36px rgba(27, 108, 242, 0.65), 0 0 90px rgba(27, 108, 242, 0.3);
    transform: translateY(-2px) scale(1.015);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 13px 28px;
    border-radius: 100px;
    font-family: var(--hgx-font);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: all .3s cubic-bezier(.23, 1, .32, 1);
}

.btn-ghost:hover {
    border-color: rgba(27, 108, 242, 0.5);
    color: var(--hgx-blue);
    background: rgba(27, 108, 242, 0.08);
    transform: translateY(-2px);
}

/* ── SECTION UTILS ── */
section {
    position: relative;
}

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

.s-label {
    font-size: 11px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--hgx-blue);
    margin-bottom: 10px;
    font-weight: 600;
    display: block;
}

.s-title {
    font-size: clamp(26px, 3.2vw, 44px);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -.03em;
}

.s-title em,
strong.serif {
    font-family: var(--hgx-serif);
    font-style: italic;
    font-weight: 600;
    letter-spacing: -.01em;
}

.s-note {
    font-size: 14px;
    color: var(--hgx-text-sec);
    line-height: 1.7;
    max-width: 500px;
    font-weight: 400;
    margin-top: 12px;
}

.s-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 56px;
}

/* dark pill section */
.section-dark {
    background: #060a13;
    border-radius: var(--hgx-r-xl);
    margin: 0 16px;
    overflow: hidden;
    position: relative;
}

.section-dark::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 200px;
    background: radial-gradient(ellipse, rgba(27, 108, 242, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.section-dark .s-label {
    color: var(--hgx-blue);
}

.section-dark .s-title {
    color: white;
}

.section-dark .s-note {
    color: rgba(255, 255, 255, 0.45);
}

/* ═══════════════════════════════════════════
   HERO — ROTATING PERSONAS
═══════════════════════════════════════════ */
#hero {
    min-height: calc(100dvh - 24px);
    display: flex;
    align-items: flex-end;
    padding: 120px 64px 80px;
    margin: 12px;
    border-radius: var(--hgx-r-xl);
    overflow: hidden;
    position: relative;
}

/* 3 bg layers, one active at a time */
.hero-bg-layer {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.hero-bg-layer.active {
    opacity: 1;
}

.hero-bg-layer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero-bg-layer::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 11, 21, .35) 0%, rgba(7, 11, 21, .1) 35%, rgba(7, 11, 21, .65) 75%, rgba(7, 11, 21, .92) 100%);
}

.hero-content {
    max-width: var(--hgx-max-w);
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-eyebrow::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--hgx-blue);
    box-shadow: 0 0 8px var(--hgx-blue);
}

/* Static line 1 */
.hero-line1 {
    font-size: clamp(44px, 6.5vw, 84px);
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -.045em;
    color: rgba(255, 255, 255, 0.9);
    display: block;
    margin-bottom: 6px;
}

/* Rotating line 2 */
.hero-rotate-wrap {
    position: relative;
    height: clamp(54px, 8vw, 100px);
    overflow: hidden;
    margin-bottom: 20px;
}

.hero-rotate-item {
    position: absolute;
    top: 0;
    left: 0;
    font-size: clamp(44px, 6.5vw, 84px);
    font-weight: 500;
    line-height: 1.0;
    letter-spacing: -.045em;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .7s ease, transform .7s cubic-bezier(.23, 1, .32, 1);
}

.hero-rotate-item.active {
    opacity: 1;
    transform: translateY(0);
}

.hero-rotate-item.exit {
    opacity: 0;
    transform: translateY(-40px);
}

/* persona accent colours */
.persona-course {
    color: #4EB3FF;
}

.persona-coach {
    color: #7EC8A0;
}

.persona-creator {
    color: #F0A56A;
}

.hero-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 48px;
}

.hero-bottom>div:first-child {
    flex: 1;
    min-width: 0;
}

/* Rotating sub copy */
.hero-sub-wrap {
    display: grid;
    width: 100%;
}

.hero-sub-item {
    grid-area: 1 / 1;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    max-width: 38ch;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .5s ease, transform .5s ease;
    pointer-events: none;
}

.hero-sub-item.active {
    opacity: 1;
    transform: none;
    pointer-events: auto;
}

.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.hero-pill {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .02em;
    color: rgba(255, 255, 255, 0.85);
    padding: 7px 14px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    will-change: transform;
    opacity: 0;
    transform: translateY(8px);
    animation: pillIn 0.5s cubic-bezier(.23, 1, .32, 1) forwards;
}

.hero-pill:nth-child(1) {
    animation-delay: 0.7s;
}

.hero-pill:nth-child(2) {
    animation-delay: 0.85s;
}

.hero-pill:nth-child(3) {
    animation-delay: 1.0s;
}

.hero-pill:nth-child(4) {
    animation-delay: 1.15s;
}

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

    from {
        opacity: 0;
        transform: translateY(8px);
    }
}

/* Persona switcher pills */
.persona-switcher {
    display: flex;
    gap: 6px;
    margin-top: 16px;
}

.persona-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all .3s;
}

.persona-dot.active {
    width: 20px;
    border-radius: 3px;
}

.persona-dot:nth-child(1).active {
    background: #4EB3FF;
}

.persona-dot:nth-child(2).active {
    background: #7EC8A0;
}

.persona-dot:nth-child(3).active {
    background: #F0A56A;
}

.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-shrink: 0;
}

.scroll-ind {
    position: absolute;
    left: 50%;
    bottom: 36px;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    z-index: 3;
    opacity: .5;
}

.scroll-ind span {
    font-size: 9px;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--hgx-blue);
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% {
        top: -100%
    }

    100% {
        top: 100%
    }
}

/* ═══════════════════════════════════════════
   SHOPIFY-STYLE CYCLING TEXT BANNER
═══════════════════════════════════════════ */
#cycling-banner {
    padding: 80px 48px;
}

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

.cycling-top {
    margin-bottom: 40px;
}

.cycling-text-wrap {
    font-size: clamp(28px, 4.5vw, 56px);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -.03em;
    color: var(--hgx-text);
    max-width: 1000px;
}

.cycling-screenshots {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.cycle-sc {
    border-radius: var(--hgx-r-lg);
    overflow: hidden;
    position: relative;
    background: #ffffff;
    cursor: pointer;
    transition: transform .5s cubic-bezier(.23, 1, .32, 1), box-shadow .5s cubic-bezier(.23, 1, .32, 1);
    border: none;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
}

.cycle-sc:hover {
    transform: translateY(-6px) scale(1.008);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
}

.cycle-sc img {
    width: 100%;
    aspect-ratio: 16/7;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.cycle-sc::after {
    display: none;
}

.cycle-sc-info {
    position: relative;
    padding: 14px 18px;
}

.cycle-sc-cat {
    font-size: 9px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--hgx-text-muted);
    font-weight: 600;
    margin-bottom: 4px;
}

.cycle-sc-name {
    font-size: clamp(15px, 1.5vw, 18px);
    font-weight: 600;
    letter-spacing: -.01em;
    color: #0a0f1c;
    margin-bottom: 4px;
}

.cycle-sc-result {
    font-size: 12px;
    color: #6b7a99;
    line-height: 1.5;
}

/* ═══════════════════════════════════════════
   TRUTH — SPLIT WITH CHAOS VISUAL
═══════════════════════════════════════════ */
#truth {
    background: #0c1a3a;
    border-radius: var(--hgx-r-xl);
    margin: 0 16px;
    overflow: hidden;
    position: relative;
    padding: 96px 48px;
}

#truth::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, .05) 1px, transparent 1px);
    background-size: 24px 24px;
}

#truth::after {
    content: '';
    position: absolute;
    left: -50%;
    top: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from var(--ray-angle, 0deg),
            transparent 0deg, rgba(27, 108, 242, 0) 60deg,
            rgba(27, 108, 242, .6) 90deg, rgba(100, 160, 255, .9) 100deg,
            rgba(27, 108, 242, .6) 110deg, rgba(27, 108, 242, 0) 160deg,
            transparent 360deg);
    animation: rayRot 4s linear infinite paused;
    /* paused by default — activated by IntersectionObserver */
    will-change: transform;
    pointer-events: none;
    z-index: 0;
}

#truth.ray-active::after {
    animation-play-state: running;
}

.truth-ray-mask {
    position: absolute;
    inset: 2px;
    background: #0c1a3a;
    border-radius: var(--hgx-r-xl);
    z-index: 1;
}

@keyframes rayRot {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

.truth-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.truth-h2 {
    font-size: clamp(26px, 3.5vw, 44px);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -.035em;
    margin-bottom: 32px;
}

.truth-h2 em {
    font-family: var(--hgx-serif);
    font-style: italic;
    font-weight: 400;
    color: rgba(255, 255, 255, .9);
}

.truth-p {
    font-size: clamp(13px, 1.2vw, 15px);
    line-height: 1.8;
    color: rgba(255, 255, 255, .9);
    max-width: 52ch;
    margin-bottom: 18px;
}

.truth-p strong {
    color: rgba(255, 255, 255, .9);
    font-weight: 600;
}

/* MOCKUP VISUAL */
.truth-mockup {
    display: flex;
    align-items: center;
    justify-content: center;
}

.truth-mockup img {
    width: 100%;
    height: auto;
    border-radius: var(--hgx-r-lg);
}

/* ═══════════════════════════════════════════
   BUILDS — GSAP CARD STACK
═══════════════════════════════════════════ */
#builds {
    padding: 0 48px;
}

.builds-hd {
    max-width: var(--hgx-max-w);
    margin: 0 auto;
    padding: 96px 0 80px;
}

/* Stack container — CSS sticky layout */
.builds-stack {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 100px;
    padding-bottom: 100px;
}

.build-card {
    width: 100%;
    max-width: var(--hgx-max-w);
    margin: 0 auto;
    background: var(--hgx-bg-off);
    border-radius: calc(var(--hgx-r-xl) + 4px);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    position: sticky;
    top: 80px;
    transform-origin: 50% 10%;
    transition: transform .35s cubic-bezier(.23, 1, .32, 1);
    will-change: transform, opacity;
    /* GPU layer pre-allocation for sticky+scale */
}

.build-card:hover {
    transform: scale(1.008);
}

/* Alternating card tones — white & dark */
.build-card:nth-child(odd) {
    background: #f5f6f8;
}

.build-card:nth-child(odd) .build-num {
    color: var(--hgx-blue);
}

.build-card:nth-child(odd) .build-title {
    color: #0a0f1c;
}

.build-card:nth-child(odd) .build-title em {
    color: #1a2340;
}

.build-card:nth-child(odd) .build-desc {
    color: #3a4260;
}

.build-card:nth-child(odd) .build-link {
    color: #fff;
    background: #0a0f1c;
}

.build-card:nth-child(even) {
    background: #070b15;
}

.build-card.reverse {
    direction: rtl;
}

.build-card.reverse>* {
    direction: ltr;
}

.build-card-img {
    position: relative;
    overflow: hidden;
    min-height: 480px;
}

.build-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform .8s cubic-bezier(.23, 1, .32, 1);
}

.build-card:hover .build-card-img img {
    transform: scale(1.03);
}

.build-card-body {
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.build-num {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--hgx-blue);
    margin-bottom: 16px;
    display: block;
}

.build-title {
    font-size: clamp(22px, 2.5vw, 30px);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -.03em;
    margin-bottom: 18px;
}

.build-title em {
    font-family: var(--hgx-serif);
    font-style: italic;
    font-weight: 400;
    color: rgba(255, 255, 255, .9);
}

.build-desc {
    font-size: 14px;
    color: var(--hgx-text-sec);
    line-height: 1.75;
    max-width: 44ch;
    margin-bottom: 28px;
}

.build-link {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    background: var(--hgx-blue);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 100px;
    border: none;
    transition: gap .25s, opacity .25s;
    align-self: flex-start;
}

.build-link:hover {
    gap: 14px;
    opacity: 0.88;
}

/* Spacer after stack so next section doesn't overlap */
.builds-spacer {
    height: 80px;
}

/* Blue-themed build card variant */
.build-card-blue {
    background: var(--hgx-blue) !important;
}

.build-card-blue .build-card-body {
    background: var(--hgx-blue);
}

.build-card-blue .build-num {
    color: rgba(255, 255, 255, 0.65);
}

.build-card-blue .build-title {
    color: #fff;
}

.build-card-blue .build-title em {
    color: rgba(255, 255, 255, 0.85);
}

.build-card-blue .build-desc {
    color: rgba(255, 255, 255, 0.75);
}

.build-card-blue .build-link {
    color: var(--hgx-blue);
    background: #fff;
}

.build-card-blue .build-link:hover {
    opacity: 0.9;
}

/* ═══════════════════════════════════════════
   PROCESS
═══════════════════════════════════════════ */
#process {
    margin: 0 16px;
    border-radius: var(--hgx-r-xl);
    border: 1px solid var(--hgx-border);
    overflow: hidden;
    background: var(--hgx-bg);
    background-image: linear-gradient(145deg, rgba(27, 108, 242, .03) 0%, rgba(10, 15, 28, 0) 60%);
    padding: 96px 48px;
}

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

.process-track {
    margin-top: 64px;
    position: relative;
}

.process-line {
    position: absolute;
    top: 22px;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, .06);
}

.process-line-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(27, 108, 242, 0) 20%, rgba(27, 108, 242, .6) 70%, rgba(100, 160, 255, 1) 95%, #fff 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1.8s cubic-bezier(.23, 1, .32, 1);
}

.process-line-fill::after {
    content: '';
    position: absolute;
    right: 0;
    top: -2px;
    width: 5px;
    height: 5px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px 3px rgba(100, 160, 255, .8), 0 0 20px 5px rgba(27, 108, 242, .5);
}

.process-line-fill.animated {
    transform: scaleX(1);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
}

.process-step {
    padding-top: 56px;
    position: relative;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .5s, transform .5s cubic-bezier(.23, 1, .32, 1);
    will-change: opacity, transform;
}

.process-step.visible {
    opacity: 1;
    transform: translateY(0);
}

.process-dot {
    position: absolute;
    top: 16px;
    left: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--hgx-blue);
    border: 2px solid rgba(27, 108, 242, .4);
    z-index: 2;
    transition: all .4s;
    box-shadow: 0 0 0 3px rgba(27, 108, 242, .12);
}

.process-step:hover .process-dot {
    background: #fff;
    border-color: var(--hgx-blue);
    box-shadow: 0 0 0 5px rgba(27, 108, 242, .2), 0 0 12px rgba(27, 108, 242, .5);
}

.process-num {
    font-size: 32px;
    font-weight: 700;
    color: var(--hgx-blue);
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: -.04em;
}

.process-name {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -.015em;
    margin-bottom: 8px;
}

.process-desc {
    font-size: 13px;
    color: var(--hgx-text-sec);
    line-height: 1.65;
}

.process-time {
    margin-top: 16px;
    font-size: 10px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--hgx-blue);
    font-weight: 600;
    display: inline-block;
    padding: 3px 8px;
    background: var(--hgx-blue-bg);
    border-radius: 4px;
}

/* ═══════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════ */
#testimonials {
    padding: 24px 0;
}

.testi-wrap {
    margin: 0 16px;
    border-radius: var(--hgx-r-xl);
    overflow: hidden;
    border: 1px solid var(--hgx-border);
    position: relative;
}

.testi-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(27, 108, 242, .4), rgba(100, 60, 220, .2), transparent);
    pointer-events: none;
    z-index: 2;
}

.testi-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 80px;
    background: radial-gradient(ellipse at top, rgba(27, 108, 242, .08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.testi-inner {
    padding: 96px 48px;
    position: relative;
    z-index: 2;
    max-width: var(--hgx-max-w);
    margin: 0 auto;
}

.testi-grid {
    margin-top: 56px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.tc {
    position: relative;
    border-radius: var(--hgx-r-lg);
    overflow: hidden;
    cursor: pointer;
    height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: all .4s cubic-bezier(.23, 1, .32, 1);
    border: 1px solid transparent;
}

.tc:hover {
    transform: translateY(-6px) scale(1.008);
    border-color: rgba(27, 108, 242, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.tc:nth-child(2) {
    margin-top: 40px;
}

.tc-photo {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.tc-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform .8s cubic-bezier(.23, 1, .32, 1);
    opacity: 0.6;
}

.tc:hover .tc-photo img {
    transform: scale(1.05);
    opacity: 0.9;
}

.tc-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(7, 11, 21, 0.4) 40%, rgba(7, 11, 21, 0.95) 100%);
}

.tc-body {
    position: relative;
    z-index: 2;
    padding: 32px 28px;
    background: none;
}

.tc-text {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .9);
    margin-bottom: 20px;
}

.tc-text em {
    font-style: italic;
    color: var(--hgx-text);
    font-weight: 600;
    background: none;
    padding: 0;
}

.tc-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border: none;
    padding-top: 0;
}

.tc-av {
    width: 36px;
    height: 36px;
    background: var(--hgx-blue-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--hgx-text);
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
}

.tc-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--hgx-text);
}

.tc-role {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 2px;
}

/* ═══════════════════════════════════════════
   STATS — COUNT UP
═══════════════════════════════════════════ */
#stats {
    padding: 96px 48px;
}

.stats-grid {
    margin-top: 64px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: stretch;
}

.stat-card {
    padding: 32px 24px;
    border-radius: var(--hgx-r-lg);
    background: #ffffff;
    transition: transform .35s cubic-bezier(.23, 1, .32, 1), box-shadow .35s cubic-bezier(.23, 1, .32, 1);
    cursor: default;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-5px) scale(1.008);
    border: 1px solid rgba(27, 108, 242, 0.4);
    box-shadow: 0 0 0 2px var(--hgx-blue), 0 0 28px rgba(27, 108, 242, 0.22), 0 20px 40px rgba(0, 0, 0, 0.12);
}

.stat-num {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 700;
    letter-spacing: -.05em;
    line-height: 1;
    margin-bottom: 8px;
    color: var(--hgx-blue);
}

.stat-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #0a0f1c;
    margin-bottom: 10px;
    opacity: 0.6;
}

.stat-desc {
    font-size: 12px;
    color: #444;
    line-height: 1.6;
}

/* ═══════════════════════════════════════════
   PLATFORM — SHOPIFY-STYLE TRUST SECTION
═══════════════════════════════════════════ */
#platform {
    padding: 120px 48px;
    background: #040810;
    border-radius: var(--hgx-r-xl);
    margin: 0 16px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--hgx-border);
}

#platform::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(27, 108, 242, .4), rgba(100, 60, 220, .2), transparent);
    pointer-events: none;
    z-index: 2;
}

/* Deep blue inner glow for depth */
#platform::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 80% at 50% -20%, rgba(27, 108, 242, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 60% 60% at 0% 100%, rgba(100, 60, 220, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 60% at 100% 100%, rgba(20, 80, 180, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.platform-inner {
    max-width: var(--hgx-max-w);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.platform-heading {
    text-align: center;
    margin-bottom: 80px;
}

.platform-heading h2 {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 500;
    letter-spacing: -.04em;
    line-height: 1.15;
}

.platform-heading h2 em {
    font-family: var(--hgx-serif);
    font-style: italic;
    font-weight: 400;
}

.platform-top-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
    align-items: stretch;
}

.platform-stat-block {
    padding: 48px 40px;
    background: rgba(255, 255, 255, .03);
    border-radius: var(--hgx-r-lg);
    transition: transform .35s cubic-bezier(.23, 1, .32, 1), background .35s, box-shadow .35s;
    display: flex;
    flex-direction: column;
    height: 100%;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    will-change: transform;
    contain: layout style;
}

.platform-stat-block:hover {
    transform: translateY(-5px) scale(1.008);
    background: rgba(255, 255, 255, .05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.platform-stat-eyebrow {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--hgx-blue);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.platform-stat-eyebrow::before {
    content: '✦';
    font-size: 10px;
}

.platform-stat-num {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 800;
    letter-spacing: -.05em;
    line-height: 1;
    margin-bottom: 14px;
}

.platform-stat-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, .55);
    line-height: 1.65;
    max-width: 38ch;
    flex-grow: 1;
}

.platform-stat-note {
    font-size: 11px;
    color: rgba(255, 255, 255, .35);
    margin-top: 24px;
    line-height: 1.5;
}

.platform-mockup-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch;
}

.platform-mockup-card {
    border-radius: var(--hgx-r-lg);
    overflow: hidden;
    position: relative;
    transition: transform .35s cubic-bezier(.23, 1, .32, 1), box-shadow .35s;
    height: 100%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.platform-mockup-card:hover {
    transform: translateY(-5px) scale(1.008);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.platform-mockup-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.platform-speed-card {
    padding: 48px 40px;
    background: rgba(255, 255, 255, .03);
    border-radius: var(--hgx-r-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform .35s cubic-bezier(.23, 1, .32, 1), background .35s, box-shadow .35s;
    height: 100%;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    will-change: transform;
    contain: layout style;
}

.platform-speed-card:hover {
    transform: translateY(-5px) scale(1.008);
    background: rgba(255, 255, 255, .05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.platform-speed-card h3 {
    font-size: clamp(22px, 2.5vw, 30px);
    font-weight: 500;
    letter-spacing: -.03em;
    line-height: 1.2;
    margin-bottom: 16px;
}

.platform-speed-card h3 em {
    font-family: var(--hgx-serif);
    font-style: italic;
    font-weight: 400;
}

.platform-speed-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, .55);
    line-height: 1.7;
    max-width: 44ch;
}

.platform-speed-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}

.platform-speed-pills span {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .65);
    padding: 6px 12px;
    border-radius: 100px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
}

@media(max-width:900px) {
    #platform {
        padding: 64px 24px;
        margin: 0 8px;
    }

    .platform-top-row,
    .platform-mockup-row {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════
   PRICING
═══════════════════════════════════════════ */
#pricing {
    padding: 120px 48px;
}

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

.pricing-header {
    text-align: center;
    margin-bottom: 64px;
}

.pricing-header .s-note {
    margin: 16px auto 0;
    text-align: center;
    max-width: 48ch;
}

/* Comparison row */
.pricing-compare {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.pricing-compare-card {
    padding: 28px 24px;
    border-radius: var(--hgx-r);
    background: rgba(255, 255, 255, .02);
    text-align: center;
    transition: transform .35s cubic-bezier(.23, 1, .32, 1), box-shadow .35s;
}

.pricing-compare-card:hover {
    transform: translateY(-5px) scale(1.008);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.pricing-compare-card.featured {
    background: rgba(27, 108, 242, .06);
}

.pricing-compare-name {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .45);
    margin-bottom: 12px;
}

.pricing-compare-card.featured .pricing-compare-name {
    color: var(--hgx-blue);
}

.pricing-compare-cost {
    font-size: clamp(22px, 2.5vw, 28px);
    font-weight: 700;
    letter-spacing: -.03em;
    margin-bottom: 8px;
}

.pricing-compare-note {
    font-size: 12px;
    color: rgba(255, 255, 255, .45);
    line-height: 1.5;
}

.pricing-compare-card.featured .pricing-compare-note {
    color: rgba(255, 255, 255, .65);
}

/* Main pricing layout */
.pricing-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.pricing-card {
    border-radius: var(--hgx-r-xl);
    padding: 40px 36px;
    background: rgba(255, 255, 255, .02);
    position: relative;
    transition: transform .35s cubic-bezier(.23, 1, .32, 1);
}

.pricing-card:hover {
    transform: scale(1.005);
}

.p-amount {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 800;
    letter-spacing: -.05em;
    line-height: 1;
    margin-bottom: 8px;
}

.p-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.65;
    margin-bottom: 32px;
    max-width: 42ch;
}

.p-list {
    list-style: none;
    border-top: 1px solid var(--hgx-border);
    padding-top: 24px;
    margin-bottom: 24px;
}

.p-list li {
    font-size: 13px;
    padding: 10px 0;
    border-bottom: 1px solid var(--hgx-border);
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.p-list li::before {
    content: '✓';
    font-size: 11px;
    font-weight: 700;
    color: var(--hgx-blue);
    flex-shrink: 0;
}

.p-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    background: rgba(255, 255, 255, .02);
    border-radius: 8px;
    padding: 12px 14px;
    margin-bottom: 28px;
}

.p-btn {
    display: block;
    text-align: center;
    padding: 14px;
    background: var(--hgx-blue);
    color: #fff;
    border: none;
    border-radius: 100px;
    font-family: var(--hgx-font);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: .01em;
    box-shadow: 0 4px 20px rgba(27, 108, 242, .45);
    transition: all .3s cubic-bezier(.23, 1, .32, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.p-btn:hover {
    box-shadow: 0 8px 36px rgba(27, 108, 242, .65);
    transform: translateY(-2px);
}

.p-scarcity {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-top: 14px;
    letter-spacing: .02em;
}

.pricing-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.pr-block h4 {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -.01em;
    margin-bottom: 12px;
    color: var(--hgx-text);
}

.pr-block p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    max-width: 44ch;
}

/* ═══════════════════════════════════════════
   FAQ
═══════════════════════════════════════════ */
#faq {
    padding: 96px 48px;
    background: var(--hgx-bg-off);
    border-radius: var(--hgx-r-xl);
    margin: 0 16px;
}

.faq-inner {
    max-width: var(--hgx-max-w);
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 64px;
    align-items: flex-start;
    justify-content: space-between;
}

.faq-header {
    margin-bottom: 0;
}

.faq-header {
    flex: 0 0 320px;
}

.faq-list {
    flex: 1;
    width: 100%;
}

.faq-item {
    border-bottom: 1px solid var(--hgx-border);
    overflow: hidden;
    position: relative;
}

/* Left accent bar on open state */
.faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--hgx-blue);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .4s cubic-bezier(.23, 1, .32, 1);
    border-radius: 0 2px 2px 0;
}

.faq-item.open::before {
    transform: scaleY(1);
}

.faq-btn {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-family: var(--hgx-font);
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    color: var(--hgx-text);
    letter-spacing: -.01em;
    transition: color .25s;
}

.faq-btn:hover {
    color: var(--hgx-blue);
}

.faq-icon {
    font-size: 20px;
    font-weight: 300;
    color: rgba(255, 255, 255, .4);
    flex-shrink: 0;
    line-height: 1;
    transition: transform .35s cubic-bezier(.23, 1, .32, 1), color .25s;
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s cubic-bezier(.23, 1, .32, 1), padding .4s cubic-bezier(.23, 1, .32, 1);
    font-size: 14px;
    line-height: 1.75;
    color: rgba(255, 255, 255, .6);
    padding: 0 0 0 0;
}

.faq-body-inner {
    padding: 8px 0 24px 16px;
}

.faq-item.open .faq-body {
    max-height: 300px;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    color: var(--hgx-blue);
}

.faq-item.open .faq-btn {
    color: var(--hgx-blue);
}

/* ═══════════════════════════════════════════
   FORM
═══════════════════════════════════════════ */
#apply {
    padding: 96px 48px;
    background: #f5f6f8;
    border-radius: var(--hgx-r-xl);
    margin: 0 16px;
}

.apply-inner {
    max-width: var(--hgx-max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.apply-left .s-label {
    color: var(--hgx-blue);
}

.apply-left .s-title {
    max-width: 400px;
    margin-bottom: 20px;
    color: #0a0f1c;
}

.apply-left .s-title em {
    color: #1a2340;
}

.apply-left .s-note {
    max-width: 36ch;
    color: #4a5070;
}

.apply-trust {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.apply-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #4a5070;
}

.apply-trust-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--hgx-blue);
    flex-shrink: 0;
    box-shadow: 0 0 6px var(--hgx-blue);
}

.apply-form {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--hgx-r-xl);
    padding: 40px 36px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, .06);
}

.form-label-top {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--hgx-blue);
    margin-bottom: 28px;
    display: block;
}

.f-row2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.f-field {
    margin-bottom: 14px;
}

.f-field label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 7px;
    color: #3a4260;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.f-field input,
.f-field textarea,
.f-field select {
    width: 100%;
    background: #f5f6f8;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 11px 14px;
    font-family: var(--hgx-font);
    font-size: 13px;
    color: #0a0f1c;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.f-field select option {
    background: #fff;
    color: #0a0f1c;
}

.f-field input::placeholder,
.f-field textarea::placeholder {
    color: #8a90a8;
}

.f-field input:focus,
.f-field textarea:focus,
.f-field select:focus {
    border-color: var(--hgx-blue);
    box-shadow: 0 0 0 3px rgba(27, 108, 242, .1);
    background: #fff;
}

.f-field textarea {
    resize: none;
}

.f-submit {
    width: 100%;
    background: var(--hgx-blue);
    color: #fff;
    border: none;
    border-radius: 100px;
    padding: 14px;
    font-family: var(--hgx-font);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 8px;
    letter-spacing: .01em;
    box-shadow: 0 4px 20px rgba(27, 108, 242, .3);
    transition: all .3s cubic-bezier(.23, 1, .32, 1);
    position: relative;
    overflow: hidden;
}

.f-submit:hover {
    box-shadow: 0 8px 36px rgba(27, 108, 242, .45);
    transform: translateY(-2px);
}

.f-note {
    font-size: 11px;
    color: #6a7090;
    text-align: center;
    margin-top: 14px;
    line-height: 1.6;
}

/* ── STICKY MOBILE ── */
.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(7, 11, 21, .94);
    backdrop-filter: blur(16px);
    border-top: 1px solid var(--hgx-border2);
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 99;
    transform: translateY(100%);
    transition: transform .3s;
    will-change: transform;
    contain: layout style;
}

.sticky-bar.show {
    transform: translateY(0);
}

.sticky-info p:first-child {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -.02em;
}

.sticky-info p:last-child {
    font-size: 11px;
    color: var(--hgx-text-muted);
}

.sticky-btn {
    background: var(--hgx-blue);
    color: #fff;
    border: none;
    border-radius: 100px;
    padding: 10px 22px;
    font-family: var(--hgx-font);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

/* ── MOBILE ── */
@media(max-width:900px) {
    #hero {
        padding: 60px 24px 80px;
        margin: 0 8px;
    }

    .hero-line1,
    .hero-rotate-item {
        font-size: clamp(36px, 10vw, 52px);
    }

    .hero-rotate-wrap {
        height: clamp(44px, 12vw, 64px);
    }

    .hero-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    #cycling-banner {
        padding: 64px 24px;
    }

    .cycling-text-wrap {
        font-size: clamp(22px, 6vw, 32px);
    }

    .cycling-screenshots {
        /* Mobile: convert to horizontal scroll snap slider */
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 12px;
        padding-bottom: 12px;
        margin-top: 32px;
        scrollbar-width: none;
    }

    .cycling-screenshots::-webkit-scrollbar {
        display: none;
    }

    .cycle-sc {
        flex: 0 0 80vw;
        scroll-snap-align: start;
        aspect-ratio: 4/5;
    }

    #truth {
        padding: 64px 24px;
        margin: 0 8px;
    }

    .truth-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    #builds {
        padding: 0 24px;
    }

    .builds-hd {
        padding: 64px 0 48px;
    }

    .build-card,
    .build-card.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        position: relative;
        top: auto;
    }

    .build-card-img {
        min-height: 260px;
    }

    .build-card-body {
        padding: 32px 28px;
    }

    #process {
        padding: 48px 24px;
        margin: 0 8px;
    }

    #process .s-header {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 40px;
    }

    .process-track {
        margin-top: 0;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .process-line {
        display: none;
    }

    .process-step {
        padding-top: 0;
        padding-bottom: 28px;
        border-bottom: 1px solid var(--hgx-border);
    }

    .process-step:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .process-dot {
        display: none;
    }

    #testimonials {
        padding: 64px 0;
    }

    .testi-inner {
        padding: 64px 24px;
    }

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

    .tc:nth-child(2) {
        margin-top: 0;
    }

    #stats {
        padding: 64px 24px;
    }

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

    #pricing {
        padding: 64px 24px;
    }

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

    #faq {
        padding: 64px 24px;
        margin: 0 8px;
    }

    .faq-inner {
        flex-direction: column;
        gap: 40px;
    }

    .faq-header {
        flex-direction: column;
        gap: 16px;
        flex: none;
    }

    .pricing-compare {
        /* Mobile: convert to horizontal scroll snap slider */
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 12px;
        padding-bottom: 12px;
        scrollbar-width: none;
    }

    .pricing-compare::-webkit-scrollbar {
        display: none;
    }

    .pricing-compare-card {
        flex: 0 0 80vw;
        scroll-snap-align: start;
    }

    #apply {
        padding: 64px 24px;
        margin: 0 8px;
    }

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

    .f-row2 {
        grid-template-columns: 1fr;
    }

    .sticky-bar {
        display: flex;
    }
}

@media(min-width:901px) {
    .sticky-bar {
        display: none;
    }
}

/* Section breathing room — consistent vertical spacing between sections */
#cycling-banner {
    margin-top: 8px;
}

#truth {
    margin-top: 24px;
}

#builds {
    margin-top: 24px;
}

#process {
    margin-top: 24px;
}

#testimonials {
    margin-top: 0;
}

#stats {
    margin-top: 0;
}

#platform {
    margin-top: 24px;
}

#pricing {
    margin-top: 0;
}

#apply {
    margin-top: 24px;
}

#faq {
    margin-top: 24px;
}

/* Accessibility: Prefers Reduced Motion */
/* ── SCROLL PROGRESS BAR ── */
#scrollBar {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    height: 2px;
    width: 0%;
    background: var(--hgx-blue);
    transition: width 0.08s linear;
    pointer-events: none;
}

/* ── PROCESS DOT PULSE ── */
@keyframes dotPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(27, 108, 242, 0.5), 0 0 0 3px rgba(27, 108, 242, .12);
    }

    70% {
        box-shadow: 0 0 0 9px rgba(27, 108, 242, 0), 0 0 0 3px rgba(27, 108, 242, .12);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(27, 108, 242, 0), 0 0 0 3px rgba(27, 108, 242, .12);
    }
}

.process-step.visible .process-dot {
    animation: dotPulse 2s ease-out infinite;
}

/* ── BORDER LINE SHIMMER ── */
@keyframes shimmerPulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

.testi-wrap::before,
#platform::after {
    animation: shimmerPulse 2.5s ease-in-out infinite;
}

/* ── FAQ OPEN HIGHLIGHT ── */
.faq-item {
    transition: background 0.35s ease;
}

.faq-item.open {
    background: rgba(27, 108, 242, 0.04);
}

/* ── CARD TILT — disable transition during mousemove for responsiveness ── */
.stat-card.tilting,
.tc.tilting,
.platform-stat-block.tilting,
.platform-speed-card.tilting {
    transition: box-shadow 0.35s cubic-bezier(.23, 1, .32, 1);
}

@media (prefers-reduced-motion: reduce) {
    /* html { — removed for Elementor */
    /*         scroll-behavior: auto; */
    /* } */

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-delay: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* ── ELEMENTOR: Root container (replaces body) ── */
#hgx-creators {
    font-family: var(--hgx-font);
    background: var(--hgx-bg);
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 24px 24px;
    color: var(--hgx-text);
    overflow-x: clip;
    /* clip instead of hidden — doesn't break position:sticky */
    -webkit-font-smoothing: antialiased;
    position: relative;
}

/* ── ELEMENTOR: WordPress theme bleed resets ── */
#hgx-creators button {
    background: none !important;
    background-color: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    padding: 0;
    margin: 0;
    color: inherit;
}

#hgx-creators ul,
#hgx-creators ul li {
    list-style: none !important;
    list-style-type: none !important;
}

#hgx-creators a,
#hgx-creators a:visited,
#hgx-creators a:hover {
    text-decoration: none !important;
}

/* Restore styles on buttons that NEED backgrounds (beats #id button reset) */
#hgx-creators .f-submit {
    background: var(--hgx-blue) !important;
    box-shadow: 0 4px 20px rgba(27, 108, 242, .3) !important;
    border: none !important;
    padding: 14px !important;
    letter-spacing: .01em !important;
}

#hgx-creators .sticky-btn {
    background: var(--hgx-blue) !important;
    border: none !important;
    padding: 10px 22px !important;
}

#hgx-creators .faq-btn {
    padding: 24px 0 24px 16px !important;
    letter-spacing: -.01em !important;
    text-align: left !important;
    font-family: var(--hgx-font) !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    color: var(--hgx-text) !important;
    width: 100% !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 16px !important;
    cursor: pointer !important;
}
