/* ═══════════════════════════════════════════════════════════════════════════
   web-al-platforms.com — Dark cinematic, Hebrew RTL, Awwwards-tier
   Palette: ink-deep #07060C | violet #6B21FF | pink #FF2E93 | cyan #00E5FF
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
  --ink:        #07060C;
  --ink-2:      #0E0C1A;
  --ink-3:      #171428;
  --line:       rgba(255,255,255,0.08);
  --line-2:     rgba(255,255,255,0.16);
  --fg:         #F5F2FF;
  --fg-dim:     #9C96B8;
  --fg-mute:    #6B6580;
  --violet:     #6B21FF;
  --violet-2:   #8B5CF6;
  --pink:       #FF2E93;
  --pink-2:     #FF5FB1;
  --cyan:       #00E5FF;
  --cyan-2:     #6EF4FF;
  --lime:       #D1FF4E;
  --gold:       #FFC857;
  --grad-1:     linear-gradient(135deg,#6B21FF 0%,#FF2E93 55%,#FFC857 100%);
  --grad-2:     linear-gradient(120deg,#00E5FF 0%,#6B21FF 100%);
  --grad-text:  linear-gradient(90deg,#6EF4FF 0%,#FF5FB1 55%,#FFC857 100%);
  --glow-v:     0 0 40px rgba(107,33,255,.5), 0 0 80px rgba(107,33,255,.25);
  --glow-p:     0 0 40px rgba(255,46,147,.5), 0 0 80px rgba(255,46,147,.25);
  --glow-c:     0 0 40px rgba(0,229,255,.5),  0 0 80px rgba(0,229,255,.25);
  --radius-sm:  10px;
  --radius:     16px;
  --radius-lg:  28px;
  --ease:       cubic-bezier(.22,1,.36,1);
  --ease-in:    cubic-bezier(.6,0,.35,1);
  /* Aliases — inline styles across the pages reference these names */
  --purple:     var(--violet);
  --fg-muted:   var(--fg-mute);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  background: var(--ink);
  color-scheme: dark;
}

body {
  font-family: 'Heebo', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--fg);
  background: var(--ink);
  direction: rtl;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; transition: color .2s var(--ease); }
img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

/* ── Keyboard focus (a11y) ────────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── Skip link (a11y) ─────────────────────────────────────────────────── */
.skip-link {
  position: fixed;
  top: -100px; right: 16px;
  z-index: 10000;
  padding: 10px 18px;
  background: var(--ink-3);
  color: var(--fg);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-size: 14px; font-weight: 600;
  transition: top .2s var(--ease);
}
.skip-link:focus-visible { top: 16px; }

::selection { background: var(--pink); color: var(--ink); }

/* ── Custom scrollbar ─────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg,var(--violet),var(--pink)); border-radius: 8px; }

/* ── Custom cursor (desktop only) ─────────────────────────────────────── */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  will-change: transform;
  mix-blend-mode: difference;
}
.cursor-dot {
  width: 8px; height: 8px;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%,-50%);
}
.cursor-ring {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 50%;
  transform: translate(-50%,-50%);
  transition: width .25s var(--ease), height .25s var(--ease), background .25s;
}
.cursor-ring.is-hover {
  width: 64px; height: 64px;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.9);
}
@media (max-width: 900px), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ── Layout utilities ──────────────────────────────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; position: relative; }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 24px; }
section { position: relative; padding: 120px 0; }
@media (max-width: 768px) { section { padding: 72px 0; } }

/* ── Typography ────────────────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12px; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--cyan);
  padding: 8px 14px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: rgba(0,229,255,.06);
}
.eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--cyan);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

h1, h2, h3, h4 {
  font-family: 'Heebo', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}

/* Elegant display family: Frank Ruhl Libre (Hebrew serif) + Cormorant Garamond (Latin serif, italic-leaning) */
.display-1 {
  font-family: 'Frank Ruhl Libre', 'Cormorant Garamond', 'Heebo', serif;
  font-size: clamp(54px, 9.2vw, 140px);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.025em;
  padding-block: 0.06em;
  overflow: visible;
}
.display-1 em { font-family: 'Cormorant Garamond', 'Frank Ruhl Libre', serif; font-style: italic; font-weight: 500; }
.display-2 {
  font-family: 'Frank Ruhl Libre', 'Cormorant Garamond', 'Heebo', serif;
  font-size: clamp(40px, 6.4vw, 92px);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.02em;
  padding-block: 0.06em;
  overflow: visible;
}
.display-2 em { font-family: 'Cormorant Garamond', 'Frank Ruhl Libre', serif; font-style: italic; font-weight: 500; }
.display-3 {
  font-size: clamp(32px, 4.2vw, 64px);
  font-weight: 800;
  line-height: 1.02;
}

.serif { font-family: 'Frank Ruhl Libre', 'Heebo', serif; font-weight: 500; font-style: italic; }

.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lede {
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--fg-dim);
  max-width: 620px;
  line-height: 1.6;
}

/* ── Background layers ─────────────────────────────────────────────────── */
.bg-grid {
  position: fixed; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  z-index: -2;
  mask-image: radial-gradient(ellipse at center, #000 40%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 40%, transparent 85%);
}
.bg-noise::after {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='.4'/></svg>");
  opacity: .05;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: -1;
}
#hero-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
  opacity: .9;
}

/* ── Nav ───────────────────────────────────────────────────────────────── */
.nav {
  /* --ub-h is set by pages that render the urgency bar (index.html);
     pages without the bar fall back to 0 so the nav docks to the top. */
  position: fixed; top: var(--ub-h, 0px); right: 0; left: 0;
  padding: 18px 0;
  z-index: 150;
  transition: background .3s var(--ease), backdrop-filter .3s var(--ease), padding .3s var(--ease), top .3s var(--ease);
}
body.ub-closed .nav{ top: 0 !important; }
.nav.is-scrolled {
  top: 0; /* the urgency bar scrolls away with the page — dock the nav */
  background: rgba(7,6,12,.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1360px; margin: 0 auto; padding: 0 32px;
}
.logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 18px; letter-spacing: -0.01em;
}
.logo-mark {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--grad-1);
  box-shadow: var(--glow-v);
  display: grid; place-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 900;
  color: var(--ink);
  font-size: 16px;
}
.nav-links {
  display: flex; align-items: center; gap: 28px;
}
.nav-links a {
  position: relative;
  font-size: 15px; font-weight: 500;
  color: var(--fg-dim);
  padding: 6px 0;
  transition: color .2s var(--ease);
}
.nav-links a:hover { color: var(--fg); }
.nav-links a::after {
  content: '';
  position: absolute; bottom: 0; right: 0;
  width: 0; height: 1px;
  background: var(--grad-1);
  transition: width .3s var(--ease);
}
.nav-links a:hover::after { width: 100%; }

/* ── Buttons ───────────────────────────────────────────────────────────── */
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  font-size: 15px; font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--grad-1);
  color: var(--ink);
  box-shadow: var(--glow-p);
}
.btn-primary:hover { box-shadow: 0 0 48px rgba(255,46,147,.7), 0 0 96px rgba(107,33,255,.4); }
.btn-ghost {
  background: linear-gradient(to left, rgba(0,229,255,.07) 0%, transparent 35%, transparent 65%, rgba(0,229,255,.07) 100%);
  color: var(--cyan-2);
  border: 1px solid rgba(0,229,255,.5);
  box-shadow: inset 0 0 18px rgba(0,229,255,.1), 0 0 14px rgba(0,229,255,.2), 0 4px 20px rgba(0,229,255,.12);
  text-shadow: 0 0 14px rgba(0,229,255,.65);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s, border-color .3s, color .3s;
}
.btn-ghost:hover {
  border-color: rgba(0,229,255,.95);
  background: rgba(0,229,255,.1);
  box-shadow: inset 0 0 30px rgba(0,229,255,.2), 0 0 28px rgba(0,229,255,.5), 0 6px 32px rgba(0,229,255,.3);
  color: #fff;
  text-shadow: 0 0 20px rgba(0,229,255,1), 0 0 42px rgba(0,229,255,.6);
}
.btn-lg { padding: 18px 34px; font-size: 16px; }
.btn .arrow { transition: transform .3s var(--ease); }
.btn:hover .arrow { transform: translateX(-4px); }

.btn-magnetic { will-change: transform; }

/* ── HERO ──────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 140px 0 100px;
  overflow: hidden;
}
.hero-kicker {
  display: flex; align-items: center; gap: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; letter-spacing: .24em; text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 32px;
}
.hero-kicker .bar {
  width: 40px; height: 1px;
  background: linear-gradient(90deg, var(--violet), var(--pink));
}
.hero h1 {
  max-width: 1100px;
}
.hero h1 em { font-style: normal; font-family: 'Frank Ruhl Libre', serif; font-weight: 500; font-style: italic; color: transparent; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; }
.hero-sub {
  display: flex; gap: 48px; flex-wrap: wrap;
  margin-top: 48px; align-items: flex-end;
  justify-content: space-between;
}
.hero-sub .lede { max-width: 520px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 80px;
  border-top: 1px solid var(--line);
  padding-top: 40px;
}
.stat { padding: 0 24px; border-inline-start: 1px solid var(--line); }
.stat:first-child { border-inline-start: 0; padding-inline-start: 0; }
.stat-num {
  font-size: clamp(36px, 4vw, 56px); font-weight: 900;
  background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-label { margin-top: 8px; color: var(--fg-dim); font-size: 14px; }

/* Scroll indicator */
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--fg-mute);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero-scroll .line { width: 1px; height: 48px; background: linear-gradient(180deg, transparent, var(--fg-dim)); animation: scroll-line 2s ease-in-out infinite; }
@keyframes scroll-line {
  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 / Ticker ──────────────────────────────────────────────────── */
.marquee {
  position: relative; overflow: hidden;
  padding: 28px 0;
  border-block: 1px solid var(--line);
  background: var(--ink-2);
}
.marquee-track {
  display: flex; gap: 56px;
  width: max-content;
  animation: marquee 38s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  display: inline-flex; align-items: center; gap: 16px;
  font-size: clamp(28px, 3.4vw, 48px);
  font-weight: 900; letter-spacing: -0.02em;
  color: var(--fg);
  white-space: nowrap;
}
.marquee-item .dot { width: 12px; height: 12px; border-radius: 50%; background: var(--grad-1); flex-shrink: 0; }
.marquee-item.muted { color: transparent; -webkit-text-stroke: 1px var(--fg-dim); }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(50%); }
}

/* ── Section headers ───────────────────────────────────────────────────── */
.sec-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 32px; margin-bottom: 64px; flex-wrap: wrap;
}
.sec-head h2 { max-width: 780px; }
.sec-head .eyebrow { margin-bottom: 20px; }
.sec-head-right { max-width: 320px; color: var(--fg-dim); }

/* ── Services grid ─────────────────────────────────────────────────────── */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service {
  position: relative;
  padding: 48px 36px;
  background: var(--ink-2);
  transition: background .4s var(--ease);
  min-height: 340px;
  display: flex; flex-direction: column; justify-content: space-between;
  overflow: hidden;
}
.service::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(107,33,255,.18), transparent 60%);
  opacity: 0;
  transition: opacity .4s var(--ease);
  pointer-events: none;
}
.service:hover::before { opacity: 1; }
.service:hover { background: var(--ink-3); }
.service-icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: rgba(107,33,255,.12);
  border: 1px solid var(--line-2);
  font-size: 28px;
}
.service h3 { font-size: 26px; margin: 24px 0 12px; }
.service p { color: var(--fg-dim); line-height: 1.6; }
.service-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 24px; }
.service-tag {
  font-size: 12px; padding: 6px 12px;
  border: 1px solid var(--line-2); border-radius: 999px;
  color: var(--fg-dim);
}
@media (max-width: 980px) { .services { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .services { grid-template-columns: 1fr; } }

/* ── Portfolio ─────────────────────────────────────────────────────────── */
.works {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.work {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink-2);
  border: 1px solid var(--line);
  aspect-ratio: 4/3;
  transition: transform .5s var(--ease);
}
.work:hover { transform: translateY(-6px); }
.work-thumb {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  overflow: hidden;
}
.work-thumb canvas { width: 100%; height: 100%; }
.work-info {
  position: absolute; right: 24px; bottom: 24px; left: 24px; z-index: 2;
  display: flex; justify-content: space-between; align-items: flex-end; gap: 16px;
}
.work-meta { display: flex; flex-direction: column; gap: 6px; }
.work-cat {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--cyan);
}
.work-title { font-size: 26px; font-weight: 800; letter-spacing: -0.02em; }
.work-arrow {
  width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--fg); color: var(--ink);
  transition: transform .3s var(--ease);
}
.work:hover .work-arrow { transform: rotate(-45deg); }
.work-tall { grid-row: span 2; aspect-ratio: auto; min-height: 640px; }
@media (max-width: 820px) {
  .works { grid-template-columns: 1fr; }
  .work-tall { grid-row: auto; min-height: 0; aspect-ratio: 4/3; }
}

