/* ==========================================================================
   SPEED CODE — Design System
   Brand: #070735 (base 50%) · #DD20E1 (accent 30%) · #034FA8 (accent 20%)
   Type:  Orbitron (display) · Montserrat (body)
   ========================================================================== */

:root {
  /* Brand palette */
  --navy: #070735;
  --navy-800: #0b0b45;
  --navy-700: #101055;
  --magenta: #dd20e1;
  --blue: #034fa8;
  --blue-bright: #2f7fe6;

  /* Neutrals on dark */
  --ink: #eef0ff;
  --ink-dim: rgba(238, 240, 255, 0.68);
  --ink-faint: rgba(238, 240, 255, 0.42);
  --line: rgba(238, 240, 255, 0.09);
  --line-strong: rgba(238, 240, 255, 0.16);

  /* Surfaces */
  --surface: rgba(255, 255, 255, 0.035);
  --surface-hover: rgba(255, 255, 255, 0.065);

  /* Gradients */
  --grad-brand: linear-gradient(120deg, #dd20e1 0%, #7b3ff2 50%, #2f7fe6 100%);
  --grad-brand-soft: linear-gradient(120deg, rgba(221, 32, 225, 0.14), rgba(3, 79, 168, 0.14));

  /* Type */
  --font-display: "Orbitron", "Montserrat", sans-serif;
  --font-body: "Montserrat", system-ui, sans-serif;

  /* Rhythm */
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --section-pad: clamp(48px, 6vw, 72px);
  --section-pad-sm: clamp(28px, 3.5vw, 44px);
  --container: 1200px;

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.65s;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

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

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

::selection { background: rgba(221, 32, 225, 0.35); color: #fff; }

:focus-visible {
  outline: 2px solid var(--magenta);
  outline-offset: 3px;
  border-radius: 4px;
}

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

/* ---------- Utilities ---------- */
.container {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}
.container--narrow { max-width: 820px; }

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

.glass {
  background: var(--surface);
  border: 1px solid var(--line);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: 999px;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s, background 0.25s, border-color 0.25s;
  will-change: transform;
  white-space: nowrap;
}
.btn--sm { padding: 10px 22px; font-size: 0.85rem; }
.btn--lg { padding: 16px 32px; font-size: 0.98rem; }

.btn--primary {
  color: #fff;
  background: var(--grad-brand);
  background-size: 160% 160%;
  box-shadow: 0 8px 28px rgba(221, 32, 225, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  animation: gradShift 6s ease infinite;
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(221, 32, 225, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.btn--primary svg { transition: transform 0.25s var(--ease-out); }
.btn--primary:hover svg { transform: translateX(4px); }

.btn--ghost {
  color: var(--ink);
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
}
.btn--ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(221, 32, 225, 0.55);
  background: rgba(221, 32, 225, 0.08);
}

@keyframes gradShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ---------- Loader ---------- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-content: center;
  gap: 28px;
  justify-items: center;
  background: var(--navy);
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}
.loader.is-done { opacity: 0; visibility: hidden; }
.loader__mark { animation: loaderPulse 1.4s ease-in-out infinite; }
.loader__bar {
  width: 160px; height: 3px;
  background: var(--line);
  border-radius: 99px;
  overflow: hidden;
}
.loader__bar span {
  display: block; height: 100%; width: 40%;
  background: var(--grad-brand);
  border-radius: 99px;
  animation: loaderBar 1.1s var(--ease-out) infinite;
}
@keyframes loaderPulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.6; transform: scale(0.94); } }
@keyframes loaderBar { 0% { transform: translateX(-120%); } 100% { transform: translateX(420%); } }

/* ---------- Cursor glow ---------- */
.cursor-glow {
  position: fixed;
  width: 520px; height: 520px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(circle, rgba(221, 32, 225, 0.07) 0%, rgba(3, 79, 168, 0.05) 40%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: opacity 0.4s;
  opacity: 0;
}
@media (hover: none) { .cursor-glow { display: none; } }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
  transition-delay: var(--rd, 0s);
}
.reveal.is-visible { opacity: 1; transform: none; }
.d1 { --rd: 0.05s; } .d2 { --rd: 0.15s; } .d3 { --rd: 0.25s; }
.d4 { --rd: 0.35s; } .d5 { --rd: 0.45s; } .d6 { --rd: 0.55s; }

/* ==========================================================================
   NAV
   ========================================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: padding 0.35s var(--ease-out), background 0.35s, border-color 0.35s, backdrop-filter 0.35s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  padding: 10px 0;
  background: rgba(7, 7, 53, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__brand { display: inline-flex; align-items: center; gap: 12px; }
.nav__wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.14em;
  color: #fff;
}
.nav__wordmark em { font-style: normal; font-weight: 500; color: var(--ink-dim); }

.nav__links { display: flex; gap: 34px; }
.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-dim);
  position: relative;
  padding: 4px 0;
  transition: color 0.25s;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  border-radius: 2px;
  background: var(--grad-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.nav__links a:hover { color: #fff; }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__actions { display: flex; align-items: center; gap: 16px; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
}
.nav__toggle span {
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 120px 0 56px;
  overflow: hidden;
  isolation: isolate;
}

.hero__particles { position: absolute; inset: 0; z-index: -1; }

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  z-index: -2;
  animation: glowDrift 14s ease-in-out infinite alternate;
}
.hero__glow--magenta {
  width: 560px; height: 560px;
  top: -160px; right: -120px;
  background: radial-gradient(circle, rgba(221, 32, 225, 0.22), transparent 65%);
}
.hero__glow--blue {
  width: 640px; height: 640px;
  bottom: -220px; left: -180px;
  background: radial-gradient(circle, rgba(3, 79, 168, 0.3), transparent 65%);
  animation-delay: -7s;
}
@keyframes glowDrift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(-40px, 40px) scale(1.12); }
}

.hero__grid {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(rgba(238, 240, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(238, 240, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, black 30%, transparent 75%);
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ink-dim);
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}
.pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--magenta);
  box-shadow: 0 0 0 0 rgba(221, 32, 225, 0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(221, 32, 225, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(221, 32, 225, 0); }
  100% { box-shadow: 0 0 0 0 rgba(221, 32, 225, 0); }
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.1rem, 4.6vw, 3.9rem);
  line-height: 1.14;
  letter-spacing: 0.01em;
  margin-bottom: 26px;
}
.hero__title span { display: block; }

.hero__sub {
  font-size: clamp(1rem, 1.4vw, 1.13rem);
  color: var(--ink-dim);
  max-width: 54ch;
  margin-bottom: 38px;
}

.hero__ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 0; }

/* --- Hero visual: dashboard --- */
.hero__visual { position: relative; }

.dashboard {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(0, 0, 8, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  animation: floatY 7s ease-in-out infinite;
}
.dashboard__bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}
.dot { width: 10px; height: 10px; border-radius: 50%; background: var(--line-strong); }
.dot--m { background: var(--magenta); }
.dot--b { background: var(--blue-bright); }
.dashboard__url {
  margin-left: 12px;
  flex: 1;
  max-width: 220px;
  font-size: 0.72rem;
  color: var(--ink-faint);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 7px;
  padding: 5px 12px;
  text-align: center;
}
.dashboard__body { display: grid; grid-template-columns: 118px 1fr; }
.dashboard__side {
  padding: 18px 14px;
  border-right: 1px solid var(--line);
  display: grid;
  gap: 14px;
  align-content: start;
}
.skl {
  display: block;
  height: 9px;
  border-radius: 5px;
  background: linear-gradient(90deg, rgba(255,255,255,0.07) 25%, rgba(255,255,255,0.14) 50%, rgba(255,255,255,0.07) 75%);
  background-size: 200% 100%;
  animation: shimmer 2.4s linear infinite;
}
.skl--logo { width: 34px; height: 34px; border-radius: 9px; margin-bottom: 8px; }
.w45 { width: 45%; } .w55 { width: 55%; } .w60 { width: 60%; } .w65 { width: 65%; }
.w70 { width: 70%; } .w75 { width: 75%; } .w80 { width: 80%; } .w85 { width: 85%; }
@keyframes shimmer { to { background-position: -200% 0; } }

.dashboard__main { padding: 18px; display: grid; gap: 16px; }
.dashboard__kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.kpi {
  min-width: 0;
  padding: 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  display: grid;
  gap: 3px;
}
.kpi__label { font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-faint); }
.kpi__value { font-family: var(--font-display); font-size: 1.02rem; font-weight: 700; }
.kpi__trend { font-size: 0.62rem; font-weight: 600; }
.kpi__trend.up { color: #37e6a0; }

.dashboard__chart { width: 100%; height: auto; }
.chart__line {
  stroke-dasharray: 700;
  stroke-dashoffset: 700;
  animation: drawLine 2.4s var(--ease-out) 0.8s forwards;
}
.chart__area { opacity: 0; animation: fadeIn 1s ease 2s forwards; }
@keyframes drawLine { to { stroke-dashoffset: 0; } }
@keyframes fadeIn { to { opacity: 1; } }

.dashboard__rows { display: grid; gap: 12px; }

/* --- Floating cards --- */
.float-card {
  position: absolute;
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0, 0, 8, 0.5);
  animation: floatY 6s ease-in-out infinite;
}
.float-card[data-float="1"] { top: -34px; left: -44px; animation-delay: -2s; }
.float-card[data-float="2"] { bottom: 64px; left: -60px; animation-delay: -4s; }
.float-card[data-float="3"] { bottom: -28px; right: -20px; animation-delay: -1s; }
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.float-card--code { padding: 14px 18px; max-width: 250px; }
.float-card--code pre { font-size: 0.68rem; line-height: 1.7; overflow: hidden; }
.float-card--code code { font-family: "SF Mono", ui-monospace, Menlo, monospace; color: var(--ink-dim); }
.c-key { color: #dd20e1; } .c-fn { color: #5f8dff; } .c-str { color: #37e6a0; } .c-cmt { color: var(--ink-faint); }

.float-card--score {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px 12px 12px;
}
.float-card--score strong { display: block; font-size: 0.8rem; }
.float-card--score small { font-size: 0.66rem; color: var(--ink-faint); }
.score-ring { position: relative; width: 44px; height: 44px; }
.score-ring svg { width: 44px; height: 44px; transform: rotate(-90deg); }
.score-ring span {
  position: absolute; inset: 0;
  display: grid; place-content: center;
  font-family: var(--font-display);
  font-size: 0.74rem; font-weight: 700;
}
.ring-bg { fill: none; stroke: var(--line-strong); stroke-width: 3.5; }
.ring-fg {
  fill: none;
  stroke: url(#chartLine);
  stroke: #37e6a0;
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-dasharray: 119.4;
  stroke-dashoffset: 119.4;
  animation: ringFill 1.6s var(--ease-out) 1.4s forwards;
}
@keyframes ringFill { to { stroke-dashoffset: 2.4; } }

.float-card--notif {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 20px 13px 14px;
}
.float-card--notif strong { display: block; font-size: 0.78rem; }
.float-card--notif small { font-size: 0.66rem; color: var(--ink-faint); }
.notif-icon {
  width: 30px; height: 30px;
  border-radius: 50%;
  display: grid; place-content: center;
  font-size: 0.8rem;
  color: #fff;
  background: linear-gradient(135deg, #10b981, #37e6a0);
}

/* --- Scroll indicator --- */
.hero__scroll {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  opacity: 0.55;
  transition: opacity 0.3s;
}
.hero__scroll:hover { opacity: 1; }
.hero__scroll-mouse {
  display: block;
  width: 24px; height: 38px;
  border: 1.5px solid var(--ink-dim);
  border-radius: 14px;
  position: relative;
}
.hero__scroll-mouse span {
  position: absolute;
  top: 7px; left: 50%;
  width: 3px; height: 7px;
  margin-left: -1.5px;
  border-radius: 3px;
  background: var(--ink-dim);
  animation: scrollHint 1.8s ease-in-out infinite;
}
@keyframes scrollHint {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ==========================================================================
   CREDIBILITY / MARQUEE
   ========================================================================== */
.credibility {
  padding: var(--section-pad-sm) 0;
  border-top: 1px solid var(--line);
}
.credibility__label {
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 22px;
}
.marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
}
.marquee__track {
  display: flex;
  gap: 64px;
  width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee__item {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--ink-faint);
  white-space: nowrap;
  transition: color 0.3s;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item:hover { color: var(--ink); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ==========================================================================
   SECTIONS (shared)
   ========================================================================== */
.section {
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad-sm);
  position: relative;
}
.section + .section {
  padding-top: var(--section-pad-sm);
}
.section--tight {
  padding-top: var(--section-pad-sm);
  padding-bottom: var(--section-pad-sm);
}
.section--tight + .section {
  padding-top: var(--section-pad-sm);
}
.section--alt {
  background:
    radial-gradient(ellipse 60% 50% at 80% 0%, rgba(221, 32, 225, 0.06), transparent),
    radial-gradient(ellipse 60% 50% at 10% 100%, rgba(3, 79, 168, 0.09), transparent),
    var(--navy-800);
  border-block: 1px solid var(--line);
}

.section__head { max-width: 700px; margin-bottom: clamp(28px, 4vw, 44px); }
.section__eyebrow {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 12px;
}
.section__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 3.4vw, 2.7rem);
  line-height: 1.22;
  letter-spacing: 0.01em;
}
.section__sub {
  margin-top: 14px;
  color: var(--ink-dim);
  font-size: 1.02rem;
  max-width: 58ch;
}

/* ==========================================================================
   SERVICES
   ========================================================================== */
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  position: relative;
  padding: 24px 22px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), border-color 0.35s, background 0.35s;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 0%), rgba(221, 32, 225, 0.1), transparent 65%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(221, 32, 225, 0.35); background: var(--surface-hover); }
