@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@600;700&family=Inter:wght@400;500;600&family=IBM+Plex+Mono:wght@500&display=swap');

:root {
  /* Brand tokens, updated 2026-08-19 to the new brand system (was navy
     #071A2A / yellow #F4D40B / powder-blue #A9D8EA / ice #F3F8FA / slate
     #526575 -- the same rebrand already live in the generated social cards,
     Pinterest pins, concept art, and logo files). Names kept as-is, same
     reasoning used everywhere else in this rebrand: every selector below
     references these by name, so keeping the names and swapping the values
     avoided a much riskier full find-and-replace across the whole file. */
  --midnight: #001619;        /* Blue Charcoal -- primary dark */
  --midnight-hover: #05282D;  /* Deep Teal Charcoal -- secondary dark, hover state */
  --midnight-active: #000D0B; /* darker still -- pressed state */
  --powder: #50E8F4;          /* Electric Cyan -- secondary accent */
  --yellow: #FFBD65;          /* Pastel Orange -- primary accent */
  --yellow-hover: #EFAD5A;
  --yellow-active: #D8995A;
  --yellow-disabled: #FFE2BA; /* Soft Orange -- background-safe tint */
  --ice: #F7F3EA;             /* Warm Porcelain -- primary light bg (was pale blue-white) */
  --slate: #60777A;           /* Slate Teal -- muted text (was a cooler gray-blue) */
  --white: #FFFFFF;
  --border: #D5DDDA;          /* Soft Border */
  --success: #2C7A5A;

  /* Supporting colors, added 2026-08-19 from the same brand system. Not
     applied anywhere below yet -- available for the next section, card, or
     state that needs a tint, a stronger-contrast teal, or a dark-background
     border instead of the tokens above. */
  --soft-porcelain: #EFE9DE;
  --teal-mist: #D9F3F3;
  --soft-orange: #FFE2BA;
  --medium-teal: #087B86;
  --border-dark: #244247;

  --font-display: "Space Grotesk", Arial, sans-serif;
  --font-body: "Inter", Arial, sans-serif;
  --font-mono: "IBM Plex Mono", monospace;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --shadow-card: 0 8px 24px rgba(0, 22, 25, .10);
  --max: 1080px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--midnight);
  background: var(--ice);
  line-height: 1.6;
}

h1, h2, h3 { font-family: var(--font-display); }

a { color: var(--midnight); text-decoration: none; font-weight: 600; }
a:hover { text-decoration: underline; }

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

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

/* Header */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo img { height: 34px; width: auto; display: block; }
nav.main-nav a {
  color: var(--midnight);
  font-weight: 600;
  font-size: 15px;
  margin-left: 26px;
}
nav.main-nav a:hover { color: var(--midnight-hover); text-decoration: none; }

/* Disclosure strip */
.disclosure-strip {
  background: var(--midnight);
  color: var(--powder);
  font-size: 13px;
  text-align: center;
  padding: 8px 12px;
}
.disclosure-strip a { color: var(--white); text-decoration: underline; font-weight: 600; }

/* Hero */
.hero {
  padding: 64px 0 40px;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 42px;
  line-height: 1.15;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
  max-width: 760px;
  color: var(--midnight);
}
.hero p.lead {
  font-size: 19px;
  color: var(--slate);
  max-width: 620px;
  margin: 0;
}

/* Category cards on homepage */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 40px 0 64px;
}
.cat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .15s ease, box-shadow .15s ease;
}
.cat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.cat-card .cat-photo {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--ice);
}
.cat-card .cat-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cat-card .cat-card-body { padding: 24px 28px 28px; }
.cat-card .eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--midnight);
  margin-bottom: 8px;
}
.cat-card h2 { font-family: var(--font-display); font-weight: 700; font-size: 22px; margin: 0 0 10px; color: var(--midnight); }
.cat-card p { color: var(--slate); font-size: 15px; margin: 0 0 16px; }
.cat-card a.cat-link { font-weight: 700; }

/* Category page hero image */
.category-hero {
  width: 100%;
  max-height: 340px;
  overflow: hidden;
}
.category-hero img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

