/* ——— Variables ——— */
:root {
  --bg: #06070b;
  --bg-elevated: #0d0f18;
  --bg-card: #0f1119;
  --text: rgba(255, 255, 255, 0.95);
  --text-muted: rgba(255, 255, 255, 0.55);
  --text-dim: rgba(255, 255, 255, 0.32);
  --accent: #7c3aed;
  --accent-blue: #3b82f6;
  --accent-cyan: #06b6d4;
  --gradient: linear-gradient(135deg, #7c3aed 0%, #3b82f6 50%, #06b6d4 100%);
  --gradient-text: linear-gradient(135deg, #a78bfa 0%, #60a5fa 50%, #22d3ee 100%);
  --gradient-soft: linear-gradient(135deg, rgba(124, 58, 237, 0.25) 0%, rgba(59, 130, 246, 0.15) 50%, rgba(6, 182, 212, 0.1) 100%);
  --gradient-border: linear-gradient(135deg, rgba(124, 58, 237, 0.5), rgba(59, 130, 246, 0.3), rgba(6, 182, 212, 0.5));
  --glass: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.07);
  --glass-hover: rgba(255, 255, 255, 0.06);
  --radius: 20px;
  --radius-sm: 14px;
  --radius-xs: 10px;
  --font: "Manrope", system-ui, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --header-h: 72px;
  --section-gap: 120px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* Grain overlay */
.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Cursor glow */
.cursor-glow {
  pointer-events: none;
  position: fixed;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.07) 0%, rgba(59, 130, 246, 0.03) 40%, transparent 70%);
  transform: translate(-50%, -50%);
  z-index: 1;
  transition: opacity 0.5s;
  opacity: 0;
}
.cursor-glow.is-active { opacity: 1; }

/* Scroll progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient);
  z-index: 200;
  transform-origin: left;
  transform: scaleX(0);
}

.text-gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.container {
  width: min(1200px, 100% - 48px);
  margin-inline: auto;
}

/* ——— Header ——— */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(16px, 3vw, 32px);
  max-width: 1280px;
  margin-inline: auto;
  transition: background 0.4s var(--ease-out), backdrop-filter 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}

.header.is-scrolled {
  background: rgba(6, 7, 11, 0.8);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom-color: var(--glass-border);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.logo__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 16px rgba(124, 58, 237, 0.4));
  transition: filter 0.3s;
}

.logo:hover .logo__icon {
  filter: drop-shadow(0 0 24px rgba(124, 58, 237, 0.6));
}

.logo__icon--footer { width: 36px; height: 36px; }

.logo__wordmark { color: var(--text); white-space: nowrap; }

.logo__gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__brand { color: var(--text); font-weight: 700; }

.inline-link {
  color: #a78bfa;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.inline-link:hover { color: #c4b5fd; }

.nav { display: flex; gap: 32px; }

.nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.25s;
  position: relative;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gradient);
  transition: width 0.3s var(--ease-out);
}
.nav a:hover { color: var(--text); }
.nav a:hover::after { width: 100%; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s, background 0.3s;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.6s;
}
.btn:hover::before { transform: translateX(100%); }

.btn--primary {
  background: var(--gradient);
  color: #fff;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.1) inset,
    0 4px 24px rgba(124, 58, 237, 0.3),
    0 12px 48px rgba(124, 58, 237, 0.15);
}
.btn--primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.15) inset,
    0 8px 32px rgba(124, 58, 237, 0.4),
    0 20px 60px rgba(59, 130, 246, 0.2);
}
.btn--primary:active { transform: translateY(-1px) scale(1); }

/* Pulse animation for primary CTA */
@keyframes btn-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); }
  50% { box-shadow: 0 0 0 12px rgba(124, 58, 237, 0); }
}
.btn--primary.btn--pulse { animation: btn-pulse 2.5s ease-in-out infinite; }

.btn--sm { padding: 10px 22px; font-size: 0.8125rem; }
.btn--lg { padding: 18px 44px; font-size: 1.0625rem; }

