/* ============================================
   CLOUDICO v4 — TOKENS
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

:root {
  /* INK SCALE */
  --ink-1: #06060A;
  --ink-2: #0B0B12;
  --ink-3: #13131C;
  --ink-4: #1B1B28;
  --ink-5: #252535;

  /* SECTION MOODS */
  --mood-deep: #06060A;
  --mood-warm: #110E18;
  --mood-violet: #100A1F;
  --mood-band: #1A1230;

  /* LINES */
  --line: rgba(255,255,255,0.08);
  --line-2: rgba(255,255,255,0.14);
  --line-3: rgba(255,255,255,0.22);
  --line-p: rgba(180,158,255,0.28);

  /* TEXT — bright, all readable */
  --t1: #FFFFFF;
  --t2: #D4D4E0;       /* primary body, very bright */
  --t3: #9B9BAE;       /* secondary, comfortably visible */
  --t-mono: #B0B0C8;

  /* PURPLE */
  --p: #7649D6;
  --p-light: #9472E8;
  --p-bright: #B49EFF;
  --p-deep: #4F2B9C;
  --p-glow: rgba(118,73,214,0.5);
  --p-soft: rgba(118,73,214,0.10);
  --p-faint: rgba(118,73,214,0.05);

  /* ACCENTS */
  --orange: #FF7A45;
  --orange-bright: #FFA17A;
  --orange-soft: rgba(255,122,69,0.10);
  --cyan: #06B6D4;
  --cyan-bright: #38DDF7;
  --cyan-soft: rgba(6,182,212,0.10);
  --emerald: #10B981;
  --emerald-bright: #4ADE9A;
  --emerald-soft: rgba(16,185,129,0.10);
  --pink: #EC4899;
  --pink-soft: rgba(236,72,153,0.08);

  /* FONTS */
  --f-sans: 'Geist', -apple-system, BlinkMacSystemFont, sans-serif;
  --f-mono: 'JetBrains Mono', ui-monospace, monospace;
  --f-serif: 'Instrument Serif', Georgia, serif;

  /* LAYOUT */
  --maxw: 1300px;
  --pad: clamp(20px, 4vw, 48px);
}

html, body {
  background: var(--ink-2);
  color: var(--t1);
  font-family: var(--f-sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img, svg { display: block; max-width: 100%; }

/* ============================================
   AMBIENT
   ============================================ */
.orbs { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.42;
  animation: drift 24s ease-in-out infinite;
}
.orb-1 { width: 540px; height: 540px; background: radial-gradient(circle, #7649D6, transparent 70%); top: -120px; left: -100px; }
.orb-2 { width: 420px; height: 420px; background: radial-gradient(circle, #4F2B9C, transparent 70%); top: 40%; right: -120px; animation-delay: -8s; }
.orb-3 { width: 520px; height: 520px; background: radial-gradient(circle, #EC4899, transparent 70%); top: 75%; left: 25%; animation-delay: -15s; opacity: 0.15; }
@keyframes drift {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.05); }
  66% { transform: translate(-30px, 40px) scale(0.95); }
}

.noise {
  position: fixed; inset: 0; pointer-events: none; z-index: 1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.04 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.55; mix-blend-mode: overlay;
}

#spotlight {
  position: fixed; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(180,158,255,0.10), transparent 60%);
  pointer-events: none; z-index: 2;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  opacity: 0;
}

.container {
  width: 100%; max-width: var(--maxw); margin: 0 auto;
  padding: 0 var(--pad);
  position: relative; z-index: 3;
}

/* ============================================
   ANNOUNCEMENT
   ============================================ */
.announce {
  position: relative; z-index: 50;
  background: linear-gradient(90deg, rgba(255,122,69,0.20), rgba(118,73,214,0.20));
  border-bottom: 1px solid rgba(255,255,255,0.10);
  padding: 12px 0;
  font-size: 13px; text-align: center;
  color: var(--t2); font-family: var(--f-mono);
}
.announce strong { color: var(--orange-bright); font-weight: 600; }
.announce .live {
  display: inline-flex; align-items: center; gap: 7px;
  margin-right: 12px; color: var(--orange-bright);
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
}
.live::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--orange); box-shadow: 0 0 10px var(--orange);
  animation: pulse 1.8s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

/* ============================================
   HEADER
   ============================================ */
.header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(11,11,18,0.78);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line);
  transition: all 0.3s;
}
.header.scrolled {
  background: rgba(6,6,10,0.94);
  border-bottom-color: var(--line-2);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 74px;
}
.logo {
  display: flex; align-items: center; gap: 11px;
  font-weight: 600; font-size: 19px; letter-spacing: -0.025em;
  color: var(--t1);
}
.logo-mark {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--p-bright), var(--p), var(--p-deep));
  display: grid; place-items: center;
  box-shadow: 0 0 24px var(--p-glow), inset 0 0 12px rgba(255,255,255,0.2);
  position: relative;
}
.logo-mark::after {
  content: ''; position: absolute; inset: -1px; border-radius: 11px;
  background: linear-gradient(135deg, rgba(255,255,255,0.25), transparent 40%);
  pointer-events: none;
}
.logo-mark svg { width: 20px; height: 20px; position: relative; z-index: 1; }

.nav { display: flex; align-items: center; gap: 36px; }
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-size: 14px; font-weight: 400; color: var(--t2);
  transition: color 0.2s; position: relative; padding: 6px 0;
}
.nav-links a:hover { color: var(--t1); }
.nav-links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--p-bright);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s;
}
.nav-links a:hover::after { transform: scaleX(1); }

.nav-actions { display: flex; align-items: center; gap: 12px; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  height: 46px; padding: 0 22px; border-radius: 12px;
  font-size: 14px; font-weight: 500; letter-spacing: -0.005em;
  transition: all 0.25s cubic-bezier(.4,0,.2,1);
  white-space: nowrap; position: relative; overflow: hidden;
  will-change: transform;
}
.btn-ghost {
  color: var(--t1);
  border: 1px solid var(--line-2);
  background: rgba(255,255,255,0.03);
}
.btn-ghost:hover {
  border-color: var(--line-3);
  background: rgba(255,255,255,0.06);
}
.btn-primary {
  color: #FFFFFF;
  background: linear-gradient(135deg, var(--p-bright) 0%, var(--p) 50%, var(--p-deep) 100%);
  font-weight: 500;
  box-shadow: 0 4px 24px rgba(118,73,214,0.5), inset 0 1px 0 rgba(255,255,255,0.3);
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.3), transparent 50%);
  pointer-events: none;
}
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.4) 50%, transparent 70%);
  transform: translateX(-100%); transition: transform 0.7s;
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(118,73,214,0.65), inset 0 1px 0 rgba(255,255,255,0.4);
}
.btn-primary:hover::after { transform: translateX(100%); }
.btn-lg { height: 56px; padding: 0 30px; font-size: 15px; border-radius: 14px; }

.menu-btn { display: none; }

@media (max-width: 940px) {
  .nav-links { display: none; }
  .nav-actions .btn-ghost { display: none; }
  .menu-btn {
    display: grid; place-items: center; width: 44px; height: 44px;
    border: 1px solid var(--line-2); border-radius: 11px;
    background: rgba(255,255,255,0.03); color: var(--t1);
  }
}

