/* ==========================================================================
   ACCESSUG - MASTER ARCHITECTURE (100% OPTIMIZED & ANIMATED)
   ========================================================================== */

:root {
    --clr-bg: #050505;
    --clr-surface: #0a0a0c;
    --clr-text: #ffffff;
    --clr-muted: #8a8a93;
    --clr-emerald: #00FFB2; 
    /* Cabinet Grotesk is slightly condensed, so long headlines fit a 390px
       screen without the words closing up on each other. Satoshi carries the
       body and every price — its figures are the clearest of the pair. */
    --font-display: 'Cabinet Grotesk', 'Satoshi', system-ui, sans-serif;
    --font-body: 'Satoshi', system-ui, -apple-system, sans-serif;
    --curve-smooth: cubic-bezier(0.16, 1, 0.3, 1);
    --curve-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; background: var(--clr-bg); overflow-x: hidden; }
body { background-color: var(--clr-bg); color: var(--clr-text); font-family: var(--font-body); line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }
.relative-z { position: relative; z-index: 2; }
a { text-decoration: none; color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.1; }
.text-emerald { color: var(--clr-emerald); text-shadow: 0 0 20px rgba(0,255,178,0.4); }
.text-hollow { color: transparent; -webkit-text-stroke: 1px var(--clr-text); }
.text-cyan { color: #00f2fe; }
.text-muted { color: #888; }
.opacity-half { opacity: 0.5; }

/* ==========================================================================
   MASTER ANIMATION CLASSES (Scroll & Open Effects)
   ========================================================================== */
/* Reveal system. Everything animates on transform+opacity only
   (compositor-friendly); `will-change` is applied by assets/motion.js just
   for the duration of a transition instead of being pinned on every element.

   Reveal is one-shot. It used to re-hide on the way out, which meant
   scrolling back up dismantled the page behind you — and it disagreed with
   the order pages and /growth/, which have always revealed once. Timings
   match assets/motion.css so the same gesture feels the same everywhere. */
.fade-up        { opacity: 0; transform: translate3d(0, 22px, 0); transition: opacity 0.48s var(--curve-smooth), transform 0.48s var(--curve-smooth); }
.scale-in       { opacity: 0; transform: scale(0.965); transition: opacity 0.48s var(--curve-smooth), transform 0.48s var(--curve-smooth); }
.slide-in-right { opacity: 0; transform: translate3d(26px, 0, 0); transition: opacity 0.48s var(--curve-smooth), transform 0.48s var(--curve-smooth); }
.fade-in        { opacity: 0; transition: opacity 0.48s ease-in-out; }

.is-visible { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
.anim-busy { will-change: opacity, transform; }

.delay-1 { transition-delay: 0.07s; }
.delay-2 { transition-delay: 0.14s; }
.delay-3 { transition-delay: 0.21s; }
.delay-4 { transition-delay: 0.28s; }

/* ---- staggered groups: children cascade instead of arriving as a slab ---- */
[data-stagger][data-stagger] > * { opacity: 0; transform: translate3d(0, 18px, 0); transition: opacity 0.48s var(--curve-smooth), transform 0.48s var(--curve-smooth); transition-delay: calc(var(--i, 0) * 70ms); }
[data-stagger][data-stagger].is-visible > * { opacity: 1; transform: translate3d(0, 0, 0); }

/* ---- scroll progress rail ---- */
.scroll-progress { position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 1200; pointer-events: none; background: rgba(255,255,255,0.05); }
.scroll-progress i { display: block; height: 100%; width: 100%; transform: scaleX(0); transform-origin: 0 50%; background: linear-gradient(90deg, var(--clr-emerald), #00A8E1); box-shadow: 0 0 12px rgba(0,255,178,0.5); }

/* ---- hero scroll cue (constant, invites the first scroll) ---- */
.hero-cue { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 7px; z-index: 6; color: rgba(255,255,255,0.45); font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 700; }
.hero-cue-track { width: 22px; height: 34px; border: 1.5px solid rgba(255,255,255,0.25); border-radius: 12px; position: relative; }
.hero-cue-track::after { content: ''; position: absolute; left: 50%; top: 7px; width: 3px; height: 6px; border-radius: 3px; background: var(--clr-emerald); transform: translateX(-50%); animation: cueDrop 1.9s var(--curve-smooth) infinite; }
@keyframes cueDrop { 0% { opacity: 0; transform: translate(-50%, 0); } 30% { opacity: 1; } 70% { opacity: 1; transform: translate(-50%, 12px); } 100% { opacity: 0; transform: translate(-50%, 14px); } }
/* on phones the hero content is taller than the viewport, so the cue would
   sit on top of the second choice panel — drop it there (touch users scroll
   instinctively anyway) */
@media(max-width: 720px) { .hero-cue { display: none; } }

/* ---- constant ambient motion ---- */
.oh-badge { animation: badgeBreathe 3.2s ease-in-out infinite; }
@keyframes badgeBreathe { 0%, 100% { box-shadow: 0 0 0 0 rgba(0,255,178,0.35); } 50% { box-shadow: 0 0 0 9px rgba(0,255,178,0); } }
.oh-cta { position: relative; overflow: hidden; }
.oh-cta::after { content: ''; position: absolute; top: 0; left: 0; width: 45%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.45), transparent); transform: translateX(-200%) skewX(-20deg); animation: ctaSheen 3.6s ease-in-out infinite; }
@keyframes ctaSheen { 0% { transform: translateX(-200%) skewX(-20deg); } 45%, 100% { transform: translateX(320%) skewX(-20deg); } }
/* the badge icon breathes gently — alive without anything drifting around
   the card the way the old floating logo row used to */
.cp-badge i, .om-ic { animation: iconFloat 4.5s ease-in-out infinite; }
@keyframes iconFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-3px); } }
.offer-mini:nth-child(2) .om-ic { animation-delay: 1.1s; }

