/* =========================================================
   PAGÉ BRÁS · Design System v2 · NEO TECH
   Combinação: Westfield (energia varejo/brand red) + Omi (tech/glow/cyan)
   ========================================================= */

/* ---------- TOKENS ---------- */
:root {
  /* Brand — mantido de v1 (Pagé é vermelho) */
  --brand-100: #de2426;
  --brand-200: #bc1424;
  --brand-300: #9b0423;
  --brand-glow: rgba(222,36,38,.55);

  /* Tech accent — novo (Omi) */
  --cyan-100: #33D2FF;
  --cyan-200: #22D3EE;
  --cyan-300: #0EA5E9;
  --cyan-glow: rgba(51,210,255,.5);
  --blue-100: #4A8CFF;

  /* Semantic */
  --success: #22c55e;
  --warning: #f2b754;
  --danger: #ec003b;

  /* Neutrals — do Omi, mais suaves que preto puro */
  --bg-base:    #030304;
  --bg-alt:     #08080A;
  --bg-elev:    #0d0d10;
  --surface-1:  rgba(20,20,24,.4);
  --surface-2:  rgba(30,30,35,.6);
  --surface-solid: #111116;

  --border-dim:   rgba(255,255,255,.04);
  --border-light: rgba(255,255,255,.08);
  --border-focus: rgba(51,210,255,.4);

  --text-main:  #F4F4F6;
  --text-dim:   #888894;
  --text-muted: #555562;

  /* Overlays escuros (mantido de v1) */
  --dark-80: rgba(0,0,0,.8);
  --dark-60: rgba(0,0,0,.6);
  --dark-40: rgba(0,0,0,.4);
  --light-80: hsla(0,0%,100%,.8);
  --light-60: hsla(0,0%,100%,.6);
  --light-30: hsla(0,0%,100%,.3);
  --light-10: hsla(0,0%,100%,.1);

  /* Typography */
  --font-display: 'Outfit', 'Inter', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', 'SF Mono', Menlo, monospace;

  /* Type scale — refinado (menos condensado que Anton) */
  --fs-hero:    clamp(3rem, 8vw, 6.5rem);
  --fs-h1:      clamp(2.5rem, 6vw, 4rem);
  --fs-h2:      clamp(2rem, 4.5vw, 3rem);
  --fs-h3:      2rem;
  --fs-h4:      1.5rem;
  --fs-h5:      1.25rem;
  --fs-h6:      1rem;
  --fs-body-lg: 1.125rem;
  --fs-body:    1rem;
  --fs-body-sm: .875rem;
  --fs-caption: .75rem;

  /* Radius */
  --r-xs: 4px;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 9999px;

  /* Shadows / Glow */
  --shadow-sm: 0 2px 8px rgba(0,0,0,.3);
  --shadow-md: 0 8px 24px rgba(0,0,0,.4);
  --shadow-lg: 0 20px 50px rgba(0,0,0,.5);
  --shadow-xl: 0 30px 80px rgba(0,0,0,.6);
  --glow-cyan: 0 0 20px rgba(51,210,255,.3), 0 0 40px rgba(51,210,255,.15);
  --glow-red:  0 0 20px rgba(222,36,38,.35), 0 0 40px rgba(222,36,38,.15);
  --glow-white:0 0 20px rgba(255,255,255,.15);
  --inset-hi:  inset 0 1px 0 rgba(255,255,255,.06);

  /* Motion */
  --ease-smooth: cubic-bezier(.16, 1, .3, 1);
  --ease-bounce: cubic-bezier(.34, 1.56, .64, 1);
  --ease-in-out: cubic-bezier(.4, 0, .2, 1);
  --t-fast: .3s;
  --t-med:  .5s;
  --t-slow: .8s;

  /* Layout */
  --container-w: 1280px;
  --pad-x: clamp(1.25rem, 4vw, 2.5rem);
  --sec-pad: clamp(4rem, 10vw, 10rem);
  --header-h: 72px;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-base);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}
@media (hover: none) { body { cursor: auto; } }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
::selection { background: rgba(51,210,255,.35); color: #fff; }

/* ---------- AMBIENT LAYERS (Omi pattern) ---------- */
.ambient-glow {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 0%,  rgba(74,140,255,.05) 0%, transparent 40%),
    radial-gradient(circle at 90% 60%, rgba(51,210,255,.04) 0%, transparent 40%),
    radial-gradient(circle at 50% 100%,rgba(222,36,38,.05) 0%, transparent 50%);
}
.grid-layer {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none; opacity: .15;
  background-image:
    linear-gradient(var(--border-dim) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-dim) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 80%);
}
.noise-layer {
  position: fixed; inset: 0; z-index: 1;
  pointer-events: none; opacity: .035;
  background-image: url("data:image/svg+xml;utf8,%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");
}

/* ---------- CUSTOM CURSOR (v1) ---------- */
.cursor-blob {
  position: fixed; top: 0; left: 0; z-index: 1;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(51,210,255,.28) 0%, transparent 60%);
  pointer-events: none;
  transform: translate(-50%,-50%);
  filter: blur(24px);
  mix-blend-mode: screen;
}
.cursor-dot {
  position: fixed; top: 0; left: 0; z-index: 9999;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #fff;
  pointer-events: none;
  transform: translate(-50%,-50%);
  transition: transform .2s ease-out, background .2s;
  mix-blend-mode: difference;
}
.cursor-dot.hovering { transform: translate(-50%,-50%) scale(3); background: var(--cyan-100); }
@media (hover: none) { .cursor-blob, .cursor-dot { display: none; } }

/* ---------- CONTAINER ---------- */
.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  position: relative;
  z-index: 10;
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5, h6, .display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text-main);
}
h1 { font-size: var(--fs-h1); letter-spacing: -0.04em; }
h2 { font-size: var(--fs-h2); letter-spacing: -0.03em; }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); font-weight: 500; }
h5 { font-size: var(--fs-h5); font-weight: 500; }
h6 { font-size: var(--fs-h6); font-weight: 500; text-transform: uppercase; letter-spacing: .08em; }