/* Top 10 teaser on homepage */
.top10-teaser {
  background: var(--midnight);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin: 0 0 64px;
  color: var(--white);
}
.top10-teaser-head .eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--powder);
  margin-bottom: 10px;
}
.top10-teaser-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
  color: var(--white);
  max-width: 640px;
}
.top10-teaser-head .section-sub { color: var(--powder); max-width: 620px; margin: 0 0 28px; }
.top10-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}
.top10-chip {
  display: block;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--white);
}
.top10-chip img { width: 100%; height: 100%; object-fit: cover; }
.top10-chip-rank {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--yellow);
  color: var(--midnight);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
}
.top10-chip-name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,22,25,.9), transparent);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 22px 10px 8px;
  line-height: 1.25;
}
.top10-teaser .btn { display: inline-block; }

/* Top 10 blog post */
.top10-list { padding: 12px 24px 60px; max-width: 820px; margin: 0 auto; }
.top10-entry {
  display: flex;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.top10-entry:last-child { border-bottom: none; }
.top10-entry-media {
  flex: 0 0 140px;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
}
.top10-entry-media img { width: 100%; height: 100%; object-fit: cover; }
.top10-entry-body { flex: 1; min-width: 0; }
.top10-entry-rank {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--midnight);
  background: var(--powder);
  display: inline-block;
  padding: 2px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 10px;
}
.top10-entry-body h2 { font-family: var(--font-display); font-weight: 700; font-size: 22px; margin: 0 0 4px; color: var(--midnight); }
.top10-entry-meta { font-family: var(--font-mono); font-size: 12.5px; color: var(--slate); margin-bottom: 14px; }
.top10-entry-body p { color: #1F2D2F; font-size: 15.5px; margin: 0 0 14px; }
.top10-citations { font-size: 13px; color: var(--slate); }
.top10-citations-label { font-weight: 700; color: var(--midnight); margin-right: 4px; }
.top10-citations a { font-weight: 600; }

/* Product list (category page) */
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 30px;
  margin: 8px 0 6px;
  letter-spacing: -0.01em;
  color: var(--midnight);
}
.section-sub { color: var(--slate); font-size: 16px; max-width: 640px; margin: 0 0 36px; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 60px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
}
.product-card .product-photo {
  display: block;
  background: var(--ice);
  border-bottom: 1px solid var(--border);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  margin: -22px -22px 16px;
}
.product-card .product-photo img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 14px;
}
.product-card .price-tag {
  display: inline-block;
  font-family: var(--font-mono);
  background: var(--powder);
  color: var(--midnight);
  font-size: 12px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 10px;
}
.product-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 19px; margin: 0 0 8px; color: var(--midnight); }
.product-card p { color: var(--slate); font-size: 14.5px; margin: 0 0 14px; }
.product-card a.read-link { font-weight: 700; font-size: 14px; }

/* Review article */
.article-head { padding: 48px 0 20px; border-bottom: 1px solid var(--border); }
.breadcrumb { font-size: 13px; color: var(--slate); margin-bottom: 14px; }
.breadcrumb a { color: var(--slate); font-weight: 500; }
.article-head h1 { font-family: var(--font-display); font-weight: 700; font-size: 36px; margin: 0 0 12px; letter-spacing: -0.01em; color: var(--midnight); }
.article-meta { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.price-badge {
  font-family: var(--font-mono);
  background: var(--midnight);
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
}
.verdict-badge {
  font-family: var(--font-mono);
  background: var(--powder);
  color: var(--midnight);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
}

.product-hero {
  max-width: 420px;
  margin: 32px auto 0;
  padding: 0 24px;
}
.product-hero img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: var(--ice);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
}

