:root {
  --bg: #c5cad2;
  --bg-soft: #eef3f8;
  --bg-deep: #9ea5af;
  --panel: rgba(246, 249, 253, 0.7);
  --panel-strong: rgba(252, 254, 255, 0.82);
  --panel-tint: rgba(223, 234, 247, 0.74);
  --text: #13213e;
  --muted: #4d5c78;
  --line: rgba(31, 57, 103, 0.14);
  --accent: #0a56ff;
  --accent-strong: #0a3fce;
  --accent-soft: #29c5ff;
  --accent-fog: rgba(41, 197, 255, 0.2);
  --shadow: 0 24px 60px rgba(20, 33, 60, 0.16);
  --glow: 0 20px 45px rgba(10, 86, 255, 0.2);
  --radius: 28px;
  --radius-lg: 36px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 32%, rgba(41, 197, 255, 0.26), transparent 22%),
    radial-gradient(circle at 56% 16%, rgba(10, 86, 255, 0.24), transparent 18%),
    radial-gradient(circle at 82% 72%, rgba(255, 255, 255, 0.42), transparent 24%),
    linear-gradient(135deg, #b0b5bd 0%, #d9dee5 26%, #8d929a 54%, #d6dbe1 78%, #8f949d 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.22), transparent 22%, rgba(255, 255, 255, 0.1) 45%, transparent 70%),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.06) 0,
      rgba(255, 255, 255, 0.06) 2px,
      rgba(32, 40, 54, 0.02) 3px,
      rgba(32, 40, 54, 0.02) 10px
    );
  opacity: 0.7;
}

a {
  color: inherit;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 52% 24%, rgba(10, 86, 255, 0.26), transparent 18%),
    radial-gradient(circle at 34% 62%, rgba(41, 197, 255, 0.22), transparent 20%);
  opacity: 0.85;
  filter: blur(18px);
}

.site-shell {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 56px;
}

.topbar {
  position: sticky;
  top: 18px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 999px;
  background: rgba(247, 250, 255, 0.5);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

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

.brand-wordmark-frame {
  display: block;
  line-height: 0;
}

.brand-wordmark {
  display: block;
  width: auto;
  height: clamp(38px, 4vw, 52px);
  filter: drop-shadow(0 10px 24px rgba(10, 86, 255, 0.22));
}

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

.nav a,
.menu-toggle {
  font: inherit;
  text-decoration: none;
}

.nav a {
  position: relative;
  color: var(--muted);
  font-weight: 500;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-soft));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--text);
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  background: rgba(247, 250, 255, 0.6);
  color: var(--text);
}

.hero,
.section {
  margin-top: 32px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(320px, 0.92fr);
  gap: 24px;
  align-items: stretch;
}

.hero-copy,
.hero-card,
.status-card,
.process-card,
.role-card,
.reason-card,
.support-panel,
.contact-card,
.contact-note {
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(229, 236, 246, 0.68));
  box-shadow: var(--shadow);
}

.hero-copy {
  position: relative;
  overflow: hidden;
  padding: 58px;
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: auto -40px -50px auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(41, 197, 255, 0.4), rgba(10, 86, 255, 0.08) 56%, transparent 72%);
}

.hero-copy::after {
  content: "";
  position: absolute;
  top: -80px;
  left: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.52), transparent 68%);
}

.hero-stack {
  display: grid;
  gap: 20px;
}

.hero-card,
.status-card,
.contact-note {
  padding: 30px;
}

.hero-logo-card {
  padding: 38px 34px;
  background:
    linear-gradient(180deg, rgba(235, 243, 252, 0.9), rgba(221, 231, 245, 0.85)),
    var(--panel);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent-strong);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  max-width: 12ch;
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.05em;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(3.6rem, 9vw, 6.7rem);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.2rem, 6vw, 4.2rem);
}

h3 {
  margin-bottom: 14px;
  font-size: 1.32rem;
}

.hero-text,
.section-text,
.hero-metric span,
.signal-list li,
.status-grid p,
.process-card p,
.role-card p,
.industry-copy p,
.reason-card p,
.support-grid p,
.contact-card p {
  color: var(--muted);
  line-height: 1.72;
  font-size: 1rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  color: #f8fbff;
  font-weight: 700;
  box-shadow: var(--glow);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: linear-gradient(135deg, #0b4ce0, #1cbfff);
}

.button-secondary {
  border: 1px solid rgba(16, 52, 115, 0.16);
  background: rgba(255, 255, 255, 0.46);
  color: var(--text);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(10, 86, 255, 0.36);
  background: rgba(255, 255, 255, 0.68);
}

.hero-points {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li,
.signal-list li {
  position: relative;
  padding-left: 18px;
}

.hero-points li::before,
.signal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  box-shadow: 0 0 18px rgba(10, 86, 255, 0.26);
}

.card-label {
  margin-bottom: 18px;
  color: var(--text);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logo-orbit {
  display: grid;
  place-items: center;
  width: min(100%, 290px);
  aspect-ratio: 1;
  margin: 10px auto 34px;
  padding: 32px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.76) 0%, rgba(218, 231, 247, 0.8) 34%, rgba(10, 86, 255, 0.08) 60%, transparent 78%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.46),
    0 30px 50px rgba(10, 86, 255, 0.14);
}