/* ---- touch feedback: desktop gets hover, mobile gets a real press ---- */
.choice-panel:active, .pf-chip:active, .offer-mini:active, .oh-cta:active, .om-cta:active, .psoc:active, .mm-tile:active { transform: scale(0.975); }
.pf-chip, .offer-mini, .oh-cta, .om-cta, .psoc { transition: transform 0.28s var(--curve-spring), border-color 0.28s, background 0.28s, box-shadow 0.25s; }

@media(max-width: 720px) {
    /* shorter travel on small screens so motion reads as snappy, not laggy */
    .fade-up { transform: translate3d(0, 16px, 0); }
    [data-stagger][data-stagger] > * { transform: translate3d(0, 14px, 0); transition-delay: calc(var(--i, 0) * 55ms); }
}

@media(prefers-reduced-motion: reduce) {
    .fade-up, .scale-in, .slide-in-right, .fade-in, [data-stagger][data-stagger] > * { opacity: 1 !important; transform: none !important; transition: none !important; }
    .oh-badge, .oh-cta::after, .cp-badge i, .om-ic, .hero-cue-track::after, .hero-asset { animation: none !important; }
    .scroll-progress { display: none; }
}

/* --- DYNAMIC SPOTLIGHT (GPU Accelerated) --- */
.cursor-spotlight { position: fixed; top: 0; left: 0; width: 600px; height: 600px; background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 60%); border-radius: 50%; pointer-events: none; z-index: 9999; transform: translate3d(-50%, -50%, 0); will-change: transform; transition: opacity 0.3s; mix-blend-mode: screen; }

/* --- PRECISION NAVBAR --- */
.precision-nav { position: fixed; top: 0; width: 100%; z-index: 1000; padding: 24px 0; border-bottom: 1px solid transparent; transition: all 0.3s; }
.precision-nav.scrolled { padding: 16px 0; background: rgba(5,5,5,0.85); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid rgba(255,255,255,0.06); }
.nav-grid { display: flex; justify-content: space-between; align-items: center; }
.brand-monolith { display: flex; align-items: center; gap: 12px; }
.brand-icon { width: 34px; }
/* the mark already says "97" — the wordmark only needs to say WORLD.
   Outfit's geometric forms sit closer to the logo than Clash Display did. */
.brand-text { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; line-height: 1; }
.brand-monolith { gap: 11px; }
.mm-brand { font-family: var(--font-display); font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.nav-links { display: flex; gap: 40px; }
.nav-item { font-size: 0.95rem; font-weight: 500; color: var(--clr-muted); transition: color 0.3s; }
.nav-item:hover { color: var(--clr-text); }
@media(max-width: 768px) { .nav-links { display: none; } }

/* --- MOBILE MENU (full navigator) --- */
.burger-btn { display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px; width: 42px; height: 42px; background: none; border: none; cursor: pointer; z-index: 1100; -webkit-tap-highlight-color: transparent; }
.burger-btn span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: transform 0.35s var(--curve-spring), opacity 0.25s; }
@media(max-width: 768px) { .burger-btn { display: flex; } }

.mobile-menu {
    position: fixed; inset: 0; z-index: 1050;
    background: rgba(4,4,6,0.97); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
    display: flex; flex-direction: column;
    padding: max(14px, env(safe-area-inset-top)) 20px max(18px, env(safe-area-inset-bottom));
    opacity: 0; visibility: hidden; pointer-events: none;
    /* visibility flips instantly on open (so the panel is focusable straight
       away) and only waits for the fade-out on close */
    transition: opacity 0.35s var(--curve-smooth), visibility 0s linear 0.35s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; pointer-events: all; transition: opacity 0.35s var(--curve-smooth), visibility 0s; }
body.menu-open { overflow: hidden; }

.mm-head { display: flex; align-items: center; justify-content: space-between; padding: 6px 4px 18px; flex-shrink: 0; }
.mm-brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; letter-spacing: 0.04em; color: #fff; }
.mm-logo { width: 28px; height: 28px; object-fit: contain; }
.mm-close { width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); color: #fff; font-size: 1.1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.25s, transform 0.25s; -webkit-tap-highlight-color: transparent; }
.mm-close:hover, .mm-close:focus-visible { background: rgba(255,255,255,0.14); transform: rotate(90deg); outline: none; }

.mm-scroll { flex: 1; overflow-y: auto; -webkit-overflow-scrolling: touch; padding-bottom: 12px; }
.mm-label { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--clr-muted); margin: 10px 4px 12px; }