/* ============================================
   SHARED SECTION HEAD
   ============================================ */
.section { padding: clamp(90px, 12vw, 140px) 0; position: relative; z-index: 2; }

.eyebrow {
  font-family: var(--f-mono); font-size: 11px;
  color: var(--p-bright);
  letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 18px;
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 600;
  padding: 6px 14px;
  border: 1px solid var(--line-p);
  background: var(--p-soft);
  border-radius: 999px;
}
.eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--p-bright); box-shadow: 0 0 10px var(--p-bright);
}
.eyebrow.orange { color: var(--orange-bright); border-color: rgba(255,122,69,0.3); background: var(--orange-soft); }
.eyebrow.orange::before { background: var(--orange-bright); box-shadow: 0 0 10px var(--orange-bright); }
.eyebrow.cyan { color: var(--cyan-bright); border-color: rgba(6,182,212,0.3); background: var(--cyan-soft); }
.eyebrow.cyan::before { background: var(--cyan-bright); box-shadow: 0 0 10px var(--cyan-bright); }
.eyebrow.emerald { color: var(--emerald-bright); border-color: rgba(16,185,129,0.3); background: var(--emerald-soft); }
.eyebrow.emerald::before { background: var(--emerald-bright); box-shadow: 0 0 10px var(--emerald-bright); }
.eyebrow.pink { color: #F9A8D4; border-color: rgba(236,72,153,0.3); background: var(--pink-soft); }
.eyebrow.pink::before { background: #F9A8D4; box-shadow: 0 0 10px #F9A8D4; }

.section-title {
  font-size: clamp(34px, 4.4vw, 54px);
  font-weight: 600; letter-spacing: -0.035em;
  line-height: 1.05; margin-bottom: 18px;
  max-width: 760px;
  color: var(--t1);
}
.section-title em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, #D4BFFF, var(--p-bright));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.section-sub {
  font-size: clamp(16px, 1.35vw, 18px);
  color: var(--t2);
  max-width: 580px; line-height: 1.55;
}
.section-head { margin-bottom: 64px; }
.section-head.center { text-align: center; }
.section-head.center .section-title,
.section-head.center .section-sub { margin-left: auto; margin-right: auto; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  padding: 60px 0 110px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 1100px 700px at 30% 0%, rgba(118,73,214,0.22), transparent 60%),
    radial-gradient(ellipse 900px 600px at 90% 30%, rgba(236,72,153,0.08), transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black, transparent 75%);
}
.hero-inner {
  position: relative; z-index: 3;
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 60px; align-items: center;
}
.hero-text { max-width: 600px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px 6px 6px;
  border: 1px solid var(--line-p);
  background: var(--p-soft);
  border-radius: 999px;
  font-size: 12px; color: var(--t1);
  font-family: var(--f-mono);
  margin-bottom: 28px;
  animation: fadeUp 0.7s 0.05s both;
}
.hero-badge .pill {
  font-size: 10px; font-weight: 700;
  background: linear-gradient(135deg, var(--p-bright), var(--p));
  color: white; padding: 4px 10px; border-radius: 999px;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(42px, 5.6vw, 70px);
  font-weight: 600; line-height: 1.0;
  letter-spacing: -0.04em; margin-bottom: 24px;
  animation: fadeUp 0.8s 0.15s both;
}
.hero h1 .grad {
  background: linear-gradient(180deg, #FFFFFF 0%, #C8C8D6 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero h1 em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, #D4BFFF 0%, var(--p-bright) 40%, var(--p) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub {
  font-size: clamp(17px, 1.4vw, 19px);
  color: var(--t2);
  max-width: 540px; margin-bottom: 36px;
  line-height: 1.55;
  animation: fadeUp 0.8s 0.25s both;
}
.hero-ctas {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-bottom: 36px;
  animation: fadeUp 0.8s 0.35s both;
}
.hero-meta {
  display: flex; gap: 24px; flex-wrap: wrap;
  font-family: var(--f-mono); font-size: 12px;
  color: var(--t-mono);
  animation: fadeUp 0.8s 0.45s both;
}
.hero-meta span { display: inline-flex; align-items: center; gap: 6px; }
.hero-meta .check { color: var(--emerald-bright); font-weight: 600; font-size: 14px; line-height: 1; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* HERO VISUAL */
.hero-visual { position: relative; perspective: 1200px; animation: fadeUp 1s 0.5s both; }
.hero-image-card {
  position: relative; border-radius: 26px; overflow: hidden;
  border: 1px solid var(--line-2);
  box-shadow: 0 40px 100px rgba(0,0,0,0.55), 0 10px 30px rgba(118,73,214,0.22), inset 0 1px 0 rgba(255,255,255,0.08);
  transform: rotateY(-5deg) rotateX(2deg);
  transition: transform 0.6s;
  background: var(--ink-3);
  aspect-ratio: 4 / 5;
}
.hero-image-card:hover { transform: rotateY(-2deg) rotateX(1deg); }
.hero-image-card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0.7; filter: contrast(1.05) saturate(0.9);
}
.hero-image-card::before {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(6,6,10,0.2), rgba(6,6,10,0.7) 60%, rgba(6,6,10,0.95) 100%),
    linear-gradient(135deg, rgba(118,73,214,0.5), transparent 50%, rgba(236,72,153,0.15));
  z-index: 1;
}
.hero-image-card::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 40px 40px; z-index: 2; opacity: 0.4;
}
.hero-image-overlay {
  position: absolute; inset: 0; z-index: 3;
  display: flex; flex-direction: column;
  padding: 28px; justify-content: space-between;
}
.hii-top { display: flex; justify-content: space-between; align-items: flex-start; }
.hii-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 13px; border-radius: 999px;
  background: rgba(6,6,10,0.7);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line-2);
  font-family: var(--f-mono); font-size: 11px;
  color: var(--t1);
}
.hii-tag .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 8px var(--emerald);
  animation: pulse 2s infinite;
}
.hii-region {
  font-family: var(--f-mono); font-size: 10px;
  color: var(--t2); letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(6,6,10,0.6);
  backdrop-filter: blur(12px);
  padding: 7px 11px; border-radius: 8px;
  border: 1px solid var(--line);
}
.hii-mid { display: flex; flex-direction: column; gap: 14px; flex: 1; justify-content: center; margin: 20px 0; }
.hii-stat {
  background: rgba(11,11,18,0.7);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line-2);
  border-radius: 14px;
  padding: 14px 16px;
  display: flex; align-items: center; gap: 14px;
  animation: slideIn 0.6s both;
}
.hii-stat:nth-child(1) { animation-delay: 0.6s; }
.hii-stat:nth-child(2) { animation-delay: 0.8s; }
.hii-stat:nth-child(3) { animation-delay: 1s; }
@keyframes slideIn {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}
.hii-stat-icon { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; flex-shrink: 0; }
.hii-stat.purple .hii-stat-icon { background: var(--p-soft); color: var(--p-bright); border: 1px solid var(--line-p); }
.hii-stat.emerald .hii-stat-icon { background: var(--emerald-soft); color: var(--emerald-bright); border: 1px solid rgba(16,185,129,0.25); }
.hii-stat.cyan .hii-stat-icon { background: var(--cyan-soft); color: var(--cyan-bright); border: 1px solid rgba(6,182,212,0.25); }
.hii-stat-text { flex: 1; }
.hii-stat-label {
  font-family: var(--f-mono); font-size: 10px;
  color: var(--t3); text-transform: uppercase;
  letter-spacing: 0.08em; margin-bottom: 3px;
}
.hii-stat-val {
  font-size: 18px; font-weight: 600;
  letter-spacing: -0.02em; font-variant-numeric: tabular-nums;
  color: var(--t1);
}
.hii-stat-trend { font-family: var(--f-mono); font-size: 11px; font-weight: 500; }
.hii-stat.purple .hii-stat-trend { color: var(--p-bright); }
.hii-stat.emerald .hii-stat-trend { color: var(--emerald-bright); }
.hii-stat.cyan .hii-stat-trend { color: var(--cyan-bright); }
.hii-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 13px 15px;
  background: rgba(6,6,10,0.7);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: 12px;
}
.hii-bottom-text { font-family: var(--f-mono); font-size: 11px; color: var(--t2); }
.hii-bottom-text strong { color: var(--t1); font-weight: 600; }
.hii-bottom-deploy {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--f-mono); font-size: 11px;
  color: var(--emerald-bright); font-weight: 500;
}
.hii-bottom-deploy::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--emerald); box-shadow: 0 0 6px var(--emerald);
  animation: pulse 1.8s infinite;
}
.float-badge {
  position: absolute; z-index: 5;
  padding: 11px 15px;
  background: linear-gradient(180deg, var(--ink-4), var(--ink-3));
  border: 1px solid var(--line-2);
  border-radius: 14px;
  font-size: 12px; font-family: var(--f-mono);
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 24px 48px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.06);
  animation: floaty 6s ease-in-out infinite;
}
.float-badge .ico {
  width: 34px; height: 34px; border-radius: 9px;
  display: grid; place-items: center; color: white;
  flex-shrink: 0;
}
.float-badge.emerald .ico { background: linear-gradient(135deg, var(--emerald-bright), var(--emerald)); }
.float-badge.orange .ico { background: linear-gradient(135deg, var(--orange-bright), var(--orange)); }
.float-badge .lbl { color: var(--t3); font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.float-badge .val { color: var(--t1); font-weight: 700; font-size: 15px; letter-spacing: -0.01em; }
.fb-savings { top: 30px; right: -32px; animation-delay: 0s; }
.fb-uptime { bottom: 60px; left: -40px; animation-delay: -3s; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; text-align: center; }
  .hero-text { margin: 0 auto; }
  .hero-meta, .hero-ctas { justify-content: center; }
  .hero-image-card { transform: none; max-width: 480px; margin: 0 auto; }
  .float-badge { display: none; }
}

