:root {
  --bg: #06070c;
  --bg-elev: #0b0d16;
  --bg-elev-2: #12141f;
  --ink: #f5f7fb;
  --ink-soft: #a7afc4;
  --ink-faint: #6b7386;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);
  --glass: rgba(255, 255, 255, 0.045);

  --violet: #7c3aed;
  --indigo: #6366f1;
  --cyan: #22d3ee;
  --lime: #a3e635;
  --pink: #ec4899;

  --gradient-brand: linear-gradient(90deg, var(--violet), var(--cyan), var(--lime), var(--violet));
  --gradient-cta: radial-gradient(circle at top left, rgba(124,58,237,0.35), transparent 60%),
                  radial-gradient(circle at bottom right, rgba(34,211,238,0.3), transparent 55%);

  --radius: 20px;
  --radius-sm: 12px;
  --font-head: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; letter-spacing: -0.01em; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

.eyebrow {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.center { text-align: center; margin-left: auto; margin-right: auto; }

.section-title {
  font-size: clamp(1.9rem, 3.2vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--ink);
}
.section-sub {
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 620px;
}

.text-gradient {
  background-image: var(--gradient-brand);
  background-size: 300% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradientShift 6s linear infinite;
}
@keyframes gradientShift {
  to { background-position: 300% center; }
}

/* Progress bar */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: var(--gradient-brand);
  background-size: 300% auto;
  z-index: 999;
  transition: width 0.1s ease-out;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.2s ease;
  position: relative;
}

.btn-primary {
  background: var(--gradient-brand);
  background-size: 200% auto;
  color: #06070c;
  font-weight: 700;
}
.btn-primary:hover { transform: translateY(-2px); background-position: 100% center; }
.btn-glow { box-shadow: 0 0 0 0 rgba(124,58,237,0); }
.btn-glow:hover { box-shadow: 0 8px 30px rgba(124,58,237,0.45), 0 0 40px rgba(34,211,238,0.25); }

.btn-ghost {
  background: var(--glass);
  color: var(--ink);
  border: 1.5px solid var(--border-strong);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { border-color: var(--cyan); color: var(--cyan); transform: translateY(-2px); }

.btn-lg { padding: 17px 36px; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 7, 12, 0.7);
  backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  gap: 24px;
}

.logo { display: flex; align-items: center; white-space: nowrap; }
.logo-img { height: 32px; width: auto; display: block; }

.nav { display: flex; gap: 34px; flex: 1; justify-content: center; }
.nav a {
  font-weight: 500;
  font-size: 0.94rem;
  color: var(--ink-soft);
  transition: color 0.2s ease;
  position: relative;
}
.nav a:hover { color: var(--ink); }
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--gradient-brand);
  transition: width 0.25s var(--ease);
}
.nav a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  padding: 110px 0 90px;
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }

.mesh-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  animation: drift 18s ease-in-out infinite;
}
.blob-1 { width: 480px; height: 480px; background: var(--violet); top: -160px; left: -120px; }
.blob-2 { width: 420px; height: 420px; background: var(--cyan); top: 60px; right: -140px; animation-delay: -6s; }
.blob-3 { width: 360px; height: 360px; background: var(--pink); bottom: -180px; left: 30%; animation-delay: -12s; opacity: 0.35; }

@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.08); }
}

.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 20%, black 40%, transparent 90%);
}

.noise {
  position: absolute; inset: 0;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--glass);
  border: 1px solid var(--border-strong);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-soft);
  backdrop-filter: blur(8px);
  margin-bottom: 26px;
}
.pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 0 rgba(163, 230, 53, 0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(163, 230, 53, 0.55); }
  70% { box-shadow: 0 0 0 8px rgba(163, 230, 53, 0); }
  100% { box-shadow: 0 0 0 0 rgba(163, 230, 53, 0); }
}

.hero h1 {
  font-size: clamp(2.3rem, 4.4vw, 3.6rem);
  font-weight: 700;
  margin-bottom: 22px;
}

.hero-sub {
  color: var(--ink-soft);
  font-size: 1.1rem;
  max-width: 540px;
  margin-bottom: 34px;
}

.hero-actions { display: flex; gap: 16px; margin-bottom: 52px; flex-wrap: wrap; }

.hero-stats { display: flex; gap: 44px; flex-wrap: wrap; }
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong {
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--ink);
}
.hero-stats span { font-size: 0.85rem; color: var(--ink-faint); margin-top: 2px; }

/* Hero visual */
.hero-visual { position: relative; height: 460px; perspective: 1200px; }

.orbit-ring {
  position: absolute;
  border: 1px solid var(--border);
  border-radius: 50%;
  top: 50%; left: 50%;
}
.ring-1 { width: 380px; height: 380px; margin: -190px 0 0 -190px; animation: spin 40s linear infinite; }
.ring-2 { width: 460px; height: 460px; margin: -230px 0 0 -230px; border-style: dashed; animation: spin 60s linear infinite reverse; }
@keyframes spin { to { transform: rotate(360deg); } }

.hero-mockup {
  position: absolute;
  top: 50%; left: 50%;
  width: 380px;
  transform: translate(-50%, -50%);
  transition: transform 0.3s var(--ease);
}

.tilt-card { transform-style: preserve-3d; will-change: transform; }

