@font-face {
  font-family: "Alte Haas Grotesk";
  src: url("./alte-haas-grotesk-regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Alte Haas Grotesk";
  src: url("./alte-haas-grotesk-bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  color-scheme: dark;
  font-family: "Alte Haas Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --color-brand-primary: #ff5a00;
  --color-canvas: #070809;
  --color-surface-1: rgba(13, 14, 16, 0.82);
  --color-text-primary: #ffffff;
  --color-text-secondary: #b8b8b8;
  --color-text-muted: #929292;
  --color-border-default: rgba(255, 255, 255, 0.34);
  --color-border-strong: rgba(255, 255, 255, 0.56);
  --color-focus-ring: #ffffff;
  --shadow-cta: 0 8px 24px rgba(255, 90, 0, 0.16);
}

* {
  box-sizing: border-box;
  font-family: inherit;
}

html {
  background: var(--color-canvas);
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  color: var(--color-text-primary);
  background: var(--color-canvas);
}

button,
input {
  font: inherit;
}

.coming-soon-shell {
  isolation: isolate;
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  background-image:
    linear-gradient(180deg, rgba(2, 3, 4, 0.05) 0%, rgba(2, 3, 4, 0.2) 56%, rgba(2, 3, 4, 0.5) 100%),
    url("./smoke-background-v2.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.coming-soon-shell::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: radial-gradient(circle at 50% 36%, transparent 0 30%, rgba(0, 0, 0, 0.12) 62%, rgba(0, 0, 0, 0.34) 100%);
  pointer-events: none;
}

.ambient-glow {
  position: absolute;
  z-index: -1;
  width: 280px;
  height: 220px;
  left: -120px;
  bottom: -110px;
  border-radius: 50%;
  background: rgba(255, 90, 0, 0.12);
  filter: blur(100px);
}

.content-panel {
  width: min(990px, calc(100% - 48px));
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0 auto;
  padding: clamp(16px, 2.2vh, 28px) 0 clamp(20px, 3vh, 36px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.brand {
  display: block;
  width: min(900px, 92vw);
  aspect-ratio: 2.2 / 1;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  mix-blend-mode: screen;
}

.brand img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}

.brand:focus-visible {
  outline: 3px solid var(--color-focus-ring);
  outline-offset: 4px;
}

.subtitle {
  max-width: 930px;
  margin: clamp(2px, 0.8vh, 8px) 0 0;
  color: var(--color-text-secondary);
  font-size: clamp(17px, 1.55vw, 24px);
  line-height: 1.35;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(108px, 1fr));
  width: min(720px, 100%);
  margin-top: clamp(20px, 3.2vh, 32px);
}

.time-unit {
  position: relative;
  text-align: center;
}

.time-unit:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 4px;
  right: 0;
  width: 1px;
  height: 56px;
  background: var(--color-brand-primary);
}

.time-unit strong {
  display: block;
  font-size: clamp(38px, 3.5vw, 54px);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.time-unit span {
  display: block;
  margin-top: 10px;
  color: var(--color-text-secondary);
  font-size: 13px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

h1 {
  margin: clamp(24px, 3.6vh, 36px) 0 0;
  font-size: clamp(28px, 3.2vw, 48px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  white-space: nowrap;
}

h1 span,
h1 strong {
  display: inline;
}

h1 strong {
  color: var(--color-brand-primary);
  font-weight: 700;
}

.notify {
  width: min(720px, 100%);
  margin-top: clamp(22px, 3vh, 30px);
}

.notify-heading {
  display: grid;
  grid-template-columns: minmax(40px, 1fr) auto minmax(40px, 1fr);
  align-items: center;
  gap: 20px;
  margin-bottom: 18px;
}

.notify-heading span {
  height: 1px;
  background: rgba(255, 255, 255, 0.42);
}

.notify-heading h2 {
  margin: 0;
  color: #d0d0d0;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.11em;
  text-align: center;
  text-transform: uppercase;
}

form {
  display: grid;
  grid-template-columns: 1fr auto;
}

input[type="email"] {
  min-width: 0;
  height: 64px;
  padding: 0 24px;
  border: 1px solid var(--color-border-default);
  border-right: 0;
  border-radius: 4px 0 0 4px;
  outline: none;
  color: var(--color-text-primary);
  background: var(--color-surface-1);
  font-size: 17px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

input[type="email"]::placeholder {
  color: #b0b0b0;
  opacity: 1;
}

input[type="email"]:focus {
  border-color: var(--color-brand-primary);
  box-shadow: inset 0 0 0 1px var(--color-brand-primary), 0 0 0 3px rgba(255, 90, 0, 0.16);
}

input[type="email"][aria-invalid="true"] {
  border-color: #ff805d;
}

button {
  min-width: 230px;
  height: 64px;
  padding: 0 28px;
  border: 1px solid var(--color-brand-primary);
  border-radius: 0 4px 4px 0;
  color: #ffffff;
  background: var(--color-brand-primary);
  box-shadow: var(--shadow-cta);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  cursor: pointer;
  transition: filter 160ms ease, transform 160ms ease;
}

button:hover:not(:disabled) {
  filter: brightness(1.1);
}

button:focus-visible {
  outline: 3px solid var(--color-focus-ring);
  outline-offset: 3px;
}

button:active:not(:disabled) {
  transform: translateY(1px);
}

button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.privacy-note,
.form-message {
  margin: 12px 8px 0;
  font-size: 13px;
  line-height: 1.4;
}

.privacy-note {
  color: var(--color-text-muted);
}

.form-message {
  min-height: 18px;
  font-weight: 700;
}

.form-message.is-success {
  color: #c5f7ce;
}

.form-message.is-error {
  color: #ffb6a2;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.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-height: 800px) and (min-width: 721px) {
  .brand {
    width: min(700px, 72vw);
  }

  .subtitle {
    font-size: 18px;
  }

  .countdown {
    margin-top: 16px;
  }

  .time-unit strong {
    font-size: 40px;
  }

  h1 {
    margin-top: 20px;
    font-size: 34px;
  }

  .notify {
    margin-top: 18px;
  }
}

@media (max-width: 720px) {
  .coming-soon-shell {
    overflow-y: auto;
    background-position: center top;
  }

  .content-panel {
    width: min(100% - 32px, 560px);
    min-height: 100dvh;
    justify-content: flex-start;
    padding: 20px 0 36px;
  }

  .brand {
    width: min(100%, 540px);
  }

  .subtitle {
    max-width: 520px;
    font-size: clamp(16px, 4.7vw, 19px);
  }

  .countdown {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 28px;
  }

  .time-unit:not(:last-child)::after {
    height: 42px;
  }

  .time-unit strong {
    font-size: clamp(30px, 9vw, 42px);
  }

  .time-unit span {
    margin-top: 8px;
    font-size: 10px;
    letter-spacing: 0.04em;
  }

  h1 {
    margin-top: 30px;
    font-size: clamp(20px, 5.8vw, 30px);
    letter-spacing: -0.035em;
  }

  .notify {
    margin-top: 26px;
  }

  .notify-heading {
    gap: 12px;
    margin-bottom: 16px;
  }

  .notify-heading h2 {
    font-size: 11px;
    letter-spacing: 0.06em;
  }

  form {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  input[type="email"],
  button {
    width: 100%;
    height: 58px;
    border: 1px solid var(--color-border-strong);
    border-radius: 4px;
  }

  button {
    min-width: 0;
    border-color: var(--color-brand-primary);
  }

  .privacy-note,
  .form-message {
    margin-inline: 2px;
  }
}

@media (max-width: 380px) {
  h1 {
    font-size: 19px;
  }

  .notify-heading {
    grid-template-columns: 24px auto 24px;
  }
}

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