/* ============================================
   TRUST STRIP — REAL SVG LOGOS
   ============================================ */
.trust {
  position: relative; z-index: 3;
  padding: 56px 0;
  background: var(--ink-1);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 800px 200px at 50% 50%, rgba(118,73,214,0.08), transparent 60%);
  pointer-events: none;
}
.trust-label {
  text-align: center; font-family: var(--f-mono);
  font-size: 11px; color: var(--t-mono);
  letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 36px;
  position: relative; z-index: 1;
  font-weight: 500;
}
.trust-logos {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: clamp(32px, 5vw, 64px);
  position: relative; z-index: 1;
}
.tlogo {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--t2);
  opacity: 0.7; transition: all 0.3s;
  font-weight: 600; font-size: 16px; letter-spacing: -0.015em;
}
.tlogo:hover { opacity: 1; color: var(--t1); transform: translateY(-2px); }
.tlogo svg { width: 24px; height: 24px; flex-shrink: 0; }

/* ============================================
   PROBLEMS — fewer, bigger, harder hitting
   ============================================ */
.problems {
  background: var(--mood-warm);
  position: relative; overflow: hidden;
}
.problems::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 700px 500px at 80% 20%, rgba(255,122,69,0.08), transparent 60%),
    radial-gradient(ellipse 700px 500px at 10% 80%, rgba(118,73,214,0.08), transparent 60%);
}
.problems::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black, transparent 80%);
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.prob {
  position: relative;
  padding: 36px 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.005));
  overflow: hidden;
  transition: all 0.3s;
  min-height: 280px;
  display: flex; flex-direction: column;
}
.prob::before {
  content: ''; position: absolute; inset: 0; border-radius: 18px; padding: 1px;
  background: radial-gradient(400px circle at var(--mx,50%) var(--my,50%), var(--orange) 0%, transparent 40%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity 0.3s; pointer-events: none;
}
.prob:hover::before { opacity: 1; }
.prob:hover { transform: translateY(-3px); }
.prob-num {
  position: absolute; top: 24px; right: 28px;
  font-family: var(--f-mono); font-size: 11px;
  color: var(--t3); letter-spacing: 0.06em; font-weight: 500;
}
.prob-icon {
  width: 48px; height: 48px; border-radius: 13px;
  background: var(--orange-soft);
  border: 1px solid rgba(255,122,69,0.3);
  display: grid; place-items: center;
  margin-bottom: 24px;
  color: var(--orange-bright);
}
.prob h3 {
  font-size: 18px; font-weight: 600;
  letter-spacing: -0.015em; margin-bottom: 12px;
  color: var(--t1);
}
.prob p {
  font-size: 14px; color: var(--t2);
  line-height: 1.6;
  flex: 1;
}
.prob-bar {
  margin-top: 22px; height: 5px;
  background: rgba(255,255,255,0.06);
  border-radius: 3px; overflow: hidden;
  position: relative;
}
.prob-bar::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--orange), var(--orange-bright));
  width: var(--w,50%);
  border-radius: 3px;
  transform: scaleX(0); transform-origin: left;
  transition: transform 1.4s cubic-bezier(.2,.8,.2,1);
  box-shadow: 0 0 8px rgba(255,122,69,0.5);
}
.prob.in .prob-bar::after { transform: scaleX(1); }
.prob-stat {
  margin-top: 12px;
  display: flex; justify-content: space-between;
  font-family: var(--f-mono); font-size: 11px;
  color: var(--t3); font-weight: 500;
}
.prob-stat strong { color: var(--orange-bright); font-weight: 600; }

@media (max-width: 1000px) { .problems-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .problems-grid { grid-template-columns: 1fr; } }

/* ============================================
   SERVICES
   ============================================ */
.services-sec {
  background: var(--mood-violet);
  position: relative;
}
.services-sec::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 900px 600px at 50% 30%, rgba(118,73,214,0.12), transparent 65%);
}