.browser-chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-elev-2);
  padding: 10px 12px;
  border-radius: 12px 12px 0 0;
  border: 1px solid var(--border);
  border-bottom: none;
}
.dot-r, .dot-y, .dot-g { width: 9px; height: 9px; border-radius: 50%; }
.dot-r { background: #ff5f56; }
.dot-y { background: #ffbd2e; }
.dot-g { background: #27c93f; }
.url-pill {
  margin-left: 10px;
  background: rgba(255,255,255,0.05);
  border-radius: 999px;
  padding: 3px 14px;
  font-size: 0.72rem;
  color: var(--ink-faint);
  flex: 1;
}

.mockup-screen {
  background: var(--bg-elev-2);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 16px 16px;
  padding: 18px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 60px rgba(124,58,237,0.15);
}

.screen-hero .m-nav { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.m-logo { width: 22px; height: 22px; border-radius: 6px; background: var(--gradient-brand); }
.m-link { width: 34px; height: 8px; border-radius: 4px; background: rgba(255,255,255,0.12); }
.m-pill-btn { margin-left: auto; width: 52px; height: 18px; border-radius: 999px; background: var(--gradient-brand); }

.m-hero-block { margin-bottom: 18px; }
.m-line { display: block; height: 10px; border-radius: 5px; background: rgba(255,255,255,0.14); margin-bottom: 10px; }
.glow-line { background: var(--gradient-brand); }
.w-70 { width: 70%; } .w-60 { width: 60%; } .w-50 { width: 50%; } .w-40 { width: 40%; } .w-80 { width: 80%; }
.m-btn { display: block; width: 90px; height: 22px; border-radius: 999px; background: var(--gradient-brand); margin-top: 14px; }

.m-mini-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.m-mini-card { height: 46px; border-radius: 8px; background: rgba(255,255,255,0.06); border: 1px solid var(--border); }

.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(15, 17, 26, 0.85);
  padding: 13px 17px;
  border-radius: 12px;
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(10px);
  font-weight: 600;
  font-size: 0.85rem;
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
  animation: float 6s ease-in-out infinite;
}
.card-1 { top: 2%; left: -2%; animation-delay: 0s; }
.card-2 { top: 22%; right: -6%; animation-delay: 1.2s; }
.card-3 { bottom: 18%; left: -8%; animation-delay: 2.4s; }
.card-4 { bottom: -2%; right: 0%; animation-delay: 3.6s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.dot-violet { background: var(--violet); } .dot-cyan { background: var(--cyan); }
.dot-lime { background: var(--lime); } .dot-pink { background: var(--pink); }

.scroll-cue {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  width: 24px; height: 38px;
  border: 1.5px solid var(--border-strong);
  border-radius: 14px;
  z-index: 1;
}
.scroll-cue span {
  display: block;
  width: 4px; height: 8px;
  background: var(--cyan);
  border-radius: 2px;
  margin: 6px auto 0;
  animation: scrollCue 1.8s ease-in-out infinite;
}
@keyframes scrollCue { 0% { transform: translateY(0); opacity: 1; } 70% { opacity: 0; } 100% { transform: translateY(12px); opacity: 0; } }

/* Marquee */
.marquee-strip {
  background: var(--bg-elev);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  overflow: hidden;
}
.marquee-track { display: flex; width: max-content; animation: marquee 26s linear infinite; }
.marquee-group { display: flex; gap: 14px; padding-right: 14px; }
.marquee-group span {
  white-space: nowrap;
  background: var(--glass);
  border: 1px solid var(--border);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-weight: 500;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* Services / Bento */
.services { padding: 110px 0; }
.bento-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s ease;
}
.service-card:hover { transform: translateY(-6px); border-color: var(--border-strong); }

.card-glow {
  position: absolute;
  inset: -1px;
  background: radial-gradient(300px circle at var(--mx, 50%) var(--my, 0%), rgba(124,58,237,0.18), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.service-card:hover .card-glow { opacity: 1; }

.service-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  position: relative;
}
.service-icon svg { width: 22px; height: 22px; }
.icon-violet { background: rgba(124,58,237,0.15); color: var(--violet); }
.icon-cyan { background: rgba(34,211,238,0.15); color: var(--cyan); }
.icon-lime { background: rgba(163,230,53,0.15); color: var(--lime); }
.icon-pink { background: rgba(236,72,153,0.15); color: var(--pink); }

.service-card h3 { font-size: 1.25rem; margin-bottom: 12px; position: relative; }
.service-card p { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 18px; position: relative; }
.service-list { position: relative; }
.service-list li {
  font-size: 0.88rem;
  color: var(--ink-soft);
  padding-left: 18px;
  position: relative;
  margin-bottom: 9px;
}
.service-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
}

/* Service card mini visual stages */
.service-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
}
.service-head .service-icon { width: 34px; height: 34px; margin-bottom: 0; flex-shrink: 0; }
.service-head .service-icon svg { width: 16px; height: 16px; }
.service-head h3 { margin-bottom: 0; font-size: 1.05rem; }

.visual-stage {
  position: relative;
  height: 120px;
  border-radius: 12px;
  background: var(--bg-elev-2);
  border: 1px solid var(--border);
  margin-bottom: 20px;
  overflow: hidden;
  padding: 12px;
}

/* Code stage — looping code / debug / run-output demo */
.stage-code .mini-chrome { display: flex; align-items: center; gap: 5px; margin-bottom: 10px; }
.chrome-label { margin-left: 6px; font-size: 0.65rem; color: var(--ink-faint); font-family: Consolas, monospace; }

.code-view, .terminal-view {
  position: absolute;
  left: 12px; right: 12px; top: 40px;
}

.code-lines {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-family: Consolas, 'SFMono-Regular', monospace;
  font-size: 0.72rem;
  color: var(--ink-soft);
}
.code-line { white-space: nowrap; position: relative; }
.code-line em { font-style: normal; }
.tok-kw { color: var(--pink); }
.tok-fn { color: var(--cyan); }
.tok-str { color: var(--lime); }

.code-view { animation: codePhase 7s ease-in-out infinite; }
@keyframes codePhase {
  0%, 40% { opacity: 1; transform: translateY(0); }
  48%, 92% { opacity: 0; transform: translateY(-6px); }
  100% { opacity: 1; transform: translateY(0); }
}

.debug-line { position: relative; }
.debug-line::before {
  content: "";
  position: absolute;
  left: -8px; right: -8px; top: -3px; bottom: -3px;
  background: rgba(236, 72, 153, 0.15);
  border-left: 2px solid var(--pink);
  opacity: 0;
  animation: debugHighlight 7s ease-in-out infinite;
}
@keyframes debugHighlight {
  0%, 22% { opacity: 0; }
  26%, 40% { opacity: 1; }
  46%, 100% { opacity: 0; }
}
.bp {
  position: absolute;
  left: -14px; top: 3px;
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--pink);
  opacity: 0;
  box-shadow: 0 0 0 0 rgba(236, 72, 153, 0.6);
  animation: bpPulse 7s ease-in-out infinite;
}
@keyframes bpPulse {
  0%, 22% { opacity: 0; box-shadow: 0 0 0 0 rgba(236, 72, 153, 0.6); }
  26% { opacity: 1; }
  35% { box-shadow: 0 0 0 6px rgba(236, 72, 153, 0); }
  40%, 100% { opacity: 0; }
}

.blink-cursor {
  position: absolute;
  bottom: -2px; left: 2px;
  width: 6px; height: 12px;
  background: var(--cyan);
  animation: blinkCursor 1s steps(1) infinite;
}
@keyframes blinkCursor { 50% { opacity: 0; } }

.terminal-view {
  font-family: Consolas, 'SFMono-Regular', monospace;
  font-size: 0.68rem;
  animation: termPhase 7s ease-in-out infinite;
}
@keyframes termPhase {
  0%, 44% { opacity: 0; transform: translateY(6px); }
  50%, 88% { opacity: 1; transform: translateY(0); }
  96%, 100% { opacity: 0; transform: translateY(6px); }
}
.term-line {
  margin-bottom: 7px;
  color: var(--ink-soft);
  opacity: 0;
  transform: translateY(4px);
  animation: termLineFade 7s ease-in-out infinite;
}
.term-line:nth-child(2) { animation-delay: 0.12s; }
.term-line:nth-child(3) { animation-delay: 0.24s; }
@keyframes termLineFade {
  0%, 44% { opacity: 0; transform: translateY(4px); }
  50%, 88% { opacity: 1; transform: translateY(0); }
  94%, 100% { opacity: 0; }
}
.prompt { color: var(--cyan); margin-right: 5px; }
.term-ok { color: var(--lime); }
.term-muted { color: var(--ink-faint); }

/* Web stage — looping wireframe / build / launch process demo */
.stage-web .mini-chrome { margin-bottom: 10px; }
.url-slot { position: relative; height: 12px; flex: 1; margin-left: 6px; }
.url-dev, .url-live {
  position: absolute; left: 0; top: 0;
  display: flex; align-items: center; gap: 5px;
  white-space: nowrap;
}
.url-dev { animation: urlDevPhase 7s ease-in-out infinite; }
.url-live { animation: urlLivePhase 7s ease-in-out infinite; }
.url-live .pulse-dot { width: 6px; height: 6px; }
@keyframes urlDevPhase {
  0%, 60% { opacity: 1; }
  66%, 96% { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes urlLivePhase {
  0%, 64% { opacity: 0; }
  70%, 92% { opacity: 1; }
  98%, 100% { opacity: 0; }
}

.web-scene { position: absolute; left: 12px; right: 12px; top: 40px; height: 70px; }
.phase-wire, .phase-build, .phase-live {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.phase-wire { animation: wireframePhase 7s ease-in-out infinite; }
.phase-build { animation: buildPhase 7s ease-in-out infinite; }
.phase-live { animation: livePhase 7s ease-in-out infinite; }
@keyframes wireframePhase {
  0%, 26% { opacity: 1; transform: translateY(0); }
  32%, 96% { opacity: 0; transform: translateY(-6px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes buildPhase {
  0%, 30% { opacity: 0; transform: translateY(6px); }
  36%, 60% { opacity: 1; transform: translateY(0); }
  66%, 100% { opacity: 0; transform: translateY(6px); }
}
@keyframes livePhase {
  0%, 64% { opacity: 0; transform: translateY(6px); }
  70%, 92% { opacity: 1; transform: translateY(0); }
  98%, 100% { opacity: 0; transform: translateY(6px); }
}

.web-nav-row { display: flex; align-items: center; gap: 6px; margin-bottom: 2px; }
.nav-block { width: 14px; height: 14px; border-radius: 4px; background: rgba(255,255,255,0.12); }
.nav-logo { width: 14px; height: 14px; border-radius: 4px; background: var(--gradient-brand); }
.web-line-sm { width: 20px; height: 6px; border-radius: 3px; background: rgba(255,255,255,0.12); }

.web-line { height: 8px; border-radius: 4px; background: rgba(255,255,255,0.12); }
.web-line.muted { background: rgba(255,255,255,0.07); }
.w1 { width: 70%; } .w2 { width: 45%; }

.wire-box {
  display: block;
  width: 100%; height: 24px;
  border: 1.5px dashed rgba(255,255,255,0.22);
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
}
.build-art {
  display: block;
  width: 100%; height: 24px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--violet), var(--cyan));
}

.web-btn {
  width: 92px; height: 20px;
  border-radius: 999px;
  background: var(--gradient-brand);
  position: relative;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem; font-weight: 700; color: #06070c;
}

.device-row { display: flex; align-items: center; gap: 8px; margin-top: 2px; }
.device { border-radius: 4px; background: rgba(255,255,255,0.08); border: 1.5px solid var(--border-strong); }
.device.desktop { width: 32px; height: 20px; }
.device.mobile { width: 12px; height: 20px; border-radius: 5px; }
.device.active { border-color: var(--lime); background: rgba(163,230,53,0.12); }

.live-badge {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 5px;
  background: rgba(163, 230, 53, 0.15);
  color: var(--lime);
  font-size: 0.64rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

/* SEO stage — looping compose / publish+engage / rank process demo */
.nav-block.round, .nav-logo.round { border-radius: 50%; }
.wire-box.short, .build-art.short { height: 18px; position: relative; }

.hashtag-row { display: flex; gap: 6px; margin-top: 2px; }
.hashtag { font-size: 0.62rem; font-weight: 600; color: var(--cyan); }

.heart-pop {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0);
  font-size: 20px;
  line-height: 1;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.45);
  opacity: 0;
  pointer-events: none;
  animation: heartPop 7s ease-in-out infinite;
}
@keyframes heartPop {
  0%, 37% { opacity: 0; transform: translate(-50%, -50%) scale(0); }
  40% { opacity: 1; transform: translate(-50%, -50%) scale(1.3); }
  44% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  50%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(1); }
}

.engage-row { display: flex; gap: 6px; margin-top: 2px; }
.engage-pill {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  color: var(--ink-soft);
  font-size: 0.62rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 999px;
}
.engage-pill.heart { color: var(--pink); border-color: rgba(236,72,153,0.4); background: rgba(236,72,153,0.12); }

.seo-chart { display: flex; align-items: flex-end; gap: 7px; flex: 1; }
.seo-chart .bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: var(--gradient-brand);
  opacity: 0.95;
}
.b1 { height: 40%; } .b2 { height: 62%; } .b3 { height: 52%; } .b4 { height: 92%; } .b5 { height: 76%; }

/* POS stage — looping order / kitchen ticket / tap-to-pay process demo */
.pos-keypad { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin-top: 6px; }
.pos-keypad .key { height: 20px; border-radius: 6px; background: rgba(255,255,255,0.06); border: 1px solid var(--border); }
.pos-keypad .key.active {
  background: rgba(124,58,237,0.18);
  border-color: var(--violet);
  animation: keyPress 7s ease-in-out infinite;
}
.pos-keypad .key:nth-child(5).active { animation-delay: 0.5s; }
@keyframes keyPress {
  0%, 8% { transform: scale(1); background: rgba(124,58,237,0.18); }
  11% { transform: scale(0.9); background: rgba(124,58,237,0.4); }
  14%, 100% { transform: scale(1); background: rgba(124,58,237,0.18); }
}

.pos-ticket { display: flex; flex-direction: column; gap: 7px; margin-top: 2px; }
.ticket-line {
  height: 7px; border-radius: 4px; background: rgba(255,255,255,0.12);
  opacity: 0; transform: translateY(-5px);
  animation: printLineAuto 7s ease-in-out infinite;
}
.t1 { width: 80%; } .t2 { width: 60%; animation-delay: 0.1s; } .t3 { width: 70%; animation-delay: 0.2s; }
.ticket-total {
  width: 40%; height: 9px; border-radius: 4px; background: var(--gradient-brand); margin-top: 4px;
  opacity: 0; animation: printLineAuto 7s ease-in-out infinite; animation-delay: 0.3s;
}
@keyframes printLineAuto {
  0%, 34% { opacity: 0; transform: translateY(-5px); }
  40%, 88% { opacity: 1; transform: translateY(0); }
  94%, 100% { opacity: 0; }
}

.pay-scene { position: relative; height: 40px; display: flex; align-items: center; justify-content: center; margin-top: 4px; }
.pay-reader {
  position: relative;
  width: 26px; height: 26px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
}
.pay-reader::after { content: ""; width: 8px; height: 8px; border-radius: 2px; background: var(--ink-faint); }
.tap-ring {
  position: absolute; inset: -4px;
  border: 2px solid var(--pink);
  border-radius: 10px;
  opacity: 0;
  animation: tapPulseAuto 7s ease-out infinite;
}
.tap-ring.ring2 { animation-delay: 0.3s; border-color: var(--cyan); }
@keyframes tapPulseAuto {
  0%, 64% { opacity: 0; transform: scale(0.8); }
  70% { opacity: 0.9; transform: scale(0.9); }
  82% { opacity: 0; transform: scale(1.6); }
  100% { opacity: 0; }
}
.pay-card {
  position: absolute;
  width: 22px; height: 14px;
  border-radius: 3px;
  background: var(--gradient-brand);
  top: 50%; left: 50%;
  opacity: 0;
  animation: cardTap 7s ease-in-out infinite;
}
@keyframes cardTap {
  0%, 64% { opacity: 0; transform: translate(-50%, -34px) rotate(-8deg); }
  68% { opacity: 1; transform: translate(-50%, -4px) rotate(-8deg); }
  74% { opacity: 1; transform: translate(-50%, -2px) rotate(-8deg); }
  84% { opacity: 0; transform: translate(-50%, -20px) rotate(-8deg); }
  100% { opacity: 0; }
}
.sparkle {
  position: absolute;
  font-size: 11px;
  opacity: 0;
  animation: sparklePop 7s ease-in-out infinite;
}
.s1 { top: -4px; left: 22%; color: var(--lime); animation-delay: 0s; }
.s2 { top: 2px; right: 20%; color: var(--cyan); animation-delay: 0.08s; }
.s3 { bottom: 2px; left: 50%; color: var(--pink); animation-delay: 0.16s; }
@keyframes sparklePop {
  0%, 70% { opacity: 0; transform: scale(0) rotate(0deg); }
  76% { opacity: 1; transform: scale(1.3) rotate(20deg); }
  84% { opacity: 1; transform: scale(1) rotate(0deg); }
  92%, 100% { opacity: 0; transform: scale(0.6) rotate(-10deg); }
}

/* Showcase */
.showcase { padding: 110px 0; background: var(--bg-elev); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.showcase-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.mockup-card { transition: transform 0.3s var(--ease); }
.mockup-caption { margin-top: 16px; text-align: center; font-size: 0.88rem; color: var(--ink-faint); }

/* Ecom mockup — looping browse / hover / add-to-cart demo */
.screen-ecom { position: relative; overflow: hidden; }
.screen-ecom .m-nav { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.m-hero-row { display: grid; grid-template-columns: 1.2fr 1fr; gap: 14px; margin-bottom: 14px; }
.m-hero-art { border-radius: 10px; min-height: 70px; }
.grad-a { background: linear-gradient(135deg, var(--violet), var(--cyan)); }
.m-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }

.m-card {
  position: relative;
  height: 40px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  overflow: hidden;
  padding: 4px;
}
.m-card-img { display: block; width: 100%; height: 100%; border-radius: 5px; background: rgba(255,255,255,0.08); }
.m-card.card-1 .m-card-img { background: linear-gradient(135deg, var(--violet), var(--cyan)); }
.m-card.card-1 { animation: cardLift 7s ease-in-out infinite; }
@keyframes cardLift {
  0%, 26% { transform: translateY(0); box-shadow: none; border-color: var(--border); }
  32%, 42% { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(124,58,237,0.35); border-color: var(--border-strong); }
  50%, 100% { transform: translateY(0); box-shadow: none; border-color: var(--border); }
}

.m-card-add {
  position: absolute;
  top: 4px; right: 4px;
  width: 15px; height: 15px;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: #06070c;
  font-size: 0.62rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transform: scale(0.5);
  animation: addBtnPop 7s ease-in-out infinite;
}
@keyframes addBtnPop {
  0%, 30% { opacity: 0; transform: scale(0.5); }
  35%, 39% { opacity: 1; transform: scale(1); }
  42% { opacity: 1; transform: scale(0.8); }
  46%, 100% { opacity: 0; transform: scale(0.5); }
}

.m-card-check {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(163, 230, 53, 0.2);
  color: var(--lime);
  font-size: 1.05rem;
  font-weight: 800;
  opacity: 0;
  animation: checkFlash 7s ease-in-out infinite;
}
@keyframes checkFlash {
  0%, 43% { opacity: 0; }
  46%, 56% { opacity: 1; }
  62%, 100% { opacity: 0; }
}

.m-cart-wrap { position: relative; margin-left: auto; }
.m-cart { width: 20px; height: 20px; border-radius: 6px; background: rgba(255,255,255,0.1); display: block; animation: cartBounce 7s ease-in-out infinite; }
@keyframes cartBounce {
  0%, 43% { transform: scale(1); }
  47% { transform: scale(1.3); }
  51% { transform: scale(0.95); }
  55%, 100% { transform: scale(1); }
}
.m-cart-badge {
  position: absolute;
  top: -5px; right: -5px;
  min-width: 14px; height: 14px;
  padding: 0 3px;
  border-radius: 999px;
  background: var(--pink);
  color: #fff;
  font-size: 0.55rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transform: scale(0.4);
  animation: cartBadgePop 7s ease-in-out infinite;
}
@keyframes cartBadgePop {
  0%, 45% { opacity: 0; transform: scale(0.4); }
  49% { opacity: 1; transform: scale(1.25); }
  53%, 92% { opacity: 1; transform: scale(1); }
  97%, 100% { opacity: 0; transform: scale(0.4); }
}

.m-cursor {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #fff;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.45));
  opacity: 0;
  z-index: 5;
  animation: ecomCursor 7s ease-in-out infinite;
}
@keyframes ecomCursor {
  0%, 18% { top: 18%; left: 68%; opacity: 0; }
  23% { top: 18%; left: 68%; opacity: 1; }
  32% { top: 80%; left: 22%; opacity: 1; }
  38%, 42% { top: 74%; left: 30%; opacity: 1; }
  46%, 90% { top: 74%; left: 30%; opacity: 1; }
  96%, 100% { top: 18%; left: 68%; opacity: 0; }
}

.ecom-toast {
  position: absolute;
  left: 50%; bottom: 12px;
  transform: translateX(-50%) translateY(8px);
  background: rgba(163, 230, 53, 0.15);
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
  opacity: 0;
  animation: ecomToastShow 7s ease-in-out infinite;
}
@keyframes ecomToastShow {
  0%, 47% { opacity: 0; transform: translateX(-50%) translateY(8px); }
  53%, 88% { opacity: 1; transform: translateX(-50%) translateY(0); }
  94%, 100% { opacity: 0; transform: translateX(-50%) translateY(8px); }
}

/* Dashboard mockup */
.screen-dashboard { position: relative; overflow: hidden; display: flex; gap: 14px; padding: 14px; min-height: 210px; }

.m-sidebar { display: flex; flex-direction: column; gap: 12px; width: 40px; }
.m-dot { width: 18px; height: 18px; border-radius: 6px; background: var(--gradient-brand); margin-bottom: 6px; }
.m-side-item { height: 8px; border-radius: 4px; background: rgba(255,255,255,0.08); }
.m-side-item.side-2 { animation: sideActive2 7s ease-in-out infinite; }
.m-side-item.side-3 { animation: sideActive3 7s ease-in-out infinite; }
@keyframes sideActive2 {
  0%, 20% { background: var(--cyan); }
  26%, 100% { background: rgba(255,255,255,0.08); }
}
@keyframes sideActive3 {
  0%, 20% { background: rgba(255,255,255,0.08); }
  26%, 100% { background: var(--cyan); }
}

.m-main { flex: 1; display: flex; flex-direction: column; gap: 14px; min-width: 0; }
.m-main-head { display: flex; align-items: center; gap: 10px; }
.dash-title { width: 60px; }
.live-pulse { display: flex; align-items: center; gap: 6px; font-size: 0.68rem; color: var(--ink-faint); font-weight: 600; }
.live-pulse .pulse-dot { width: 6px; height: 6px; }

.m-stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.m-stat {
  display: flex; flex-direction: column; gap: 2px;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  opacity: 0;
  transform: translateY(6px);
  animation: statReveal 7s ease-in-out infinite;
}
.m-stat:nth-child(2) { animation-delay: 0.08s; }
.m-stat:nth-child(3) { animation-delay: 0.16s; }
@keyframes statReveal {
  0%, 8% { opacity: 0; transform: translateY(6px); }
  16%, 100% { opacity: 1; transform: translateY(0); }
}
.stat-val { font-family: var(--font-head); font-size: 0.95rem; font-weight: 700; color: var(--ink); }
.stat-label { font-size: 0.64rem; color: var(--ink-faint); }

.m-chart { flex: 1; display: flex; align-items: flex-end; gap: 8px; }
.m-chart .cbar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: var(--gradient-brand);
  opacity: 0.9;
  transform: scaleY(0);
  transform-origin: bottom;
  animation: barGrow 7s ease-in-out infinite;
}
.m-chart .cbar:nth-child(1) { animation-delay: 0.16s; }
.m-chart .cbar:nth-child(2) { animation-delay: 0.24s; }
.m-chart .cbar:nth-child(3) { animation-delay: 0.32s; }
.m-chart .cbar:nth-child(4) { animation-delay: 0.4s; }
.m-chart .cbar:nth-child(5) { animation-delay: 0.48s; }
.m-chart .cbar:nth-child(6) { animation-delay: 0.56s; }
@keyframes barGrow {
  0%, 14% { transform: scaleY(0); }
  30%, 100% { transform: scaleY(1); }
}

.dash-cursor {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #fff;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.45));
  opacity: 0;
  z-index: 5;
  animation: dashCursor 7s ease-in-out infinite;
}
@keyframes dashCursor {
  0%, 6% { top: 10%; left: 8%; opacity: 0; }
  10% { top: 10%; left: 8%; opacity: 1; }
  20% { top: 46%; left: 8%; opacity: 1; }
  24%, 28% { top: 58%; left: 8%; opacity: 1; transform: scale(0.85); }
  34%, 92% { top: 58%; left: 8%; opacity: 1; transform: scale(1); }
  98%, 100% { top: 10%; left: 8%; opacity: 0; }
}

.dash-toast {
  position: absolute;
  top: 14px; right: 14px;
  display: flex; align-items: center; gap: 7px;
  background: var(--bg-elev);
  border: 1px solid var(--border-strong);
  padding: 7px 12px;
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--ink-soft);
  box-shadow: 0 10px 24px rgba(0,0,0,0.4);
  opacity: 0;
  transform: translateY(-8px);
  animation: dashToast 7s ease-in-out infinite;
}
@keyframes dashToast {
  0%, 54% { opacity: 0; transform: translateY(-8px); }
  60%, 82% { opacity: 1; transform: translateY(0); }
  90%, 100% { opacity: 0; transform: translateY(-8px); }
}

/* POS mockup — looping order-taking / ticket-building / pay success demo */
.screen-pos { position: relative; overflow: hidden; display: flex; gap: 12px; padding: 14px; min-height: 210px; }
.m-pos-menu { flex: 1.3; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; align-content: start; }
.m-pos-item { position: relative; height: 46px; border-radius: 8px; background: rgba(255,255,255,0.06); border: 1px solid var(--border); }
.m-pos-item:nth-child(3n+1) { border-color: rgba(124,58,237,0.4); }

.pos-item-ring {
  position: absolute; inset: -3px;
  border: 2px solid var(--violet);
  border-radius: 10px;
  opacity: 0;
  animation: posItemPulse1 7s ease-in-out infinite;
}
.pos-item-ring.ring-2 { border-color: var(--cyan); animation-name: posItemPulse2; }
@keyframes posItemPulse1 {
  0%, 13% { opacity: 0; transform: scale(0.85); }
  16% { opacity: 1; transform: scale(1); }
  22%, 100% { opacity: 0; transform: scale(1.15); }
}
@keyframes posItemPulse2 {
  0%, 27% { opacity: 0; transform: scale(0.85); }
  30% { opacity: 1; transform: scale(1); }
  36%, 100% { opacity: 0; transform: scale(1.15); }
}

.m-pos-item.pos-item-1 { animation: posItemFlash1 7s ease-in-out infinite; }
.m-pos-item.pos-item-4 { animation: posItemFlash2 7s ease-in-out infinite; }
@keyframes posItemFlash1 {
  0%, 13% { background: rgba(255,255,255,0.06); border-color: rgba(124,58,237,0.4); }
  16%, 20% { background: rgba(124,58,237,0.22); border-color: var(--violet); }
  26%, 100% { background: rgba(255,255,255,0.06); border-color: rgba(124,58,237,0.4); }
}
@keyframes posItemFlash2 {
  0%, 27% { background: rgba(255,255,255,0.06); border-color: rgba(124,58,237,0.4); }
  30%, 34% { background: rgba(34,211,238,0.22); border-color: var(--cyan); }
  40%, 100% { background: rgba(255,255,255,0.06); border-color: rgba(124,58,237,0.4); }
}

.m-pos-ticket { position: relative; flex: 1; background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: 10px; padding: 14px; display: flex; flex-direction: column; gap: 10px; }
.pos-ticket-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2px; }
.pos-table-tag { font-size: 0.66rem; color: var(--ink-faint); font-weight: 600; }

.pos-order-line { opacity: 0; transform: translateX(-6px); }
.ol-1 { animation: posLine1 7s ease-in-out infinite; }
.ol-2 { animation: posLine2 7s ease-in-out infinite; }
.ol-3 { animation: posLine3 7s ease-in-out infinite; }
@keyframes posLine1 { 0%, 18% { opacity: 0; transform: translateX(-6px); } 22%, 88% { opacity: 1; transform: translateX(0); } 94%, 100% { opacity: 0; } }
@keyframes posLine2 { 0%, 34% { opacity: 0; transform: translateX(-6px); } 38%, 88% { opacity: 1; transform: translateX(0); } 94%, 100% { opacity: 0; } }
@keyframes posLine3 { 0%, 38% { opacity: 0; transform: translateX(-6px); } 42%, 88% { opacity: 1; transform: translateX(0); } 94%, 100% { opacity: 0; } }

.m-total { display: block; height: 14px; width: 50%; border-radius: 4px; background: var(--gradient-brand); margin-top: auto; }
.pos-total { opacity: 0; transform: scaleX(0); transform-origin: left; animation: posTotalIn 7s ease-in-out infinite; }
@keyframes posTotalIn { 0%, 42% { opacity: 0; transform: scaleX(0); } 46%, 88% { opacity: 1; transform: scaleX(1); } 94%, 100% { opacity: 0; } }

.m-btn.full { width: 100%; height: 24px; }
.pos-pay-btn {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  color: #06070c;
  font-size: 0.68rem;
  font-weight: 800;
  animation: posPayReady 7s ease-in-out infinite;
}
@keyframes posPayReady {
  0%, 44% { opacity: 0.35; filter: grayscale(0.7) brightness(0.7); transform: scale(1); }
  48%, 50% { opacity: 1; filter: grayscale(0) brightness(1); transform: scale(1); }
  54% { transform: scale(0.94); }
  58%, 88% { opacity: 1; filter: grayscale(0) brightness(1); transform: scale(1); }
  94%, 100% { opacity: 0.35; filter: grayscale(0.7) brightness(0.7); transform: scale(1); }
}

.pos-paid-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(11, 13, 22, 0.92);
  border-radius: 10px;
  color: var(--lime);
  font-size: 1rem;
  font-weight: 800;
  opacity: 0;
  animation: posPaidShow 7s ease-in-out infinite;
}
@keyframes posPaidShow { 0%, 57% { opacity: 0; } 60%, 88% { opacity: 1; } 94%, 100% { opacity: 0; } }

