/* ============ Devycle — design tokens ============ */
:root {
  --bg: #07070d;
  --bg-2: #0d0d17;
  --surface: #11111c;
  --surface-2: #171726;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #f4f4f8;
  --muted: #9a9ab0;
  --lime: #c8ff3d;
  --violet: #7b61ff;
  --pink: #ff5fa2;
  --cyan: #38e1ff;
  --grad: linear-gradient(120deg, var(--lime), var(--cyan) 45%, var(--violet) 75%, var(--pink));
  --radius: 22px;
  --radius-sm: 14px;
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { overflow-x: hidden; scroll-behavior: smooth; scroll-padding-top: 90px; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; line-height: 1.08; letter-spacing: -0.02em; }
p { margin: 0; }
::selection { background: var(--lime); color: #000; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.muted { color: var(--muted); }
.link { color: var(--lime); border-bottom: 1px solid currentColor; }

/* ============ Ambient FX ============ */
.cursor-glow {
  position: fixed; top: 0; left: 0; width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(123, 97, 255, .16), transparent 65%);
  pointer-events: none; z-index: 0; transform: translate(-50%, -50%);
  transition: opacity .3s; opacity: 0;
}
.noise {
  position: fixed; inset: 0; pointer-events: none; z-index: 100; opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
main, .footer { position: relative; z-index: 1; max-width: 100%; overflow-x: hidden; overflow-x: clip; }

/* ============ Buttons ============ */
.btn {
  --mx: 0px; --my: 0px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 28px; border-radius: 999px; font-weight: 600; font-size: 15px;
  border: 1px solid transparent; cursor: pointer; white-space: nowrap;
  transform: translate(var(--mx), var(--my));
  transition: transform .25s var(--ease), background .25s, box-shadow .3s, border-color .25s, color .25s;
  font-family: var(--font-body);
}
.btn--sm { padding: 11px 20px; font-size: 14px; }
.btn--block { width: 100%; }
.btn--primary { background: var(--lime); color: #0a0a0a; box-shadow: 0 0 0 0 rgba(200, 255, 61, .5); }
.btn--primary:hover { box-shadow: 0 10px 40px -8px rgba(200, 255, 61, .6); }
.btn--ghost { border-color: var(--line-strong); color: var(--text); background: rgba(255,255,255,.03); backdrop-filter: blur(8px); }
.btn--ghost:hover { border-color: var(--lime); color: var(--lime); }
.arrow { display: inline-block; transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ============ Nav ============ */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 50; padding: 16px 0; transition: padding .3s, background .3s, border-color .3s; border-bottom: 1px solid transparent; }
.nav.scrolled { padding: 10px 0; background: rgba(7, 7, 13, .72); backdrop-filter: blur(16px) saturate(140%); -webkit-backdrop-filter: blur(16px) saturate(140%); border-color: var(--line); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 22px; letter-spacing: -0.03em; }
.logo__mark { width: 28px; height: 28px; border-radius: 9px; background: var(--grad); background-size: 200% 200%; animation: gradShift 6s ease infinite; display: grid; place-items: center; }
.logo__mark span { width: 10px; height: 10px; border-radius: 50%; background: var(--bg); }
.nav__links { display: flex; gap: 6px; padding: 6px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.02); }
.nav__links a { padding: 8px 16px; border-radius: 999px; font-size: 14px; color: var(--muted); transition: color .2s, background .2s; }
.nav__links a:hover, .nav__links a.active { color: var(--text); background: rgba(255,255,255,.06); }
.burger { display: none; width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--line-strong); background: transparent; cursor: pointer; position: relative; }
.burger span { position: absolute; left: 12px; right: 12px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .3s var(--ease), top .3s; }
.burger span:first-child { top: 17px; } .burger span:last-child { top: 25px; }
.burger[aria-expanded="true"] span:first-child { top: 21px; transform: rotate(45deg); }
.burger[aria-expanded="true"] span:last-child { top: 21px; transform: rotate(-45deg); }
.mobile-menu {
  display: none; flex-direction: column; gap: 4px; padding: 16px 24px 24px;
  background: rgba(7,7,13,.96); backdrop-filter: blur(16px); border-bottom: 1px solid var(--line);
}
.mobile-menu a:not(.btn) { padding: 14px 4px; font-family: var(--font-display); font-size: 22px; border-bottom: 1px solid var(--line); }
.mobile-menu .btn { margin-top: 16px; }

/* ============ Hero ============ */
.hero { position: relative; min-height: 100vh; min-height: 100svh; padding: 150px 0 40px; display: flex; flex-direction: column; justify-content: center; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: -1; }
.blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .55; will-change: transform; }
.blob--1 { width: 520px; height: 520px; background: var(--violet); top: -120px; left: -120px; animation: float1 18s ease-in-out infinite; }
.blob--2 { width: 420px; height: 420px; background: var(--lime); top: 20%; right: -140px; opacity: .28; animation: float2 22s ease-in-out infinite; }
.blob--3 { width: 380px; height: 380px; background: var(--pink); bottom: -140px; left: 35%; opacity: .3; animation: float3 20s ease-in-out infinite; }
.grid-lines {
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 50% 40%, #000 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 40%, #000 20%, transparent 70%);
}
.hero__inner { position: relative; text-align: center; display: flex; flex-direction: column; align-items: center; }
.pill { display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px 8px 12px; border-radius: 999px; border: 1px solid var(--line-strong); background: rgba(255,255,255,.04); font-size: 14px; color: var(--muted); backdrop-filter: blur(8px); }
.pill__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 0 rgba(200,255,61,.7); animation: pulse 2s infinite; }
.hero__title { font-size: clamp(44px, 9vw, 112px); font-weight: 700; margin: 28px 0 24px; letter-spacing: -0.045em; line-height: .98; }
.hero__title .line { display: block; overflow: hidden; padding-bottom: .08em; }
.hero__title .word { display: inline-block; transform: translateY(110%) rotate(4deg); opacity: 0; transition: transform 1s var(--ease), opacity 1s var(--ease); }
.loaded .hero__title .word { transform: none; opacity: 1; }
.accent-text { background: var(--grad); background-size: 200% auto; -webkit-background-clip: text; background-clip: text; color: transparent; animation: gradShift 6s linear infinite; }
.outline-text { color: transparent; -webkit-text-stroke: 1.5px var(--text); }
.hero__sub { max-width: 640px; font-size: clamp(16px, 2vw, 19px); color: var(--muted); }
.hero__ctas { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; justify-content: center; }