.services {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}
.service {
  grid-column: span 6;
  position: relative;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s;
  background: var(--ink-3);
}
.service::before {
  content: ''; position: absolute; inset: 0;
  border-radius: 24px; padding: 1px;
  background: radial-gradient(500px circle at var(--mx,50%) var(--my,50%), var(--p-bright) 0%, transparent 50%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity 0.3s;
  pointer-events: none; z-index: 5;
}
.service:hover::before { opacity: 1; }
.service:hover { transform: translateY(-5px); box-shadow: 0 30px 60px -20px rgba(118,73,214,0.4); }
.service-img {
  position: relative; height: 220px; overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.service-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s cubic-bezier(.2,.8,.2,1);
}
.service:hover .service-img img { transform: scale(1.06); }
.service-img::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, transparent 30%, rgba(19,19,28,0.95) 100%),
    linear-gradient(135deg, rgba(118,73,214,0.4) 0%, transparent 60%);
}
.service-img .img-tag {
  position: absolute; top: 20px; left: 20px; z-index: 2;
  font-family: var(--f-mono); font-size: 11px;
  padding: 6px 13px;
  background: rgba(6,6,10,0.7);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  color: var(--t1); letter-spacing: 0.04em;
}
.service-img .img-num {
  position: absolute; top: 20px; right: 20px; z-index: 2;
  font-family: var(--f-mono); font-size: 11px;
  color: var(--t2); letter-spacing: 0.12em;
}
.service-body { padding: 34px; }
.service-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(118,73,214,0.25), rgba(118,73,214,0.05));
  border: 1px solid var(--line-p);
  display: grid; place-items: center;
  margin-bottom: 22px;
  color: var(--p-bright);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}
.service h3 {
  font-size: 24px; font-weight: 600;
  letter-spacing: -0.025em; margin-bottom: 12px;
  color: var(--t1);
}
.service-desc {
  color: var(--t2);
  font-size: 15px; line-height: 1.6;
  margin-bottom: 22px;
}
.service-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-bottom: 26px;
}
.service-tag {
  font-family: var(--f-mono); font-size: 11px;
  padding: 5px 11px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--t2);
  transition: all 0.2s;
}
.service:hover .service-tag {
  border-color: var(--line-p);
  color: var(--t1);
  background: var(--p-soft);
}
.service-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 500;
  color: var(--p-bright);
  transition: gap 0.25s;
}
.service:hover .service-link { gap: 12px; }

@media (max-width: 880px) {
  .service { grid-column: span 12; }
}

/* ============================================
   FEATURED CASE STUDY — magazine spread
   ============================================ */
.feature-case {
  background: var(--ink-1);
  position: relative; overflow: hidden;
}
.feature-case::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 800px 500px at 80% 0%, rgba(16,185,129,0.06), transparent 60%),
    radial-gradient(ellipse 800px 500px at 20% 100%, rgba(118,73,214,0.10), transparent 60%);
}

.fcase-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.fcase-text {
  position: relative;
}
.fcase-quote {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--t1);
  margin-bottom: 32px;
  position: relative;
  padding-left: 28px;
}
.fcase-quote::before {
  content: '';
  position: absolute; left: 0; top: 8px; bottom: 8px;
  width: 4px;
  background: linear-gradient(180deg, var(--p-bright), var(--p), transparent);
  border-radius: 2px;
}
.fcase-author {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 48px;
}
.fcase-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  overflow: hidden; flex-shrink: 0;
  border: 2px solid var(--line-p);
  box-shadow: 0 4px 16px var(--p-glow);
}
.fcase-avatar img { width: 100%; height: 100%; object-fit: cover; }
.fcase-author-name { font-weight: 600; font-size: 15px; margin-bottom: 2px; color: var(--t1); }
.fcase-author-role { font-size: 13px; color: var(--t3); font-family: var(--f-mono); }

.fcase-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.fcase-metric { text-align: left; }
.fcase-metric-val {
  font-size: 36px; font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1; margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}
.fcase-metric:nth-child(1) .fcase-metric-val {
  background: linear-gradient(135deg, #fff, var(--emerald-bright));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.fcase-metric:nth-child(2) .fcase-metric-val {
  background: linear-gradient(135deg, #fff, var(--p-bright));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.fcase-metric:nth-child(3) .fcase-metric-val {
  background: linear-gradient(135deg, #fff, var(--cyan-bright));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.fcase-metric-lbl {
  font-size: 13px; color: var(--t3); line-height: 1.4;
}

.fcase-image-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line-2);
  aspect-ratio: 4 / 5;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}
.fcase-image-wrap img {
  width: 100%; height: 100%; object-fit: cover;
}
.fcase-image-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(6,6,10,0.85));
}
.fcase-badge {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
  z-index: 2; display: flex;
  flex-direction: column; gap: 14px;
}
.fcase-badge-tag {
  display: inline-flex; align-items: center; gap: 8px;
  align-self: flex-start;
  padding: 7px 14px;
  background: rgba(6,6,10,0.75);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-family: var(--f-mono); font-size: 11px;
  color: var(--t1); letter-spacing: 0.05em;
}
.fcase-badge-tag .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 8px var(--emerald);
}
.fcase-badge-title {
  font-size: 22px; font-weight: 600;
  letter-spacing: -0.02em; color: var(--t1);
}
.fcase-badge-stack {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.fcase-badge-stack span {
  font-family: var(--f-mono); font-size: 10px;
  padding: 4px 9px;
  background: rgba(6,6,10,0.6);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--t-mono); letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .fcase-wrap { grid-template-columns: 1fr; gap: 50px; }
  .fcase-image-wrap { max-width: 480px; margin: 0 auto; }
}

/* ============================================
   COMPARISON: WITH vs WITHOUT
   ============================================ */
.compare {
  background: var(--mood-warm);
  position: relative; overflow: hidden;
}
.compare::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 800px 500px at 20% 30%, rgba(255,122,69,0.06), transparent 60%),
    radial-gradient(ellipse 800px 500px at 80% 70%, rgba(118,73,214,0.10), transparent 60%);
}

.cmp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  position: relative;
}
.cmp-vs {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ink-4), var(--ink-3));
  border: 1px solid var(--line-2);
  display: grid; place-items: center;
  font-family: var(--f-mono);
  font-weight: 700;
  font-size: 13px;
  color: var(--t1);
  letter-spacing: 0.05em;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}