.pos-cursor {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #fff;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.45));
  opacity: 0;
  z-index: 5;
  animation: posCursorMove 7s ease-in-out infinite;
}
@keyframes posCursorMove {
  0%, 8% { top: 16%; left: 14%; opacity: 0; transform: scale(1); }
  12% { top: 16%; left: 14%; opacity: 1; transform: scale(1); }
  16%, 20% { top: 16%; left: 14%; opacity: 1; transform: scale(0.8); }
  28% { top: 52%; left: 14%; opacity: 1; transform: scale(1); }
  32%, 36% { top: 52%; left: 14%; opacity: 1; transform: scale(0.8); }
  48% { top: 80%; left: 78%; opacity: 1; transform: scale(1); }
  52%, 56% { top: 80%; left: 78%; opacity: 1; transform: scale(0.8); }
  60%, 90% { top: 80%; left: 78%; opacity: 1; transform: scale(1); }
  96%, 100% { top: 16%; left: 14%; opacity: 0; transform: scale(1); }
}

.pos-spark { position: absolute; font-size: 12px; opacity: 0; animation: posSparkPop 7s ease-in-out infinite; }
.sp1 { top: 38%; left: 66%; color: var(--lime); animation-delay: 0s; }
.sp2 { top: 28%; left: 82%; color: var(--cyan); animation-delay: 0.06s; }
.sp3 { top: 54%; left: 86%; color: var(--pink); animation-delay: 0.12s; }
@keyframes posSparkPop {
  0%, 58% { opacity: 0; transform: scale(0) rotate(0deg); }
  63% { opacity: 1; transform: scale(1.3) rotate(20deg); }
  70% { opacity: 1; transform: scale(1) rotate(0deg); }
  80%, 100% { opacity: 0; transform: scale(0.6) rotate(-10deg); }
}