.service-card:hover::before { opacity: 1; }

.service-card__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid; place-content: center;
  background: var(--grad-brand-soft);
  border: 1px solid var(--line-strong);
  margin-bottom: 22px;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}
.service-card__icon svg { width: 26px; height: 26px; color: var(--magenta); transition: color 0.35s; }
.service-card:hover .service-card__icon {
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 10px 26px rgba(221, 32, 225, 0.22);
}

.service-card h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.04rem;
  margin-bottom: 10px;
  line-height: 1.4;
}
.service-card p { font-size: 0.87rem; color: var(--ink-dim); margin-bottom: 20px; }

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--magenta);
}
.service-card__link svg { transition: transform 0.25s var(--ease-out); }
.service-card__link:hover svg { transform: translateX(4px); }

/* ==========================================================================
   WHY CHOOSE
   ========================================================================== */
.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 20px;
}
.why-card { position: relative; padding-top: 8px; }
.why-card__num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  display: block;
  margin-bottom: 14px;
  background: linear-gradient(180deg, rgba(238, 240, 255, 0.22), rgba(238, 240, 255, 0.04));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: background 0.4s;
}
.why-card:hover .why-card__num {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
}
.why-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.why-card p { font-size: 0.86rem; color: var(--ink-dim); }

/* ==========================================================================
   PROCESS
   ========================================================================== */