.t-hero      { font-family: var(--font-display); font-weight: 300; font-size: var(--fs-hero); line-height: 1; letter-spacing: -0.05em; }
.t-h1        { font-family: var(--font-display); font-weight: 400; font-size: var(--fs-h1); line-height: 1.05; letter-spacing: -0.04em; }
.t-h2        { font-family: var(--font-display); font-weight: 400; font-size: var(--fs-h2); line-height: 1.05; letter-spacing: -0.03em; }
.t-h3        { font-family: var(--font-display); font-weight: 400; font-size: var(--fs-h3); line-height: 1.1; letter-spacing: -0.02em; }
.t-h4        { font-family: var(--font-display); font-weight: 500; font-size: var(--fs-h4); line-height: 1.15; }
.t-h5        { font-family: var(--font-body);    font-weight: 600; font-size: var(--fs-h5); line-height: 1.3; }
.t-h6        { font-family: var(--font-body);    font-weight: 600; font-size: var(--fs-h6); text-transform: uppercase; letter-spacing: .08em; }
.t-body-lg   { font-family: var(--font-body); font-weight: 400; font-size: var(--fs-body-lg); line-height: 1.65; }
.t-body      { font-family: var(--font-body); font-weight: 400; font-size: var(--fs-body); line-height: 1.6; }
.t-body-sm   { font-family: var(--font-body); font-weight: 400; font-size: var(--fs-body-sm); line-height: 1.6; color: var(--text-dim); }
.t-caption   { font-family: var(--font-body); font-weight: 500; font-size: var(--fs-caption); line-height: 1.4; color: var(--text-dim); }
.t-label     { font-family: var(--font-body); font-weight: 600; font-size: .75rem; text-transform: uppercase; letter-spacing: .12em; }
.t-mono      { font-family: var(--font-mono); font-size: .8rem; letter-spacing: .02em; }

/* Gradient text utility */
.gradient-text {
  background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,.6) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.brand-text { color: var(--brand-100); }
.cyan-text  { color: var(--cyan-100); }

/* ---------- TAGLINE (Omi pattern) ---------- */
.tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--cyan-100);
  margin-bottom: 20px;
}
.tagline::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--cyan-100);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--cyan-100);
  animation: pulseDot 2s infinite;
}
.tagline.brand { color: var(--brand-100); }
.tagline.brand::before { background: var(--brand-100); box-shadow: 0 0 12px var(--brand-100); }

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.3); }
}

/* ---------- BUTTONS ---------- */
.btn {
  --btn-bg: transparent;
  --btn-fg: var(--text-main);
  --btn-bd: var(--border-light);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .5px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-bd);
  cursor: none;
  overflow: hidden;
  isolation: isolate;
  transition: transform var(--t-fast) var(--ease-smooth),
              background var(--t-fast) var(--ease-smooth),
              border-color var(--t-fast) var(--ease-smooth),
              box-shadow var(--t-fast) var(--ease-smooth);
  text-decoration: none;
}
.btn::before {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), var(--cyan-100), transparent 65%);
  opacity: 0;
  transition: opacity var(--t-med) var(--ease-smooth);
}
.btn:hover { transform: translateY(-2px); }
.btn:hover::before { opacity: .35; }
.btn:active { transform: translateY(0); }
.btn .arrow { transition: transform var(--t-med) var(--ease-smooth); display: inline-flex; }
.btn:hover .arrow { transform: translateX(3px); }

.btn--primary {
  --btn-bg: var(--text-main);
  --btn-fg: var(--bg-base);
  --btn-bd: transparent;
  box-shadow: 0 0 20px rgba(255,255,255,.08);
}
.btn--primary:hover { --btn-bg: #fff; box-shadow: 0 10px 30px rgba(255,255,255,.15); }
.btn--primary::before { display: none; }

.btn--secondary {
  --btn-bg: rgba(255,255,255,.03);
  --btn-fg: var(--text-main);
  --btn-bd: var(--border-light);
  backdrop-filter: blur(10px);
}
.btn--secondary:hover { --btn-bg: rgba(255,255,255,.08); --btn-bd: rgba(255,255,255,.2); }

.btn--cyan {
  --btn-bg: rgba(51,210,255,.1);
  --btn-fg: var(--cyan-100);
  --btn-bd: rgba(51,210,255,.4);
}
.btn--cyan:hover { --btn-bd: var(--cyan-100); box-shadow: var(--glow-cyan); }

.btn--red {
  --btn-bg: var(--brand-100);
  --btn-fg: #fff;
  --btn-bd: transparent;
}
.btn--red:hover { --btn-bg: var(--brand-300); box-shadow: var(--glow-red); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--text-main);
  --btn-bd: var(--border-light);
}
.btn--ghost:hover { --btn-bd: var(--text-main); background: var(--light-10); }

.btn--icon {
  width: 44px; height: 44px;
  padding: 0;
  border-radius: 50%;
}

/* Signal button — Omi pattern with conic gradient */
.btn-signal {
  position: relative;
  display: inline-flex;
  align-items: center; justify-content: center;
  padding: 20px 40px;
  background: var(--surface-solid);
  border: 1px solid var(--border-light);
  border-radius: var(--r-pill);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  cursor: none;
  overflow: hidden;
  z-index: 1;
  isolation: isolate;
  transition: all var(--t-med) var(--ease-smooth);
  box-shadow: 0 10px 30px rgba(0,0,0,.5);
}
.btn-signal::before {
  content: '';
  position: absolute; inset: -50%;
  z-index: -1; opacity: 0;
  background: conic-gradient(from 0deg, transparent 0deg, var(--cyan-100) 90deg, transparent 180deg);
  animation: signalSpin 3s linear infinite;
  transition: opacity .4s;
}
.btn-signal::after {
  content: '';
  position: absolute; inset: 1px;
  background: var(--surface-solid);
  border-radius: var(--r-pill);
  z-index: -1;
}
.btn-signal:hover { border-color: var(--cyan-100); transform: scale(1.03); box-shadow: 0 0 40px rgba(51,210,255,.2); }
.btn-signal:hover::before { opacity: 1; }
@keyframes signalSpin { to { transform: rotate(360deg); } }

