*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --deep-factory-navy: #1b2d48;
  --stainless-steel: #f2f4f7;
  --corten-steel-orange: #c25e23;
  --machine-grey: #2c2e31;
}

html {
  height: 100%;
}

body {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  background-color: var(--deep-factory-navy);
  color: var(--stainless-steel);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.page {
  flex: 1;
  display: flex;
  flex-direction: column;
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  padding: 48px 32px 32px;
}

.brand {
  align-self: flex-start;
}

.logo {
  display: block;
  width: min(300px, 75vw);
  height: auto;
}

.subline {
  margin-top: 16px;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--stainless-steel);
  opacity: 0.85;
}

.hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 0;
}

.hook {
  font-family: "Archivo Black", "Inter", sans-serif;
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-align: center;
  text-transform: uppercase;
  max-width: 18ch;
}

.hook-dot {
  color: var(--corten-steel-orange);
  font-size: 1.6em;
  line-height: 0;
  vertical-align: baseline;
}

.contact {
  text-align: center;
  padding-bottom: 32px;
}

.waitlist {
  max-width: 420px;
  width: 100%;
  margin: 0 auto 24px;
  text-align: center;
}

.waitlist-lead {
  margin-bottom: 16px;
  font-size: 0.9375rem;
  color: rgba(242, 244, 247, 0.75);
}

.waitlist-form {
  display: flex;
  gap: 8px;
}

.waitlist-input {
  flex: 1;
  min-width: 0;
  padding: 10px 12px;
  border: 1px solid rgba(242, 244, 247, 0.25);
  border-radius: 2px;
  background-color: rgba(242, 244, 247, 0.06);
  color: var(--stainless-steel);
  font: inherit;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}

.waitlist-input::placeholder {
  color: rgba(242, 244, 247, 0.4);
}

.waitlist-input:focus-visible {
  outline: none;
  border-color: var(--corten-steel-orange);
  background-color: rgba(242, 244, 247, 0.1);
}

.waitlist-button {
  flex-shrink: 0;
  padding: 10px 16px;
  border: none;
  border-radius: 4px;
  background-color: var(--corten-steel-orange);
  color: var(--stainless-steel);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: filter 0.15s ease, transform 0.1s ease;
}

.waitlist-button:hover:not(:disabled) {
  filter: brightness(0.9);
}

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

.waitlist-button:disabled {
  background-color: rgba(44, 46, 49, 0.6);
  color: rgba(242, 244, 247, 0.45);
  cursor: not-allowed;
}

.waitlist-button:focus-visible {
  outline: 2px solid var(--stainless-steel);
  outline-offset: 2px;
}

.waitlist-consent {
  margin-top: 10px;
  font-size: 0.6875rem;
  line-height: 1.5;
  color: rgba(242, 244, 247, 0.4);
}

.waitlist-consent a {
  color: rgba(242, 244, 247, 0.55);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.waitlist-consent a:hover,
.waitlist-consent a:focus-visible {
  color: var(--corten-steel-orange);
  outline: none;
}

.waitlist-success {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--stainless-steel);
}

.waitlist-iframe {
  display: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.contact-link {
  color: var(--stainless-steel);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.contact-link:hover,
.contact-link:focus-visible {
  color: var(--corten-steel-orange);
  border-bottom-color: var(--corten-steel-orange);
  outline: none;
}

.site-footer {
  padding: 16px 32px 24px;
  border-top: 1px solid rgba(242, 244, 247, 0.12);
}

.footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: 960px;
  margin: 0 auto;
  font-size: 0.6875rem;
}

.footer-nav a {
  color: rgba(242, 244, 247, 0.4);
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: rgba(242, 244, 247, 0.7);
  outline: none;
}

.footer-nav a[aria-current="page"] {
  color: rgba(242, 244, 247, 0.55);
}

.footer-sep {
  color: rgba(242, 244, 247, 0.25);
}

.legal-page {
  background-color: var(--deep-factory-navy);
}

.legal {
  flex: 1;
  max-width: 640px;
  width: 100%;
  margin: 0 auto;
  padding: 48px 32px 32px;
}

.legal-back {
  display: inline-block;
  margin-bottom: 32px;
  font-size: 0.8125rem;
  color: rgba(242, 244, 247, 0.5);
  text-decoration: none;
  transition: color 0.15s ease;
}

.legal-back:hover,
.legal-back:focus-visible {
  color: var(--corten-steel-orange);
  outline: none;
}

.legal h1 {
  margin-bottom: 24px;
  font-family: "Archivo Black", "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.legal h2 {
  margin: 24px 0 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(242, 244, 247, 0.85);
}

.legal p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(242, 244, 247, 0.65);
}

.legal a {
  color: var(--stainless-steel);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.15s ease;
}

.legal a:hover,
.legal a:focus-visible {
  color: var(--corten-steel-orange);
  outline: none;
}

.legal-meta {
  margin-top: 32px;
  font-size: 0.75rem;
  color: rgba(242, 244, 247, 0.4);
}

@media (max-width: 480px) {
  .page {
    padding: 32px 24px 24px;
  }

  .hero {
    padding: 32px 0;
  }

  .waitlist-form {
    flex-direction: column;
  }

  .waitlist-button {
    width: 100%;
  }

  .site-footer {
    padding: 12px 24px 20px;
  }

  .legal {
    padding: 32px 24px 24px;
  }
}