/* Why us */
.why-us { padding: 110px 0; }
.why-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: start; }
.why-points { margin-top: 32px; display: flex; flex-direction: column; gap: 22px; }
.why-point h4 { font-size: 1.05rem; margin-bottom: 6px; }
.why-point p { color: var(--ink-soft); font-size: 0.95rem; }

.why-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.stat-card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.stat-card:hover { border-color: var(--border-strong); transform: translateY(-4px); }
.stat-card strong { display: block; font-family: var(--font-head); font-size: 2.1rem; font-weight: 700; margin-bottom: 8px; }
.stat-card span { font-size: 0.85rem; color: var(--ink-faint); }

/* Process / Timeline */
.process { position: relative; overflow: hidden; padding: 110px 0; background: var(--bg-elev); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.process-blob {
  position: absolute;
  top: 10%; left: 50%;
  width: 520px; height: 520px;
  margin-left: -260px;
  background: radial-gradient(circle, rgba(124,58,237,0.16), transparent 65%);
  filter: blur(20px);
  pointer-events: none;
}

.timeline { position: relative; margin-top: 64px; max-width: 720px; margin-left: auto; margin-right: auto; }
.timeline-line {
  position: absolute;
  left: 27px; top: 6px; bottom: 6px;
  width: 2px;
  background: var(--border);
}
.timeline-fill {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 0%;
  background: var(--gradient-brand);
  background-size: 100% 300%;
  animation: fillShimmer 4s linear infinite;
  transition: height 1.2s var(--ease);
}
@keyframes fillShimmer { to { background-position: 0 300%; } }

.timeline-dot {
  position: absolute;
  top: 0%;
  left: 50%;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(163,230,53,0.18), 0 0 16px rgba(163,230,53,0.7);
  transform: translate(-50%, -50%);
  transition: top 1.2s var(--ease);
  z-index: 2;
}

.timeline-step {
  position: relative;
  display: flex;
  gap: 26px;
  padding: 0 0 48px 0;
}
.timeline-step:last-child { padding-bottom: 0; }
.timeline-step:hover { transform: translateX(4px); }
.timeline-step { transition: transform 0.3s var(--ease); }

.step-num {
  position: relative;
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--bg-elev-2);
  border: 1px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan);
  z-index: 1;
  transition: background 0.5s var(--ease), border-color 0.5s var(--ease), box-shadow 0.5s var(--ease), transform 0.5s var(--ease), color 0.5s var(--ease);
}
.step-icon { width: 22px; height: 22px; }