/* ---------- NAV ---------- */
nav.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 100;
  display: flex; align-items: center;
  padding: 0 var(--pad-x);
  background: rgba(3,3,4,.72);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border-bottom: 1px solid var(--border-light);
  animation: slideDown .8s var(--ease-smooth) both;
}
@keyframes slideDown { from { transform: translateY(-100%); } to { transform: translateY(0); } }
nav.nav .logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  color: var(--text-main);
}
nav.nav .logo-mark {
  width: 24px; height: 24px;
  position: relative;
}
nav.nav .logo-mark::before,
nav.nav .logo-mark::after {
  content: ''; position: absolute; inset: 0;
  border: 1.5px solid var(--text-main);
  border-radius: 4px;
  transition: all .5s var(--ease-smooth);
}
nav.nav .logo-mark::before {
  transform: rotate(15deg);
  border-color: var(--cyan-100);
  opacity: .6;
}
nav.nav .logo-mark::after {
  inset: 4px;
  background: var(--brand-100);
  border-color: transparent;
}
nav.nav:hover .logo-mark::before { transform: rotate(45deg); opacity: 1; }
nav.nav .links { margin-left: auto; display: flex; gap: 2px; }
nav.nav .links a {
  position: relative;
  padding: 8px 14px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-dim);
  transition: color var(--t-fast);
}
nav.nav .links a::after {
  content: '';
  position: absolute;
  left: 14px; right: 14px; bottom: 2px;
  height: 1.5px;
  background: var(--cyan-100);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-med) var(--ease-smooth);
  box-shadow: 0 0 10px var(--cyan-glow);
}
nav.nav .links a:hover { color: var(--text-main); }
nav.nav .links a:hover::after { transform: scaleX(1); }
nav.nav .cta { margin-left: 20px; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: calc(var(--header-h) + 4rem) var(--pad-x) 6rem;
  overflow: hidden;
  isolation: isolate;
}
.hero .aurora {
  position: absolute; inset: -20%; z-index: -2;
  background:
    radial-gradient(ellipse 60% 50% at 20% 30%, rgba(51,210,255,.28), transparent 60%),
    radial-gradient(ellipse 55% 45% at 80% 20%, rgba(74,140,255,.22), transparent 60%),
    radial-gradient(ellipse 50% 50% at 60% 80%, rgba(222,36,38,.25), transparent 60%),
    radial-gradient(ellipse 45% 40% at 20% 90%, rgba(51,210,255,.18), transparent 60%);
  filter: blur(80px);
  animation: auroraShift 24s ease-in-out infinite alternate;
}
@keyframes auroraShift {
  0%   { transform: translate(0,0) scale(1); }
  50%  { transform: translate(-3%,4%) scale(1.08); }
  100% { transform: translate(4%,-2%) scale(1.02); }
}

.hero-inner {
  max-width: var(--container-w);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
}
@media (max-width: 900px) { .hero-inner { grid-template-columns: 1fr; gap: 3rem; } }

.hero h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: var(--fs-hero);
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 24px;
}
.hero h1 .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
.hero h1 .word > span {
  display: inline-block;
  transform: translateY(110%);
  animation: wordUp 1s var(--ease-smooth) forwards;
}
.hero h1 .word:nth-child(1) > span { animation-delay: .15s; }
.hero h1 .word:nth-child(2) > span { animation-delay: .3s; }
.hero h1 .word:nth-child(3) > span { animation-delay: .45s; }
.hero h1 .word:nth-child(4) > span { animation-delay: .6s; }
.hero h1 .accent {
  color: var(--brand-100);
  position: relative;
}
.hero h1 .accent::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 4%;
  height: 12px;
  background: linear-gradient(90deg, var(--brand-100), var(--cyan-100));
  filter: blur(14px);
  opacity: .7;
  transform-origin: left;
  animation: underlineGrow 1.2s .9s var(--ease-smooth) both;
}
@keyframes wordUp { to { transform: translateY(0); } }
@keyframes underlineGrow { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.hero .lede {
  font-size: 1.25rem;
  color: var(--text-dim);
  max-width: 46ch;
  margin-bottom: 40px;
  line-height: 1.65;
  animation: fadeUp 1s .9s var(--ease-smooth) both;
}
.hero .actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: fadeUp 1s 1.1s var(--ease-smooth) both;
}
.hero .stats {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 500px;
  animation: fadeUp 1s 1.3s var(--ease-smooth) both;
}
.hero .stats .num {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 2.5rem;
  line-height: 1;
  color: #fff;
}
.hero .stats .lbl {
  font-family: var(--font-display);
  font-size: 11px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 8px;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Hero visual — orbital tech showcase */
.hero-visual {
  position: relative;
  aspect-ratio: 1;
  animation: fadeUp 1.4s .5s var(--ease-smooth) both;
}
.hero-visual .globe {
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(51,210,255,.45), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(222,36,38,.35), transparent 55%),
    radial-gradient(circle, #0a0f18, #030304 70%);
  box-shadow:
    inset 0 0 60px rgba(51,210,255,.2),
    0 0 80px rgba(51,210,255,.15),
    0 0 160px rgba(74,140,255,.08);
  animation: floaty 8s ease-in-out infinite;
}
.hero-visual .ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,.12);
  animation: rotate 30s linear infinite;
}
.hero-visual .ring-2 {
  inset: 6%;
  border-color: rgba(51,210,255,.18);
  animation: rotate 22s linear infinite reverse;
}
.hero-visual .ring-3 {
  inset: 14%;
  border-color: rgba(222,36,38,.15);
  border-style: dashed;
  animation: rotate 40s linear infinite;
}
@keyframes rotate { to { transform: rotate(360deg); } }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.hero-visual .node {
  position: absolute;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--surface-solid);
  border: 1px solid var(--border-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan-100);
  box-shadow: var(--glow-cyan), var(--inset-hi);
  animation: pulseBox 3s ease-in-out infinite;
}
.hero-visual .node svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.hero-visual .node.n1 { top: 4%; left: 42%; animation-delay: 0s; }
.hero-visual .node.n2 { top: 42%; right: 2%; animation-delay: -.6s; color: var(--brand-100); box-shadow: var(--glow-red), var(--inset-hi); }
.hero-visual .node.n3 { bottom: 8%; left: 30%; animation-delay: -1.2s; }
.hero-visual .node.n4 { top: 30%; left: 0%; animation-delay: -1.8s; color: var(--brand-100); box-shadow: var(--glow-red), var(--inset-hi); }
@keyframes pulseBox {
  0%, 100% { box-shadow: 0 0 15px currentColor, inset 0 1px 0 rgba(255,255,255,.06); }
  50%      { box-shadow: 0 0 30px currentColor, 0 0 60px currentColor, inset 0 1px 0 rgba(255,255,255,.06); }
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-dim);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  animation: fadeUp 1s 1.7s var(--ease-smooth) both;
}
.scroll-hint .line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--text-main), transparent);
  animation: scrollLine 2s var(--ease-smooth) infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.01% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- MARQUEE ---------- */