.hero-symbol {
  display: block;
  width: 70%;
  max-width: 190px;
  height: auto;
  filter: drop-shadow(0 24px 34px rgba(10, 86, 255, 0.28));
}

.hero-metric strong {
  display: block;
  margin-bottom: 10px;
  font-size: 2rem;
  line-height: 1.08;
}

.signal-list {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.status-grid {
  display: grid;
  gap: 18px;
}

.status-title {
  display: inline-block;
  margin-bottom: 6px;
  color: var(--accent-strong);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status-grid p {
  margin-bottom: 0;
}

.banner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.banner p {
  margin: 0;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  background: rgba(244, 248, 253, 0.56);
  color: var(--text);
  text-align: center;
  box-shadow: 0 10px 26px rgba(20, 33, 60, 0.1);
}

.section {
  padding: 18px 0;
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.process-grid,
.role-grid,
.reason-grid,
.support-grid {
  display: grid;
  gap: 20px;
}

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

.process-card,
.role-card,
.reason-card {
  padding: 28px;
}

.process-card {
  background:
    linear-gradient(180deg, rgba(250, 253, 255, 0.92), rgba(231, 238, 247, 0.82)),
    var(--panel);
}

.process-card span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--accent-strong);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.88rem;
  letter-spacing: 0.16em;
}

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

.role-card {
  min-height: 210px;
  background:
    radial-gradient(circle at top right, rgba(41, 197, 255, 0.16), transparent 32%),
    linear-gradient(180deg, rgba(251, 253, 255, 0.9), rgba(226, 234, 245, 0.84));
}

.section-accent {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 18% 26%, rgba(41, 197, 255, 0.2), transparent 22%),
    radial-gradient(circle at 68% 28%, rgba(10, 86, 255, 0.18), transparent 24%),
    linear-gradient(135deg, rgba(238, 244, 250, 0.82), rgba(208, 218, 231, 0.9));
  box-shadow: var(--shadow);
}

.industry-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.8fr);
  gap: 20px;
  align-items: center;
}

.industry-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.industry-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 999px;
  background: rgba(248, 251, 255, 0.7);
  font-weight: 600;
  box-shadow: 0 14px 24px rgba(20, 33, 60, 0.08);
}

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

.reason-card {
  background:
    linear-gradient(180deg, rgba(251, 253, 255, 0.92), rgba(228, 236, 247, 0.84)),
    var(--panel);
}

.reason-card strong {
  display: block;
  margin-bottom: 14px;
  font-size: 1.38rem;
}

.support-section {
  padding-top: 4px;
}

.support-panel {
  padding: 32px;
  background:
    radial-gradient(circle at 82% 22%, rgba(10, 86, 255, 0.16), transparent 22%),
    linear-gradient(180deg, rgba(250, 253, 255, 0.82), rgba(225, 234, 246, 0.82));
}

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

.support-grid h3 {
  max-width: 18ch;
}

.contact-section {
  padding-bottom: 26px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 20px;
}

.contact-card {
  padding: 40px;
  background:
    radial-gradient(circle at top right, rgba(41, 197, 255, 0.22), transparent 24%),
    linear-gradient(180deg, rgba(250, 253, 255, 0.88), rgba(225, 234, 246, 0.84));
}

.contact-note {
  background:
    radial-gradient(circle at 18% 18%, rgba(10, 86, 255, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(249, 252, 255, 0.78), rgba(223, 233, 245, 0.78));
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 18px;
  margin-top: 16px;
  padding: 24px 4px 0;
  color: rgba(19, 33, 62, 0.78);
  font-size: 0.92rem;
}

.footer p {
  margin-bottom: 0;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero,
  .process-grid,
  .role-grid,
  .industry-layout,
  .reason-grid,
  .support-grid,
  .contact-layout,
  .banner {
    grid-template-columns: 1fr;
  }

  .topbar {
    border-radius: 28px;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding-top: 8px;
  }

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

@media (max-width: 720px) {
  .site-shell {
    width: min(100% - 20px, 1180px);
    padding-top: 14px;
  }

  .topbar {
    top: 10px;
    padding: 14px 16px;
  }

  .hero-copy,
  .hero-card,
  .status-card,
  .process-card,
  .role-card,
  .reason-card,
  .support-panel,
  .contact-card,
  .contact-note,
  .section-accent {
    padding-left: 22px;
    padding-right: 22px;
  }

  .hero-copy {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  h1,
  h2 {
    max-width: none;
  }

  .button,
  .industry-list span {
    width: 100%;
  }

  .brand-wordmark {
    height: clamp(30px, 8vw, 40px);
  }

  .hero-logo-card {
    padding: 28px 22px;
  }

  .logo-orbit {
    width: min(100%, 240px);
    margin-bottom: 28px;
    padding: 24px;
  }

  .footer {
    flex-direction: column;
  }
}

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