.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 0 20px;
  font-size: 17px;
}
.article-body h2 { font-family: var(--font-display); font-weight: 700; font-size: 23px; margin: 40px 0 12px; letter-spacing: -0.01em; color: var(--midnight); }
.article-body p { margin: 0 0 18px; color: #1F2D2F; }
.article-body ul { margin: 0 0 18px; padding-left: 22px; }
.article-body li { margin-bottom: 8px; color: #1F2D2F; }

.cta-box {
  max-width: 720px;
  margin: 8px auto 60px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cta-box .cta-copy h3 { font-family: var(--font-display); margin: 0 0 4px; font-size: 18px; color: var(--midnight); }
.cta-box .cta-copy p { margin: 0; color: var(--slate); font-size: 14px; }

.btn {
  display: inline-block;
  background: var(--yellow);
  color: var(--midnight) !important;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  border: none;
  cursor: pointer;
}
.btn:hover { background: var(--yellow-hover); text-decoration: none; }
.btn:active { background: var(--yellow-active); }

.btn-secondary {
  display: inline-block;
  background: var(--midnight);
  color: var(--white) !important;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  border: none;
  cursor: pointer;
}
.btn-secondary:hover { background: var(--midnight-hover); text-decoration: none; }
.btn-secondary:active { background: var(--midnight-active); }

.inline-disclosure {
  max-width: 720px;
  margin: 0 auto 40px;
  font-size: 13.5px;
  color: var(--slate);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
}

/* Simple pages (about, privacy, disclosure, contact) */
.simple-page { max-width: 720px; margin: 0 auto; padding: 56px 0 80px; }
.simple-page h1 { font-family: var(--font-display); font-weight: 700; font-size: 34px; margin: 0 0 20px; color: var(--midnight); }
.simple-page h2 { font-family: var(--font-display); font-weight: 700; font-size: 20px; margin: 32px 0 10px; color: var(--midnight); }
.simple-page p { font-size: 16.5px; color: #1F2D2F; margin: 0 0 16px; }

/* Footer */
footer.site-footer {
  background: var(--midnight);
  padding: 40px 0;
  margin-top: 40px;
}
footer.site-footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
footer.site-footer .foot-links a {
  color: var(--powder);
  font-size: 14px;
  margin-right: 20px;
  font-weight: 600;
}
footer.site-footer .foot-links a:hover { color: var(--white); }
footer.site-footer .copy { color: #7C969B; font-size: 13px; }

@media (max-width: 860px) {
  .cat-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 32px; }
  .top10-strip { grid-template-columns: repeat(3, 1fr); }
  .top10-entry { flex-direction: column; }
  .top10-entry-media { flex-basis: auto; width: 100%; max-width: 180px; }
}
@media (max-width: 560px) {
  nav.main-nav { display: none; }
  .top10-teaser { padding: 28px 20px; }
  .top10-strip { grid-template-columns: repeat(2, 1fr); }
}

/* ---- Guide product callout cards (used inside .article-body via {{PRODUCT:slug}}) ---- */
.pick {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin: 0 0 28px;
}
.pick-photo {
  flex: 0 0 116px;
  width: 116px;
  height: 116px;
  object-fit: contain;
  background: var(--ice);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px;
}
.pick-body { flex: 1 1 auto; min-width: 0; }
.pick-tag {
  display: inline-block;
  background: var(--ice);
  border: 1px solid var(--border);
  color: var(--slate);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 999px;
  margin-bottom: 8px;
}
.pick-body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  margin: 0 0 8px;
  color: var(--midnight);
}
.pick-body p { font-size: 15px; margin: 0 0 14px; color: #1F2D2F; }
.pick-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.pick-actions .btn { padding: 9px 18px; font-size: 14.5px; }
.pick-actions .read-link { font-weight: 700; font-size: 14px; }

@media (max-width: 620px) {
  .pick { flex-direction: column; gap: 14px; }
  .pick-photo { flex: 0 0 auto; width: 100%; height: 180px; }
}

/* Guide standfirst + eyebrow in the article head */
.article-head .eyebrow { margin-bottom: 10px; }
.article-head .section-sub { max-width: 680px; margin-top: 12px; }

/* ---- "Where this fits" cross-link from a review into the guides featuring it ---- */
.also-in {
  max-width: 720px;
  margin: 8px auto 28px;
  background: var(--ice);
  border: 1px solid var(--border);
  border-left: 4px solid var(--yellow);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
}
.also-in h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  margin: 0 0 8px;
  color: var(--midnight);
}
.also-in p { margin: 0 0 10px; font-size: 15px; color: var(--slate); }
.also-in ul { margin: 0; padding-left: 20px; }
.also-in li { margin-bottom: 5px; font-size: 15.5px; font-weight: 600; }

/* ---- Editorial rating scorecard on review pages ---- */
.score-card {
  max-width: 720px;
  margin: 28px auto 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 24px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.score-card-overall {
  flex: 0 0 auto;
  background: var(--midnight);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  text-align: center;
  min-width: 92px;
}
.score-card-number {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 34px;
  color: var(--yellow);
  line-height: 1;
}
.score-card-outof {
  display: block;
  font-size: 12px;
  color: var(--powder);
  margin-top: 2px;
}
.score-card-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--powder);
  margin-top: 8px;
}
.score-card-body { flex: 1 1 auto; min-width: 0; }
.score-card-summary {
  margin: 0 0 16px;
  font-size: 15px;
  color: var(--slate);
  line-height: 1.55;
}
.score-card-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.score-card-grid li {
  display: grid;
  grid-template-columns: 148px 1fr 30px;
  align-items: center;
  gap: 10px;
}
.score-card-cat-label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--midnight);
}
.score-card-bar {
  display: block;
  height: 6px;
  border-radius: var(--radius-pill);
  background: var(--ice);
  border: 1px solid var(--border);
  overflow: hidden;
}
.score-card-bar-fill {
  display: block;
  height: 100%;
  background: var(--yellow);
  border-radius: var(--radius-pill);
}
.score-card-cat-value {
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--slate);
  text-align: right;
}
@media (max-width: 560px) {
  .score-card { flex-direction: column; align-items: stretch; }
  .score-card-overall { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 16px; }
  .score-card-number, .score-card-outof, .score-card-label { display: inline-block; margin: 0; }
  .score-card-grid li { grid-template-columns: 118px 1fr 30px; }
  .score-card-cat-label { font-size: 11.5px; }
}