.marquee {
  overflow: hidden;
  background: var(--bg-alt);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 20px 0;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex; gap: 3rem;
  animation: marqueeScroll 35s linear infinite;
}
.marquee-item {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 3px;
  display: inline-flex; align-items: center; gap: 3rem;
}
.marquee-item .sep { color: var(--cyan-100); }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- SECTIONS ---------- */
section.section {
  padding: var(--sec-pad) var(--pad-x);
  position: relative;
  overflow: hidden;
}
section.section > .container {
  position: relative; z-index: 2;
}
.bg-alt { background: var(--bg-alt); border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); }

.section-head { margin-bottom: 4rem; max-width: 640px; }
.section-head p {
  font-size: 1.125rem;
  color: var(--text-dim);
  line-height: 1.65;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s var(--ease-smooth), transform 1s var(--ease-smooth);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }
.reveal[data-delay="4"] { transition-delay: .4s; }

/* ---------- COLORS SECTION ---------- */
.swatch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}
.swatch {
  background: var(--surface-solid);
  border: 1px solid var(--border-light);
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: all var(--t-fast) var(--ease-smooth);
}
.swatch:hover { transform: translateY(-4px); border-color: var(--cyan-100); box-shadow: var(--glow-cyan); }
.swatch .chip { height: 100px; position: relative; }
.swatch .chip::after {
  content: attr(data-tag);
  position: absolute; top: 8px; right: 8px;
  padding: 3px 8px;
  background: rgba(0,0,0,.55);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 10px;
  border-radius: var(--r-xs);
  backdrop-filter: blur(4px);
}
.swatch .meta { padding: 14px 16px 16px; }
.swatch .meta .name { font-weight: 600; font-size: .9rem; margin-bottom: 4px; color: var(--text-main); }
.swatch .meta .fmt {
  font-family: var(--font-mono);
  font-size: .7rem;
  color: var(--text-dim);
  line-height: 1.5;
}
.swatch .meta .fmt b { color: var(--text-main); font-weight: 500; }
.swatch .copied-mark {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.75);
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan-100);
  font-family: var(--font-display);
  font-size: .85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity var(--t-fast);
}
.swatch.copied .copied-mark { opacity: 1; }

.color-group { margin-bottom: 3rem; }
.color-group-title {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 20px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--text-main);
}
.color-group-title .badge-role {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--cyan-100);
  padding: 3px 8px;
  background: rgba(51,210,255,.1);
  border: 1px solid rgba(51,210,255,.25);
  border-radius: var(--r-xs);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Gradient row */
