:root {
  color-scheme: dark;
  --background: #07100e;
  --surface: rgba(18, 35, 30, 0.72);
  --line: rgba(208, 231, 222, 0.13);
  --text: #f5f8f6;
  --muted: #a0b2ab;
  --accent: #ade654;
  --accent-soft: rgba(173, 230, 84, 0.12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% -10%, rgba(54, 123, 94, 0.26), transparent 32rem),
    linear-gradient(145deg, #0b1814 0%, var(--background) 58%, #050c0a 100%);
  color: var(--text);
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.glow {
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  filter: blur(14px);
  pointer-events: none;
}

.glow-top {
  width: 18rem;
  height: 18rem;
  top: 12%;
  right: -11rem;
  background: rgba(173, 230, 84, 0.07);
}

.glow-bottom {
  width: 22rem;
  height: 22rem;
  bottom: -13rem;
  left: -12rem;
  background: rgba(69, 139, 116, 0.1);
}

.page-shell {
  display: grid;
  width: min(100% - 2rem, 1120px);
  min-height: 100vh;
  margin: 0 auto;
  grid-template-rows: auto 1fr auto;
  padding: 1.25rem 0;
}

.site-header,
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header {
  min-height: 3.5rem;
}

.brand {
  display: inline-flex;
  gap: 0.7rem;
  align-items: center;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 2.1rem;
  height: 2.1rem;
  place-items: center;
  border: 1px solid rgba(173, 230, 84, 0.35);
  border-radius: 11px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.8rem;
}

.status-pill {
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
  padding: 0.45rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.65rem;
}

.status-dot {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: #efc674;
  box-shadow: 0 0 0 4px rgba(239, 198, 116, 0.09);
}

.hero {
  align-self: center;
  max-width: 760px;
  padding: 4rem 0;
}

.icon-wrap {
  display: grid;
  width: 4rem;
  height: 4rem;
  margin-bottom: 2rem;
  place-items: center;
  border: 1px solid rgba(173, 230, 84, 0.28);
  border-radius: 21px;
  background: var(--accent-soft);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.icon-wrap svg {
  width: 1.75rem;
  fill: none;
  stroke: var(--accent);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--accent);
  font-size: 0.67rem;
  font-weight: 750;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

h1 {
  max-width: 11ch;
  margin: 0 0 1.35rem;
  font-size: clamp(3.15rem, 14vw, 6.8rem);
  line-height: 0.93;
  letter-spacing: -0.065em;
}

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

.lead {
  max-width: 58ch;
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.95rem, 2vw, 1.08rem);
  line-height: 1.75;
}

.actions {
  margin-top: 2rem;
}

button {
  display: inline-flex;
  gap: 0.7rem;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  padding: 0 1.15rem;
  border: 1px solid rgba(173, 230, 84, 0.4);
  border-radius: 15px;
  background: var(--accent);
  color: #10190d;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 750;
  cursor: pointer;
  transition: transform 150ms ease, box-shadow 150ms ease;
}

button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(173, 230, 84, 0.13);
}

button:focus-visible {
  outline: 3px solid rgba(173, 230, 84, 0.25);
  outline-offset: 4px;
}

button svg {
  width: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.network-note {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  max-width: 38rem;
  margin-top: 2.75rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--surface);
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.55;
  backdrop-filter: blur(18px);
}

.network-note strong {
  color: var(--text);
  font-weight: 650;
}

.network-icon {
  display: grid;
  width: 2.2rem;
  height: 2.2rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.035);
}

.network-icon svg {
  width: 1.15rem;
  fill: none;
  stroke: var(--accent);
  stroke-linecap: round;
  stroke-width: 1.5;
}

footer {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: rgba(160, 178, 171, 0.62);
  font-size: 0.62rem;
}

@media (min-width: 700px) {
  .page-shell {
    width: min(100% - 4rem, 1120px);
    padding: 2rem 0;
  }

  .hero {
    padding: 6rem 0;
  }

  .status-pill {
    padding-right: 0.8rem;
    padding-left: 0.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

