:root {
  color-scheme: dark;
  --bg: #070a08;
  --panel: rgba(9, 14, 10, 0.78);
  --text: #f7faf7;
  --muted: #aab5ac;
  --green: #39ff14;
  --border: rgba(57, 255, 20, 0.26);
  --content: 1180px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  background: var(--bg);
  color: var(--text);
}

a,
button,
input {
  font: inherit;
}

.launch-page {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100svh;
  overflow: hidden;
  position: relative;
}

.launch-image,
.launch-overlay,
.scan-lines {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.launch-image {
  object-fit: cover;
  object-position: center;
}

.launch-overlay {
  background:
    linear-gradient(90deg, rgba(7, 10, 8, 0.96) 0%, rgba(7, 10, 8, 0.86) 48%, rgba(7, 10, 8, 0.48) 100%),
    linear-gradient(0deg, rgba(7, 10, 8, 0.94), transparent 50%),
    radial-gradient(circle at 15% 45%, rgba(57, 255, 20, 0.13), transparent 34%);
}

.scan-lines {
  background: repeating-linear-gradient(
    0deg,
    transparent 0,
    transparent 5px,
    rgba(57, 255, 20, 0.025) 6px
  );
  pointer-events: none;
}

.site-header,
.launch-content,
.site-footer {
  margin: 0 auto;
  max-width: var(--content);
  position: relative;
  width: calc(100% - 48px);
  z-index: 1;
}

.site-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 22px 0;
}

.brand {
  align-items: center;
  color: var(--text);
  display: flex;
  gap: 14px;
  text-decoration: none;
}

.brand img {
  aspect-ratio: 1;
  border: 1px solid var(--green);
  border-radius: 6px;
  box-shadow: 0 0 22px rgba(57, 255, 20, 0.22);
  height: 62px;
  object-fit: cover;
  width: 62px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 22px;
  line-height: 1;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  margin-top: 6px;
}

.header-contact {
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  font-size: 14px;
  font-weight: 750;
  min-height: 42px;
  padding: 12px 18px;
  text-decoration: none;
  transition: border-color 180ms ease, color 180ms ease;
}

.header-contact:hover {
  border-color: var(--green);
  color: var(--green);
}

.launch-content {
  align-content: center;
  display: grid;
  justify-items: start;
  max-width: var(--content);
  padding: 54px 0 70px;
}

.status {
  align-items: center;
  color: var(--green);
  display: flex;
  font-size: 12px;
  font-weight: 850;
  gap: 9px;
  margin: 0 0 20px;
  text-transform: uppercase;
}

.status span {
  animation: pulse 1.8s ease-in-out infinite;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 14px var(--green);
  height: 8px;
  width: 8px;
}

h1 {
  font-size: clamp(46px, 6.4vw, 84px);
  line-height: 0.98;
  margin: 0;
  max-width: 850px;
  text-wrap: balance;
}

.intro {
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.55;
  margin: 24px 0 0;
  max-width: 680px;
}

.experience-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.experience-list span {
  background: rgba(8, 13, 9, 0.7);
  border: 1px solid rgba(57, 255, 20, 0.22);
  border-radius: 999px;
  color: #dce5dd;
  font-size: 12px;
  font-weight: 800;
  padding: 9px 12px;
  text-transform: uppercase;
}

.notify-form {
  margin-top: 40px;
  max-width: 540px;
  width: 100%;
}

.notify-form label {
  display: block;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 10px;
}

.form-row {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr auto;
}

.form-row input,
.form-row button {
  border-radius: 6px;
  min-height: 50px;
}

.form-row input {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--text);
  min-width: 0;
  outline: none;
  padding: 0 16px;
}

.form-row input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(57, 255, 20, 0.1);
}

.form-row button {
  background: var(--green);
  border: 1px solid var(--green);
  color: #051005;
  cursor: pointer;
  font-weight: 850;
  padding: 0 22px;
}

.form-row button:disabled {
  cursor: wait;
  opacity: 0.64;
}

.form-message {
  color: var(--green);
  font-size: 13px;
  min-height: 20px;
  margin: 10px 0 0;
}

.site-footer {
  align-items: end;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr 1fr auto;
  padding: 22px 0 28px;
}

.site-footer div span,
.site-footer div strong {
  display: block;
}

.site-footer div span {
  color: var(--green);
  font-size: 10px;
  font-weight: 850;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.site-footer div strong,
.site-footer p {
  color: var(--muted);
  font-size: 13px;
  margin: 0;
}

@keyframes pulse {
  50% {
    opacity: 0.45;
    transform: scale(0.72);
  }
}

@media (max-width: 720px) {
  .launch-page {
    min-height: 100dvh;
  }

  .launch-image {
    object-position: 61% center;
  }

  .launch-overlay {
    background:
      linear-gradient(180deg, rgba(7, 10, 8, 0.72), rgba(7, 10, 8, 0.93) 48%, var(--bg) 100%),
      linear-gradient(90deg, rgba(7, 10, 8, 0.88), rgba(7, 10, 8, 0.48));
  }

  .site-header,
  .launch-content,
  .site-footer {
    width: calc(100% - 32px);
  }

  .site-header {
    padding: 14px 0;
  }

  .brand {
    gap: 10px;
  }

  .brand img {
    height: 48px;
    width: 48px;
  }

  .brand strong {
    font-size: 18px;
  }

  .brand small {
    font-size: 10px;
  }

  .header-contact {
    font-size: 12px;
    min-height: 38px;
    padding: 10px 12px;
  }

  .launch-content {
    align-content: end;
    padding: 70px 0 44px;
  }

  h1 {
    font-size: clamp(38px, 12vw, 54px);
    max-width: 11ch;
  }

  .intro {
    font-size: 16px;
    line-height: 1.45;
  }

  .notify-form {
    margin-top: 30px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: start;
    gap: 16px;
    grid-template-columns: 1fr;
    padding-bottom: 20px;
  }
}

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