.btn--ghost {
  background: var(--glass);
  color: var(--text);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
}
.btn--ghost:hover {
  background: var(--glass-hover);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.btn--card {
  width: 100%;
  margin-top: 16px;
  padding: 12px 16px;
  font-size: 0.8125rem;
  background: rgba(124, 58, 237, 0.1);
  color: #c4b5fd;
  border: 1px solid rgba(124, 58, 237, 0.25);
}
.btn--card:hover {
  background: rgba(124, 58, 237, 0.2);
  border-color: rgba(124, 58, 237, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.15);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.link-arrow::after {
  content: "→";
  transition: transform 0.3s var(--ease-out);
}
.link-arrow:hover::after { transform: translateX(6px); }

/* ——— Glass Card (enhanced) ——— */
.glass-card {
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  position: relative;
}

/* Gradient border on hover */
.glass-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: var(--gradient-border);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
  z-index: -1;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  padding: 1px;
}
.glass-card:hover::before { opacity: 1; }
.glass-card:hover { border-color: transparent; }

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  padding: calc(var(--header-h) + 64px) 0 100px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--bg) url('../assets/hero-bg.jpg') center center / cover no-repeat;
  background-blend-mode: lighten;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 10%, transparent 65%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 10%, transparent 65%);
  pointer-events: none;
}

/* Animated gradient orbs */
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
  pointer-events: none;
  will-change: transform;
}

.hero__glow--1 {
  width: min(600px, 100vw);
  height: min(600px, 100vw);
  background: radial-gradient(circle, rgba(124, 58, 237, 0.5) 0%, rgba(124, 58, 237, 0) 70%);
  top: -15%;
  right: -10%;
  animation: glow-drift-1 20s ease-in-out infinite;
}

.hero__glow--2 {
  width: min(500px, 80vw);
  height: min(500px, 80vw);
  background: radial-gradient(circle, rgba(6, 182, 212, 0.3) 0%, rgba(59, 130, 246, 0) 70%);
  bottom: 5%;
  left: -15%;
  animation: glow-drift-2 24s ease-in-out infinite;
}

@keyframes glow-drift-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-5%, 8%) scale(1.12); }
  66% { transform: translate(3%, -4%) scale(0.95); }
}

@keyframes glow-drift-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(6%, -5%) scale(1.08); }
  66% { transform: translate(-3%, 6%) scale(0.92); }
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
}