.timeline-step.is-visible .step-num {
  background: var(--gradient-brand);
  border-color: transparent;
  color: #06070c;
  box-shadow: 0 0 0 6px rgba(124,58,237,0.14), 0 8px 24px rgba(124,58,237,0.4);
  animation: stepPop 0.6s var(--ease);
}
@keyframes stepPop {
  0% { transform: scale(0.8); }
  55% { transform: scale(1.12); }
  100% { transform: scale(1); }
}

.timeline-step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.timeline-step p { color: var(--ink-soft); font-size: 0.92rem; max-width: 480px; }

.step-tags { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.step-tags span {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ink-soft);
  background: var(--glass);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 999px;
}

/* FAQ */
.faq { padding: 110px 0; }
.faq-list {
  margin-top: 56px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.faq-item:has(.faq-question[aria-expanded="true"]) { border-color: var(--border-strong); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px 24px;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
}

.faq-icon {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--glass);
  border: 1px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--cyan);
  transition: transform 0.3s var(--ease), background 0.3s ease;
}
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  background: var(--gradient-brand);
  color: #06070c;
  border-color: transparent;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease);
}
.faq-answer > p {
  overflow: hidden;
  min-height: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  padding: 0 24px;
}
.faq-question[aria-expanded="true"] + .faq-answer {
  grid-template-rows: 1fr;
}
.faq-question[aria-expanded="true"] + .faq-answer > p {
  padding: 0 24px 22px;
}

