* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: dark;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #070707;
  color: #ffffff;
  --red: #d02c2f;
  --red-soft: rgba(208, 44, 47, 0.28);
  --line: rgba(255, 255, 255, 0.11);
  --muted: rgba(255, 255, 255, 0.72);
}

html {
  width: 100%;
  height: 100%;
}

body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background:
    linear-gradient(130deg, rgba(208, 44, 47, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 30%),
    #070707;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.65), transparent 76%);
}

body::after {
  content: "";
  position: fixed;
  inset: auto -10vw -28vh -10vw;
  height: 48vh;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(208, 44, 47, 0.2) 42%, rgba(0, 0, 0, 0.7));
}

.page {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 3vw, 40px);
}

.hero {
  width: min(100%, 720px);
  max-height: calc(100dvh - clamp(36px, 6vw, 84px));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 54px;
  text-align: center;
}

.eyebrow {
  width: fit-content;
  max-width: 100%;
  margin-bottom: clamp(16px, 2.4vh, 24px);
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.logo {
  display: block;
  width: clamp(190px, 24vw, 310px);
  height: auto;
  margin-bottom: clamp(24px, 4vh, 34px);
  filter: drop-shadow(0 20px 48px rgba(0, 0, 0, 0.55));
}

h1 {
  max-width: 720px;
  font-size: clamp(2rem, 4.1vw, 2.15rem);
  font-weight: 800;
  line-height: 1.02;
  text-wrap: balance;
}

.intro {
  max-width: 560px;
  margin-top: clamp(14px, 2.4vh, 22px);
  color: var(--muted);
  font-size: clamp(0.95rem, 1.15vw, 1.08rem);
  line-height: 1.55;
}

.actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  max-width: 100%;
  min-height: 46px;
  margin-top: clamp(20px, 3vh, 30px);
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.22);
}

.status-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 7px var(--red-soft);
}

.footer {
  position: absolute;
  right: clamp(18px, 3vw, 42px);
  bottom: clamp(16px, 2.5vw, 32px);
  left: clamp(18px, 3vw, 42px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 18px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  font-weight: 600;
}

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

  .page {
    padding: 18px;
  }

  .hero {
    max-height: calc(100dvh - 36px);
    padding-bottom: 72px;
  }

  .eyebrow {
    font-size: 0.68rem;
    white-space: normal;
    margin-bottom: 18px;
  }

  .logo {
    width: min(78vw, 230px);
    margin-bottom: 20px;
  }

  h1 {
    font-size: clamp(1.75rem, 9.6vw, 2.9rem);
    line-height: 1.04;
  }

  .intro {
    max-width: 34rem;
    font-size: 0.92rem;
    line-height: 1.48;
  }

  .actions {
    width: fit-content;
    justify-content: center;
    font-size: 0.88rem;
  }

  .footer {
    right: 18px;
    bottom: 16px;
    left: 18px;
    gap: 14px;
    font-size: 0.78rem;
  }
}

@media (max-height: 620px) {
  .eyebrow {
    margin-bottom: 12px;
  }

  .logo {
    width: clamp(160px, 22vw, 250px);
    margin-bottom: 16px;
  }

  h1 {
    font-size: clamp(1.7rem, 3.7vw, 3.25rem);
  }

  .intro {
    margin-top: 12px;
    line-height: 1.45;
  }

  .actions {
    min-height: 40px;
    margin-top: 16px;
    padding: 8px 14px;
  }
}