.hero__eyebrow {
  margin: 0 0 24px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.hero__title {
  margin: 0 0 28px;
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.hero__lead {
  margin: 0 0 40px;
  font-size: 1.1875rem;
  color: var(--text-muted);
  max-width: 36em;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.hero__micro {
  font-size: 0.8125rem;
  color: var(--text-dim);
  max-width: 300px;
  line-height: 1.5;
}

/* Device mockups */
.hero__visual {
  perspective: 1200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.device-stack {
  position: relative;
  width: 100%;
  max-width: 520px;
  animation: hero-float 7s ease-in-out infinite;
}

@keyframes hero-float {
  0%, 100% { transform: translateY(0) rotateY(-6deg) rotateX(4deg); }
  50% { transform: translateY(-16px) rotateY(-3deg) rotateX(2deg); }
}

.device--laptop {
  position: relative;
  z-index: 1;
}

.device__lid {
  background: linear-gradient(145deg, #1a1c28 0%, #0e1018 100%);
  border-radius: 14px 14px 0 0;
  padding: 12px 12px 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 32px 100px rgba(0, 0, 0, 0.6),
    0 0 80px rgba(124, 58, 237, 0.12),
    0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.device__screen {
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #080a12;
}

.device__base {
  height: 16px;
  margin: 0 auto;
  width: 76%;
  background: linear-gradient(180deg, #24273a 0%, #16181f 100%);
  border-radius: 0 0 10px 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-top: none;
}

.device--phone {
  position: absolute;
  right: -6%;
  bottom: 6%;
  width: 27%;
  min-width: 100px;
  aspect-ratio: 9 / 19;
  background: linear-gradient(145deg, #1e2030, #12141c);
  border-radius: 28px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.5),
    0 0 48px rgba(59, 130, 246, 0.12);
  z-index: 2;
  animation: phone-nudge 6s ease-in-out infinite;
}

@keyframes phone-nudge {
  0%, 100% { transform: translateY(0) rotate(4deg); }
  50% { transform: translateY(-10px) rotate(2deg); }
}

.device__phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 28%;
  height: 18px;
  background: #06070b;
  border-radius: 10px;
  z-index: 3;
}

.mock-site {
  height: 100%;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mock-site--phone {
  padding: 28px 10px 12px;
  gap: 8px;
}

.mock-site__bar {
  height: 8px;
  width: 40%;
  border-radius: 4px;
  background: var(--gradient);
  opacity: 0.9;
}
.mock-site__bar--sm { width: 50%; height: 6px; }

.mock-site__bar--domain {
  width: auto;
  max-width: 100%;
  padding: 0 8px;
  height: auto;
  min-height: 8px;
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: lowercase;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.mock-site__hero-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  padding: 8px 0;
}

.mock-site__line {
  height: 10px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
}
.mock-site__line--lg { width: 85%; }
.mock-site__line--md { width: 60%; }
.mock-site__line--sm { width: 70%; height: 8px; }
.mock-site__line--xs { width: 45%; height: 6px; }

.mock-site__cta {
  width: 100px;
  height: 24px;
  border-radius: 6px;
  background: var(--gradient);
  margin-top: 6px;
}

.mock-site__pill {
  height: 32px;
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.2);
  border: 1px solid rgba(124, 58, 237, 0.3);
}

.mock-site__cards { display: flex; gap: 6px; }
.mock-site__cards span {
  flex: 1;
  height: 40px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 13px;
}
.hero__scroll-hint span {
  display: block;
  width: 4px;
  height: 8px;
  margin: 8px auto 0;
  background: var(--gradient);
  border-radius: 2px;
  animation: scroll-dot 2.2s ease-in-out infinite;
}

@keyframes scroll-dot {
  0%, 100% { opacity: 0.2; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(12px); }
}

/* Reveal animations */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-delay="120"] { transition-delay: 0.12s; }

/* Hero entrance cascade */
.hero [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
}
.hero.is-ready [data-reveal] {
  opacity: 1;
  transform: translateY(0);
}
.hero.is-ready [data-reveal]:nth-child(1) { transition-delay: 0.1s; }
.hero.is-ready [data-reveal]:nth-child(2) { transition-delay: 0.25s; }
.hero.is-ready [data-reveal]:nth-child(3) { transition-delay: 0.4s; }
.hero.is-ready [data-reveal]:nth-child(4) { transition-delay: 0.55s; }

.hero__visual[data-reveal] {
  transform: translateY(48px) scale(0.94);
}
.hero.is-ready .hero__visual[data-reveal] {
  transform: translateY(0) scale(1);
  transition-delay: 0.5s;
}

/* ——— Sections ——— */
.section {
  padding: var(--section-gap) 0;
  position: relative;
}
.section--tight { padding: 56px 0; }

.section__head {
  margin-bottom: 64px;
  max-width: 680px;
}
.section__head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  max-width: 760px;
}

.section__title {
  margin: 0 0 18px;
  font-size: clamp(1.85rem, 3.8vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.section__subtitle {
  margin: 0;
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ——— Filter Strip ——— */
.filter-strip {
  border-block: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.015);
  position: relative;
  overflow: hidden;
}
.filter-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient);
  opacity: 0.3;
}

.filter-strip__text {
  margin: 0;
  text-align: center;
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 52rem;
  margin-inline: auto;
  line-height: 1.7;
}
.filter-strip__text strong {
  color: var(--text);
  font-weight: 600;
}

/* ——— Pain ——— */
.pain__list {
  list-style: none;
  margin: 0 0 48px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pain__item {
  padding: 32px;
  transition: transform 0.4s var(--ease-out), border-color 0.4s, box-shadow 0.4s;
}
.pain__item:hover {
  transform: translateY(-6px);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.3),
    0 0 32px rgba(124, 58, 237, 0.05);
}

.pain__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-xs);
  background: var(--gradient-soft);
  border: 1px solid rgba(124, 58, 237, 0.2);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  background-clip: padding-box;
  color: #a78bfa;
  margin-bottom: 20px;
}

.pain__item h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  font-weight: 700;
}

.pain__item p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.pain__punch {
  text-align: center;
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  font-weight: 700;
  margin: 0;
}

/* ——— Solution ——— */
.solution__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.solution__card {
  padding: 36px;
  transition: transform 0.4s var(--ease-out);
}
.solution__card:hover {
  transform: translateY(-4px);
}

.solution__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gradient);
  margin-bottom: 20px;
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.5), 0 0 40px rgba(59, 130, 246, 0.2);
}