/* CTA banner */
.cta-banner {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  text-align: center;
}
.cta-banner::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--gradient-cta);
}
.blob-cta {
  position: absolute;
  width: 500px; height: 500px;
  background: var(--violet);
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.25;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.cta-inner { position: relative; z-index: 1; }
.cta-banner h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: 16px; }
.cta-banner p { color: var(--ink-soft); font-size: 1.05rem; margin-bottom: 34px; max-width: 520px; margin-left: auto; margin-right: auto; }

/* Contact */
.contact { padding: 110px 0 130px; }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.contact-list { margin-top: 32px; display: flex; flex-direction: column; gap: 18px; }
.contact-list li { display: flex; flex-direction: column; gap: 2px; }
.contact-list strong { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-faint); }
.contact-list a, .contact-list span { font-size: 1.05rem; font-weight: 600; color: var(--ink); }
.contact-list a:hover { color: var(--cyan); }

.contact-form {
  position: relative;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 0.85rem; font-weight: 600; color: var(--ink-soft); }

.form-field input, .form-field select, .form-field textarea {
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: rgba(255,255,255,0.03);
  color: var(--ink);
  resize: vertical;
}
.form-field select option { background: var(--bg-elev-2); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.15);
}
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--ink-faint); }

.form-success {
  position: absolute;
  inset: 0;
  background: var(--bg-elev);
  border-radius: var(--radius);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px;
  z-index: 2;
}
.contact-form.is-sent .form-success { display: flex; }
.success-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: #06070c;
  font-weight: 800;
  font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.form-success h3 { margin-bottom: 8px; }
.form-success p { color: var(--ink-soft); font-size: 0.9rem; max-width: 320px; }

.form-error { color: var(--pink); font-size: 0.85rem; margin: -6px 0 0; min-height: 0; }
.form-error:empty { display: none; }

/* Footer */
.site-footer { background: var(--bg-elev); border-top: 1px solid var(--border); padding: 44px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.footer-nav { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-nav a { font-size: 0.9rem; color: var(--ink-soft); }
.footer-nav a:hover { color: var(--ink); }
.footer-copy { font-size: 0.85rem; color: var(--ink-faint); }

/* Reveal animation */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

/* Responsive */
@media (max-width: 980px) {
  .hero-inner, .why-inner, .contact-inner { grid-template-columns: 1fr; }
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .showcase-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
  .hero-visual { height: 380px; margin-top: 30px; }
  .hero-mockup { width: 320px; }
}

@media (max-width: 760px) {
  .nav, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 78px; left: 0; right: 0;
    background: var(--bg-elev);
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    gap: 18px;
  }
  .bento-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .why-stats { grid-template-columns: 1fr 1fr; }
  .orbit-ring { display: none; }
}