.gradient-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; }
.gradient-card {
  aspect-ratio: 3/2;
  border-radius: var(--r-md);
  padding: 14px;
  display: flex; align-items: flex-end;
  font-family: var(--font-mono);
  font-size: 11px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* ---------- TYPOGRAPHY SECTION ---------- */
.type-table {
  border-top: 1px solid var(--border-light);
}
.type-row {
  display: grid;
  grid-template-columns: 180px 1fr 240px;
  gap: 32px;
  padding: 28px 8px;
  border-bottom: 1px solid var(--border-light);
  align-items: baseline;
  transition: background var(--t-fast);
}
.type-row:hover { background: rgba(255,255,255,.02); }
.type-row .role {
  font-family: var(--font-mono);
  font-size: .68rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.type-row .role .tag {
  display: block;
  color: var(--cyan-100);
  font-family: var(--font-display);
  font-size: .95rem;
  margin-bottom: 4px;
  letter-spacing: .5px;
}
.type-row .sample { min-width: 0; }
.type-row .specs {
  font-family: var(--font-mono);
  font-size: .68rem;
  color: var(--text-dim);
  line-height: 1.7;
}
.type-row .specs b { color: var(--text-main); font-weight: 500; }
@media (max-width: 820px) {
  .type-row { grid-template-columns: 1fr; gap: 10px; }
}

/* Font meta cards */
.type-meta-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; margin-bottom: 3rem; }
.type-meta {
  padding: 20px;
  background: var(--surface-solid);
  border: 1px solid var(--border-light);
  border-radius: var(--r-md);
}
.type-meta .k {
  font-family: var(--font-display);
  font-size: 11px;
  color: var(--cyan-100);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.type-meta .v { font-family: var(--font-mono); font-size: .8rem; color: var(--text-main); word-break: break-all; }
.type-meta .sample-word {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-top: 12px;
  color: var(--text-main);
  letter-spacing: -0.03em;
}
.type-meta.body-sample .sample-word { font-family: var(--font-body); font-weight: 400; }
.type-meta.mono-sample .sample-word { font-family: var(--font-mono); font-size: 1.4rem; }

/* ---------- FEATURE LIST (Omi) ---------- */
.feature-list {
  list-style: none;
  display: grid;
  gap: 16px;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px;
  border-radius: var(--r-sm);
  transition: background var(--t-fast);
}
.feature-list li:hover { background: rgba(255,255,255,.02); }
.feature-list .feature-icon {
  width: 32px; height: 32px;
  border-radius: var(--r-sm);
  background: rgba(51,210,255,.08);
  border: 1px solid rgba(51,210,255,.2);
  display: grid; place-items: center;
  color: var(--cyan-100);
  flex-shrink: 0;
}
.feature-list .feature-icon svg { width: 15px; height: 15px; }
.feature-list li .txt strong { display: block; font-weight: 600; color: var(--text-main); margin-bottom: 2px; }
.feature-list li .txt span { font-size: .875rem; color: var(--text-dim); line-height: 1.5; }

/* ---------- SPLIT SECTION ---------- */
.split-section {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 80px;
  align-items: center;
}
.split-section.reverse { grid-template-columns: 6fr 5fr; }
.split-section.reverse .section-info { order: 2; }
.split-section.reverse .section-visual { order: 1; }
@media (max-width: 900px) {
  .split-section, .split-section.reverse { grid-template-columns: 1fr; gap: 40px; }
  .split-section.reverse .section-info { order: 1; }
  .split-section.reverse .section-visual { order: 2; }
}

/* ---------- GRAVITY FOLD (Omi component) ---------- */
.gravity-fold {
  perspective: 1500px;
  width: 100%;
  min-height: 480px;
  display: flex; align-items: center; justify-content: center;
  cursor: none;
}
.gravity-stack {
  position: relative;
  width: 340px; height: 440px;
  transform-style: preserve-3d;
  transition: transform .2s linear;
}
.gravity-layer {
  position: absolute; inset: 0;
  border-radius: var(--r-xl);
  transform-style: preserve-3d;
  background:
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.015)),
    linear-gradient(135deg, rgba(24,24,30,.9) 0%, rgba(10,10,14,.96) 100%);
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 48px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.05);
  transition: all .7s var(--ease-smooth);
  padding: 32px;
  display: flex; flex-direction: column;
  overflow: hidden;
}
.gravity-layer::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 20% 15%, rgba(255,255,255,.08), transparent 25%);
  pointer-events: none;
}
.gravity-layer-3 { z-index: 1; opacity: .3; transform: translate3d(0, 48px, -120px) scale(.93); }
.gravity-layer-2 { z-index: 2; opacity: .55; transform: translate3d(0, 24px, -60px) scale(.97); }
.gravity-layer-1 { z-index: 3; transform: translate3d(0, 0, 0) scale(1); }
.gravity-fold:hover .gravity-layer-1 {
  transform: translateZ(50px) translateY(-14px);
  box-shadow: 0 40px 80px rgba(0,0,0,.7), 0 0 40px rgba(51,210,255,.15);
  border-color: rgba(51,210,255,.3);
}
.gravity-fold:hover .gravity-layer-2 {
  transform: translateZ(-80px) translateY(60px) rotateX(4deg) scale(.98);
  opacity: .8;
}
.gravity-fold:hover .gravity-layer-3 {
  transform: translateZ(-160px) translateY(120px) rotateX(8deg) scale(.95);
  opacity: .55;
}
.gravity-layer .g-head {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-display);
  font-size: 11px;
  color: var(--cyan-100);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 32px;
  position: relative; z-index: 1;
}
.gravity-layer .g-head .icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(51,210,255,.08);
  border: 1px solid rgba(51,210,255,.15);
  display: grid; place-items: center;
  color: var(--cyan-100);
}
.gravity-layer .g-head .icon svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.gravity-layer .g-title {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 10px;
  position: relative; z-index: 1;
}
.gravity-layer .g-desc {
  font-size: .95rem;
  color: var(--text-dim);
  margin-bottom: auto;
  line-height: 1.55;
  position: relative; z-index: 1;
}
.gravity-layer .g-graph {
  height: 2px;
  margin-top: 24px;
  background: rgba(255,255,255,.08);
  position: relative;
}
.gravity-layer .g-graph::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 62%; height: 100%;
  background: var(--cyan-100);
  box-shadow: 0 0 12px var(--cyan-100), 0 0 24px rgba(51,210,255,.4);
}

/* ---------- NEURAL PANEL (Omi component) ---------- */
.neural-panel {
  background: var(--surface-solid);
  border: 1px solid var(--border-light);
  border-radius: var(--r-md);
  padding: 32px;
  display: flex; flex-direction: column; gap: 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,.4);
}
.np-header {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
}
.np-title {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.np-live {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--cyan-100);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.np-live::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--cyan-100);
  border-radius: 50%;
  animation: pulseDot 1.8s infinite;
}
.np-row {
  display: flex; align-items: center; gap: 18px;
}
@media (max-width: 640px) { .np-row { flex-direction: column; align-items: stretch; } }
.np-control {
  flex: 0 0 220px;
  padding: 14px 16px;
  background: rgba(255,255,255,.02);
  border: 1px solid var(--border-light);
  border-radius: var(--r-sm);
}
.np-label {
  display: flex; justify-content: space-between;
  font-family: var(--font-display);
  font-size: 10px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}
