/* ================== Design tokens ================== */
:root {
  --navy-900: #0A1B3D;
  --navy-800: #122553;
  --navy-700: #1B3270;
  --navy-100: #E5E9F2;
  --paper:    #F6F4EE;
  --paper-2:  #EFECE3;
  --ink:      #0A1B3D;
  --slate:    #5B6478;
  --slate-2:  #8A91A1;
  --line:     #DDD8CC;
  --amber:    #FFB547;
  --amber-2:  #F39C2C;
  --mint:     #6FBF8A;
  --rust:     #C9573A;

  --radius:   14px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 0 rgba(10,27,61,0.04), 0 2px 6px rgba(10,27,61,0.04);
  --shadow-md: 0 1px 0 rgba(10,27,61,0.05), 0 8px 24px rgba(10,27,61,0.07);

  --font: 'Inter Tight', 'Inter', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font);
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ================== Layout ================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 720px) {
  .container { padding: 0 20px; }
}

/* ================== Nav ================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 244, 238, 0.85);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  background: rgba(246, 244, 238, 0.92);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  letter-spacing: -0.01em;
  font-size: 18px;
}
.brand-mark {
  width: 26px; height: 26px;
  border-radius: 7px;
  background: var(--navy-900);
  position: relative;
}
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 6px 6px auto auto;
  width: 8px; height: 8px;
  background: var(--amber);
  border-radius: 2px;
}
.nav-links {
  display: flex;
  gap: 28px;
  font-size: 15px;
  color: var(--slate);
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  font-size: 14px;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  color: var(--ink);
  transition: background .12s ease;
}
.nav-cta:hover { background: var(--ink); color: var(--paper); }
.nav-hamburger {
  display: none;
  padding: 8px;
  color: var(--ink);
}
@media (max-width: 720px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    padding: 20px 32px;
    gap: 16px;
  }
  .nav-links.open { display: flex; }
  .nav-hamburger { display: block; }
}

/* ================== Hero ================== */
.hero {
  padding: 100px 0 64px;
}
.hero-container {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
h1.hero-title {
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.035em;
  font-weight: 600;
  margin: 0 0 20px;
  max-width: 16ch;
  text-wrap: balance;
}
.hero-sub {
  font-size: 20px;
  color: var(--slate);
  max-width: 50ch;
  margin: 0 0 40px;
}
.hero-note {
  margin-top: 20px;
  font-size: 15px;
  color: var(--slate);
}

/* Address field */
.address-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
  max-width: 720px;
  width: 100%;
}
.address-card:focus-within {
  border-color: var(--ink);
  box-shadow: 0 0 0 4px rgba(10,27,61,0.08), var(--shadow-md);
}
.address-input {
  flex: 1;
  border: 0;
  outline: 0;
  font-family: var(--font);
  font-size: 20px;
  padding: 18px 20px;
  background: transparent;
  color: var(--ink);
  letter-spacing: -0.01em;
  min-width: 0;
}
.address-input::placeholder { color: var(--slate-2); }

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 24px;
  background: var(--amber);
  color: var(--navy-900);
  border-radius: 14px;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: transform .12s ease, background .12s ease;
}
.btn-cta:hover { background: var(--amber-2); transform: translateY(-1px); }
.btn-cta .arrow {
  width: 18px; height: 18px;
  display: inline-block;
}
@media (max-width: 640px) {
  .address-card { flex-direction: column; align-items: stretch; padding: 10px; }
  .btn-cta { justify-content: center; }
  .address-input { font-size: 17px; padding: 14px 16px; }
}

/* ================== Sections ================== */
section { padding: 80px 0; }

h2.section-title {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 600;
  margin: 0 0 12px;
  max-width: 20ch;
}
.section-lede {
  color: var(--slate);
  font-size: 18px;
  max-width: 50ch;
  margin: 0 0 48px;
}