.solution__card h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.solution__card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.65;
}

/* ——— Portfolio / Work ——— */
.work__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.work-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s;
}
.work-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.3), 0 0 40px rgba(124, 58, 237, 0.08);
}

.work-card__mock {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--bg-elevated);
  border: 1px solid var(--glass-border);
  border-bottom: none;
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
}
.work-card__mock::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-soft);
  opacity: 0.4;
  pointer-events: none;
  transition: opacity 0.4s;
}
.work-card:hover .work-card__mock::after { opacity: 0.7; }

.work-card__browser {
  display: flex;
  gap: 5px;
  padding: 10px 12px;
  background: rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid var(--glass-border);
  position: relative;
  z-index: 1;
}
.work-card__browser span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}
.work-card__browser span:first-child { background: #ff5f57; }
.work-card__browser span:nth-child(2) { background: #febc2e; }
.work-card__browser span:nth-child(3) { background: #28c840; }

.work-card__body {
  flex: 1;
  margin: 16px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.04);
  position: relative;
  z-index: 1;
}

.work-card__mock[data-niche="dental"] .work-card__body {
  background: linear-gradient(160deg, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 60%, transparent);
}
.work-card__mock[data-niche="clean"] .work-card__body {
  background: linear-gradient(160deg, rgba(59, 130, 246, 0.18) 0%, transparent 55%),
    rgba(255, 255, 255, 0.03);
}
.work-card__mock[data-niche="repair"] .work-card__body {
  background: linear-gradient(200deg, rgba(251, 191, 36, 0.12) 0%, transparent 45%),
    rgba(255, 255, 255, 0.03);
}
.work-card__mock[data-niche="beauty"] .work-card__body {
  background: linear-gradient(180deg, rgba(236, 72, 153, 0.12) 0%, transparent 50%),
    rgba(255, 255, 255, 0.03);
}
.work-card__mock[data-niche="legal"] .work-card__body {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
    rgba(255, 255, 255, 0.03);
}
.work-card__mock[data-niche="fitness"] .work-card__body {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.12) 0%, transparent 50%),
    rgba(255, 255, 255, 0.03);
}

.work-card__meta {
  padding: 24px;
  border-radius: 0 0 var(--radius) var(--radius);
  border-top: none;
}
.work-card__meta h3 {
  margin: 0 0 6px;
  font-size: 1.125rem;
}

.work-card__stat {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ——— Results ——— */
.results__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.results__item {
  padding: 48px 32px;
  text-align: center;
  transition: transform 0.4s var(--ease-out);
}
.results__item:hover {
  transform: scale(1.04);
}

.results__num {
  display: block;
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
  line-height: 1;
}

.results__label {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ——— Process ——— */
.process__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
}

/* Connecting line */
.process__steps::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 5%;
  right: 5%;
  height: 1px;
  background: var(--gradient);
  opacity: 0.15;
  z-index: 0;
}

.process__step {
  padding: 32px 24px;
  position: relative;
  z-index: 1;
  transition: border-color 0.4s, transform 0.4s var(--ease-out);
}
.process__step:hover {
  transform: translateY(-6px);
}

.process__num {
  position: absolute;
  top: 22px;
  right: 22px;
  font-size: 0.6875rem;
  font-weight: 800;
  color: var(--text-dim);
  letter-spacing: 0.08em;
}

.process__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
}
.process__icon::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.8;
}

.process__icon--analyze {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.25), transparent);
}
.process__icon--structure {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), transparent);
}
.process__icon--design {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(6, 182, 212, 0.2));
}
.process__icon--launch {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.3), transparent);
}

