:root {
  color-scheme: dark;
  --bg: #0d1117;
  --bg-soft: #111821;
  --panel: rgba(17, 24, 33, 0.72);
  --panel-strong: rgba(19, 26, 35, 0.92);
  --ink: #f4efe6;
  --muted: rgba(244, 239, 230, 0.72);
  --line: rgba(244, 239, 230, 0.14);
  --gold: #d7b06b;
  --gold-soft: rgba(215, 176, 107, 0.18);
  --sand: #efe2cc;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 15%, rgba(215, 176, 107, 0.14), transparent 22%),
    radial-gradient(circle at 82% 26%, rgba(255, 255, 255, 0.05), transparent 24%),
    linear-gradient(180deg, #10161e 0%, var(--bg) 100%);
  font-family: "Inter", "Avenir Next", "Segoe UI", Arial, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.05), transparent 22%),
    radial-gradient(circle at 50% 50%, transparent 58%, rgba(0, 0, 0, 0.26) 100%);
}

.page-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 20px 28px;
}

.hero {
  width: min(100%, 1180px);
  display: grid;
  gap: 34px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(18, 25, 34, 0.92), rgba(12, 17, 24, 0.88));
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 20%, rgba(215, 176, 107, 0.08), transparent 17%),
    radial-gradient(circle at 85% 78%, rgba(239, 226, 204, 0.06), transparent 19%);
}

.masthead,
.hero-grid,
.footer {
  position: relative;
  z-index: 1;
}

.masthead {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(215, 176, 107, 0.35);
  background:
    linear-gradient(180deg, rgba(215, 176, 107, 0.14), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.02);
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.brand-mark span {
  position: absolute;
  inset: 11px 21px;
  border-left: 2px solid var(--gold);
  border-top: 2px solid var(--gold);
  transform: skewX(-42deg);
}

.brand-mark span:last-child {
  transform: skewX(42deg);
}

.brand-copy {
  display: grid;
  gap: 4px;
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
  letter-spacing: 0.02em;
}

.brand-tag,
.launch-note,
.eyebrow,
.footer-copy {
  color: var(--muted);
}

.brand-tag {
  font-size: 0.88rem;
}

.launch-note {
  margin: 0;
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
}

.hero-copy {
  display: grid;
  gap: 22px;
  max-width: 620px;
}

.eyebrow {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.35rem, 7.8vw, 7.3rem);
  line-height: 0.95;
  font-weight: 500;
  letter-spacing: -0.07em;
  max-width: 11ch;
}

h1 span {
  color: var(--gold);
}

.lede {
  margin: 0;
  max-width: 34rem;
  font-size: clamp(1.03rem, 1.9vw, 1.3rem);
  line-height: 1.6;
  color: var(--muted);
}

.notify {
  display: flex;
  gap: 12px;
  align-items: stretch;
  width: min(100%, 460px);
}

.notify input {
  flex: 1;
  min-width: 0;
  border: 1px solid rgba(244, 239, 230, 0.12);
  border-radius: 16px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  font: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.notify input::placeholder {
  color: rgba(244, 239, 230, 0.38);
}

.notify input:focus,
.notify button:focus,
.secondary-link:focus {
  outline: 2px solid rgba(215, 176, 107, 0.85);
  outline-offset: 3px;
}

.notify button {
  border: 0;
  border-radius: 16px;
  padding: 16px 22px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  color: #1a1711;
  background: linear-gradient(180deg, #efdbb2 0%, var(--gold) 100%);
  box-shadow: 0 18px 34px rgba(215, 176, 107, 0.22);
  white-space: nowrap;
  transition: transform 180ms ease, filter 180ms ease;
}

.notify button:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.status {
  min-height: 1.25rem;
  margin: 0;
  color: var(--sand);
  opacity: 0.82;
  font-size: 0.95rem;
}

.scene {
  display: grid;
  gap: 14px;
  align-content: center;
}

.scene-card {
  border-radius: 28px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 35%),
    var(--panel);
  border: 1px solid rgba(244, 239, 230, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.scene-frame {
  aspect-ratio: 16 / 11;
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(244, 239, 230, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 36%),
    linear-gradient(180deg, #1a222c 0%, #111720 100%);
}

.scene-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.scene-foot {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 0.84rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  padding-top: 4px;
  color: var(--muted);
  font-size: 0.95rem;
}

.secondary-link {
  color: var(--ink);
  text-decoration: none;
}

.secondary-link:hover {
  color: var(--gold);
}

.divider {
  width: 1px;
  height: 18px;
  background: rgba(244, 239, 230, 0.16);
}

.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: 920px) {
  .masthead {
    align-items: start;
    flex-direction: column;
  }

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

  .scene {
    order: -1;
  }

  .hero-copy {
    max-width: 100%;
  }
}

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

  .hero {
    border-radius: 24px;
    padding: 20px 18px 18px;
    gap: 24px;
  }

  .notify,
  .footer,
  .scene-foot {
    flex-direction: column;
    align-items: stretch;
  }

  .notify button {
    width: 100%;
  }

  .scene-card {
    border-radius: 22px;
    padding: 14px;
  }

  .scene-frame {
    aspect-ratio: 1 / 1.02;
  }

  .footer {
    gap: 10px;
  }

  .divider {
    width: 100%;
    height: 1px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero > * {
    animation: rise 720ms ease both;
  }

  .hero > *:nth-child(2) {
    animation-delay: 60ms;
  }

  .hero > *:nth-child(3) {
    animation-delay: 120ms;
  }

  .hero > *:nth-child(4) {
    animation-delay: 180ms;
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
