/* ============================================================
   HostSignal — design tokens
   Concept: a "signal board" for hosting reviews. Colored status
   dots (amber = recommended, teal = good, coral = avoid) are a
   real verdict system used throughout, not decoration. Numeric
   data in tables is set in monospace for honest tabular alignment.
   ============================================================ */

:root {
  /* Color */
  --ink: #121826;         /* primary text / dark panels */
  --ink-soft: #4B5266;    /* secondary text on paper */
  --ink-2: #1B2338;       /* slightly lifted dark panel */
  --paper: #F5F6F4;       /* page background */
  --white: #FFFFFF;       /* card surfaces on paper */
  --line: #DADCD5;        /* hairline borders on paper */
  --line-dark: #2B3350;   /* hairline borders on dark panels */
  --amber: #F2A93B;       /* recommended / primary CTA */
  --amber-ink: #4A2E00;   /* text on amber */
  --teal: #2E9C92;        /* good / links */
  --teal-dim: #E4F2F0;    /* teal tint background */
  --coral: #D9534F;       /* avoid / caution */
  --coral-dim: #FBEAE9;   /* coral tint background */

  /* Type */
  --font-display: 'Space Grotesk', 'Arial', sans-serif;
  --font-body: 'IBM Plex Sans', 'Segoe UI', sans-serif;
  --font-mono: 'IBM Plex Mono', 'Courier New', monospace;

  /* Layout */
  --max: 1120px;
  --radius: 5px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--teal); text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
a:hover { color: var(--ink); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.1rem, 4vw, 3.1rem); }
h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1.1em; max-width: 68ch; }
.section p, .card p { max-width: 62ch; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 2px;
}

/* ---------------- Header / nav ---------------- */

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 9px;
}

.logo:hover { color: var(--ink); }

.logo-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 3px var(--teal-dim);
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0; padding: 0;
}

.nav-links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.96rem;
  font-weight: 500;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ink);
  border-bottom-color: var(--amber);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px 10px;
  cursor: pointer;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: "";
  display: block;
  width: 20px; height: 2px;
  background: var(--ink);
  position: relative;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    gap: 0;
    padding: 8px 24px 18px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { display: block; padding: 12px 0; border-bottom: 1px solid var(--line); }
}

/* ---------------- Hero ---------------- */

.hero {
  background: var(--ink);
  color: var(--paper);
  padding: 68px 0 56px;
}

.hero .container { max-width: var(--max); }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #B9BFD4;
  font-size: 0.92rem;
  margin-bottom: 18px;
}

.hero h1 { color: var(--white); max-width: 16ch; }

.hero .lede {
  color: #C7CBDC;
  font-size: 1.15rem;
  max-width: 52ch;
  margin-bottom: 28px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }

/* ---------------- Buttons ---------------- */

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 13px 22px;
  border-radius: var(--radius);
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--amber);
  color: var(--amber-ink);
}
.btn-primary:hover { background: #E39A26; color: var(--amber-ink); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: #3A4266;
}
.btn-ghost:hover { border-color: var(--amber); color: var(--white); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-outline:hover { border-color: var(--ink); color: var(--ink); }

.btn-small { padding: 9px 16px; font-size: 0.88rem; }
.btn-block { display: block; text-align: center; width: 100%; }

/* ---------------- Status board (hero picks) ---------------- */

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

@media (max-width: 780px) {
  .status-board { grid-template-columns: 1fr; }
}

.status-card {
  background: var(--ink-2);
  border: 1px solid var(--line-dark);
  border-left: 3px solid var(--amber);
  border-radius: var(--radius);
  padding: 20px 20px 18px;
}

.status-card.is-teal { border-left-color: var(--teal); }
.status-card.is-coral { border-left-color: var(--coral); }

.status-card .rank {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: #8A90AC;
  margin-bottom: 10px;
}

.status-card h3 { color: var(--white); margin-bottom: 6px; font-size: 1.1rem; }
.status-card .verdict { color: #B9BFD4; font-size: 0.92rem; margin-bottom: 14px; }

.status-card .price {
  font-family: var(--font-mono);
  color: var(--amber);
  font-size: 1.05rem;
  margin-bottom: 14px;
}
.status-card.is-teal .price { color: var(--teal); }

/* ---------------- Dots / badges ---------------- */

.dot {
  display: inline-block;
  width: 9px; height: 9px;
  border-radius: 50%;
  margin-right: 7px;
  flex-shrink: 0;
}
.dot-amber { background: var(--amber); }
.dot-teal { background: var(--teal); }
.dot-coral { background: var(--coral); }

.tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 4px 10px 4px 8px;
  border-radius: 999px;
  background: var(--teal-dim);
  color: #0E5850;
}
.tag.tag-coral { background: var(--coral-dim); color: #8C2622; }

/* ---------------- Sections ---------------- */

.section { padding: 64px 0; }
.section-white { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-tight { padding: 44px 0; }

.section-head { max-width: 62ch; margin-bottom: 40px; }
.section-head .kicker {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.92rem; color: var(--ink-soft); margin-bottom: 10px;
}

/* ---------------- Reason / feature grid ---------------- */

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }

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

.reason {
  border-top: 2px solid var(--ink);
  padding-top: 16px;
}
.reason h3 { font-size: 1.05rem; margin-bottom: 8px; }
.reason p { font-size: 0.96rem; color: var(--ink-soft); }

/* ---------------- Cards (guides, reviews list) ---------------- */

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 860px) { .card-grid { grid-template-columns: 1fr; } }

.card .cat {
  font-size: 0.82rem;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 8px;
}
.card h3 { margin-bottom: 8px; }
.card p { font-size: 0.94rem; color: var(--ink-soft); margin-bottom: 14px; }
.card a.card-link { font-weight: 600; font-size: 0.92rem; text-decoration: none; }
.card a.card-link:hover { text-decoration: underline; }

/* ---------------- Tables (comparisons, specs) ---------------- */

.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); }