.process__step h3 {
  margin: 0 0 8px;
  font-size: 1.0625rem;
  font-weight: 700;
}
.process__step p {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ——— About ——— */
.about__inner { max-width: 840px; }

.about__content {
  padding: 56px;
  position: relative;
  overflow: hidden;
}
.about__content::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.about__content .section__title { margin-bottom: 24px; }

.about__content p {
  margin: 0 0 18px;
  color: var(--text-muted);
  font-size: 1.0625rem;
  line-height: 1.75;
  position: relative;
}
.about__content p:last-of-type { margin-bottom: 32px; }

.about__avatars { display: flex; }
.about__avatars span {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  margin-left: -10px;
  background: var(--gradient);
  opacity: 0.8;
  transition: transform 0.3s var(--ease-spring);
}
.about__avatars span:first-child { margin-left: 0; }
.about__avatars span:nth-child(2) { filter: hue-rotate(40deg); }
.about__avatars span:nth-child(3) { filter: hue-rotate(80deg); }
.about__avatars span:nth-child(4) { filter: hue-rotate(120deg); }
.about__avatars span:hover { transform: translateY(-4px) scale(1.1); z-index: 2; }

/* ——— Value (Why Expensive) ——— */
.value__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.value__item {
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.3s var(--ease-out);
}
.value__item:hover { transform: translateX(6px); }

.value__item strong {
  font-size: 1.0625rem;
  font-weight: 700;
}
.value__item span {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ——— CTA ——— */
.cta__box {
  position: relative;
  padding: clamp(56px, 8vw, 96px);
  text-align: center;
  overflow: hidden;
}

.cta__glow {
  position: absolute;
  width: 500px;
  height: 500px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(124, 58, 237, 0.2) 0%, rgba(59, 130, 246, 0.08) 40%, transparent 65%);
  pointer-events: none;
  animation: cta-glow-pulse 4s ease-in-out infinite;
}

@keyframes cta-glow-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50% { transform: translate(-50%, -50%) scale(1.15); opacity: 0.7; }
}

.cta__title {
  position: relative;
  margin: 0 auto 20px;
  max-width: 560px;
  font-size: clamp(1.65rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.18;
}

.cta__lead {
  position: relative;
  margin: 0 auto 32px;
  max-width: 500px;
  color: var(--text-muted);
  font-size: 1.0625rem;
  line-height: 1.7;
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
  position: relative;
}

.cta__box .btn { position: relative; }

.cta__micro {
  position: relative;
  margin: 18px 0 0;
  font-size: 0.8125rem;
  color: var(--text-dim);
}

.cta__offer {
  position: relative;
  margin: 28px 0 0;
  font-size: 0.9375rem;
  font-weight: 600;
}

/* ——— Final Filter ——— */
.final-filter__inner {
  padding: 56px;
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
  position: relative;
  overflow: hidden;
}
.final-filter__inner::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.3), rgba(59, 130, 246, 0.1), rgba(6, 182, 212, 0.3));
  opacity: 0.5;
  z-index: -1;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  padding: 1px;
}

.final-filter__title {
  margin: 0 0 18px;
  font-size: clamp(1.35rem, 2.8vw, 1.8rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.final-filter__text {
  margin: 0 0 28px;
  color: var(--text-muted);
  font-size: 1.0625rem;
  line-height: 1.7;
}
.final-filter__text strong { color: var(--text); }

/* ——— Footer ——— */
.footer {
  padding: 48px 0 56px;
  border-top: 1px solid var(--glass-border);
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.footer__brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer__domain {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.25s;
}
.footer__domain:hover { color: #a78bfa; }

.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer__contact-link {
  font-size: 0.8125rem;
  color: var(--text-muted);
  transition: color 0.25s;
}
.footer__contact-link:hover { color: #a78bfa; }

.footer__socials {
  display: flex;
  gap: 12px;
}
.footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  transition: color 0.25s, border-color 0.25s, background 0.25s, transform 0.3s var(--ease-spring);
}
.footer__social:hover {
  color: #fff;
  border-color: rgba(124,58,237,0.4);
  background: rgba(124,58,237,0.15);
  transform: translateY(-3px);
}

.footer__legal {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-dim);
  max-width: 100%;
  line-height: 1.5;
  text-align: center;
  width: 100%;
}

/* CTA messenger buttons */
.cta__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  margin-bottom: 24px;
}

.btn--wa {
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 24px rgba(37,211,102,0.3);
}
.btn--wa:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 32px rgba(37,211,102,0.4);
}

.btn--tg {
  background: #2AABEE;
  color: #fff;
  box-shadow: 0 4px 24px rgba(42,171,238,0.3);
}
.btn--tg:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 32px rgba(42,171,238,0.4);
}

.cta__alt {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  margin-bottom: 20px;
}

.cta__divider {
  color: var(--text-dim);
  font-size: 0.8125rem;
}

.cta__social-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.25s;
}
.cta__social-link:hover {
  color: #a78bfa;
}

