:root {
  --bg: #061925;
  --bg-deep: #03121e;
  --panel: rgba(16, 46, 56, 0.58);
  --green: #1fa84b;
  --green-bright: #25c255;
  --white: #f7f8f5;
  --muted: #a9b4bd;
  --dim: #687482;
  --line: rgba(137, 175, 184, 0.065);
  --border: rgba(167, 193, 202, 0.18);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(circle at 50% 45%, rgba(23, 89, 70, 0.34), transparent 34rem),
    linear-gradient(180deg, rgba(7, 31, 42, 0.94), var(--bg-deep));
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 96px 96px;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(2, 13, 24, 0.5), transparent 18%, transparent 82%, rgba(2, 13, 24, 0.5)),
    linear-gradient(180deg, rgba(2, 13, 24, 0.06), transparent 52%, rgba(2, 13, 24, 0.42));
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  grid-template-rows: auto 1fr auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 48px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 46px;
  height: 38px;
  overflow: visible;
}

.mark-green {
  fill: none;
  stroke: var(--green-bright);
  stroke-linejoin: round;
  stroke-width: 4;
}

.mark-white {
  fill: none;
  stroke: var(--white);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.brand-word {
  color: var(--white);
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

.brand-word span {
  color: var(--green-bright);
}

.launch-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  padding: 0 16px;
  border: 1px solid rgba(156, 178, 191, 0.18);
  border-radius: 999px;
  background: rgba(8, 24, 38, 0.42);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.018);
  color: #7f8b98;
  font-family: "Roboto Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.pulse-dot {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 16px rgba(37, 194, 85, 0.85);
}

.hero {
  display: flex;
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 64px 0 96px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 30px;
  color: var(--green-bright);
  font-family: "Roboto Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.4;
  text-transform: uppercase;
}

h1 {
  max-width: 900px;
  margin: 0;
  color: var(--white);
  font-size: 5.8rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.97;
}

h1 span {
  color: var(--green);
}

.intro {
  max-width: 760px;
  margin: 34px auto 0;
  color: var(--muted);
  font-size: 1.26rem;
  font-weight: 500;
  line-height: 1.52;
}

.site-footer {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(156, 178, 191, 0.09);
  padding: 0 48px;
  color: #697683;
  font-family: "Roboto Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
}

.site-footer p {
  margin: 0;
}

.site-footer p,
.site-footer a {
  overflow-wrap: anywhere;
}

.site-footer nav {
  display: flex;
  gap: 34px;
}

.site-footer a:hover {
  color: var(--muted);
}

@media (max-width: 1100px) {
  .hero {
    width: min(760px, calc(100% - 40px));
  }

  h1 {
    font-size: 4.85rem;
  }

  .intro {
    max-width: 660px;
    font-size: 1.12rem;
  }
}

@media (max-width: 820px) {
  .site-header {
    padding: 28px 26px;
  }

  .brand-mark {
    width: 42px;
    height: 35px;
  }

  .brand-word {
    font-size: 22px;
  }

  .launch-badge {
    min-height: 34px;
    padding: 0 12px;
    font-size: 11px;
    letter-spacing: 0;
  }

  .hero {
    padding: 52px 0 78px;
  }

  .eyebrow {
    margin-bottom: 26px;
    font-size: 12px;
    letter-spacing: 0;
  }

  h1 {
    font-size: 3.95rem;
  }

  .intro {
    max-width: 560px;
    font-size: 1.06rem;
    margin-top: 30px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    padding: 24px 26px;
  }
}

@media (max-width: 620px) {
  body::before {
    background-size: 64px 64px;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .hero {
    width: min(100% - 30px, 720px);
    justify-content: flex-start;
    padding: 38px 0 62px;
  }

  .eyebrow {
    max-width: 320px;
    margin-bottom: 24px;
    font-size: 11px;
  }

  h1 {
    font-size: 2.95rem;
    line-height: 1.02;
  }

  .intro {
    max-width: 440px;
    margin-top: 26px;
    font-size: 1rem;
    line-height: 1.55;
  }

  .site-footer {
    font-size: 12px;
    letter-spacing: 0;
  }

  .site-footer nav {
    flex-wrap: wrap;
    gap: 18px;
  }
}

@media (max-width: 380px) {
  .site-header {
    padding: 24px 18px;
  }

  .launch-badge {
    font-size: 10px;
  }

  h1 {
    font-size: 2.5rem;
  }

  .intro {
    font-size: 0.94rem;
  }
}
