@font-face {
  font-family: 'Newsreader';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url(/fonts/newsreader-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Newsreader';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url(/fonts/newsreader-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url(/fonts/dm-sans-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url(/fonts/dm-sans-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url(/fonts/open-sans-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url(/fonts/open-sans-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --cream: #F5F3E9;
  --ink: #111111;
  --orange: #F7931A;
  --navy: #1A2D44;
  --muted: #4A5560;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--cream);
  color: var(--ink);
}

body {
  min-height: 100vh;
  font-family: 'DM Sans', 'Open Sans', system-ui, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

.chrome {
  height: 3px;
  background: var(--navy);
}

.page {
  max-width: 760px;
  margin: 0 auto;
  padding: 72px 48px 96px;
}

.wordmark {
  margin: 0 0 72px;
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.01em;
  color: var(--ink);
}

.wordmark .digest {
  color: var(--orange);
}

h1 {
  margin: 0 0 18px;
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 500;
  font-size: 64px;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.kicker {
  margin: 0 0 56px;
  font-family: 'DM Sans', 'Open Sans', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: none;
  color: var(--navy);
}

form {
  margin: 0 0 40px;
}

label {
  display: block;
  margin: 0 0 12px;
  font-size: 16px;
  color: var(--ink);
}

.row {
  display: flex;
  align-items: stretch;
  gap: 10px;
  max-width: 460px;
}

input[type="email"] {
  flex: 1;
  min-width: 0;
  height: 48px;
  padding: 0 14px;
  border: 1px solid #C9C2B4;
  background: #FFFcf7;
  color: var(--ink);
  font-family: inherit;
  font-size: 16px;
  border-radius: 0;
}

input[type="email"]::placeholder {
  color: #8A8478;
}

input[type="email"]:focus {
  outline: 2px solid var(--navy);
  outline-offset: 1px;
}

button {
  height: 48px;
  padding: 0 22px;
  border: 0;
  background: var(--orange);
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  border-radius: 0;
}

button:hover { filter: brightness(0.96); }
button:disabled { opacity: 0.7; cursor: wait; }

.status {
  margin: 12px 0 0;
  font-size: 16px;
  color: var(--ink);
}

.status[hidden],
.row[hidden] { display: none; }

.follow {
  display: flex;
  gap: 28px;
  margin: 0;
  padding-top: 8px;
  font-size: 14px;
  color: var(--muted);
}

.follow span {
  cursor: default;
}

@media (max-width: 720px) {
  .page { padding: 40px 24px 72px; }
  h1 { font-size: 40px; }
  .wordmark { margin-bottom: 48px; }
  .row { flex-direction: column; }
  button { width: 100%; }
}

.follow a {
  color: inherit;
  text-decoration: none;
}
.follow a:hover {
  color: var(--orange);
}
