:root {
  color-scheme: dark;
  --bg: #09060d;
  --bg-deep: #050307;
  --surface: rgba(255, 255, 255, 0.045);
  --surface-strong: rgba(255, 255, 255, 0.075);
  --line: rgba(255, 255, 255, 0.12);
  --line-soft: rgba(255, 255, 255, 0.075);
  --text: #f8f4f9;
  --muted: #b8aebd;
  --quiet: #817887;
  --berry: #ee2d83;
  --berry-light: #ff78b8;
  --violet: #8d56ff;
  --leaf: #a8ff78;
  --max-width: 1240px;
  --radius-large: 32px;
  --radius-medium: 22px;
}

* {
  box-sizing: border-box;
}

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

body {
  min-width: 320px;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(
      circle at 78% 4%,
      rgba(238, 45, 131, 0.18),
      transparent 33rem
    ),
    radial-gradient(
      circle at 15% 56%,
      rgba(141, 86, 255, 0.1),
      transparent 28rem
    ),
    linear-gradient(180deg, #0c0811 0%, var(--bg) 48%, var(--bg-deep) 100%);
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  padding: 10px 14px;
  border-radius: 10px;
  color: #140812;
  background: var(--leaf);
  font-size: 0.875rem;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 104px;
  border-bottom: 1px solid var(--line-soft);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 760;
  letter-spacing: -0.035em;
}

.brand {
  font-size: 1.35rem;
  text-decoration: none;
}

.brand:focus-visible {
  outline: 2px solid var(--berry-light);
  outline-offset: 8px;
  border-radius: 6px;
}

.platform-label {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.platform-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--leaf);
  box-shadow: 0 0 18px rgba(168, 255, 120, 0.7);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: center;
  min-height: 720px;
  padding: 88px 0 96px;
}

.eyebrow {
  margin: 0 0 28px;
  color: var(--berry-light);
  font-size: 0.71rem;
  font-weight: 750;
  letter-spacing: 0.17em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.closing-statement h2 {
  margin: 0;
  font-weight: 620;
  letter-spacing: -0.065em;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(4.2rem, 8vw, 7.4rem);
  line-height: 0.88;
}

.hero h1 span {
  display: inline-block;
  color: transparent;
  background: linear-gradient(
    100deg,
    var(--berry-light),
    var(--berry) 48%,
    #b284ff
  );
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-description {
  max-width: 680px;
  margin: 38px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  line-height: 1.7;
}

.signal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.signal-list li {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #d7cfd9;
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.76rem;
  font-weight: 650;
  letter-spacing: 0.04em;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background:
    radial-gradient(
      circle at 50% 45%,
      rgba(238, 45, 131, 0.22),
      transparent 39%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.015)
    );
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.08),
    0 38px 90px rgba(0, 0, 0, 0.32);
}

.hero-visual::after {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 22px;
  content: "";
  pointer-events: none;
}

.orbital-system {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 370px;
  height: 370px;
  transform: translate(-50%, -58%);
}

.orbit,
.berry-core,
.satellite {
  position: absolute;
  border-radius: 50%;
}

.orbit {
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.11);
}

.orbit-one {
  transform: rotate(22deg) scaleY(0.54);
}

.orbit-two {
  transform: rotate(-42deg) scaleY(0.68);
}

.orbit-three {
  transform: rotate(82deg) scaleY(0.42);
}

.berry-core {
  top: 50%;
  left: 50%;
  width: 148px;
  height: 148px;
  background:
    radial-gradient(
      circle at 35% 28%,
      rgba(255, 255, 255, 0.86),
      transparent 7%
    ),
    radial-gradient(
      circle at 37% 34%,
      #ff87be 0%,
      var(--berry) 40%,
      #82104b 100%
    );
  box-shadow:
    0 0 70px rgba(238, 45, 131, 0.5),
    inset -20px -24px 35px rgba(53, 0, 29, 0.42);
  transform: translate(-50%, -50%);
}