.cmp-col {
  padding: 48px 40px;
  position: relative;
}
.cmp-col.bad {
  background: linear-gradient(180deg, rgba(255,122,69,0.05), rgba(255,122,69,0.02));
  border-right: 1px solid var(--line);
}
.cmp-col.good {
  background: linear-gradient(180deg, rgba(118,73,214,0.10), rgba(118,73,214,0.03));
}
.cmp-head {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.cmp-icon {
  width: 42px; height: 42px; border-radius: 11px;
  display: grid; place-items: center;
}
.cmp-col.bad .cmp-icon { background: var(--orange-soft); border: 1px solid rgba(255,122,69,0.3); color: var(--orange-bright); }
.cmp-col.good .cmp-icon { background: var(--p-soft); border: 1px solid var(--line-p); color: var(--p-bright); }
.cmp-head-text { flex: 1; }
.cmp-head-label {
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 4px;
}
.cmp-col.bad .cmp-head-label { color: var(--orange-bright); }
.cmp-col.good .cmp-head-label { color: var(--p-bright); }
.cmp-head-title {
  font-size: 20px; font-weight: 600;
  letter-spacing: -0.02em; color: var(--t1);
}
.cmp-list { display: flex; flex-direction: column; gap: 14px; }
.cmp-item {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px;
  color: var(--t2);
  line-height: 1.5;
}
.cmp-item .ico {
  width: 22px; height: 22px; border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0; margin-top: 1px;
}
.cmp-col.bad .ico {
  background: rgba(255,122,69,0.12);
  color: var(--orange-bright);
}
.cmp-col.good .ico {
  background: rgba(74,222,154,0.15);
  color: var(--emerald-bright);
}
.cmp-item .ico svg { width: 12px; height: 12px; }

@media (max-width: 800px) {
  .cmp-grid { grid-template-columns: 1fr; }
  .cmp-col.bad { border-right: none; border-bottom: 1px solid var(--line); }
  .cmp-vs { left: 50%; top: 50%; transform: translate(-50%, -50%); }
}

/* ============================================
   OUTCOMES BAND — big number panel
   ============================================ */
.outcomes-sec {
  background: var(--mood-band);
  position: relative;
  overflow: hidden;
}
.outcomes-sec::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 900px 600px at 20% 40%, rgba(118,73,214,0.28), transparent 60%),
    radial-gradient(ellipse 700px 500px at 80% 60%, rgba(236,72,153,0.14), transparent 60%);
}
.outcomes-sec::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle at center, rgba(180,158,255,0.4) 0.5px, transparent 1px);
  background-size: 30px 30px;
  mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black, transparent 80%);
  opacity: 0.3;
}

.outcomes-wrap {
  position: relative;
  border: 1px solid var(--line-p);
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 600px 300px at 50% 0%, rgba(118,73,214,0.18), transparent 60%),
    linear-gradient(180deg, var(--ink-4), var(--ink-3));
  box-shadow: 0 30px 80px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.06);
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.outcome {
  padding: 56px 32px;
  border-right: 1px solid var(--line);
  position: relative; text-align: center;
}
.outcome:last-child { border-right: none; }
.outcome::after {
  content: ''; position: absolute; bottom: 0; left: 50%;
  width: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--p-bright), transparent);
  transform: translateX(-50%);
  transition: width 0.6s;
  box-shadow: 0 0 12px var(--p-bright);
}
.outcome.in::after { width: 80%; }
.outcome-icon {
  width: 46px; height: 46px; border-radius: 12px;
  margin: 0 auto 22px;
  display: grid; place-items: center;
}
.outcome:nth-child(1) .outcome-icon { background: var(--emerald-soft); border: 1px solid rgba(16,185,129,0.3); color: var(--emerald-bright); }
.outcome:nth-child(2) .outcome-icon { background: var(--p-soft); border: 1px solid var(--line-p); color: var(--p-bright); }
.outcome:nth-child(3) .outcome-icon { background: var(--cyan-soft); border: 1px solid rgba(6,182,212,0.3); color: var(--cyan-bright); }
.outcome:nth-child(4) .outcome-icon { background: var(--orange-soft); border: 1px solid rgba(255,122,69,0.3); color: var(--orange-bright); }
.outcome-val {
  font-size: clamp(42px, 5vw, 62px);
  font-weight: 600; letter-spacing: -0.04em;
  line-height: 1; margin-bottom: 16px;
  font-variant-numeric: tabular-nums;
}
.outcome:nth-child(1) .outcome-val { background: linear-gradient(135deg, #fff, var(--emerald-bright)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.outcome:nth-child(2) .outcome-val { background: linear-gradient(135deg, #fff, var(--p-bright)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.outcome:nth-child(3) .outcome-val { background: linear-gradient(135deg, #fff, var(--cyan-bright)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.outcome:nth-child(4) .outcome-val { background: linear-gradient(135deg, #fff, var(--orange-bright)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.outcome-lbl {
  font-size: 15px; color: var(--t2);
  line-height: 1.5; margin-bottom: 12px;
  font-weight: 500;
}
.outcome-meta {
  font-family: var(--f-mono); font-size: 11px;
  color: var(--t3); letter-spacing: 0.04em;
}
@media (max-width: 900px) {
  .outcomes-grid { grid-template-columns: repeat(2, 1fr); }
  .outcome:nth-child(2) { border-right: none; }
  .outcome:nth-child(1), .outcome:nth-child(2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 540px) {
  .outcomes-grid { grid-template-columns: 1fr; }
  .outcome { border-right: none; border-bottom: 1px solid var(--line); }
  .outcome:last-child { border-bottom: none; }
}

/* ============================================
   PROMISE — manifesto + Trustpilot, NOT a 3-up grid
   ============================================ */
:root {
  --tp-green: #00B67A;
  --tp-green-soft: rgba(0,182,122,0.10);
  --tp-green-line: rgba(0,182,122,0.30);
  --tp-green-bright: #1ED698;
}

.promise {
  background: var(--ink-1);
  position: relative; overflow: hidden;
}
.promise::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 800px 500px at 15% 20%, rgba(0,182,122,0.06), transparent 60%),
    radial-gradient(ellipse 800px 500px at 85% 80%, rgba(118,73,214,0.12), transparent 60%);
}
.promise::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black, transparent 85%);
}

.promise-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}

/* ===== LEFT — headline + Trustpilot only ===== */
.promise-left { position: sticky; top: 100px; }

.promise-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-mono); font-size: 11px;
  color: var(--p-bright);
  letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 22px;
  padding: 6px 14px;
  border: 1px solid var(--line-p);
  background: var(--p-soft);
  border-radius: 999px;
}
.promise-eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--p-bright); box-shadow: 0 0 10px var(--p-bright);
}

.promise-heading {
  font-size: clamp(32px, 3.6vw, 46px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.0;
  margin-bottom: 32px;
  color: var(--t1);
}
.promise-heading em {
  font-family: var(--f-serif);
  font-style: italic; font-weight: 400;
  background: linear-gradient(135deg, #D4BFFF, var(--p-bright));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* TRUSTPILOT CARD — compact */
.tp-card {
  border: 1px solid var(--tp-green-line);
  border-radius: 18px;
  padding: 22px;
  background:
    radial-gradient(ellipse 400px 200px at 50% 0%, var(--tp-green-soft), transparent 60%),
    linear-gradient(180deg, var(--ink-3), var(--ink-2));
  position: relative;
  overflow: hidden;
  max-width: 380px;
}
.tp-card::before {
  content: '';
  position: absolute; top: -1px; left: 20px; right: 20px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--tp-green), transparent);
  box-shadow: 0 0 12px var(--tp-green);
}

.tp-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}
.tp-logo {
  display: flex; align-items: center; gap: 8px;
  font-weight: 700;
  font-size: 14px;
  color: var(--t1);
  letter-spacing: -0.015em;
}
.tp-logo-star {
  width: 22px; height: 22px;
  background: var(--tp-green);
  display: grid; place-items: center;
  border-radius: 2px;
}
.tp-logo-star svg { width: 16px; height: 16px; color: white; }

