:root {
  --green: #004b25;
  --green-2: #087c43;
  --black: #020403;
  --panel: #07110c;
  --white: #f7f8f4;
  --muted: #a8ada8;
  --line: rgba(247, 248, 244, 0.14);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at top left, rgba(0, 75, 37, 0.46), transparent 34rem),
    linear-gradient(145deg, #020403 0%, #04150d 54%, #020403 100%);
}

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

button,
input {
  font: inherit;
}

.page {
  min-height: 100vh;
  padding: 28px;
}

.shell {
  width: min(1180px, 100%);
  min-height: calc(100vh - 56px);
  margin: 0 auto;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: clamp(28px, 5vh, 58px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), transparent 42%),
    rgba(2, 4, 3, 0.64);
  padding: clamp(22px, 4vw, 46px);
}

.header,
.bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

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

.brand img {
  display: block;
  width: clamp(132px, 13vw, 190px);
  height: auto;
}

.hero {
  align-self: center;
  justify-self: center;
  width: min(820px, 100%);
  text-align: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: #75d9a6;
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(3.4rem, 9vw, 8.6rem);
  line-height: 0.92;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.intro {
  width: min(620px, 100%);
  margin: 24px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  line-height: 1.65;
}

.notify {
  width: min(560px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  margin: 32px auto 0;
}

.notify input {
  min-width: 0;
  min-height: 56px;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: 0;
  background: rgba(247, 248, 244, 0.07);
  color: var(--white);
  padding: 0 18px;
}

.notify input:focus {
  border-color: #75d9a6;
}

.notify input::placeholder {
  color: rgba(247, 248, 244, 0.42);
}

.notify button {
  min-height: 56px;
  border: 0;
  border-radius: 8px;
  background: var(--green);
  color: var(--white);
  padding: 0 24px;
  font-weight: 900;
  cursor: pointer;
}

.notify button:hover {
  background: var(--green-2);
}

.message {
  min-height: 24px;
  margin: 12px 0 0;
  color: #8ee2b6;
  font-weight: 800;
}

.tagline {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
  text-align: center;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 760px) {
  .page {
    padding: 14px;
  }

  .shell {
    min-height: calc(100vh - 28px);
    border-radius: 14px;
  }

  .header,
  .bottom {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  .brand img {
    width: 148px;
  }

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

  .tagline {
    text-align: center;
  }
}