.berry-core::before,
.berry-core::after {
  position: absolute;
  top: -20px;
  width: 48px;
  height: 28px;
  border-radius: 100% 0 100% 0;
  background: linear-gradient(135deg, var(--leaf), #419848);
  content: "";
}

.berry-core::before {
  left: 50%;
  transform: rotate(18deg);
}

.berry-core::after {
  right: 50%;
  transform: rotate(72deg) scaleX(-1);
}

.satellite {
  width: 10px;
  height: 10px;
  background: var(--leaf);
  box-shadow: 0 0 18px rgba(168, 255, 120, 0.85);
}

.satellite-one {
  top: 70px;
  right: 58px;
}

.satellite-two {
  bottom: 74px;
  left: 38px;
  width: 7px;
  height: 7px;
  background: var(--berry-light);
  box-shadow: 0 0 16px rgba(255, 120, 184, 0.9);
}

.reach-lockup {
  position: absolute;
  right: 36px;
  bottom: 32px;
  left: 36px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.reach-lockup strong {
  font-size: clamp(3.2rem, 6vw, 5.25rem);
  font-weight: 640;
  letter-spacing: -0.075em;
  line-height: 0.9;
}

.reach-lockup strong span {
  color: var(--berry-light);
}

.reach-lockup p {
  max-width: 112px;
  margin: 0;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-align: right;
  text-transform: uppercase;
}

.proof-strip {
  display: grid;
  grid-template-columns: auto minmax(60px, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.proof-strip p {
  margin: 0;
  color: var(--quiet);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.proof-line {
  height: 1px;
  background: linear-gradient(
    90deg,
    var(--line),
    rgba(238, 45, 131, 0.38),
    var(--line)
  );
}

.proof-strip .proof-statement {
  color: #d2c8d5;
}

.capabilities {
  padding: 150px 0 130px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 64px;
  align-items: end;
  margin-bottom: 68px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -34px;
}

.section-heading h2,
.closing-statement h2 {
  font-size: clamp(2.8rem, 5vw, 5.25rem);
  line-height: 0.98;
}

.section-heading > p:last-child,
.closing-statement > p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.capability-card {
  position: relative;
  display: flex;
  min-height: 340px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 26px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-medium);
  background: var(--surface);
  transition:
    border-color 220ms ease,
    background 220ms ease,
    transform 220ms ease;
}

.capability-card:hover {
  border-color: rgba(255, 120, 184, 0.28);
  background: var(--surface-strong);
  transform: translateY(-4px);
}

.card-number {
  color: var(--berry-light);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.14em;
}

.capability-card h3 {
  max-width: 240px;
  margin: 0 0 16px;
  font-size: 1.62rem;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.capability-card p {
  max-width: 285px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.card-mark {
  position: absolute;
  top: 8px;
  right: 18px;
  color: rgba(255, 255, 255, 0.025);
  font-size: 11rem;
  font-weight: 780;
  letter-spacing: -0.1em;
  line-height: 1;
  pointer-events: none;
}

.closing-statement {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 72px;
  align-items: end;
  margin-bottom: 120px;
  padding: 76px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-large);
  background:
    radial-gradient(
      circle at 14% 110%,
      rgba(141, 86, 255, 0.2),
      transparent 34rem
    ),
    radial-gradient(
      circle at 100% 0%,
      rgba(238, 45, 131, 0.18),
      transparent 30rem
    ),
    rgba(255, 255, 255, 0.035);
}

.closing-statement .eyebrow {
  margin-bottom: 24px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 28px;
  align-items: center;
  min-height: 116px;
  border-top: 1px solid var(--line-soft);
  color: var(--quiet);
  font-size: 0.76rem;
}

.footer-brand {
  color: var(--text);
  font-size: 1rem;
}

.site-footer p {
  margin: 0;
}

.error-page {
  display: flex;
  width: min(calc(100% - 48px), 760px);
  min-height: 100vh;
  margin: 0 auto;
  flex-direction: column;
  justify-content: space-between;
  padding: 36px 0 12vh;
}

.error-page main h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 620;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.error-page main > p:not(.eyebrow) {
  margin: 28px 0 34px;
  color: var(--muted);
  font-size: 1.05rem;
}

.home-link {
  display: inline-flex;
  padding: 12px 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}

.home-link:hover,
.home-link:focus-visible {
  border-color: var(--berry-light);
  outline: none;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    max-width: 780px;
  }

  .hero-visual {
    min-height: 540px;
  }

  .section-heading,
  .closing-statement {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .section-heading .eyebrow {
    margin-bottom: -10px;
  }

  .section-heading > p:last-child,
  .closing-statement > p {
    max-width: 600px;
  }

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

  .capability-card {
    min-height: 280px;
  }
}

@media (max-width: 680px) {
  .page-shell {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .site-header {
    min-height: 84px;
  }

  .platform-label {
    width: 8px;
    overflow: hidden;
    white-space: nowrap;
  }

  .hero {
    gap: 52px;
    padding: 72px 0 74px;
  }

  .hero h1 {
    font-size: clamp(3.55rem, 18vw, 5.2rem);
  }

  .hero-description {
    margin-top: 30px;
    font-size: 1rem;
  }

  .hero-visual {
    min-height: 430px;
    border-radius: 24px;
  }

  .orbital-system {
    width: 290px;
    height: 290px;
  }

  .berry-core {
    width: 118px;
    height: 118px;
  }

  .reach-lockup {
    right: 24px;
    bottom: 24px;
    left: 24px;
  }

  .reach-lockup strong {
    font-size: 3.5rem;
  }

  .proof-strip {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .proof-line {
    display: none;
  }

  .proof-strip .proof-statement {
    line-height: 1.5;
  }

  .capabilities {
    padding: 108px 0 92px;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .section-heading h2,
  .closing-statement h2 {
    font-size: 2.8rem;
  }

  .capability-card {
    min-height: 265px;
    padding: 22px;
  }

  .closing-statement {
    gap: 28px;
    margin-bottom: 76px;
    padding: 38px 26px;
    border-radius: 24px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 28px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
