@import url("https://api.fontshare.com/v2/css?f[]=general-sans@400,500,600&display=swap");
@import url("https://cdn.jsdelivr.net/gh/sunn-us/SUIT/fonts/static/woff2/SUIT.css");

:root {
  --bg: #fbfbfb;
  --paper: #fbfbfb;
  --ink: #1a1a1a;
  --muted: #5a5a5a;
  --line: rgba(26, 26, 26, 0.18);
  --accent: #c4829a;
  --accent-dark: #c4829a;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "SUIT", sans-serif;
  font-weight: 300;
  font-size: 13px;
  line-height: 1.75;
}

button,
input {
  font: inherit;
}

.site-header {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 52px 0 36px;
  display: flex;
  justify-content: center;
}

.site-logo {
  font-family: "General Sans", sans-serif;
  font-size: 23px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
  text-decoration: none;
}

.page-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 72px;
}

.hero {
  min-height: 58vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 72px 0 96px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.hero__content {
  width: min(760px, 100%);
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent-dark);
  font-family: "General Sans", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__content h1,
.form-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.07em;
  white-space: nowrap;
}

.hero__lead {
  margin: 28px auto 36px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.95;
}

.scroll-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--bg);
  text-decoration: none;
  background: var(--ink);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.scroll-link:hover {
  background: var(--bg);
  color: var(--ink);
  transform: translateY(-1px);
}

.form-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: 56px;
  align-items: start;
  padding: 72px 0 40px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.form-copy p:last-child {
  color: var(--muted);
  margin: 24px 0 0;
  font-size: 13px;
  line-height: 1.85;
}

.preorder-form {
  display: grid;
  gap: 26px;
}

.form-field {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  align-items: end;
  gap: 24px;
}

.preorder-form label {
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  padding-bottom: 9px;
  word-break: keep-all;
}

.preorder-form label span {
  color: var(--accent-dark);
}

.preorder-form input {
  width: 100%;
  height: 40px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  padding: 0 0 9px;
  outline: none;
}

.preorder-form input::placeholder {
  color: rgba(26, 26, 26, 0.42);
}

.preorder-form input:focus {
  border-bottom-color: var(--ink);
}

.preorder-form button {
  height: 54px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--bg);
  cursor: pointer;
  margin-top: 18px;
  transition: background 0.2s ease, color 0.2s ease;
}

.preorder-form button:hover {
  background: var(--bg);
  color: var(--ink);
}

.preorder-form button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.form-message {
  min-height: 28px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

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

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

.footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 40px;
  color: var(--muted);
  font-family: "General Sans", sans-serif;
  font-size: 13px;
}

@media (max-width: 840px) {
  .hero__content h1 {
    font-size: clamp(28px, 8vw, 42px);
    letter-spacing: -0.06em;
  }

  .site-header {
    padding: 40px 0 28px;
  }

  .page-shell {
    width: min(100% - 32px, 1120px);
  }

  .hero {
    min-height: auto;
    padding: 56px 0 68px;
  }

  .hero__content h1,
  .form-copy h2 {
    font-size: 42px;
  }

  .hero__lead {
    font-size: 14px;
  }

  .form-section {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 56px 0 32px;
  }

  .form-field {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .preorder-form label {
    padding-bottom: 0;
  }
}