/* ================== Preview ================== */
.preview {
  padding-top: 0;
  padding-bottom: 0;
}
.preview-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.preview-top {
  margin-bottom: 32px;
}
.preview-address {
  font-size: 28px;
  letter-spacing: -0.02em;
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 6px;
}
.preview-address-sub {
  color: var(--slate);
  font-size: 16px;
  margin: 0;
}
.free-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.free-stat {
  padding: 24px 0;
  padding-right: 24px;
  border-right: 1px solid var(--line);
}
.free-stat:last-child { border-right: 0; padding-right: 0; }
.free-stat:not(:first-child) { padding-left: 24px; }
.free-stat-label {
  font-size: 14px;
  color: var(--slate);
  margin-bottom: 4px;
}
.free-stat-value {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.preview-upgrade {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.preview-upgrade-text {
  font-size: 15px;
  color: var(--slate);
  max-width: 50ch;
}
.preview-upgrade-text strong {
  color: var(--ink);
}
.preview-cta-pill {
  background: var(--amber);
  color: var(--navy-900);
  border-radius: 12px;
  padding: 14px 20px;
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
  transition: background .12s ease, transform .12s ease;
}
.preview-cta-pill:hover { background: var(--amber-2); transform: translateY(-1px); }

@media (max-width: 640px) {
  .preview-card { padding: 28px; }
  .free-stats { grid-template-columns: 1fr; }
  .free-stat { border-right: 0; border-bottom: 1px solid var(--line); padding: 16px 0 !important; }
  .free-stat:last-child { border-bottom: 0; }
  .preview-upgrade { flex-direction: column; align-items: flex-start; }
}

/* ================== Steps ================== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.step {
  background: var(--paper);
  padding: 40px;
}
.step-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--navy-900);
  color: var(--amber);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.step-icon svg { width: 24px; height: 24px; }
.step h3 {
  font-size: 24px;
  letter-spacing: -0.02em;
  font-weight: 600;
  margin: 0 0 8px;
  line-height: 1.1;
}
.step p { color: var(--slate); margin: 0; font-size: 15px; line-height: 1.5; }
@media (max-width: 800px) { .steps { grid-template-columns: 1fr; } }

/* ================== Report grid ================== */
.report-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.r-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display: flex; flex-direction: column;
  transition: transform .15s ease, box-shadow .15s ease;
}
.r-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.r-card .r-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--navy-100);
  color: var(--navy-900);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.r-card .r-icon svg { width: 20px; height: 20px; }
.r-card h4 {
  font-size: 18px; font-weight: 600; letter-spacing: -0.01em;
  margin: 0 0 6px;
}
.r-card p { color: var(--slate); font-size: 15px; margin: 0; }

.r-card.featured {
  background: var(--navy-900);
  color: var(--paper);
  grid-column: span 1;
  grid-row: span 2;
  border-color: var(--navy-900);
}
.r-card.featured .r-icon { background: var(--amber); color: var(--navy-900); }
.r-card.featured p { color: rgba(246,244,238,0.7); }
.r-card.featured h4 { font-size: 22px; line-height: 1.15; }
.featured-mock {
  margin-top: auto;
  padding-top: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 20px;
  display: flex; flex-direction: column; gap: 14px;
}
.fm-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 14px;
}
.fm-row .k { color: rgba(246,244,238,0.5); font-size: 13px; }
.fm-row .v { font-weight: 500; }
.fm-row.big .v { font-size: 24px; color: var(--amber); }

@media (max-width: 800px) {
  .report-grid { grid-template-columns: 1fr 1fr; }
  .r-card.featured { grid-column: span 2; grid-row: auto; }
}
@media (max-width: 560px) {
  .report-grid { grid-template-columns: 1fr; }
  .r-card.featured { grid-column: auto; }
}