.np-val { color: #fff; }
.np-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,.08);
  border-radius: 2px;
  outline: none;
}
.np-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 12px rgba(255,255,255,.5);
  transition: transform var(--t-fast);
}
.np-slider:active::-webkit-slider-thumb { transform: scale(1.15); }
.np-toggle {
  position: relative;
  width: 40px; height: 22px;
  background: rgba(255,255,255,.1);
  border-radius: 11px;
  cursor: none;
  transition: background var(--t-fast);
}
.np-toggle.active { background: var(--cyan-100); }
.np-toggle-thumb {
  position: absolute;
  top: 2px; left: 2px;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform var(--t-med) var(--ease-smooth);
}
.np-toggle.active .np-toggle-thumb { transform: translateX(18px); }
.np-connector {
  flex: 1;
  height: 2px;
  background: rgba(255,255,255,.06);
  position: relative;
  overflow: hidden;
}
.np-pulse {
  position: absolute; top: 0; left: 0;
  width: 44px; height: 100%;
  opacity: 0;
  transform: translateX(-44px);
  background: linear-gradient(90deg, transparent, var(--cyan-100), transparent);
  box-shadow: 0 0 12px var(--cyan-100);
}
.np-pulse.brand { background: linear-gradient(90deg, transparent, var(--brand-100), transparent); box-shadow: 0 0 12px var(--brand-100); }
.np-pulse.fire { animation: pulseTravel .8s ease-out forwards; opacity: 1; }
@keyframes pulseTravel { to { transform: translateX(500px); } }
.np-module {
  flex: 0 0 220px;
  padding: 14px 16px;
  background: var(--bg-base);
  border: 1px solid var(--border-light);
  border-radius: var(--r-sm);
  display: flex; align-items: center; gap: 12px;
  transition: all var(--t-fast);
}
.np-status-light {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
}
.np-module.active-cyan { border-color: rgba(51,210,255,.4); box-shadow: inset 0 0 20px rgba(51,210,255,.06); }
.np-module.active-cyan .np-status-light { background: var(--cyan-100); box-shadow: 0 0 10px var(--cyan-100); }
.np-module.active-red { border-color: rgba(222,36,38,.4); box-shadow: inset 0 0 20px rgba(222,36,38,.06); }
.np-module.active-red .np-status-light { background: var(--brand-100); box-shadow: 0 0 10px var(--brand-100); }
.np-mod-text {
  font-family: var(--font-display);
  font-size: 13px;
  color: #fff;
  margin-bottom: 2px;
}
.np-mod-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-dim);
}

/* ---------- PIPELINE (Omi) ---------- */
.pipeline-wrap {
  position: relative;
  padding: 40px 0;
}
.pipeline-cards {
  display: flex; flex-direction: column; gap: 60px;
  max-width: 720px; margin: 0 auto;
  position: relative;
}
.pipeline-card {
  position: relative;
  width: 60%;
  max-width: 360px;
  padding: 24px 28px;
  background: rgba(17,17,22,.85);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  backdrop-filter: blur(16px);
  transition: all var(--t-med) var(--ease-smooth);
  cursor: none;
  z-index: 2;
}
.pipeline-card:nth-child(odd)  { align-self: flex-start; margin-left: 20px; }
.pipeline-card:nth-child(even) { align-self: flex-end; margin-right: 20px; }
.pipeline-card:hover {
  border-color: rgba(51,210,255,.35);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -10px rgba(51,210,255,.2);
  background: rgba(17,17,22,1);
}
.pipeline-card .node {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--cyan-100);
  border: 2px solid var(--bg-base);
  box-shadow: 0 0 14px var(--cyan-100);
}
.pipeline-card:nth-child(odd) .node { right: -7px; }
.pipeline-card:nth-child(even) .node { left: -7px; }
.pipeline-card .step {
  font-family: var(--font-display);
  color: var(--cyan-100);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.pipeline-card h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 6px;
  font-weight: 400;
}
.pipeline-card p {
  font-size: .875rem;
  color: var(--text-dim);
  line-height: 1.5;
}

