:root {
  color-scheme: dark;
  --bg: #050a12;
  --bg-2: #09111e;
  --panel: #0b1424;
  --panel-2: #101d31;
  --line: rgba(142, 204, 255, 0.18);
  --line-strong: rgba(66, 178, 255, 0.36);
  --text: #f5f8fb;
  --muted: #a8b6c5;
  --soft: #74869a;
  --accent: #25b8ff;
  --accent-2: #176cff;
  --accent-3: #74dcff;
  --warm: #ff7742;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(5, 10, 18, 0.82), var(--bg) 36rem),
    radial-gradient(circle at 18% 9%, rgba(37, 184, 255, 0.16), transparent 30rem),
    radial-gradient(circle at 84% 4%, rgba(23, 108, 255, 0.13), transparent 32rem),
    var(--bg);
  color: var(--text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 58%);
}

body::after {
  content: "";
  position: fixed;
  inset: 114px 0 auto;
  height: 260px;
  pointer-events: none;
  opacity: 0.24;
  background:
    linear-gradient(115deg, transparent 0 38%, rgba(37, 184, 255, 0.16) 38% 38.4%, transparent 38.4%),
    linear-gradient(65deg, transparent 0 56%, rgba(37, 184, 255, 0.12) 56% 56.35%, transparent 56.35%);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 32px;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 82px;
  padding: 14px clamp(20px, 4vw, 56px);
  border-bottom: 1px solid rgba(142, 204, 255, 0.12);
  background: rgba(4, 10, 18, 0.86);
  backdrop-filter: blur(18px);
}

.topline {
  position: sticky;
  top: 0;
  z-index: 11;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  min-height: 32px;
  padding: 7px clamp(20px, 4vw, 56px);
  border-bottom: 1px solid rgba(142, 204, 255, 0.1);
  background: rgba(3, 8, 15, 0.94);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
}

.topline a {
  color: var(--accent-3);
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
  object-position: center 28%;
  box-shadow: 0 0 22px rgba(37, 184, 255, 0.24);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
}

.site-nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 800;
}

.site-nav a.active,
.site-nav a:hover {
  color: var(--text);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 900;
}

.header-cta,
.button.primary {
  color: #03111f;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 18px 45px rgba(37, 184, 255, 0.22);
}

.button.secondary {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.menu-button {
  display: none;
}

#app {
  min-height: calc(100vh - 160px);
}

.page {
  padding: 0 clamp(20px, 5vw, 72px) 84px;
}

.hero {
  max-width: 1280px;
  margin: 0 auto;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.62fr);
  align-items: center;
  gap: clamp(34px, 5vw, 64px);
  padding: 38px 0 28px;
}

.hero-main {
  max-width: 780px;
  position: relative;
}

.hero-main::before {
  content: "";
  position: absolute;
  left: -26px;
  top: 58px;
  width: 4px;
  height: 178px;
  border-radius: 99px;
  background: linear-gradient(var(--accent), transparent);
  box-shadow: 0 0 22px rgba(37, 184, 255, 0.5);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 14px;
  border: 1px solid color-mix(in srgb, var(--page-accent), white 8%);
  border-radius: 999px;
  color: #cfeeff;
  background: rgba(10, 24, 44, 0.72);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h1 {
  margin: 22px 0 16px;
  max-width: 780px;
  font-size: clamp(2.15rem, 3.25vw, 3.35rem);
  line-height: 1.06;
  letter-spacing: 0;
}

.lede {
  max-width: 800px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  line-height: 1.68;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.cred-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.cred {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.cred strong {
  display: block;
  color: var(--accent-3);
  font-size: 1.05rem;
}

.cred span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.35;
}

.hero-card {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(18, 36, 62, 0.94), rgba(5, 10, 22, 0.98)),
    var(--panel);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card-media {
  display: none;
}

.hero-card::before {
  content: "";
  display: block;
  height: 5px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.hero-card-media {
  padding: 22px 24px 10px;
  border-bottom: 1px solid rgba(142, 204, 255, 0.12);
  background:
    radial-gradient(circle at 50% 30%, rgba(37, 184, 255, 0.19), transparent 12rem),
    #06101d;
}

.hero-card-media img {
  width: min(100%, 170px);
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 0 26px rgba(37, 184, 255, 0.24));
}

.hero-card-body {
  padding: 24px;
}

.hero-card-body h2 {
  margin: 0 0 12px;
  font-size: 1.12rem;
}

.hero-card-body p {
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.6;
}

.status-list {
  display: grid;
  gap: 12px;
}

.status-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid rgba(142, 204, 255, 0.1);
}

.status-item span {
  color: var(--muted);
}

.status-item strong {
  color: var(--text);
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 48px 0;
  border-top: 1px solid rgba(142, 204, 255, 0.12);
}

.trust-strip {
  max-width: 1180px;
  margin: 0 auto 8px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(37, 184, 255, 0.08), transparent),
    rgba(255, 255, 255, 0.035);
}

