:root {
  --ink: #242720;
  --muted: #5c6257;
  --paper: #fbfaf4;
  --soft-gold: #b68a3d;
  --terracotta: #914b37;
  --deep-green: #2f4538;
  --ivory: #fffdf8;
  --line: rgba(36, 39, 32, 0.16);
  --shadow: rgba(36, 39, 32, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--paper);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  color-scheme: light;
}

body {
  min-height: 100vh;
  margin: 0;
  background: var(--paper);
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
}

.skip-link {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  background: var(--ink);
  color: var(--ivory);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  padding: 10px 14px;
  transform: translateY(-160%);
}

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

main {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

main:focus {
  outline: none;
}

.hero {
  min-height: 74vh;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 72px 0 64px;
  text-align: center;
}

.hero__logo {
  display: block;
  width: 96px;
  height: 96px;
  margin: 0 auto 28px;
  object-fit: contain;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--terracotta);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.4;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 860px;
  margin-bottom: 24px;
  font-size: 7rem;
  font-weight: 400;
  line-height: 0.92;
}

h2 {
  margin-bottom: 18px;
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1.04;
}

p {
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.8;
}

.hero__copy {
  max-width: 600px;
  margin-bottom: 0;
  font-size: 1.18rem;
  line-height: 1.75;
}

.positioning,
.waitlist,
.launch-note {
  border-top: 1px solid var(--line);
}

.positioning {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
  gap: clamp(32px, 6vw, 88px);
  padding: 76px 0;
}

.positioning h2,
.waitlist h2,
.launch-note h2 {
  max-width: 640px;
}

.positioning p {
  max-width: 620px;
  margin-bottom: 0;
  font-size: 1.1rem;
  line-height: 1.85;
}

.waitlist {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.95fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: start;
  padding: 76px 0;
}

.waitlist__form {
  display: grid;
  gap: 18px;
  width: 100%;
  padding: 32px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.82);
  box-shadow: 0 18px 50px var(--shadow);
}

.form-field {
  display: grid;
  gap: 9px;
}

label {
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
}

input {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--ivory);
  color: var(--ink);
  font: 1rem Arial, Helvetica, sans-serif;
  padding: 0 16px;
}

input:focus {
  border-color: rgba(47, 69, 56, 0.5);
  outline: 2px solid rgba(182, 138, 61, 0.45);
  outline-offset: 3px;
}

input:not(:placeholder-shown):invalid {
  border-color: var(--terracotta);
}

button {
  min-height: 54px;
  border: 1px solid var(--deep-green);
  border-radius: 0;
  background: var(--deep-green);
  color: var(--ivory);
  cursor: pointer;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0;
  padding: 0 20px;
  transition: background 160ms ease, color 160ms ease;
}

button:hover,
button:focus-visible {
  background: var(--terracotta);
  color: var(--ivory);
}

.launch-note {
  max-width: 760px;
  padding: 76px 0 92px;
}

.launch-note p:last-child {
  margin-bottom: 0;
}

.return-link {
  margin: 24px 0 0;
}

footer {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  border-top: 1px solid var(--line);
  padding: 28px 0 36px;
}

footer p {
  margin: 0;
  font-size: 0.95rem;
}

a {
  color: var(--ink);
  text-decoration-color: var(--soft-gold);
  text-underline-offset: 4px;
}

a:hover,
a:focus-visible {
  color: var(--terracotta);
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid rgba(182, 138, 61, 0.72);
  outline-offset: 4px;
}

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

@media (max-width: 980px) {
  h1 {
    font-size: 5.5rem;
  }

  h2 {
    font-size: 2.75rem;
  }
}

@media (max-width: 760px) {
  main,
  footer {
    width: min(100% - 32px, 1120px);
  }

  .hero {
    min-height: 70vh;
    padding: 54px 0 46px;
  }

  .hero__logo {
    width: 72px;
    height: 72px;
    margin-bottom: 24px;
  }

  h1 {
    max-width: 8ch;
    font-size: 3.7rem;
    line-height: 0.96;
  }

  h2 {
    font-size: 2.25rem;
    line-height: 1.08;
  }

  .hero__copy {
    font-size: 1.05rem;
    line-height: 1.7;
  }

  .positioning,
  .waitlist {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 56px 0;
  }

  .waitlist__form {
    padding: 24px;
  }

  .launch-note {
    padding: 56px 0 72px;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 3.25rem;
  }

  h2 {
    font-size: 2rem;
  }

  .waitlist__form {
    padding: 20px;
  }
}