.process {
  list-style: none;
  position: relative;
  max-width: 760px;
  margin-inline: auto;
  padding-left: 40px;
}
.process::before {
  content: "";
  position: absolute;
  left: 11px; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--magenta), var(--blue));
  opacity: 0.35;
  border-radius: 2px;
}
.process__step { position: relative; padding-bottom: 18px; }
.process__step:last-child { padding-bottom: 0; }
.process__dot {
  position: absolute;
  left: -36px; top: 30px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--navy);
  border: 2.5px solid var(--magenta);
  box-shadow: 0 0 0 5px rgba(221, 32, 225, 0.12);
  transition: background 0.4s, box-shadow 0.4s;
}
.process__step.is-visible .process__dot {
  background: var(--magenta);
  box-shadow: 0 0 18px rgba(221, 32, 225, 0.55);
}
.process__card {
  border-radius: var(--radius);
  padding: 24px 28px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 22px;
  align-items: start;
  transition: transform 0.35s var(--ease-out), border-color 0.35s;
}
.process__card:hover { transform: translateX(6px); border-color: rgba(221, 32, 225, 0.3); }
.process__num {
  grid-row: 1 / 3;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.3;
}
.process__card h3 { font-size: 1.05rem; font-weight: 700; }
.process__card p { font-size: 0.88rem; color: var(--ink-dim); margin-top: 4px; }