.hero__floats { position: absolute; inset: 0; pointer-events: none; }
.float-card {
  position: absolute; display: flex; align-items: center; gap: 12px; padding: 12px 18px 12px 12px;
  border-radius: 18px; background: rgba(23, 23, 38, .7); border: 1px solid var(--line-strong);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); box-shadow: 0 20px 50px -20px rgba(0,0,0,.6);
  opacity: 0; transition: opacity 1s var(--ease) 1s;
}
.loaded .float-card { opacity: 1; }
.float-card strong { display: block; font-family: var(--font-display); font-size: 16px; line-height: 1.2; }
.float-card small { color: var(--muted); font-size: 12px; }
.fc__icon { width: 38px; height: 38px; border-radius: 12px; display: grid; place-items: center; font-size: 18px; background: rgba(200,255,61,.12); color: var(--lime); }
.float-card--a { top: 8%; left: 0; animation: bob 6s ease-in-out infinite; }
.float-card--b { top: 20%; right: 0; animation: bob 7s ease-in-out infinite .8s; }
.float-card--b .fc__icon { background: rgba(123,97,255,.16); color: #a996ff; }
.float-card--c { bottom: -6%; left: 6%; animation: bob 8s ease-in-out infinite .4s; }
.float-card--c .fc__icon { background: rgba(255,95,162,.14); color: var(--pink); }

/* Logos marquee */
.logos { margin-top: 90px; }
.logos__label { text-align: center; color: var(--muted); font-size: 14px; margin-bottom: 22px; padding: 0 24px; }
.marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent); }
.marquee__track { display: flex; gap: 64px; width: max-content; animation: marquee 30s linear infinite; }
.marquee__track span { font-family: var(--font-display); font-size: 26px; font-weight: 600; color: rgba(255,255,255,.35); letter-spacing: -0.02em; transition: color .3s; }
.marquee__track span:hover { color: var(--text); }
.marquee:hover .marquee__track { animation-play-state: paused; }