/* ── Process timeline ──────────────────────────────────────────────────── */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  counter-reset: step;
  position: relative;
}
.process::before {
  content: ''; position: absolute; top: 54px; right: 0; left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--violet) 30%, var(--pink) 70%, transparent);
}
.process-step {
  padding: 0 24px;
  position: relative;
  counter-increment: step;
}
.process-step .num {
  width: 108px; height: 108px; border-radius: 50%;
  display: grid; place-items: center;
  margin-bottom: 28px;
  background: var(--ink);
  border: 1px solid var(--line-2);
  font-family: 'JetBrains Mono', monospace;
  font-size: 38px; font-weight: 700;
  color: var(--fg);
  position: relative; z-index: 1;
}
.process-step .num::before {
  content: ''; position: absolute; inset: -2px;
  border-radius: 50%;
  background: var(--grad-1);
  z-index: -1;
  opacity: 0; transition: opacity .4s var(--ease);
}
.process-step:hover .num::before { opacity: 1; }
.process-step h3 { font-size: 22px; margin-bottom: 10px; }
.process-step p { color: var(--fg-dim); font-size: 15px; line-height: 1.55; }
@media (max-width: 900px) {
  .process { grid-template-columns: 1fr 1fr; gap: 48px 24px; }
  .process::before { display: none; }
}
@media (max-width: 520px) { .process { grid-template-columns: 1fr; } }

/* ── Pricing ───────────────────────────────────────────────────────────── */
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.plan {
  position: relative;
  padding: 40px 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--ink-2);
  display: flex; flex-direction: column;
  transition: transform .4s var(--ease), border-color .4s var(--ease);
}
.plan:hover { transform: translateY(-4px); border-color: var(--line-2); }
.plan.is-featured {
  border-color: transparent;
  background:
    linear-gradient(var(--ink-2),var(--ink-2)) padding-box,
    var(--grad-1) border-box;
  box-shadow: var(--glow-v);
}
.plan-badge {
  position: absolute; top: -14px; right: 28px;
  padding: 6px 14px;
  background: var(--grad-1);
  color: var(--ink);
  font-size: 12px; font-weight: 700;
  border-radius: 999px;
  letter-spacing: .04em;
}
.plan-name { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.plan-desc { color: var(--fg-dim); font-size: 14px; margin-bottom: 28px; min-height: 42px; }
.plan-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 32px; }
.plan-price .amt { font-size: 56px; font-weight: 900; letter-spacing: -0.03em; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; }
.plan-price .cur { font-size: 20px; color: var(--fg-dim); }
.plan-price .per { color: var(--fg-mute); font-size: 14px; margin-inline-start: 8px; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; flex: 1; }
.plan-features li { display: flex; align-items: flex-start; gap: 10px; color: var(--fg-dim); font-size: 15px; }
.plan-features li::before {
  content: '';
  width: 18px; height: 18px;
  margin-top: 3px;
  flex-shrink: 0;
  background: var(--grad-1);
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3'><polyline points='20 6 9 17 4 12'/></svg>");
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3'><polyline points='20 6 9 17 4 12'/></svg>");
  mask-size: contain; -webkit-mask-size: contain;
}
@media (max-width: 900px) { .plans { grid-template-columns: 1fr; } }

/* ── FAQ ──────────────────────────────────────────────────────────────── */
.faq { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 28px 0;
  font-size: clamp(18px, 2vw, 24px); font-weight: 600;
  text-align: start;
  transition: color .2s var(--ease);
}
.faq-q:hover { color: var(--pink-2); }
.faq-q .plus {
  width: 36px; height: 36px; flex-shrink: 0;
  border: 1px solid var(--line-2); border-radius: 50%;
  display: grid; place-items: center;
  font-size: 20px; font-weight: 300;
  transition: transform .35s var(--ease), background .3s var(--ease);
}
.faq-item.is-open .faq-q .plus { transform: rotate(45deg); background: var(--grad-1); color: var(--ink); border-color: transparent; }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .45s var(--ease);
  color: var(--fg-dim); font-size: 16px;
}
.faq-a-inner { padding-bottom: 28px; max-width: 760px; line-height: 1.7; }

/* ── Testimonials ──────────────────────────────────────────────────────── */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.quote {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ink-2);
  display: flex; flex-direction: column; gap: 20px;
  transition: transform .4s var(--ease), border-color .4s var(--ease);
}
.quote:hover { transform: translateY(-4px); border-color: var(--line-2); }
.quote-mark {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 64px; line-height: 0.4;
  color: var(--pink);
  height: 32px;
}
.quote-text { color: var(--fg); font-size: 17px; line-height: 1.6; flex: 1; }
.quote-author { display: flex; align-items: center; gap: 12px; }
.quote-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--grad-1);
  display: grid; place-items: center;
  font-weight: 800; color: var(--ink);
}
.quote-meta strong { display: block; font-weight: 600; }
.quote-meta span { font-size: 13px; color: var(--fg-mute); }
@media (max-width: 900px) { .quotes { grid-template-columns: 1fr; } }

/* ── CTA final ─────────────────────────────────────────────────────────── */
.cta-final {
  position: relative;
  text-align: center;
  padding: 140px 0;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(107,33,255,.25), transparent 60%);
  z-index: -1;
}
.cta-final .display-2 { margin-bottom: 28px; }
.cta-final .lede { margin: 0 auto 40px; }

/* ── Contact form ──────────────────────────────────────────────────────── */
.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-size: 13px; font-weight: 500;
  color: var(--fg-dim);
  letter-spacing: .04em;
}
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 16px;
  padding: 16px 18px;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--fg);
  transition: border-color .25s var(--ease), background .25s var(--ease);
  direction: rtl;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0;
  border-color: var(--pink);
  background: var(--ink-3);
}
.field textarea { min-height: 160px; resize: vertical; }
@media (max-width: 640px) { .form { grid-template-columns: 1fr; } }

/* ── Footer ────────────────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--line);
  padding: 80px 0 40px;
  background: var(--ink-2);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer h4 { font-size: 14px; letter-spacing: .08em; text-transform: uppercase; color: var(--fg-dim); margin-bottom: 20px; font-weight: 600; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--fg); font-size: 15px; }
.footer-links a:hover { color: var(--pink-2); }
.footer-tag { color: var(--fg-dim); margin-top: 16px; max-width: 320px; line-height: 1.6; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px; border-top: 1px solid var(--line);
  font-size: 14px; color: var(--fg-mute);
  flex-wrap: wrap; gap: 16px;
}
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

/* ── Reveal: always visible. Subtle entrance only when explicitly armed by JS ── */
.reveal { opacity: 1; transform: translateY(0); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

.word-reveal { display: inline-block; overflow: hidden; }
.word-reveal > span {
  display: inline-block;
  transform: translateY(120%);
  transition: transform .9s var(--ease);
}
.word-reveal.is-in > span { transform: translateY(0); }

/* ── Gradient blob (decorative) ───────────────────────────────────────── */
.blob {
  position: absolute;
  width: 520px; height: 520px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .4;
  z-index: 0;
  pointer-events: none;
}
.blob.violet { background: var(--violet); }
.blob.pink   { background: var(--pink); }
.blob.cyan   { background: var(--cyan); }

/* ── Utility ───────────────────────────────────────────────────────────── */
.sep {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-2), transparent);
  margin: 0 auto;
}
.text-center { text-align: center; }
.mt-8 { margin-top: 40px; }
.hide-mobile { display: initial; }
.show-mobile { display: none; }
@media (max-width: 780px) {
  .hide-mobile { display: none; }
  .show-mobile { display: initial; }
  .nav-links { display: none; }
  .hero-stats { grid-template-columns: 1fr 1fr; row-gap: 32px; }
  .hero-stats .stat:nth-child(3) { grid-column: 1 / -1; border-inline-start: 0; padding-inline-start: 0; border-top: 1px solid var(--line); padding-top: 32px; }
}

/* ── Reduced motion ────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal, .word-reveal > span { opacity: 1; transform: none; }
  #hero-canvas { display: none; }
}

/* ── Page-specific helpers ─────────────────────────────────────────────── */
.page-hero {
  padding: 180px 0 100px;
  position: relative;
  overflow: hidden;
}
.page-hero h1 { max-width: 960px; }
.page-hero .lede { margin-top: 28px; max-width: 680px; }
.breadcrumb { font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--fg-mute); margin-bottom: 24px; }
.breadcrumb span { color: var(--cyan); }

/* ═══════════════════════════════════════════════════════════════════════════
   v2 EXTENSIONS — glass, neon glow, portfolio badge/modal, 4-card grid
   ═══════════════════════════════════════════════════════════════════════════ */

.glass { backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); background: rgba(22,20,40,.6); border: 1px solid rgba(255,255,255,.06); }
.glow-cyan { box-shadow: var(--glow-c); }
.glow-pink { box-shadow: var(--glow-p); }
.glow-violet { box-shadow: var(--glow-v); }

.services-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 1100px) { .services-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-4 { grid-template-columns: 1fr; } }

.services-4 .service { position: relative; text-decoration: none; color: var(--fg); display: flex; flex-direction: column; gap: 18px; transition: transform .4s var(--ease), border-color .3s; overflow: hidden; }
.services-4 .service:hover { transform: translateY(-4px); border-color: var(--line-2); }
.services-4 .service::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 80% 0%, rgba(107,33,255,.12), transparent 60%); opacity: 0; transition: opacity .4s var(--ease); pointer-events: none; }
.services-4 .service:hover::before { opacity: 1; }
.services-4 .service-featured { border: 1px solid rgba(255,46,147,.4); box-shadow: 0 0 0 1px rgba(255,46,147,.15), 0 10px 40px rgba(255,46,147,.12); }
.services-4 .service-saas { background: linear-gradient(145deg, rgba(107,33,255,.08), rgba(0,229,255,.05)); }

.service-price { margin-top: 14px; display: flex; align-items: baseline; gap: 8px; }
.service-price .amt { font-family: 'Frank Ruhl Libre', serif; font-size: 28px; font-weight: 700; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.service-price .per { font-size: 12px; color: var(--fg-mute); font-family: 'JetBrains Mono', monospace; letter-spacing: .05em; }

.portfolio-badge { position: absolute; top: 14px; left: 14px; font: 600 10px/1 'JetBrains Mono', monospace; letter-spacing: .2em; color: var(--cyan); background: rgba(0,229,255,.08); border: 1px solid rgba(0,229,255,.3); padding: 5px 9px; border-radius: 999px; opacity: 0; transform: translateY(-4px); transition: opacity .3s var(--ease), transform .3s var(--ease); pointer-events: none; }
.services-4 .service:hover .portfolio-badge,
.work:hover .portfolio-badge,
[data-portfolio-category]:hover > .portfolio-badge { opacity: 1; transform: translateY(0); }

.services-extra { margin-top: 28px; text-align: center; color: var(--fg-dim); font-size: 14px; }
.services-extra a { color: var(--cyan); text-decoration: none; margin-right: 6px; border-bottom: 1px solid rgba(0,229,255,.3); padding-bottom: 1px; }
.services-extra a:hover { color: var(--cyan-2); border-color: var(--cyan); }

.plans-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 1100px) { .plans-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .plans-4 { grid-template-columns: 1fr; } }

/* ── Plan CTA buttons — matched to .svc-cta in services section ───────── */
.plan .btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%;
  padding: 16px 28px;
  font: 700 15px/1 'Heebo', sans-serif;
  letter-spacing: .01em;
  border-radius: 999px;
  text-decoration: none;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease), color .35s var(--ease);
  cursor: pointer;
}
.plan .btn .btn-arrow {
  font-style: normal; font-size: 18px; line-height: 1;
  transition: transform .3s var(--ease);
}
.plan:hover .btn .btn-arrow { transform: translateX(-4px); }

/* ─── CRYSTAL EDGE — .plan .btn-ghost (non-featured plans)
   Identity: cyan crystal with diagonal sparkle sweep + animated border */