/* ==========================================================================
   PORTFOLIO
   ========================================================================== */
.portfolio { display: grid; gap: 20px; }

.project {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), border-color 0.4s, box-shadow 0.4s;
}
.project:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: 0 30px 70px rgba(0, 0, 8, 0.45);
}
.project--flip .project__media { order: 2; }
.project--flip .project__info { order: 1; }

.project__media {
  position: relative;
  min-height: 340px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 40px 20px;
}
.project__media--sparkn {
  min-height: 280px;
  padding: 28px 16px;
  background:
    radial-gradient(ellipse at 45% 25%, rgba(34, 120, 70, 0.22), transparent 55%),
    radial-gradient(ellipse at 75% 80%, rgba(3, 79, 168, 0.18), transparent 50%),
    linear-gradient(160deg, var(--navy-700), var(--navy));
}

.device-showcase {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.device-showcase__glow {
  position: absolute;
  inset: 15% 20%;
  background: radial-gradient(circle at 50% 40%, rgba(34, 139, 84, 0.3), rgba(221, 32, 225, 0.05) 45%, transparent 70%);
  filter: blur(36px);
  pointer-events: none;
  animation: glowDrift 10s ease-in-out infinite alternate;
}
.device-showcase__img {
  position: relative;
  width: 210px;
  max-width: 52vw;
  height: auto;
  border-radius: 28px;
  transform: rotate(-4deg);
  filter: drop-shadow(0 24px 48px rgba(0, 0, 8, 0.5));
  transition: transform 0.5s var(--ease-out), filter 0.5s var(--ease-out);
}
.project:hover .device-showcase__img {
  transform: rotate(0deg) scale(1.03);
  filter: drop-shadow(0 28px 56px rgba(0, 0, 8, 0.55));
}

.project__info {
  padding: clamp(28px, 4vw, 52px);
  display: grid;
  gap: 14px;
  align-content: center;
}
.project__tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--magenta);
}
.project__info h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
}
.project__info p { color: var(--ink-dim); font-size: 0.94rem; }
.project__stats { display: flex; flex-wrap: wrap; gap: 18px 26px; margin-top: 8px; }
.project__stats span { font-size: 0.8rem; color: var(--ink-faint); }
.project__stats strong { color: var(--ink); font-family: var(--font-display); font-size: 0.95rem; margin-right: 5px; }

