:root {
  --bg: #f7f9fc;
  --panel: rgba(255, 255, 255, 0.72);
  --card: rgba(255, 255, 255, 0.86);
  --text: #0b1220;
  --muted: rgba(11, 18, 32, 0.7);
  --muted2: rgba(11, 18, 32, 0.55);
  --border: rgba(20, 26, 45, 0.10);
  --shadow: 0 18px 40px rgba(16, 24, 40, 0.08);
  --shadow2: 0 10px 30px rgba(16, 24, 40, 0.08);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;

  --accentA: #6d5efc;
  --accentB: #2dd4bf;
  --accentC: #4ade80;

  --grad: linear-gradient(135deg, var(--accentA), var(--accentB) 48%, var(--accentC));
  --gradSoft: linear-gradient(180deg, rgba(109, 94, 252, 0.16), rgba(45, 212, 191, 0.08));

  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 800px at 15% -10%, rgba(109, 94, 252, 0.18), transparent 55%),
    radial-gradient(1000px 700px at 90% 10%, rgba(45, 212, 191, 0.16), transparent 60%),
    radial-gradient(900px 600px at 50% 90%, rgba(74, 222, 128, 0.12), transparent 58%),
    var(--bg);
  overflow-x: hidden;
}

.skip-link {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border);
  transform: translateY(-150%);
  transition: transform 160ms ease;
  z-index: 9999;
}
.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 249, 252, 0.72);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(20, 26, 45, 0.08);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand__logo {
  height: 30px;
  width: auto;
  display: block;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.nav__link {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 999px;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}
.nav__link:hover {
  color: rgba(11, 18, 32, 0.9);
  background: rgba(255, 255, 255, 0.7);
  transform: translateY(-1px);
}

.nav__cta {
  color: var(--text);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(20, 26, 45, 0.10);
}

/* Hero */
.hero {
  position: relative;
  padding: 56px 0 26px;
}

.hero__bg {
  position: absolute;
  inset: -180px -80px -100px -80px;
  pointer-events: none;
  background:
    radial-gradient(800px 500px at 18% 30%, rgba(109, 94, 252, 0.22), transparent 60%),
    radial-gradient(800px 500px at 78% 20%, rgba(45, 212, 191, 0.20), transparent 62%),
    radial-gradient(700px 450px at 60% 75%, rgba(74, 222, 128, 0.14), transparent 65%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.30), rgba(255, 255, 255, 0));
  animation: heroDrift 12s ease-in-out infinite;
}

@keyframes heroDrift {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(14px, -10px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 26px;
  align-items: center;
  min-height: 540px;
}

.hero__copy {
  padding: 14px 0;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 650;
  color: rgba(11, 18, 32, 0.78);
  letter-spacing: 0.01em;
}

.hero__title {
  margin: 0;
  font-size: 58px;
  line-height: 1.04;
  letter-spacing: -0.04em;
  font-weight: 820;
}

.hero__subtitle {
  margin: 16px 0 22px;
  max-width: 56ch;
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 720;
  letter-spacing: -0.01em;
  border: 1px solid rgba(20, 26, 45, 0.10);
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.06);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(16, 24, 40, 0.10);
}

.btn:active {
  transform: translateY(0);
}

.btn__icon {
  display: inline-grid;
  place-items: center;
}

.btn--primary {
  border: 0;
  color: #0b1220;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72)),
    var(--gradSoft);
  position: relative;
}
.btn--primary::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 999px;
  background: var(--grad);
  z-index: -1;
  opacity: 0.55;
  filter: blur(0.2px);
}
.btn--primary:hover::after {
  opacity: 0.72;
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.52);
  box-shadow: none;
}

.btn--link {
  background: transparent;
  box-shadow: none;
  border: 0;
  color: rgba(11, 18, 32, 0.7);
  height: 48px;
  padding: 0 8px;
}
.btn--link:hover {
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 12px 26px rgba(16, 24, 40, 0.06);
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.chip {
  padding: 9px 12px;
  border-radius: 999px;
  font-weight: 650;
  color: rgba(11, 18, 32, 0.72);
  border: 1px solid rgba(20, 26, 45, 0.10);
  background: rgba(255, 255, 255, 0.55);
}

.hero__panel {
  display: flex;
  justify-content: flex-end;
}

.panel {
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-xl);
  background: var(--panel);
  border: 1px solid rgba(20, 26, 45, 0.10);
  box-shadow: var(--shadow);
  padding: 18px;
  overflow: hidden;
}

.panel--glow {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.66));
}

.panel__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.panel__badge {
  font-weight: 720;
  font-size: 13px;
  color: rgba(11, 18, 32, 0.72);
  border: 1px solid rgba(20, 26, 45, 0.10);
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
}

.panel__dots {
  display: inline-flex;
  gap: 7px;
  opacity: 0.8;
}
.panel__dots span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(11, 18, 32, 0.18);
}
.panel__dots span:nth-child(1) {
  background: rgba(109, 94, 252, 0.45);
}
.panel__dots span:nth-child(2) {
  background: rgba(45, 212, 191, 0.40);
}
.panel__dots span:nth-child(3) {
  background: rgba(74, 222, 128, 0.40);
}

