:root {
  --bg: #070a0f;
  --bg-soft: #0c1118;
  --panel: rgba(255, 255, 255, 0.02);
  --text: #edf2f7;
  --muted: #96a3b5;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.2);
  --accent: #b9d8ff;
  --max-width: 1040px;
  --content-width: 860px;
  --radius: 18px;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top center, rgba(100, 130, 180, 0.1), transparent 28%),
    linear-gradient(180deg, #05070b 0%, #080b11 100%);
  line-height: 1.65;
  letter-spacing: 0.01em;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.22;
  pointer-events: none;
}

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

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

a:hover,
a:focus-visible {
  text-decoration: underline;
}

.site-shell {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
}

.hero {
  padding: 72px 0 36px;
}

.hero__inner {
  width: min(100%, var(--content-width));
  margin: 0 auto;
  text-align: center;
}

.logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}

.logo {
  width: min(300px, 78vw);
  height: auto;
  opacity: 0.96;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.hero__subtitle {
  max-width: 780px;
  margin: 18px auto 0;
  color: #c8d3df;
  font-size: clamp(1.06rem, 2vw, 1.35rem);
}

.hero__divider {
  width: 100%;
  max-width: 720px;
  height: 1px;
  margin: 36px auto 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--line-strong) 20%,
    rgba(255, 255, 255, 0.45) 50%,
    var(--line-strong) 80%,
    transparent 100%
  );
}

.coming-soon {
  max-width: 720px;
  margin: 28px auto 0;
  padding: 28px 26px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(6px);
}

.coming-soon__label {
  margin: 0;
  color: #f5f8fb;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.coming-soon__text {
  max-width: 600px;
  margin: 16px auto 0;
  color: #d0dae6;
  font-size: 1.06rem;
}

.coming-soon__contact {
  margin: 18px 0 0;
  color: #e3eaf2;
  font-weight: 500;
}

.content {
  width: min(100%, var(--content-width));
  margin: 0 auto;
  padding: 18px 0 56px;
}

.section {
  padding: 22px 0 14px;
}

.section + .section {
  margin-top: 12px;
}

.section__header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}

.section__header h2 {
  margin: 0;
  font-size: 1.55rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.section__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.22) 0%,
    rgba(255, 255, 255, 0.06) 100%
  );
}

.section__body,
.section__note {
  max-width: 820px;
  margin: 0;
  color: #d2dae4;
  font-size: 1.03rem;
}

.capabilities {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.capability {
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
}

.capability h3 {
  margin: 0 0 8px;
  font-size: 1.16rem;
  font-weight: 600;
  color: #eef3f9;
}

.capability p {
  margin: 0;
  color: #c7d2df;
}

.muted {
  color: var(--muted);
  font-weight: 500;
}

.insights {
  margin: 0;
  padding-left: 20px;
  color: #d4dde8;
}

.insights li + li {
  margin-top: 10px;
}

.section__note {
  margin-top: 18px;
  color: var(--muted);
}

.footer {
  width: min(100%, var(--content-width));
  margin: 0 auto;
  padding: 10px 0 48px;
  text-align: center;
}

.footer__line {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.16) 20%,
    rgba(255, 255, 255, 0.28) 50%,
    rgba(255, 255, 255, 0.16) 80%,
    transparent 100%
  );
  margin-bottom: 18px;
}

.footer__brand {
  margin: 0;
  font-size: 1rem;
  color: #dbe4ee;
  font-weight: 500;
}

.footer__disclaimer {
  max-width: 760px;
  margin: 10px auto 0;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (min-width: 760px) {
  .capabilities {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 759px) {
  .site-shell {
    width: min(100% - 24px, var(--max-width));
  }

  .hero {
    padding-top: 48px;
  }

  .coming-soon {
    padding: 22px 18px;
  }

  .section__header {
    gap: 12px;
  }

  .section__header h2 {
    font-size: 1.2rem;
  }

  .section__body,
  .section__note,
  .capability p,
  .insights {
    font-size: 0.98rem;
  }
}