.mm-intent { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 26px; }
.mm-intent-card { display: flex; flex-direction: column; align-items: flex-start; gap: 3px; text-align: left; padding: 16px 15px; border-radius: 18px; background: rgba(255,255,255,0.045); border: 1px solid rgba(255,255,255,0.1); color: #fff; font-family: var(--font-body); cursor: pointer; transition: border-color 0.25s, background 0.25s, transform 0.25s; -webkit-tap-highlight-color: transparent; }
.mm-intent-card:active { transform: scale(0.97); }
.mm-intent-card:hover, .mm-intent-card:focus-visible { border-color: rgba(0,255,178,0.4); background: rgba(0,255,178,0.06); outline: none; }
.mm-intent-ic { width: 36px; height: 36px; border-radius: 12px; background: rgba(0,255,178,0.12); color: var(--clr-emerald); display: flex; align-items: center; justify-content: center; font-size: 0.95rem; margin-bottom: 6px; }
.mm-intent-card[data-path="build"] .mm-intent-ic { background: rgba(0,168,225,0.14); color: #6be4ff; }
.mm-intent-card:nth-child(3) { grid-column: 1 / -1; }
.mm-intent-card[data-path="offers"] .mm-intent-ic { background: rgba(255,201,77,0.14); color: #FFC94D; }
.mm-intent-card b { font-family: var(--font-display); font-size: 1rem; font-weight: 700; line-height: 1.2; }
.mm-intent-card small { font-size: 0.76rem; color: var(--clr-muted); line-height: 1.35; }

.mm-tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 26px; }
.mm-tile { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 14px 6px; border-radius: 16px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); transition: border-color 0.25s, transform 0.25s; }
.mm-tile:active { transform: scale(0.95); }
.mm-tile img { width: 26px; height: 26px; object-fit: contain; }
.mm-tile span { font-size: 0.68rem; font-weight: 600; color: var(--clr-muted); text-align: center; }

.mm-links { display: flex; flex-direction: column; gap: 2px; }
.mm-link { display: flex; align-items: center; justify-content: space-between; padding: 15px 4px; font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; color: #fff; border-bottom: 1px solid rgba(255,255,255,0.06); transition: padding-left 0.25s, color 0.25s; }
.mm-link i { font-size: 0.8rem; color: rgba(255,255,255,0.3); transition: transform 0.25s, color 0.25s; }
.mm-link:hover { padding-left: 10px; }
.mm-link:hover i { color: var(--clr-emerald); transform: translateX(4px); }

.mm-foot { flex-shrink: 0; display: flex; flex-direction: column; gap: 10px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.08); }
.mm-wa { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 16px; border-radius: 14px; background: #25D366; color: #04140c; font-weight: 800; font-size: 0.98rem; }
.mm-call { display: flex; align-items: center; justify-content: center; gap: 9px; padding: 13px; border-radius: 14px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); color: #fff; font-weight: 700; font-size: 0.9rem; }

/* staggered entrance */
.mobile-menu .mm-label, .mobile-menu .mm-intent, .mobile-menu .mm-tiles, .mobile-menu .mm-links, .mobile-menu .mm-foot { opacity: 0; transform: translateY(14px); transition: opacity 0.4s var(--curve-smooth), transform 0.4s var(--curve-smooth); }
.mobile-menu.is-open .mm-label, .mobile-menu.is-open .mm-intent, .mobile-menu.is-open .mm-tiles, .mobile-menu.is-open .mm-links, .mobile-menu.is-open .mm-foot { opacity: 1; transform: translateY(0); }
.mobile-menu.is-open .mm-intent { transition-delay: 0.06s; }
.mobile-menu.is-open .mm-tiles { transition-delay: 0.12s; }
.mobile-menu.is-open .mm-links { transition-delay: 0.18s; }
.mobile-menu.is-open .mm-foot { transition-delay: 0.24s; }
@media(prefers-reduced-motion: reduce) {
    .mobile-menu .mm-label, .mobile-menu .mm-intent, .mobile-menu .mm-tiles, .mobile-menu .mm-links, .mobile-menu .mm-foot { transition: none; opacity: 1; transform: none; }
}
@media(max-width: 360px) { .mm-intent { grid-template-columns: 1fr; } }

/* ==========================================================================
   STAGE 1: CINEMATIC HERO 
   ========================================================================== */
.stage-hero {
    position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; padding-top: 80px;
    background-image: linear-gradient(to bottom, rgba(2,2,2,0.72) 0%, rgba(2,2,2,0.55) 22%, rgba(2,2,2,0.5) 45%, rgba(2,2,2,0.6) 65%, rgba(2,2,2,0.75) 85%, #020202 100%), url("/IMAGES/hero-campaign-mobile.jpg");
    background-size: cover; background-position: top center; background-repeat: no-repeat;
}
@media(min-width: 768px) {
    .stage-hero { background-image: linear-gradient(to bottom, rgba(2,2,2,0.7) 0%, rgba(2,2,2,0.5) 25%, rgba(2,2,2,0.45) 48%, rgba(2,2,2,0.55) 68%, rgba(2,2,2,0.75) 85%, #020202 100%), url("/IMAGES/hero-campaign.jpg"); background-position: center 20%; }
}
.hero-content { position: relative; z-index: 5; display: flex; flex-direction: column; align-items: center; }

.anti-gravity-bg { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; background: radial-gradient(circle at center, rgba(229, 9, 20, 0.03) 0%, transparent 70%); }
.hero-asset { position: absolute; will-change: transform; filter: drop-shadow(0 10px 15px rgba(0,0,0,0.6)); }
.ha-uganda, .ha-ssudan { border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,255,255,0.1); }
.ha-netflix { width: 55px; top: 10%; left: -10%; opacity: 0.7; animation: float-path-1 25s linear infinite; }
.ha-spotify { width: 45px; bottom: 15%; right: -10%; opacity: 0.6; animation: float-path-2 22s linear infinite reverse; }
.ha-prime   { width: 60px; top: 40%; left: 110%; opacity: 0.8; animation: float-path-3 28s linear infinite; }
.ha-uganda  { width: 40px; height: 40px; top: 80%; left: -15%; opacity: 0.5; animation: float-path-4 30s linear infinite; }
.ha-ssudan  { width: 35px; height: 35px; top: -5%; right: 20%; opacity: 0.6; animation: float-path-5 26s linear infinite reverse; }
.ha-facebook { width: 50px; top: 65%; left: -8%; opacity: 0.7; animation: float-path-6 24s linear infinite; }
.ha-mtn    { width: 60px; height: auto; top: 22%; left: -6%; opacity: 0.75; animation: float-path-7 27s linear infinite; filter: drop-shadow(0 10px 20px rgba(255, 204, 0, 0.2)); }
.ha-airtel { width: 55px; height: auto; top: 78%; right: -6%; opacity: 0.75; animation: float-path-8 23s linear infinite reverse; filter: drop-shadow(0 10px 20px rgba(255, 0, 0, 0.2)); }

/* on a phone the hero is barely wider than the choice cards themselves, so a
   drifting badge has nowhere to go without clipping at the screen edge or
   crossing into the card stack — it reads as clutter, not texture, at this
   width. Desktop has the room for it; a phone doesn't. */
@media(max-width: 768px) { .anti-gravity-bg { display: none; } }

@keyframes float-path-1 { 0%, 100% { transform: translate(0, 0) rotate(0deg); } 33% { transform: translate(60vw, 30vh) rotate(15deg); } 66% { transform: translate(20vw, 60vh) rotate(-10deg); } }
@keyframes float-path-2 { 0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); } 50% { transform: translate(-80vw, -40vh) rotate(-20deg) scale(1.2); } }
@keyframes float-path-3 { 0%, 100% { transform: translate(0, 0) rotate(0deg); } 50% { transform: translate(-120vw, 20vh) rotate(25deg); } }
@keyframes float-path-4 { 0%, 100% { transform: translate(0, 0) rotate(0deg); } 50% { transform: translate(90vw, -70vh) rotate(360deg); } }
@keyframes float-path-5 { 0%, 100% { transform: translate(0, 0) rotate(0deg); } 50% { transform: translate(-60vw, 80vh) rotate(-360deg); } }
@keyframes float-path-6 { 0%, 100% { transform: translate(0, 0) rotate(0deg); } 40% { transform: translate(70vw, -50vh) rotate(-15deg); } 70% { transform: translate(30vw, -80vh) rotate(10deg); } }
@keyframes float-path-7 { 0%, 100% { transform: translate(0, 0) rotate(0deg); } 50% { transform: translate(50vw, 40vh) rotate(-12deg); } }
@keyframes float-path-8 { 0%, 100% { transform: translate(0, 0) rotate(0deg); } 50% { transform: translate(-45vw, -35vh) rotate(14deg); } }

.display-hero { font-size: clamp(2.5rem, 6.2vw, 4.8rem); letter-spacing: -0.018em; line-height: 1.03; margin-bottom: 14px; font-weight: 700; }
/* the 2.5rem floor plus the hard <br> after "you" was tall enough on a
   narrow phone that "you" broke onto its own orphan line — a smaller floor
   here keeps "What do you" on one line without touching wider screens */
@media(max-width: 360px) { .display-hero { font-size: 2.15rem; } }
.display-hero em {
    font-style: normal;
    background: linear-gradient(100deg, var(--clr-emerald), #b8ff4d);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.lead-text { font-size: clamp(1rem, 2.2vw, 1.28rem); font-weight: 500; color: var(--clr-muted); margin-bottom: 26px; }

/* trust strip under the chooser — the proof that used to sit in a pill above
   the headline, moved below the fold-critical choice so it can't push it down */
.hero-trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 22px; list-style: none; }
.hero-trust li { display: inline-flex; align-items: center; gap: 7px; padding: 8px 13px; border-radius: 100px; border: 1px solid rgba(255,255,255,0.1); background: rgba(8,9,12,0.72); font-size: 0.76rem; font-weight: 600; color: #c8c8d0; }
.hero-trust li i { color: var(--clr-emerald); font-size: 0.78rem; }

.action-dock { display: flex; flex-direction: column; align-items: center; width: 100%; max-width: 350px; }
.btn-hyper-connect { position: relative; display: inline-block; padding: 2px; border-radius: 50px; width: 100%; box-shadow: 0 15px 35px rgba(229, 9, 20, 0.25); transition: transform 0.3s; }
.btn-hyper-connect:active, .btn-hyper-connect:hover { transform: scale(0.96) translateY(2px); box-shadow: 0 5px 15px rgba(229, 9, 20, 0.4); }
.btn-border { position: absolute; inset: 0; border-radius: 50px; background: linear-gradient(90deg, #e50914, #ff6b6b, #1DB954, #00A8E1, #e50914); background-size: 300% 100%; animation: sweep-border 4s linear infinite; z-index: -1; }
@keyframes sweep-border { 100% { background-position: 100% 50%; } }
.btn-surface { display: flex; align-items: center; justify-content: center; gap: 12px; background: #0a0a0a; padding: 18px 40px; border-radius: 48px; position: relative; overflow: hidden; width: 100%; }
.btn-surface::after { content: ''; position: absolute; top: 0; left: 0; width: 50%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent); transform: translateX(-200%) skewX(-20deg); animation: shimmer-fast 4s ease-in-out infinite; will-change: transform; }
.btn-surface i { color: #e50914; font-size: 1.4rem; filter: drop-shadow(0 0 8px rgba(229, 9, 20, 0.8)); animation: heartbeat 1.5s infinite; }
@keyframes heartbeat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.15); } }
.btn-text { background: linear-gradient(to right, #ffffff, #d1d1d1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-size: 1.25rem; font-weight: 800; font-family: var(--font-display); }
.btn-text-only { display: flex; align-items: center; gap: 8px; font-weight: 500; font-size: 1.05rem; color: var(--clr-muted); transition: color 0.3s; margin-top: 15px; }
.btn-text-only:hover { color: var(--clr-text); }

/* ==========================================================================
   SHARED SECTION HEADINGS
   ========================================================================== */
.section-title { text-align: center; margin-bottom: 40px; }
.heading-large { font-size: clamp(2.3rem, 5vw, 3.6rem); line-height: 1.06; margin-bottom: 12px; }

/* ==========================================================================
   HERO ROTATOR
   ========================================================================== */

/* ==========================================================================
   HERO: "WHAT WOULD YOU LIKE TO GET?" SPLIT CHOOSER
   ========================================================================== */
.hero-ask { width: 100%; max-width: 880px; margin: 0 auto; }

.hero-choice { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 14px; }
.choice-panel {
    position: relative; overflow: hidden; text-align: left; cursor: pointer;
    display: flex; flex-direction: column; gap: 0;
    padding: 20px 20px 16px;
    background: rgba(8,9,12,0.9); border: 1px solid rgba(255,255,255,0.14); border-radius: 22px;
    color: #fff; font-family: var(--font-body);
    transition: transform 0.35s var(--curve-spring), border-color 0.3s, background 0.3s, box-shadow 0.35s;
    -webkit-tap-highlight-color: transparent;
}
.choice-panel:hover, .choice-panel:focus-visible { transform: translateY(-5px); border-color: rgba(0,255,178,0.45); outline: none; }
/* tint OVER the opaque base — never replace background-color, or the hero
   photo shows straight through the selected panel */
.choice-panel.is-featured {
    border-color: var(--clr-emerald);
    background-image: linear-gradient(rgba(0,255,178,0.1), rgba(0,255,178,0.1));
    box-shadow: 0 0 0 1px var(--clr-emerald), 0 22px 46px -26px rgba(0,255,178,0.85);
}
.cp-glow { position: absolute; inset: -40% 30% 60% -20%; background: radial-gradient(circle, rgba(0,255,178,0.22), transparent 70%); opacity: 0; transition: opacity 0.4s; pointer-events: none; }
.choice-panel:hover .cp-glow, .choice-panel.is-featured .cp-glow { opacity: 1; }

/* the Von Restorff marker — one card is visually louder than the other so the
   decision is pre-made for anyone who doesn't want to think about it */
.cp-tag {
    position: absolute; top: 0; right: 0; z-index: 2;
    padding: 5px 12px; border-bottom-left-radius: 13px;
    background: linear-gradient(100deg, var(--clr-emerald), #b8ff4d); color: #04120d;
    font-size: 0.6rem; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase;
}

/* icon badge + real-logo proof stack, one shared language across all three
   cards instead of a different icon treatment per card */
.cp-top { position: relative; display: flex; align-items: center; gap: 12px; margin-bottom: 15px; }
.cp-badge {
    width: 46px; height: 46px; flex: none; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.15rem; background: rgba(0,255,178,0.14); color: var(--clr-emerald);
}
.choice-panel[data-path="build"] .cp-badge { background: rgba(0,168,225,0.14); color: #6be4ff; }
.choice-panel[data-path="offers"] .cp-badge { background: rgba(255,201,77,0.14); color: #FFC94D; }

/* the real platforms/products a card covers, as an overlapping avatar
   stack — reads as proof ("these exact ones") rather than decoration */
.cp-stack { display: flex; }
.cp-stack img, .cp-stack-ic {
    width: 26px; height: 26px; border-radius: 50%; margin-left: -9px;
    border: 2px solid #0b0c10; box-shadow: 0 2px 6px rgba(0,0,0,0.35);
}
.cp-stack img { object-fit: cover; background: #fff; display: block; }
.cp-stack-ic { background: #16171c; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 0.68rem; }
.cp-stack img:first-child, .cp-stack-ic:first-child { margin-left: 0; }

.cp-title { position: relative; font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; line-height: 1.15; letter-spacing: -0.01em; }
.cp-sub { position: relative; font-size: 0.9rem; color: var(--clr-muted); line-height: 1.5; margin-top: 5px; }

.cp-foot {
    position: relative; display: flex; align-items: center; justify-content: space-between;
    gap: 12px; margin-top: 16px; padding-top: 13px;
    border-top: 1px dashed rgba(255,255,255,0.14);
}
.cp-from { font-size: 0.8rem; color: #c8c8d0; }
.cp-from b { color: #fff; font-weight: 800; }

/* a real button, not a text link — every card has one so the choice always
   reads as "tap here", not just "this whole card happens to be clickable" */
.cp-btn {
    display: inline-flex; align-items: center; gap: 7px; flex: none;
    padding: 10px 16px; border-radius: 100px;
    font-weight: 800; font-size: 0.8rem; white-space: nowrap;
    background: rgba(0,255,178,0.14); color: var(--clr-emerald);
    transition: background 0.3s, color 0.3s, transform 0.3s;
}
.cp-btn i { transition: transform 0.3s; }
.choice-panel:hover .cp-btn, .choice-panel:focus-visible .cp-btn { background: var(--clr-emerald); color: #04140c; }
.choice-panel:hover .cp-btn i, .choice-panel:focus-visible .cp-btn i { transform: translateX(4px); }
.choice-panel[data-path="build"] .cp-btn { background: rgba(0,168,225,0.14); color: #6be4ff; }
.choice-panel[data-path="build"]:hover .cp-btn, .choice-panel[data-path="build"]:focus-visible .cp-btn { background: #6be4ff; color: #04101f; }
.choice-panel[data-path="offers"] .cp-btn { background: rgba(255,201,77,0.14); color: #FFC94D; }
.choice-panel[data-path="offers"]:hover .cp-btn, .choice-panel[data-path="offers"]:focus-visible .cp-btn { background: #FFC94D; color: #1a1004; }
/* touch has no hover — the tap itself is the feedback, so give the button a
   quick fill flash instead of relying on a state that never arrives */
.choice-panel:active .cp-btn { background: var(--clr-emerald); color: #04140c; }
.choice-panel[data-path="build"]:active .cp-btn { background: #6be4ff; color: #04101f; }
.choice-panel[data-path="offers"]:active .cp-btn { background: #FFC94D; color: #1a1004; }

@media(max-width: 720px) {
    .hero-choice { grid-template-columns: 1fr; gap: 11px; }
    .choice-panel { padding: 17px 17px 14px; border-radius: 20px; background: rgba(6,7,10,0.95); }
    .cp-top { margin-bottom: 12px; }
    .cp-badge { width: 42px; height: 42px; border-radius: 13px; font-size: 1.05rem; }
    .cp-stack img, .cp-stack-ic { width: 24px; height: 24px; }
    .cp-title { font-size: 1.22rem; }
    .cp-sub { font-size: 0.85rem; }
    /* keep the whole chooser + trust row inside one phone screen. A 2x2 grid
       reads as deliberate; a plain wrap leaves one chip stranded on its own row */
    .hero-trust { display: grid; grid-template-columns: repeat(2, auto); justify-content: center; justify-items: center; margin-top: 15px; gap: 6px; }
    .hero-trust li { padding: 7px 11px; font-size: 0.72rem; }
}

/* ==========================================================================
   STICKY INTENT BAR
   ========================================================================== */
.intent-bar {
    position: fixed; top: 58px; left: 0; right: 0; z-index: 900;
    background: rgba(5,5,7,0.92); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    transform: translateY(-100%); opacity: 0; pointer-events: none;
    transition: transform 0.4s var(--curve-smooth), opacity 0.3s;
}
.intent-bar { transform: translateY(-170%); }
.intent-bar.is-visible { transform: translateY(0); opacity: 1; pointer-events: all; }
.intent-inner { display: flex; align-items: center; justify-content: center; gap: 20px; padding: 12px 24px; }
.intent-q { font-family: var(--font-display); font-weight: 600; font-size: 0.9rem; color: rgba(255,255,255,0.7); }
.intent-switch { display: flex; gap: 6px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 100px; padding: 4px; }
.intent-btn { display: inline-flex; align-items: center; gap: 7px; padding: 8px 18px; border: none; border-radius: 100px; background: transparent; color: var(--clr-muted); font-family: var(--font-body); font-weight: 700; font-size: 0.85rem; cursor: pointer; transition: background 0.3s, color 0.3s; }
.intent-btn i { font-size: 0.8rem; }
.intent-btn:hover { color: #fff; }
.intent-btn.is-active { background: var(--clr-emerald); color: #04140c; }
@media(max-width: 640px) {
    .intent-bar { top: 54px; }
    .intent-q { display: none; }
    .intent-inner { padding: 10px 16px; }
    .intent-switch { width: 100%; max-width: 320px; }
    .intent-btn { flex: 1; justify-content: center; }
}

/* ==========================================================================
   REGION GATE — no price is shown until we know which currency to show it in
   ========================================================================== */
.gate {
    position: fixed; inset: 0; z-index: 2000;
    display: grid; place-items: center; padding: 22px;
    background: rgba(3,3,4,0.95);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}
.gate[hidden] { display: none; }
.gate-card {
    width: 100%; max-width: 430px; padding: 30px 24px 26px;
    border-radius: 26px; border: 1px solid rgba(255,255,255,0.1);
    background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015)), #0b0b0f;
    text-align: center; animation: gateIn 0.6s var(--curve-smooth);
}
@keyframes gateIn { from { opacity: 0; transform: translateY(22px) scale(0.97); } }
.gate-logo { width: 42px; height: 42px; margin: 0 auto 16px; display: block; }
.gate-card h2 { font-size: 1.5rem; margin-bottom: 8px; }
.gate-card > p { color: var(--clr-muted); font-size: 0.9rem; margin-bottom: 22px; }
.region-grid { display: grid; gap: 10px; }
.region-btn {
    display: flex; align-items: center; gap: 14px; width: 100%;
    padding: 14px 16px; border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.09); background: rgba(255,255,255,0.035);
    color: #fff; font-family: var(--font-body); text-align: left; cursor: pointer;
    transition: transform 0.25s var(--curve-spring), border-color 0.25s, background 0.25s;
}
.region-btn:hover { border-color: var(--clr-emerald); background: rgba(255,255,255,0.06); }
.region-btn:active { transform: scale(0.98); }
.region-btn .flag { font-size: 1.7rem; line-height: 1; flex: none; }
.region-btn .rb-copy { flex: 1; min-width: 0; }
.region-btn b { display: block; font-size: 1rem; font-weight: 700; }
.region-btn small { color: var(--clr-muted); font-size: 0.78rem; }
.region-btn > i { color: #6a6a73; font-size: 0.82rem; }
body.gate-open { overflow: hidden; }

/* ==========================================================================
   SECTION 2 — THE PRICE BUILDER
   The offers section is the first step of the order: platform, package, price.
   ========================================================================== */
.stage-path { position: relative; padding: 80px 0 90px; background: #020202; scroll-margin-top: 90px; }

.sec-head { text-align: center; margin-bottom: 30px; }
.sec-kicker { display: block; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: var(--clr-emerald); margin-bottom: 12px; }
.sec-title { font-size: clamp(2rem, 6vw, 3rem); letter-spacing: -0.02em; line-height: 1.05; }
.sec-title em { font-style: normal; background: linear-gradient(100deg, var(--clr-emerald), #b8ff4d); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.sec-sub { color: var(--clr-muted); font-size: 0.95rem; margin-top: 12px; }

/* the bundle sits apart from the four single platforms — it is a different
   kind of choice, and the one we want people to notice */

/* the other services, kept to one compact row */

/* ==========================================================================
   SECTION 3+4 — HOW IT WORKS + PROOF, in one band
   ========================================================================== */
.stage-how { position: relative; padding: 80px 0 90px; border-top: 1px solid rgba(255,255,255,0.05); scroll-margin-top: 90px; }

.how-line { max-width: 720px; margin: 0 auto; list-style: none; display: grid; gap: 0; }
.how-line li {
    display: flex; align-items: center; gap: 15px;
    padding: 15px 4px; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.how-line li:last-child { border-bottom: none; }
.how-line b {
    flex: none; width: 34px; height: 34px; display: grid; place-items: center;
    border-radius: 11px; border: 1px solid rgba(0,255,178,0.3); background: rgba(0,255,178,0.1);
    color: var(--clr-emerald); font-family: var(--font-display); font-size: 0.82rem; font-weight: 700;
}
.how-line span { font-size: 0.95rem; color: #d2d2da; line-height: 1.45; }

.proof-band {
    max-width: 720px; margin: 38px auto 0; padding: 24px 20px;
    border-radius: 24px; border: 1px solid rgba(255,255,255,0.1);
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.012));
    scroll-margin-top: 90px;
}
.pb-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; text-align: center; }
.pb-stats b { display: block; font-family: var(--font-display); font-size: clamp(1.4rem, 5vw, 1.9rem); font-weight: 700; line-height: 1; }
.pb-stats div:nth-child(-n+2) b::after { content: '+'; color: var(--clr-emerald); }
.pb-stats span { display: block; font-size: 0.72rem; color: var(--clr-muted); margin-top: 6px; line-height: 1.35; }

.pb-points { list-style: none; display: grid; gap: 9px; margin: 22px 0 20px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.08); }
.pb-points li { display: flex; align-items: flex-start; gap: 11px; font-size: 0.88rem; color: #c8c8d0; line-height: 1.45; }
.pb-points i { color: var(--clr-emerald); font-size: 0.85rem; margin-top: 3px; flex: none; }

.pb-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.pb-links a {
    display: flex; align-items: center; justify-content: center; gap: 7px;
    padding: 11px 8px; border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.09); background: rgba(255,255,255,0.03);
    font-size: 0.76rem; font-weight: 600; color: #c8c8d0;
    transition: transform 0.25s var(--curve-spring), border-color 0.25s, color 0.25s;
}
.pb-links a:hover { border-color: rgba(0,255,178,0.35); color: #fff; }
.pb-links a:active { transform: scale(0.97); }
.pb-links i { color: var(--clr-emerald); }

@media(max-width: 560px) {
    /* short labels — keep them on one row rather than costing 120px of height */
    .pb-links a { padding: 10px 4px; font-size: 0.68rem; gap: 5px; }
    .pb-stats span { font-size: 0.66rem; }
}

/* ==========================================================================
   ADVANCED OBSIDIAN FOOTER 
   ========================================================================== */
.obsidian-footer { position: relative; padding: 80px 0 32px; background: rgba(5, 5, 8, 0.95); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-top: 1px solid rgba(255, 255, 255, 0.05); z-index: 5; overflow: hidden; }
.obsidian-footer::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 1px; background: linear-gradient(90deg, transparent, rgba(0, 255, 178, 0.5), transparent); }
.obsidian-footer::after { content: ''; position: absolute; bottom: -50%; left: 50%; transform: translateX(-50%); width: 600px; height: 300px; background: radial-gradient(ellipse, rgba(0, 255, 178, 0.05) 0%, transparent 70%); pointer-events: none; }

.footer-matrix { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 48px; margin-bottom: 56px; }
.f-brand img { width: 40px; margin-bottom: 24px; filter: drop-shadow(0 5px 15px rgba(255,255,255,0.1)); transition: transform 0.3s var(--curve-spring); }
@media(hover: hover) { .f-brand:hover img { transform: scale(1.08) rotate(-4deg); } }
.f-brand p { color: var(--clr-muted); max-width: 250px; font-size: 0.95rem; }
.f-brand-wa {
    display: inline-flex; align-items: center; gap: 8px; margin-top: 18px;
    padding: 9px 16px; border-radius: 100px; font-size: 0.82rem; font-weight: 800;
    background: rgba(37,211,102,0.14); color: #4ee089;
    transition: background 0.3s, transform 0.3s;
}
@media(hover: hover) { .f-brand-wa:hover { background: #25D366; color: #04140c; transform: translateY(-2px); } }

/* a small colour-coded dot before each column header — the same accent
   language as the hero cards (emerald/gold/cyan), so the footer reads as
   the same three categories rather than a plain link dump */
.f-head { display: flex; align-items: center; gap: 9px; font-size: 1.1rem; margin-bottom: 22px; color: var(--clr-text); }
.f-head::before { content: ''; width: 7px; height: 7px; flex: none; border-radius: 50%; background: var(--clr-emerald); box-shadow: 0 0 8px rgba(0,255,178,0.55); }
.f-links[data-path="offers"] .f-head::before { background: #FFC94D; box-shadow: 0 0 8px rgba(255,201,77,0.55); }
.f-links[data-path="build"] .f-head::before { background: #6be4ff; box-shadow: 0 0 8px rgba(107,228,255,0.55); }
.f-links[data-path="command"] .f-head::before { background: #6a6a74; box-shadow: none; }

.f-links { display: flex; flex-direction: column; gap: 15px; }

.f-links a { position: relative; color: var(--clr-muted); font-weight: 500; transition: color 0.3s, transform 0.3s; display: inline-flex; align-items: center; width: max-content; }
.f-links a::after { content: '→'; position: absolute; right: -20px; opacity: 0; transform: translateX(-10px); transition: all 0.3s ease; color: var(--clr-emerald); }
.f-links a:hover { color: #fff; transform: translateX(5px); text-shadow: 0 0 10px rgba(255,255,255,0.2); }
.f-links a:hover::after { opacity: 1; transform: translateX(0); }

.footer-bottom {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px;
    padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.05); text-align: left;
}
.footer-social { display: flex; align-items: center; gap: 8px; }
.footer-social a {
    display: flex; align-items: center; justify-content: center;
    width: 38px; height: 38px; border-radius: 12px;
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09);
    color: #c8c8d0; font-size: 0.92rem; transition: border-color 0.3s, color 0.3s, transform 0.3s, background 0.3s;
}
@media(hover: hover) { .footer-social a:hover { transform: translateY(-3px); border-color: var(--clr-emerald); color: var(--clr-emerald); background: rgba(0,255,178,0.08); } }

.sys-op { display: inline-flex; align-items: center; gap: 10px; color: var(--clr-muted); font-size: 0.9rem; font-family: var(--font-display); padding: 8px 20px; border-radius: 100px; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); }
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--clr-emerald); box-shadow: 0 0 10px var(--clr-emerald); animation: pulse-op 2s infinite; }
@keyframes pulse-op { 0% { box-shadow: 0 0 0 0 rgba(0, 255, 178, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(0, 255, 178, 0); } 100% { box-shadow: 0 0 0 0 rgba(0, 255, 178, 0); } }
@media(max-width: 560px) { .footer-bottom { justify-content: center; text-align: center; } }