/* ============ Sections ============ */
.section { padding: 120px 0; position: relative; }
.section--tight { padding: 40px 0; }
.section__head { text-align: center; max-width: 760px; margin: 0 auto 64px; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.section__head--left { text-align: left; align-items: flex-start; margin: 0; }
.section__head h2 { font-size: clamp(34px, 5.2vw, 60px); font-weight: 700; }
.section__head h2 em, .contact h2 em { font-style: normal; background: var(--grad); background-size: 200% auto; -webkit-background-clip: text; background-clip: text; color: transparent; animation: gradShift 8s linear infinite; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 13px; text-transform: uppercase; letter-spacing: .14em; color: var(--lime); font-weight: 600; }
.eyebrow::before { content: ""; width: 22px; height: 1px; background: currentColor; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(40px); filter: blur(6px); transition: opacity .9s var(--ease) var(--d, 0s), transform .9s var(--ease) var(--d, 0s), filter .9s var(--ease) var(--d, 0s), border-color .3s, background .3s, box-shadow .3s; }
.reveal.in { opacity: 1; transform: none; filter: none; }

/* Process */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; }
.steps__line { position: absolute; top: 44px; left: 8%; right: 8%; height: 1px; background: var(--line); }
.steps__line span { display: block; height: 100%; width: 0; background: var(--grad); transition: width 1.8s var(--ease) .3s; }
.steps.in .steps__line span { width: 100%; }
.step { position: relative; padding: 32px; border-radius: var(--radius); background: linear-gradient(180deg, var(--surface), var(--bg-2)); border: 1px solid var(--line); }
.step:hover { border-color: var(--line-strong); }
.step__num { display: inline-grid; place-items: center; width: 56px; height: 56px; border-radius: 16px; background: var(--bg); border: 1px solid var(--line-strong); font-family: var(--font-display); font-weight: 700; font-size: 20px; color: var(--lime); margin-bottom: 28px; position: relative; z-index: 1; }
.step h3 { font-size: 24px; margin-bottom: 12px; }
.step p { color: var(--muted); }