/* ================== Compare ================== */
.compare {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.compare-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  display: flex; flex-direction: column;
}
.compare-card.us {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--navy-900);
}
.compare-name {
  font-size: 15px;
  color: var(--slate);
  margin-bottom: 4px;
}
.compare-card.us .compare-name { color: var(--navy-700); }
.compare-price {
  font-size: 40px;
  letter-spacing: -0.03em;
  font-weight: 600;
  margin: 4px 0 4px;
}
.compare-meta { color: var(--slate); font-size: 14px; margin-bottom: 20px; }
.compare-card.us .compare-meta { color: var(--navy-700); }
.compare-list {
  list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px;
  font-size: 14px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.compare-card.us .compare-list { border-color: rgba(10,27,61,0.18); }
.compare-list li { display: flex; gap: 10px; align-items: flex-start; line-height: 1.4; }
.compare-list li::before {
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 14px;
}
.compare-list li.pro::before { content: "✓"; color: var(--mint); font-weight: 600; }
.compare-list li.con::before { content: "✗"; color: var(--slate-2); }
.compare-card.us .compare-list li.pro::before { color: var(--navy-900); }

.sources-note {
  text-align: center;
  color: var(--slate);
  font-size: 14px;
  margin-top: 32px;
}

@media (max-width: 800px) { .compare { grid-template-columns: 1fr; } }

/* ================== FAQ ================== */
.faq {
  max-width: 720px;
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%; text-align: left;
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  font-size: 18px;
  letter-spacing: -0.01em;
  font-weight: 500;
}
.faq-toggle {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform .2s ease, background .2s ease;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); background: var(--ink); color: var(--paper); border-color: var(--ink); }
.faq-a {
  max-height: 0; overflow: hidden;
  color: var(--slate);
  font-size: 16px;
  transition: max-height .3s ease, padding .3s ease;
  padding: 0;
  max-width: 60ch;
  line-height: 1.6;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 0 24px;
}

/* ================== Final CTA ================== */
.final-cta {
  background: var(--navy-900);
  color: var(--paper);
  border-radius: var(--radius-lg);
  padding: 72px 64px;
  text-align: center;
  position: relative; overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 10%, transparent 70%);
}
.final-cta h2 {
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 600;
  margin: 0 auto 16px;
  max-width: 18ch;
  position: relative;
}
.final-cta p {
  color: rgba(246,244,238,0.7);
  font-size: 18px;
  margin: 0 auto 36px;
  max-width: 50ch;
  position: relative;
}
.final-cta .address-card {
  margin: 0 auto;
  background: var(--paper);
  border-color: transparent;
  position: relative;
}
@media (max-width: 720px) { .final-cta { padding: 48px 24px; } }

/* ================== Footer ================== */
footer {
  padding: 48px 0 64px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--slate);
}
.footer-row {
  display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a:hover { color: var(--ink); }

/* ================== Shared ================== */
.btn-secondary {
  padding: 14px 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink);
  border-radius: 12px;
  font-weight: 500;
  font-size: 15px;
  display: inline-flex; align-items: center; gap: 10px;
  transition: background .12s ease;
}
.btn-secondary:hover { background: var(--paper-2); }

/* ================== Breadcrumbs ================== */
.breadcrumbs {
  padding: 16px 0 0;
  font-size: 14px;
  color: var(--slate-2);
}
.breadcrumbs a {
  color: var(--slate);
  text-decoration: none;
  transition: color .12s ease;
}
.breadcrumbs a:hover { color: var(--ink); }
.breadcrumbs span[aria-hidden] {
  margin: 0 8px;
  color: var(--line);
}

/* ================== Steden grid ================== */
.steden-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.stad-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  text-decoration: none;
  color: inherit;
  transition: transform .15s ease, box-shadow .15s ease;
}
.stad-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.stad-card h3 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
}
.stad-card p {
  color: var(--slate);
  font-size: 14px;
  margin: 0;
}

/* ================== Blog grid ================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.blog-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform .15s ease, box-shadow .15s ease;
  position: relative;
  cursor: pointer;
}
.blog-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.blog-card h2 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
  line-height: 1.2;
}
.blog-card h2 a {
  color: inherit;
  text-decoration: none;
}
.blog-card h2 a::after {
  content: '';
  position: absolute;
  inset: 0;
}
.blog-card h2 a:hover { color: var(--navy-700); }
.blog-card p {
  color: var(--slate);
  font-size: 15px;
  margin: 0 0 12px;
  line-height: 1.5;
}
.blog-meta {
  font-size: 13px;
  color: var(--slate-2);
}

/* ================== Legal content ================== */
.legal-content {
  max-width: 720px;
}
.legal-content h2 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 40px 0 12px;
  line-height: 1.2;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p {
  color: var(--slate);
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 12px;
}
.legal-content ul {
  color: var(--slate);
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 12px;
  padding-left: 24px;
}
.legal-content li { margin-bottom: 6px; }