/* ——— Responsive ——— */
@media (max-width: 1024px) {
  :root { --section-gap: 96px; }

  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero__content {
    max-width: 680px;
    margin-inline: auto;
  }
  .hero__actions { align-items: center; }
  .hero__micro { text-align: center; }
  .hero__visual { order: -1; margin-bottom: 32px; }
  .device-stack { max-width: 420px; }

  .pain__list { grid-template-columns: 1fr; }
  .work__grid { grid-template-columns: repeat(2, 1fr); }
  .process__steps { grid-template-columns: repeat(2, 1fr); }
  .process__steps::before { display: none; }
  .results__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }
}

@media (max-width: 768px) {
  :root { --section-gap: 80px; }

  .header .btn--ghost { display: none; }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 16px;
    right: 16px;
    flex-direction: column;
    gap: 0;
    padding: 12px;
    background: rgba(6, 7, 11, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out), visibility 0.3s;
    z-index: 99;
  }
  .nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav a {
    padding: 14px 16px;
    border-radius: 10px;
    font-size: 0.9375rem;
  }
  .nav a::after { display: none; }
  .nav a:active { background: rgba(255, 255, 255, 0.05); }

  .menu-toggle { display: flex; }

  .solution__grid { grid-template-columns: 1fr; }
  .work__grid { grid-template-columns: 1fr; }
  .value__list { grid-template-columns: 1fr; }
  .process__steps { grid-template-columns: 1fr; }

  .about__content { padding: 36px 28px; }
  .final-filter__inner { padding: 40px 28px; }
  .cta__box { padding: 40px 28px; }
  .device--phone { right: 0%; width: 26%; }

  .cta__actions .btn {
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 600px) {
  .footer__legal { text-align: left; max-width: none; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .cursor-glow { display: none; }
}

/* ——— Pricing ——— */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.pricing-card {
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s;
  position: relative;
  overflow: hidden;
}
.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 80px rgba(0,0,0,0.3), 0 0 40px rgba(124,58,237,0.08);
}

.pricing-card--popular {
  border-color: transparent;
  background: linear-gradient(180deg, rgba(124,58,237,0.08) 0%, var(--glass) 40%);
}
.pricing-card--popular::before {
  opacity: 1 !important;
}

.pricing-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 5px 14px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--gradient);
  border-radius: 999px;
}

.pricing-card__head {
  margin-bottom: 28px;
}

.pricing-card__tier {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 8px;
}

.pricing-card__name {
  margin: 0 0 8px;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.pricing-card__desc {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.pricing-card__price {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--glass-border);
}

.pricing-card__amount {
  display: block;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.pricing-card__amount small {
  font-size: 0.6em;
  font-weight: 600;
}

.pricing-card__convert {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}
.pricing-card__convert span {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-dim);
  padding: 3px 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
}

.pricing-card__features {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pricing-card__features li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}
.pricing-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gradient);
  opacity: 0.7;
}
.pricing-card--popular .pricing-card__features li::before {
  opacity: 1;
  box-shadow: 0 0 12px rgba(124,58,237,0.4);
}

.pricing-card__btn {
  width: 100%;
  margin-top: auto;
}

.pricing__note {
  text-align: center;
  margin: 48px 0 0;
  font-size: 0.9375rem;
  color: var(--text-dim);
}

@media (max-width: 1024px) {
  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }
  .pricing-card--popular { order: -1; }
}

/* ——— Logo Ticker ——— */
.logos-ticker {
  padding: 32px 0;
  overflow: hidden;
  border-block: 1px solid var(--glass-border);
  background: rgba(255,255,255,0.01);
}
.logos-ticker__track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 28s linear infinite;
}
.logos-ticker__slide {
  display: flex;
  gap: 20px;
  padding-right: 20px;
  flex-shrink: 0;
}
.logo-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 22px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 999px;
  white-space: nowrap;
  transition: color 0.3s, border-color 0.3s;
}
.logo-pill:hover {
  color: var(--text-muted);
  border-color: rgba(124,58,237,0.25);
}
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ——— Work card with real images ——— */
.work-card__mock--img {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.work-card__mock--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius) var(--radius) 0 0;
  transition: transform 0.6s var(--ease-out);
}
.work-card:hover .work-card__mock--img img {
  transform: scale(1.05);
}
.work-card__mock--img::after {
  background: linear-gradient(to top, rgba(6,7,11,0.6) 0%, transparent 50%);
  opacity: 1;
}