.panel__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 4px;
}

.mini {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(20, 26, 45, 0.10);
  background: rgba(255, 255, 255, 0.55);
}

.mini__icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: rgba(11, 18, 32, 0.72);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.40));
  border: 1px solid rgba(20, 26, 45, 0.10);
}

.mini__title {
  font-weight: 760;
  letter-spacing: -0.02em;
  font-size: 14px;
}
.mini__sub {
  color: var(--muted2);
  font-weight: 620;
  font-size: 13px;
  margin-top: 2px;
}

.panel__footer {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.signal__label {
  font-weight: 700;
  color: rgba(11, 18, 32, 0.55);
  font-size: 13px;
  display: block;
}
.signal__value {
  font-weight: 760;
  letter-spacing: -0.02em;
  font-size: 14px;
}

.sparkline {
  width: 140px;
  height: 40px;
  border-radius: 16px;
  border: 1px solid rgba(20, 26, 45, 0.10);
  background:
    radial-gradient(22px 22px at 28% 60%, rgba(109, 94, 252, 0.28), transparent 65%),
    radial-gradient(22px 22px at 55% 35%, rgba(45, 212, 191, 0.25), transparent 66%),
    radial-gradient(22px 22px at 78% 70%, rgba(74, 222, 128, 0.25), transparent 66%),
    rgba(255, 255, 255, 0.54);
}

/* Sections */
.section {
  padding: 72px 0;
}

.section--alt {
  background:
    radial-gradient(900px 560px at 12% 0%, rgba(109, 94, 252, 0.10), transparent 62%),
    radial-gradient(850px 560px at 86% 10%, rgba(45, 212, 191, 0.10), transparent 62%);
  border-top: 1px solid rgba(20, 26, 45, 0.06);
  border-bottom: 1px solid rgba(20, 26, 45, 0.06);
}

.section__head {
  max-width: 820px;
  margin-bottom: 26px;
}

.section__kicker {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 740;
  color: rgba(11, 18, 32, 0.65);
  letter-spacing: 0.01em;
}

.section__title {
  margin: 0;
  font-size: 36px;
  line-height: 1.14;
  letter-spacing: -0.03em;
  font-weight: 840;
}

.section__subtitle {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 610;
}

/* About */
.about__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 16px;
}

.about__card {
  background: var(--card);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(20, 26, 45, 0.10);
  box-shadow: var(--shadow2);
  padding: 18px;
  overflow: hidden;
}

.about__card--accent {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.62));
  position: relative;
}

.about__card--accent::before {
  content: "";
  position: absolute;
  inset: -120px -120px auto -120px;
  height: 220px;
  background: radial-gradient(closest-side, rgba(109, 94, 252, 0.18), transparent 70%);
  pointer-events: none;
}

.about__cardTitle {
  font-weight: 820;
  letter-spacing: -0.03em;
  font-size: 18px;
  margin-bottom: 10px;
}

.about__cardBody {
  color: var(--muted);
  line-height: 1.75;
  font-weight: 610;
  position: relative;
}

.about__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.pill {
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(20, 26, 45, 0.10);
  background: rgba(255, 255, 255, 0.6);
  font-weight: 700;
  color: rgba(11, 18, 32, 0.70);
  font-size: 13px;
}

.about__metrics {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.metric {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(20, 26, 45, 0.10);
  background: rgba(255, 255, 255, 0.52);
}

.metric__value {
  font-weight: 860;
  letter-spacing: -0.06em;
  font-size: 22px;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.metric__label {
  color: var(--muted);
  line-height: 1.5;
  font-weight: 630;
  font-size: 13.5px;
}

/* Services */
.services {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.serviceCard {
  grid-column: span 4;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(20, 26, 45, 0.10);
  border-radius: var(--radius-xl);
  padding: 18px;
  box-shadow: 0 14px 34px rgba(16, 24, 40, 0.06);
  position: relative;
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}
.serviceCard::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(600px 220px at 10% -10%, rgba(109, 94, 252, 0.16), transparent 60%);
  opacity: 0.9;
  pointer-events: none;
}

.serviceCard:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 58px rgba(16, 24, 40, 0.10);
  border-color: rgba(45, 212, 191, 0.26);
}

.serviceCard__icon {
  width: 46px;
  height: 46px;
  border-radius: 18px;
  border: 1px solid rgba(20, 26, 45, 0.10);
  background: rgba(255, 255, 255, 0.55);
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  position: relative;
}

.serviceCard__title {
  margin: 0 0 8px;
  font-size: 16px;
  letter-spacing: -0.02em;
  font-weight: 850;
}

.serviceCard__body {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 610;
  position: relative;
}

/* Mission & Vision */
.mvGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: stretch;
}

.mvCard {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(20, 26, 45, 0.10);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 44px rgba(16, 24, 40, 0.06);
  padding: 18px;
  overflow: hidden;
  position: relative;
}

.mvCard::before {
  content: "";
  position: absolute;
  inset: -180px -220px auto -220px;
  height: 280px;
  background: radial-gradient(closest-side, rgba(109, 94, 252, 0.18), transparent 70%);
  pointer-events: none;
}

