:root {
  --bg: #02050c;
  --bg-soft: #050b16;
  --card: rgba(255, 255, 255, 0.055);
  --card-strong: rgba(255, 255, 255, 0.085);
  --card-border: rgba(255, 255, 255, 0.12);
  --text: #f7fbff;
  --muted: rgba(224, 235, 255, 0.74);
  --blue: #1cb8ff;
  --blue-soft: rgba(28, 184, 255, 0.18);
  --yellow: #ffd84d;
  --yellow-soft: rgba(255, 216, 77, 0.16);
  --black-glass: rgba(2, 5, 12, 0.66);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
  --radius-xl: 34px;
  --radius-lg: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 50% -20%, rgba(28, 184, 255, 0.16), transparent 38%),
    linear-gradient(180deg, #030713 0%, var(--bg) 58%, #000 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    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: 52px 52px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.72), transparent 78%);
}

.background {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(34px);
  opacity: 0.55;
}

.glow-blue {
  width: 520px;
  height: 520px;
  left: -220px;
  top: -180px;
  background: rgba(28, 184, 255, 0.32);
}

.glow-yellow {
  width: 460px;
  height: 460px;
  right: -210px;
  bottom: -180px;
  background: rgba(255, 216, 77, 0.22);
}

.line {
  position: absolute;
  width: 54vw;
  height: 1px;
  opacity: 0.55;
  background: linear-gradient(90deg, transparent, rgba(28, 184, 255, 0.48), rgba(255, 216, 77, 0.32), transparent);
  transform: rotate(-16deg);
}

.line-one {
  top: 24%;
  right: -12%;
}

.line-two {
  bottom: 20%;
  left: -18%;
  transform: rotate(-16deg);
  opacity: 0.34;
}

.pixel {
  display: none !important;
}

.page {
  position: relative;
  z-index: 1;
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 22px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 46px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(255, 216, 77, 0.24);
  box-shadow:
    0 0 0 6px rgba(255, 255, 255, 0.035),
    0 18px 44px rgba(0, 0, 0, 0.36);
}

.brand span {
  padding-top: 1px;
}

.nav-link,
.copy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: var(--text);
  text-decoration: none;
  font: inherit;
  font-weight: 850;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(18px);
  cursor: pointer;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.copy-button:hover,
.copy-button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(28, 184, 255, 0.48);
  background: rgba(28, 184, 255, 0.09);
  box-shadow: 0 14px 40px rgba(28, 184, 255, 0.11);
  outline: none;
}

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

.hero-copy,
.status-panel,
.card {
  position: relative;
  border: 1px solid var(--card-border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
    rgba(2, 5, 12, 0.52);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}

.hero-copy::before,
.status-panel::before,
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(28, 184, 255, 0.42), transparent 35%, rgba(255, 216, 77, 0.26));
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.7;
}

.hero-copy {
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: clamp(30px, 4.6vw, 58px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 216, 77, 0.32);
  border-radius: 999px;
  color: #fff1b6;
  background: rgba(255, 216, 77, 0.08);
  font-size: 14px;
  font-weight: 950;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 6px rgba(255, 216, 77, 0.12);
}

h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(42px, 6.6vw, 82px);
  line-height: 0.95;
  letter-spacing: -0.065em;
}

.accent {
  display: inline-block;
  color: transparent;
  background: linear-gradient(90deg, var(--blue) 0%, #7fdcff 34%, #ffffff 52%, var(--yellow) 100%);
  background-size: 240% auto;
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 10px 34px rgba(28, 184, 255, 0.18));
}

.lead {
  max-width: 700px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2.18vw, 22px);
  line-height: 1.58;
}

.notice {
  margin-top: 24px;
  padding: 18px 20px;
  border: 1px solid rgba(28, 184, 255, 0.20);
  border-radius: 22px;
  color: rgba(247, 251, 255, 0.92);
  background:
    linear-gradient(135deg, rgba(28, 184, 255, 0.10), rgba(255, 216, 77, 0.055)),
    rgba(255, 255, 255, 0.035);
  line-height: 1.55;
  font-weight: 800;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 18px;
  font: inherit;
  font-size: 17px;
  font-weight: 950;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.button-primary {
  color: #02050c;
  border: 1px solid rgba(255, 216, 77, 0.48);
  background: linear-gradient(135deg, var(--yellow), #fff7c8 46%, var(--blue));
  box-shadow: 0 18px 48px rgba(28, 184, 255, 0.18), 0 10px 36px rgba(255, 216, 77, 0.10);
}

.button-secondary {
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(16px);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.34);
  outline: none;
}

.status-panel {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  border-radius: var(--radius-xl);
  padding: clamp(24px, 3.6vw, 36px);
}

.status-panel > * {
  position: relative;
  z-index: 1;
}

.panel-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid rgba(28, 184, 255, 0.28);
  border-radius: 999px;
  color: #ccefff;
  background: rgba(28, 184, 255, 0.08);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.panel-title {
  margin: 10px 0 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.panel-text {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.58;
  font-size: 17px;
}

.status-box {
  display: grid;
  gap: 12px;
  margin-top: 6px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 24px;
  background: rgba(0, 0, 0, 0.22);
}

.status-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.status-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.status-label {
  color: rgba(247, 251, 255, 0.64);
  font-size: 14px;
  font-weight: 850;
}

.status-value {
  color: #ffffff;
  font-size: 15px;
  font-weight: 950;
  text-align: right;
}

.status-value.warning {
  color: #ffe27a;
}

.address {
  color: #cdefff;
}

.copy-button {
  width: fit-content;
}

.roadmap {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.roadmap li {
  position: relative;
  padding: 14px 14px 14px 52px;
  border: 1px solid rgba(255, 255, 255, 0.105);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--muted);
  line-height: 1.45;
}

.roadmap li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 14px;
  top: 13px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #02050c;
  background: linear-gradient(135deg, var(--yellow), #fff4ba);
  font-size: 14px;
  font-weight: 1000;
}

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

.card {
  overflow: hidden;
  padding: 24px;
  border-radius: 26px;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(28, 184, 255, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.045)),
    rgba(2, 5, 12, 0.56);
}

.card .icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 216, 77, 0.22);
  border-radius: 16px;
  color: var(--yellow);
  font-size: 14px;
  font-weight: 1000;
  background: rgba(255, 216, 77, 0.075);
}

.card h2 {
  margin: 0 0 10px;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.footer {
  display: flex;
  justify-content: center;
  padding: 28px 0 8px;
  color: rgba(247, 251, 255, 0.52);
  font-size: 14px;
  text-align: center;
}

@media (max-width: 920px) {
  .nav {
    margin-bottom: 34px;
  }

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

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

@media (max-width: 540px) {
  .page {
    width: min(100% - 24px, 1140px);
    padding-top: 18px;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-link,
  .actions,
  .button,
  .copy-button,
  .status-row {
    width: 100%;
  }

  .status-row {
    align-items: stretch;
    flex-direction: column;
  }

  .status-value {
    text-align: left;
  }

  h1 {
    letter-spacing: -0.055em;
  }
}
