:root {
  color-scheme: dark;
  --ink: #18120c;
  --cream: #fff8eb;
  --cream-muted: rgba(255, 248, 235, 0.76);
  --gold: #f2b94b;
  --orange: #d9792a;
  --line: rgba(255, 248, 235, 0.26);
  --shadow: rgba(10, 7, 4, 0.48);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--ink);
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--cream);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background:
    linear-gradient(90deg, rgba(12, 8, 5, 0.78) 0%, rgba(12, 8, 5, 0.42) 42%, rgba(12, 8, 5, 0.12) 100%),
    linear-gradient(180deg, rgba(12, 8, 5, 0.08) 0%, rgba(12, 8, 5, 0.28) 100%),
    url("assets/solar-bg.png?v=20260617-2"),
    radial-gradient(circle at 68% 42%, rgba(242, 185, 75, 0.78), transparent 0 18rem),
    radial-gradient(circle at 50% 58%, rgba(217, 121, 42, 0.28), transparent 0 34rem),
    linear-gradient(125deg, #120d09 0%, #37210f 48%, #f2b94b 100%);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(circle at 67% 45%, rgba(255, 235, 174, 0.16), transparent 0 22rem);
}

.coming-soon {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: clamp(28px, 6vw, 72px);
}

.ambient {
  position: absolute;
  inset: auto auto clamp(20px, 5vw, 64px) clamp(20px, 5vw, 64px);
  width: min(380px, 62vw);
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(255, 248, 235, 0));
  opacity: 0.88;
}

.hero {
  width: min(760px, 100%);
  padding-bottom: clamp(8px, 3vw, 38px);
  text-shadow: 0 18px 48px var(--shadow);
}

.kicker {
  width: fit-content;
  margin: 0 0 clamp(18px, 3vw, 30px);
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--cream-muted);
  background: rgba(24, 18, 12, 0.24);
  backdrop-filter: blur(16px);
  font-size: clamp(0.72rem, 1.5vw, 0.82rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: var(--cream);
  font-size: clamp(4.6rem, 16vw, 11rem);
  font-weight: 760;
  line-height: 0.82;
  letter-spacing: 0;
}

.intro {
  max-width: 34rem;
  margin: clamp(28px, 5vw, 42px) 0 0;
  color: var(--cream);
  font-size: clamp(1.15rem, 2.3vw, 1.55rem);
  font-weight: 420;
  line-height: 1.48;
}

.return-note {
  margin: clamp(24px, 4vw, 34px) 0 0;
  color: var(--cream-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.is-loaded .hero {
  animation: reveal 760ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

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

@media (max-width: 720px) {
  body::after {
    background: linear-gradient(180deg, rgba(12, 8, 5, 0) 0%, rgba(12, 8, 5, 0.5) 100%);
  }

  .coming-soon {
    align-items: end;
    padding: 26px 22px 34px;
  }

  .ambient {
    width: calc(100% - 44px);
    inset: auto 22px 22px;
  }

  h1 {
    font-size: clamp(4.2rem, 21vw, 7.2rem);
  }

  .intro {
    max-width: 26rem;
  }
}

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