.tp-verdict {
  font-family: var(--f-mono); font-size: 10px;
  color: var(--tp-green-bright);
  background: var(--tp-green-soft);
  border: 1px solid var(--tp-green-line);
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.tp-score-row {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 14px;
}
.tp-stars { display: flex; gap: 3px; }
.tp-stars .tps {
  width: 22px; height: 22px;
  background: var(--tp-green);
  display: grid; place-items: center;
  border-radius: 3px;
}
.tp-stars .tps svg { width: 16px; height: 16px; color: white; }

.tp-score {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--t1);
  font-variant-numeric: tabular-nums;
}
.tp-score span {
  color: var(--t3);
  font-weight: 400;
  font-size: 16px;
}

.tp-meta {
  font-family: var(--f-mono); font-size: 11px;
  color: var(--t3);
  letter-spacing: 0.02em;
}
.tp-meta strong { color: var(--t1); font-weight: 600; }

/* ===== RIGHT — always-visible text commitments ===== */
.commitments {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.commitment {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px 8px;
  border-bottom: 1px solid var(--line);
  position: relative;
  cursor: default;
  transition: padding 0.4s cubic-bezier(.2,.8,.2,1);
}

.commitment::before {
  content: '';
  position: absolute;
  left: -16px; top: 50%;
  width: 3px; height: 0;
  background: linear-gradient(180deg, var(--p-bright), var(--p));
  border-radius: 2px;
  transform: translateY(-50%);
  transition: height 0.4s;
  box-shadow: 0 0 12px var(--p-bright);
}
.commitment:hover { padding-left: 20px; }
.commitment:hover::before { height: 70%; }

.commitment-num {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 44px;
  line-height: 1;
  font-weight: 400;
  background: linear-gradient(180deg, var(--p-bright), var(--p));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  letter-spacing: -0.04em;
  min-width: 52px;
  align-self: start;
  padding-top: 2px;
}

.commitment-main { flex: 1; }
.commitment h3 {
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--t1);
  line-height: 1.2;
  margin: 0 0 6px 0;
}
.commitment h3 em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, #D4BFFF, var(--p-bright));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.commitment p {
  font-size: 14.5px;
  color: var(--t2);
  line-height: 1.55;
  max-width: 480px;
  margin: 0;
}

.commitment-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--ink-4), var(--ink-3));
  border: 1px solid var(--line-p);
  display: grid; place-items: center;
  color: var(--p-bright);
  flex-shrink: 0;
  transition: all 0.3s;
}
.commitment:hover .commitment-icon {
  background: linear-gradient(135deg, var(--p), var(--p-deep));
  color: #fff;
  border-color: var(--p);
}

@media (max-width: 1000px) {
  .promise-wrap { grid-template-columns: 1fr; gap: 40px; }
  .promise-left { position: relative; top: 0; }
  .tp-card { max-width: 100%; }
}
@media (max-width: 600px) {
  .commitment { gap: 16px; padding: 22px 4px; }
  .commitment-num { font-size: 34px; min-width: 40px; }
  .commitment-icon { width: 38px; height: 38px; }
}

/* ============================================
   TEAM
   ============================================ */
.team-sec {
  background: var(--mood-violet);
  position: relative; overflow: hidden;
}
.team-sec::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 700px 500px at 20% 30%, rgba(118,73,214,0.10), transparent 60%),
    radial-gradient(ellipse 700px 500px at 80% 70%, rgba(236,72,153,0.06), transparent 60%);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.member {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: var(--ink-3);
  transition: all 0.4s;
}
.member:hover {
  border-color: var(--line-p);
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -20px rgba(118,73,214,0.3);
}
.member-img {
  position: relative;
  aspect-ratio: 1 / 1.1;
  overflow: hidden;
}
.member-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s cubic-bezier(.2,.8,.2,1);
  filter: grayscale(20%) contrast(1.05);
}
.member:hover .member-img img { transform: scale(1.05); filter: grayscale(0%) contrast(1.05); }
.member-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(19,19,28,0.95) 100%),
    linear-gradient(135deg, rgba(118,73,214,0.18), transparent 60%);
}
.member-body {
  padding: 22px 22px 24px;
}
.member-name {
  font-size: 16px; font-weight: 600;
  letter-spacing: -0.015em; margin-bottom: 4px;
  color: var(--t1);
}
.member-role {
  font-family: var(--f-mono); font-size: 11px;
  color: var(--p-bright);
  letter-spacing: 0.03em; margin-bottom: 14px;
}
.member-certs {
  display: flex; flex-wrap: wrap; gap: 5px;
}
.member-certs span {
  font-family: var(--f-mono); font-size: 9.5px;
  padding: 3px 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--t-mono);
  letter-spacing: 0.04em; text-transform: uppercase;
  font-weight: 500;
}

@media (max-width: 1000px) { .team-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .team-grid { grid-template-columns: 1fr; } }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testi-sec {
  background: var(--mood-warm);
  position: relative; overflow: hidden;
}
.testi-sec::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 700px 500px at 80% 30%, rgba(255,122,69,0.08), transparent 60%),
    radial-gradient(ellipse 700px 500px at 20% 70%, rgba(118,73,214,0.10), transparent 60%);
}

.testi-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 20px;
}
.testi-main {
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 52px;
  background:
    radial-gradient(ellipse 600px 300px at 100% 100%, rgba(118,73,214,0.14), transparent 60%),
    linear-gradient(180deg, var(--ink-3), var(--ink-2));
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.testi-main::before {
  content: '"';
  position: absolute; top: -50px; right: 28px;
  font-family: Georgia, serif;
  font-size: 300px; font-weight: 700;
  color: var(--p);
  opacity: 0.12; line-height: 1;
}
.testi-stars { display: flex; gap: 3px; margin-bottom: 24px; position: relative; z-index: 1; }
.testi-stars svg { width: 18px; height: 18px; color: var(--orange-bright); }
.testi-text {
  font-size: clamp(19px, 1.9vw, 23px);
  line-height: 1.45;
  letter-spacing: -0.015em;
  color: var(--t1); margin-bottom: 36px;
  flex: 1; position: relative; z-index: 1;
}
.testi-author {
  display: flex; align-items: center; gap: 16px;
  position: relative; z-index: 1;
}
.testi-avatar {
  width: 54px; height: 54px; border-radius: 50%;
  overflow: hidden; flex-shrink: 0;
  border: 2px solid var(--line-p);
  box-shadow: 0 4px 16px var(--p-glow);
}
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-info .name {
  font-weight: 600; font-size: 16px; color: var(--t1);
  letter-spacing: -0.01em; margin-bottom: 2px;
}
.testi-info .role {
  font-size: 13px; color: var(--t-mono);
  font-family: var(--f-mono);
}

.testi-vids { display: flex; flex-direction: column; gap: 16px; }
.testi-video {
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 20px;
  position: relative; overflow: hidden;
  cursor: pointer;
  transition: all 0.35s;
  min-height: 175px;
  display: flex; align-items: flex-end;
  padding: 22px;
}
.testi-video img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.55;
  transition: transform 0.7s, opacity 0.4s;
}
.testi-video-player {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 0;
}
.testi-video.playing img { opacity: 0; }
.testi-video.playing .testi-video-player { opacity: 1; }
.testi-video.playing .play-btn,
.testi-video.playing .testi-vid-info { opacity: 0; pointer-events: none; }
.testi-video:hover img { transform: scale(1.06); opacity: 0.75; }
.testi-video.playing:hover img { opacity: 0; }
.testi-video::before {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, transparent 30%, rgba(6,6,10,0.88)),
    linear-gradient(135deg, rgba(118,73,214,0.25), transparent 50%);
  z-index: 1;
}
.testi-video:hover { border-color: var(--line-p); }
.play-btn {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(255,255,255,0.13);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.25);
  display: grid; place-items: center;
  transition: all 0.3s;
  z-index: 3;
}
.play-btn::after {
  content: ''; position: absolute; inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--p-bright);
  opacity: 0;
  transition: opacity 0.3s;
  animation: ripple 1.5s infinite;
  animation-play-state: paused;
}
.testi-video:hover .play-btn {
  background: var(--p);
  border-color: var(--p);
  transform: translate(-50%, -50%) scale(1.1);
}
.testi-video:hover .play-btn::after { opacity: 1; animation-play-state: running; }
@keyframes ripple {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.6); opacity: 0; }
}
.play-btn svg { color: white; width: 22px; height: 22px; margin-left: 3px; }
.testi-vid-info { position: relative; z-index: 2; }
.testi-vid-info .name { font-size: 15px; font-weight: 600; color: var(--t1); margin-bottom: 2px; }
.testi-vid-info .role { font-size: 12px; color: var(--t2); font-family: var(--f-mono); }
.testi-vid-info .duration {
  display: inline-block; margin-top: 8px;
  font-family: var(--f-mono); font-size: 10px;
  color: var(--t-mono);
  padding: 3px 9px;
  background: rgba(6,6,10,0.6);
  border-radius: 5px; letter-spacing: 0.06em;
}

