/* ============================================================
   SwissAccs marketplace hub — eye-catching, phone-first
   3 service bubbles in ONE row + slick animations
   ============================================================ */

#page-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: #050505;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 28px; overflow: hidden;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}
#page-loader::before {
  content: ""; position: absolute;
  width: min(70vw, 480px); height: min(70vw, 480px);
  left: 50%; top: 50%; transform: translate(-50%, -54%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,210,122,0.055) 0%, rgba(0,210,122,0.02) 42%, transparent 70%);
  pointer-events: none;
}
#page-loader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-symbol {
  position: relative; z-index: 1; width: 64px; height: 64px; object-fit: contain;
  transform: translateZ(0); animation: loaderSpin 0.95s linear infinite;
}
.loader-text {
  position: relative; z-index: 1; height: 20px; width: auto; max-width: min(180px, 52vw);
  object-fit: contain; opacity: 0; animation: loaderTextIn 0.4s ease 0.1s forwards;
}
.loader-bar {
  position: relative; z-index: 1; width: 48px; height: 1px; margin-top: -10px;
  background: rgba(255,255,255,0.08); overflow: hidden;
}
.loader-bar > i {
  display: block; height: 100%; width: 0; background: #00d27a;
  animation: loaderBar 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.12s forwards;
}
@keyframes loaderSpin {
  from { transform: translateZ(0) rotate(0deg); }
  to { transform: translateZ(0) rotate(360deg); }
}
@keyframes loaderTextIn {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 0.92; transform: translateY(0); }
}
@keyframes loaderBar { from { width: 0; } to { width: 100%; } }

:root {
  --ink: #f4f7f5;
  --ink-dim: rgba(244,247,245,0.62);
  --ink-faint: rgba(244,247,245,0.38);
  --bg: #070a08;
  --bg-2: #0c1210;
  --card: rgba(255,255,255,0.06);
  --card-border: rgba(255,255,255,0.1);
  --accent: #00d27a;
  --accent-2: #3dffb0;
  --nav-h: 52px;
  --banner-h: 0px;
  --safe-b: env(safe-area-inset-bottom, 0px);
  --safe-t: env(safe-area-inset-top, 0px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1080px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
  overscroll-behavior: none;
  overscroll-behavior-x: none;
}
body.hub {
  font-family: 'Geist', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.4;
  overflow-x: clip;
  overscroll-behavior: none;
  overscroll-behavior-x: none;
  min-height: 100svh;
  padding-bottom: calc(var(--banner-h) + 12px + var(--safe-b));
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; -webkit-tap-highlight-color: transparent; }

/* ── Entrance animations (armed AFTER cinematic intro) ── */
.anim-pop,
.anim-up {
  opacity: 0;
  transform: translateY(16px) scale(0.96);
  transition:
    opacity 0.55s var(--ease),
    transform 0.65s var(--ease-spring);
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
}
body.hub.is-live .anim-pop,
body.hub.is-live .anim-up {
  opacity: 1;
  transform: none;
}
body.hub.is-live .hero h1 {
  animation: landSlam 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.06s both;
}
@keyframes landSlam {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

/* Bubbles: hidden until JS materialize (Web Animations API) */
.anim-bubble {
  opacity: 0;
  transform: translate3d(0, 40px, 0) scale(0.94);
  will-change: transform, opacity, filter;
}
/* Settled state after entrance finishes */
body.hub.bubbles-ready .anim-bubble {
  opacity: 1;
  transform: none;
  filter: none;
}
/* Soft row glow flash when bubbles appear */
.bubbles {
  position: relative;
}
body.hub.bubbles-in .bubbles::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 120%;
  height: 140%;
  transform: translate(-50%, -50%);
  border-radius: 40%;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.1) 0%, transparent 62%);
  pointer-events: none;
  z-index: 0;
  animation: bubblesFlash 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes bubblesFlash {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(0.7); }
  40% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(1.15); }
}

