:root {
  --ground: #fffdf8;
  --card: #ffffff;
  --ink: #1c1917;
  --muted: #6b655f;
  --quiet: #8a837c;
  --rule: #e8e4df;
  --rule-strong: #d8d1c9;
  --accent: #b84f20;
  --accent-soft: #fff0e5;
  --green: #166534;
  --blue: #1e40af;
  --pink: #9d174d;
  --amber: #92400e;
  --indigo: #3730a3;
  --shadow: 0 14px 40px rgba(53, 43, 33, .06);
  --radius: 1.15rem;
  --serif: Georgia, "Times New Roman", serif;
  --sans: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 5.5rem; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 92% 3%, rgba(232, 169, 102, .12), transparent 22rem),
    var(--ground);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-underline-offset: .18em; }
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid #2563eb;
  outline-offset: 3px;
  border-radius: .3rem;
}
img, svg { display: block; max-width: 100%; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: .7rem 1rem;
  background: var(--ink);
  color: white;
  border-radius: .6rem;
}
.skip-link:focus { top: 1rem; }

.site-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(216, 209, 201, .85);
  background: rgba(255, 253, 248, .92);
  backdrop-filter: blur(14px);
}
.nav-inner {
  width: min(100% - 2rem, 76rem);
  min-height: 4rem;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  min-height: 2.75rem;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
}
.sun-mark { width: 1.35rem; height: 1.35rem; flex: none; }
.nav-links { display: flex; align-items: center; gap: .25rem; }
.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: .55rem .8rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { background: #fff; color: var(--ink); }

.shell { width: min(100% - 2rem, 76rem); margin-inline: auto; }
main { padding-block: 2rem 4rem; }
.eyebrow {
  margin: 0 0 .45rem;
  color: var(--accent);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1, .display {
  margin-bottom: .65rem;
  font-family: var(--serif);
  font-size: clamp(2.45rem, 8vw, 5rem);
  line-height: .98;
  letter-spacing: -.045em;
}
h2 { font-family: var(--serif); font-size: clamp(1.45rem, 3vw, 2rem); line-height: 1.08; letter-spacing: -.02em; }
h3 { font-size: 1.02rem; line-height: 1.3; }
.lede { max-width: 48rem; color: var(--muted); font-size: clamp(1rem, 2vw, 1.16rem); }
.meta-line { color: var(--muted); font-size: .94rem; }
.hero { padding-block: 1.2rem 1.8rem; }
.hero-row { display: grid; gap: 1.25rem; align-items: end; }
.hero-stats { display: flex; flex-wrap: wrap; gap: .55rem; }

.card {
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
}
.card-pad { padding: clamp(1rem, 3vw, 1.5rem); }
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.section-head h2, .section-head h3 { margin: 0; }
.kicker {
  margin: 0 0 .8rem;
  color: var(--quiet);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.pill, .chip {
  display: inline-flex;
  align-items: center;
  min-height: 1.75rem;
  padding: .27rem .68rem;
  border-radius: 999px;
  background: #f5f5f4;
  color: #57534e;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .025em;
}
.pill-aqi, .chip-library { background: #dcfce7; color: var(--green); }
.pill-uv, .chip-travel { background: #ffedd5; color: #9a3412; }
.chip-baby, .chip-axios { background: #fce7f3; color: var(--pink); }
.chip-live { background: #dbeafe; color: var(--blue); }
.chip-overdue { background: #fee2e2; color: #991b1b; }
.chip-info { background: #fde8d8; color: #9a3412; }
.chip-bloomberg { background: #dbeafe; color: var(--blue); }
.chip-techcrunch { background: #dcfce7; color: var(--green); }
.chip-economist { background: #fef3c7; color: var(--amber); }
.chip-ft { background: #e0e7ff; color: var(--indigo); }
.chips { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .55rem; }

.hub-section { margin-top: 1.75rem; }
.hub-section > .section-head { margin-bottom: 1.1rem; }
.hub-grid { display: grid; gap: 1rem; }
.product-card { min-height: 18rem; padding: clamp(1.2rem, 4vw, 2rem); display: flex; flex-direction: column; }
.product-card.accent-family { background: linear-gradient(145deg, #fff 45%, #fff6ee); }
.product-card.accent-reading { background: linear-gradient(145deg, #fff 45%, #f5f7ff); }
.product-card.soon-card {
  min-height: 14rem;
  background: linear-gradient(145deg, #fff 50%, #f7f5f2);
  border-style: dashed;
  box-shadow: none;
  opacity: .88;
}
.product-card h2 { margin-bottom: .7rem; }
.product-card p { color: var(--muted); }
.product-card .card-action { margin-top: auto; padding-top: 1rem; }
.soon-label { color: var(--quiet); font-size: .9rem; font-weight: 700; }
.archive-hub .feed-archive { margin-top: 1.25rem; }
.archive-hub .feed-archive:first-of-type { margin-top: .35rem; }
.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: .7rem 1rem;
  border-radius: .75rem;
  background: var(--ink);
  color: white;
  font-weight: 800;
  text-decoration: none;
}
.button-link:hover { background: #342e2b; }

.weather-card { overflow: hidden; }
.weather-top { padding: clamp(1.1rem, 4vw, 1.7rem); }
.weather-line { margin: .35rem 0 .9rem; font-size: 1.02rem; }
.daycycle {
  position: relative;
  min-height: 7.5rem;
  overflow: hidden;
  background: linear-gradient(90deg, #0a1628 0%, #2a4a6e 5%, #b1b36a 11%, #ffe566 25%, #ffe566 70%, #b1b36a 88%, #2a4a6e 95%, #0a1628 100%);
  color: white;
}
.temps, .hours, .precip {
  display: grid;
  grid-template-columns: repeat(8, minmax(2.4rem, 1fr));
  text-align: center;
}
.temps { padding: 1.35rem .65rem 0; font-weight: 850; font-size: .9rem; }
.hours { padding: 0 .65rem 1rem; color: rgba(255,255,255,.9); font-size: .71rem; }
.marker { position: absolute; inset-block: 0; border-left: 1px dashed rgba(255,255,255,.72); }
.marker.sr { left: 5%; }
.marker.ss { left: 92%; }
.marker-label { position: absolute; left: .3rem; bottom: .25rem; white-space: nowrap; font-size: .67rem; font-weight: 750; }
.marker.ss .marker-label { left: auto; right: .3rem; }
.precip-block { padding: .75rem clamp(.55rem, 2vw, 1rem) 1rem; background: #fff; }
.precip-label { color: var(--blue); font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.precip { margin-top: .25rem; color: #2563eb; font-size: .75rem; font-weight: 800; }

.week-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .65rem; }
.day-card { min-height: 7rem; padding: .85rem; border: 1px solid var(--rule); border-radius: .9rem; background: #fff; }
.day-card.today { border: 2px solid var(--accent); padding: calc(.85rem - 1px); }
.day-name { color: var(--quiet); font-size: .74rem; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.today .day-name { color: var(--accent); }
.day-temps { margin-top: .25rem; font-weight: 850; }
.day-note { margin-top: .35rem; color: var(--muted); font-size: .84rem; line-height: 1.35; }

.family-grid { display: grid; gap: 1rem; margin-top: 1rem; }
.stack { display: grid; gap: 1rem; align-content: start; }
.subhead { margin: 1rem 0 .35rem; color: var(--quiet); font-size: .73rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.subhead:first-child { margin-top: 0; }
.info-item, .todo-row { padding: .85rem 0; border-top: 1px solid #f0ede9; }
.subhead + .info-item, .section-items > .info-item:first-child, .todo-row:first-child { border-top: 0; }
.item-title { font-weight: 800; line-height: 1.35; }
.item-meta, .item-desc { margin-top: .22rem; color: var(--muted); font-size: .88rem; }
.item-desc { font-family: var(--serif); font-size: .96rem; font-style: italic; }
.pick { margin-bottom: .5rem; padding: 1rem; border: 1px solid #efc5a7; border-left: 4px solid var(--accent); border-radius: .8rem; background: #fff9f4; }
.pick-label { color: var(--accent); font-size: .7rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.pick-title { margin-top: .2rem; font-weight: 850; }
.todo-row { display: flex; justify-content: space-between; gap: .75rem; align-items: flex-start; }
.empty { color: var(--quiet); font-style: italic; }

.publisher-nav {
  display: flex;
  gap: .5rem;
  margin: .5rem 0 1.4rem;
  padding-bottom: .3rem;
  overflow-x: auto;
  scrollbar-width: thin;
}
.publisher-nav a { flex: none; min-height: 2.75rem; text-decoration: none; }
.reading-grid { display: grid; gap: 1rem; align-items: start; }
.publisher-card { overflow: clip; }
.publisher-head { display: flex; align-items: center; justify-content: space-between; gap: .75rem; padding: 1rem 1.1rem; border-bottom: 1px solid var(--rule); }
.publisher-head h2 { margin: 0; font-family: var(--sans); font-size: 1rem; letter-spacing: .03em; text-transform: uppercase; }
.publisher-count { color: var(--quiet); font-size: .78rem; font-weight: 800; }
.story-list { margin: 0; padding: 0; list-style: none; }
.story { border-top: 1px solid #f0ede9; }
.story:first-child { border-top: 0; }
.story a { display: block; min-height: 3.2rem; padding: .86rem 1.1rem; font-family: var(--serif); font-size: 1.02rem; font-weight: 700; line-height: 1.35; text-decoration: none; }
.story a:hover { background: #fffaf5; color: #8f3d19; }
.story a::after { content: " ↗"; color: var(--quiet); font-family: var(--sans); font-size: .75em; }

.archive-section { margin-top: 2rem; }
.archive-list { display: grid; gap: .65rem; margin: 0; padding: 0; list-style: none; }
.archive-list a { display: flex; justify-content: space-between; gap: 1rem; min-height: 3.25rem; align-items: center; padding: .75rem 1rem; border: 1px solid var(--rule); border-radius: .75rem; background: #fff; text-decoration: none; }
.archive-list a:hover { border-color: var(--rule-strong); box-shadow: var(--shadow); }
.archive-meta { color: var(--muted); font-size: .85rem; }

.site-footer { border-top: 1px solid var(--rule); padding: 1.4rem 0 2.5rem; color: var(--quiet); font-size: .82rem; }
.footer-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .5rem 1rem; }

@media (min-width: 42rem) {
  .hero { padding-block: 2.6rem 2rem; }
  .hero-row { grid-template-columns: minmax(0, 1fr) auto; }
  .hub-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .week-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .reading-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .archive-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 64rem) {
  .week-grid { grid-template-columns: repeat(7, minmax(0, 1fr)); }
  .family-grid { grid-template-columns: minmax(0, 1.12fr) minmax(18rem, .88fr); }
}
@media (max-width: 32rem) {
  .nav-inner { width: min(100% - 1rem, 76rem); }
  .wordmark span:last-child { display: none; }
  .nav-links a { padding-inline: .65rem; }
  .shell { width: min(100% - 1.2rem, 76rem); }
  main { padding-top: 1.2rem; }
  .temps, .hours, .precip { min-width: 25rem; }
  .daycycle, .precip-block { overflow-x: auto; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
@media print {
  .site-nav, .publisher-nav, .skip-link { display: none; }
  body { background: white; }
  .card { box-shadow: none; break-inside: avoid; }
  .shell { width: 100%; }
}