/* --- Phone mockup --- */
.phone-mockup {
  width: 210px;
  border-radius: 34px;
  padding: 10px;
  background: linear-gradient(160deg, rgba(255,255,255,0.14), rgba(255,255,255,0.04));
  border: 1px solid var(--line-strong);
  box-shadow: 0 30px 60px rgba(0, 0, 8, 0.5);
  transform: rotate(-4deg);
  transition: transform 0.5s var(--ease-out);
}
.project:hover .phone-mockup { transform: rotate(0deg) scale(1.03); }
.phone-mockup__screen {
  border-radius: 26px;
  background: linear-gradient(170deg, #0d0d4a, #070735);
  padding: 26px 18px;
  display: grid;
  gap: 12px;
  min-height: 300px;
  align-content: start;
}
.pm-balance { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; }
.pm-label { font-size: 0.62rem; color: var(--ink-faint); }
.pm-chart { display: flex; gap: 7px; align-items: end; height: 66px; margin: 8px 0; }
.pm-chart i {
  flex: 1;
  height: var(--h);
  border-radius: 4px 4px 2px 2px;
  background: linear-gradient(180deg, var(--magenta), var(--blue));
  opacity: 0.85;
  transform-origin: bottom;
  animation: barGrow 1.2s var(--ease-out) backwards;
}
.pm-chart i:nth-child(2) { animation-delay: 0.1s; }
.pm-chart i:nth-child(3) { animation-delay: 0.2s; }
.pm-chart i:nth-child(4) { animation-delay: 0.3s; }
.pm-chart i:nth-child(5) { animation-delay: 0.4s; }
.pm-chart i:nth-child(6) { animation-delay: 0.5s; }
@keyframes barGrow { from { transform: scaleY(0); } }
.pm-row { display: flex; gap: 8px; }
.pm-pill {
  height: 10px; flex: 1;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.09);
}
.pm-pill.w60 { flex: 0.6; } .pm-pill.w70 { flex: 0.7; } .pm-pill.w40 { flex: 0.4; }
.pm-avatar-row { display: flex; gap: 10px; margin: 8px 0; }
.pm-avatar-row i {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(16,185,129,0.6), rgba(3,79,168,0.6));
}
.pm-cta {
  height: 38px;
  border-radius: 12px;
  background: var(--grad-brand);
  margin-top: 6px;
}
.phone-mockup--teal .pm-chart i { background: linear-gradient(180deg, #10b981, var(--blue)); }

/* --- Browser mockup --- */
.browser-mockup {
  width: min(400px, 88%);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: 0 30px 60px rgba(0, 0, 8, 0.5);
  transform: perspective(900px) rotateY(-6deg);
  transition: transform 0.5s var(--ease-out);
}
.project:hover .browser-mockup { transform: perspective(900px) rotateY(0deg) scale(1.02); }
.browser-mockup__bar {
  display: flex;
  gap: 6px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid var(--line);
}
.browser-mockup__bar span { width: 9px; height: 9px; border-radius: 50%; background: var(--line-strong); }
.browser-mockup__body { padding: 16px; background: linear-gradient(170deg, #0d0d4a, #070735); display: grid; gap: 12px; }
.bm-hero {
  height: 90px;
  border-radius: 10px;
  background: linear-gradient(120deg, rgba(3, 79, 168, 0.5), rgba(221, 32, 225, 0.35));
}
.bm-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.bm-cards i { height: 56px; border-radius: 8px; background: rgba(255, 255, 255, 0.07); }

/* ==========================================================================
   TECH MARQUEE
   ========================================================================== */
.tech-marquee {
  overflow: hidden;
  padding: 8px 0 4px;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.tech-marquee__track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee 42s linear infinite;
  padding: 4px 0;
}
.tech-marquee:hover .tech-marquee__track { animation-play-state: paused; }
.tech-chip {
  padding: 12px 26px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-dim);
  white-space: nowrap;
  transition: color 0.3s, border-color 0.3s, transform 0.3s;
}
.tech-chip:hover { color: #fff; border-color: rgba(221, 32, 225, 0.5); transform: translateY(-3px); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { display: grid; gap: 14px; }
.faq__item {
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s, background 0.3s;
}
.faq__item[open] { border-color: rgba(221, 32, 225, 0.35); background: var(--surface-hover); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 21px 26px;
  font-weight: 600;
  font-size: 0.98rem;
  transition: color 0.25s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: #fff; }
.faq__chev {
  flex: none;
  width: 10px; height: 10px;
  border-right: 2px solid var(--magenta);
  border-bottom: 2px solid var(--magenta);
  transform: rotate(45deg);
  transition: transform 0.35s var(--ease-out);
}
.faq__item[open] .faq__chev { transform: rotate(225deg); }
.faq__item p {
  padding: 0 26px 22px;
  color: var(--ink-dim);
  font-size: 0.9rem;
  max-width: 68ch;
}

/* ==========================================================================
   CTA
   ========================================================================== */
.cta-section {
  padding-top: var(--section-pad-sm);
  padding-bottom: var(--section-pad);
}
.cta {
  position: relative;
  text-align: center;
  border-radius: calc(var(--radius-lg) + 8px);
  padding: clamp(40px, 6vw, 72px) clamp(24px, 6vw, 64px);
  overflow: hidden;
}
.cta__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 65% at 18% 0%, rgba(221, 32, 225, 0.16), transparent),
    radial-gradient(ellipse 55% 65% at 85% 100%, rgba(3, 79, 168, 0.22), transparent);
  animation: ctaGlow 9s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes ctaGlow { from { opacity: 0.7; } to { opacity: 1; } }
.cta__mark { margin: 0 auto 30px; position: relative; animation: floatY 6s ease-in-out infinite; }
.cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 18px;
  position: relative;
}
.cta p {
  color: var(--ink-dim);
  max-width: 56ch;
  margin: 0 auto 36px;
  position: relative;
}
.cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  position: relative;
}
.cta__note {
  display: block;
  margin-top: 26px;
  font-size: 0.78rem;
  color: var(--ink-faint);
  letter-spacing: 0.05em;
  position: relative;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, var(--navy), #050526);
  padding: 56px 0 0;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 36px;
  padding-bottom: 44px;
}
.footer__brand p {
  color: var(--ink-dim);
  font-size: 0.88rem;
  max-width: 38ch;
  margin: 20px 0 24px;
}
.footer__social { display: flex; gap: 12px; }
.footer__social a {
  width: 40px; height: 40px;
  border-radius: 12px;
  display: grid; place-content: center;
  border: 1px solid var(--line);
  color: var(--ink-dim);
  transition: color 0.3s, border-color 0.3s, transform 0.3s, background 0.3s;
}
.footer__social a:hover {
  color: #fff;
  border-color: rgba(221, 32, 225, 0.5);
  background: rgba(221, 32, 225, 0.1);
  transform: translateY(-3px);
}

.footer__col { display: grid; gap: 13px; align-content: start; }
.footer__col h4 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 6px;
}
.footer__col a, .footer__col span {
  font-size: 0.88rem;
  color: var(--ink-dim);
  transition: color 0.25s, transform 0.25s;
}
.footer__col a:hover { color: #fff; transform: translateX(3px); }

.footer__badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.badge-chip {
  font-size: 0.7rem !important;
  padding: 6px 13px;
  border-radius: 99px;
  border: 1px solid var(--line-strong);
  color: var(--ink-faint) !important;
  letter-spacing: 0.04em;
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
  color: var(--ink-faint);
}
.footer__legal { display: flex; gap: 26px; }
.footer__legal a { color: var(--ink-faint); transition: color 0.25s; }
.footer__legal a:hover { color: #fff; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1080px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .why__grid { grid-template-columns: repeat(3, 1fr); }
  .hero__inner { grid-template-columns: minmax(0, 1fr); gap: 48px; }
  .hero__visual { max-width: 580px; margin-inline: auto; width: 100%; }
  .float-card[data-float="1"] { left: -10px; }
  .float-card[data-float="2"] { left: -14px; }
}

@media (max-width: 860px) {
  .nav__links {
    position: fixed;
    top: 0; right: 0;
    height: 100dvh;
    width: min(320px, 82vw);
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    padding: 40px;
    background: rgba(7, 7, 53, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-left: 1px solid var(--line);
    transform: translateX(100%);
    transition: transform 0.45s var(--ease-out);
    z-index: 99;
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav__links a { font-size: 1.2rem; }
  .nav__toggle { display: flex; position: relative; z-index: 100; }
  .nav__toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .nav__toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .nav__actions .btn { display: none; }

  .why__grid { grid-template-columns: repeat(2, 1fr); }

  .project { grid-template-columns: 1fr; }
  .project--flip .project__media { order: 0; }
  .project--flip .project__info { order: 1; }
  .project__media { min-height: 300px; }

  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .services__grid, .why__grid { grid-template-columns: 1fr; }
  .hero { padding-top: 118px; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .float-card--code { display: none; }
  .dashboard__body { grid-template-columns: 88px 1fr; }
  .dashboard__main { padding: 14px; }
  .kpi__value { font-size: 0.86rem; }
  .kpi__label, .kpi__trend { font-size: 0.56rem; }
  .float-card[data-float="2"] { left: -6px; bottom: 30px; }
  .float-card[data-float="3"] { right: -6px; }
  .process { padding-left: 32px; }
  .process__card { grid-template-columns: 1fr; row-gap: 4px; }
  .process__num { grid-row: auto; }
  .footer__top { grid-template-columns: 1fr; gap: 36px; }
  .cta__actions .btn { width: 100%; justify-content: center; }
}