/* Smooth handoff: landing UI fades up as intro dissolves */
.landing-fold,
.nav,
.how,
.footer,
.wa-float,
.proto-banner {
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Hide shop UI while cinematic plays */
body.hub.cin-playing .landing-fold,
body.hub.cin-playing .how,
body.hub.cin-playing .footer,
body.hub.cin-playing .nav,
body.hub.cin-playing .proto-banner,
body.hub.cin-playing .wa-float {
  visibility: hidden !important;
  pointer-events: none !important;
  opacity: 0 !important;
}
body.hub.cin-playing {
  overflow: hidden;
  background: #000;
}

/* ============================================================
   CINEMATIC INTRO — 3s black slogan film
   ============================================================ */
.landing-intro {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  color: #fff;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}
body.hub.cin-playing .landing-intro {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
body.hub.cin-exit .landing-intro {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.65s;
}

.cin-bg {
  position: absolute; inset: 0;
  pointer-events: none;
}
.cin-vignette {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 45%, transparent 20%, #000 78%),
    radial-gradient(circle at 50% 40%, rgba(0,210,122,0.09), transparent 55%);
}
.cin-mesh {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,210,122,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,210,122,0.07) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 48%, #000 15%, transparent 72%);
  transform: perspective(900px) rotateX(58deg) scale(1.55) translateY(10%);
  transform-origin: 50% 40%;
  opacity: 0;
  animation: cinMesh 3.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes cinMesh {
  0% { opacity: 0; transform: perspective(900px) rotateX(70deg) scale(1.8) translateY(18%); }
  14% { opacity: 1; }
  78% { opacity: 0.8; }
  100% { opacity: 0; }
}
.cin-hit {
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: 0;
  mix-blend-mode: screen;
}
.cin-hit-a {
  background: radial-gradient(circle at 50% 42%, #fff 0%, rgba(255,255,255,0.45) 26%, transparent 68%);
}
.cin-hit-b {
  background: radial-gradient(circle at 50% 42%, #3dffb0 0%, rgba(0,210,122,0.4) 30%, transparent 70%);
}
.cin-hit.is-on {
  animation: cinHit 0.55s linear forwards;
}
@keyframes cinHit {
  0% { opacity: 0; }
  12% { opacity: 1; }
  28% { opacity: 0.12; }
  40% { opacity: 0.55; }
  100% { opacity: 0; }
}
.cin-beam {
  position: absolute;
  left: 50%; top: 18%;
  width: 140%; height: 55%;
  transform: translateX(-50%);
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(0,210,122,0.07) 48%,
    rgba(255,255,255,0.06) 50%,
    rgba(0,210,122,0.07) 52%,
    transparent 65%
  );
  filter: blur(18px);
  opacity: 0;
  animation: cinBeam 3s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes cinBeam {
  0% { opacity: 0; transform: translateX(-60%) skewX(-12deg); }
  25% { opacity: 0.9; }
  70% { opacity: 0.55; }
  100% { opacity: 0.15; transform: translateX(-40%) skewX(-8deg); }
}
.cin-scan {
  position: absolute; left: 0; right: 0; height: 28%;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255,255,255,0.035),
    transparent
  );
  opacity: 0;
  animation: cinScan 3s linear forwards;
}
@keyframes cinScan {
  0% { top: -20%; opacity: 0; }
  12% { opacity: 0.7; }
  88% { opacity: 0.35; }
  100% { top: 100%; opacity: 0; }
}
.cin-noise {
  position: absolute; inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  animation: none !important;
  mix-blend-mode: overlay;
}
@keyframes cinNoise {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-2%, 1%); }
}
.cin-spark span {
  position: absolute;
  width: 2px; height: 2px;
  border-radius: 50%;
  background: #fff;
  opacity: 0;
  animation: cinSpark 1.4s ease-out forwards;
  box-shadow: 0 0 8px rgba(0,210,122,0.8);
}
@keyframes cinSpark {
  0% { opacity: 0; transform: scale(0.4) translateY(8px); }
  30% { opacity: 0.9; }
  100% { opacity: 0; transform: scale(1) translateY(-28px); }
}

.cin-stage {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 24px 20px;
  width: min(100%, 520px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cin-brand {
  margin-bottom: 28px;
  opacity: 0;
  transform: scale(0.7);
  animation: cinBrandIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.08s forwards;
}
.cin-sym {
  width: 42px; height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(0,210,122,0.45));
  animation: none !important;
}
@keyframes cinBrandIn {
  to { opacity: 1; transform: scale(1); }
}
@keyframes cinSymPulse {
  0%, 100% { filter: drop-shadow(0 0 12px rgba(0,210,122,0.35)); transform: scale(1); }
  50% { filter: drop-shadow(0 0 28px rgba(0,210,122,0.7)); transform: scale(1.04); }
}

.cin-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  perspective: 800px;
}
.cin-line {
  margin: 0;
  font-size: clamp(36px, 11vw, 64px);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1.02;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.28em;
}
.cin-line-mid {
  font-size: clamp(28px, 8vw, 42px);
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: -0.03em;
}
.cin-line-accent {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(52px, 14vw, 92px);
  letter-spacing: -0.04em;
  margin-top: 6px;
}
.cin-line-accent .cin-word {
  background: linear-gradient(115deg, #ffffff 0%, #3dffb0 40%, #00d27a 70%, #a8ffe0 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: none !important;
  filter: drop-shadow(0 0 22px rgba(0,210,122,0.35));
}
@keyframes cinShimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* Word / letter choreography — driven by .is-on */
.cin-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.25em);
  filter: blur(6px);
  transform-origin: 50% 60%;
  transition:
    opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.45s ease;
  will-change: opacity, transform, filter;
}
.cin-word.is-on {
  opacity: 1;
  transform: none;
  filter: blur(0);
}
.cin-word.is-flash {
  animation: cinWordFlash 0.45s ease;
}
@keyframes cinWordFlash {
  0% { text-shadow: 0 0 0 transparent; }
  40% { text-shadow: 0 0 28px rgba(0,210,122,0.65), 0 0 60px rgba(255,255,255,0.25); }
  100% { text-shadow: 0 0 0 transparent; }
}

/* Letter split mode */
.cin-letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.3em);
  filter: blur(4px);
  transition:
    opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.35s ease;
}
.cin-letter.is-on {
  opacity: 1;
  transform: none;
  filter: none;
}
.cin-letter.space { width: 0.28em; }

/* Brand lock: SwissAccs optically centered between two green rules */
.cin-lock {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  gap: 0;
  width: min(72%, 220px);
}
.cin-rule {
  width: 100%;
  height: 1px;
  margin: 0;
  background: rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
  opacity: 0;
  flex-shrink: 0;
  animation: cinRuleShow 0.01s linear 2.35s forwards;
}
.cin-rule-bot {
  animation-delay: 2.5s;
}
.cin-rule i {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, #00d27a, #fff, #00d27a, transparent);
  transform: scaleX(0);
  transform-origin: center center;
  animation: cinRuleDraw 0.7s cubic-bezier(0.22, 1, 0.36, 1) 2.4s forwards;
  box-shadow: 0 0 12px rgba(0,210,122,0.6);
}
.cin-rule-bot i {
  animation-delay: 2.55s;
  transform-origin: center center;
}
@keyframes cinRuleShow { to { opacity: 1; } }
@keyframes cinRuleDraw {
  to { transform: scaleX(1); }
}

.cin-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  /* equal air above/below — slight optical nudge up for wide tracking */
  margin: 0;
  padding: 11px 0 10px;
  line-height: 1;
  opacity: 0;
  transform: translateY(4px);
  animation: cinTagIn 0.5s ease 2.6s forwards;
}
@keyframes cinTagIn {
  to { opacity: 1; transform: translateY(-1px); }
}

.cin-progress {
  position: absolute;
  left: 50%;
  bottom: max(28px, env(safe-area-inset-bottom, 0px));
  transform: translateX(-50%);
  width: min(160px, 40vw);
  height: 1px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
  border-radius: 1px;
}
.cin-progress i {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #00d27a, #3dffb0);
  box-shadow: 0 0 10px rgba(0,210,122,0.7);
  animation: cinProgress 3.2s linear forwards;
}
@keyframes cinProgress {
  to { width: 100%; }
}

/* Final white flash before reveal */
.landing-intro.cin-flash::after {
  content: "";
  position: absolute; inset: 0;
  background: #fff;
  opacity: 0;
  animation: cinWhiteFlash 0.45s ease forwards;
  z-index: 5;
  pointer-events: none;
}
@keyframes cinWhiteFlash {
  0% { opacity: 0; }
  35% { opacity: 0.55; }
  100% { opacity: 0; }
}

/* ── Nav ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: calc(var(--nav-h) + var(--safe-t));
  padding: var(--safe-t) 14px 0;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(7,10,8,0.55);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  transition: border-color 0.3s, background 0.3s;
}
.nav.is-scrolled {
  background: rgba(7,10,8,0.82);
  border-bottom-color: rgba(255,255,255,0.06);
}
.nav-logo img.word {
  height: 17px; width: auto;
  filter: none;
}
.nav-pill {
  font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-faint);
  padding: 5px 9px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
}
.nav-right { display: flex; align-items: center; gap: 6px; }
.nav-link { display: none; }

/* Menu: /nav-menu.css */

/* ── Landing fold ── */
.landing-fold {
  position: relative;
  min-height: calc(100svh - var(--banner-h) - var(--safe-b));
  display: flex;
  flex-direction: column;
  padding-top: calc(var(--nav-h) + var(--safe-t));
  overflow-x: clip;
  overflow-y: visible;
}

