:root {
  --bg: #f4f7fb;
  --ink: #0d1b2a;
  --text: #26384d;
  --muted: #6b7c91;
  --white: #ffffff;
  --line: #dce5ee;
  --primary: #006b5f;
  --primary-dark: #03463f;
  --gold: #f5a524;
  --blue: #2357d6;
  --shadow: 0 24px 70px rgba(13, 27, 42, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--text);
  background:
    linear-gradient(120deg, rgba(0, 107, 95, 0.12), transparent 34%),
    linear-gradient(300deg, rgba(35, 87, 214, 0.1), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #edf4fb 100%),
    var(--bg);
}

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

.page-shell {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 28px clamp(18px, 4vw, 64px);
}

.page-shell::before,
.page-shell::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.page-shell::before {
  inset: 0;
  background-image:
    linear-gradient(rgba(13, 27, 42, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 27, 42, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
  animation: gridMove 18s linear infinite;
}

.page-shell::after {
  width: 56vw;
  height: 56vw;
  right: -28vw;
  top: -28vw;
  border: 72px solid rgba(0, 107, 95, 0.08);
  border-radius: 50%;
  animation: rotateRing 26s linear infinite;
}

.hero,
.site-footer {
  position: relative;
  z-index: 1;
  width: min(1160px, 100%);
  margin-inline: auto;
}

.hero {
  flex: 1;
  min-height: calc(100vh - 112px);
  min-height: calc(100dvh - 112px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.72fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: clamp(30px, 5vw, 56px);
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand__mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 8px;
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(0, 107, 95, 0.24);
  animation: brandGlow 2.8s ease-in-out infinite;
}

.eyebrow {
  width: fit-content;
  margin: 0 0 18px;
  padding: 9px 14px;
  border: 1px solid rgba(0, 107, 95, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1 {
  max-width: 720px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.6rem, 5.1vw, 4.95rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero__text {
  max-width: 640px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  line-height: 1.75;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(88px, 1fr));
  gap: 14px;
  max-width: 650px;
  margin-top: 30px;
}

.countdown__item {
  min-height: 104px;
  padding: 18px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 48px rgba(13, 27, 42, 0.08);
  backdrop-filter: blur(14px);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.countdown__item:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 107, 95, 0.35);
  box-shadow: 0 22px 54px rgba(13, 27, 42, 0.13);
}

.countdown__item strong {
  display: block;
  color: var(--primary-dark);
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1;
}

.countdown__item span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.notify-card {
  position: relative;
  padding: clamp(24px, 3.5vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.86)),
    var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
  animation: cardRise 700ms ease both;
}

.notify-card::before {
  position: absolute;
  inset: 0;
  content: "";
  border-radius: inherit;
  border-top: 5px solid var(--primary);
  pointer-events: none;
}

.notify-card::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0 32%, rgba(255, 255, 255, 0.9) 46%, transparent 60% 100%);
  transform: translateX(-120%);
  animation: sheen 5.5s ease-in-out infinite;
}

.launch-preview,
.notify-card__top,
.notify-card h2,
.notify-card p,
.notify-form,
.form-message {
  position: relative;
  z-index: 1;
}

.launch-preview {
  margin-bottom: 26px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, #0d1b2a, #083f3a);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.launch-preview__header {
  display: flex;
  gap: 7px;
  margin-bottom: 14px;
}

.launch-preview__header span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.32);
}

.launch-preview__header span:first-child {
  background: var(--gold);
}

.launch-preview__screen {
  position: relative;
  height: 124px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(135deg, rgba(0, 107, 95, 0.55), rgba(35, 87, 214, 0.2));
  background-size: 24px 24px, 24px 24px, auto;
}

.scan-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(245, 165, 36, 0.85);
  box-shadow: 0 0 20px rgba(245, 165, 36, 0.8);
  animation: scan 3s ease-in-out infinite;
}

.pulse-tile {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  animation: floatTile 4s ease-in-out infinite;
}

.pulse-tile--one {
  width: 42%;
  height: 34px;
  left: 16px;
  top: 22px;
}

.pulse-tile--two {
  width: 32%;
  height: 34px;
  right: 18px;
  top: 54px;
  animation-delay: 600ms;
}

.pulse-tile--three {
  width: 55%;
  height: 28px;
  left: 28px;
  bottom: 16px;
  animation-delay: 1.1s;
}

.notify-card__top {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 28px;
  color: var(--primary);
  font-size: 0.86rem;
  font-weight: 800;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(245, 165, 36, 0.18);
  animation: statusPulse 1.8s ease-in-out infinite;
}

.notify-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.1;
}

.notify-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.notify-form {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.notify-form label {
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
}

.notify-form input {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: 0;
  padding: 0 15px;
  background: #fbfdff;
  color: var(--ink);
  font: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.notify-form input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(0, 107, 95, 0.12);
}

.notify-form input::placeholder {
  color: #9aa8b8;
}

.notify-form button {
  min-height: 54px;
  margin-top: 8px;
  border: 0;
  border-radius: 8px;
  background: var(--primary);
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.notify-form button:hover {
  transform: translateY(-2px);
  background: var(--primary-dark);
  box-shadow: 0 16px 32px rgba(0, 107, 95, 0.18);
}

.notify-form button:active {
  transform: translateY(0);
}

.website-field {
  position: absolute;
  left: -9999px;
}

.form-message {
  margin-top: 18px;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
}

.form-message--success {
  border: 1px solid rgba(0, 107, 95, 0.2);
  background: rgba(0, 107, 95, 0.08);
  color: var(--primary-dark);
}

.form-message--error {
  border: 1px solid rgba(197, 48, 48, 0.22);
  background: rgba(197, 48, 48, 0.08);
  color: #9b2c2c;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 22px;
  color: var(--muted);
  font-size: 0.95rem;
}

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

.site-footer a {
  color: var(--ink);
  font-weight: 700;
}

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

@media (max-width: 920px) {
  .page-shell {
    overflow: visible;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    align-items: start;
    padding-top: 24px;
  }

  .brand {
    margin-bottom: 44px;
  }

  .notify-card {
    max-width: 620px;
  }
}

@media (max-width: 640px) {
  .page-shell {
    padding: 22px 16px 26px;
  }

  h1 {
    font-size: 2.4rem;
  }

  .hero__text {
    margin-top: 18px;
  }

  .countdown {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 28px;
  }

  .countdown__item {
    min-height: 104px;
  }

  .launch-preview__screen {
    height: 98px;
  }

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

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

@keyframes gridMove {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 64px 64px;
  }
}

@keyframes rotateRing {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes brandGlow {
  0%,
  100% {
    box-shadow: 0 16px 34px rgba(0, 107, 95, 0.22);
  }

  50% {
    box-shadow: 0 20px 44px rgba(0, 107, 95, 0.36);
  }
}

@keyframes cardRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes sheen {
  0%,
  55% {
    transform: translateX(-120%);
  }

  100% {
    transform: translateX(120%);
  }
}

@keyframes scan {
  0%,
  100% {
    top: 14px;
  }

  50% {
    top: calc(100% - 16px);
  }
}

@keyframes floatTile {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.72;
  }

  50% {
    transform: translateY(-8px);
    opacity: 1;
  }
}

@keyframes statusPulse {
  0%,
  100% {
    box-shadow: 0 0 0 6px rgba(245, 165, 36, 0.16);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(245, 165, 36, 0.05);
  }
}

@media (max-width: 390px) {
  h1 {
    font-size: 2.25rem;
  }

  .countdown {
    gap: 10px;
  }

  .countdown__item {
    padding: 18px 10px;
  }
}