/* ——— Testimonials ——— */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  padding: 36px;
  transition: transform 0.4s var(--ease-out);
}
.testimonial:hover {
  transform: translateY(-6px);
}
.testimonial__stars {
  font-size: 1rem;
  letter-spacing: 3px;
  color: #fbbf24;
  margin-bottom: 16px;
}
.testimonial__text {
  margin: 0 0 24px;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-style: italic;
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
}
.testimonial__avatar--1 {
  background: linear-gradient(135deg, #7c3aed, #3b82f6);
}
.testimonial__avatar--2 {
  background: linear-gradient(135deg, #06b6d4, #3b82f6);
}
.testimonial__avatar--3 {
  background: linear-gradient(135deg, #f59e0b, #ef4444);
}
.testimonial__author strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
}
.testimonial__author span {
  font-size: 0.8125rem;
  color: var(--text-dim);
}

@media (max-width: 1024px) {
  .testimonials__grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
}

/* ——— CTA Form ——— */
.cta-form {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 460px;
  margin: 0 auto 24px;
  text-align: left;
}
.cta-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.cta-form__input {
  width: 100%;
  padding: 16px 20px;
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--text);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.cta-form__input::placeholder {
  color: var(--text-dim);
}
.cta-form__input:focus {
  border-color: rgba(124,58,237,0.5);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.12);
}
.cta-form__input--full {
  grid-column: 1 / -1;
}
.cta-form__btn {
  width: 100%;
  font-size: 1.0625rem;
}
.cta-form__success {
  display: none;
  text-align: center;
  padding: 24px;
  font-size: 1.125rem;
  font-weight: 600;
  color: #22d3ee;
}

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

/* ——— WhatsApp FAB ——— */
.wa-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 150;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 24px rgba(37,211,102,0.35), 0 12px 48px rgba(37,211,102,0.15);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
  animation: wa-bounce 3s ease-in-out infinite;
}
.wa-fab:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 32px rgba(37,211,102,0.45);
}
@keyframes wa-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ——— Process animated icons ——— */
.process__icon { position: relative; overflow: hidden; }

@keyframes icon-pulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.5); opacity: 0; }
}
.process__icon::before {
  content: '';
  position: absolute;
  inset: 25%;
  border-radius: 50%;
  background: var(--gradient);
  animation: icon-pulse 3s ease-in-out infinite;
}
.process__step:nth-child(2) .process__icon::before { animation-delay: 0.5s; }
.process__step:nth-child(3) .process__icon::before { animation-delay: 1s; }
.process__step:nth-child(4) .process__icon::before { animation-delay: 1.5s; }

/* Process icon inner symbols */
.process__icon--analyze::after {
  content: '🔍';
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.process__icon--structure::after {
  content: '🗂';
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.process__icon--design::after {
  content: '🎨';
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.process__icon--launch::after {
  content: '🚀';
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ——— Animated gradient border for hero device ——— */
@keyframes border-rotate {
  0% { --angle: 0deg; }
  100% { --angle: 360deg; }
}

/* ——— Shimmer text effect ——— */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.text-shimmer {
  background: linear-gradient(90deg,
    #a78bfa 0%,
    #60a5fa 25%,
    #22d3ee 50%,
    #60a5fa 75%,
    #a78bfa 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 4s linear infinite;
}

/* ——— Stagger animation for lists ——— */
.stagger-reveal > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.stagger-reveal.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger-reveal.is-visible > *:nth-child(2) { transition-delay: 0.12s; }
.stagger-reveal.is-visible > *:nth-child(3) { transition-delay: 0.19s; }
.stagger-reveal.is-visible > *:nth-child(4) { transition-delay: 0.26s; }
.stagger-reveal.is-visible > *:nth-child(5) { transition-delay: 0.33s; }
.stagger-reveal.is-visible > *:nth-child(6) { transition-delay: 0.40s; }
.stagger-reveal.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ——— Section divider ——— */
.section-divider {
  width: 80px;
  height: 2px;
  background: var(--gradient);
  margin: 0 auto;
  opacity: 0.3;
  border-radius: 1px;
}