/* ---- "Most Anticipated Tech" list (mirrors .top10-* structure, extended for
   category/timing/confidence badges, tiered evidence, and cross-links) ---- */
.anticipated-list { padding: 12px 24px 60px; max-width: 820px; margin: 0 auto; }
.anticipated-entry {
  display: flex;
  gap: 24px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}
.anticipated-entry:last-child { border-bottom: none; }
.anticipated-entry-media {
  flex: 0 0 160px;
  width: 160px;
}
.anticipated-entry-media img {
  display: block;
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--ice);
}
.anticipated-media-caption {
  display: block;
  font-size: 10.5px;
  color: var(--slate);
  text-align: center;
  margin-top: 6px;
  line-height: 1.3;
}
.anticipated-entry-body { flex: 1; min-width: 0; }
.anticipated-entry-top {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.anticipated-entry-rank {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 13px;
  color: var(--midnight);
  background: var(--powder);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}
.anticipated-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--slate);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}
.anticipated-badge-confidence { color: var(--midnight); border-color: var(--midnight); }
.anticipated-entry-body h2 { font-family: var(--font-display); font-weight: 700; font-size: 22px; margin: 0 0 4px; color: var(--midnight); }
.anticipated-entry-meta { font-family: var(--font-mono); font-size: 12.5px; color: var(--slate); margin-bottom: 14px; }
.anticipated-entry-why { color: #1F2D2F; font-size: 15.5px; margin: 0 0 18px; }

.evidence-tiers { display: grid; gap: 12px; margin-bottom: 18px; }
.evidence-tier {
  border: 1px solid var(--border);
  border-left-width: 4px;
  border-radius: var(--radius-md);
  background: var(--ice);
  padding: 12px 16px;
}
.evidence-tier-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 6px;
  color: var(--midnight);
}
.evidence-tier ul { margin: 0; padding-left: 18px; }
.evidence-tier li { font-size: 14px; color: #1F2D2F; margin-bottom: 4px; }
.evidence-tier li:last-child { margin-bottom: 0; }
.evidence-tier p { margin: 0; font-size: 14px; color: #1F2D2F; line-height: 1.55; }
.evidence-known { border-left-color: #2E8B57; }
.evidence-reported { border-left-color: var(--powder); }
.evidence-rumor { border-left-color: var(--yellow); }
.evidence-projection { border-left-color: var(--slate); background: var(--white); }

.anticipated-crosslink {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  margin-bottom: 16px;
}
.anticipated-crosslink p { margin: 0 0 8px; font-size: 14.5px; color: var(--slate); }
.anticipated-crosslink a.read-link { font-weight: 700; font-size: 14px; }

@media (max-width: 560px) {
  .anticipated-entry { flex-direction: column; }
  .anticipated-entry-media { width: 100%; }
  .anticipated-entry-media img { width: 100%; height: 200px; }
}