.plan .btn-ghost {
  background:
    linear-gradient(135deg, rgba(0,229,255,.1) 0%, rgba(0,229,255,.02) 50%, rgba(0,229,255,.1) 100%);
  color: var(--cyan-2);
  border: 1px solid rgba(0,229,255,.5);
  box-shadow:
    inset 0 0 22px rgba(0,229,255,.12),
    inset 0 1px 0 rgba(0,229,255,.3),
    0 0 18px rgba(0,229,255,.22),
    0 4px 24px rgba(0,229,255,.13);
  text-shadow: 0 0 14px rgba(0,229,255,.65);
}
.plan .btn-ghost:hover {
  background:
    linear-gradient(135deg, rgba(0,229,255,.18) 0%, rgba(0,229,255,.08) 50%, rgba(0,229,255,.18) 100%);
  border-color: rgba(0,229,255,1);
  box-shadow:
    inset 0 0 36px rgba(0,229,255,.22),
    inset 0 1px 0 rgba(0,229,255,.55),
    0 0 36px rgba(0,229,255,.55),
    0 8px 36px rgba(0,229,255,.32);
  color: #fff;
  text-shadow: 0 0 22px rgba(0,229,255,1), 0 0 44px rgba(0,229,255,.7);
  transform: translateY(-3px);
}
.plan .btn-ghost:hover::before { animation-duration: 2s; }

/* ─── ENERGIZED PULSE — .plan .btn-primary (featured plan)
   Identity: gradient with rotating ring border + pulsing inner light */
.plan.is-featured .btn-primary,
.plan .btn-primary {
  background:
    radial-gradient(circle at 30% 100%, rgba(255,46,147,.4) 0%, transparent 50%),
    radial-gradient(circle at 70% 0%, rgba(0,229,255,.25) 0%, transparent 50%),
    linear-gradient(135deg, var(--violet), var(--pink));
  color: #fff;
  border: 1px solid transparent;
  box-shadow:
    0 0 0 1px rgba(255,46,147,.3),
    0 6px 18px rgba(255,46,147,.5),
    0 14px 40px rgba(107,33,255,.42),
    0 28px 70px rgba(255,46,147,.22),
    inset 0 1px 0 rgba(255,255,255,.4),
    inset 0 -10px 24px rgba(107,33,255,.22);
  text-shadow: 0 1px 12px rgba(255,255,255,.32);
  isolation: isolate;
}
.plan .btn-primary > * { position: relative; z-index: 3; }
.plan.is-featured .btn-primary:hover,
.plan .btn-primary:hover {
  box-shadow:
    0 0 0 1px rgba(255,46,147,.6),
    0 10px 28px rgba(255,46,147,.75),
    0 22px 60px rgba(107,33,255,.6),
    0 40px 100px rgba(255,46,147,.35),
    inset 0 1px 0 rgba(255,255,255,.5),
    inset 0 -10px 30px rgba(107,33,255,.32);
  text-shadow: 0 1px 16px rgba(255,255,255,.65);
  transform: translateY(-4px) scale(1.02);
}

/* Portfolio "see more like this" modal */
.portfolio-modal-overlay { position: fixed; inset: 0; background: rgba(4,2,10,.85); backdrop-filter: blur(14px); z-index: 1000; display: none; align-items: center; justify-content: center; padding: 24px; }
.portfolio-modal-overlay.open { display: flex; }
.portfolio-modal { max-width: 920px; width: 100%; max-height: 86vh; overflow-y: auto; background: linear-gradient(180deg, #12102a, #0a0818); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius-lg); padding: 32px; position: relative; }
.portfolio-modal-close { position: absolute; top: 14px; left: 14px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); color: #fff; width: 34px; height: 34px; border-radius: 50%; cursor: pointer; font-size: 18px; }
.portfolio-modal h3 { margin-bottom: 8px; font-size: 24px; }
.portfolio-modal .pm-sub { color: var(--fg-dim); font-size: 14px; margin-bottom: 22px; }
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.portfolio-option { background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); padding: 20px; cursor: pointer; transition: all .3s var(--ease); }
.portfolio-option:hover { border-color: var(--cyan); transform: translateY(-3px); }
.portfolio-option h4 { font-size: 14px; margin-bottom: 10px; }
.portfolio-option .po-pick { margin-top: 14px; font-size: 12px; color: var(--cyan); font-family: 'JetBrains Mono', monospace; letter-spacing: .1em; }
.portfolio-toast { position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(20px); background: linear-gradient(135deg, var(--violet), var(--pink)); color: #fff; padding: 14px 24px; border-radius: 999px; font-weight: 700; font-size: 14px; opacity: 0; transition: all .35s var(--ease); z-index: 1100; pointer-events: none; }
.portfolio-toast.on { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ═══════════════════════════════════════════════════════════════════════════
   SERVICES v3 — 4 cards, each inlining a distinct uiverse recipe
   ═══════════════════════════════════════════════════════════════════════════ */

.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 28px; perspective: 1400px; } /* 3 cards in markup — 4 tracks left an empty column */
@media (max-width: 1180px) { .svc-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; } }
@media (max-width: 600px)  { .svc-grid { grid-template-columns: 1fr; } }

.svc { position: relative; display: block; text-decoration: none; color: var(--fg); border-radius: 22px; overflow: hidden; isolation: isolate; transition: transform .55s var(--ease), box-shadow .55s var(--ease); min-height: 440px; }
.svc:hover { transform: translateY(-6px); }

.svc-box { position: relative; z-index: 3; padding: 30px 26px 28px; display: flex; flex-direction: column; gap: 14px; height: 100%; }
.svc-kicker { display: inline-block; width: fit-content; font: 700 9px/1 'JetBrains Mono', monospace; letter-spacing: .3em; color: rgba(255,255,255,.55); border: 1px solid rgba(255,255,255,.14); padding: 5px 10px; border-radius: 999px; backdrop-filter: blur(8px); }
.svc-icon { font-size: 40px; line-height: 1; margin-top: 6px; }
.svc h3 { font: 800 26px/1.1 'Heebo', sans-serif; letter-spacing: -.02em; margin: 0; }
.svc p { color: var(--fg-dim); font-size: 14.5px; line-height: 1.55; margin: 0; flex: 1; }
.svc-price { display: flex; align-items: baseline; gap: 10px; margin-top: 4px; }
.svc-price .amt { font-family: 'Frank Ruhl Libre', serif; font-size: 34px; font-weight: 700; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; }
.svc-price small { font-size: 11.5px; color: var(--fg-mute); font-family: 'JetBrains Mono', monospace; letter-spacing: .06em; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.svc-tags span { font-size: 11px; padding: 5px 10px; border-radius: 999px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); color: var(--fg-dim); }
.svc-cta { display: inline-flex; align-items: center; gap: 6px; margin-top: 10px; padding: 12px 20px; font-weight: 700; font-size: 14px; border-radius: 999px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); color: #fff; transition: background .3s var(--ease), transform .3s var(--ease); width: fit-content; }
.svc:hover .svc-cta { background: rgba(255,255,255,.14); transform: translateX(-4px); }
.svc-src { position: absolute; top: 14px; right: 14px; z-index: 4; font: 600 9.5px/1 'JetBrains Mono', monospace; letter-spacing: .18em; color: var(--cyan); background: rgba(0,229,255,.06); border: 1px solid rgba(0,229,255,.22); padding: 5px 9px; border-radius: 999px; opacity: .65; transition: opacity .3s; }
.svc:hover .svc-src { opacity: 1; }
.svc-badge { position: absolute; top: 14px; left: 14px; z-index: 5; font: 800 10.5px/1 'JetBrains Mono', monospace; letter-spacing: .16em; text-transform: uppercase; background: linear-gradient(135deg, var(--pink), var(--violet)); color: #fff; padding: 7px 12px; border-radius: 999px; box-shadow: 0 6px 20px rgba(255,46,147,.35); }

/* CARD 1 — FROSTED GLASS (recipe: joe-watson-sbf/honest-bullfrog-6) */
.svc-glass { background: linear-gradient(145deg, rgba(107,33,255,.18), rgba(0,229,255,.08) 55%, rgba(7,6,12,.7) 100%), rgba(22,20,40,.55); border: 1px solid rgba(255,255,255,.12); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); }
.svc-orb { position: absolute; border-radius: 50%; filter: blur(12px); z-index: 1; transition: transform .8s var(--ease); }
.svc-orb-a { width: 160px; height: 160px; background: rgba(107,33,255,.35); top: -40px; right: -40px; }
.svc-orb-b { width: 120px; height: 120px; background: rgba(0,229,255,.25); bottom: -30px; left: -30px; }
.svc-glass:hover .svc-orb-a { transform: translate(-20px, 20px) scale(1.2); }
.svc-glass:hover .svc-orb-b { transform: translate(20px, -20px) scale(1.15); }
.svc-glass::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 20% 0%, rgba(255,255,255,.06), transparent 50%); pointer-events: none; z-index: 2; }

/* CARD 2 — NEON (recipe: lovely-yak / impradhyumn neon-border) */
.svc-neon { background: radial-gradient(ellipse at 0% 100%, rgba(255,46,147,.16), #0b0918 60%); border: 1px solid rgba(255,46,147,.25); }
.svc-neon-ring { position: absolute; inset: -2px; border-radius: 22px; padding: 2px; background: conic-gradient(from 0deg, transparent 0deg, var(--pink) 60deg, transparent 120deg, transparent 240deg, var(--cyan) 300deg, transparent 360deg); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: .55; transition: opacity .4s var(--ease); animation: svc-neon-spin 12s linear infinite; pointer-events: none; z-index: 1; }
.svc-neon:hover .svc-neon-ring { opacity: 1; }
@keyframes svc-neon-spin { to { transform: rotate(360deg); } }
.svc-neon::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(255,46,147,.1) 100%); z-index: 1; pointer-events: none; }