/* ================== Report page ================== */
.banner {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 16px;
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px;
  color: var(--slate);
}
.banner .pulse {
  width: 8px; height: 8px; border-radius: 50%; background: var(--amber);
}

.report-header {
  padding: 56px 0 0;
}
.report-meta {
  display: flex; gap: 24px; flex-wrap: wrap;
  margin-top: 24px;
  color: var(--slate);
  font-size: 14px;
}
.report-meta .key { color: var(--slate-2); margin-right: 8px; }
h1.report-address {
  font-size: clamp(40px, 5.5vw, 72px);
  letter-spacing: -0.035em;
  line-height: 1.0;
  font-weight: 600;
  margin: 24px 0 0;
  max-width: 18ch;
}

/* Value hero */
.value-hero {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
}
.value-card {
  background: var(--navy-900);
  color: var(--paper);
  border-radius: var(--radius-lg);
  padding: 48px;
  position: relative; overflow: hidden;
}
.value-card::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.value-label {
  position: relative;
  font-size: 14px;
  color: var(--amber);
}
.value-num {
  position: relative;
  font-size: clamp(48px, 7vw, 96px);
  letter-spacing: -0.04em;
  line-height: 1;
  font-weight: 600;
  margin: 16px 0 24px;
}
.value-num .cur { color: var(--amber); margin-right: 6px; font-weight: 500; }
.range-bar {
  position: relative;
  height: 10px;
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  margin: 24px 0 12px;
}
.range-fill {
  position: absolute; top: 0; bottom: 0;
  left: 18%; right: 22%;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  border-radius: 999px;
}
.range-marker {
  position: absolute; top: -5px;
  width: 4px; height: 20px; border-radius: 2px;
  background: var(--paper);
  left: 50%;
  transform: translateX(-50%);
}
.range-labels {
  display: flex; justify-content: space-between;
  font-size: 14px;
  color: rgba(246,244,238,0.7);
  position: relative;
}
.value-note {
  position: relative;
  margin-top: 32px;
  color: rgba(246,244,238,0.6);
  font-size: 14px;
  max-width: 50ch;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  line-height: 1.6;
}

.confidence-card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex; flex-direction: column;
  gap: 0;
}
.confidence-label {
  font-size: 14px;
  color: var(--slate);
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.confidence-pill {
  font-size: 13px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--navy-900);
  font-weight: 500;
}
.confidence-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.confidence-row:last-child { border-bottom: 0; }
.confidence-row .k { color: var(--slate); }
.confidence-row .v { font-weight: 500; }
@media (max-width: 900px) { .value-hero { grid-template-columns: 1fr; } }

/* Report sections */
.r-section {
  padding: 80px 0 0;
}
.r-section h2 {
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.025em;
  line-height: 1.05;
  font-weight: 600;
  margin: 0 0 32px;
}