/* ---------- CARDS — Store / Blog ---------- */
.store-card {
  background: var(--surface-solid);
  border: 1px solid var(--border-light);
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: none;
  transition: all var(--t-med) var(--ease-smooth);
  position: relative;
  box-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.store-card:hover {
  transform: translateY(-6px);
  border-color: var(--cyan-100);
  box-shadow: 0 20px 40px rgba(0,0,0,.5), 0 0 30px rgba(51,210,255,.15);
}
.store-card .thumb {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-elev), var(--bg-base));
  display: flex; align-items: center; justify-content: center;
}
.store-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-smooth); }
.store-card:hover .thumb img { transform: scale(1.08); }
.store-card .thumb .letter {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--cyan-100);
  opacity: .6;
  font-weight: 300;
}
.store-card .badges {
  position: absolute; top: 8px; left: 8px; right: 8px;
  display: flex; gap: 6px; z-index: 2;
}
.store-card .body { padding: 16px 18px; }
.store-card .name { font-weight: 600; font-size: 1rem; color: var(--text-main); margin-bottom: 4px; }
.store-card .meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dim);
  display: flex; gap: 8px;
  margin-bottom: 8px;
}
.store-card .meta .cat { color: var(--cyan-100); }
.store-card .actions {
  display: flex; gap: 6px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border-dim);
}
.store-card .btn-mini {
  flex: 1;
  padding: 8px 10px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(255,255,255,.03);
  color: var(--text-main);
  border: 1px solid var(--border-light);
  border-radius: var(--r-sm);
  cursor: none;
  transition: all var(--t-fast);
  display: inline-flex; align-items: center; justify-content: center; gap: 4px;
}
.store-card .btn-mini:hover { background: var(--cyan-100); color: var(--bg-base); border-color: var(--cyan-100); }
.store-card .btn-mini.wpp:hover { background: var(--success); border-color: var(--success); color: #fff; }
.store-card .btn-mini svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ---------- BADGES ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  line-height: 1;
}
.badge--open { background: var(--success); color: #fff; }
.badge--open::before { content: ''; width: 6px; height: 6px; background: #fff; border-radius: 50%; animation: pulseDot 1.8s infinite; }
.badge--new { background: var(--brand-100); color: #fff; }
.badge--tech { background: rgba(51,210,255,.15); color: var(--cyan-100); border: 1px solid rgba(51,210,255,.3); }
.badge--soon { background: transparent; color: var(--text-main); border: 1px solid var(--border-light); }
.badge--closed { background: var(--text-muted); color: #fff; }
.badge--warn { background: var(--warning); color: var(--bg-base); }

/* ---------- INPUT ---------- */
.input-group { display: flex; flex-direction: column; gap: 8px; }
.input-group label {
  font-family: var(--font-display);
  font-size: 10px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}
.input {
  padding: 14px 16px;
  background: rgba(255,255,255,.02);
  color: var(--text-main);
  border: 1px solid var(--border-light);
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: .95rem;
  outline: none;
  transition: all var(--t-fast);
}
.input:focus {
  border-color: var(--cyan-100);
  background: rgba(255,255,255,.04);
  box-shadow: 0 0 0 3px rgba(51,210,255,.15);
}
.input::placeholder { color: var(--text-muted); }
.input-helper { font-family: var(--font-mono); font-size: 11px; color: var(--text-dim); margin-top: 4px; }
.input.error { border-color: var(--danger); box-shadow: 0 0 0 3px rgba(236,0,59,.15); }

/* ---------- TOOLTIP ---------- */
.tooltip-host { position: relative; display: inline-flex; }
.tooltip-host .tooltip {
  position: absolute;
  bottom: calc(100% + 10px); left: 50%;
  transform: translateX(-50%);
  padding: 8px 12px;
  background: var(--bg-elev);
  color: var(--text-main);
  font-size: 12px;
  border-radius: var(--r-sm);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--t-fast);
  border: 1px solid var(--border-light);
  box-shadow: 0 8px 16px rgba(0,0,0,.4);
}
.tooltip-host .tooltip::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 50%; transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--bg-elev);
  border-bottom: 0;
}
.tooltip-host:hover .tooltip { opacity: 1; animation: tooltipIn .35s var(--ease-smooth); }
@keyframes tooltipIn {
  from { opacity: 0; transform: translateX(-50%) translateY(4px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ---------- MODAL ---------- */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(3,3,4,.75);
  backdrop-filter: blur(16px);
  display: none;
  align-items: center; justify-content: center;
  z-index: 1000;
  padding: var(--pad-x);
}
.modal-backdrop.open { display: flex; }
.modal {
  background: var(--surface-solid);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  padding: 36px;
  max-width: 480px;
  width: 100%;
  animation: modalIn .5s var(--ease-smooth);
  box-shadow: 0 30px 80px rgba(0,0,0,.6);
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal h3 { font-family: var(--font-display); font-size: 1.75rem; margin-bottom: 8px; letter-spacing: -0.02em; }
.modal p { color: var(--text-dim); margin-bottom: 24px; }
.modal-actions { display: flex; gap: 10px; justify-content: flex-end; }

/* ---------- PRICING (Omi accordion) ---------- */
.pricing-row {
  display: flex; gap: 16px;
  min-height: 480px;
}
@media (max-width: 900px) { .pricing-row { flex-direction: column; min-height: auto; } }
.pricing-card {
  flex: 1;
  position: relative;
  background: var(--surface-solid);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  overflow: hidden;
  cursor: none;
  transition: all .7s var(--ease-smooth);
  display: flex; flex-direction: column;
}
.pricing-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--border-light), transparent);
  transition: all .5s;
}
.pricing-card:hover {
  flex: 2.5;
  background: var(--bg-alt);
  border-color: rgba(51,210,255,.3);
  box-shadow: 0 20px 50px rgba(0,0,0,.5);
}
.pricing-card:hover::before { background: linear-gradient(90deg, transparent, var(--cyan-100), transparent); box-shadow: 0 0 15px var(--cyan-glow); }
.pricing-card .pc-title {
  font-family: var(--font-display);
  font-size: 20px;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.pricing-card:hover .pc-title { color: var(--cyan-100); }
.pricing-card .pc-price {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 300;
  line-height: 1;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}
.pricing-card .pc-price span { font-size: 14px; color: var(--text-dim); }
.pricing-card .pc-desc {
  color: var(--text-dim);
  font-size: 13px;
  line-height: 1.5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pricing-card:hover .pc-desc { white-space: normal; }
.pricing-card .pc-hidden {
  margin-top: 32px;
  flex: 1;
  display: flex; flex-direction: column; justify-content: space-between;
  min-width: 260px;
  opacity: 0;
  transform: translateY(20px);
  transition: all .5s;
  pointer-events: none;
}
.pricing-card:hover .pc-hidden { opacity: 1; transform: translateY(0); transition-delay: .1s; pointer-events: auto; }
.pricing-card .pc-features { list-style: none; margin-bottom: 24px; }
.pricing-card .pc-features li {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px;
  color: var(--text-main);
  margin-bottom: 12px;
}
.pricing-card .pc-features li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--cyan-100);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--cyan-100);
}

/* ---------- TIMELINE ---------- */
.timeline {
  position: relative;
  padding: 20px 0 20px 40px;
}
.tl-rail {
  position: absolute;
  top: 0; bottom: 0;
  left: 8px; width: 2px;
  background: rgba(255,255,255,.05);
}
.tl-progress {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 40%;
  background: linear-gradient(180deg, transparent, var(--cyan-100), #fff);
  box-shadow: 0 0 15px var(--cyan-100);
  transition: height 1.5s var(--ease-smooth);
}
.tl-item { position: relative; margin-bottom: 40px; }
.tl-marker {
  position: absolute;
  left: -40px; top: 20px;
  width: 16px; height: 16px;
  background: var(--bg-base);
  border: 2px solid var(--border-light);
  border-radius: 50%;
  z-index: 2;
  transition: all .5s;
}
.tl-item.active .tl-marker {
  border-color: var(--cyan-100);
  background: var(--cyan-100);
  box-shadow: 0 0 15px var(--cyan-100);
}
.tl-content {
  background: var(--surface-1);
  border: 1px solid var(--border-light);
  padding: 20px 24px;
  border-radius: var(--r-md);
  backdrop-filter: blur(10px);
  transition: all .6s var(--ease-smooth);
}
.tl-item:hover .tl-content { border-color: rgba(51,210,255,.25); background: var(--surface-2); }
.tl-date {
  font-family: var(--font-display);
  font-size: 11px;
  color: var(--cyan-100);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.tl-title { font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 6px; letter-spacing: -0.01em; }
.tl-desc { font-size: 14px; color: var(--text-dim); line-height: 1.55; }

/* ---------- TESTIMONIAL CARD ---------- */
.testimonial-card {
  background: rgba(255,255,255,.015);
  border: 1px solid var(--border-light);
  border-radius: var(--r-xl);
  padding: 32px;
  display: flex; flex-direction: column;
  min-height: 240px;
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at top left, rgba(51,210,255,.06), transparent 50%);
  pointer-events: none;
}
.testimonial-card .stars {
  display: flex; gap: 4px;
  margin-bottom: 20px;
  color: var(--cyan-100);
}
.testimonial-card .stars svg { width: 14px; height: 14px; }
.testimonial-card .quote { flex: 1; font-size: .95rem; color: var(--text-main); line-height: 1.65; font-weight: 300; }
.testimonial-card .author {
  display: flex; align-items: center; gap: 12px;
  margin-top: 24px;
}
.testimonial-card .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan-100), var(--blue-100));
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.1rem;
}
.testimonial-card .author-name { font-weight: 500; font-size: .95rem; }
.testimonial-card .author-role { font-family: var(--font-mono); font-size: 11px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }

