:root {
  --bg: #08090c;
  --bg-alt: #0b0d12;
  --surface: #12141b;
  --surface-soft: rgba(255, 255, 255, 0.03);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);

  --accent: #1563e8;
  --accent-bright: #2f7bff;
  --accent-soft: #6fa4ff;
  --accent-pale: #a3c5ff;
  --accent-line: rgba(111, 164, 255, 0.24);

  --text: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.62);
  --text-soft: rgba(255, 255, 255, 0.58);
  --text-dim: rgba(255, 255, 255, 0.42);

  --success: #6ee7b7;
  --danger: #fca5a5;

  --shell: 1200px;
  --radius-sm: 14px;
  --radius: 20px;
  --radius-lg: 24px;
  --pill: 9999px;

  --font: "Outfit", system-ui, -apple-system, "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

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

img,
svg,
video {
  display: block;
  max-width: 100%;
}

a {
  color: var(--accent-soft);
  text-decoration: none;
  transition: color 160ms ease;
}

a:hover {
  color: var(--accent-pale);
}

::selection {
  background: var(--accent);
  color: #fff;
}

:focus-visible {
  outline: 3px solid var(--accent-soft);
  outline-offset: 3px;
  border-radius: 8px;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 20px;
  z-index: 100;
  padding: 12px 20px;
  border-radius: var(--pill);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}

.skip-link:focus-visible {
  top: 16px;
  color: #fff;
}

/* ---------- Layout ---------- */

.shell {
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
}

.shell--narrow {
  max-width: 860px;
}

.section {
  position: relative;
  padding: 112px 24px;
}