@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; } }

/* ============================================
   FAQ
   ============================================ */
.faq-sec {
  background: var(--ink-1);
  position: relative;
}
.faq-sec::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 700px 400px at 50% 50%, rgba(118,73,214,0.08), transparent 60%);
}
.faq-wrap {
  display: grid;
  grid-template-columns: 0.6fr 1fr;
  gap: 60px;
  align-items: start;
}
.faq-side {
  position: sticky; top: 100px;
}
.faq-side h2 {
  font-size: clamp(30px, 3.5vw, 42px);
  font-weight: 600; letter-spacing: -0.03em;
  line-height: 1.1; margin-bottom: 18px;
  color: var(--t1);
}
.faq-side h2 em {
  font-family: var(--f-serif);
  font-style: italic; font-weight: 400;
  background: linear-gradient(135deg, #D4BFFF, var(--p-bright));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.faq-side p {
  font-size: 16px; color: var(--t2);
  line-height: 1.6; margin-bottom: 28px;
}
.faq-side-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 20px;
  border: 1px solid var(--line-p);
  background: var(--p-soft);
  border-radius: 11px;
  color: var(--p-bright);
  font-size: 14px; font-weight: 500;
  transition: all 0.2s;
}
.faq-side-cta:hover {
  background: var(--p);
  color: white;
  border-color: var(--p);
}

.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,0.02);
  overflow: hidden;
  transition: all 0.3s;
}
.faq-item:hover { border-color: var(--line-2); background: rgba(255,255,255,0.04); }
.faq-item.open {
  border-color: var(--line-p);
  background: var(--p-faint);
}
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
}
.faq-q-text {
  font-size: 16px; font-weight: 500;
  color: var(--t1);
  letter-spacing: -0.01em;
}
.faq-q-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--t2);
  transition: all 0.3s;
}
.faq-item.open .faq-q-icon {
  background: var(--p);
  border-color: var(--p);
  color: white;
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.open .faq-a {
  max-height: 400px;
}
.faq-a-inner {
  padding: 0 24px 24px;
  font-size: 15px; color: var(--t2);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .faq-wrap { grid-template-columns: 1fr; gap: 40px; }
  .faq-side { position: relative; top: 0; }
}

/* ============================================
   TECH STACK MARQUEE
   ============================================ */
.stack {
  padding: 60px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: var(--ink-1);
  position: relative;
}
.stack::before, .stack::after {
  content: ''; position: absolute; top: 0; bottom: 0;
  width: 140px; z-index: 2; pointer-events: none;
}
.stack::before { left: 0; background: linear-gradient(90deg, var(--ink-1), transparent); }
.stack::after { right: 0; background: linear-gradient(-90deg, var(--ink-1), transparent); }
.stack-label {
  text-align: center; font-family: var(--f-mono);
  font-size: 11px; color: var(--t-mono);
  letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 36px; font-weight: 600;
}
.marquee {
  display: flex; gap: 56px;
  animation: scroll 50s linear infinite;
  width: max-content;
}
.marquee-item {
  display: flex; align-items: center; gap: 10px;
  font-weight: 500; font-size: 18px;
  color: var(--t2); letter-spacing: -0.01em;
  white-space: nowrap;
  opacity: 0.7; transition: opacity 0.2s, color 0.2s;
}
.marquee-item:hover { opacity: 1; color: var(--p-bright); }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   FINAL CTA
   ============================================ */
.cta-sec {
  background: var(--ink-2);
  position: relative; overflow: hidden;
}
.cta-card {
  position: relative;
  border: 1px solid var(--line-p);
  border-radius: 34px;
  padding: clamp(64px, 8vw, 110px) clamp(28px, 5vw, 64px);
  background:
    radial-gradient(ellipse 800px 500px at 50% 0%, rgba(118,73,214,0.35), transparent 65%),
    radial-gradient(ellipse 600px 400px at 100% 100%, rgba(236,72,153,0.16), transparent 60%),
    radial-gradient(ellipse 600px 400px at 0% 100%, rgba(255,122,69,0.1), transparent 60%),
    linear-gradient(180deg, var(--ink-4), var(--ink-3));
  text-align: center;
  overflow: hidden;
}
.cta-card::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at center, black, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black, transparent 70%);
  pointer-events: none;
}
.cta-card > * { position: relative; z-index: 1; }
.cta-card h2 {
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 600; letter-spacing: -0.035em;
  line-height: 1.02; margin-bottom: 22px;
  max-width: 760px; margin-left: auto; margin-right: auto;
  color: var(--t1);
}
.cta-card h2 em {
  font-family: var(--f-serif); font-style: italic; font-weight: 400;
  background: linear-gradient(180deg, #FFFFFF, var(--p-bright));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.cta-card p {
  font-size: 18px; color: var(--t2);
  max-width: 580px; margin: 0 auto 40px;
  line-height: 1.55;
}
.cta-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-trust {
  margin-top: 38px;
  font-family: var(--f-mono); font-size: 12px;
  color: var(--t-mono);
  display: flex; gap: 28px; justify-content: center; flex-wrap: wrap;
}
.cta-trust span { display: inline-flex; align-items: center; gap: 8px; }
.cta-trust span::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--emerald-bright);
  box-shadow: 0 0 8px var(--emerald);
}
.orbit { position: absolute; top: 50%; left: 50%; width: 100%; height: 100%; pointer-events: none; opacity: 0.6; }
.orbit-ring {
  position: absolute; top: 50%; left: 50%;
  border: 1px solid var(--line-p);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.ring-1 { width: 440px; height: 440px; animation: spin 30s linear infinite; }
.ring-2 { width: 640px; height: 640px; animation: spin 50s linear infinite reverse; }
.ring-3 { width: 840px; height: 840px; animation: spin 70s linear infinite; }
.ring-1::before, .ring-2::before, .ring-3::before {
  content: ''; position: absolute; top: -4px; left: 50%;
  transform: translateX(-50%);
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--p-bright);
  box-shadow: 0 0 14px var(--p-bright);
}
.ring-2::before { background: var(--orange-bright); box-shadow: 0 0 14px var(--orange-bright); }
.ring-3::before { background: var(--cyan-bright); box-shadow: 0 0 14px var(--cyan-bright); }
@keyframes spin {
  from { transform: translate(-50%, -50%) rotate(0); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ============================================
   FOOTER — premium multi-band
   ============================================ */
footer {
  position: relative; z-index: 2;
  background: var(--ink-1);
  border-top: 1px solid var(--line);
}

/* Footer band 1 — newsletter */
.foot-news {
  border-bottom: 1px solid var(--line);
  padding: 56px 0;
  position: relative; overflow: hidden;
}
.foot-news::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 600px 200px at 50% 100%, rgba(118,73,214,0.12), transparent 60%);
}
.foot-news-inner {
  display: grid; grid-template-columns: 1fr auto; gap: 40px;
  align-items: center; position: relative; z-index: 1;
}
.foot-news h3 {
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 600; letter-spacing: -0.025em;
  line-height: 1.15; margin-bottom: 8px;
  color: var(--t1);
}
.foot-news h3 em {
  font-family: var(--f-serif); font-style: italic; font-weight: 400;
  background: linear-gradient(135deg, #D4BFFF, var(--p-bright));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.foot-news p {
  font-size: 14px; color: var(--t2);
}
.foot-news-form {
  display: flex; gap: 8px;
  background: var(--ink-3);
  border: 1px solid var(--line-2);
  border-radius: 14px;
  padding: 6px;
  min-width: 380px;
}
.foot-news-form input {
  flex: 1; min-width: 0;
  background: none; border: none;
  padding: 12px 14px;
  color: var(--t1); font-family: inherit;
  font-size: 14px;
  outline: none;
}
.foot-news-form input::placeholder { color: var(--t3); }
.foot-news-form button {
  height: 44px; padding: 0 22px; border-radius: 10px;
  background: linear-gradient(135deg, var(--p-bright), var(--p));
  color: white; font-weight: 500; font-size: 14px;
  display: inline-flex; align-items: center; gap: 6px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(118,73,214,0.4);
}
.foot-news-form button:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(118,73,214,0.55); }

