:root {
  --orange-50: #fff7f2;
  --orange-100: #ffeadc;
  --orange-200: #ffd1b7;
  --orange-500: #f45d22;
  --orange-600: #de4512;
  --ink: #201b18;
  --muted: #6f6863;
  --line: #eadfd8;
  --white: #ffffff;
  --shadow: 0 28px 80px rgba(96, 48, 21, 0.13);
  --radius-lg: 32px;
  --radius-md: 16px;
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  font-family: var(--font-sans);
  background:
    radial-gradient(circle at 88% 13%, rgba(244, 93, 34, 0.12), transparent 24rem),
    radial-gradient(circle at 8% 88%, rgba(244, 93, 34, 0.07), transparent 21rem),
    #fffcfa;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.page-shell {
  width: min(1200px, calc(100% - 48px));
  min-height: 100vh;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
}

.site-header {
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-decoration: none;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--orange-500);
  border-radius: 11px;
  box-shadow: 0 7px 16px rgba(244, 93, 34, 0.24);
}

.brand-mark svg {
  width: 22px;
  fill: currentColor;
}

.header-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  color: #765a4b;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(255, 234, 220, 0.72);
  border: 1px solid var(--orange-100);
  border-radius: 999px;
}

.status-dot {
  width: 7px;
  height: 7px;
  background: var(--orange-500);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(244, 93, 34, 0.13);
  animation: pulse 2.4s ease-in-out infinite;
}

.hero {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(520px, 1.05fr);
  align-items: center;
  gap: clamp(48px, 7vw, 104px);
  padding: 64px 0 88px;
}