.section--alt {
  background: var(--bg-alt);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.section--bordered {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.section--divided {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.section__head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 24px 48px;
  margin-bottom: 56px;
}

.section__head--stacked {
  display: block;
  max-width: 60ch;
  margin-bottom: 56px;
}

.section__head-main {
  max-width: 22ch;
}

.section__title {
  margin: 0;
  font-size: clamp(2.125rem, 4.4vw, 3.625rem);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.section__title--sm {
  font-size: clamp(1.875rem, 3.6vw, 3rem);
  line-height: 1.04;
}

.section__title em {
  font-style: italic;
  color: var(--accent-soft);
}

.section__lede {
  margin: 0;
  max-width: 46ch;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text-soft);
  text-wrap: pretty;
}

.section__head--stacked .section__title {
  margin-bottom: 18px;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 18px;
  padding: 7px 15px;
  border-radius: var(--pill);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow--accent {
  background: rgba(21, 99, 232, 0.16);
  border-color: var(--accent-line);
  color: var(--accent-pale);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border: none;
  border-radius: var(--pill);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease,
    border-color 180ms ease;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 34px rgba(21, 99, 232, 0.46);
}

.btn--primary:hover {
  background: var(--accent-bright);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 16px 44px rgba(21, 99, 232, 0.58);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid var(--line-strong);
  color: var(--text);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--text);
}

.btn--sm {
  padding: 11px 22px;
  font-size: 0.9375rem;
  box-shadow: 0 8px 28px rgba(21, 99, 232, 0.42);
}

.btn--wide {
  width: 100%;
  margin-top: 4px;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 14px;
  z-index: 60;
  padding: 0 20px;
  transition: transform 280ms ease;
}

.site-header.is-hidden {
  transform: translateY(-140%);
}

.site-header__bar {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 9px 9px 9px 20px;
  border-radius: var(--pill);
  background: rgba(18, 20, 27, 0.72);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
}

.brand:hover {
  color: var(--text);
}

.brand img {
  width: 26px;
  height: auto;
}

.brand span {
  font-size: 1.1875rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}

.nav a {
  padding: 8px 14px;
  border-radius: var(--pill);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: background 160ms ease, color 160ms ease;
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 0 11px;
  border: 1px solid var(--line-strong);
  border-radius: var(--pill);
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 200ms var(--ease), opacity 200ms ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.25px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.25px) rotate(-45deg);
}

.mobile-nav {
  display: grid;
  gap: 4px;
  max-width: var(--shell);
  margin: 10px auto 0;
  padding: 16px;
  border-radius: var(--radius-lg);
  background: rgba(18, 20, 27, 0.94);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a:not(.btn) {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
}

.mobile-nav a:not(.btn):hover {
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
}

.mobile-nav .btn {
  margin-top: 8px;
}

/* ---------- Hero ---------- */

main {
  margin-top: -76px;
}

.hero {
  position: relative;
  padding: 176px 24px 0;
  overflow: hidden;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 88px 88px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 8%, #000 0%, transparent 74%);
  mask-image: radial-gradient(ellipse 80% 70% at 50% 8%, #000 0%, transparent 74%);
}

.hero__glow {
  position: absolute;
  left: 50%;
  top: -320px;
  transform: translateX(-50%);
  width: min(1100px, 130vw);
  height: 720px;
  background: radial-gradient(
    ellipse 50% 50% at 50% 50%,
    rgba(21, 99, 232, 0.55),
    rgba(21, 99, 232, 0.14) 45%,
    transparent 72%
  );
  filter: blur(20px);
  animation: glowPulse 4.5s ease-in-out infinite;
}

.hero__copy {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 76px;
  text-align: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 auto 26px;
  padding: 7px 8px 7px 14px;
  border-radius: var(--pill);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.66);
}

.hero__pulse {
  width: 7px;
  height: 7px;
  border-radius: var(--pill);
  background: #4ade80;
  box-shadow: 0 0 10px rgba(74, 222, 128, 0.9);
}

.hero__badge-tag {
  padding: 3px 10px;
  border-radius: var(--pill);
  background: rgba(21, 99, 232, 0.24);
  color: var(--accent-pale);
  letter-spacing: 0.06em;
}

.hero__title {
  margin: 0 auto 26px;
  max-width: 15ch;
  font-size: clamp(2.875rem, 8vw, 6.5rem);
  line-height: 0.94;
  font-weight: 800;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.hero__title em {
  display: block;
  font-style: italic;
  background: linear-gradient(96deg, var(--accent-soft), var(--accent) 62%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__lede {
  margin: 0 auto 36px;
  max-width: 58ch;
  font-size: clamp(1.0625rem, 1.5vw, 1.3125rem);
  line-height: 1.58;
  color: var(--text-muted);
  text-wrap: pretty;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

/* ---------- Ticker ---------- */

.ticker {
  position: relative;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.ticker__track {
  display: flex;
  width: max-content;
  animation: tickerRun 34s linear infinite;
}

.ticker__group {
  display: flex;
  gap: 56px;
  padding-right: 56px;
}

.ticker__group span {
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
  white-space: nowrap;
}

.ticker__dot {
  color: rgba(21, 99, 232, 0.9);
  text-transform: none;
}

/* ---------- Services ---------- */

.services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.card {
  position: relative;
  min-width: 0;
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color 200ms ease, transform 200ms ease;
}

.card:hover {
  border-color: rgba(111, 164, 255, 0.34);
  transform: translateY(-2px);
}

.card--wide {
  grid-column: 1 / -1;
  padding: 40px;
}

.card--feature {
  background: linear-gradient(158deg, rgba(21, 99, 232, 0.16), rgba(18, 20, 27, 0.9) 46%);
  border-color: rgba(111, 164, 255, 0.2);
}

.card--feature:hover {
  border-color: rgba(111, 164, 255, 0.42);
}

.card__orb {
  position: absolute;
  right: -80px;
  top: -120px;
  width: 380px;
  height: 380px;
  border-radius: var(--pill);
  background: radial-gradient(circle, rgba(21, 99, 232, 0.34), transparent 68%);
}

.card__watermark {
  position: absolute;
  right: -40px;
  bottom: -70px;
  width: 300px;
  opacity: 0.16;
}

.card__split {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.card__intro {
  max-width: 46ch;
}

.card__icon {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 11px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: var(--accent-soft);
}

.card__icon--accent {
  background: rgba(21, 99, 232, 0.22);
  border-color: var(--accent-line);
  color: var(--accent-pale);
}

.card h3 {
  margin: 0 0 12px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.card--wide h3 {
  font-size: 1.875rem;
  letter-spacing: -0.03em;
}

.card > p,
.card__intro p {
  margin: 0 0 22px;
  font-size: 1rem;
  line-height: 1.62;
  color: var(--text-soft);
  text-wrap: pretty;
}

.card--wide .card__intro p {
  margin: 0;
  font-size: 1.0625rem;
  color: var(--text-muted);
}

.card__list {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.card__split .card__list {
  gap: 12px;
  align-content: end;
  min-width: 260px;
}

.card__list li {
  display: flex;
  gap: 10px;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.74);
}

.card__split .card__list li {
  color: rgba(255, 255, 255, 0.78);
}

.card__list li::before {
  content: "·";
  color: var(--accent-soft);
  font-weight: 700;
}

/* ---------- Problem & approach ---------- */

.compare {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 20px;
}

.compare__panel {
  position: relative;
  padding: 36px 32px 40px;
  border-radius: var(--radius-lg);
  background: var(--surface-soft);
  border: 1px solid rgba(255, 255, 255, 0.07);
  overflow: hidden;
}

.compare__panel--accent {
  background: linear-gradient(158deg, rgba(21, 99, 232, 0.18), rgba(18, 20, 27, 0.9) 52%);
  border-color: rgba(111, 164, 255, 0.22);
}

.compare__orb {
  position: absolute;
  right: -90px;
  top: -90px;
  width: 300px;
  height: 300px;
  border-radius: var(--pill);
  background: radial-gradient(circle, rgba(21, 99, 232, 0.3), transparent 68%);
}

.compare__panel h3 {
  position: relative;
  margin: 0 0 26px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.compare__panel--accent h3 {
  color: var(--accent-pale);
}

.compare__panel ul {
  position: relative;
  display: grid;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.compare__panel li {
  display: flex;
  gap: 14px;
  font-size: 1.0625rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.6);
  text-wrap: pretty;
}

.compare__panel li::before {
  content: "";
  flex: none;
  margin-top: 9px;
  width: 7px;
  height: 7px;
  border-radius: var(--pill);
  background: rgba(255, 255, 255, 0.26);
}

.compare__panel--accent li {
  color: var(--text);
}

.compare__panel--accent li::before {
  background: var(--accent-soft);
  box-shadow: 0 0 10px rgba(111, 164, 255, 0.8);
}

/* ---------- Team ---------- */

.team {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 20px;
}

.profile-card {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  background: linear-gradient(158deg, rgba(21, 99, 232, 0.12), rgba(18, 20, 27, 0.9) 52%);
  border: 1px solid var(--line);
  transition: border-color 200ms ease, transform 200ms ease;
}

.profile-card:hover {
  border-color: rgba(111, 164, 255, 0.34);
  transform: translateY(-2px);
}

.profile-card__head {
  display: flex;
  align-items: center;
  gap: 18px;
}

.avatar {
  display: grid;
  place-items: center;
  flex: none;
  width: 72px;
  height: 72px;
  border-radius: var(--pill);
  background: linear-gradient(150deg, rgba(21, 99, 232, 0.55), rgba(18, 20, 27, 0.9));
  border: 1px solid var(--accent-line);
  overflow: hidden;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--accent-pale);
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-card h3 {
  margin: 0 0 4px;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.profile-card__role {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--accent-soft);
}

.profile-card__years {
  margin: 2px 0 0;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.profile-card__quote {
  margin: 0;
  font-size: 1rem;
  line-height: 1.62;
  color: var(--text-muted);
  text-wrap: pretty;
}

.profile-card__link {
  margin-top: auto;
  font-size: 0.9375rem;
  font-weight: 600;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.chips li {
  padding: 7px 14px;
  border-radius: var(--pill);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.74);
}

/* ---------- Profile pages ---------- */

.profile-hero {
  position: relative;
  padding: 168px 24px 72px;
  overflow: hidden;
}

.profile-hero__glow {
  position: absolute;
  left: 50%;
  top: -300px;
  transform: translateX(-50%);
  width: min(1000px, 130vw);
  height: 620px;
  background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(21, 99, 232, 0.32), transparent 70%);
}

.profile-hero .shell {
  position: relative;
}

.backlink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
}

.backlink:hover {
  color: var(--text);
}

.profile-hero__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-bottom: 26px;
}

.profile-hero__top .avatar {
  width: 96px;
  height: 96px;
  font-size: 1.75rem;
}

.profile-hero h1 {
  margin: 0 0 8px;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.profile-hero__role {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--accent-soft);
}

.profile-hero__lede {
  margin: 0 0 32px;
  max-width: 68ch;
  font-size: 1.125rem;
  line-height: 1.62;
  color: var(--text-muted);
  text-wrap: pretty;
}

.profile-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.profile-stat dt {
  margin-bottom: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.profile-stat dd {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text);
}

.panel {
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
}

.panel + .panel,
.panel + .quote,
.quote + .panel {
  margin-top: 20px;
}

.panel .prose + .tick-list {
  margin-top: 20px;
}

.profile-hero .hero__actions {
  justify-content: flex-start;
}

.panel > h2 {
  margin: 0 0 22px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.prose p {
  margin: 0 0 18px;
  max-width: 74ch;
  font-size: 1.0625rem;
  line-height: 1.68;
  color: var(--text-soft);
  text-wrap: pretty;
}

.prose p:last-child {
  margin-bottom: 0;
}

.prose strong {
  color: var(--text);
  font-weight: 600;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.spec h3 {
  margin: 0 0 16px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--accent-soft);
}

.tick-list {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tick-list li {
  display: flex;
  gap: 10px;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.74);
}

.tick-list li::before {
  content: "·";
  color: var(--accent-soft);
  font-weight: 700;
}

.tick-list--cols {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 11px 32px;
}

.quote {
  margin: 0;
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  background: linear-gradient(158deg, rgba(21, 99, 232, 0.18), rgba(18, 20, 27, 0.9) 52%);
  border: 1px solid rgba(111, 164, 255, 0.22);
}

.quote p {
  margin: 0;
  max-width: 60ch;
  font-size: clamp(1.25rem, 2.4vw, 1.625rem);
  line-height: 1.42;
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  text-wrap: pretty;
}

.cta-band {
  position: relative;
  padding: 72px 32px 76px;
  border-radius: var(--radius-lg);
  background: var(--bg-alt);
  border: 1px solid var(--line);
  text-align: center;
  overflow: hidden;
}

.cta-band__glow {
  position: absolute;
  left: 50%;
  bottom: -260px;
  transform: translateX(-50%);
  width: min(800px, 120vw);
  height: 460px;
  background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(21, 99, 232, 0.32), transparent 70%);
}

.cta-band > * {
  position: relative;
}

.cta-band h2 {
  margin: 0 0 16px;
  font-size: clamp(1.75rem, 3.4vw, 2.5rem);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.cta-band p {
  margin: 0 auto 28px;
  max-width: 62ch;
  font-size: 1.0625rem;
  line-height: 1.62;
  color: var(--text-muted);
  text-wrap: pretty;
}

/* ---------- Process ---------- */

.steps {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.step {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 20px 32px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  transition: background 200ms ease;
}

.step:last-child {
  border-bottom: 1px solid var(--line);
}

.step:hover {
  background: rgba(255, 255, 255, 0.02);
}

.step__index {
  flex: 0 0 auto;
  width: 44px;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent-soft);
}

.step h3 {
  flex: 0 1 280px;
  min-width: 0;
  margin: 0;
  font-size: clamp(1.5rem, 2.6vw, 2.125rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.step p {
  flex: 1 1 340px;
  min-width: 0;
  max-width: 62ch;
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text-soft);
  text-wrap: pretty;
}

/* ---------- Commitments ---------- */

.commitments {
  overflow: hidden;
}

.commitments__glow {
  position: absolute;
  left: 50%;
  bottom: -300px;
  transform: translateX(-50%);
  width: min(1000px, 120vw);
  height: 560px;
  background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(21, 99, 232, 0.3), transparent 70%);
}

.commitments .shell {
  position: relative;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
  gap: 20px;
}

.stat {
  padding: 32px 28px 34px;
  border-radius: var(--radius);
  background: var(--surface-soft);
  border: 1px solid var(--line);
}

.stat__value {
  margin: 0 0 16px;
  font-size: 2.625rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--accent-soft);
}

.stat h3 {
  margin: 0 0 8px;
  font-size: 1.125rem;
  font-weight: 600;
}

.stat p:not(.stat__value) {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.56);
  text-wrap: pretty;
}

/* ---------- Engagement ---------- */

.engage {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 20px;
}

.engage__item {
  padding: 32px 28px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  transition: border-color 200ms ease, transform 200ms ease;
}

.engage__item:hover {
  border-color: rgba(111, 164, 255, 0.34);
  transform: translateY(-2px);
}

.engage__item h3 {
  margin: 0 0 12px;
  font-size: 1.3125rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.engage__item p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.62;
  color: var(--text-soft);
  text-wrap: pretty;
}

/* ---------- FAQ ---------- */

.faq .section__head--stacked {
  margin-bottom: 44px;
}

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

.faq__item {
  padding: 4px 26px;
  border-radius: 18px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  transition: border-color 200ms ease;
}

.faq__item[open],
.faq__item:hover {
  border-color: rgba(111, 164, 255, 0.28);
}

.faq__item summary {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__marker {
  position: relative;
  flex: none;
  width: 16px;
  height: 16px;
  align-self: center;
}

.faq__marker::before,
.faq__marker::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent-soft);
  transform: translate(-50%, -50%);
  transition: transform 220ms var(--ease), opacity 220ms ease;
}

.faq__marker::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq__item[open] .faq__marker::after {
  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
}

.faq__item p {
  margin: 0 0 22px;
  max-width: 68ch;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-soft);
  text-wrap: pretty;
}

/* ---------- Contact ---------- */

.contact {
  padding-bottom: 120px;
  overflow: hidden;
}

.contact__glow {
  position: absolute;
  left: 50%;
  top: -180px;
  transform: translateX(-50%);
  width: min(1000px, 120vw);
  height: 520px;
  background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(21, 99, 232, 0.28), transparent 70%);
}

.contact__layout {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
  gap: 60px;
  align-items: start;
}

.contact__intro .section__title {
  margin-bottom: 20px;
}

.contact__intro .section__lede {
  margin-bottom: 30px;
  max-width: 46ch;
  font-size: 1.125rem;
  color: var(--text-muted);
}

.contact__mail {
  margin: 0;
  font-size: 1rem;
  color: var(--text-soft);
}

.contact__mail a {
  font-weight: 600;
}

.contact-form {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 36px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 28px 64px -16px rgba(0, 0, 0, 0.6);
}

.field {
  display: grid;
  gap: 8px;
}

.field > span {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
}

.field__hint {
  font-weight: 400;
  color: var(--text-dim);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 18px;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--pill);
  background: rgba(255, 255, 255, 0.04);
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field textarea {
  padding: 14px 18px;
  border-radius: 18px;
  line-height: 1.55;
  resize: vertical;
}

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9' fill='none'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%236fa4ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  padding-right: 48px;
  cursor: pointer;
}

.field select option {
  color: #111;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, 0.34);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent-soft);
  box-shadow: 0 0 0 3px rgba(21, 99, 232, 0.22);
}

.field .is-invalid {
  border-color: var(--danger);
}

.field--honeypot {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

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

.captcha__challenge {
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
  padding: 13px 18px;
  border-radius: var(--pill);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-soft);
  white-space: nowrap;
}

.captcha__challenge span {
  color: var(--accent-soft);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.captcha__row input {
  width: 7.5rem;
  flex: 0 0 auto;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

.captcha__refresh {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: var(--accent-soft);
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.captcha__refresh:hover {
  border-color: rgba(111, 164, 255, 0.42);
  background: rgba(21, 99, 232, 0.14);
}

.captcha__refresh:active {
  transform: rotate(-45deg);
}

.form-status {
  margin: 0;
  min-height: 22px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-soft);
}

.form-status.is-success {
  color: var(--success);
}

.form-status.is-error {
  color: var(--danger);
}

/* ---------- Footer ---------- */

.site-footer {
  padding: 64px 24px 40px;
  border-top: 1px solid var(--line);
}

.footer__top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 44px;
}

.footer__brand {
  max-width: 40ch;
}

.footer__brand img {
  width: 118px;
  height: auto;
  margin-bottom: 18px;
}

.footer__brand p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.46);
  text-wrap: pretty;
}

.footer__tag {
  margin-bottom: 10px !important;
  font-weight: 600;
  color: var(--accent-soft) !important;
}

.footer__links {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer__label {
  margin: 0 0 4px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
}

.footer__links a {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.footer__links a:hover {
  color: var(--text);
}

.footer__copy {
  max-width: var(--shell);
  margin: 48px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.38);
}

/* ---------- Motion ---------- */

@keyframes glowPulse {
  0%,
  100% {
    opacity: 0.55;
  }
  50% {
    opacity: 1;
  }
}

@keyframes tickerRun {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- Responsive ---------- */

@media (max-width: 1000px) {
  .nav,
  .site-header__cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 84px 20px;
  }

  .profile-hero {
    padding: 140px 20px 56px;
  }

  .profile-card,
  .panel,
  .quote {
    padding: 30px 24px;
  }

  .cta-band {
    padding: 56px 24px 60px;
  }

  .hero {
    padding: 148px 20px 0;
  }

  .hero__copy {
    padding-bottom: 56px;
  }

  .services {
    grid-template-columns: 1fr;
  }

  .card--wide,
  .card {
    padding: 30px 24px;
  }

  .compare__panel {
    padding: 30px 24px 34px;
  }

  .contact-form {
    padding: 28px 22px;
  }

  .contact__layout {
    gap: 44px;
  }

  .section__head {
    display: block;
  }

  .section__head-main {
    max-width: none;
    margin-bottom: 20px;
  }
}

@media (max-width: 560px) {
  .step {
    gap: 12px 20px;
  }

  .step h3 {
    flex-basis: 100%;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .faq__item {
    padding: 4px 20px;
  }
}

@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;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