/* Ambient stage */
.stage {
  position: absolute; inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.stage-glow {
  position: absolute; border-radius: 50%;
  filter: blur(50px);
  opacity: 0.7;
  animation: none !important;
}
.stage-glow-a {
  width: 90vw; height: 90vw; max-width: 420px; max-height: 420px;
  left: 50%; top: -12%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(0,210,122,0.35), transparent 68%);
  animation-duration: 10s;
}
.stage-glow-b {
  width: 55vw; height: 55vw; max-width: 240px; max-height: 240px;
  right: -10%; top: 35%;
  background: radial-gradient(circle, rgba(225,48,108,0.22), transparent 70%);
  animation-duration: 14s; animation-delay: -3s;
}
.stage-glow-c {
  width: 50vw; height: 50vw; max-width: 220px; max-height: 220px;
  left: -12%; bottom: 8%;
  background: radial-gradient(circle, rgba(29,161,242,0.18), transparent 70%);
  animation-duration: 16s; animation-delay: -6s;
}
@keyframes glowDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(8px, 14px) scale(1.06); }
}
.stage-glow-a {
  animation-name: glowDriftA;
}
@keyframes glowDriftA {
  0%, 100% { transform: translateX(-50%) translateY(0) scale(1); }
  50% { transform: translateX(-48%) translateY(12px) scale(1.05); }
}
.stage-mesh {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 10%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 10%, transparent 75%);
  opacity: 0.9;
}
.stage-shine {
  position: absolute; inset: 0;
  background: radial-gradient(
    420px circle at var(--sx, 50%) var(--sy, 28%),
    rgba(0,210,122,0.12),
    transparent 42%
  );
  opacity: 0.85;
}
.stage-particles span {
  position: absolute;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  animation: none !important;
  opacity: 0;
}
@keyframes particleFloat {
  0% { transform: translateY(20px); opacity: 0; }
  15% { opacity: 0.55; }
  85% { opacity: 0.2; }
  100% { transform: translateY(-80px); opacity: 0; }
}

/* ── Hero ── */
.hero {
  position: relative; z-index: 1;
  padding: 14px 16px 8px;
  text-align: center;
  flex: 0 0 auto;
}
.hero-inner { max-width: 560px; margin: 0 auto; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent-2);
  background: rgba(0,210,122,0.1);
  border: 1px solid rgba(0,210,122,0.28);
  padding: 6px 12px; border-radius: 999px;
  margin-bottom: 12px;
  box-shadow: 0 0 24px -6px rgba(0,210,122,0.45);
}
.hero-badge i {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(0,210,122,0.55);
  animation: none !important;
}
@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(0,210,122,0.55); }
  70% { box-shadow: 0 0 0 8px rgba(0,210,122,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,210,122,0); }
}
.hero h1 {
  font-size: clamp(32px, 9vw, 48px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.04;
  margin-bottom: 10px;
}
.kr {
  display: inline-block;
  position: relative;
  color: var(--accent-2);
  min-height: 1.15em;
  overflow: hidden;
  vertical-align: bottom;
}
.kr-track {
  display: grid;
  grid-template-areas: "stack";
  justify-items: center;
}
.kr-word {
  grid-area: stack;
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(110%) rotateX(-40deg);
  transition: opacity 0.45s var(--ease), transform 0.55s var(--ease);
  white-space: nowrap;
  pointer-events: none;
  background: linear-gradient(120deg, #3dffb0 0%, #00d27a 45%, #7cf5c2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 18px rgba(0,210,122,0.25));
}
.kr-word.is-active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.kr-word.is-exit {
  opacity: 0;
  transform: translateY(-90%) rotateX(30deg);
}
.hero-sub {
  font-size: 13.5px;
  color: var(--ink-dim);
  max-width: 28ch;
  margin: 0 auto;
  line-height: 1.4;
}

/* ── Offer: flagship S1 + side products ── */
.services {
  position: relative; z-index: 1;
  flex: 1 1 auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 10px 10px 18px;
  width: 100%;
}
.offer {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}
.s1-unit {
  --mx: 70%;
  --my: 20%;
  display: block;
  cursor: pointer;
  position: relative;
  width: 100%;
  max-width: 440px;
  margin: 0 auto 22px;
  padding: 20px 16px 16px;
  border-radius: 24px;
  border: 1px solid rgba(0,210,122,0.4);
  background:
    radial-gradient(80% 70% at 100% 0%, rgba(0,210,122,0.18), transparent 55%),
    #0c1410;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.08) inset,
    0 22px 50px -20px rgba(0,210,122,0.42);
  overflow: hidden;
}
.s1-shine {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(420px circle at var(--mx) var(--my), rgba(61,255,176,0.12), transparent 46%);
  mix-blend-mode: screen;
  z-index: 0;
  overflow: hidden;
  border-radius: inherit;
}
.s1-shine::after {
  content: "";
  position: absolute;
  top: -20%;
  left: 0;
  width: 42%;
  height: 140%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255,255,255,0.04) 34%,
    rgba(255,255,255,0.22) 48%,
    rgba(61,255,176,0.1) 56%,
    transparent 72%
  );
  transform: translateX(-160%) skewX(-14deg);
  opacity: 0;
}
body.hub.is-live .s1-shine::after {
  animation: bubbleSheen 9s ease-in-out infinite;
}
body.hub.is-live .bubble-social .bubble-sheen::before { animation-delay: 2.2s; }
body.hub.is-live .bubble-boost .bubble-sheen::before { animation-delay: 4.4s; }
body.hub.is-live .bubble-build .bubble-sheen::before { animation-delay: 6.6s; }
.s1-unit > *:not(.s1-shine) { position: relative; z-index: 1; }

