:root {
  --bg-top: #0b1118;
  --bg-mid: #121c28;
  --bg-body: #efe6d8;
  --surface: #fff9f0;
  --surface-2: #f6eee2;
  --surface-3: #eadcc8;
  --ink: #102033;
  --ink-soft: #556578;
  --ink-faint: #7d8998;
  --ink-inverse: #f8fafc;
  --line: rgba(16, 32, 51, 0.1);
  --line-dark: rgba(248, 250, 252, 0.14);
  --sea: #2ec4b6;
  --sea-deep: #0f7a72;
  --copper: #cb6c4d;
  --copper-bright: #f2a486;
  --amber: #cb9b3b;
  --rose: #c45757;
  --font-display: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --font-body: "Avenir Next", "Helvetica Neue", "Segoe UI", sans-serif;
  --shadow: 0 30px 80px rgba(9, 15, 22, 0.18);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(46, 196, 182, 0.09), transparent 20rem),
    radial-gradient(circle at 100% 0%, rgba(217, 107, 69, 0.08), transparent 22rem),
    linear-gradient(180deg, var(--bg-top) 0%, var(--bg-mid) 22%, var(--bg-body) 22.1%, var(--bg-body) 100%);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.45;
}

a {
  color: inherit;
}

.site-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(9, 15, 22, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header__inner,
.site-main,
.site-footer__inner {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
}

.site-brand {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
}

.site-brand__name {
  font-family: var(--font-display);
  color: var(--ink-inverse);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
}

.site-brand__sub {
  margin-top: 4px;
  color: var(--copper-bright);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-nav__link {
  color: rgba(248, 250, 252, 0.78);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav__link--primary {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
}

.site-main {
  padding: 14px 0 56px;
}

.eyebrow {
  margin: 0;
  color: var(--copper);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: 28px;
  padding: 28px 30px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 15% 15%, rgba(46, 196, 182, 0.2), transparent 18rem),
    radial-gradient(circle at 82% 10%, rgba(217, 107, 69, 0.18), transparent 16rem),
    linear-gradient(135deg, #09131c 0%, #10202f 55%, #103d45 100%);
  color: var(--ink-inverse);
  box-shadow: 0 42px 120px rgba(5, 10, 16, 0.34);
  overflow: hidden;
}

.home-hero__copy,
.home-hero__snapshot {
  position: relative;
  z-index: 1;
}

.home-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-hero h1 {
  margin: 0;
  max-width: 9ch;
  font-family: var(--font-display);
  font-size: clamp(4rem, 7vw, 6.6rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.home-hero__strap {
  margin: 14px 0 0;
  color: var(--copper-bright);
  font-size: clamp(1.15rem, 1.9vw, 1.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  max-width: 34rem;
}

.home-hero__lede {
  margin: 12px 0 0;
  max-width: 36rem;
  color: rgba(248, 250, 252, 0.78);
  font-size: 0.96rem;
}

.home-hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 0;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button--primary {
  background: var(--surface);
  color: var(--ink);
}

.button--ghost {
  background: rgba(16, 32, 51, 0.06);
  color: var(--ink);
}

.text-link {
  color: rgba(248, 250, 252, 0.78);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.home-hero__snapshot {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.snapshot-card {
  padding: 20px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 32px 90px rgba(6, 10, 16, 0.24);
  backdrop-filter: blur(20px);
}

.snapshot-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.snapshot-card__head h2 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--ink-inverse);
  font-size: 2rem;
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.snapshot-card__sub {
  margin: 8px 0 0;
  color: var(--copper-bright);
  font-size: 0.95rem;
}

.snapshot-card__date {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(248, 250, 252, 0.86);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.snapshot-card__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.snapshot-card__legend-item {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: rgba(248, 250, 252, 0.82);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.snapshot-card__legend-item--stress {
  background: rgba(196, 87, 87, 0.18);
}

.snapshot-card__legend-item--watch {
  background: rgba(203, 155, 59, 0.18);
}

.snapshot-card__legend-item--calm {
  background: rgba(46, 196, 182, 0.18);
}

.snapshot-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.snapshot-row {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.snapshot-row__heading {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.snapshot-row__label {
  color: rgba(248, 250, 252, 0.82);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.snapshot-row__state {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.snapshot-row__track {
  position: relative;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.snapshot-row__fill {
  position: absolute;
  inset: 0 auto 0 0;
  border-radius: inherit;
}

.snapshot-row__value {
  color: var(--ink-inverse);
  font-size: 14px;
  font-weight: 800;
}

.snapshot-row--stress .snapshot-row__state {
  color: #f5b1b1;
}

.snapshot-row--stress .snapshot-row__fill {
  background: linear-gradient(90deg, #f08d8d, var(--rose));
}

.snapshot-row--watch .snapshot-row__state {
  color: #f0d58d;
}

.snapshot-row--watch .snapshot-row__fill {
  background: linear-gradient(90deg, #f0d58d, var(--amber));
}

.snapshot-row--calm .snapshot-row__state {
  color: #8ae6dd;
}

.snapshot-row--calm .snapshot-row__fill {
  background: linear-gradient(90deg, #8ae6dd, var(--sea));
}

.snapshot-card__scale,
.snapshot-card__scale-labels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 12px;
}

.snapshot-card__scale {
  color: rgba(248, 250, 252, 0.84);
  font-size: 11px;
  font-weight: 800;
}

.snapshot-card__scale-labels {
  margin-top: 4px;
  color: rgba(248, 250, 252, 0.58);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.snapshot-card__scale span:nth-child(2),
.snapshot-card__scale-labels span:nth-child(2) {
  text-align: center;
}

.snapshot-card__scale span:last-child,
.snapshot-card__scale-labels span:last-child {
  text-align: right;
}

.home-method,
.page-hero,
.article-shell,
.embed-frame,
.archive-item {
  margin-top: 18px;
}

.home-method {
  padding: 22px;
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: var(--shadow);
}

.home-method__intro,
.method-panel,
.pillar-card,
.card,
.archive-item,
.page-hero,
.article-shell,
.embed-frame {
  background: var(--surface);
  border: 1px solid rgba(16, 32, 51, 0.08);
}

.home-method__intro {
  padding: 0;
  border: 0;
}

.section__head .eyebrow {
  color: var(--copper);
  font-size: 10px;
  letter-spacing: 0.2em;
}

.home-method__intro h2,
.section__head h2 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4vw, 3.8rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.home-method__intro .home-method__subhed {
  margin: 0 0 10px;
  color: var(--copper);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.home-method__intro p {
  margin: 0;
  color: var(--ink-soft);
  max-width: 58rem;
}

.home-method__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.method-panel {
  padding: 16px 18px;
  border-radius: var(--radius-lg);
}

.card h3,
.archive-item h2,
.page-hero h1,
.article-shell h2,
.article-shell h3 {
  font-family: var(--font-display);
  margin: 10px 0 12px;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.method-panel__title,
.pillar-card h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.method-panel__subhed {
  margin: 8px 0 0;
  color: var(--copper);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0;
}

.method-list {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.method-list li + li {
  margin-top: 10px;
}

.pillar-matrix {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.home-method__footer {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.home-method__cta {
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid rgba(16, 32, 51, 0.12);
  box-shadow: 0 14px 34px rgba(16, 32, 51, 0.14);
  background: var(--ink);
  color: var(--ink-inverse);
}

.daily-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.8fr);
  gap: 24px;
  padding: 28px 30px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 12% 18%, rgba(46, 196, 182, 0.18), transparent 18rem),
    radial-gradient(circle at 88% 8%, rgba(217, 107, 69, 0.18), transparent 14rem),
    linear-gradient(135deg, #09131c 0%, #10202f 60%, #10353c 100%);
  color: var(--ink-inverse);
  box-shadow: 0 42px 120px rgba(5, 10, 16, 0.34);
}

.daily-hero__copy,
.daily-hero__brief {
  position: relative;
  z-index: 1;
}

.daily-hero__copy h1 {
  margin: 6px 0 0;
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 6vw, 5.6rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.daily-hero__strap {
  margin: 16px 0 0;
  color: var(--copper-bright);
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  max-width: 36rem;
}

.daily-hero__lede {
  margin: 12px 0 0;
  max-width: 40rem;
  color: rgba(248, 250, 252, 0.78);
  font-size: 1rem;
}

.daily-hero .meta-pill {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(248, 250, 252, 0.82);
}

.daily-hero .button--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink-inverse);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.daily-hero__brief {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-content: end;
}

.daily-section {
  margin-top: 22px;
}

.daily-section--panel {
  padding: 24px;
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid rgba(16, 32, 51, 0.08);
  box-shadow: var(--shadow);
}

.daily-section__subhed {
  margin: 0;
  color: var(--copper);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
}

.daily-section__body {
  margin: 10px 0 0;
  max-width: 58rem;
  color: var(--ink-soft);
  font-size: 0.96rem;
}

.daily-pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.daily-component-snapshots {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.daily-card {
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid rgba(16, 32, 51, 0.08);
  box-shadow: var(--shadow);
}

.daily-card--pillar {
  padding: 22px;
}

.daily-card h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.95rem;
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.daily-card__header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.daily-card__summary {
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.daily-card__takeaway {
  margin: 10px 0 0;
  color: var(--copper);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.35;
}

.daily-card__scoreband {
  display: flex;
  align-items: end;
  gap: 14px;
}

.daily-card__score {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.daily-card__state {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.daily-card__state--stress {
  background: rgba(196, 87, 87, 0.14);
  color: var(--rose);
}

.daily-card__state--watch {
  background: rgba(203, 155, 59, 0.14);
  color: var(--amber);
}

.daily-card__state--calm {
  background: rgba(46, 196, 182, 0.14);
  color: var(--sea-deep);
}

.daily-card__state--missing {
  background: rgba(125, 137, 152, 0.12);
  color: var(--ink-faint);
}

.daily-card__chart {
  margin-top: 16px;
}

.daily-card__averages {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
}

.daily-card__averages strong {
  color: var(--copper);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trend-chart {
  display: block;
  width: 100%;
  height: auto;
}

.daily-chart-legend {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.daily-chart-legend__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
}

.daily-chart-legend__swatch {
  width: 14px;
  height: 14px;
  border-radius: 999px;
}

.daily-chart-legend__swatch--flow {
  background: var(--sea);
}

.daily-chart-legend__swatch--friction {
  background: var(--copper);
}

.daily-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.daily-card__split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.daily-brief__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.daily-brief__label {
  color: rgba(248, 250, 252, 0.76);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.daily-brief__value {
  color: var(--ink-inverse);
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.daily-brief__item--stress .daily-brief__value {
  color: #ffb8b1;
}

.daily-brief__item--calm .daily-brief__value {
  color: #8ef0e7;
}

.daily-component-snapshot {
  padding: 22px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid rgba(16, 32, 51, 0.08);
  box-shadow: var(--shadow);
}

.daily-component-snapshot__head h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.95rem;
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.daily-component-snapshot__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.daily-component-snapshot__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.daily-component-snapshot__intro {
  margin: 10px 0 0;
  color: var(--copper);
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.35;
}

.daily-component-snapshot__rows {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.component-snapshot-row {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(180px, 0.9fr) minmax(120px, 0.6fr);
  gap: 14px;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid rgba(16, 32, 51, 0.08);
}

.component-snapshot-row:first-child {
  padding-top: 0;
  border-top: 0;
}

.component-snapshot-row__copy h4 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.component-snapshot-row__copy p {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.component-snapshot-row__meta {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 8px;
  justify-self: end;
}

.component-snapshot-row__date {
  color: var(--ink-faint);
  font-size: 12px;
  font-weight: 700;
}

.component-snapshot-row__state {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.component-snapshot-row__state--stress {
  background: rgba(196, 87, 87, 0.14);
  color: var(--rose);
}

.component-snapshot-row__state--watch {
  background: rgba(203, 155, 59, 0.16);
  color: #9a7015;
}

.component-snapshot-row__state--calm {
  background: rgba(46, 196, 182, 0.14);
  color: var(--sea-deep);
}

.component-snapshot-row__state--missing {
  background: rgba(125, 137, 152, 0.12);
  color: var(--ink-faint);
}

.component-score-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 40px;
  gap: 10px;
  align-items: center;
}

.component-score-row__track {
  display: block;
  height: 11px;
  border-radius: 999px;
  background: rgba(16, 32, 51, 0.08);
  overflow: hidden;
}

.component-score-row__fill {
  display: block;
  height: 100%;
  border-radius: 999px;
}

.component-score-row__value,
.component-score-row__empty {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: -0.04em;
  text-align: right;
}

.component-score-row--stress .component-score-row__fill {
  background: var(--rose);
}

.component-score-row--watch .component-score-row__fill {
  background: var(--amber);
}

.component-score-row--calm .component-score-row__fill {
  background: var(--sea);
}

.component-score-row--missing {
  display: flex;
  justify-content: flex-end;
}

.mini-link {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(16, 32, 51, 0.06);
  border: 1px solid rgba(16, 32, 51, 0.08);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.pillar-card {
  padding: 16px 18px;
  border-radius: var(--radius-lg);
}

.pillar-card__summary {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.pillar-card__row {
  margin-top: 12px;
}

.pillar-card__label {
  display: block;
  margin-bottom: 6px;
  color: var(--copper);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pillar-card__text {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.section__head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.daily-section .section__head {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.section__head-actions {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.start-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.card,
.archive-item {
  border-radius: var(--radius-lg);
  padding: 24px;
}

.card h3 {
  font-size: 1.7rem;
  line-height: 0.96;
}

.card p,
.archive-item p,
.page-hero__copy,
.article-shell p,
.article-shell li {
  color: var(--ink-soft);
}

.card__meta,
.archive-item__meta {
  margin-top: 12px;
  color: var(--ink-faint);
  font-size: 13px;
}

.card__link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--copper);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.page-hero,
.article-shell,
.embed-frame {
  border-radius: var(--radius-lg);
  padding: 26px;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 0.92;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(16, 32, 51, 0.06);
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}

.embed-frame__iframe {
  width: 100%;
  min-height: 1200px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
}

.embed-frame__note {
  margin: 12px 0 0;
  color: var(--ink-soft);
}

.article-shell h2 {
  font-size: 1.9rem;
  line-height: 0.98;
}

.article-shell h3 {
  font-size: 1.25rem;
}

.article-shell p {
  margin: 0 0 16px;
}

.article-shell ul {
  margin: 0 0 18px;
  padding-left: 20px;
}

.article-shell .article-kicker {
  margin-bottom: 8px;
  color: var(--copper);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.archive-list {
  display: grid;
  gap: 14px;
}

.archive-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.site-footer {
  padding: 0 0 40px;
}

.site-footer__inner {
  padding-top: 18px;
  border-top: 1px solid rgba(16, 32, 51, 0.12);
}

.site-footer p {
  margin: 0;
  color: var(--ink-soft);
}

.site-footer__meta {
  margin-top: 8px;
  font-size: 13px;
}

@media (max-width: 1100px) {
  .home-hero,
  .daily-hero,
  .home-method__grid,
  .pillar-matrix,
  .daily-pillars-grid,
  .daily-component-snapshots,
  .daily-hero__brief,
  .start-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .snapshot-row {
    grid-template-columns: 96px minmax(0, 1fr) auto;
  }

  .archive-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .component-snapshot-row {
    grid-template-columns: 1fr;
  }

  .component-snapshot-row__meta {
    justify-self: start;
  }

  .daily-component-snapshot__head {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .site-header__inner,
  .site-main,
  .site-footer__inner {
    width: min(100% - 20px, 1220px);
  }

  .home-hero,
  .daily-hero,
  .home-method,
  .method-panel,
  .pillar-card,
  .daily-card--pillar,
  .daily-component-snapshot,
  .card,
  .page-hero,
  .article-shell,
  .embed-frame,
  .archive-item {
    padding-left: 20px;
    padding-right: 20px;
  }

  .home-hero {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .daily-hero {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .home-hero h1 {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  .daily-hero__copy h1 {
    font-size: clamp(2.8rem, 13vw, 4.4rem);
  }

  .home-hero__actions {
    flex-wrap: wrap;
  }

  .daily-card__header,
  .daily-card__split {
    grid-template-columns: 1fr;
    display: grid;
  }

  .daily-chart-legend {
    grid-template-columns: 1fr;
  }

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

  .embed-frame__iframe {
    min-height: 920px;
  }
}