/* CARD 3 — AURORA FEATURED (recipe: pack-04-light gradient lift) */
.svc-aurora { background: linear-gradient(160deg, #1a0f3d 0%, #2a1550 40%, #0a0820 100%); border: 1px solid rgba(255,255,255,.2); box-shadow: 0 0 0 1px rgba(255,46,147,.2), 0 20px 60px rgba(255,46,147,.18), 0 30px 80px rgba(107,33,255,.15), inset 0 1px 0 rgba(255,255,255,.08); transform: translateY(-4px); }
.svc-aurora:hover { transform: translateY(-10px); }
.svc-aurora .svc-box { padding-top: 52px; }
.svc-aurora-blob { position: absolute; z-index: 1; width: 340px; height: 340px; top: -120px; right: -120px; background: radial-gradient(circle, rgba(255,46,147,.55) 0%, rgba(107,33,255,.3) 40%, transparent 70%); filter: blur(20px); animation: svc-aurora-pulse 8s ease-in-out infinite; }
@keyframes svc-aurora-pulse { 0%,100% { transform: scale(1) rotate(0deg); opacity: .9; } 50% { transform: scale(1.15) rotate(40deg); opacity: 1; } }
.svc-aurora::after { content: ''; position: absolute; inset: 0; z-index: 2; background: linear-gradient(180deg, transparent 50%, rgba(10,8,20,.6) 100%), repeating-linear-gradient(-45deg, transparent 0px, transparent 14px, rgba(255,255,255,.015) 14px, rgba(255,255,255,.015) 15px); pointer-events: none; }
.svc-aurora .svc-cta { background: linear-gradient(135deg, var(--violet), var(--pink)); border-color: transparent; box-shadow: 0 8px 24px rgba(255,46,147,.4); }
.svc-aurora:hover .svc-cta { background: linear-gradient(135deg, var(--pink), var(--violet)); box-shadow: 0 12px 32px rgba(255,46,147,.55); }

/* CARD 4 — CYBER GRID (recipe: 00Kubi/cowardly-eagle-56) */
.svc-cyber { background: linear-gradient(45deg, #0a0a12 0%, #141420 100%); border: 2px solid rgba(0,229,255,.15); transform-style: preserve-3d; transition: transform .5s var(--ease), border-color .4s; }
.svc-cyber:hover { transform: translateY(-6px) rotateY(-6deg) rotateX(4deg); border-color: rgba(0,229,255,.55); }
.svc-cyber::before { content: ''; position: absolute; inset: 0; z-index: 1; background-image: linear-gradient(rgba(0,229,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(0,229,255,.08) 1px, transparent 1px); background-size: 36px 36px; mask-image: radial-gradient(ellipse at center, #000 10%, transparent 80%); -webkit-mask-image: radial-gradient(ellipse at center, #000 10%, transparent 80%); opacity: .6; pointer-events: none; }
.svc-cyber-lines { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.svc-cyber-lines i { position: absolute; display: block; background: linear-gradient(90deg, transparent, var(--cyan), transparent); height: 1px; opacity: 0; transition: opacity .4s; }
.svc-cyber-lines i:nth-child(1) { top: 20%; left: 0; right: 0; animation: cyber-scan 4s linear infinite; }
.svc-cyber-lines i:nth-child(2) { top: 60%; left: 0; right: 0; animation: cyber-scan 4s linear infinite 1s; }
.svc-cyber-lines i:nth-child(3) { left: 25%; top: 0; bottom: 0; width: 1px; height: auto; background: linear-gradient(180deg, transparent, var(--cyan), transparent); animation: cyber-scan-v 5s linear infinite .5s; }
.svc-cyber-lines i:nth-child(4) { left: 78%; top: 0; bottom: 0; width: 1px; height: auto; background: linear-gradient(180deg, transparent, var(--pink), transparent); animation: cyber-scan-v 5s linear infinite 2s; }
.svc-cyber:hover .svc-cyber-lines i { opacity: 1; }
@keyframes cyber-scan   { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }
@keyframes cyber-scan-v { 0% { transform: translateY(-100%); } 100% { transform: translateY(100%); } }
.svc-cyber::after { content: ''; position: absolute; inset: 0; z-index: 2; background: linear-gradient(135deg, rgba(0,229,255,.08), transparent 40%); pointer-events: none; }
.svc-cyber .svc-kicker { color: var(--cyan); border-color: rgba(0,229,255,.3); }
.svc-cyber .svc-cta { border-color: rgba(0,229,255,.4); }
.svc-cyber:hover .svc-cta { background: rgba(0,229,255,.15); color: var(--cyan-2); }

/* ═══════════════════════════════════════════════════════════════════════════
   CASES — portfolio grid with animated catalog-style scene thumbnails
   ═══════════════════════════════════════════════════════════════════════════ */
.cases { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; margin-top: 32px; }
@media (max-width: 900px) { .cases { grid-template-columns: 1fr; } }

.case { position: relative; text-decoration: none; color: var(--fg); display: block; border-radius: 22px; overflow: hidden; background: linear-gradient(180deg, #0e0c1e, #08060f); border: 1px solid rgba(255,255,255,.08); transition: transform .5s var(--ease), border-color .4s, box-shadow .4s; isolation: isolate; }
.case:hover { transform: translateY(-6px); border-color: rgba(0,229,255,.4); box-shadow: 0 30px 80px rgba(0,229,255,.12), 0 0 0 1px rgba(255,46,147,.15); }

.case-frame { position: relative; height: 280px; overflow: hidden; border-bottom: 1px solid rgba(255,255,255,.06); }
.case-scene { position: absolute; inset: 0; }
.case-badge { position: absolute; top: 14px; right: 14px; z-index: 5; font: 700 10px/1 'JetBrains Mono', monospace; letter-spacing: .2em; background: rgba(0,0,0,.55); color: var(--cyan); border: 1px solid rgba(0,229,255,.4); padding: 6px 11px; border-radius: 999px; backdrop-filter: blur(8px); }

.case-info { padding: 24px 24px 26px; display: flex; flex-direction: column; gap: 10px; }
.case-cat { font: 600 10px/1 'JetBrains Mono', monospace; letter-spacing: .22em; text-transform: uppercase; color: var(--cyan); }
.case h3 { font: 800 24px/1.15 'Heebo', sans-serif; letter-spacing: -.02em; margin: 0; }
.case p { color: var(--fg-dim); font-size: 14.5px; line-height: 1.55; margin: 0; }
.case-cta { margin-top: 6px; font: 700 13px/1 'Heebo', sans-serif; color: var(--cyan-2); letter-spacing: .02em; opacity: .85; transition: opacity .3s, transform .3s; width: fit-content; }
.case:hover .case-cta { opacity: 1; transform: translateX(-4px); }

/* SCENE A · pack-07 glitch-inspired: RGB split + scan lines */
.case-scene-a { background: radial-gradient(ellipse at 30% 40%, #2a1550 0%, #0a0518 70%); }
.case-scene-a::before, .case-scene-a::after { content: 'PF'; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font: 900 160px/1 'Heebo', sans-serif; letter-spacing: -.05em; mix-blend-mode: screen; }
.case-scene-a::before { color: var(--pink); transform: translate(-48%, -50%); }
.case-scene-a::after  { color: var(--cyan); transform: translate(-52%, -50%); }
.case-scene-a > span { display: none; }
.case-scene-a::before { animation: glitch-a 1.6s steps(4) infinite; }
.case-scene-a::after  { animation: glitch-b 1.6s steps(4) infinite; }
.case:hover .case-scene-a::before { animation-duration: .3s; animation-timing-function: steps(3); }
.case:hover .case-scene-a::after  { animation-duration: .3s; animation-timing-function: steps(3); }
@keyframes glitch-a { 0%{transform:translate(-48%,-50%)} 50%{transform:translate(-44%,-48%)} 100%{transform:translate(-48%,-50%)} }
@keyframes glitch-b { 0%{transform:translate(-52%,-50%)} 50%{transform:translate(-56%,-52%)} 100%{transform:translate(-52%,-50%)} }
.case-scene-a { background-image: radial-gradient(ellipse at 30% 40%, #2a1550 0%, #0a0518 70%), repeating-linear-gradient(0deg, rgba(255,255,255,.025) 0 2px, transparent 2px 4px); }

/* SCENE B · pack-14 nature-inspired: organic flowing gradient */
.case-scene-b { background: linear-gradient(135deg, #0e3a2b 0%, #0a1a28 60%, #08060f 100%); }
.case-scene-b::before { content: ''; position: absolute; inset: -30%; background: radial-gradient(ellipse at 20% 70%, rgba(209,255,78,.4), transparent 40%), radial-gradient(ellipse at 80% 30%, rgba(255,200,87,.3), transparent 45%); filter: blur(30px); animation: scene-b-drift 12s ease-in-out infinite; }
.case-scene-b::after { content: 'OS'; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font: 900 140px/1 'Heebo', sans-serif; letter-spacing: -.04em; background: linear-gradient(135deg, var(--lime), var(--gold)); -webkit-background-clip: text; background-clip: text; color: transparent; }
@keyframes scene-b-drift { 0%,100% { transform: translate(0,0) rotate(0deg); } 50% { transform: translate(-8%, 6%) rotate(25deg); } }

/* SCENE C · pack-06 data-inspired: chart lines grid */
.case-scene-c { background: linear-gradient(180deg, #0a0f18 0%, #060810 100%); }
.case-scene-c::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(0,229,255,.1) 1px, transparent 1px), linear-gradient(90deg, rgba(0,229,255,.1) 1px, transparent 1px); background-size: 32px 32px; mask: linear-gradient(180deg, transparent, #000 40%, #000 60%, transparent); -webkit-mask: linear-gradient(180deg, transparent, #000 40%, #000 60%, transparent); }
.case-scene-c::after { content: 'DM'; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font: 900 140px/1 'JetBrains Mono', monospace; color: rgba(0,229,255,.9); text-shadow: 0 0 30px rgba(0,229,255,.6); }
.case-scene-c::before { animation: scene-c-pan 20s linear infinite; }
@keyframes scene-c-pan { 0%{background-position:0 0} 100%{background-position:32px 32px} }

/* SCENE D · pack-12 shader-inspired: flowing caustic gradient (for empty "your project" slot) */
.case-scene-d { background: conic-gradient(from 0deg at 50% 50%, #6B21FF, #FF2E93, #FFC857, #00E5FF, #6B21FF); filter: saturate(1.1); animation: scene-d-spin 20s linear infinite; }
.case-scene-d::before { content: ''; position: absolute; inset: 0; backdrop-filter: blur(40px); background: rgba(7,6,12,.4); }
.case-scene-d::after { content: '+'; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font: 200 180px/1 'Heebo', sans-serif; color: rgba(255,255,255,.92); text-shadow: 0 0 40px rgba(255,255,255,.5); }
@keyframes scene-d-spin { to { transform: rotate(360deg); } }

/* ═══════════════════════════════════════════════════════════════════════════
   PROCESS — terminal/cyber timeline (pack-06-data / pack-17-code)
   ═══════════════════════════════════════════════════════════════════════════ */
.proc-timeline { list-style: none; padding: 0; margin: 40px 0 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: proc; position: relative; }
@media (max-width: 980px) { .proc-timeline { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .proc-timeline { grid-template-columns: 1fr; } }

.proc-timeline::before { content: ''; position: absolute; top: 44px; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(0,229,255,.4), rgba(255,46,147,.4), transparent); z-index: 0; }
@media (max-width: 980px) { .proc-timeline::before { display: none; } }

.proc-step { position: relative; padding: 0 4px; z-index: 1; }
.proc-num { width: 88px; height: 88px; margin: 0 auto 18px; border-radius: 50%; background: radial-gradient(circle at 30% 30%, #1a1430, #08060f); border: 1px solid rgba(0,229,255,.35); display: flex; align-items: center; justify-content: center; position: relative; box-shadow: 0 0 0 4px #0b0917, 0 0 40px rgba(0,229,255,.25); transition: transform .4s var(--ease), box-shadow .4s; }
.proc-step:hover .proc-num { transform: translateY(-4px); box-shadow: 0 0 0 4px #0b0917, 0 0 60px rgba(0,229,255,.5); }
.proc-num span { font: 900 28px/1 'JetBrains Mono', monospace; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.proc-num::before { content: ''; position: absolute; inset: -6px; border-radius: 50%; border: 1px dashed rgba(0,229,255,.25); animation: proc-spin 18s linear infinite; }
@keyframes proc-spin { to { transform: rotate(360deg); } }

.proc-body { text-align: center; }
.proc-meta { font: 600 11px/1.2 'JetBrains Mono', monospace; letter-spacing: .05em; color: var(--fg-mute); margin-bottom: 8px; }
.proc-meta code { color: var(--cyan); background: rgba(0,229,255,.07); padding: 3px 7px; border-radius: 5px; border: 1px solid rgba(0,229,255,.15); font-family: inherit; font-size: 10.5px; margin-left: 6px; }
.proc-body h3 { font: 800 22px/1.2 'Heebo', sans-serif; margin: 0 0 10px; letter-spacing: -.02em; }
.proc-body p { color: var(--fg-dim); font-size: 14px; line-height: 1.6; margin: 0; }

/* ═══════════════════════════════════════════════════════════════════════════
   TESTIMONIALS — glass quote cards with animated gradient rim
   ═══════════════════════════════════════════════════════════════════════════ */
.testies { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 40px; }
@media (max-width: 980px) { .testies { grid-template-columns: 1fr; } }
.testy { position: relative; padding: 36px 28px 28px; background: linear-gradient(180deg, rgba(22,20,40,.65), rgba(10,8,20,.8)); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,.08); border-radius: 22px; overflow: hidden; isolation: isolate; transition: transform .45s var(--ease), border-color .4s; }
.testy:hover { transform: translateY(-5px); border-color: rgba(0,229,255,.3); }
.testy-rim { position: absolute; inset: -1px; border-radius: 22px; padding: 1px; background: conic-gradient(from 0deg, transparent, rgba(107,33,255,.55), rgba(255,46,147,.55), rgba(0,229,255,.55), transparent); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: .4; animation: testy-rim-spin 14s linear infinite; pointer-events: none; }
.testy-featured .testy-rim { opacity: .75; }
@keyframes testy-rim-spin { to { transform: rotate(360deg); } }
.testy-stars { font-size: 15px; color: var(--gold); letter-spacing: .15em; margin-bottom: 18px; text-shadow: 0 0 18px rgba(255,200,87,.45); }
.testy blockquote { font: 500 17px/1.6 'Heebo', sans-serif; color: var(--fg); margin: 0 0 22px; letter-spacing: -.01em; }
.testy blockquote::before { content: '\201C'; font: 900 58px/0.8 'Frank Ruhl Libre', serif; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; display: block; margin-bottom: 6px; }
.testy-footer { display: flex; align-items: center; gap: 14px; border-top: 1px solid rgba(255,255,255,.06); padding-top: 18px; }
.testy-avatar { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font: 800 20px/1 'Frank Ruhl Libre', serif; color: #fff; background: conic-gradient(from calc(var(--hue, 270) * 1deg), var(--violet), var(--pink), var(--cyan), var(--violet)); border: 2px solid #0a0818; box-shadow: 0 0 20px rgba(107,33,255,.35); }
.testy-featured .testy-avatar { --hue: 30; }
.testy-footer strong { display: block; font-weight: 800; font-size: 14.5px; }
.testy-footer span { font-size: 12.5px; color: var(--fg-mute); font-family: 'JetBrains Mono', monospace; letter-spacing: .04em; }
.testy .svc-src { position: absolute; }

/* ═══════════════════════════════════════════════════════════════════════════
   FAQ — terminal-style accordion (catalog)
   ═══════════════════════════════════════════════════════════════════════════ */
.faq-cat { margin-top: 40px; border-top: 1px solid rgba(0,229,255,.12); }
.faq-cat .faq-item { border-bottom: 1px solid rgba(0,229,255,.12); background: linear-gradient(90deg, rgba(0,229,255,.02), transparent); transition: background .3s; }
.faq-cat .faq-item:hover { background: linear-gradient(90deg, rgba(0,229,255,.05), transparent); }
.faq-cat .faq-q { padding: 22px 6px; font-size: 16.5px; }
.faq-q-mark { font: 700 10px/1 'JetBrains Mono', monospace; color: var(--cyan); letter-spacing: .2em; border: 1px solid rgba(0,229,255,.3); padding: 6px 10px; border-radius: 5px; margin-left: 16px; background: rgba(0,229,255,.06); flex-shrink: 0; }
.faq-cat .faq-q .plus { color: var(--cyan); font-size: 24px; font-weight: 300; transition: transform .3s var(--ease); }
.faq-cat .faq-item.is-open .plus { transform: rotate(45deg); }
.faq-cat .faq-a-inner { padding: 0 6px 22px; color: var(--fg-dim); line-height: 1.75; }

/* ═══════════════════════════════════════════════════════════════════════════
   FINAL CTA · tunnel background
   ═══════════════════════════════════════════════════════════════════════════ */
.cta-tunnel { position: relative; overflow: hidden; min-height: 460px; display: flex; align-items: center; background: transparent; text-align: center; padding: 100px 0; }
#cta-tunnel-cv { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .75; mix-blend-mode: screen; z-index: 1; }
.cta-tunnel::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, transparent 0%, rgba(7,6,12,.5) 60%, rgba(7,6,12,.85) 100%); z-index: 1; pointer-events: none; }
.cta-row { display: flex; justify-content: center; gap: 16px; margin-top: 38px; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════════════════════
   CATALOG BUTTONS — primary (gradient magnetic) + ghost (neon outline)
   Recipe: buttons/adamgiebl/big-ape-36 + Codecite/modern-pig-84
   ═══════════════════════════════════════════════════════════════════════════ */
/* ─── PLASMA RING — .btn-cat-primary (nav, comparison, final-CTA, process) ──
   Identity: rotating conic gradient border (same trick as .svc-neon-ring)
   + pulsing aurora blob behind text + sliding shimmer */
.btn-cat-primary {
  --bg1: var(--violet);
  --bg2: var(--pink);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 36px;
  font: 800 15px/1 'Heebo', sans-serif;
  letter-spacing: .01em;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 100%, rgba(255,46,147,.4) 0%, transparent 50%),
    radial-gradient(circle at 70% 0%, rgba(0,229,255,.3) 0%, transparent 50%),
    linear-gradient(135deg, var(--bg1), var(--bg2));
  box-shadow:
    0 0 0 1px rgba(255,46,147,.3),
    0 6px 20px rgba(255,46,147,.5),
    0 14px 40px rgba(107,33,255,.42),
    0 28px 70px rgba(255,46,147,.22),
    inset 0 1px 0 rgba(255,255,255,.45),
    inset 0 -8px 24px rgba(107,33,255,.25);
  text-shadow: 0 1px 14px rgba(255,255,255,.4);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s;
  isolation: isolate;
  z-index: 1;
}
.btn-cat-primary > * { position: relative; z-index: 3; }
.btn-cat-primary:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow:
    0 0 0 1px rgba(255,46,147,.6),
    0 10px 28px rgba(255,46,147,.75),
    0 22px 60px rgba(107,33,255,.6),
    0 40px 100px rgba(255,46,147,.35),
    inset 0 1px 0 rgba(255,255,255,.55),
    inset 0 -8px 30px rgba(107,33,255,.35);
  text-shadow: 0 1px 18px rgba(255,255,255,.7);
}
.btn-cat-primary .btn-cat-arrow {
  font-style: normal; font-size: 18px; line-height: 1;
  transition: transform .3s var(--ease);
  display: inline-block;
}
.btn-cat-primary:hover .btn-cat-arrow { transform: translateX(-6px); }

/* ─── CYBER TERMINAL — .btn-cat-ghost (final-CTA secondary, etc) ──────
   Identity: vertical scan line sweeping continuously + cyan glow text */
.btn-cat-ghost {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font: 700 14px/1 'JetBrains Mono', 'Heebo', sans-serif;
  letter-spacing: .04em;
  color: var(--cyan-2);
  text-decoration: none;
  border-radius: 999px;
  background:
    linear-gradient(to left, rgba(0,229,255,.1) 0%, transparent 30%, transparent 70%, rgba(0,229,255,.1) 100%);
  border: 1px solid rgba(0,229,255,.55);
  box-shadow:
    inset 0 0 24px rgba(0,229,255,.12),
    inset 0 1px 0 rgba(0,229,255,.3),
    0 0 22px rgba(0,229,255,.28),
    0 6px 28px rgba(0,229,255,.16);
  text-shadow: 0 0 14px rgba(0,229,255,.75);
  overflow: hidden;
  transition: background .3s, border-color .3s, transform .3s, color .3s, box-shadow .3s, text-shadow .3s;
}
/* Top-edge highlight that brightens */
.btn-cat-ghost::after {
  content: '';
  position: absolute;
  top: 0; left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,229,255,.8), transparent);
  pointer-events: none;
}
.btn-cat-ghost > * { position: relative; z-index: 1; }
.btn-cat-ghost:hover {
  background: rgba(0,229,255,.12);
  border-color: rgba(0,229,255,1);
  color: #fff;
  text-shadow: 0 0 22px rgba(0,229,255,1), 0 0 44px rgba(0,229,255,.7);
  transform: translateY(-2px);
  box-shadow:
    inset 0 0 38px rgba(0,229,255,.2),
    inset 0 1px 0 rgba(0,229,255,.55),
    0 0 38px rgba(0,229,255,.6),
    0 8px 38px rgba(0,229,255,.35);
}

/* ═══════════════════════════════════════════════════════════════════════════
   TERMINAL FOOTER · homepage #s21 vibe
   ═══════════════════════════════════════════════════════════════════════════ */
.tfoot { position: relative; background: linear-gradient(180deg, #06040c 0%, #020106 100%); border-top: 1px solid rgba(0,229,255,.15); padding: 70px 0 28px; font-family: 'JetBrains Mono', monospace; overflow: hidden; }
.tfoot::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(0,229,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(0,229,255,.04) 1px, transparent 1px); background-size: 40px 40px; mask: radial-gradient(ellipse at center, #000 30%, transparent 85%); -webkit-mask: radial-gradient(ellipse at center, #000 30%, transparent 85%); pointer-events: none; }
.tfoot-scan { position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--cyan), transparent); animation: tfoot-scan-ani 6s linear infinite; z-index: 1; }
@keyframes tfoot-scan-ani { 0% { transform: translateY(0); opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } 100% { transform: translateY(400px); opacity: 0; } }
.tfoot-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; position: relative; z-index: 2; margin-bottom: 44px; }
@media (max-width: 820px) { .tfoot-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .tfoot-top { grid-template-columns: 1fr; } }
.tfoot-logo { font: 900 22px/1 'JetBrains Mono', monospace; letter-spacing: .2em; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; margin-bottom: 10px; }
.tfoot-tag { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; color: var(--cyan); letter-spacing: .2em; margin-bottom: 18px; }
.tfoot-tag .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 10px var(--cyan); animation: tfoot-blink 1.6s ease-in-out infinite; }
@keyframes tfoot-blink { 0%, 100% { opacity: 1; } 50% { opacity: .3; } }
.tfoot-brand p { color: var(--fg-dim); font-size: 13px; line-height: 1.7; font-family: 'Heebo', sans-serif; max-width: 340px; }
.tfoot-col h4 { font: 700 11px/1 'JetBrains Mono', monospace; color: var(--fg-mute); letter-spacing: .18em; margin-bottom: 16px; text-transform: lowercase; }
.tfoot-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.tfoot-col a { color: var(--fg); text-decoration: none; font-size: 12.5px; transition: color .2s; display: inline-flex; align-items: center; gap: 8px; }
.tfoot-col a::before { content: '›'; color: var(--cyan); opacity: .6; }
.tfoot-col a:hover { color: var(--cyan-2); }
.tfoot-col a:hover::before { opacity: 1; }
.tfoot-bar { display: flex; justify-content: space-between; align-items: center; border-top: 1px dashed rgba(0,229,255,.18); padding-top: 22px; font-size: 11px; color: var(--fg-mute); letter-spacing: .05em; position: relative; z-index: 2; flex-wrap: wrap; gap: 10px; }
.tfoot-sha { color: var(--pink-2); }
.tfoot-status { display: inline-flex; align-items: center; gap: 8px; color: var(--lime); }
.tfoot-pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 10px var(--lime); animation: tfoot-blink 2s ease-in-out infinite; }

/* ═══════════════════════════════════════════════════════════════════════════
   HERO SDF · s6 ray-marched fractal canvas styling
   ═══════════════════════════════════════════════════════════════════════════ */
.hero-sdf { position: relative; overflow: hidden; background: #000; }
#hero-sdf { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.hero-vignette { display: none; }
.hero-sdf .container { position: relative; z-index: 2; }

/* ═══════════════════════════════════════════════════════════════════════════
   PAGE-HERO backgrounds — catalog-sourced per page
   ═══════════════════════════════════════════════════════════════════════════ */
.page-hero { position: relative; overflow: hidden; background: radial-gradient(ellipse at top, #0b0720 0%, #05040a 70%); }
.page-hero > canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }
.page-hero > .page-hero-vignette { position: absolute; inset: 0; z-index: 1; pointer-events: none; background: radial-gradient(ellipse at 50% 40%, transparent 20%, rgba(7,6,12,.4) 60%, rgba(7,6,12,.9) 100%); }
.page-hero .container { position: relative; z-index: 2; }

/* Matrix rain background — build.html */
.matrix-bg { position: fixed; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; opacity: .95; }
.matrix-vignette { position: fixed; inset: 0; z-index: 1; pointer-events: none; background: radial-gradient(ellipse at 50% 50%, rgba(7,6,12,.7) 0%, rgba(7,6,12,.3) 40%, rgba(7,6,12,.1) 80%), linear-gradient(180deg, rgba(7,6,12,.2) 0%, rgba(7,6,12,.5) 100%); }
body:has(.matrix-bg) .nav, body:has(.matrix-bg) .build-main, body:has(.matrix-bg) footer { position: relative; z-index: 5; }

/* Physics bubbles bg — contact.html */
.physics-bg { position: fixed; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; opacity: .85; filter: blur(3px) saturate(1.4); }
.physics-vignette { position: fixed; inset: 0; z-index: 1; pointer-events: none; background: radial-gradient(ellipse at 50% 40%, rgba(7,6,12,.3) 0%, rgba(7,6,12,.85) 80%); }
body:has(.physics-bg) .nav, body:has(.physics-bg) main, body:has(.physics-bg) footer { position: relative; z-index: 5; }

/* Light beams bg — showcase.html */
.beams-bg { position: fixed; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; opacity: .6; }
.beams-vignette { position: fixed; inset: 0; z-index: 1; pointer-events: none; background: radial-gradient(ellipse at 50% 30%, rgba(7,6,12,.2) 0%, rgba(7,6,12,.9) 85%); }
body:has(.beams-bg) .nav, body:has(.beams-bg) main, body:has(.beams-bg) section, body:has(.beams-bg) footer { position: relative; z-index: 5; }

/* ASCII hybrid bg — build.html */
.ascii-bg { position: fixed; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; opacity: .85; }
.ascii-vignette { position: fixed; inset: 0; z-index: 1; pointer-events: none; background: radial-gradient(ellipse at 50% 50%, rgba(7,6,12,.7) 0%, rgba(7,6,12,.3) 40%, rgba(7,6,12,.1) 80%), linear-gradient(180deg, rgba(7,6,12,.2) 0%, rgba(7,6,12,.5) 100%); }
body:has(.ascii-bg) .nav, body:has(.ascii-bg) .build-main, body:has(.ascii-bg) footer,
body:has(.ascii-bg) .topbar, body:has(.ascii-bg) .social-strip, body:has(.ascii-bg) main,
body:has(.ascii-bg) header, body:has(.ascii-bg) section, body:has(.ascii-bg) .modal,
body:has(.ascii-bg) .processing, body:has(.ascii-bg) .compare-head { position: relative; z-index: 5; }
/* hide redundant bg-grid/bg-noise when ascii canvas is up */
body:has(.ascii-bg) .bg-grid, body:has(.ascii-bg) .bg-noise { display: none; }

/* Snowfall bg — contact.html. Sky gradient sits at z=0, snowflakes layer at z=50 (above text) with pointer-events:none so clicks still work. */
.snow-bg { position: fixed; inset: 0; width: 100%; height: 100%; z-index: 50; pointer-events: none; opacity: 1; mix-blend-mode: screen; }
.snow-vignette { position: fixed; inset: 0; z-index: 0; pointer-events: none; background: radial-gradient(ellipse at 50% 40%, #0a0a1f 0%, #050810 85%), linear-gradient(180deg, #0a0a1f 0%, #050810 100%); }
body:has(.snow-bg) .nav, body:has(.snow-bg) main, body:has(.snow-bg) footer { position: relative; z-index: 5; }

/* Pixel-art bg — pricing.html (sits inside .page-hero, not fixed) */
.page-hero-pixel { background: #001030; }
.page-hero-pixel > canvas { image-rendering: pixelated; }

/* Page-hero accent canvas (aurora / physics / lights) */
.page-accent-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }


/* ═══════════════════════════════════════════════════════════════════════════
   HERO SPLIT — two product cards (site + CRM)
   ═══════════════════════════════════════════════════════════════════════════ */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
  max-width: 900px;
}
@media(max-width: 720px) {
  .hero-split { grid-template-columns: 1fr; max-width: 480px; }
}

.hs-card {
  border-radius: 20px;
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.hs-card:hover { transform: translateY(-4px); }

.hs-site {
  background: linear-gradient(145deg, rgba(107,33,255,0.18) 0%, rgba(107,33,255,0.07) 100%);
  box-shadow: inset 0 1px 0 rgba(107,33,255,0.3), 0 20px 60px rgba(107,33,255,0.15);
}
.hs-site:hover { box-shadow: inset 0 1px 0 rgba(107,33,255,0.4), 0 28px 80px rgba(107,33,255,0.25); }

.hs-crm {
  background: linear-gradient(145deg, rgba(0,229,255,0.12) 0%, rgba(0,229,255,0.04) 100%);
  box-shadow: inset 0 1px 0 rgba(0,229,255,0.2), 0 20px 60px rgba(0,229,255,0.08);
}
.hs-crm:hover { box-shadow: inset 0 1px 0 rgba(0,229,255,0.35), 0 28px 80px rgba(0,229,255,0.18); }

.hs-badge {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 99px;
  margin-bottom: 16px;
  width: fit-content;
  background: rgba(107,33,255,0.25);
  color: var(--violet-2);
  border: 1px solid rgba(107,33,255,0.35);
}
.hs-badge-crm {
  background: rgba(0,229,255,0.15);
  color: var(--cyan-2);
  border-color: rgba(0,229,255,0.3);
}

.hs-title {
  font-family: 'Heebo', sans-serif;
  font-size: clamp(17px, 2.2vw, 21px);
  font-weight: 700;
  line-height: 1.35;
  color: var(--fg);
  margin: 0 0 16px;
}

.hs-feats {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.hs-feats li {
  font-size: 13.5px;
  color: var(--fg-dim);
  padding-right: 20px;
  position: relative;
  line-height: 1.45;
}
.hs-feats li::before {
  content: '✓';
  position: absolute;
  right: 0;
  color: var(--violet-2);
  font-weight: 700;
}
.hs-crm .hs-feats li::before { color: var(--cyan-2); }

.hs-price {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 18px;
}
.hs-price-main {
  font-family: 'Heebo', sans-serif;
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 800;
  color: var(--fg);
  line-height: 1;
}
.hs-price-note {
  font-size: 12px;
  color: var(--fg-mute);
}

.hs-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  padding: 16px 28px;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

/* ─── LIQUID GRADIENT — .hs-cta-primary (hero card primary)
   Identity: animated background-position shift (gradient flows through colors) */
.hs-cta-primary {
  background: linear-gradient(135deg, var(--violet) 0%, #FF2E93 50%, var(--violet) 100%);
  background-size: 200% 200%;
  animation: btn-liquid-flow 6s ease-in-out infinite;
  color: #fff;
  box-shadow:
    0 0 0 1px rgba(255,46,147,.25),
    0 6px 18px rgba(255,46,147,.5),
    0 14px 40px rgba(107,33,255,.42),
    0 28px 70px rgba(255,46,147,.2),
    inset 0 1px 0 rgba(255,255,255,.4),
    inset 0 -10px 24px rgba(107,33,255,.2);
  text-shadow: 0 1px 12px rgba(255,255,255,.3);
}
.hs-cta-primary > * { position: relative; z-index: 3; }
.hs-cta-primary:hover {
  transform: translateY(-4px) scale(1.02);
  animation-duration: 2.5s;
  box-shadow:
    0 0 0 1px rgba(255,46,147,.55),
    0 10px 28px rgba(255,46,147,.75),
    0 22px 60px rgba(107,33,255,.58),
    0 40px 100px rgba(255,46,147,.32),
    inset 0 1px 0 rgba(255,255,255,.5);
  text-shadow: 0 1px 16px rgba(255,255,255,.65);
}

/* ─── ICE FROST — .hs-cta-ghost (hero card ghost)
   Identity: glassy frost with diagonal shine sweeps + breathing border */
.hs-cta-ghost {
  position: relative;
  background:
    linear-gradient(135deg, rgba(0,229,255,.12) 0%, rgba(0,229,255,.02) 50%, rgba(0,229,255,.1) 100%);
  color: var(--cyan-2);
  border: 1px solid rgba(0,229,255,.5);
  box-shadow:
    inset 0 0 22px rgba(0,229,255,.1),
    inset 0 1px 0 rgba(0,229,255,.3),
    0 0 18px rgba(0,229,255,.22),
    0 4px 24px rgba(0,229,255,.14);
  text-shadow: 0 0 14px rgba(0,229,255,.7);
  overflow: hidden;
  transition: background .3s, border-color .3s, transform .3s, color .3s, box-shadow .3s, text-shadow .3s;
}
.hs-cta-ghost::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(0,229,255,.2);
  animation: btn-frost-pulse 3s ease-in-out infinite;
  pointer-events: none;
}
.hs-cta-ghost > * { position: relative; z-index: 1; }
.hs-cta-ghost:hover {
  background: linear-gradient(135deg, rgba(0,229,255,.18) 0%, rgba(0,229,255,.08) 50%, rgba(0,229,255,.18) 100%);
  border-color: rgba(0,229,255,1);
  transform: translateY(-3px);
  color: #fff;
  text-shadow: 0 0 22px rgba(0,229,255,1), 0 0 44px rgba(0,229,255,.65);
  box-shadow:
    inset 0 0 36px rgba(0,229,255,.22),
    inset 0 1px 0 rgba(0,229,255,.55),
    0 0 36px rgba(0,229,255,.55),
    0 8px 36px rgba(0,229,255,.32);
}
.hs-cta-ghost:hover::before { animation-duration: 2.5s; }

.hs-sub {
  font-size: 14px;
  color: var(--fg-dim);
  line-height: 1.6;
  margin: 0 0 18px;
}
.hs-micro {
  font-size: 11px;
  color: var(--fg-mute);
  text-align: center;
  margin: 10px 0 0;
  letter-spacing: .01em;
}

/* Bundle hook */
.hero-bundle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: var(--fg-dim);
  background: rgba(255,200,87,0.08);
  border: 1px solid rgba(255,200,87,0.2);
  border-radius: 12px;
  padding: 12px 18px;
  max-width: 620px;
}
.hero-bundle strong { color: var(--gold); }
.hb-link {
  color: var(--gold);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.hb-link:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════════════════════════════════════
   "2 שינויים" REVISION SECTION §7
   ═══════════════════════════════════════════════════════════════════════════ */
.rev-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media(max-width: 960px) { .rev-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width: 520px) { .rev-grid { grid-template-columns: 1fr; } }

.rev-card {
  background: rgba(255,255,255,0.035);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color .25s, transform .25s;
}
.rev-card:hover { border-color: rgba(107,33,255,0.4); transform: translateY(-4px); }

.rev-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--violet-2);
}

.rev-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--fg);
  margin: 0;
  line-height: 1.35;
}

.rev-body {
  font-size: 13.5px;
  color: var(--fg-dim);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.rev-card-guarantee {
  background: linear-gradient(145deg, rgba(209,255,78,0.08) 0%, rgba(107,33,255,0.08) 100%);
  border-color: rgba(209,255,78,0.2);
  position: relative;
}
.rev-card-guarantee:hover { border-color: rgba(209,255,78,0.4); }
.rev-guarantee-icon { font-size: 32px; line-height: 1; }
.rev-badge {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 99px;
  background: rgba(209,255,78,0.15);
  color: var(--lime);
  border: 1px solid rgba(209,255,78,0.3);
  width: fit-content;
  margin-top: 4px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   WHATSAPP SECTION §8
   ═══════════════════════════════════════════════════════════════════════════ */
.wa-glow-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(37,211,102,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.wa-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}
@media(max-width: 900px) { .wa-inner { grid-template-columns: 1fr; gap: 40px; } }

.wa-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.wa-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--fg-dim);
  line-height: 1.5;
}
.wa-bullet { font-size: 16px; flex-shrink: 0; margin-top: 1px; }

/* WhatsApp phone mock */
.wa-mock { display: flex; justify-content: center; }

.wa-phone {
  width: 280px;
  background: #111;
  border-radius: 28px;
  padding: 14px 10px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.06), inset 0 1px 0 rgba(255,255,255,0.08);
  position: relative;
}
.wa-phone::before {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  margin: 0 auto 12px;
}

.wa-screen {
  background: #0b141a;
  border-radius: 18px;
  overflow: hidden;
}

.wa-header {
  background: #1f2c34;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.wa-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--pink));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.wa-contact { font-size: 12px; font-weight: 600; color: #e9edef; }
.wa-status { font-size: 10px; color: #8696a0; }

.wa-messages {
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h80v80H0z' fill='%230b141a'/%3E%3C/svg%3E");
}

.wa-msg {
  max-width: 90%;
  padding: 8px 10px 6px;
  border-radius: 8px;
  font-size: 11px;
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.wa-msg span:first-child { color: #e9edef; }
.wa-time { font-size: 9.5px; color: #8696a0; align-self: flex-end; }

.wa-msg-in {
  background: #1f2c34;
  align-self: flex-start;
  border-bottom-right-radius: 0;
  border-top-left-radius: 2px;
}
.wa-msg-out {
  background: #005c4b;
  align-self: flex-end;
  border-bottom-left-radius: 0;
  border-top-right-radius: 2px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   BUTTON KEYFRAMES — used by .btn-cat-*, .hs-cta-*, .plan .btn-*
   Each button context picks its own duration/delay for variety.
   ═══════════════════════════════════════════════════════════════════════════ */

/* Continuous shimmer sweep — auto-loop, not hover-gated */
@keyframes btn-shimmer-loop {
  0%, 60%   { left: -120%; }
  85%, 100% { left: 220%; }
}

/* Liquid gradient flow — animated background-position for primaries */
@keyframes btn-liquid-flow {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

/* Diagonal frost shine sweep — for ghost buttons with glass effect */
@keyframes btn-frost-shine {
  0%, 60%   { transform: translate(-60%, -60%); opacity: 0; }
  65%       { opacity: 1; }
  90%, 100% { transform: translate(60%, 60%); opacity: 0; }
}

/* Frost border pulse — subtle breathing for the inset border */
@keyframes btn-frost-pulse {
  0%, 100% { box-shadow: inset 0 0 0 1px rgba(0,229,255,.18); }
  50%      { box-shadow: inset 0 0 0 1px rgba(0,229,255,.45); }
}

/* Reduced-motion: kill ambient animations, keep static effects */
@media (prefers-reduced-motion: reduce) {
  .btn-cat-primary::after,
  .hs-cta-primary, .hs-cta-primary::after,
  .hs-cta-ghost::before, .hs-cta-ghost::after,
  .plan .btn-primary::after,
  .plan .btn-ghost::before {
    animation: none !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   CARDS REDESIGN — distinct identity per family, mirrors .svc-* gold standard
   Each card family has its own ambient effect (Glass / Cyber / Aurora / Neon)
   ═══════════════════════════════════════════════════════════════════════════ */

.plan { isolation: isolate; }

/* ── PLAN GLASS — frosted glass with floating orbs (CRM / free) ─────── */
.plan-glass {
  background: linear-gradient(145deg, rgba(107,33,255,.14) 0%, rgba(0,229,255,.06) 60%, rgba(7,6,12,.55) 100%) !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: hidden;
}
.plan-glass::before {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  top: -70px; right: -70px;
  background: radial-gradient(circle, rgba(107,33,255,.5) 0%, transparent 65%);
  border-radius: 50%;
  filter: blur(14px);
  pointer-events: none;
  z-index: 0;
  animation: plan-orb-a 14s ease-in-out infinite;
}
.plan-glass::after {
  content: '';
  position: absolute;
  width: 150px; height: 150px;
  bottom: -50px; left: -50px;
  background: radial-gradient(circle, rgba(0,229,255,.4) 0%, transparent 65%);
  border-radius: 50%;
  filter: blur(12px);
  pointer-events: none;
  z-index: 0;
  animation: plan-orb-b 16s ease-in-out infinite;
}
.plan-glass > * { position: relative; z-index: 1; }
@keyframes plan-orb-a {
  0%, 100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(-20px, 14px) scale(1.1); }
}
@keyframes plan-orb-b {
  0%, 100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(22px, -18px) scale(1.12); }
}
.plan-glass:hover { border-color: rgba(255,255,255,.22) !important; box-shadow: 0 24px 70px rgba(107,33,255,.18); }

/* ── PLAN CYBER — terminal grid with corner brackets (Landing) ──────── */
.plan-cyber {
  background: linear-gradient(180deg, #0a0a14, #050309) !important;
  border: 1px solid rgba(0,229,255,.22) !important;
  overflow: hidden;
}
.plan-cyber::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,229,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,255,.06) 1px, transparent 1px);
  background-size: 28px 28px;
  -webkit-mask: radial-gradient(ellipse at 50% 30%, #000 0%, transparent 65%);
          mask: radial-gradient(ellipse at 50% 30%, #000 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.plan-cyber::after {
  content: '';
  position: absolute;
  top: 0; left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,229,255,.7), transparent);
  pointer-events: none;
}
.plan-cyber > * { position: relative; z-index: 1; }
.plan-cyber:hover {
  border-color: rgba(0,229,255,.5) !important;
  box-shadow: 0 22px 60px rgba(0,229,255,.18), 0 0 0 1px rgba(0,229,255,.3);
}

/* ── PLAN AURORA — pulsing aurora blob (featured/Site) ──────────────── */
.plan-aurora {
  background: linear-gradient(160deg, #1a0f3d 0%, #2a1550 40%, #0a0820 100%) !important;
  border: 1px solid transparent !important;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255,46,147,.22), 0 24px 70px rgba(255,46,147,.18), 0 32px 90px rgba(107,33,255,.16) !important;
}
.plan-aurora::before {
  content: '';
  position: absolute;
  width: 380px; height: 380px;
  top: -130px; right: -130px;
  background: radial-gradient(circle, rgba(255,46,147,.55) 0%, rgba(107,33,255,.32) 40%, transparent 72%);
  filter: blur(22px);
  pointer-events: none;
  z-index: 0;
  animation: plan-aurora-pulse 9s ease-in-out infinite;
}
.plan-aurora::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 60%, rgba(10,8,20,.55) 100%),
    repeating-linear-gradient(-45deg, transparent 0 14px, rgba(255,255,255,.018) 14px 15px);
  pointer-events: none;
  z-index: 0;
}
.plan-aurora > * { position: relative; z-index: 1; }
@keyframes plan-aurora-pulse {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: .85; }
  50%      { transform: scale(1.18) rotate(38deg); opacity: 1; }
}

/* ── PLAN NEON — static neon edge gradient + magenta pull (Upgrade) ── */
.plan-neon {
  background: radial-gradient(ellipse at 0% 100%, rgba(255,46,147,.16), #0b0918 60%) !important;
  border: 1px solid rgba(255,46,147,.32) !important;
  box-shadow:
    0 0 0 1px rgba(255,46,147,.1),
    0 14px 44px rgba(255,46,147,.1),
    inset 0 0 32px rgba(255,46,147,.06) !important;
  overflow: hidden;
}
.plan-neon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(255,46,147,.1) 100%);
  pointer-events: none;
  z-index: 0;
}
.plan-neon::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,46,147,.65) 0%, rgba(0,229,255,.35) 50%, rgba(107,33,255,.55) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: .7;
  pointer-events: none;
}
.plan-neon > * { position: relative; z-index: 1; }
.plan-neon:hover {
  border-color: rgba(255,46,147,.55) !important;
  box-shadow:
    0 0 0 1px rgba(255,46,147,.22),
    0 24px 64px rgba(255,46,147,.22),
    inset 0 0 40px rgba(255,46,147,.1) !important;
}

/* ── REV CARDS v2 — Cyber terminal for steps (01/02/03) ─────────────── */
.rev-card {
  background: linear-gradient(180deg, #0c0a18, #07060e) !important;
  border: 1px solid rgba(0,229,255,.18) !important;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.rev-card::before {
  content: '';
  position: absolute;
  top: 0; left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,229,255,.7), transparent);
  pointer-events: none;
}
.rev-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(0deg, transparent 0 3px, rgba(0,229,255,.025) 3px 4px);
  pointer-events: none;
  z-index: -1;
}
.rev-card:hover {
  border-color: rgba(0,229,255,.5) !important;
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(0,229,255,.14);
}
.rev-card .rev-num {
  font-size: 38px !important;
  font-weight: 900 !important;
  letter-spacing: -.03em !important;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  text-shadow: 0 0 30px rgba(0,229,255,.3);
  line-height: 1;
}

/* ── REV CARD GUARANTEE — Trust seal (gold + violet, NOT lime) ──────── */
.rev-card-guarantee {
  background: linear-gradient(145deg, rgba(255,201,87,.1) 0%, rgba(107,33,255,.1) 60%, rgba(7,6,12,.6) 100%) !important;
  border: 1px solid rgba(255,201,87,.35) !important;
  box-shadow:
    0 0 0 1px rgba(255,201,87,.08),
    0 18px 56px rgba(255,201,87,.12),
    inset 0 1px 0 rgba(255,201,87,.18) !important;
  overflow: hidden;
}
.rev-card-guarantee::before { display: none; }
.rev-card-guarantee::after {
  content: '';
  position: absolute;
  width: 240px; height: 240px;
  top: -90px; right: -90px;
  background-image: radial-gradient(circle, rgba(255,201,87,.4) 0%, rgba(107,33,255,.18) 50%, transparent 75%) !important;
  filter: blur(20px);
  pointer-events: none;
  z-index: -1;
  animation: guarantee-pulse 7s ease-in-out infinite;
}
@keyframes guarantee-pulse {
  0%, 100% { transform: scale(1); opacity: .8; }
  50%      { transform: scale(1.2); opacity: 1; }
}
.rev-card-guarantee:hover { border-color: rgba(255,201,87,.6) !important; }
.rev-guarantee-icon {
  font-size: 38px !important;
  filter: drop-shadow(0 0 20px rgba(255,201,87,.55));
  animation: guarantee-icon-pulse 3.5s ease-in-out infinite;
}
@keyframes guarantee-icon-pulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.08); }
}
.rev-card-guarantee .rev-title {
  font-family: 'Frank Ruhl Libre', serif !important;
  font-weight: 700 !important;
  letter-spacing: -.01em !important;
}
.rev-card-guarantee .rev-badge {
  background: linear-gradient(135deg, rgba(255,201,87,.2), rgba(107,33,255,.14)) !important;
  color: var(--gold) !important;
  border: 1px solid rgba(255,201,87,.5) !important;
  text-shadow: 0 0 12px rgba(255,201,87,.55);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: .14em;
}

/* ── HS CARDS v2 — Aurora blob (site) + drift orbs (crm) ────────────── */
.hs-site { isolation: isolate; }
.hs-site::after {
  content: '';
  position: absolute;
  width: 260px; height: 260px;
  top: -90px; right: -90px;
  background: radial-gradient(circle, rgba(255,46,147,.5) 0%, rgba(107,33,255,.28) 45%, transparent 75%);
  filter: blur(22px);
  pointer-events: none;
  z-index: 0;
  animation: hs-aurora-pulse 8s ease-in-out infinite;
}
.hs-site > * { position: relative; z-index: 1; }
@keyframes hs-aurora-pulse {
  0%, 100% { transform: scale(1) rotate(0); opacity: .75; }
  50%      { transform: scale(1.18) rotate(40deg); opacity: 1; }
}

.hs-crm { isolation: isolate; }
.hs-crm::before {
  content: '';
  position: absolute;
  width: 170px; height: 170px;
  top: -55px; right: -55px;
  background: radial-gradient(circle, rgba(0,229,255,.45) 0%, transparent 60%);
  border-radius: 50%;
  filter: blur(14px);
  pointer-events: none;
  z-index: 0;
  animation: hs-orb-a 13s ease-in-out infinite;
}
.hs-crm::after {
  content: '';
  position: absolute;
  width: 140px; height: 140px;
  bottom: -45px; left: -45px;
  background: radial-gradient(circle, rgba(107,33,255,.32) 0%, transparent 65%);
  border-radius: 50%;
  filter: blur(12px);
  pointer-events: none;
  z-index: 0;
  animation: hs-orb-b 15s ease-in-out infinite;
}
.hs-crm > * { position: relative; z-index: 1; }
@keyframes hs-orb-a {
  0%, 100% { transform: translate(0,0); }
  50%      { transform: translate(-16px, 20px); }
}
@keyframes hs-orb-b {
  0%, 100% { transform: translate(0,0); }
  50%      { transform: translate(18px, -16px); }
}

/* ── TESTY v2 — ambient blob + gold accent for featured ─────────────── */
.testy::after {
  content: '';
  position: absolute;
  width: 220px; height: 220px;
  top: -70px; left: -70px;
  background: radial-gradient(circle, rgba(107,33,255,.18) 0%, transparent 60%);
  filter: blur(20px);
  pointer-events: none;
  z-index: -1;
  animation: testy-blob 12s ease-in-out infinite;
}
@keyframes testy-blob {
  0%, 100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(24px, 30px) scale(1.18); }
}
.testy-featured {
  background: linear-gradient(180deg, rgba(40,30,15,.7), rgba(15,10,8,.88)) !important;
  border-color: rgba(255,201,87,.28) !important;
  box-shadow: 0 0 0 1px rgba(255,201,87,.16), 0 22px 64px rgba(255,201,87,.12);
}
.testy-featured::after {
  background: radial-gradient(circle, rgba(255,201,87,.28) 0%, transparent 60%);
}

/* ── TENANT CARDS — was missing CSS entirely ────────────────────────── */
.tenant-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(14,12,30,.85), rgba(8,6,18,.9));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  text-decoration: none;
  color: var(--fg);
  overflow: hidden;
  transition: transform .45s var(--ease), border-color .4s, box-shadow .4s;
  isolation: isolate;
}
.tenant-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,229,255,.4);
  box-shadow: 0 32px 80px rgba(0,229,255,.16), 0 0 0 1px rgba(255,46,147,.15);
}
.tenant-thumb {
  position: relative;
  height: 220px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tenant-blob {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 70%, rgba(255,255,255,.18), transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(255,255,255,.1), transparent 45%);
  pointer-events: none;
  animation: tenant-blob-drift 14s ease-in-out infinite;
}
@keyframes tenant-blob-drift {
  0%, 100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(-8%, 10%) scale(1.12); }
}
.tenant-badge {
  position: absolute;
  top: 14px; right: 14px;
  font: 700 11px/1 'JetBrains Mono', monospace;
  letter-spacing: .14em;
  background: rgba(0,0,0,.65);
  color: #fff;
  border: 1px solid rgba(255,255,255,.2);
  padding: 6px 11px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-transform: uppercase;
  z-index: 2;
}
.tenant-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.tenant-body h3 {
  font: 800 22px/1.2 'Heebo', sans-serif;
  letter-spacing: -.02em;
  margin: 0;
}
.tenant-body p {
  color: var(--fg-dim);
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.tenant-tech {
  margin-top: 12px;
  font: 600 11px/1 'JetBrains Mono', monospace;
  letter-spacing: .12em;
  color: var(--cyan-2);
  background: rgba(0,229,255,.06);
  border: 1px solid rgba(0,229,255,.22);
  padding: 7px 11px;
  border-radius: 999px;
  width: fit-content;
}

/* ── FAQ v2 — Q.0X glow on open state ───────────────────────────────── */
.faq-item.is-open .faq-q-mark {
  background: linear-gradient(135deg, var(--cyan), var(--violet)) !important;
  color: #fff !important;
  border-color: transparent !important;
  text-shadow: 0 0 16px rgba(255,255,255,.5);
  box-shadow: 0 0 24px rgba(0,229,255,.4);
}

/* ── CASE polish — subtle inset highlight ───────────────────────────── */
.case::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 22px;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}

/* ══════════════════════════════════════════════════════════════════════
   CARDS REDESIGN v2 — case identity + faq hover + services-4 ambient
   ══════════════════════════════════════════════════════════════════════ */

/* ── CASE-A — SaaS / Finance / Glitch — violet-pink aurora ──────────── */
.case-a {
  border-color: rgba(107,33,255,.35) !important;
  box-shadow:
    0 0 0 1px rgba(107,33,255,.12),
    0 20px 60px rgba(107,33,255,.18),
    inset 0 0 40px rgba(255,46,147,.06) !important;
  isolation: isolate;
}
.case-a::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  top: -100px; left: -80px;
  background: radial-gradient(circle, rgba(107,33,255,.5) 0%, rgba(255,46,147,.25) 45%, transparent 72%);
  filter: blur(28px);
  pointer-events: none;
  z-index: 0;
  animation: case-a-blob 10s ease-in-out infinite;
}
.case-a .case-frame { z-index: 1; }
.case-a .case-info  { position: relative; z-index: 2; }
@keyframes case-a-blob {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: .7; }
  50%      { transform: scale(1.2) rotate(30deg); opacity: 1; }
}
.case-a:hover {
  border-color: rgba(107,33,255,.7) !important;
  box-shadow:
    0 0 0 1px rgba(255,46,147,.25),
    0 32px 90px rgba(107,33,255,.3),
    inset 0 0 50px rgba(255,46,147,.1) !important;
}

/* ── CASE-B — Solar / Nature — lime-gold warm glow ──────────────────── */
.case-b {
  border-color: rgba(209,255,78,.28) !important;
  box-shadow:
    0 0 0 1px rgba(209,255,78,.08),
    0 20px 60px rgba(255,200,87,.12),
    inset 0 0 36px rgba(209,255,78,.04) !important;
  isolation: isolate;
}
.case-b::before {
  content: '';
  position: absolute;
  width: 280px; height: 280px;
  bottom: -80px; right: -80px;
  background: radial-gradient(circle, rgba(255,200,87,.45) 0%, rgba(209,255,78,.2) 45%, transparent 72%);
  filter: blur(32px);
  pointer-events: none;
  z-index: 0;
  animation: case-b-blob 13s ease-in-out infinite;
}
.case-b .case-frame { z-index: 1; }
.case-b .case-info  { position: relative; z-index: 2; }
@keyframes case-b-blob {
  0%, 100% { transform: translate(0,0) scale(1); opacity: .65; }
  50%      { transform: translate(-20px, -24px) scale(1.15); opacity: 1; }
}
.case-b:hover {
  border-color: rgba(209,255,78,.6) !important;
  box-shadow:
    0 0 0 1px rgba(255,200,87,.2),
    0 32px 80px rgba(209,255,78,.18),
    inset 0 0 40px rgba(255,200,87,.08) !important;
}

/* ── CASE-C — Data / Door Measure — cyber cyan grid ─────────────────── */
.case-c {
  border-color: rgba(0,229,255,.32) !important;
  box-shadow:
    0 0 0 1px rgba(0,229,255,.1),
    0 20px 55px rgba(0,229,255,.14),
    inset 0 1px 0 rgba(0,229,255,.18) !important;
  isolation: isolate;
}
.case-c::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,229,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,255,.06) 1px, transparent 1px);
  background-size: 28px 28px;
  mask: radial-gradient(ellipse at 50% 0%, #000 0%, transparent 70%);
  -webkit-mask: radial-gradient(ellipse at 50% 0%, #000 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.case-c .case-frame { z-index: 1; }
.case-c .case-info  { position: relative; z-index: 2; }
.case-c:hover {
  border-color: rgba(0,229,255,.65) !important;
  box-shadow:
    0 0 0 1px rgba(0,229,255,.22),
    0 32px 80px rgba(0,229,255,.22),
    inset 0 0 0 1px rgba(0,229,255,.1) !important;
}

/* ── CASE-D — Your Project — masked rainbow gradient border ──────────── */
.case-d {
  border-color: transparent !important;
  isolation: isolate;
}
.case-d::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(from 0deg at 50% 50%, #6B21FF, #FF2E93, #FFC857, #00E5FF, #6B21FF);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  animation: case-d-border 12s linear infinite;
  z-index: 3;
}
.case-d .case-frame { z-index: 1; }
.case-d .case-info  { position: relative; z-index: 2; }
@keyframes case-d-border {
  from { --angle: 0deg; }
  to   { filter: hue-rotate(360deg); }
}
.case-d:hover {
  box-shadow:
    0 32px 90px rgba(107,33,255,.25),
    0 0 0 1px rgba(255,46,147,.3),
    inset 0 0 30px rgba(0,229,255,.06) !important;
}

/* ── FAQ ITEMS — stronger hover + terminal identity ─────────────────── */
.faq-cat .faq-item {
  position: relative;
  transition: background .3s, padding-right .25s;
}
.faq-cat .faq-item::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,229,255,.6), rgba(107,33,255,.4));
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}
.faq-cat .faq-item:hover::before,
.faq-cat .faq-item.is-open::before { opacity: 1; }
.faq-cat .faq-item:hover {
  background: linear-gradient(90deg, rgba(0,229,255,.07) 0%, transparent 100%) !important;
}
.faq-cat .faq-item.is-open {
  background: linear-gradient(90deg, rgba(107,33,255,.08) 0%, transparent 100%) !important;
}

/* ── SERVICES-4 — per-card ambient identity ──────────────────────────── */
.services-4 .service:nth-child(1) {
  border-color: rgba(0,229,255,.22) !important;
  box-shadow: 0 0 40px rgba(0,229,255,.08) !important;
}
.services-4 .service:nth-child(2) {
  border-color: rgba(255,46,147,.22) !important;
  box-shadow: 0 0 40px rgba(255,46,147,.08) !important;
}
.services-4 .service:nth-child(3) {
  border-color: rgba(107,33,255,.22) !important;
  box-shadow: 0 0 40px rgba(107,33,255,.08) !important;
}
.services-4 .service:nth-child(4) {
  border-color: rgba(255,200,87,.22) !important;
  box-shadow: 0 0 40px rgba(255,200,87,.08) !important;
}
.services-4 .service:nth-child(1):hover { border-color: rgba(0,229,255,.55) !important; box-shadow: 0 24px 60px rgba(0,229,255,.2) !important; }
.services-4 .service:nth-child(2):hover { border-color: rgba(255,46,147,.55) !important; box-shadow: 0 24px 60px rgba(255,46,147,.2) !important; }
.services-4 .service:nth-child(3):hover { border-color: rgba(107,33,255,.55) !important; box-shadow: 0 24px 60px rgba(107,33,255,.2) !important; }
.services-4 .service:nth-child(4):hover { border-color: rgba(255,200,87,.55) !important; box-shadow: 0 24px 60px rgba(255,200,87,.2) !important; }

/* ── Reduced-motion: kill ambient card animations ───────────────────── */
@media (prefers-reduced-motion: reduce) {
  .plan-glass::before, .plan-glass::after,
  .plan-aurora::before,
  .rev-card-guarantee::after, .rev-guarantee-icon,
  .hs-site::after,
  .hs-crm::before, .hs-crm::after,
  .testy::after,
  .tenant-blob,
  .case-a::before, .case-b::before, .case-d::before {
    animation: none !important;
  }
}

/* ═══════════════════════════════════════════════
   CARD EFFECTS v25 — canvas layering + 3D tilt + cursor light
   ═══════════════════════════════════════════════ */
[data-card]{position:relative!important;overflow:hidden!important;isolation:isolate!important;}
#cmp-al[data-card]{overflow:visible!important;}
[data-card] canvas.ef-bg{position:absolute;inset:0;width:100%;height:100%;pointer-events:none;z-index:0;}
[data-card] canvas.ef-pt{position:absolute;inset:0;width:100%;height:100%;pointer-events:none;z-index:1;}
[data-card] canvas.ef-fl{position:absolute;inset:0;width:100%;height:100%;pointer-events:none;z-index:1;}
[data-card] canvas.ef-mb{position:absolute;inset:0;width:100%;height:100%;pointer-events:none;z-index:1;}
[data-card]::after{content:'';position:absolute;inset:0;border-radius:inherit;background:radial-gradient(circle at var(--mx,50%) var(--my,50%),rgba(255,255,255,.075),transparent 55%);opacity:var(--ml,0);pointer-events:none;z-index:9;transition:opacity .4s;}
#cmp-al[data-card]::after{overflow:hidden;}
.ef-inner{position:relative;z-index:2;}
/* 3D orbit rings */
.ef-3d{width:52px;height:52px;position:relative;transform-style:preserve-3d;animation:ef-spin3d 7s linear infinite;margin-bottom:14px;}
.ef-ring{position:absolute;inset:0;border-radius:50%;border:2px solid;}
.ef-ring:nth-child(1){border-color:rgba(200,255,0,.7);transform:rotateX(70deg);box-shadow:0 0 12px rgba(200,255,0,.4);}
.ef-ring:nth-child(2){border-color:rgba(0,229,255,.6);transform:rotateY(70deg) rotateX(35deg);box-shadow:0 0 12px rgba(0,229,255,.3);}
.ef-ring:nth-child(3){border-color:rgba(107,33,255,.7);transform:rotateX(20deg) rotateZ(45deg);box-shadow:0 0 12px rgba(107,33,255,.4);}
@keyframes ef-spin3d{to{transform:rotateY(360deg) rotateX(25deg)}}
/* FAQ cursor light */
.faq-q{position:relative;}
.faq-q::before{content:'';position:absolute;inset:0;background:radial-gradient(circle at var(--mx,50%) var(--my,50%),rgba(107,33,255,.12),transparent 60%);opacity:var(--ml,0);transition:opacity .3s;pointer-events:none;border-radius:inherit;z-index:0;}
.faq-q > *{position:relative;z-index:1;}
/* WhatsApp matrix canvas */
.wa-messages{position:relative;}
.wa-messages canvas.ef-matrix{position:absolute;inset:0;width:100%;height:100%;pointer-events:none;z-index:0;opacity:.55;}
.wa-messages .wa-msg{position:relative;z-index:1;}

/* ═══════════════════════════════════════════════
   SECTION BACKGROUNDS v26 — fullscreen canvas per section
   ═══════════════════════════════════════════════ */
canvas.sbg{position:absolute;inset:0;width:100%;height:100%;pointer-events:none;z-index:0;}
#compare,#services,#works,#process,#revisions,#whatsapp-feature,#testy-section,#faq-section,.cta-final,.hero-sdf{will-change:transform;}
#services .container,#works .container,#process .container,#revisions .container,
#whatsapp-feature .container,#testy-section .container,#faq-section .container-narrow,
#whatsapp-feature .wa-glow-bg{position:relative;z-index:1;}

/* ═══════════════════════════════════════════════════════
   MOBILE PERF: hide heavy canvases, replace with gradients
   ═══════════════════════════════════════════════════════ */
@media (pointer: coarse), (max-width: 819px) {
  /* Hide all decorative canvases on mobile (RAF loops are also gated in JS) */
  #sbg-global, #hero-sdf, #cta-tunnel-cv,
  canvas.ef-bg, canvas.ef-pt, canvas.ef-mb, canvas.ef-fl, canvas.ef-matrix,
  canvas.sbg { display: none !important; }
  /* Static gradient fallbacks where canvases were the visual */
  .hero.hero-sdf { background: radial-gradient(ellipse at 70% 0%, #2a1448 0%, #0e0a1f 55%, #07060c 100%); }
  .cta-final.cta-tunnel { background: radial-gradient(circle at 50% 50%, #2a0e3d 0%, #07060c 75%); }
  body { background: #07060c; }
  /* Disable 3D tilt + custom cursor on mobile to save GPU */
  .cursor-dot, .cursor-ring { display: none !important; }
  /* Reduce hero animation cost — disable heavy text shimmer/tilt */
  .hero-stats .ef-3d, .ef-3d { display: none !important; }
  /* Cap section padding on mobile for less scrolling */
  section { padding: 56px 0 !important; }
  /* Reduce backdrop-filter cost (Safari iOS performance killer) */
  .nav, .hs-card, .testy-card { backdrop-filter: none !important; -webkit-backdrop-filter: none !important; }
}