/* Bento benefits */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.bento--wide { grid-column: span 2; }
.card {
  --x: 50%; --y: 50%;
  position: relative; padding: 32px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--line); overflow: hidden; isolation: isolate;
}
.card::before {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: 0; transition: opacity .4s;
  background: radial-gradient(420px circle at var(--x) var(--y), rgba(200,255,61,.12), transparent 45%);
}
.card::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px; opacity: 0; transition: opacity .4s;
  background: radial-gradient(300px circle at var(--x) var(--y), rgba(200,255,61,.7), transparent 50%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude;
}
.card:hover::before, .card:hover::after { opacity: 1; }
.card__icon { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; background: rgba(255,255,255,.04); border: 1px solid var(--line-strong); margin-bottom: 40px; transition: transform .4s var(--ease), background .3s; }
.card__icon svg { width: 22px; height: 22px; fill: none; stroke: var(--lime); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.card:hover .card__icon { transform: rotate(-8deg) scale(1.08); background: rgba(200,255,61,.1); }
.card h3 { font-size: 22px; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 15px; }

/* Services */
.svc { display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px; }
.svc__card {
  --x: 50%; --y: 50%;
  position: relative; grid-column: span 3; padding: 28px; border-radius: var(--radius);
  background: linear-gradient(160deg, var(--surface-2), var(--bg-2)); border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 14px; overflow: hidden; isolation: isolate;
}
.svc__card::before {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: 0; transition: opacity .4s;
  background: radial-gradient(460px circle at var(--x) var(--y), rgba(123,97,255,.16), transparent 45%);
}
.svc__card::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px; opacity: 0; transition: opacity .4s; pointer-events: none;
  background: radial-gradient(320px circle at var(--x) var(--y), rgba(200,255,61,.7), transparent 50%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude;
}
.svc__card:hover::before, .svc__card:hover::after { opacity: 1; }
.svc__card--feature { grid-column: span 6; padding: 0; gap: 0; }
.svc__content { padding: 28px 32px 32px; display: flex; flex-direction: column; gap: 14px; }
.svc__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.svc__icon { width: 52px; height: 52px; border-radius: 16px; display: grid; place-items: center; transition: transform .5s var(--ease); flex: none; }
.svc__card:hover .svc__icon { transform: rotate(-10deg) scale(1.08); }
.svc__icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linejoin: round; stroke-linecap: round; }
.svc__letter { font-family: var(--font-display); font-weight: 700; font-size: 24px; }
.svc__icon--cyan { background: rgba(56,225,255,.12); color: var(--cyan); }
.svc__icon--violet { background: rgba(123,97,255,.16); color: #a996ff; }
.svc__icon--lime { background: rgba(200,255,61,.12); color: var(--lime); }
.svc__icon--pink { background: rgba(255,95,162,.14); color: var(--pink); }
.svc__card h3 { font-size: 22px; }
.svc__card--feature h3 { font-size: clamp(24px, 2.6vw, 32px); }
.svc__card p { color: var(--muted); font-size: 15px; }
.svc__card--sm p { flex: 1; }
.svc__tag { align-self: flex-start; font-size: 12px; padding: 6px 12px; border-radius: 999px; border: 1px solid var(--line-strong); color: var(--muted); }
.svc__tag--new { border-color: rgba(200,255,61,.4); color: var(--lime); background: rgba(200,255,61,.06); }
.svc__go { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line-strong); display: grid; place-items: center; color: var(--muted); font-size: 15px; transition: transform .4s var(--ease), background .3s, color .3s, border-color .3s; }
.svc__card:hover .svc__go { transform: rotate(45deg); background: var(--lime); color: #0a0a0a; border-color: var(--lime); }
.svc__visual { position: relative; height: 260px; border-bottom: 1px solid var(--line); overflow: hidden;
  background-image: radial-gradient(rgba(255,255,255,.08) 1px, transparent 1px); background-size: 18px 18px; }

/* UI/UX mock */
.svc__visual--ux { background-color: rgba(255,95,162,.03); }
.mock { position: absolute; left: 50%; top: 32px; width: min(420px, 84%); transform: translateX(-50%); border-radius: 14px; background: var(--bg); border: 1px solid var(--line-strong); box-shadow: 0 30px 60px -20px rgba(0,0,0,.7); transition: transform .6s var(--ease); }
.svc__card:hover .mock { transform: translateX(-50%) translateY(-6px) rotate(-1deg); }
.mock__bar { display: flex; align-items: center; gap: 6px; padding: 10px 12px; border-bottom: 1px solid var(--line); }
.mock__bar i { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.15); }
.mock__bar i:first-child { background: #ff5f57; } .mock__bar i:nth-child(2) { background: #febc2e; } .mock__bar i:nth-child(3) { background: #28c840; }
.mock__bar span { margin-left: 10px; font-size: 10px; color: var(--muted); padding: 2px 10px; border-radius: 6px; background: rgba(255,255,255,.04); }
.mock__body { padding: 14px 16px 18px; display: flex; flex-direction: column; gap: 16px; }
.mock__nav { display: flex; align-items: center; gap: 8px; }
.mock__nav b { width: 18px; height: 18px; border-radius: 6px; background: var(--grad); margin-right: auto; }
.mock__nav span { width: 28px; height: 6px; border-radius: 4px; background: rgba(255,255,255,.12); }
.mock__hero { display: flex; flex-direction: column; gap: 8px; }
.sk { display: block; height: 10px; border-radius: 6px; background: linear-gradient(90deg, rgba(255,255,255,.08), rgba(255,255,255,.2), rgba(255,255,255,.08)); background-size: 200% 100%; animation: shimmer 2.4s linear infinite; }
.sk--lg { width: 78%; height: 14px; } .sk--md { width: 55%; }
.mock__btn-wrap { position: relative; width: fit-content; margin-top: 6px; }
.mock__btn { display: block; width: 86px; height: 24px; border-radius: 999px; background: var(--lime); animation: btnPop 6s var(--ease) infinite; }
.mock__sel { position: absolute; inset: -5px; border: 1px solid var(--pink); border-radius: 4px; animation: selShow 6s var(--ease) infinite; }
.mock__sel em { position: absolute; top: -20px; left: -1px; font-style: normal; font-size: 9px; white-space: nowrap; padding: 2px 6px; border-radius: 4px 4px 4px 0; background: var(--pink); color: #fff; }
.mock__sel i { position: absolute; width: 6px; height: 6px; background: #fff; border: 1px solid var(--pink); }
.mock__sel i:nth-of-type(1) { top: -3px; left: -3px; } .mock__sel i:nth-of-type(2) { top: -3px; right: -3px; }
.mock__sel i:nth-of-type(3) { bottom: -3px; left: -3px; } .mock__sel i:nth-of-type(4) { bottom: -3px; right: -3px; }
.mock__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.mock__cards span { height: 44px; border-radius: 8px; background: rgba(255,255,255,.05); border: 1px solid var(--line); }
.mock__cards span:nth-child(2) { background: rgba(123,97,255,.15); border-color: rgba(123,97,255,.3); }
.mock__swatches { position: absolute; right: -18px; top: 60px; display: flex; flex-direction: column; gap: 6px; padding: 8px; border-radius: 12px; background: var(--surface-2); border: 1px solid var(--line-strong); box-shadow: 0 10px 30px -10px rgba(0,0,0,.6); animation: bob 5s ease-in-out infinite; }
.mock__swatches i { width: 16px; height: 16px; border-radius: 50%; }
.mock__swatches i:nth-child(1) { background: var(--lime); } .mock__swatches i:nth-child(2) { background: var(--cyan); }
.mock__swatches i:nth-child(3) { background: var(--violet); } .mock__swatches i:nth-child(4) { background: var(--pink); }
.mock__cursor { position: absolute; width: 20px; height: 20px; left: 0; top: 0; fill: #fff; stroke: #0a0a0a; stroke-width: 1.2; filter: drop-shadow(0 2px 4px rgba(0,0,0,.5)); animation: cursorMove 6s var(--ease) infinite; }

/* AI flow */
.svc__visual--ai { background-color: rgba(200,255,61,.02); display: grid; place-items: center; }
.svc__visual--ai::before { content: ""; position: absolute; width: 260px; height: 260px; left: 50%; top: 50%; transform: translate(-50%, -50%); background: radial-gradient(closest-side, rgba(56,225,255,.2), transparent); }
.flow { position: relative; width: 100%; height: 100%; padding: 14px; font-family: var(--font-body); }
.flow__paths path { fill: none; stroke: rgba(255,255,255,.12); stroke-width: 1.5; }
.flow__pulses path { fill: none; stroke: url(#flowGrad); stroke-width: 2.5; stroke-linecap: round; stroke-dasharray: 18 200; animation: flowDash 2.2s linear infinite; }
.flow__nodes rect { fill: #171726; stroke: rgba(255,255,255,.16); }
.flow__nodes text { fill: #d6d6e2; font-size: 12px; font-weight: 500; text-anchor: middle; }
.flow__nodes g:hover rect { stroke: var(--lime); }
.flow__orb { filter: drop-shadow(0 0 16px rgba(56,225,255,.6)); animation: orbPulse 3s ease-in-out infinite; transform-origin: 200px 110px; }
.flow__ring { fill: none; stroke: rgba(200,255,61,.5); stroke-width: 1.5; transform-origin: 200px 110px; animation: ringOut 3s ease-out infinite; }
.flow__ring--2 { animation-delay: 1.5s; }
.flow__ai { fill: #07070d; font-family: var(--font-display); font-weight: 700; font-size: 17px; text-anchor: middle; }

@keyframes shimmer { to { background-position: -200% 0; } }
@keyframes cursorMove {
  0%   { transform: translate(60px, 190px); }
  25%  { transform: translate(120px, 150px); }
  35%  { transform: translate(118px, 146px) scale(.85); }
  40%  { transform: translate(118px, 146px); }
  65%  { transform: translate(300px, 110px); }
  85%  { transform: translate(230px, 200px); }
  100% { transform: translate(60px, 190px); }
}
@keyframes selShow { 0%, 30% { opacity: 0; transform: scale(1.08); } 36%, 88% { opacity: 1; transform: none; } 100% { opacity: 0; } }
@keyframes btnPop { 0%, 33% { transform: none; } 36% { transform: scale(.92); } 40%, 100% { transform: none; } }
@keyframes flowDash { from { stroke-dashoffset: 218; } to { stroke-dashoffset: 0; } }
@keyframes orbPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.08); } }
@keyframes ringOut { 0% { transform: scale(.8); opacity: .8; } 100% { transform: scale(2.1); opacity: 0; } }

/* Reviews carousel */
.reviews { overflow: hidden; }
.reviews__rows { display: flex; flex-direction: column; gap: 20px; }
.reviews__row { overflow: hidden; padding: 6px 0; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.reviews__track { display: flex; gap: 20px; width: max-content; animation: reviewsScroll var(--dur, 60s) linear infinite; }
.reviews__row--reverse .reviews__track { animation-direction: reverse; }
.reviews__rows:hover .reviews__track,
.reviews__rows:focus-within .reviews__track,
.reviews__rows.paused .reviews__track { animation-play-state: paused; }
.review {
  margin: 0; width: 400px; flex: none; padding: 28px; border-radius: var(--radius);
  background: linear-gradient(160deg, var(--surface-2), var(--surface)); border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 18px;
  transition: border-color .3s, transform .4s var(--ease), box-shadow .4s;
}
.review:hover { border-color: rgba(200,255,61,.4); transform: translateY(-4px); box-shadow: 0 24px 50px -24px rgba(200,255,61,.25); }
.review__stars { color: var(--lime); letter-spacing: 3px; font-size: 15px; }
.review blockquote { margin: 0; flex: 1; font-size: 15.5px; line-height: 1.65; color: #d6d6e2; }
.review figcaption { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid var(--line); }
.review figcaption strong { display: block; font-size: 15px; }
.review figcaption small { display: block; color: var(--muted); font-size: 13px; line-height: 1.4; }
.review .avatar { width: 42px; height: 42px; flex: none; font-size: 14px; }
@keyframes reviewsScroll { to { transform: translateX(calc(-50% - 10px)); } }

/* Testimonial */
.quote { margin: 0 auto; max-width: 920px; text-align: center; padding: 64px 48px; border-radius: 32px; background: radial-gradient(120% 120% at 50% 0%, rgba(123,97,255,.18), transparent 60%), var(--surface); border: 1px solid var(--line); position: relative; }
.quote__mark { font-family: var(--font-display); font-size: 140px; line-height: .6; height: 60px; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.quote blockquote { margin: 0 0 32px; font-family: var(--font-display); font-size: clamp(20px, 2.6vw, 30px); line-height: 1.35; letter-spacing: -0.015em; font-weight: 500; }
.quote figcaption { display: inline-flex; align-items: center; gap: 14px; text-align: left; }
.quote figcaption small { display: block; color: var(--muted); font-size: 14px; }
.avatar { width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; background: var(--grad); color: #0a0a0a; font-weight: 700; font-family: var(--font-display); }

/* Pricing */
.plans { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 980px; margin: 0 auto; align-items: stretch; }
.plan { position: relative; padding: 40px; border-radius: 28px; background: var(--surface); border: 1px solid var(--line); display: flex; flex-direction: column; gap: 20px; }
.plan h3 { font-size: 28px; }
.plan__desc { color: var(--muted); }
.plan__price { display: flex; align-items: baseline; gap: 10px; padding: 20px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.plan__amount { font-family: var(--font-display); font-size: 52px; font-weight: 700; letter-spacing: -0.04em; line-height: 1; }
.plan__per { color: var(--muted); }
.checks { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.checks li { position: relative; padding-left: 34px; font-size: 15px; }
.checks li::before { content: ""; position: absolute; left: 0; top: 1px; width: 22px; height: 22px; border-radius: 50%; background: rgba(200,255,61,.14) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c8ff3d' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5 9-10'/%3E%3C/svg%3E") center / 12px no-repeat; }
.plan--featured { background: linear-gradient(180deg, #16162a, #0f0f1c); border-color: transparent; box-shadow: 0 40px 100px -40px rgba(123,97,255,.6); }
.plan__border { position: absolute; inset: 0; border-radius: inherit; padding: 1.5px; overflow: hidden; pointer-events: none;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; }
.plan__border::before { content: ""; position: absolute; top: 50%; left: 50%; width: 200%; aspect-ratio: 1; transform: translate(-50%, -50%); background: conic-gradient(from 0deg, var(--lime), var(--cyan), var(--violet), var(--pink), var(--lime)); animation: spin 5s linear infinite; }
.plan__badge { position: absolute; top: 24px; right: 24px; padding: 6px 14px; border-radius: 999px; background: var(--lime); color: #0a0a0a; font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }

/* FAQ */
.faq-wrap { display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; align-items: start; }
.faq-wrap .section__head { position: sticky; top: 120px; }
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq details { border-radius: 18px; background: var(--surface); border: 1px solid var(--line); }
.faq details[open] { border-color: rgba(200,255,61,.35); background: var(--surface-2); }
.faq summary { list-style: none; cursor: pointer; padding: 22px 24px; display: flex; justify-content: space-between; align-items: center; gap: 20px; font-weight: 600; font-size: 17px; }
.faq summary::-webkit-details-marker { display: none; }
.plus { flex: none; width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--line-strong); position: relative; transition: transform .4s var(--ease), background .3s, border-color .3s; }
.plus::before, .plus::after { content: ""; position: absolute; top: 50%; left: 50%; width: 12px; height: 1.5px; background: var(--text); transform: translate(-50%, -50%); transition: background .3s; }
.plus::after { transform: translate(-50%, -50%) rotate(90deg); }
details[open] .plus { transform: rotate(135deg); background: var(--lime); border-color: var(--lime); }
details[open] .plus::before, details[open] .plus::after { background: #0a0a0a; }
.faq__body { padding: 0 24px; }
.faq__body p { color: var(--muted); }
.faq__body p + p { margin-top: 10px; }
details[open] .faq__body { padding-bottom: 22px; animation: faqIn .5s var(--ease); }

/* Booking */
.book { overflow: hidden; }
.book__glow { position: absolute; left: 50%; top: 30%; width: min(900px, 100%); height: 600px; transform: translateX(-50%); background: radial-gradient(closest-side, rgba(123,97,255,.25), transparent); filter: blur(40px); z-index: -1; pointer-events: none; }
.book__frame { max-width: 1000px; margin: 0 auto; border-radius: 28px; padding: 8px; background: linear-gradient(var(--surface), var(--surface)) padding-box, var(--grad) border-box; border: 1px solid transparent; overflow: hidden; }
.calendly-inline-widget { min-width: 280px; height: 720px; border-radius: 22px; overflow: hidden; }
.book__cta { text-align: center; margin-top: 32px; }

/* Footer */
.footer { padding: 80px 0 32px; border-top: 1px solid var(--line); overflow: hidden; }
.footer__big { font-family: var(--font-display); font-weight: 700; font-size: clamp(80px, 22vw, 300px); line-height: .8; letter-spacing: -0.06em; text-align: center; margin-bottom: 64px; background: linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,0)); -webkit-background-clip: text; background-clip: text; color: transparent; user-select: none; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 40px; }
.footer__grid h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); font-family: var(--font-body); font-weight: 600; margin-bottom: 18px; }
.footer__grid a:not(.logo) { display: block; margin-bottom: 10px; color: var(--text); opacity: .85; transition: color .2s, opacity .2s, transform .2s; width: fit-content; }
.footer__grid a:not(.logo):hover { color: var(--lime); opacity: 1; transform: translateX(3px); }
.footer__tag { margin-top: 16px; max-width: 280px; }
.footer__bottom { margin-top: 64px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 16px; color: var(--muted); font-size: 14px; flex-wrap: wrap; }
.to-top:hover { color: var(--lime); }

/* ============ Keyframes ============ */
@keyframes gradShift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
@keyframes float1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(140px, 80px) scale(1.15); } }
@keyframes float2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-120px, 120px) scale(.9); } }
@keyframes float3 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-160px, -60px); } }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(200,255,61,.7); } 70% { box-shadow: 0 0 0 10px rgba(200,255,61,0); } 100% { box-shadow: 0 0 0 0 rgba(200,255,61,0); } }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes marquee { to { transform: translateX(calc(-50% - 32px)); } }
@keyframes faqIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
@keyframes spin { to { transform: translate(-50%, -50%) rotate(360deg); } }

/* ============ Responsive ============ */
@media (max-width: 1280px) {
  .hero__floats { display: none; }
}
@media (max-width: 1080px) {
  .svc__card--feature { grid-column: span 12; }
  .svc__card--sm { grid-column: span 6; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento--wide { grid-column: span 2; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .burger { display: block; }
  .nav.open .mobile-menu { display: flex; }
  .nav.open { background: rgba(7,7,13,.96); }
  .hero__floats { display: none; }
  .steps { grid-template-columns: 1fr; }
  .steps__line { top: 8%; bottom: 8%; left: 60px; right: auto; width: 1px; height: auto; }
  .steps__line span { width: 100%; height: 0; transition: height 1.8s var(--ease) .3s; }
  .steps.in .steps__line span { height: 100%; }
  .plans { grid-template-columns: 1fr; }
  .faq-wrap { grid-template-columns: 1fr; gap: 40px; }
  .faq-wrap .section__head { position: static; }
  .section { padding: 90px 0; }
}
@media (max-width: 600px) {
  .container { padding: 0 16px; }
  .hero { padding-top: 120px; }
  .hero__ctas { flex-direction: column; width: 100%; }
  .hero__ctas .btn { width: 100%; }
  .logos { margin-top: 64px; }
  .marquee__track { gap: 40px; }
  .marquee__track span { font-size: 20px; }
  .bento { grid-template-columns: 1fr; }
  .svc__card--sm { grid-column: span 12; }
  .svc__visual { height: 230px; }
  .svc__content { padding: 24px 22px 26px; }
  .mock { top: 24px; width: 88%; }
  .mock__swatches { right: -10px; }
  .bento--wide { grid-column: auto; }
  .card, .step, .svc__card--sm { padding: 24px; }
  .card__icon { margin-bottom: 28px; }
  .review { width: 300px; padding: 22px; }
  .review blockquote { font-size: 14.5px; }
  .reviews__row { mask-image: none; -webkit-mask-image: none; }
  .plan { padding: 30px 22px; }
  .plan__badge { top: 18px; right: 18px; }
  .plan__amount { font-size: 44px; }
  .faq summary { padding: 18px; font-size: 16px; }
  .faq__body { padding: 0 18px; }
  .book__frame { padding: 4px; border-radius: 20px; }
  .calendly-inline-widget { height: 1000px; border-radius: 16px; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .section { padding: 72px 0; }
  .section__head { margin-bottom: 44px; }
}

@media (hover: none) { .cursor-glow { display: none; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; filter: none; }
  .hero__title .word { transform: none; opacity: 1; }
  .reviews__track { animation: none !important; }
  .reviews__row { overflow-x: auto; }
  html { scroll-behavior: auto; }
}