:root {
  --cream: #F2EEE6;
  --cream-logo: #F9F5EB;
  --ink: #111111;
  --orange: #F05A24;
  --muted: #6C6861;
  --line: rgba(17, 17, 17, 0.18);
  --pad: clamp(22px, 4vw, 64px);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--cream);
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 0;
  min-height: 100vh;
  overflow-x: clip;
  background: var(--cream);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input {
  font: inherit;
}

.page {
  width: min(100%, 1600px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 0 var(--pad);
}

.header {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: block;
  width: clamp(174px, 17vw, 250px);
  min-width: 0;
}

.brand img {
  width: 100%;
  height: auto;
}

.header-note,
.kicker,
.section-label,
.brand-block-meta,
.footer {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  line-height: 1.2;
}

.header-note,
.kicker,
.section-label,
.footer {
  margin: 0;
}

.header-note {
  white-space: nowrap;
  color: var(--muted);
}

.main {
  min-width: 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.75fr);
  gap: clamp(42px, 7vw, 110px);
  align-items: stretch;
  padding: clamp(64px, 9vw, 132px) 0 clamp(72px, 9vw, 140px);
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.kicker {
  color: var(--orange);
  margin-bottom: clamp(28px, 4vw, 56px);
}

h1,
h2,
p {
  max-width: 100%;
}

h1 {
  margin: 0;
  max-width: 950px;
  font-size: clamp(58px, 8.4vw, 146px);
  line-height: 0.88;
  letter-spacing: -0.065em;
  font-weight: 700;
  text-wrap: balance;
}

.intro {
  width: min(100%, 620px);
  margin: clamp(36px, 5vw, 64px) 0 0;
  font-size: clamp(18px, 1.55vw, 25px);
  line-height: 1.35;
  letter-spacing: -0.025em;
}

.brand-block {
  min-width: 0;
  min-height: 470px;
  background: var(--ink);
  padding: clamp(24px, 3vw, 42px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.brand-block > img {
  width: min(100%, 270px);
  height: auto;
  margin: auto;
}

.brand-block-meta {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--cream-logo);
}

.signup {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr);
  gap: clamp(40px, 8vw, 140px);
  padding: clamp(62px, 7vw, 108px) 0;
  border-bottom: 1px solid var(--line);
}

.section-label {
  margin-bottom: 20px;
  color: var(--muted);
}

h2 {
  margin: 0;
  max-width: 680px;
  font-size: clamp(30px, 4vw, 62px);
  line-height: 1;
  letter-spacing: -0.045em;
  font-weight: 600;
  text-wrap: balance;
}

.form {
  align-self: end;
  min-width: 0;
}

.form label {
  display: block;
  margin-bottom: 13px;
  font-size: 13px;
  font-weight: 700;
}

.form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  min-width: 0;
  border-bottom: 1px solid var(--ink);
}

.form input {
  min-width: 0;
  width: 100%;
  border: 0;
  border-radius: 0;
  outline: 0;
  padding: 15px 0 15px;
  background: transparent;
  color: var(--ink);
  font-size: 18px;
}

.form input::placeholder {
  color: #969188;
}

.form button {
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  padding: 14px 0 14px 24px;
  font-weight: 700;
  cursor: pointer;
}

.form button:hover,
.form button:focus-visible {
  color: var(--orange);
}

.form-note {
  min-height: 18px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.form-note.success {
  color: var(--ink);
}

.footer {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
}

.footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .brand-block {
    min-height: 360px;
  }

  .brand-block > img {
    width: min(70%, 250px);
  }

  .signup {
    grid-template-columns: 1fr;
  }

  .form {
    max-width: 680px;
  }
}

@media (max-width: 600px) {
  :root {
    --pad: 20px;
  }

  .header {
    min-height: 88px;
  }

  .brand {
    width: 175px;
  }

  .header-note {
    font-size: 9px;
  }

  .hero {
    gap: 42px;
    padding: 48px 0 62px;
  }

  .kicker {
    margin-bottom: 30px;
  }

  h1 {
    font-size: clamp(52px, 17vw, 82px);
    line-height: 0.91;
  }

  .intro {
    margin-top: 32px;
    font-size: 18px;
  }

  .brand-block {
    min-height: 300px;
    padding: 22px;
  }

  .brand-block-meta {
    font-size: 9px;
  }

  .signup {
    padding: 56px 0 64px;
    gap: 46px;
  }

  .form-row {
    grid-template-columns: 1fr;
    border-bottom: 0;
  }

  .form input {
    border-bottom: 1px solid var(--ink);
  }

  .form button {
    width: 100%;
    margin-top: 14px;
    padding: 16px 18px;
    background: var(--ink);
    color: var(--cream);
  }

  .form button:hover,
  .form button:focus-visible {
    background: var(--orange);
    color: var(--cream);
  }

  .footer {
    min-height: 124px;
    padding: 28px 0;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
  }
}

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