.hero-copy {
  max-width: 560px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 25px;
  color: var(--orange-600);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow span {
  font-size: 1rem;
}

h1 {
  margin: 0;
  font-size: clamp(3.2rem, 6.1vw, 5.65rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.accent-word {
  position: relative;
  color: var(--orange-500);
}

.accent-word::after {
  content: "";
  position: absolute;
  right: 1%;
  bottom: -7px;
  left: 2%;
  height: 8px;
  background: url("data:image/svg+xml,%3Csvg width='250' height='9' viewBox='0 0 250 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 6.5C61 1.8 183 1.3 248 4' stroke='%23F45D22' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E")
    center / 100% 100% no-repeat;
}

.intro {
  max-width: 520px;
  margin: 29px 0 34px;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.13rem);
  line-height: 1.75;
}

.notify-form {
  display: flex;
  gap: 10px;
  max-width: 540px;
  padding: 7px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 35px rgba(48, 31, 20, 0.08);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.notify-form:focus-within {
  border-color: var(--orange-500);
  box-shadow:
    0 12px 35px rgba(48, 31, 20, 0.08),
    0 0 0 4px rgba(244, 93, 34, 0.1);
}

.input-wrap {
  min-width: 0;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 11px;
  padding-left: 10px;
}

.input-wrap svg {
  width: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: #9d938c;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.input-wrap input {
  width: 100%;
  min-width: 0;
  padding: 12px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
}

.input-wrap input::placeholder {
  color: #9d938c;
}

.notify-form button {
  min-height: 50px;
  padding: 0 24px;
  color: var(--white);
  font-weight: 750;
  background: var(--orange-500);
  border: 0;
  border-radius: 11px;
  box-shadow: 0 8px 18px rgba(244, 93, 34, 0.22);
  cursor: pointer;
  transition:
    background 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.notify-form button:hover {
  background: var(--orange-600);
  box-shadow: 0 10px 22px rgba(222, 69, 18, 0.28);
  transform: translateY(-1px);
}

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

.notify-form button:focus-visible,
.brand:focus-visible {
  outline: 3px solid rgba(244, 93, 34, 0.28);
  outline-offset: 3px;
}

.form-message {
  min-height: 20px;
  margin: 8px 0 0 4px;
  color: var(--orange-600);
  font-size: 0.84rem;
  font-weight: 650;
}

.form-message.success {
  color: #287d47;
}

.privacy-note {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 4px 0 0 4px;
  color: #8c837d;
  font-size: 0.78rem;
}

.privacy-note svg {
  width: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.countdown-panel {
  position: relative;
  isolation: isolate;
  min-height: 480px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 10%, rgba(255, 255, 255, 0.19), transparent 31%),
    radial-gradient(circle at 14% 95%, rgba(111, 34, 5, 0.18), transparent 34%),
    linear-gradient(145deg, #ff773f 0%, var(--orange-500) 55%, #df4612 100%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.countdown-panel::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.15;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.28'/%3E%3C/svg%3E");
}

.countdown-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 58px 38px;
  text-align: center;
}

.countdown-kicker {
  margin: 0 0 35px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  opacity: 0.85;
}

.countdown {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
}

.time-unit {
  min-width: 0;
}

.time-unit strong {
  display: block;
  font-size: clamp(2.7rem, 5.2vw, 4.55rem);
  line-height: 1;
  letter-spacing: -0.055em;
  font-variant-numeric: tabular-nums;
}

.time-unit span {
  display: block;
  margin-top: 13px;
  font-size: 0.69rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.74;
}

.separator {
  margin-top: clamp(7px, 0.8vw, 11px);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  line-height: 1;
  opacity: 0.48;
}

.launch-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 42px 0 0;
  padding: 10px 15px;
  font-size: 0.77rem;
  font-weight: 650;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.launch-date span {
  font-size: 1rem;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.orbit-one {
  width: 370px;
  height: 370px;
  top: -215px;
  right: -80px;
}

.orbit-two {
  width: 290px;
  height: 290px;
  bottom: -185px;
  left: -80px;
}

.spark {
  position: absolute;
  color: rgba(255, 255, 255, 0.52);
}

.spark-one {
  top: 57px;
  left: 62px;
  font-size: 1.35rem;
}

.spark-two {
  right: 55px;
  bottom: 57px;
  font-size: 0.85rem;
}

footer {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #8c837d;
  font-size: 0.76rem;
  border-top: 1px solid var(--line);
}

footer p {
  margin: 0;
}

.footer-note {
  letter-spacing: 0.04em;
}

.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;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(244, 93, 34, 0.13);
  }
  50% {
    box-shadow: 0 0 0 7px rgba(244, 93, 34, 0.04);
  }
}

@media (max-width: 980px) {
  .page-shell {
    width: min(720px, calc(100% - 40px));
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 56px;
    padding: 58px 0 72px;
  }

  .hero-copy {
    max-width: 620px;
  }

  .countdown-panel {
    min-height: 420px;
  }
}

@media (max-width: 600px) {
  .page-shell {
    width: min(100% - 28px, 520px);
  }

  .site-header {
    height: 88px;
  }

  .header-status {
    padding: 8px 10px;
    font-size: 0.65rem;
  }

  .hero {
    gap: 44px;
    padding: 44px 0 56px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }

  .notify-form {
    display: block;
  }

  .input-wrap {
    min-height: 52px;
    padding-right: 10px;
  }

  .notify-form button {
    width: 100%;
    margin-top: 5px;
  }

  .countdown-panel {
    min-height: 390px;
    border-radius: 24px;
  }

  .countdown-content {
    padding: 50px 18px;
  }

  .countdown-kicker {
    margin-bottom: 29px;
  }

  .time-unit strong {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .separator {
    margin-inline: -2px;
  }

  .time-unit span {
    margin-top: 10px;
    font-size: 0.56rem;
    letter-spacing: 0.06em;
  }

  .launch-date {
    margin-top: 36px;
    font-size: 0.69rem;
  }

  footer {
    min-height: 96px;
    display: block;
    padding: 25px 0;
    text-align: center;
  }

  .footer-note {
    margin-top: 7px;
  }
}

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