:root {
  color-scheme: dark;
  --ink: #080b0d;
  --paper: #f4f1eb;
  --muted: rgba(255,255,255,.64);
  --line: rgba(255,255,255,.22);
  --copper: #c9864d;
  --glass: rgba(11,14,16,.82);
  --ease: cubic-bezier(.22,1,.36,1);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  min-height: 100svh;
  overflow-x: hidden;
  background: var(--ink);
  color: #fff;
  font-family: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

button, input, textarea { font: inherit; }
button { color: inherit; }

.backdrop, .scene, .veil, .grain {
  position: fixed;
  inset: 0;
}

.backdrop { z-index: -2; background: #0b0e10; }

.scene {
  opacity: 0;
  background-position: center;
  background-size: cover;
  transform: scale(1.035);
  transition: opacity 1.8s ease;
}

.scene.is-active {
  opacity: 1;
  animation: drift 11s linear both;
}

.veil {
  background:
    linear-gradient(90deg, rgba(3,5,6,.88) 0%, rgba(4,6,7,.58) 43%, rgba(4,6,7,.23) 71%, rgba(3,5,6,.55) 100%),
    linear-gradient(0deg, rgba(3,5,6,.78) 0%, transparent 38%, rgba(3,5,6,.20) 100%);
}

.grain {
  opacity: .12;
  pointer-events: none;
  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='.38'/%3E%3C/svg%3E");
}

@keyframes drift {
  from { transform: scale(1.035); }
  to { transform: scale(1.105); }
}

.site-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: clamp(1.5rem, 4vw, 3.75rem) clamp(1.5rem, 5.5vw, 6.25rem);
}

.brand {
  width: clamp(15rem, 26vw, 26rem);
  height: auto;
  object-fit: contain;
}

.status {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding-top: .35rem;
  color: rgba(255,255,255,.72);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .19em;
  text-transform: uppercase;
}

.status-line { width: 2.4rem; height: 1px; background: var(--copper); }

.hero {
  display: flex;
  align-items: center;
  min-height: calc(100svh - 15rem);
  padding: 1rem clamp(1.5rem, 5.5vw, 6.25rem) 8.5rem;
}

.hero-copy { max-width: 56rem; }

.eyebrow {
  margin: 0 0 1.5rem;
  color: var(--copper);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 14ch;
  font-size: clamp(3rem, 6.5vw, 7rem);
  font-weight: 300;
  letter-spacing: -.055em;
  line-height: .96;
  text-wrap: balance;
}

.intro {
  max-width: 34rem;
  margin: 1.75rem 0 2.6rem;
  color: rgba(255,255,255,.71);
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  font-weight: 300;
  line-height: 1.6;
}

.countdown {
  display: flex;
  align-items: flex-start;
  gap: clamp(.8rem, 2vw, 1.8rem);
  width: max-content;
  max-width: 100%;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.time-unit { min-width: clamp(3.6rem, 6vw, 5.75rem); }

.time-unit strong {
  display: block;
  font-size: clamp(2rem, 3.5vw, 3.7rem);
  font-weight: 300;
  letter-spacing: -.04em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.time-unit span {
  display: block;
  margin-top: .55rem;
  color: var(--muted);
  font-size: .64rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.separator { width: 1px; height: 3.8rem; background: var(--line); }

.launch-message { color: var(--paper); font-size: 1.1rem; }

.site-footer {
  position: fixed;
  z-index: 2;
  bottom: 2.2rem;
  left: clamp(1.5rem, 5.5vw, 6.25rem);
  display: flex;
  gap: 2.5rem;
  color: rgba(255,255,255,.46);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.site-footer p { margin: 0; }

.contact-widget {
  position: fixed;
  z-index: 10;
  right: clamp(1rem, 2.5vw, 2.5rem);
  bottom: clamp(1rem, 2.5vw, 2.5rem);
  width: min(25rem, calc(100vw - 2rem));
}

.contact-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 12.5rem;
  margin-left: auto;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 0;
  background: rgba(8,11,13,.72);
  backdrop-filter: blur(18px);
  cursor: pointer;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: background .3s ease, border-color .3s ease;
}

.contact-trigger:hover { background: rgba(201,134,77,.92); border-color: var(--copper); }
.contact-trigger svg, .submit-button svg { width: 1rem; fill: none; stroke: currentColor; stroke-width: 1.6; }

.contact-panel {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  padding: 1.7rem;
  border: 1px solid rgba(255,255,255,.17);
  background: var(--glass);
  box-shadow: 0 2rem 5rem rgba(0,0,0,.42);
  backdrop-filter: blur(26px) saturate(130%);
  opacity: 0;
  transform: translateY(1rem) scale(.97);
  transform-origin: bottom right;
  pointer-events: none;
  transition: opacity .35s var(--ease), transform .45s var(--ease);
}

.contact-widget.is-open .contact-panel { opacity: 1; transform: none; pointer-events: auto; }
.contact-widget.is-open .contact-trigger { opacity: 0; pointer-events: none; }

.contact-heading { display: flex; justify-content: space-between; gap: 1rem; margin-bottom: 1.2rem; }
.contact-kicker { margin: 0 0 .45rem; color: var(--copper); font-size: .66rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.contact-heading h2 { margin: 0; font-size: 1.45rem; font-weight: 400; letter-spacing: -.025em; }

.contact-close {
  align-self: flex-start;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.68);
  cursor: pointer;
  font-size: 1.7rem;
  font-weight: 200;
  line-height: .9;
}

.field { position: relative; margin-top: .9rem; }

.field label {
  display: block;
  margin-bottom: .38rem;
  color: rgba(255,255,255,.57);
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.field input, .field textarea {
  width: 100%;
  padding: .58rem 0;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.26);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font-size: .95rem;
  line-height: 1.4;
  resize: vertical;
  transition: border-color .2s ease;
}

.field input:focus, .field textarea:focus { border-color: var(--copper); }
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: #e58b79; }
.website-field { position: absolute; left: -9999px; opacity: 0; }

.submit-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 1.25rem;
  padding: .95rem 1rem;
  border: 1px solid var(--copper);
  border-radius: 0;
  background: var(--copper);
  color: #0b0d0f;
  cursor: pointer;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: filter .2s ease, transform .2s ease;
}

.submit-button:hover { filter: brightness(1.08); }
.submit-button:active { transform: translateY(1px); }
.submit-button:disabled { cursor: wait; opacity: .65; }
.form-status { min-height: 1.15rem; margin: .65rem 0 0; color: rgba(255,255,255,.72); font-size: .75rem; line-height: 1.45; }
.form-status.is-success { color: #b7d8b7; }
.form-status.is-error { color: #efaa9d; }

.noscript {
  position: fixed;
  z-index: 20;
  inset: auto 1rem 1rem 1rem;
  padding: .8rem 1rem;
  background: #7b2f25;
  color: #fff;
  text-align: center;
  font-size: .85rem;
}

@media (min-width: 1100px) {
  .contact-widget { bottom: 2.2rem; }
}

@media (max-width: 900px) {
  .site-header { align-items: center; }
  .brand { width: min(18rem, 62vw); }
  .status { font-size: .62rem; }
  .status-line { width: 1.5rem; }
  .hero { align-items: flex-end; min-height: calc(100svh - 7rem); padding-bottom: 7.2rem; }
  .site-footer { display: none; }
  .veil { background: linear-gradient(0deg, rgba(3,5,6,.92) 0%, rgba(3,5,6,.50) 65%, rgba(3,5,6,.35) 100%); }
}

@media (max-width: 620px) {
  .site-header { padding: 1.25rem 1.1rem; }
  .brand { width: 13.5rem; }
  .status { max-width: 7rem; justify-content: flex-end; text-align: right; line-height: 1.45; }
  .status-line { display: none; }
  .hero { padding: 2rem 1.1rem 6.5rem; }
  .eyebrow { margin-bottom: 1rem; font-size: .61rem; }
  h1 { font-size: clamp(2.65rem, 13vw, 4.2rem); }
  .intro { margin: 1.2rem 0 1.8rem; font-size: .98rem; }
  .countdown { width: 100%; justify-content: space-between; gap: .45rem; }
  .time-unit { min-width: 0; }
  .time-unit strong { font-size: clamp(1.7rem, 9vw, 2.5rem); }
  .time-unit span { font-size: .52rem; letter-spacing: .1em; }
  .separator { height: 3rem; }
  .contact-panel { max-height: calc(100svh - 2rem); overflow-y: auto; padding: 1.35rem; }
}

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