table.spec {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  min-width: 560px;
}

table.spec th, table.spec td {
  text-align: left;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  font-size: 0.94rem;
}

table.spec thead th {
  background: var(--paper);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
}

table.spec tbody tr:last-child td { border-bottom: none; }
table.spec td.num, table.spec th.num { font-family: var(--font-mono); }
table.spec td.feature-label { color: var(--ink-soft); font-weight: 500; }
table.spec .win { color: #0E5850; font-weight: 600; }

/* ---------------- Pros / cons ---------------- */

.pc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 24px 0; }
@media (max-width: 700px) { .pc-grid { grid-template-columns: 1fr; } }
.pc-box { border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 20px; background: var(--white); }
.pc-box h4 { font-family: var(--font-body); font-size: 0.92rem; font-weight: 700; margin-bottom: 10px; }
.pc-box.pros h4 { color: #0E5850; }
.pc-box.cons h4 { color: #8C2622; }
.pc-box ul { margin: 0; padding-left: 18px; }
.pc-box li { margin-bottom: 7px; font-size: 0.94rem; }

/* ---------------- Review header ---------------- */

.review-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 30px; flex-wrap: wrap;
  border-bottom: 1px solid var(--line);
  padding-bottom: 28px; margin-bottom: 30px;
}
.review-score {
  font-family: var(--font-mono);
  font-size: 2.4rem;
  color: var(--ink);
  line-height: 1;
}
.review-score span { font-size: 1.1rem; color: var(--ink-soft); }
.review-meta { display: flex; gap: 26px; flex-wrap: wrap; margin-top: 14px; }
.review-meta .m-item { font-size: 0.88rem; color: var(--ink-soft); }
.review-meta .m-item strong { display: block; font-family: var(--font-mono); color: var(--ink); font-size: 1.05rem; }

/* ---------------- Breadcrumb ---------------- */

.crumb { font-size: 0.86rem; color: var(--ink-soft); margin-bottom: 18px; }
.crumb a { color: var(--ink-soft); text-decoration: none; }
.crumb a:hover { color: var(--teal); }

/* ---------------- CTA band ---------------- */

.cta-band {
  background: var(--ink);
  color: var(--white);
  padding: 52px 0;
  text-align: left;
}
.cta-band h2 { color: var(--white); max-width: 24ch; }
.cta-band p { color: #C7CBDC; }
.cta-band .container { display: flex; justify-content: space-between; align-items: center; gap: 30px; flex-wrap: wrap; }
.cta-band .cta-copy { max-width: 44ch; }

/* ---------------- Blog ---------------- */

.post-list { display: grid; gap: 22px; }
.post-row {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 24px 0; border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.post-row h3 { margin-bottom: 6px; }
.post-row .date { font-family: var(--font-mono); font-size: 0.82rem; color: var(--ink-soft); white-space: nowrap; margin-left: auto; }

article.prose h2 { margin-top: 1.6em; }
article.prose h3 { margin-top: 1.3em; }
article.prose ul, article.prose ol { max-width: 66ch; }
article.prose li { margin-bottom: 0.4em; }
article.prose blockquote {
  margin: 1.6em 0; padding: 4px 0 4px 20px;
  border-left: 3px solid var(--amber);
  color: var(--ink-soft); font-style: normal;
}

/* ---------------- Disclosure note (used on review/compare pages) ---------------- */

.disclosure-note {
  font-size: 0.86rem;
  color: var(--ink-soft);
  border-left: 3px solid var(--line);
  padding: 10px 16px;
  margin: 20px 0 32px;
  background: var(--paper);
}
.disclosure-note a { color: var(--ink-soft); }

/* ---------------- Footer ---------------- */

.site-footer {
  background: var(--ink);
  color: #B9BFD4;
  padding: 56px 0 30px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 42px;
}
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

.footer-grid h4 {
  font-family: var(--font-body);
  color: var(--white);
  font-size: 0.88rem;
  margin-bottom: 14px;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a { color: #B9BFD4; text-decoration: none; font-size: 0.92rem; }
.footer-grid a:hover { color: var(--white); }

.footer-brand .logo { color: var(--white); margin-bottom: 12px; }
.footer-brand p { color: #8A90AC; font-size: 0.9rem; }

.footer-bottom {
  border-top: 1px solid var(--line-dark);
  padding-top: 22px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 0.84rem; color: #7A80A0;
}
.footer-bottom a { color: #7A80A0; }

/* ---------------- Utility ---------------- */

.mt-0 { margin-top: 0; }
.center-narrow { max-width: 62ch; }

/* ---------------- Newsletter band (sitewide, above footer) ---------------- */

.newsletter-band {
  background: var(--teal-dim);
  padding: 38px 0;
  border-top: 1px solid var(--line);
}
.newsletter-band .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.newsletter-copy h2 { font-size: 1.25rem; margin-bottom: 4px; color: #0E5850; }
.newsletter-copy p { margin: 0; color: #12665D; font-size: 0.9rem; max-width: 46ch; }
.newsletter-form { display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter-form input[type="email"] {
  padding: 12px 14px;
  border: 1px solid #9FCFC9;
  border-radius: var(--radius);
  font-family: var(--font-body);
  min-width: 240px;
  font-size: 0.94rem;
}
.newsletter-note { width: 100%; font-size: 0.78rem; color: #12665D; margin-top: 8px; opacity: 0.85; }

/* ---------------- Coupon / deal cards ---------------- */

.coupon-card {
  border: 1px dashed var(--line);
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.coupon-card .host-name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; }
.coupon-card .offer { color: var(--ink-soft); font-size: 0.94rem; }
.code-chip {
  display: inline-block;
  font-family: var(--font-mono);
  background: var(--paper);
  border: 1px dashed var(--line);
  padding: 8px 14px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  width: fit-content;
}

/* ============================================================
   Warmth pass — rounder shapes, soft elevation, trust badges,
   icon-led banners. Inspired by the general feel of friendly,
   editorial hosting-review sites (badges, big visual anchors,
   icon-illustrated tool cards) — original colors/shapes/copy.
   ============================================================ */

:root {
  --radius: 10px;
  --radius-lg: 18px;
  --shadow-sm: 0 1px 3px rgba(18,24,38,0.06), 0 1px 2px rgba(18,24,38,0.08);
  --shadow-md: 0 8px 24px rgba(18,24,38,0.10);
  --warm-blue: #1B3E68;   /* deeper, warmer navy for gradients */
  --warm-blue-2: #2A5A8C;
}

.hero {
  background: linear-gradient(155deg, var(--ink) 0%, var(--warm-blue) 55%, var(--warm-blue-2) 100%);
}

.btn { border-radius: var(--radius); }
.btn-primary { box-shadow: var(--shadow-sm); transition: transform 0.15s ease, box-shadow 0.15s ease; }
.btn-primary:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }

.card, .status-card, .coupon-card, .pc-box, .table-wrap, .disclosure-note {
  border-radius: var(--radius-lg);
}
.card { box-shadow: var(--shadow-sm); transition: transform 0.15s ease, box-shadow 0.15s ease; border: 1px solid var(--line); }
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.status-card { box-shadow: 0 8px 24px rgba(0,0,0,0.18); }

/* ---------------- Trust badge row ---------------- */

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 26px 0 44px;
  padding-top: 20px;
  border-top: 1px solid var(--line-dark);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #C7CBDC;
  font-size: 0.88rem;
}
.trust-item .icon { color: var(--amber); flex-shrink: 0; }
.trust-item strong { color: var(--white); font-family: var(--font-mono); font-weight: 500; }

/* ---------------- Feature banner (icon-led visual anchor for cards) ---------------- */

.feature-banner {
  height: 108px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -24px -24px 18px;
  position: relative;
  overflow: hidden;
}
.feature-banner svg { width: 34px; height: 34px; position: relative; z-index: 1; }
.feature-banner .fb-label {
  position: absolute;
  bottom: 10px; left: 16px;
  font-size: 0.76rem;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.02em;
  z-index: 1;
}
.fb-amber { background: linear-gradient(135deg, #F2A93B, #D9852B); }
.fb-teal { background: linear-gradient(135deg, #3CBBAF, #1F7A72); }
.fb-blue { background: linear-gradient(135deg, var(--warm-blue-2), var(--ink)); }
.fb-coral { background: linear-gradient(135deg, #E7776F, #C1443C); }
.feature-banner svg { color: rgba(255,255,255,0.95); }

.post-row .feature-banner,
.card .feature-banner { margin-bottom: 16px; }

/* Post rows become card-like with the banner as a left-hand thumbnail on wider screens */
.post-row { align-items: flex-start; }
.post-row .fb-thumb {
  width: 96px; height: 96px; flex-shrink: 0;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
}
.post-row .fb-thumb svg { width: 30px; height: 30px; color: rgba(255,255,255,0.95); }
.post-row-body { flex: 1; min-width: 200px; }

/* Icon badge used inline (reasons, mini cards) */
.icon-badge {
  width: 40px; height: 40px;
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.icon-badge svg { width: 20px; height: 20px; color: #fff; }
.reason .icon-badge { background: var(--ink); }

/* ---------------- FAQ accordion (native <details>, zero JS) ---------------- */

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 4px 0;
}
.faq-item summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  padding: 16px 30px 16px 0;
  position: relative;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 4px; top: 14px;
  font-size: 1.3rem;
  color: var(--teal);
  transition: transform 0.15s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-a { padding: 0 0 18px; color: var(--ink-soft); max-width: 66ch; }

/* ---------------- Quiz widget ---------------- */

.quiz-widget {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-md);
  max-width: 620px;
}
.quiz-progress { display: flex; gap: 6px; margin-bottom: 22px; }
.quiz-progress span { height: 4px; flex: 1; background: var(--line); border-radius: 2px; transition: background 0.2s ease; }
.quiz-progress span.active { background: var(--amber); }
.quiz-widget .q-label { font-family: var(--font-mono); font-size: 0.8rem; color: var(--ink-soft); margin-bottom: 6px; }
.quiz-options { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.quiz-opt {
  text-align: left;
  padding: 15px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.12s ease;
}
.quiz-opt:hover { border-color: var(--teal); background: var(--teal-dim); transform: translateX(3px); }
.quiz-opt:focus-visible { outline: 3px solid var(--amber); outline-offset: 2px; }
.quiz-result h3 { font-size: 1.7rem; margin-bottom: 6px; }
.quiz-result .quiz-badge {
  display: inline-block; background: var(--teal-dim); color: #0E5850;
  font-size: 0.82rem; font-weight: 600; padding: 5px 12px; border-radius: 999px; margin-bottom: 14px;
}
.quiz-actions { display: flex; gap: 12px; margin-top: 22px; flex-wrap: wrap; align-items: center; }

/* ---------------- Tabs (interactive compare widget) ---------------- */

.tab-buttons {
  display: inline-flex;
  gap: 4px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
  margin-bottom: 24px;
}
.tab-btn {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 9px 18px;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.tab-btn:hover { color: var(--ink); }
.tab-btn.active { background: var(--ink); color: var(--white); }
.tab-panel[hidden] { display: none; }

/* ---------------- Rank badge (ranking-page cards) ---------------- */

.rank-header { display: flex; align-items: center; gap: 16px; margin-bottom: 14px; }
.rank-num {
  width: 54px; height: 54px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1.3rem;
  color: #fff; flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.rank-num.amber { background: linear-gradient(135deg, #F2A93B, #D9852B); }
.rank-num.teal { background: linear-gradient(135deg, #3CBBAF, #1F7A72); }
.rank-label { font-size: 0.86rem; color: var(--ink-soft); font-weight: 600; margin: 0 0 3px; }