@media (max-width: 800px) {
  .foot-news-inner { grid-template-columns: 1fr; gap: 24px; }
  .foot-news-form { min-width: auto; width: 100%; }
}

/* Footer band 2 — main nav */
.foot-main {
  padding: 72px 0;
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 40px;
}
.foot-brand { max-width: 320px; }
.foot-brand .logo { margin-bottom: 18px; }
.foot-brand p {
  font-size: 14px; color: var(--t2);
  line-height: 1.6;
  margin-bottom: 24px;
}
.foot-contact {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 24px;
}
.foot-contact a {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--t2);
  font-family: var(--f-mono);
  transition: color 0.2s;
}
.foot-contact a:hover { color: var(--p-bright); }
.foot-contact .ico {
  width: 28px; height: 28px; border-radius: 7px;
  background: var(--ink-3);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--p-bright);
  flex-shrink: 0;
}
.foot-status {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 12px;
  background: var(--emerald-soft);
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: 8px;
  font-family: var(--f-mono); font-size: 11px;
  color: var(--emerald-bright);
  font-weight: 500;
}
.foot-status::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 8px var(--emerald);
  animation: pulse 2s infinite;
}

.foot-col h4 {
  font-family: var(--f-mono); font-size: 11px;
  color: var(--t-mono);
  letter-spacing: 0.15em; text-transform: uppercase;
  margin-bottom: 22px; font-weight: 600;
}
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.foot-col a {
  font-size: 14px; color: var(--t2);
  transition: color 0.2s; display: inline-flex; align-items: center; gap: 6px;
}
.foot-col a:hover { color: var(--p-bright); }
.foot-col a .new {
  font-family: var(--f-mono); font-size: 9px;
  padding: 2px 6px;
  background: var(--p-soft);
  border: 1px solid var(--line-p);
  border-radius: 4px;
  color: var(--p-bright);
  letter-spacing: 0.06em;
}

@media (max-width: 1000px) {
  .foot-main { grid-template-columns: 1fr 1fr; }
  .foot-brand { grid-column: 1 / -1; }
}
@media (max-width: 540px) { .foot-main { grid-template-columns: 1fr; } }

/* Footer band 3 — bottom */
.foot-bottom {
  border-top: 1px solid var(--line);
  padding: 28px 0;
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px; flex-wrap: wrap;
  font-size: 13px; color: var(--t-mono);
  font-family: var(--f-mono);
}
.foot-bottom-links { display: flex; gap: 24px; flex-wrap: wrap; }
.foot-bottom-links a:hover { color: var(--p-bright); }
.foot-socials { display: flex; gap: 8px; }
.foot-social {
  width: 38px; height: 38px; border-radius: 10px;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--t2);
  transition: all 0.25s;
}
.foot-social:hover {
  border-color: var(--p);
  color: var(--p-bright);
  background: var(--p-soft);
  transform: translateY(-2px);
}

/* Footer band 4 — giant brand mark */
.foot-mega {
  position: relative;
  height: clamp(120px, 18vw, 220px);
  overflow: hidden;
  border-top: 1px solid var(--line);
  display: grid; place-items: center;
}
.foot-mega-text {
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: clamp(80px, 18vw, 240px);
  letter-spacing: -0.06em;
  line-height: 0.9;
  background: linear-gradient(180deg, rgba(180,158,255,0.18), rgba(180,158,255,0.02));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  user-select: none;
  white-space: nowrap;
}

/* ============================================
   REVEAL
   ============================================ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s, transform 0.8s; }
.reveal.in { opacity: 1; transform: translateY(0); }

::selection { background: var(--p); color: white; }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--ink-2); }
::-webkit-scrollbar-thumb { background: var(--ink-4); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--p); }

/* ============================================
   MOBILE DRAWER
   ============================================ */
.drawer {
  position: fixed; inset: 0;
  background: rgba(6,6,10,0.97);
  backdrop-filter: blur(20px);
  z-index: 100;
  display: none;
  flex-direction: column;
  padding: 24px var(--pad);
}
.drawer.open { display: flex; }
.drawer-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 48px;
}
.drawer nav { display: flex; flex-direction: column; gap: 4px; }
.drawer nav a {
  padding: 20px 0;
  font-size: 24px; font-weight: 500;
  border-bottom: 1px solid var(--line);
  color: var(--t1);
}
.drawer .btn { margin-top: 32px; justify-content: center; }