/* Timeline */
.timeline {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
}
.tl-row {
  display: grid;
  grid-template-columns: 120px 1fr 180px 140px;
  gap: 24px;
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.tl-row:last-child { border-bottom: 0; }
.tl-row.head {
  background: var(--paper-2);
  font-size: 13px;
  color: var(--slate);
  padding: 14px 28px;
}
.tl-date { font-size: 14px; color: var(--slate); }
.tl-event { font-size: 16px; font-weight: 500; }
.tl-event .sub { display: block; color: var(--slate); font-size: 13px; font-weight: 400; margin-top: 2px; }
.tl-price { font-size: 18px; font-weight: 500; text-align: right; }
.tl-delta {
  font-size: 13px;
  text-align: right;
  padding: 4px 10px;
  border-radius: 6px;
  background: var(--navy-100);
  color: var(--navy-900);
  justify-self: end;
  font-weight: 500;
}
.tl-delta.pos { background: rgba(111,191,138,0.18); color: #2F7A4A; }

@media (max-width: 760px) {
  .tl-row { grid-template-columns: 1fr 1fr; }
  .tl-row.head { display: none; }
  .tl-event { grid-column: span 2; }
  .tl-delta { grid-column: 2; }
}

/* Details grid */
.details-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.detail {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  display: flex; flex-direction: column;
  justify-content: space-between;
  min-height: 120px;
}
.detail .k {
  font-size: 14px;
  color: var(--slate);
}
.detail .v {
  font-size: 24px;
  letter-spacing: -0.01em;
  font-weight: 600;
  margin-top: 8px;
}
.detail .v.text { font-size: 20px; }
.energy-pill {
  display: inline-block;
  padding: 6px 12px;
  background: #F4C03A;
  color: #5C4500;
  border-radius: 6px;
  font-weight: 600;
  font-size: 18px;
  margin-top: 8px;
  width: fit-content;
}

@media (max-width: 800px) { .details-grid { grid-template-columns: repeat(2, 1fr); } }

/* Neighborhood */
.hood-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.stat-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
}
.stat-card .k {
  font-size: 14px;
  color: var(--slate);
}
.stat-card .v {
  font-size: 44px;
  letter-spacing: -0.025em;
  font-weight: 600;
  margin: 8px 0 8px;
}
.stat-card .v .delta { font-size: 16px; color: var(--mint); margin-left: 6px; }
.stat-card .desc { color: var(--slate); font-size: 14px; }

.compare-bars {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  grid-column: span 2;
}
.compare-bars h4 {
  font-size: 18px; font-weight: 600; margin: 0 0 24px;
  letter-spacing: -0.01em;
}
.bar-row {
  display: grid;
  grid-template-columns: 200px 1fr 100px;
  gap: 16px;
  align-items: center;
  padding: 10px 0;
}
.bar-label { font-size: 14px; color: var(--slate); }
.bar-track {
  height: 20px;
  background: var(--paper-2);
  border-radius: 4px;
  position: relative; overflow: hidden;
}
.bar-fill {
  height: 100%;
  border-radius: 4px;
  background: var(--navy-900);
}
.bar-fill.amber { background: var(--amber); }
.bar-value { font-size: 14px; text-align: right; font-weight: 500; }
@media (max-width: 700px) {
  .hood-grid { grid-template-columns: 1fr; }
  .compare-bars { grid-column: auto; }
  .bar-row { grid-template-columns: 1fr; }
}

/* Chart */
.chart-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
}
.chart-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 24px; flex-wrap: wrap; gap: 16px;
}
.legend { display: flex; gap: 20px; flex-wrap: wrap; font-size: 13px; color: var(--slate); }
.legend-item { display: flex; align-items: center; gap: 8px; }
.legend-swatch { width: 14px; height: 3px; border-radius: 2px; }
.chart-svg { width: 100%; height: auto; display: block; }

/* Lasten */
.lasten {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.lasten .total {
  background: var(--navy-900); color: var(--paper); border-color: var(--navy-900);
}
.lasten .total .k { color: var(--amber); }
@media (max-width: 720px) { .lasten { grid-template-columns: repeat(2, 1fr); } }

/* Report actions */
.report-actions {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-top: 40px;
}

/* ================== Article content ================== */
.article-content {
  max-width: 720px;
}
.article-content h2 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 48px 0 16px;
  line-height: 1.2;
}
.article-content h2:first-child { margin-top: 0; }
.article-content h3 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 32px 0 12px;
  line-height: 1.2;
}
.article-content p {
  color: var(--slate);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 16px;
}
.article-content ul,
.article-content ol {
  color: var(--slate);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 16px;
  padding-left: 24px;
}
.article-content li { margin-bottom: 6px; }
.article-content strong { color: var(--ink); }
.article-content a {
  color: var(--navy-700);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--line);
  transition: text-decoration-color .12s ease;
}
.article-content a:hover { text-decoration-color: var(--navy-700); }
.article-content .formula-block {
  background: var(--navy-900);
  color: var(--paper);
  border-radius: var(--radius);
  padding: 28px 32px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 24px 0;
  text-align: center;
}
.article-content .info-block {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 24px 0;
}
.article-content .info-block p { margin-bottom: 0; }
.article-content .info-block strong { display: block; margin-bottom: 4px; }
.article-cta {
  background: var(--amber);
  color: var(--navy-900);
  border-radius: var(--radius);
  padding: 32px;
  margin: 40px 0;
  text-align: center;
}
.article-cta p {
  color: var(--navy-900) !important;
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 16px;
}
.article-cta .btn-cta {
  background: var(--navy-900);
  color: var(--paper);
}
.article-cta .btn-cta:hover {
  background: var(--navy-800);
}
