:root {
  --page: #fffdf8;
  --paper: #fffefb;
  --ink: #11100e;
  --muted: #625f58;
  --accent: #f04419;
  --blue: #075eaf;
  --rule: #191713;
  --serif: Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --mono: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--page);
  color: var(--ink);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

.landing {
  width: min(720px, 100%);
  min-height: 100svh;
  margin: 0 auto;
  padding: 32px clamp(22px, 4vw, 64px) 0;
}

.pitch {
  position: relative;
  z-index: 2;
}

.site-identity {
  display: flex;
  align-items: center;
  gap: 13px;
}

.brand-lockup {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.site-logo {
  display: block;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
}

.site-identity .wordmark {
  flex: 0 0 auto;
  font-size: 1.8rem;
  white-space: nowrap;
}

.site-tagline {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  line-height: 1.2;
  white-space: nowrap;
}

.wordmark,
.email-brand {
  display: inline-block;
  color: var(--accent);
  font-family: var(--mono);
  font-size: clamp(1.75rem, 5vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 1;
  text-decoration: none;
  transform: rotate(-1deg);
}

.wordmark::after,
.email-brand::after {
  display: block;
  width: 100%;
  height: 3px;
  margin-top: 7px;
  background: currentColor;
  content: "";
  transform: rotate(-1deg);
}

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

h1 {
  max-width: 690px;
  margin-bottom: 15px;
  font-family: var(--serif);
  font-size: clamp(2.35rem, 6vw, 5.75rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.98;
  text-wrap: balance;
}

.signup {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  width: min(650px, 100%);
  margin-top: clamp(20px, 3vh, 30px);
}

.signup input[type="email"] {
  min-width: 0;
  height: 58px;
  padding: 0 17px;
  border: 2px solid var(--ink);
  border-right: 0;
  border-radius: 0;
  background: rgb(255 255 255 / 72%);
  color: var(--ink);
  outline: none;
}

.signup input[type="email"]:focus {
  box-shadow: inset 0 0 0 3px rgb(7 94 175 / 22%);
}

.signup button {
  height: 58px;
  padding: 0 22px;
  border: 2px solid var(--ink);
  border-radius: 0;
  background: var(--accent);
  color: white;
  cursor: pointer;
  font-weight: 780;
}

.signup button:hover {
  background: #d93912;
}

.signup button:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

.signup button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.form-note {
  grid-column: 1 / -1;
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.form-note[data-state="error"] {
  color: #a22a0d;
}

.form-note[data-state="success"] {
  color: #087044;
  font-weight: 700;
}

.social-proof {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  gap: 9px;
  margin-top: 9px;
}

.subscriber-avatars {
  display: flex;
  padding-left: 1px;
}

.subscriber-avatars span {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border: 2px solid var(--page);
  border-radius: 50%;
  background: #ffd4c8;
  color: #7c230c;
  font-family: var(--mono);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.subscriber-avatars span + span {
  margin-left: -7px;
}

.subscriber-avatars span:nth-child(2) {
  background: #d8e9f8;
  color: #174e78;
}

.subscriber-avatars span:nth-child(3) {
  background: #f1dfac;
  color: #69500d;
}

.subscriber-avatars span:nth-child(4) {
  background: #d9ead9;
  color: #285e35;
}

.social-proof p {
  margin: 0;
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.2;
}

.how-it-works {
  position: relative;
  width: min(650px, 100%);
  margin-top: 18px;
  padding: 21px 23px 18px;
  border: 1.5px solid var(--ink);
  background: var(--paper);
  box-shadow: 6px 6px 0 #e9e1d5;
  transform: rotate(-0.25deg);
}

.how-it-works h2 {
  margin-bottom: 12px;
  color: var(--accent);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 3.5vw, 2.05rem);
  letter-spacing: -0.035em;
  line-height: 1;
}

.how-it-works h2::after {
  display: block;
  width: 74px;
  height: 2px;
  margin-top: 6px;
  background: currentColor;
  content: "";
}

.how-it-works > p {
  margin-bottom: 9px;
  color: #322f2a;
  font-size: 0.82rem;
  line-height: 1.42;
}

.how-it-works .signoff {
  margin: 0 0 -2px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 0.94rem;
  line-height: 1.2;
}

.card-signoff {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-top: 13px;
  padding-top: 10px;
  border-top: 1px solid rgb(25 23 19 / 28%);
}

.signature-block {
  min-width: 0;
}

.signature {
  display: block;
  width: 104px;
  height: 46px;
  margin: -4px 0 -3px;
  object-fit: contain;
  object-position: left center;
}

.author {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  padding-bottom: 1px;
}

.author-photo {
  display: block;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  overflow: hidden;
  border: 2px solid var(--accent);
  border-radius: 50%;
}

.author-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translate(0, 2px) scale(1.2);
  transform-origin: 56% 35%;
}

.author > span:last-child {
  font-family: var(--mono);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

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

.preview-wrap {
  width: min(740px, 100%);
  margin: clamp(48px, 9vh, 90px) auto 0;
}

.email-preview {
  padding: clamp(32px, 5vw, 48px) clamp(25px, 7vw, 68px) 30px;
  border: 1.5px solid var(--ink);
  background: var(--paper);
}

.email-head {
  padding-bottom: 20px;
  border-bottom: 2px solid var(--rule);
}

.email-brand {
  margin-bottom: 25px;
  font-size: clamp(1.65rem, 5vw, 2.35rem);
  transform: none;
}

.email-brand::after {
  transform: none;
}

.email-date,
.meta {
  font-family: var(--mono);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.055em;
}

.email-date {
  margin-bottom: 7px;
  color: var(--accent);
}

.picks {
  padding: 0;
  margin: 0;
  list-style: none;
}

.pick {
  padding: 20px 0 21px;
  border-bottom: 1px solid var(--rule);
}

.pick h2,
.pick h3 {
  margin-bottom: 9px;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  letter-spacing: -0.025em;
  line-height: 1.04;
}

.meta {
  margin-bottom: 8px;
  line-height: 1.45;
}

.note {
  max-width: 60ch;
  margin-bottom: 10px;
  color: #322f2a;
  font-size: 0.84rem;
  line-height: 1.45;
}

.pick-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 40 / 21;
  margin: 13px 0 11px;
  border: 1px solid rgb(25 23 19 / 18%);
  object-fit: cover;
  object-position: center;
}

.pick-image--left {
  object-position: left center;
}

.pick-image--top {
  object-position: center top;
}

.pick a {
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 800;
  text-underline-offset: 3px;
}

.email-foot {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 26px;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-foot {
  display: flex;
  justify-content: space-between;
  width: min(720px, 100%);
  margin: 58px auto 0;
  padding: 22px clamp(22px, 4vw, 64px) 32px;
  border-top: 1px solid var(--ink);
  color: var(--muted);
  font-size: 0.74rem;
}

.site-foot p {
  margin: 0;
}

.site-foot a,
.archive-strip a,
.archive-layout a,
.issue-layout a {
  text-underline-offset: 3px;
}

.site-foot a {
  color: var(--blue);
  font-weight: 750;
}

.archive-strip {
  width: min(632px, calc(100% - 44px));
  margin: 58px auto 0;
  padding: 30px 0 4px;
  border-top: 2px solid var(--rule);
}

.archive-strip-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.section-label {
  margin-bottom: 7px;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 0.69rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.archive-strip h2,
.archive-hero h1 {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.archive-strip-head > a,
.back-link {
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 800;
}

.issue-link-list {
  display: grid;
  grid-template-columns: 1fr;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--rule);
  list-style: none;
}

.issue-link-list a {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 12px;
  height: 100%;
  padding: 14px 16px 14px 0;
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
}

.issue-link-list li:nth-child(even) a {
  padding-right: 0;
  padding-left: 0;
}

.issue-link-list time {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.issue-link-list span {
  font-family: var(--serif);
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.22;
}

.issue-link-list a:hover span,
.archive-card a:hover h2 {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.issue-gate {
  position: relative;
}

.issue-link-list-gated {
  border-top: 0;
}

.issue-gate.is-locked {
  max-height: 280px;
  overflow: hidden;
}

.issue-gate.is-locked .issue-link-list-gated {
  filter: blur(5px);
  opacity: 0.48;
  pointer-events: none;
  user-select: none;
}

.issue-gate-scrim {
  position: absolute;
  inset: 0;
  display: grid;
  padding: 28px 20px;
  place-items: center;
  background: linear-gradient(
    to bottom,
    rgb(255 253 248 / 18%),
    rgb(255 253 248 / 90%) 23%,
    rgb(255 253 248 / 98%)
  );
}

.issue-gate-card {
  width: min(440px, 100%);
  padding: 22px;
  border: 1.5px solid var(--rule);
  background: var(--paper);
  box-shadow: 5px 5px 0 #e9e1d5;
}

.issue-gate-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.65rem;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.issue-gate-card > p:not(.section-label) {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.4;
}

.issue-gate-form {
  width: 100%;
  margin-top: 16px;
}

.issue-gate.is-unlocked .issue-gate-scrim {
  display: none;
}

.archive-body {
  min-height: 100svh;
}

.issue-layout,
.archive-layout {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 32px clamp(22px, 4vw, 64px) 0;
}

.issue-layout {
  width: min(860px, 100%);
}

.issue-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.issue-topbar .wordmark,
.archive-hero .wordmark {
  font-size: 2rem;
}

.issue-page {
  width: min(740px, 100%);
  margin: 0 auto;
}

.issue-page .email-head {
  padding-bottom: 24px;
}

.issue-title {
  max-width: 620px;
  margin: 10px 0 14px;
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  line-height: 0.98;
}

.issue-summary {
  max-width: 62ch;
  margin-bottom: 0;
  color: #322f2a;
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.45;
}

.issue-page .pick h2 {
  margin-bottom: 9px;
}

.issue-pagination {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: min(740px, 100%);
  margin: 18px auto 0;
}

.issue-pagination a,
.issue-pagination span {
  padding: 13px 15px;
  border: 1px solid var(--rule);
  background: var(--paper);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.35;
  text-decoration: none;
}

.issue-pagination a:last-child,
.issue-pagination span:last-child {
  text-align: right;
}

.issue-pagination .disabled {
  color: var(--muted);
  opacity: 0.7;
}

.issue-cta {
  width: min(740px, 100%);
  margin: 18px auto 0;
  padding: 20px 22px;
  border: 1px solid var(--rule);
  background: #f6efe4;
}

.issue-cta p {
  margin: 0;
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.4;
}

.issue-cta a {
  color: var(--blue);
  font-weight: 800;
}

.privacy-page {
  width: min(740px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 46px) clamp(24px, 6vw, 56px) 42px;
  border: 1px solid var(--rule);
  background: var(--paper);
}

.privacy-page h1 {
  margin-bottom: 9px;
  font-size: clamp(2.5rem, 7vw, 4.5rem);
}

.privacy-updated {
  margin-bottom: 32px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 750;
  text-transform: uppercase;
}

.privacy-page section + section {
  margin-top: 25px;
}

.privacy-page h2 {
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 1.35rem;
  letter-spacing: -0.025em;
}

.privacy-page section p {
  max-width: 64ch;
  margin-bottom: 0;
  color: #322f2a;
  font-size: 0.9rem;
  line-height: 1.55;
}

.archive-hero {
  max-width: 760px;
  padding: 16px 0 38px;
}

.archive-hero .wordmark {
  margin-bottom: 0;
}

.archive-hero .brand-lockup {
  margin-bottom: 52px;
}

.archive-hero h1 {
  margin-bottom: 17px;
  font-size: clamp(3rem, 9vw, 6.6rem);
}

.archive-hero > p:last-child {
  max-width: 58ch;
  margin-bottom: 0;
  color: #322f2a;
  font-family: var(--serif);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.45;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 0;
  margin: 0;
  border-top: 2px solid var(--rule);
  list-style: none;
}

.archive-card {
  border-bottom: 1px solid var(--rule);
}

.archive-card:nth-child(odd) {
  border-right: 1px solid var(--rule);
}

.archive-card a {
  display: block;
  height: 100%;
  padding: 25px 28px 27px 0;
  text-decoration: none;
}

.archive-card:nth-child(even) a {
  padding-right: 0;
  padding-left: 28px;
}

.archive-card time {
  display: block;
  margin-bottom: 12px;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.055em;
}

.archive-card h2 {
  margin-bottom: 9px;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 3vw, 2rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.archive-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.station-strip {
  width: min(632px, calc(100% - 44px));
  margin: 54px auto 0;
  padding-top: 30px;
  border-top: 2px solid var(--rule);
}

.station-strip h2 {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.station-strip-intro {
  max-width: 54ch;
  margin-bottom: 18px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 0.98rem;
  line-height: 1.45;
}

.station-strip-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--rule);
}

.station-strip-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 14px 13px 0;
  border-bottom: 1px solid var(--rule);
  font-family: var(--serif);
  font-size: 0.96rem;
  font-weight: 700;
  text-decoration: none;
}

.station-strip-links a span {
  flex: 0 0 auto;
  margin-left: auto;
  line-height: 1;
}

.station-strip-links a:nth-child(even) {
  padding-right: 0;
  padding-left: 14px;
  border-left: 1px solid var(--rule);
}

.station-strip-links a:hover,
.station-neighbours a:hover {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.station-layout {
  width: min(860px, 100%);
  min-height: 100svh;
  margin: 0 auto;
  padding: 32px clamp(22px, 4vw, 64px) 0;
}

.station-page {
  width: min(740px, 100%);
  margin: 0 auto;
}

.station-hero {
  padding: clamp(30px, 5vw, 48px) clamp(25px, 7vw, 62px) 32px;
  border: 1.5px solid var(--rule);
  background: var(--paper);
}

.station-hero h1 {
  max-width: 690px;
  margin-bottom: 14px;
  font-size: clamp(2.35rem, 6vw, 4.4rem);
  line-height: 0.94;
}

.station-directory-hero h1 {
  max-width: 690px;
  margin-bottom: 14px;
  font-size: clamp(2.8rem, 8vw, 5.8rem);
  line-height: 0.94;
}

.station-directory-hero > p:last-child {
  max-width: 55ch;
  margin-bottom: 16px;
  color: #322f2a;
  font-family: var(--serif);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.45;
}

.timing-lines {
  border-right: 1.5px solid var(--rule);
  border-left: 1.5px solid var(--rule);
}

.timing-line {
  padding: 27px clamp(25px, 7vw, 62px) 31px;
  border-bottom: 1.5px solid var(--rule);
  background: var(--paper);
}

.timing-line h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 3.5vw, 2rem);
  letter-spacing: -0.025em;
}

.line-dot {
  display: inline-block;
  flex: 0 0 12px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--ink);
}

.line-dot.nsl { background: #d42e12; }
.line-dot.ewl { background: #009645; }
.line-dot.nel { background: #9900aa; }
.line-dot.ccl { background: #fa9e0d; }
.line-dot.dtl { background: #0059a9; }
.line-dot.tel { background: #9d5b25; }
.line-dot.lrt { background: #748477; }

.timing-table {
  width: 100%;
  border-collapse: collapse;
}

.timing-table th,
.timing-table td {
  padding: 11px 0;
  border-bottom: 1px solid rgb(25 23 19 / 25%);
  text-align: left;
}

.timing-table th {
  padding-top: 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.timing-table th:last-child,
.timing-table td:last-child {
  width: 108px;
  text-align: right;
}

.timing-table tbody tr:last-child td {
  border-bottom: 0;
}

.timing-table td:first-child {
  padding-right: 18px;
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
}

.timing-table td:last-child {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 0.95rem;
  font-weight: 850;
}

.ranking-note {
  margin-top: 18px;
  padding: 20px 22px;
  border: 1px solid var(--rule);
  background: #f6efe4;
}

.ranking-note h2,
.station-neighbours h2 {
  margin-bottom: 7px;
  font-family: var(--serif);
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.ranking-note p {
  margin: 0;
  color: #322f2a;
  font-size: 0.8rem;
  line-height: 1.55;
}

.ranking-note a {
  color: var(--blue);
  font-weight: 800;
  text-underline-offset: 3px;
}

.station-neighbours {
  margin-top: 34px;
}

.station-neighbours > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.station-neighbours a {
  padding: 8px 10px;
  border: 1px solid var(--rule);
  background: var(--paper);
  font-size: 0.76rem;
  font-weight: 800;
  text-decoration: none;
}

.station-directory-layout {
  width: min(1040px, 100%);
}

.station-directory-hero {
  max-width: 800px;
  padding: 20px 0 38px;
}

.station-directory-hero h1 {
  margin-bottom: 18px;
}

.station-directory-hero > p:last-child {
  margin-bottom: 0;
}

.station-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 0;
  margin: 0;
  border-top: 2px solid var(--rule);
  list-style: none;
}

.station-card {
  border-bottom: 1px solid var(--rule);
}

.station-card:nth-child(odd) {
  border-right: 1px solid var(--rule);
}

.station-card a {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  min-height: 92px;
  padding: 18px 24px 18px 0;
  text-decoration: none;
}

.station-card:nth-child(even) a {
  padding-right: 0;
  padding-left: 24px;
}

.station-card-rank {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 850;
}

.station-card-copy {
  display: grid;
  gap: 4px;
}

.station-card-copy strong {
  font-family: var(--serif);
  font-size: 1.25rem;
  letter-spacing: -0.025em;
}

.station-card-copy small {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.64rem;
  font-weight: 750;
  line-height: 1.35;
  text-transform: uppercase;
}

.station-card a:hover strong {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.requested-station {
  margin-top: 38px;
}

.requested-station > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  border: 1px solid var(--rule);
  background: var(--paper);
  text-decoration: none;
}

.requested-station strong {
  font-family: var(--serif);
  font-size: 1.2rem;
}

.requested-station span {
  color: var(--blue);
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 800;
}

.nearby-section {
  margin-top: 58px;
  padding-top: 30px;
  border-top: 2px solid var(--rule);
}

.nearby-section > header {
  max-width: 620px;
  margin-bottom: 20px;
}

.nearby-section h2 {
  margin-bottom: 11px;
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.35rem);
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.nearby-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 0;
  margin: 0;
  border-top: 1.5px solid var(--rule);
  list-style: none;
  counter-reset: nearby;
}

.nearby-list li {
  border-bottom: 1px solid var(--rule);
  counter-increment: nearby;
}

.nearby-list li:nth-child(odd) {
  border-right: 1px solid var(--rule);
}

.nearby-list a {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  align-items: start;
  gap: 11px;
  min-height: 104px;
  padding: 16px 18px 16px 0;
  text-decoration: none;
}

.nearby-list li:nth-child(even) a {
  padding-right: 0;
  padding-left: 18px;
}

.nearby-category {
  display: grid;
  gap: 5px;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 0.6rem;
  font-weight: 850;
  letter-spacing: 0.045em;
  line-height: 1.2;
  text-transform: uppercase;
}

.nearby-category::before {
  color: var(--ink);
  content: counter(nearby, decimal-leading-zero);
  font-size: 0.68rem;
}

.nearby-copy {
  display: grid;
  gap: 5px;
}

.nearby-copy strong {
  font-family: var(--serif);
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.nearby-copy small {
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.4;
}

.nearby-arrow {
  color: var(--blue);
  font-weight: 800;
}

.nearby-list a:hover strong {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (min-width: 900px) {
  .landing {
    padding-top: 40px;
  }

  .pitch {
    position: relative;
  }

  h1 {
    font-size: clamp(2.35rem, 4vw, 3.5rem);
  }

  .preview-wrap {
    margin-top: 24px;
  }
}

@media (max-width: 899px) {
  .landing {
    overflow: hidden;
  }

  .preview-wrap {
    min-height: 64svh;
  }
}

@media (max-width: 520px) {
  .landing {
    padding: 24px 18px 0;
  }

  .wordmark {
    font-size: 1.55rem;
  }

  .site-identity {
    gap: 9px;
  }

  .brand-lockup {
    gap: 6px;
  }

  .site-logo {
    width: 38px;
    height: 38px;
    border-radius: 8px;
  }

  .site-tagline {
    font-size: 0.61rem;
  }

  h1 {
    margin-bottom: 10px;
    font-size: clamp(1.78rem, 7.8vw, 2.12rem);
    line-height: 1.01;
  }

  .signup {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .signup input[type="email"],
  .signup button {
    height: 48px;
  }

  .signup input[type="email"] {
    padding: 0 11px;
    border-right: 0;
    font-size: 0.82rem;
  }

  .signup button {
    padding: 0 11px;
    font-size: 0.75rem;
  }

  .form-note {
    margin-top: 6px;
    font-size: 0.69rem;
  }

  .social-proof {
    gap: 8px;
    margin-top: 7px;
  }

  .subscriber-avatars span {
    width: 25px;
    height: 25px;
    font-size: 0.52rem;
  }

  .social-proof p {
    font-size: 0.69rem;
  }

  .how-it-works {
    margin-top: 14px;
    padding: 17px 18px 15px;
    box-shadow: 5px 5px 0 #e9e1d5;
  }

  .how-it-works h2 {
    margin-bottom: 10px;
    font-size: 1.5rem;
  }

  .how-it-works > p {
    margin-bottom: 7px;
    font-size: 0.75rem;
    line-height: 1.38;
  }

  .signature {
    width: 92px;
    height: 40px;
  }

  .card-signoff {
    gap: 10px;
    margin-top: 9px;
    padding-top: 8px;
  }

  .how-it-works .signoff {
    font-size: 0.84rem;
  }

  .author-photo {
    flex-basis: 40px;
    width: 40px;
    height: 40px;
  }

  .author > span:last-child {
    font-size: 0.73rem;
  }

  .preview-wrap {
    width: calc(100% + 8px);
    min-height: 0;
    margin: 15px -4px 0;
  }

  .email-preview {
    padding: 18px 22px 32px;
  }

  .email-head {
    padding-bottom: 12px;
  }

  .email-brand {
    margin-bottom: 8px;
  }

  .pick {
    padding: 23px 0 24px;
  }

  .pick h2,
  .pick h3 {
    font-size: 1.35rem;
  }

  .note {
    font-size: 0.86rem;
    line-height: 1.47;
  }

  .site-foot {
    display: block;
    margin-top: 42px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .site-foot p + p {
    margin-top: 5px;
  }

  .archive-strip {
    width: calc(100% - 36px);
    margin-top: 42px;
    padding-top: 24px;
  }

  .station-strip {
    width: calc(100% - 36px);
    margin-top: 42px;
    padding-top: 24px;
  }

  .station-strip-links {
    grid-template-columns: 1fr;
  }

  .station-strip-links a:nth-child(even) {
    padding-right: 14px;
    padding-left: 0;
    border-left: 0;
  }

  .archive-strip-head {
    align-items: start;
  }

  .archive-strip h2 {
    font-size: 2rem;
  }

  .issue-link-list,
  .archive-grid {
    grid-template-columns: 1fr;
  }

  .issue-link-list li:nth-child(odd),
  .archive-card:nth-child(odd) {
    border-right: 0;
  }

  .issue-link-list li:nth-child(even) a {
    padding-left: 0;
  }

  .issue-link-list a {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .issue-gate.is-locked {
    max-height: 268px;
  }

  .issue-gate-scrim {
    padding: 22px 10px;
  }

  .issue-gate-card {
    padding: 19px 16px;
  }

  .issue-gate-card h3 {
    font-size: 1.45rem;
  }

  .issue-gate-form button {
    padding-right: 9px;
    padding-left: 9px;
  }

  .issue-layout,
  .archive-layout,
  .station-layout {
    padding: 24px 18px 0;
  }

  .issue-topbar {
    margin-bottom: 24px;
  }

  .issue-topbar .wordmark,
  .archive-hero .wordmark {
    font-size: 1.55rem;
  }

  .issue-page,
  .privacy-page {
    padding: 22px 22px 28px;
  }

  .station-hero {
    padding: 25px 22px 24px;
  }

  .station-hero h1 {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  .station-directory-hero h1 {
    font-size: clamp(2.45rem, 13vw, 3.35rem);
  }

  .timing-line {
    padding: 23px 22px 25px;
  }

  .timing-line h2 {
    font-size: 1.45rem;
  }

  .timing-table th:last-child,
  .timing-table td:last-child {
    width: 82px;
  }

  .timing-table td:first-child {
    font-size: 0.94rem;
  }

  .timing-table td:last-child {
    font-size: 0.86rem;
  }

  .station-directory-hero {
    padding-bottom: 28px;
  }

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

  .station-card:nth-child(odd) {
    border-right: 0;
  }

  .station-card a,
  .station-card:nth-child(even) a {
    min-height: 82px;
    padding: 15px 0;
  }

  .requested-station > a {
    align-items: start;
    flex-direction: column;
    gap: 7px;
  }

  .nearby-section {
    margin-top: 44px;
    padding-top: 24px;
  }

  .nearby-section h2 {
    font-size: 2.2rem;
  }

  .nearby-list {
    grid-template-columns: 1fr;
  }

  .nearby-list li:nth-child(odd) {
    border-right: 0;
  }

  .nearby-list a,
  .nearby-list li:nth-child(even) a {
    grid-template-columns: 50px minmax(0, 1fr) auto;
    min-height: 94px;
    padding: 15px 0;
  }

  .issue-title {
    font-size: clamp(2.05rem, 10vw, 2.7rem);
  }

  .issue-summary {
    font-size: 0.95rem;
  }

  .issue-pagination {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .issue-pagination a:last-child,
  .issue-pagination span:last-child {
    text-align: left;
  }

  .archive-hero {
    padding-bottom: 28px;
  }

  .archive-hero .wordmark {
    margin-bottom: 42px;
  }

  .archive-card a,
  .archive-card:nth-child(even) a {
    padding: 21px 0 23px;
  }
}

@media (max-width: 360px) {
  .issue-gate.is-locked {
    max-height: 292px;
  }

  .issue-gate-scrim {
    padding: 14px 10px;
  }

  .issue-gate-card {
    padding: 15px 12px;
  }

  .issue-gate-card h3 {
    font-size: 1.35rem;
  }

  .issue-gate-card > p:not(.section-label) {
    font-size: 0.8rem;
  }

  .issue-gate-form {
    margin-top: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