/* ---------- ICONS GRID ---------- */
.icons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 8px;
}
.icon-item {
  aspect-ratio: 1;
  background: var(--surface-solid);
  border: 1px solid var(--border-light);
  border-radius: var(--r-md);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px;
  transition: all var(--t-fast) var(--ease-smooth);
  cursor: none;
}
.icon-item:hover {
  background: var(--bg-elev);
  border-color: var(--cyan-100);
  box-shadow: var(--glow-cyan);
  transform: translateY(-3px);
}
.icon-item svg {
  width: 22px; height: 22px;
  stroke: var(--text-main);
  fill: none; stroke-width: 1.5;
  stroke-linecap: round; stroke-linejoin: round;
  transition: all var(--t-med);
}
.icon-item:hover svg { stroke: var(--cyan-100); transform: scale(1.15) rotate(-4deg); }
.icon-item .name {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---------- ANIMATIONS SHOWCASE ---------- */
.anim-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.anim-card {
  padding: 24px;
  background: var(--surface-solid);
  border: 1px solid var(--border-light);
  border-radius: var(--r-md);
  min-height: 180px;
  display: flex; flex-direction: column; gap: 16px;
  transition: border-color var(--t-fast);
}
.anim-card:hover { border-color: rgba(51,210,255,.3); }
.anim-card .stage {
  flex: 1;
  min-height: 100px;
  background: var(--bg-base);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  position: relative;
}
.anim-card .stage .obj {
  width: 40px; height: 40px;
  background: var(--cyan-100);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--cyan-glow);
}
.anim-card:hover .stage .obj.fade { animation: fadeUp .6s var(--ease-smooth); }
.anim-card:hover .stage .obj.slide { animation: slideX 1s var(--ease-smooth); }
.anim-card:hover .stage .obj.spin { animation: rotate 1s linear infinite; }
.anim-card:hover .stage .obj.pulse { animation: pulseObj .8s ease-in-out infinite; }
.anim-card:hover .stage .obj.glow { box-shadow: 0 0 50px var(--cyan-100), 0 0 100px rgba(51,210,255,.4); }
.anim-card:hover .stage .obj.morph { animation: morphShape 1.5s var(--ease-in-out) infinite; }
.anim-card .stage .obj.glow { transition: box-shadow var(--t-med); }
@keyframes slideX { from { transform: translateX(-100px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes pulseObj { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.35); } }
@keyframes morphShape { 0%, 100% { border-radius: 50%; } 50% { border-radius: 8px; transform: rotate(45deg); } }
.anim-card .name {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: -0.01em;
}
.anim-card .val { font-family: var(--font-mono); font-size: 11px; color: var(--text-dim); word-break: break-all; }

/* ---------- FOOTER / CTA ---------- */
.cta-block {
  padding: 4rem;
  text-align: center;
  background:
    radial-gradient(ellipse at center, rgba(51,210,255,.08), transparent 60%),
    var(--bg-alt);
  border: 1px solid var(--border-light);
  border-radius: var(--r-xl);
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(222,36,38,.1), transparent 50%);
}
.cta-block > * { position: relative; z-index: 1; }
.cta-block h3 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
}
.cta-block p { color: var(--text-dim); max-width: 46ch; margin: 0 auto 32px; font-size: 1.1rem; }

footer.footer {
  padding: 5rem var(--pad-x) 3rem;
  border-top: 1px solid var(--border-light);
  background: var(--bg-base);
  position: relative;
  overflow: hidden;
}
footer.footer::before {
  content: 'PAGÉ · V2 · NEO · TECH ·';
  position: absolute;
  bottom: -20px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 14vw;
  font-weight: 300;
  color: rgba(255,255,255,.02);
  white-space: nowrap;
  letter-spacing: -0.05em;
  pointer-events: none;
}
footer.footer > .container { position: relative; z-index: 1; text-align: center; }
footer.footer .brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
footer.footer .meta { color: var(--text-dim); font-size: .875rem; margin-top: 4px; }
footer.footer .disclaimer { color: var(--text-muted); font-size: 11px; margin-top: 24px; max-width: 60ch; margin-left: auto; margin-right: auto; line-height: 1.6; }
footer.footer a { color: var(--cyan-100); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 640px) {
  :root { --header-h: 60px; }
  nav.nav .links { display: none; }
  .hero .stats { grid-template-columns: 1fr; gap: 16px; }
  .split-section { gap: 40px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* ---------- Utilities ---------- */
.section-num-mono {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--cyan-100);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 12px;
}
.section-num-mono::after {
  content: '';
  flex: 1; max-width: 160px;
  height: 1px;
  background: linear-gradient(to right, var(--cyan-100), transparent);
}