.s1-kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9ff3c8;
  margin: 0 0 8px;
}
.s1-kicker i {
  width: 6px; height: 6px; border-radius: 50%;
  background: #00d27a;
  box-shadow: 0 0 0 4px rgba(0,210,122,0.18);
}
.s1-unit h2 {
  font-size: clamp(24px, 6.4vw, 34px);
  font-weight: 650;
  letter-spacing: -0.04em;
  margin: 0 0 6px;
}
.s1-lead {
  font-size: 13px;
  color: rgba(244,247,245,0.58);
  margin: 0 0 14px;
}
.s1-skus {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}
.s1-sku {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) minmax(148px, 50%);
  align-items: center;
  gap: 8px 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(0,0,0,0.28);
  border: 1px solid rgba(255,255,255,0.07);
  color: inherit;
}
.s1-cmp {
  display: grid;
  gap: 4px;
  min-width: 0;
}
.s1-cmp-row {
  display: grid;
  grid-template-columns: 14px 1fr 52px;
  align-items: center;
  gap: 5px;
}
.s1-cmp-row em {
  font-style: normal;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(244,247,245,0.38);
  display: grid;
  place-items: center;
}
.s1-flag { width: 12px; height: 12px; }
.s1-flag svg { display: block; width: 12px; height: 12px; border-radius: 2px; }
.s1-mark { width: 12px; height: 12px; }
.s1-mark img { display: block; width: 12px; height: 12px; object-fit: contain; }
.s1-cmp-row:last-child em { color: #7cf5c2; }
.s1-cmp-bar {
  display: block;
  height: 6px;
  border-radius: 99px;
  width: 0;
  transform-origin: left center;
}
.s1-cmp-ch {
  background: #ff1a2e;
  box-shadow: 0 0 10px rgba(255,26,46,0.65);
}
.s1-cmp-us {
  background: linear-gradient(90deg, #00d27a, #3dffb0);
  box-shadow: 0 0 10px rgba(0,210,122,0.45);
}
.s1-cmp-row b {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-align: right;
  color: #ff8b96;
  opacity: 0;
  white-space: nowrap;
}
.s1-cmp-row:last-child b { color: #3dffb0; }

body.hub.bubbles-ready .s1-cmp-ch {
  animation: s1BarCh 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
}
body.hub.bubbles-ready .s1-sku:nth-child(2) .s1-cmp-ch {
  animation-delay: 0.28s;
}
body.hub.bubbles-ready .s1-cmp-us {
  animation: s1BarUs 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.55s forwards;
}
body.hub.bubbles-ready .s1-sku:nth-child(2) .s1-cmp-us {
  animation-delay: 0.68s;
}
body.hub.bubbles-ready .s1-cmp-row b {
  animation: s1Num 0.35s ease 0.45s forwards;
}
body.hub.bubbles-ready .s1-sku:nth-child(2) .s1-cmp-row b {
  animation-delay: 0.58s;
}
body.hub.bubbles-ready .s1-cmp-row:last-child b {
  animation-delay: 0.72s;
}
body.hub.bubbles-ready .s1-sku:nth-child(2) .s1-cmp-row:last-child b {
  animation-delay: 0.85s;
}
@keyframes s1BarCh { to { width: 100%; } }
@keyframes s1BarUs { to { width: var(--w, 30%); } }
@keyframes s1Num { to { opacity: 1; } }
.s1-sku-ic {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #fff;
}
.s1-sku-sp { background: #1DB954; }
.s1-sku-yt { background: #ff0033; }
.s1-sku-copy { min-width: 0; }
.s1-sku-copy strong {
  display: block;
  font-size: 14px;
  font-weight: 650;
  letter-spacing: -0.02em;
}
.s1-sku-copy em {
  font-style: normal;
  font-size: 11px;
  color: rgba(244,247,245,0.45);
}

.s1-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  background: #1DB954;
  color: #062416;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s;
  box-shadow: 0 12px 28px -12px rgba(29,185,84,0.8);
}

.side-kicker {
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244,247,245,0.5);
  text-align: center;
  margin: 4px 0 10px;
}
.bubbles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  align-items: stretch;
}
.side-bubbles .bubble {
  min-height: 148px;
  padding: 12px 8px 10px;
}
.side-bubbles .bubble h2 { font-size: 13px; }
.side-bubbles .bubble-price strong { font-size: 14px; }
.side-bubbles .bubble-go { font-size: 11px; padding: 7px 10px; }
.side-bubbles .bubble-cta { max-width: 12ch; }
.side-bubbles .bubble-cta strong { font-size: 10px; }

.bubble {
  --bubble-r: 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  min-height: 168px;
  padding: 14px 8px 12px;
  border-radius: var(--bubble-r);
  background:
    linear-gradient(165deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.03) 100%);
  border: 1px solid var(--card-border);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.08) inset,
    0 16px 40px -20px rgba(0,0,0,0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden; /* clips ring/sheen to rounded corners (shadows stay on this box) */
  isolation: isolate;
  transform: translateZ(0);
  transition:
    border-color 0.25s,
    box-shadow 0.3s;
  -webkit-touch-callout: none;
}
.bubble::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  background: radial-gradient(120% 80% at 50% 0%, rgba(255,255,255,0.12), transparent 55%);
  pointer-events: none;
  opacity: 0.9;
  z-index: 0;
}
.bubble:active {
  transform: translateZ(0) scale(0.96);
}

/* Clipped fx layer — ring + sheen stay inside rounded corners */
.bubble-fx {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  /* Clip child layers hard to the rounded rect */
  clip-path: inset(0 round var(--bubble-r, 22px));
}