.trust-strip div {
  padding: 20px;
}

.trust-strip div + div {
  border-left: 1px solid rgba(142, 204, 255, 0.12);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  color: var(--text);
  font-size: 0.98rem;
}

.trust-strip span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.42;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 28px;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--accent-3);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-header p {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.grid {
  display: grid;
  gap: 20px;
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.service-card,
.info-card,
.process-step {
  border: 1px solid color-mix(in srgb, var(--page-accent), transparent 68%);
  border-radius: var(--radius);
  background:
    linear-gradient(115deg, color-mix(in srgb, var(--page-accent), transparent 84%), transparent 46%),
    linear-gradient(145deg, rgba(13, 25, 43, 0.98), rgba(3, 8, 18, 0.98));
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.service-card::after,
.info-card::after,
.process-step::after {
  content: "";
  position: absolute;
  inset: auto 22px 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--page-accent), white 16%), transparent);
  opacity: 0.42;
}

.outcome-card {
  min-height: 240px;
}

.service-card {
  min-height: 270px;
  padding: 26px;
}

.service-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 36px;
  border: 1px solid var(--page-accent);
  border-radius: 999px;
  color: #06101d;
  background: linear-gradient(135deg, var(--page-accent), #ffffff);
  font-weight: 950;
}

.service-card h3,
.info-card h3,
.process-step h3 {
  margin: 0 0 14px;
  font-size: 1.12rem;
  letter-spacing: 0;
}

.service-card p,
.info-card p,
.process-step p {
  margin: 0;
  color: #c4cfda;
  line-height: 1.62;
}

.service-label {
  margin-top: 24px;
  color: var(--page-accent);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.info-card,
.process-step {
  padding: 26px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 26px;
  align-items: stretch;
}

.statement {
  padding: clamp(28px, 4vw, 48px);
  border-radius: var(--radius);
  border: 1px solid rgba(142, 204, 255, 0.12);
  background: rgba(255, 255, 255, 0.035);
}

.statement p {
  margin: 0;
  color: #d7e0ea;
  font-size: 1.08rem;
  line-height: 1.72;
}

.list-panel {
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid var(--line-strong);
  background: rgba(9, 20, 38, 0.86);
}

.list-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
}

.list-panel li {
  position: relative;
  padding-left: 24px;
  color: #d8e1ea;
  line-height: 1.5;
}

.list-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--accent);
  box-shadow: 0 0 16px rgba(37, 184, 255, 0.65);
}

.cta-band {
  max-width: 1180px;
  margin: 0 auto;
  padding: 42px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(37, 184, 255, 0.15), rgba(23, 108, 255, 0.08)),
    rgba(7, 17, 31, 0.92);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  box-shadow: var(--shadow);
}

.cta-band h2 {
  margin: 0 0 10px;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
}

.cta-band p {
  margin: 0;
  max-width: 720px;
  color: var(--muted);
  line-height: 1.6;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(20px, 4vw, 56px);
  border-top: 1px solid rgba(142, 204, 255, 0.12);
  color: var(--muted);
}

.site-footer div {
  display: grid;
  gap: 4px;
}

.site-footer strong {
  color: var(--text);
}

.site-footer a {
  color: var(--accent-3);
  text-decoration: none;
  font-weight: 850;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .site-header {
    top: 0;
  }

  .topline {
    display: none;
  }

  .menu-button {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 15px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    font-weight: 900;
  }

  .site-nav {
    grid-column: 1 / -1;
    display: none;
    justify-content: start;
    flex-wrap: wrap;
    padding-top: 4px;
  }

  .site-nav.open {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 42px;
  }

  .hero-card {
    max-width: 680px;
  }

  .grid.three,
  .grid.two,
  .split,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-strip div + div {
    border-left: 0;
    border-top: 1px solid rgba(142, 204, 255, 0.12);
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 70px;
    padding: 12px 16px;
  }

  .brand span {
    font-size: 0.98rem;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .page {
    padding: 0 16px 56px;
  }

  .hero {
    padding-top: 42px;
  }

  h1 {
    font-size: clamp(2.1rem, 9vw, 3rem);
  }

  .cred-row {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 54px 0;
  }

  .section-header,
  .cta-band,
  .site-footer {
    display: block;
  }

  .section-header p,
  .cta-band .button,
  .site-footer a {
    margin-top: 18px;
  }
}