.mvCard--vision::before {
  background: radial-gradient(closest-side, rgba(45, 212, 191, 0.18), transparent 72%);
}

.mvCard__label {
  font-weight: 820;
  color: rgba(11, 18, 32, 0.65);
  letter-spacing: 0.01em;
  margin-bottom: 10px;
  font-size: 14px;
}

.mvCard__title {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.mvCard__body {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 620;
}

/* CTA */
.ctaSection {
  padding: 70px 0 92px;
  border-top: 1px solid rgba(20, 26, 45, 0.06);
}

.ctaSection__inner {
  background:
    radial-gradient(900px 520px at 20% 0%, rgba(109, 94, 252, 0.18), transparent 60%),
    radial-gradient(900px 520px at 80% 10%, rgba(45, 212, 191, 0.15), transparent 62%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.60));
  border-radius: calc(var(--radius-xl) + 6px);
  border: 1px solid rgba(20, 26, 45, 0.10);
  box-shadow: 0 30px 80px rgba(16, 24, 40, 0.10);
  padding: 22px;
  overflow: hidden;
}

.ctaCopy {
  max-width: 560px;
}

.ctaTitle {
  margin: 0;
  font-size: 36px;
  line-height: 1.14;
  letter-spacing: -0.03em;
  font-weight: 900;
}

.ctaSubtitle {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 610;
}

.ctaSection__inner {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 18px;
  align-items: center;
}

.ctaForm {
  padding: 8px 8px 0;
}

.formRow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field__label {
  font-size: 13px;
  font-weight: 750;
  color: rgba(11, 18, 32, 0.68);
}

.field__input {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(20, 26, 45, 0.12);
  background: rgba(255, 255, 255, 0.72);
  padding: 12px 14px;
  outline: none;
  color: var(--text);
  font-weight: 640;
  font-size: 14px;
  transition: box-shadow 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.field__input::placeholder {
  color: rgba(11, 18, 32, 0.45);
}

.field__input:focus {
  border-color: rgba(109, 94, 252, 0.35);
  box-shadow: 0 0 0 6px rgba(109, 94, 252, 0.12);
}

.field__textarea {
  resize: vertical;
  min-height: 112px;
}

.formActions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.formHint {
  margin: 12px 0 0;
  color: rgba(11, 18, 32, 0.54);
  font-weight: 600;
  font-size: 12.5px;
}

/* Footer */
.footer {
  padding: 28px 0 42px;
  border-top: 1px solid rgba(20, 26, 45, 0.06);
  background: rgba(247, 249, 252, 0.64);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__brand {
  font-weight: 900;
  letter-spacing: -0.03em;
  font-size: 16px;
}

.footer__meta {
  margin-top: 8px;
  color: rgba(11, 18, 32, 0.62);
  font-weight: 620;
  line-height: 1.6;
  font-size: 14px;
}

.footer__link {
  color: rgba(11, 18, 32, 0.8);
  text-decoration: none;
  font-weight: 760;
  border-bottom: 1px solid rgba(11, 18, 32, 0.25);
}
.footer__link:hover {
  border-bottom-color: rgba(109, 94, 252, 0.55);
}

.footer__fineprint {
  font-size: 12.5px;
  color: rgba(11, 18, 32, 0.5);
}

/* Toast */
.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(20, 26, 45, 0.12);
  box-shadow: 0 22px 60px rgba(16, 24, 40, 0.16);
  border-radius: 18px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: min(560px, calc(100vw - 28px));
}

.toast__dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--grad);
}

.toast__text {
  font-weight: 760;
  color: rgba(11, 18, 32, 0.78);
}

/* Reveal animations */
[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 520ms ease, transform 520ms ease;
  will-change: opacity, transform;
}

[data-reveal="pop"] {
  transform: translateY(14px) scale(0.985);
}

[data-reveal].in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero__bg {
    animation: none;
  }
  .btn,
  .nav__link,
  .serviceCard {
    transition: none;
  }
}

/* Responsive */
@media (max-width: 980px) {
  .hero__inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero__panel {
    justify-content: flex-start;
  }
  .about__grid {
    grid-template-columns: 1fr;
  }
  .services {
    grid-template-columns: repeat(6, 1fr);
  }
  .serviceCard {
    grid-column: span 3;
  }
  .mvGrid {
    grid-template-columns: 1fr;
  }
  .ctaSection__inner {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .formRow {
    grid-template-columns: 1fr;
  }
  .hero__title {
    font-size: 44px;
  }
}

@media (max-width: 640px) {
  .topbar__inner {
    height: 64px;
  }
  .nav {
    gap: 10px;
  }
  .nav__link {
    font-size: 13px;
    padding: 10px 10px;
  }
  .brand__logo {
    height: 26px;
  }
  .hero__title {
    font-size: 38px;
  }
  .section__title {
    font-size: 30px;
  }
  .serviceCard {
    grid-column: span 6;
  }
  .services {
    grid-template-columns: repeat(6, 1fr);
  }
}