/* colored identity glow per bubble */
.bubble-subs {
  border-color: rgba(0,210,122,0.35);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.1) inset,
    0 0 0 1px rgba(0,210,122,0.08),
    0 18px 40px -18px rgba(0,210,122,0.4);
}
.bubble-ig {
  border-color: rgba(225,48,108,0.32);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.1) inset,
    0 0 0 1px rgba(225,48,108,0.08),
    0 18px 40px -18px rgba(225,48,108,0.35);
}
.bubble-tiktok {
  border-color: rgba(37,244,238,0.28);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.1) inset,
    0 0 0 1px rgba(254,44,85,0.08),
    0 18px 40px -18px rgba(37,244,238,0.28);
}
.bubble-social {
  border-color: rgba(255,255,255,0.16);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.1) inset,
    0 0 0 1px rgba(255,255,255,0.05),
    0 18px 40px -18px rgba(42,171,238,0.22);
}
.bubble-boost {
  border-color: rgba(79,140,255,0.36);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.1) inset,
    0 0 0 1px rgba(79,140,255,0.1),
    0 18px 40px -18px rgba(79,140,255,0.34);
}
.bubble-build {
  border-color: rgba(199,125,255,0.38);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.1) inset,
    0 0 0 1px rgba(199,125,255,0.12),
    0 18px 40px -18px rgba(199,125,255,0.38);
}
/* Breath only after entrance settled — never fights entrance */
body.hub.bubbles-ready .bubble-subs,
body.hub.bubbles-ready .bubble-ig,
body.hub.bubbles-ready .bubble-tiktok,
body.hub.bubbles-ready .bubble-social,
body.hub.bubbles-ready .bubble-boost,
body.hub.bubbles-ready .bubble-build {
  animation: none;
}
@keyframes bubbleBreathSubs {
  0%, 100% {
    box-shadow:
      0 1px 0 rgba(255,255,255,0.1) inset,
      0 0 0 1px rgba(0,210,122,0.1),
      0 16px 36px -18px rgba(0,210,122,0.32),
      0 0 22px -10px rgba(0,210,122,0.18);
    border-color: rgba(0,210,122,0.32);
  }
  50% {
    box-shadow:
      0 1px 0 rgba(255,255,255,0.14) inset,
      0 0 0 1px rgba(0,210,122,0.28),
      0 22px 48px -14px rgba(0,210,122,0.55),
      0 0 40px -6px rgba(61,255,176,0.38);
    border-color: rgba(0,210,122,0.55);
  }
}
@keyframes bubbleBreathIg {
  0%, 100% {
    box-shadow:
      0 1px 0 rgba(255,255,255,0.1) inset,
      0 0 0 1px rgba(225,48,108,0.1),
      0 16px 36px -18px rgba(225,48,108,0.28),
      0 0 22px -10px rgba(131,58,180,0.16);
    border-color: rgba(225,48,108,0.28);
  }
  50% {
    box-shadow:
      0 1px 0 rgba(255,255,255,0.14) inset,
      0 0 0 1px rgba(225,48,108,0.3),
      0 22px 48px -14px rgba(225,48,108,0.5),
      0 0 40px -6px rgba(131,58,180,0.36);
    border-color: rgba(240,148,51,0.48);
  }
}
@keyframes bubbleBreathTt {
  0%, 100% {
    box-shadow:
      0 1px 0 rgba(255,255,255,0.1) inset,
      0 0 0 1px rgba(37,244,238,0.1),
      0 16px 36px -18px rgba(37,244,238,0.22),
      0 0 22px -10px rgba(254,44,85,0.14);
    border-color: rgba(37,244,238,0.26);
  }
  50% {
    box-shadow:
      0 1px 0 rgba(255,255,255,0.14) inset,
      0 0 0 1px rgba(254,44,85,0.28),
      0 22px 48px -14px rgba(37,244,238,0.42),
      0 0 40px -6px rgba(254,44,85,0.34);
    border-color: rgba(254,44,85,0.42);
  }
}
@keyframes bubbleBreathBuild {
  0%, 100% {
    box-shadow:
      0 1px 0 rgba(255,255,255,0.1) inset,
      0 0 0 1px rgba(244,241,234,0.08),
      0 16px 36px -18px rgba(244,241,234,0.16),
      0 0 22px -10px rgba(244,241,234,0.1);
    border-color: rgba(244,241,234,0.26);
  }
  50% {
    box-shadow:
      0 1px 0 rgba(255,255,255,0.14) inset,
      0 0 0 1px rgba(244,241,234,0.22),
      0 22px 48px -14px rgba(244,241,234,0.28),
      0 0 36px -6px rgba(244,241,234,0.2);
    border-color: rgba(244,241,234,0.42);
  }
}
@keyframes bubbleBreathBoost {
  0%, 100% {
    box-shadow:
      0 1px 0 rgba(255,255,255,0.1) inset,
      0 0 0 1px rgba(79,140,255,0.12),
      0 16px 36px -18px rgba(79,140,255,0.28),
      0 0 22px -10px rgba(79,140,255,0.16);
    border-color: rgba(79,140,255,0.32);
  }
  50% {
    box-shadow:
      0 1px 0 rgba(255,255,255,0.14) inset,
      0 0 0 1px rgba(79,140,255,0.3),
      0 22px 48px -14px rgba(79,140,255,0.5),
      0 0 40px -6px rgba(96,165,250,0.34);
    border-color: rgba(96,165,250,0.5);
  }
}
@keyframes bubbleBreathSocial {
  0%, 100% {
    box-shadow:
      0 1px 0 rgba(255,255,255,0.1) inset,
      0 0 0 1px rgba(225,48,108,0.1),
      0 16px 36px -18px rgba(225,48,108,0.22),
      0 0 22px -10px rgba(225,48,108,0.16);
    border-color: rgba(225,48,108,0.28);
  }
  33% {
    box-shadow:
      0 1px 0 rgba(255,255,255,0.12) inset,
      0 0 0 1px rgba(37,244,238,0.12),
      0 18px 40px -16px rgba(37,244,238,0.22),
      0 0 26px -8px rgba(255,0,51,0.16);
    border-color: rgba(37,244,238,0.28);
  }
  66% {
    box-shadow:
      0 1px 0 rgba(255,255,255,0.12) inset,
      0 0 0 1px rgba(42,171,238,0.14),
      0 20px 44px -16px rgba(42,171,238,0.24),
      0 0 28px -8px rgba(42,171,238,0.18);
    border-color: rgba(42,171,238,0.3);
  }
}
.bubble-subs .bubble-icon,
.bubble-icon-spotify {
  background: #1DB954;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 8px 24px -8px rgba(29,185,84,0.65);
}
.bubble-icon-spotify svg {
  width: 22px;
  height: 22px;
  display: block;
}
.bubble-ig .bubble-icon {
  background: linear-gradient(135deg, #f09433, #e1306c 50%, #833ab4);
  color: #fff;
  box-shadow: 0 8px 24px -8px rgba(225,48,108,0.55);
}
.bubble-tiktok .bubble-icon,
.bubble-icon-tiktok {
  background: #000;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 8px 24px -8px rgba(0,0,0,0.55);
  overflow: visible;
}
.bubble-social .bubble-icon,
.bubble-icon-social {
  width: auto;
  height: 28px;
  padding: 3px 4px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 8px 24px -12px rgba(0,0,0,0.55);
}
.bubble-boost .bubble-icon,
.bubble-icon-boost {
  background: linear-gradient(135deg, #4f8cff, #2563eb);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 8px 24px -8px rgba(79,140,255,0.6);
}
.bubble-icon-boost svg {
  width: 18px;
  height: 18px;
  display: block;
}
.bubble-build .bubble-icon,
.bubble-icon-build {
  background: linear-gradient(135deg, #c77dff, #833ab4);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 8px 24px -8px rgba(199,125,255,0.6);
}
.bubble-icon-build svg {
  width: 18px;
  height: 18px;
  display: block;
}
.sm-logos {
  display: flex;
  align-items: center;
  gap: 3px;
}
.sm-logo {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #fff;
}
.sm-logo svg {
  width: 10px;
  height: 10px;
  display: block;
}
.sm-logo.sm-ig { background: linear-gradient(135deg, #f09433, #e1306c 52%, #833ab4); }
.sm-logo.sm-tt { background: #000; border: 1px solid rgba(255,255,255,0.14); color: #25f4ee; }
.sm-logo.sm-yt { background: #ff0033; }
.sm-logo.sm-tg { background: #2aabee; }
/* Classic TikTok logo: cyan / magenta offset + white note */
.tt-mark {
  position: relative;
  width: 22px;
  height: 22px;
  display: block;
  flex-shrink: 0;
}
.tt-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.tt-cyan {
  color: #25F4EE;
  transform: translate(-1.4px, -0.9px);
  z-index: 0;
}
.tt-mag {
  color: #FE2C55;
  transform: translate(1.4px, 0.9px);
  z-index: 1;
}
.tt-white {
  color: #fff;
  z-index: 2;
}

/* Circular ring layer — no rectangular corners while spinning */
.bubble-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 240%;
  height: 240%;
  border-radius: 50%;
  background: conic-gradient(
    from var(--ring-a, 0deg),
    transparent 0%,
    rgba(255,255,255,0.18) 8%,
    transparent 18%,
    transparent 100%
  );
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
  animation: ringSpin 4.5s linear infinite;
  transition: opacity 0.3s;
  pointer-events: none;
  will-change: transform;
}
/* Dual-hotspot rotating ring — brighter + more interest */
.bubble-subs .bubble-ring {
  background: conic-gradient(
    from var(--ring-a, 0deg),
    transparent 0%,
    rgba(0,210,122,0.62) 7%,
    transparent 16%,
    transparent 48%,
    rgba(61,255,176,0.38) 54%,
    transparent 64%,
    transparent 100%
  );
}
.bubble-ig .bubble-ring {
  background: conic-gradient(
    from var(--ring-a, 0deg),
    transparent 0%,
    rgba(240,148,51,0.5) 5%,
    rgba(225,48,108,0.58) 10%,
    transparent 18%,
    transparent 48%,
    rgba(131,58,180,0.4) 55%,
    transparent 64%,
    transparent 100%
  );
}
.bubble-tiktok .bubble-ring {
  background: conic-gradient(
    from var(--ring-a, 0deg),
    transparent 0%,
    rgba(37,244,238,0.58) 7%,
    transparent 15%,
    transparent 48%,
    rgba(254,44,85,0.52) 55%,
    transparent 64%,
    transparent 100%
  );
}
.bubble-social .bubble-ring {
  background: conic-gradient(
    from var(--ring-a, 0deg),
    transparent 0%,
    rgba(225,48,108,0.55) 6%,
    transparent 14%,
    transparent 28%,
    rgba(37,244,238,0.45) 34%,
    transparent 42%,
    transparent 56%,
    rgba(255,0,51,0.48) 62%,
    transparent 70%,
    transparent 84%,
    rgba(42,171,238,0.5) 90%,
    transparent 98%
  );
}
.bubble-boost .bubble-ring {
  background: conic-gradient(
    from var(--ring-a, 0deg),
    transparent 0%,
    rgba(79,140,255,0.7) 7%,
    transparent 16%,
    transparent 48%,
    rgba(96,165,250,0.5) 55%,
    transparent 64%,
    transparent 100%
  );
}
.bubble-build .bubble-ring {
  background: conic-gradient(
    from var(--ring-a, 0deg),
    transparent 0%,
    rgba(199,125,255,0.75) 7%,
    transparent 16%,
    transparent 48%,
    rgba(233,179,255,0.5) 55%,
    transparent 64%,
    transparent 100%
  );
}
body.hub.is-live .bubble .bubble-ring { opacity: 0; }
.bubble-ring { animation: none !important; opacity: 0 !important; }

@keyframes ringSpin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Diagonal light sweep — second brightness layer (staggered) */
.bubble-sheen {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  overflow: hidden;
  pointer-events: none;
}
.bubble-sheen::before {
  content: "";
  position: absolute;
  top: -20%;
  left: 0;
  width: 46%;
  height: 140%;
  border-radius: 40%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255,255,255,0.02) 32%,
    rgba(255,255,255,0.28) 48%,
    rgba(255,255,255,0.06) 58%,
    transparent 72%
  );
  transform: translateX(-160%) skewX(-12deg);
  opacity: 0;
}
body.hub.is-live .bubble-sheen::before {
  animation: bubbleSheen 9s ease-in-out infinite;
}
body.hub.is-live .bubble-ig .bubble-sheen::before {
  animation-delay: 1.9s;
}
body.hub.is-live .bubble-tiktok .bubble-sheen::before {
  animation-delay: 3.8s;
}
.bubble-subs .bubble-sheen::before {
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(0,210,122,0.04) 30%,
    rgba(255,255,255,0.32) 48%,
    rgba(61,255,176,0.14) 56%,
    transparent 72%
  );
}
.bubble-ig .bubble-sheen::before {
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(240,148,51,0.06) 28%,
    rgba(255,255,255,0.3) 46%,
    rgba(225,48,108,0.16) 56%,
    transparent 72%
  );
}
.bubble-tiktok .bubble-sheen::before {
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(37,244,238,0.08) 28%,
    rgba(255,255,255,0.3) 46%,
    rgba(254,44,85,0.14) 56%,
    transparent 72%
  );
}
@keyframes bubbleSheen {
  0%, 12% {
    transform: translateX(-160%) skewX(-14deg);
    opacity: 0;
  }
  22% { opacity: 0.45; }
  38% {
    transform: translateX(260%) skewX(-14deg);
    opacity: 0;
  }
  100% {
    transform: translateX(260%) skewX(-14deg);
    opacity: 0;
  }
}

/* Soft top highlight pulse (card surface brightness) */
.bubble::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(
    90% 55% at 50% 0%,
    rgba(255,255,255,0.14) 0%,
    transparent 58%
  );
  opacity: 0.45;
  mix-blend-mode: soft-light;
  overflow: hidden;
}
body.hub.is-live .bubble::after {
  animation: none !important;
}
body.hub.is-live .bubble-ig::after { animation-delay: -1.4s; }
body.hub.is-live .bubble-tiktok::after { animation-delay: -2.8s; }
@keyframes bubbleTopFlash {
  0%, 100% { opacity: 0.32; }
  50% { opacity: 0.72; }
}

.bubble-tag {
  position: absolute;
  top: 8px; right: 8px;
  z-index: 2;
  font-size: 8px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 3px 6px; border-radius: 999px;
  background: rgba(0,0,0,0.35);
  color: var(--ink-faint);
  border: 1px solid rgba(255,255,255,0.08);
  display: inline-flex; align-items: center; gap: 4px;
}
.bubble-tag.live {
  color: var(--accent-2);
  border-color: rgba(0,210,122,0.3);
  background: rgba(0,210,122,0.12);
}
.bubble-tag.live i {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--accent);
  animation: none !important;
}

