/* ——— Swiss International Typographic Style ——— */
:root {
  --ink: #111111;
  --paper: #ffffff;
  --red: #e30613;
  --grey: #6b6b6b;
  --hair: #d9d9d9;
  --soft: #f4f4f2;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
  font-size: 16px;
}
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* Nav */
nav { border-bottom: 2px solid var(--ink); }
.navbar { display: flex; justify-content: space-between; align-items: baseline; padding: 18px 0; flex-wrap: wrap; gap: 8px 24px; }
.navbar .brand { font-weight: 700; font-size: 15px; letter-spacing: -0.01em; text-decoration: none; color: var(--ink); }
.navbar .brand span { color: var(--red); }
.navlinks { display: flex; gap: 22px; flex-wrap: wrap; }
.navlinks a {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em;
  text-decoration: none; color: var(--ink); padding-bottom: 2px;
}
.navlinks a:hover { color: var(--red); }
.navlinks a.active { color: var(--red); border-bottom: 2px solid var(--red); }

/* Hero */
header.hero { padding: 72px 0 56px; border-bottom: 1px solid var(--hair); }
.kicker { font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--red); font-weight: 700; margin-bottom: 20px; }
h1 { font-size: clamp(44px, 8vw, 96px); line-height: 0.98; letter-spacing: -0.035em; font-weight: 700; }
h1 .thin { font-weight: 300; }
.lede { margin-top: 28px; font-size: clamp(17px, 2.2vw, 21px); line-height: 1.45; max-width: 62ch; font-weight: 400; }
.lede strong { font-weight: 700; }
.herometa { margin-top: 32px; display: flex; gap: 48px; flex-wrap: wrap; }
.herometa div { font-size: 12px; }
.herometa .lab { text-transform: uppercase; letter-spacing: 0.14em; color: var(--grey); font-size: 10px; margin-bottom: 4px; }
.herometa .val { font-weight: 700; font-size: 14px; }

/* Sections */
section { padding: 56px 0; border-bottom: 1px solid var(--hair); }
.sechead { display: grid; grid-template-columns: 90px 1fr; gap: 24px; margin-bottom: 36px; align-items: baseline; }
.secnum { font-size: 34px; font-weight: 700; color: var(--red); letter-spacing: -0.02em; }
.sechead h2 { font-size: clamp(26px, 4vw, 40px); letter-spacing: -0.025em; line-height: 1.05; font-weight: 700; }
.secsub { grid-column: 2; margin-top: 10px; color: var(--grey); font-size: 15px; max-width: 68ch; }
.body-copy { max-width: 70ch; font-size: 16px; }
.body-copy p + p { margin-top: 14px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
h3 { font-size: 19px; letter-spacing: -0.01em; margin-bottom: 10px; font-weight: 700; }
h3 .idx { color: var(--red); margin-right: 8px; }

/* Tables */
.tablewrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: 14px; }
thead th {
  text-align: left; font-size: 10px; text-transform: uppercase; letter-spacing: 0.13em;
  color: var(--grey); font-weight: 700; padding: 0 14px 10px 0;
  border-bottom: 2px solid var(--ink); white-space: nowrap;
}
tbody td { padding: 13px 14px 13px 0; border-bottom: 1px solid var(--hair); vertical-align: top; }
tbody tr.hl td { background: var(--soft); }
td .sub { color: var(--grey); font-size: 12.5px; display: block; margin-top: 2px; }
td a, .body-copy a, .note a, li a { color: var(--ink); text-decoration: underline; text-decoration-color: var(--red); text-underline-offset: 3px; }
td a:hover, .body-copy a:hover, li a:hover { color: var(--red); }
.num { font-variant-numeric: tabular-nums; white-space: nowrap; }
.rankcell { font-size: 26px; font-weight: 700; color: var(--red); }
.score { font-weight: 700; font-size: 17px; }

/* Score bars */
.bar { height: 8px; background: var(--soft); position: relative; min-width: 90px; margin-top: 6px; }
.bar i { position: absolute; left: 0; top: 0; bottom: 0; background: var(--ink); }
.bar.red i { background: var(--red); }

/* Cards / grids */
.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--hair); border: 1px solid var(--hair); }
.grid2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--hair); border: 1px solid var(--hair); }
.cell { background: var(--paper); padding: 24px; }
.cell .lab { font-size: 10px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--grey); font-weight: 700; margin-bottom: 8px; }
.cell .big { font-size: clamp(26px, 3.6vw, 40px); font-weight: 700; letter-spacing: -0.03em; line-height: 1; }
.cell .big small { font-size: 0.45em; font-weight: 400; color: var(--grey); letter-spacing: 0; }
.cell p { font-size: 13.5px; color: var(--grey); margin-top: 8px; }
.cell.accent { border-top: 4px solid var(--red); }

/* Lists */
ul.rule, ol.rule { list-style: none; }
ul.rule li, ol.rule li { padding: 14px 0; border-bottom: 1px solid var(--hair); font-size: 15px; max-width: 75ch; }
ul.rule li strong { font-weight: 700; }
ul.rule li:first-child, ol.rule li:first-child { border-top: 2px solid var(--ink); }

/* Callouts */
.verdict { border-left: 6px solid var(--red); padding: 6px 0 6px 24px; margin: 8px 0; font-size: clamp(18px, 2.4vw, 24px); font-weight: 700; letter-spacing: -0.015em; line-height: 1.3; max-width: 34em; }
.note { background: var(--soft); padding: 20px 24px; font-size: 14px; max-width: 80ch; }
.note strong { font-weight: 700; }
.warn { border-left: 6px solid var(--ink); padding-left: 24px; font-size: 15px; max-width: 70ch; }

/* Cost chart */
.chart { display: grid; gap: 14px; }
.chartrow { display: grid; grid-template-columns: 190px 1fr 110px; gap: 16px; align-items: center; font-size: 13.5px; }
.chartrow .cl { font-weight: 700; }
.chartrow .cl .sub { display: block; font-weight: 400; color: var(--grey); font-size: 11.5px; }
.chartrow .track { background: var(--soft); height: 26px; position: relative; }
.chartrow .track i { position: absolute; left: 0; top: 0; bottom: 0; background: var(--ink); }
.chartrow .track i.r { background: var(--red); }
.chartrow .cv { font-variant-numeric: tabular-nums; font-weight: 700; text-align: right; }

/* Footer */
footer { padding: 40px 0 64px; }
footer .foot { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; font-size: 12px; color: var(--grey); }
footer .foot b { color: var(--ink); }
.pagenav { display: flex; justify-content: space-between; gap: 24px; padding: 28px 0; border-bottom: 1px solid var(--hair); flex-wrap: wrap; }
.pagenav a { font-size: 13px; font-weight: 700; text-decoration: none; color: var(--ink); }
.pagenav a:hover { color: var(--red); }

@media (max-width: 760px) {
  .sechead { grid-template-columns: 1fr; gap: 6px; }
  .secsub { grid-column: 1; }
  .two-col, .grid3, .grid2 { grid-template-columns: 1fr; }
  .chartrow { grid-template-columns: 110px 1fr 80px; }
  header.hero { padding: 48px 0 40px; }
}
@media print {
  nav, .pagenav { display: none; }
  section { page-break-inside: avoid; }
}