.bubble-icon {
  position: relative; z-index: 1;
  width: 44px; height: 44px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 6px 0 10px;
}

.bubble h2 {
  position: relative; z-index: 1;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 0 0 8px;
  color: #fff;
}
.bubble-price {
  position: relative; z-index: 1;
  font-size: 11px;
  color: var(--ink-faint);
  margin: 0 0 auto;
  padding-bottom: 10px;
}
.bubble-price strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
  margin-top: 1px;
}
.bubble-term {
  display: block;
  margin-top: 3px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink-faint);
}
.bubble-subs .bubble-price strong { color: var(--accent-2); }
.bubble-ig .bubble-price strong {
  background: linear-gradient(115deg, #ff8ab8, #e1306c 50%, #c13584);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.bubble-tiktok .bubble-price strong {
  background: linear-gradient(115deg, #25f4ee, #fe2c55);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.bubble-social .bubble-price strong {
  color: #fff;
  -webkit-text-fill-color: #fff;
}
.bubble-boost .bubble-price strong {
  color: #93c5fd;
}
.bubble-build .bubble-cta {
  max-width: 16ch;
  margin-left: auto;
  margin-right: auto;
}
.bubble-build .bubble-cta strong {
  font-size: 11px;
  font-weight: 650;
  letter-spacing: -0.01em;
  line-height: 1.25;
  color: #e9b3ff;
  -webkit-text-fill-color: #e9b3ff;
}

.bubble-go {
  position: relative; z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #07100c;
  background: #fff;
  padding: 7px 10px;
  border-radius: 999px;
  width: 100%;
  max-width: 100%;
  transition: transform 0.2s, background 0.2s;
}
.bubble-subs .bubble-go {
  background: var(--accent);
  color: #04140c;
  box-shadow: 0 8px 20px -10px rgba(0,210,122,0.8);
}
.bubble-ig .bubble-go {
  background: linear-gradient(135deg, #e1306c, #833ab4);
  color: #fff;
}
.bubble-tiktok .bubble-go {
  background: linear-gradient(135deg, #25f4ee 0%, #000 48%, #fe2c55 100%);
  color: #fff;
}
.bubble-social .bubble-go {
  background: #f4f7f5;
  color: #070a08;
}
.bubble-boost .bubble-go {
  background: linear-gradient(135deg, #4f8cff, #2563eb);
  color: #fff;
  box-shadow: 0 8px 20px -10px rgba(79,140,255,0.8);
}
.bubble-build .bubble-go {
  background: linear-gradient(135deg, #c77dff, #833ab4);
  color: #fff;
  box-shadow: 0 8px 20px -10px rgba(199,125,255,0.8);
}
.bubble:active .bubble-go { transform: scale(0.97); }

/* short phones */
@media (max-height: 700px) {
  .hero { padding-top: 8px; padding-bottom: 4px; }
  .hero h1 { font-size: 26px; margin-bottom: 6px; }
  .hero-badge { margin-bottom: 8px; }
  .hero-sub { display: none; }
  .bubble { min-height: 150px; padding: 10px 6px 10px; border-radius: 18px; --bubble-r: 18px; }
  .bubble-icon { width: 38px; height: 38px; margin: 4px 0 8px; border-radius: 12px; }
  .bubble-social .bubble-icon {
    width: auto;
    height: 26px;
    padding: 3px 4px;
    border-radius: 9px;
  }
  .sm-logo { width: 16px; height: 16px; border-radius: 4px; }
  .sm-logo svg { width: 9px; height: 9px; }
  .bubble h2 { font-size: 12px; }
  .bubble-price strong { font-size: 13px; }
}

@media (max-height: 620px) {
  .hero-badge { display: none; }
  .bubble { min-height: 136px; }
  .bubble-tag { display: none; }
}

/* ── How ── */
.how {
  position: relative; z-index: 1;
  max-width: var(--max);
  margin: 8px auto 28px;
  padding: 0 12px;
}
.how-head {
  text-align: center;
  margin-bottom: 14px;
}
.how-head .eyebrow {
  font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.how-head h2 {
  font-size: 22px; font-weight: 600; letter-spacing: -0.03em;
}
.how-track {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 10px;
  backdrop-filter: blur(10px);
}
.how-step {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
}
.how-n {
  width: 32px; height: 32px; border-radius: 10px;
  background: rgba(0,210,122,0.14);
  color: var(--accent-2);
  font-size: 13px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.how-step h3 { font-size: 14px; font-weight: 600; margin-bottom: 3px; }
.how-step p { font-size: 12px; color: var(--ink-dim); line-height: 1.45; }

.footer {
  position: relative; z-index: 1;
  text-align: center;
  padding: 16px 16px 24px;
  font-size: 11px;
  color: var(--ink-faint);
  line-height: 1.6;
}
.footer a {
  color: var(--ink-dim);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Prototype banner removed for launch */
.proto-banner { display: none !important; }

/* WhatsApp float */
#wa-overlay { display: contents; }
.wa-float {
  display: flex;
  position: fixed;
  right: 12px;
  bottom: calc(16px + var(--safe-b));
  z-index: 9990;
  white-space: nowrap;
  background: #fff;
  color: #111;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 999px;
  padding: 10px 12px 10px 10px;
  font-size: 12px; font-weight: 600;
  align-items: center; gap: 7px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.28);
  max-width: calc(100% - 24px);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float:active { transform: scale(0.97); }
.wa-float .wa-icon { display: flex; line-height: 0; }
.wa-float .wa-icon svg { width: 22px; height: 22px; display: block; }
.wa-label { display: none; }
.wa-label-short { display: inline; font-size: 12px; }
html.sa-sealed .wa-float,
html.sa-sealed #wa-overlay {
  visibility: hidden !important;
  pointer-events: none !important;
  opacity: 0 !important;
}

/* Detail pages (light theme kept for product pages) */
body:not(.hub) {
  font-family: 'Geist', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  background: #f4f5f4;
  color: #0a0a0a;
  line-height: 1.45;
  padding-bottom: calc(var(--banner-h) + 12px + var(--safe-b));
}
body:not(.hub) .nav {
  background: rgba(255,255,255,0.92);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  backdrop-filter: blur(16px);
}
body:not(.hub) .nav-pill {
  color: #6b6b6b;
  border-color: rgba(0,0,0,0.1);
  background: #fff;
}
body:not(.hub) .nav-link {
  display: inline-flex;
  font-size: 13px;
  font-weight: 500;
  color: #5c5c5c;
  padding: 8px 10px;
}
.page-hero {
  padding: calc(var(--nav-h) + var(--safe-t) + 24px) 16px 24px;
  max-width: 720px; margin: 0 auto;
}
.back {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; color: #6b6b6b; margin-bottom: 16px; min-height: 44px;
}
.page-hero h1 {
  font-size: clamp(26px, 7vw, 36px);
  font-weight: 600; letter-spacing: -0.03em;
  line-height: 1.15; margin-bottom: 10px;
}
.page-hero p { font-size: 15px; color: #5c5c5c; line-height: 1.5; }
.product-panel { max-width: 560px; margin: 0 auto 100px; padding: 0 14px; }
.product-box {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 18px;
  padding: 22px 18px;
  box-shadow: 0 12px 40px -20px rgba(0,0,0,0.12);
}
.product-box .eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: #949494; margin-bottom: 8px;
}
.product-box h2 { font-size: 20px; font-weight: 600; margin-bottom: 6px; }
.product-box .desc { font-size: 14px; color: #5c5c5c; margin-bottom: 16px; }
.product-box .price { font-size: 32px; font-weight: 700; letter-spacing: -0.03em; }
.product-box .price-note { font-size: 13px; color: #5c5c5c; margin-bottom: 18px; }
.product-box .features { list-style: none; margin-bottom: 20px; }
.product-box .features li {
  font-size: 14px; color: #5c5c5c;
  padding: 10px 0; border-top: 1px solid rgba(0,0,0,0.08);
  display: flex; gap: 10px;
}
.product-box .features li span { color: #00a85f; font-weight: 700; }
.product-box .btn,
.btn {
  display: flex; width: 100%; justify-content: center; align-items: center;
  padding: 15px; font-size: 15px; font-weight: 600;
  background: #0a0a0a; color: #fff; border-radius: 999px; border: none;
  min-height: 48px; cursor: pointer;
}
.concept-note {
  margin-top: 14px; font-size: 12px; color: #949494; text-align: center;
}

/* ============================================================
   TABLET / DESKTOP — bigger bubbles, same 1-row layout
   ============================================================ */
@media (min-width: 640px) {
  .offer { max-width: 640px; }
  .s1-unit { padding: 22px 20px 18px; max-width: 460px; }
  .s1-skus { gap: 10px; }
  .s1-sku { padding: 12px 14px; }
  .s1-cta { min-height: 48px; }
  .bubbles {
    gap: 14px;
    max-width: none;
  }
  .bubble {
    min-height: 220px;
    padding: 22px 16px 16px;
    border-radius: 28px;
    --bubble-r: 28px;
  }
  .side-bubbles .bubble {
    min-height: 148px;
    padding: 14px 10px 12px;
  }
  .bubble-icon { width: 56px; height: 56px; border-radius: 18px; margin-bottom: 14px; }
  .bubble-social .bubble-icon {
    width: auto;
    height: 48px;
    padding: 7px 8px;
    border-radius: 16px;
  }
  .sm-logo { width: 30px; height: 30px; border-radius: 9px; }
  .sm-logo svg { width: 16px; height: 16px; }
  .bubble h2 { font-size: 18px; margin-bottom: 10px; }
  .bubble-price strong { font-size: 20px; }
  .bubble-go { font-size: 13px; padding: 10px 14px; max-width: 140px; }
  .bubble-build .bubble-cta strong { font-size: 13px; }
  .hero h1 { font-size: clamp(40px, 6vw, 52px); }
  .hero-sub { font-size: 16px; max-width: 36ch; }
  .nav-link {
    display: inline-flex;
    font-size: 13px; font-weight: 500;
    color: var(--ink-dim);
    padding: 8px 11px; border-radius: 8px;
  }
  .nav-link:hover { color: #fff; background: rgba(255,255,255,0.06); }
  .wa-label { display: inline; }
  .wa-label-short { display: none; }
  .wa-float { border-radius: 16px; padding: 10px 15px 10px 11px; font-size: 13px; }
  .how-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}

@media (min-width: 900px) {
  :root { --nav-h: 64px; }
  .landing-fold {
    min-height: auto;
    padding-bottom: 20px;
  }
  .hero { padding: 48px 24px 20px; }
  .services { padding: 12px 24px 40px; }
  .offer { max-width: 980px; }
  .bubbles { max-width: none; gap: 14px; }
  .bubble {
    min-height: 260px;
    padding: 28px 22px 20px;
  }
  body.hub.bubbles-ready .s1-cta:hover {
    box-shadow: 0 16px 36px -12px rgba(29,185,84,0.9);
  }
  body.hub.bubbles-ready .bubble:hover {
    transform: translate3d(0, -8px, 0) scale(1.02);
    border-color: rgba(255,255,255,0.2);
  }
  .bubble-subs:hover {
    box-shadow:
      0 1px 0 rgba(255,255,255,0.12) inset,
      0 0 0 1px rgba(0,210,122,0.15),
      0 28px 60px -18px rgba(0,210,122,0.45);
  }
  .bubble-social:hover {
    box-shadow:
      0 1px 0 rgba(255,255,255,0.12) inset,
      0 0 0 1px rgba(255,255,255,0.16),
      0 28px 60px -18px rgba(42,171,238,0.28);
  }
  .bubble-boost:hover {
    box-shadow:
      0 1px 0 rgba(255,255,255,0.12) inset,
      0 0 0 1px rgba(79,140,255,0.22),
      0 28px 60px -18px rgba(79,140,255,0.45);
  }
  .bubble-build:hover {
    box-shadow:
      0 1px 0 rgba(255,255,255,0.12) inset,
      0 0 0 1px rgba(199,125,255,0.28),
      0 28px 60px -18px rgba(199,125,255,0.45);
  }
  .bubble:hover .bubble-ring { opacity: 0.85; }
  .bubble:hover .bubble-icon { animation-play-state: paused; transform: scale(1.08); }
  .nav { padding: 0 28px; height: var(--nav-h); }
  .nav-logo img.word { height: 20px; }
}

/* Phone: freeze ambient motion so the frame does not drift */
@media (hover: none) and (pointer: coarse) {
  :root { --ease-spring: cubic-bezier(0.22, 1, 0.36, 1); }
  html, body.hub {
    overscroll-behavior: none;
    overscroll-behavior-x: none;
    overscroll-behavior-y: none;
    touch-action: pan-y;
  }
  .stage-glow,
  .stage-glow-a,
  .stage-glow-b,
  .stage-glow-c,
  .hero-badge i,
  .stage-particles span {
    animation: none !important;
  }
  .stage-particles { display: none !important; }
  .s1-unit { transform: none !important; }
  .landing-fold {
    min-height: calc(100svh - var(--banner-h) - var(--safe-b)) !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .anim-pop, .anim-bubble, .anim-up {
    opacity: 1 !important; transform: none !important; transition: none !important; filter: none !important;
  }
  body.hub.bubbles-in .bubbles::before,
  body.hub.bubbles-ready .bubble-subs,
  body.hub.bubbles-ready .bubble-ig,
  body.hub.bubbles-ready .bubble-tiktok,
  body.hub.bubbles-ready .bubble-social,
  body.hub.bubbles-ready .bubble-boost,
  body.hub.bubbles-ready .bubble-build,
  body.hub.bubbles-ready .s1-unit {
    animation: none !important;
  }
  .s1-unit { transform: none !important; }
  .bubble-icon, .bubble-ring, .bubble-sheen::before, .bubble::after,
  .stage-glow, .hero-badge i, .bubble-tag.live i,
  .stage-particles span, .cin-beam, .cin-scan, .cin-noise, .cin-sym,
  .cin-progress i, .cin-rule i {
    animation: none !important;
  }
  .landing-intro { display: none !important; }
  .kr-word { transition: none; }
  .cin-word, .cin-letter { opacity: 1; transform: none; filter: none; }
}
