/* ===================================================================
   BitCurrent HQ — Editorial Design System
   Inspired by NYT Wirecutter, Consumer Reports, The Verge
   =================================================================== */

:root {
  /* Surfaces */
  --bg-page:        #FAF8F5;
  --bg-card:        #FFFFFF;
  --bg-subtle:      #F3F0EB;
  --bg-warm:        #EFEBE2;

  /* Text */
  --text-primary:   #1A1A1A;
  --text-secondary: #4A4A4A;
  --text-muted:     #6B6B6B;
  --text-faint:     #9A9A9A;

  /* Borders */
  --border:         #E5E1DA;
  --border-subtle:  #EEEAE3;
  --border-strong:  #1A1A1A;

  /* Accent — editorial navy */
  --accent:         #1F3A5F;
  --accent-dark:    #142844;
  --accent-soft:    #E8EEF6;

  /* Semantic */
  --success:        #2D6A4F;
  --success-soft:   #E8F0EC;
  --danger:         #A02828;
  --danger-soft:    #F5E8E8;
  --warning:        #B8860B;

  /* Dark inverse */
  --dark-bg:        #1A1A1A;
  --dark-bg-2:      #262626;
  --dark-text:      #E5E1DA;
  --dark-muted:     #9A9A9A;

  /* Typography */
  --font-display: 'Source Serif 4', 'Source Serif Pro', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono:    'JetBrains Mono', 'SF Mono', Consolas, monospace;

  /* Sizes */
  --fs-h1:    clamp(2.25rem, 1.5rem + 3vw, 3.75rem);
  --fs-h2:    clamp(1.75rem, 1.3rem + 2vw, 2.5rem);
  --fs-h3:    clamp(1.375rem, 1.15rem + 1vw, 1.75rem);
  --fs-h4:    clamp(1.125rem, 1rem + 0.5vw, 1.25rem);
  --fs-body:  1.0625rem;
  --fs-small: 0.9375rem;
  --fs-caption: 0.8125rem;

  --lh-display: 1.15;
  --lh-heading: 1.25;
  --lh-body:    1.65;
  --lh-tight:   1.4;

  --ls-display: -0.02em;
  --ls-heading: -0.01em;
  --ls-caps:    0.1em;

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-24: 6rem;

  /* Containers */
  --container-narrow: 760px;
  --container-mid:    980px;
  --container-wide:   1180px;
  --gutter:           clamp(1rem, 4vw, 2rem);
  --section-py:       clamp(3.5rem, 6vw, 5.5rem);

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(26, 26, 26, 0.04);
  --shadow-md: 0 2px 8px rgba(26, 26, 26, 0.06), 0 1px 2px rgba(26, 26, 26, 0.04);
  --shadow-lg: 0 8px 24px rgba(26, 26, 26, 0.08);

  --radius-none: 0;
  --radius-sm:   2px;
  --radius-md:   4px;
  --radius-lg:   8px;
  --radius-pill: 999px;

  --transition: 150ms ease-out;
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--text-primary);
  background: var(--bg-page);
  font-feature-settings: "kern" 1, "liga" 1;
}

img, svg { display: block; max-width: 100%; }
ul { list-style: none; }

a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: text-decoration-thickness var(--transition);
}
a:hover { text-decoration-thickness: 2px; color: var(--accent-dark); }
a.no-underline, .nav a, .footer-links a, .logo, .topbar a, .btn { text-decoration: none; }
a.no-underline:hover { text-decoration: none; }

/* Containers */
.container { max-width: var(--container-wide); margin: 0 auto; padding: 0 var(--gutter); }
.container-mid { max-width: var(--container-mid); margin: 0 auto; padding: 0 var(--gutter); }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 var(--gutter); }

/* =================================================================
   TYPOGRAPHY
   ================================================================= */
h1, h2, h3 { font-family: var(--font-display); color: var(--text-primary); line-height: var(--lh-display); letter-spacing: var(--ls-display); font-weight: 600; }
h4 { font-family: var(--font-body); font-weight: 700; letter-spacing: var(--ls-heading); }

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); line-height: var(--lh-heading); }
h3 { font-size: var(--fs-h3); line-height: var(--lh-heading); }
h4 { font-size: var(--fs-h4); line-height: var(--lh-tight); }

p { color: var(--text-secondary); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: var(--ls-caps);
  text-transform: uppercase;
  color: var(--text-muted);
}

.dek {
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--text-secondary);
  font-weight: 400;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-4);
}
.kicker::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--accent);
  display: inline-block;
}

/* =================================================================
   TOP BAR — masthead-style standards strip
   ================================================================= */
.topbar {
  background: var(--dark-bg);
  color: var(--dark-text);
  font-size: var(--fs-caption);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  flex-wrap: wrap;
  gap: var(--space-4);
}
.topbar-left { display: flex; gap: var(--space-4); align-items: center; color: var(--dark-muted); }
.topbar-left strong { color: var(--dark-text); font-weight: 500; }
.topbar-right { display: flex; gap: var(--space-6); }
.topbar-right a { color: var(--dark-muted); font-weight: 400; }
.topbar-right a:hover { color: var(--dark-text); }

/* =================================================================
   HEADER
   ================================================================= */
.header {
  background: var(--bg-page);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.logo:hover { color: var(--text-primary); }
.logo-mark {
  width: 36px; height: 36px;
  background: var(--accent);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
}
.logo-sub { color: var(--accent); font-weight: 700; }
.logo-tag {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav { display: flex; align-items: center; gap: var(--space-8); }
.nav a {
  color: var(--text-secondary);
  font-size: var(--fs-small);
  font-weight: 500;
  position: relative;
  padding: 6px 0;
}
.nav a:hover { color: var(--text-primary); }
.nav a.active { color: var(--text-primary); font-weight: 600; }
.nav a.active::after {
  content: ''; position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--accent);
}

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; }

/* =================================================================
   HERO — magazine style with byline
   ================================================================= */
.hero {
  padding: var(--space-24) 0 var(--space-16);
  border-bottom: 1px solid var(--border);
}
.hero-inner { max-width: 900px; }

.hero h1 {
  margin: 0 0 var(--space-6);
  font-weight: 600;
}
.hero h1 em { font-style: italic; color: var(--accent); font-weight: 500; }

.hero-dek {
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--text-secondary);
  font-weight: 400;
  max-width: 760px;
  margin-bottom: var(--space-8);
}

.hero-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-3);
  font-size: var(--fs-small);
  color: var(--text-muted);
  margin-bottom: var(--space-6);
}
.hero-meta .pill {
  background: var(--accent);
  color: white;
  padding: 4px 12px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
}
.hero-meta .dot { color: var(--text-faint); }

/* Byline row */
.byline {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-6) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.byline-avatars { display: flex; }
.byline-avatar {
  width: 40px; height: 40px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  border: 2px solid var(--bg-page);
  margin-left: -10px;
}
.byline-avatar:first-child { margin-left: 0; }
.av-1 { background: #FEE2E2; color: #991B1B; }
.av-2 { background: #FEF3C7; color: #92400E; }
.av-3 { background: #DBEAFE; color: #1E3A8A; }
.av-4 { background: #DCFCE7; color: #166534; }

.byline-text {
  font-size: var(--fs-small);
  line-height: 1.45;
}
.byline-by { color: var(--text-muted); }
.byline-text strong { color: var(--text-primary); font-weight: 600; }
.byline-text a { color: var(--text-primary); text-decoration: none; }
.byline-text a:hover { color: var(--accent); text-decoration: underline; }
.byline-text .byline-roles { color: var(--text-muted); display: block; margin-top: 2px; font-size: 0.82rem; }
.byline-dates {
  margin-left: auto;
  font-size: var(--fs-caption);
  color: var(--text-muted);
  text-align: right;
  line-height: 1.5;
}

.hero-cta { display: flex; gap: var(--space-3); flex-wrap: wrap; margin-top: var(--space-8); }

/* =================================================================
   BUTTONS
   ================================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.875rem 1.75rem;
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 600;
  border: 1.5px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: -0.005em;
}
.btn-primary { background: var(--accent); color: white; border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); color: white; }
.btn-outline { background: transparent; color: var(--text-primary); border-color: var(--text-primary); }
.btn-outline:hover { background: var(--text-primary); color: white; }
.btn-light { background: var(--bg-page); color: var(--text-primary); border-color: var(--bg-page); }
.btn-light:hover { background: var(--accent); color: white; border-color: var(--accent); }
.btn-sm { padding: 0.6rem 1.2rem; font-size: var(--fs-caption); }

/* =================================================================
   STATS BAR
   ================================================================= */
.stats {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: var(--space-12) 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}
.stat {
  text-align: left;
  padding: 0 var(--space-4);
  border-left: 1px solid var(--border);
}
.stat:first-child { border-left: none; padding-left: 0; }

.stat-num {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-2);
}
.stat-num .text-accent { color: var(--accent); }
.stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* =================================================================
   SECTIONS
   ================================================================= */
.section { padding: var(--section-py) 0; border-bottom: 1px solid var(--border); }
.section:last-of-type { border-bottom: none; }
.section--alt { background: var(--bg-card); }
.section--warm { background: var(--bg-warm); }
.section--dark { background: var(--dark-bg); color: var(--dark-text); }
.section--dark h2, .section--dark h3 { color: var(--dark-text); }
.section--dark p { color: var(--dark-muted); }
.section--dark .eyebrow { color: #93C5FD; }

.section-head {
  margin-bottom: var(--space-16);
  max-width: 720px;
}
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head .eyebrow { margin-bottom: var(--space-3); }
.section-head h2 { margin-bottom: var(--space-4); }
.section-head p { font-size: 1.18rem; line-height: 1.55; color: var(--text-muted); font-family: var(--font-display); }

.section-num {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: var(--space-2);
}

/* =================================================================
   TOP PICKS GRID
   ================================================================= */
.picks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.pick {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition), box-shadow var(--transition);
  overflow: hidden;
}
.pick:hover { border-color: var(--text-primary); box-shadow: var(--shadow-md); }
.pick-top-rule { height: 4px; background: var(--accent); }
.pick-top-rule.gold { background: var(--warning); }
.pick-top-rule.success { background: var(--success); }

.pick-body { padding: var(--space-8) var(--space-6); display: flex; flex-direction: column; flex: 1; }

.pick-badge {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-6);
  align-self: flex-start;
}
.pick-badge.gold { background: #FEF3C7; color: var(--warning); }
.pick-badge.green { background: var(--success-soft); color: var(--success); }

.pick-visual {
  background: var(--bg-warm);
  border-radius: var(--radius-sm);
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-6);
  border: 1px solid var(--border-subtle);
}

.pick h3 { font-size: 1.55rem; margin-bottom: var(--space-1); }
.pick-maker {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: var(--space-6);
}

.pick-score-row {
  display: flex;
  align-items: baseline;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--border);
}
.pick-score {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1;
  letter-spacing: -0.03em;
}
.pick-score-label {
  font-size: var(--fs-caption);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.pick-price {
  font-family: var(--font-mono);
  font-size: var(--fs-caption);
  color: var(--text-secondary);
  margin-left: auto;
  font-weight: 500;
}

.pick-summary {
  font-size: var(--fs-small);
  color: var(--text-secondary);
  margin-bottom: var(--space-6);
  flex: 1;
  line-height: 1.6;
}

.pick-key { margin-bottom: var(--space-6); }
.pick-key li {
  font-size: var(--fs-small);
  color: var(--text-secondary);
  padding: 5px 0;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.pick-key li::before {
  content: '+';
  color: var(--success);
  font-weight: 700;
  font-size: 1.05rem;
  flex-shrink: 0;
  line-height: 1.4;
}

.pick-link {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}
.pick-link:hover { text-decoration-thickness: 2px; }

/* =================================================================
   COMPARISON TABLE
   ================================================================= */
.notice {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  padding: var(--space-6);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-8);
  font-size: var(--fs-small);
  line-height: 1.6;
}
.notice strong { display: block; color: var(--text-primary); font-weight: 700; margin-bottom: 4px; }
.notice p { color: var(--text-secondary); }

.table-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow-x: auto;
}
table { width: 100%; border-collapse: collapse; font-size: var(--fs-small); }
thead { background: var(--bg-subtle); border-bottom: 2px solid var(--border-strong); }
th {
  text-align: left;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-primary);
  padding: 16px 18px;
  white-space: nowrap;
}
td {
  padding: 18px;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  vertical-align: middle;
}
tbody tr:last-child td { border-bottom: none; }
tbody tr:nth-child(odd) { background: var(--bg-subtle); }
tbody tr:hover { background: var(--accent-soft); }
td strong { color: var(--text-primary); font-weight: 600; }

.table-price {
  font-family: var(--font-mono);
  font-size: 0.88rem;
  color: var(--text-primary);
  font-weight: 500;
}
.table-rating {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

/* =================================================================
   METHODOLOGY GRID — with horizontal bar visualization
   ================================================================= */
.method-bar-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-8);
  margin-bottom: var(--space-12);
}
.method-bar-title {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-4);
}
.method-bar {
  display: flex;
  height: 48px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: var(--space-6);
  border: 1px solid var(--border);
}
.method-seg {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  position: relative;
  transition: opacity var(--transition);
}
.method-seg:hover { opacity: 0.85; }
.method-seg-pct { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; line-height: 1; }
.method-seg-label { font-size: 0.62rem; letter-spacing: 0.06em; text-transform: uppercase; margin-top: 2px; opacity: 0.9; }
.method-seg.c1 { background: #1F3A5F; flex: 40; }
.method-seg.c2 { background: #2D6A4F; flex: 20; }
.method-seg.c3 { background: #B8860B; flex: 15; }
.method-seg.c4 { background: #6B4226; flex: 15; }
.method-seg.c5 { background: #5A5A5A; flex: 10; }

.method-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-6);
}
.method-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  border-top: 3px solid var(--accent);
  transition: border-color var(--transition);
}
.method-card:nth-child(1) { border-top-color: #1F3A5F; }
.method-card:nth-child(2) { border-top-color: #2D6A4F; }
.method-card:nth-child(3) { border-top-color: #B8860B; }
.method-card:nth-child(4) { border-top-color: #6B4226; }
.method-card:nth-child(5) { border-top-color: #5A5A5A; }

.method-pct {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: var(--space-3);
  letter-spacing: -0.03em;
}
.method-card h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--space-2);
  color: var(--text-primary);
}
.method-card p {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-muted);
}

/* =================================================================
   FEATURE BLOCK
   ================================================================= */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: var(--space-16);
  align-items: center;
}
.feature-block h2 { margin-bottom: var(--space-6); }
.feature-block p { font-size: 1.08rem; line-height: 1.7; margin-bottom: var(--space-4); color: var(--text-secondary); }
.feature-block p:last-child { margin-bottom: 0; }
.feature-visual {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-12);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

/* =================================================================
   TRUST GRID (Editorial Independence)
   ================================================================= */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.trust-card {
  padding: var(--space-8);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  border-top: 3px solid var(--dark-text);
}
.trust-icon {
  width: 48px; height: 48px;
  background: var(--dark-text);
  color: var(--dark-bg);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-6);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
}
.trust-card h3 { color: var(--dark-text); margin-bottom: var(--space-3); font-size: 1.25rem; }
.trust-card p { color: var(--dark-muted); font-size: var(--fs-small); line-height: 1.6; }

/* =================================================================
   REVIEW ARTICLE
   ================================================================= */
.review-article {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: var(--space-12);
  padding: var(--space-12) 0;
  border-bottom: 1px solid var(--border);
}
.review-article:last-child { border-bottom: none; }
.review-article:first-of-type { padding-top: 0; }

.review-num {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.06em;
  margin-bottom: var(--space-2);
}
.review-article h3 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.5vw, 2.1rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-2);
}
.review-maker {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: var(--space-6);
}
.review-desc {
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: var(--space-8);
}

.review-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-8);
  overflow: hidden;
}
.review-spec {
  padding: var(--space-4) var(--space-6);
  border-bottom: 1px solid var(--border-subtle);
  border-right: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.review-spec:nth-child(2n) { border-right: none; }
.review-spec:nth-last-child(-n+2) { border-bottom: none; }
.review-spec-label {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.review-spec-value {
  color: var(--text-primary);
  font-weight: 500;
  font-size: var(--fs-small);
}

.review-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-8);
}
.review-pros h4, .review-cons h4 {
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
  padding-bottom: var(--space-2);
  border-bottom: 2px solid;
}
.review-pros h4 { color: var(--success); border-color: var(--success); }
.review-cons h4 { color: var(--danger); border-color: var(--danger); }
.review-pros li, .review-cons li {
  font-size: var(--fs-small);
  padding: 6px 0;
  color: var(--text-secondary);
  line-height: 1.5;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.review-pros li::before {
  content: '+';
  color: var(--success);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 1.05rem;
  line-height: 1.4;
}
.review-cons li::before {
  content: '−';
  color: var(--danger);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 1.05rem;
  line-height: 1.4;
}

.review-link {
  font-size: var(--fs-caption);
  color: var(--text-muted);
}

/* Review sidebar */
.review-sidebar { position: sticky; top: 100px; align-self: start; }
.review-card-side {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.review-visual {
  background: var(--bg-warm);
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border);
}
.review-side-body { padding: var(--space-6); }
.review-side-score {
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
  margin-bottom: var(--space-2);
}
.review-side-score-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1;
  letter-spacing: -0.03em;
}
.review-side-score-of {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-muted);
}
.review-side-score-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-6);
}
.review-side-price {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: var(--space-4) 0;
  border-top: 1px solid var(--border);
  font-size: var(--fs-small);
}
.review-side-price-label {
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.7rem;
  font-weight: 600;
}
.review-side-price-val {
  font-family: var(--font-mono);
  color: var(--text-primary);
  font-weight: 600;
}
.review-side-bestfor {
  background: var(--bg-subtle);
  padding: var(--space-4);
  border-radius: var(--radius-sm);
  margin-top: var(--space-3);
}
.review-side-bestfor-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}
.review-side-bestfor-text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

/* =================================================================
   ABOUT PAGE
   ================================================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--space-16);
  align-items: start;
}
.about-grid h2 { margin-bottom: var(--space-4); }
.about-grid p { font-size: 1.08rem; line-height: 1.7; margin-bottom: var(--space-4); color: var(--text-secondary); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-8) var(--space-6);
  text-align: center;
  transition: border-color var(--transition);
}
.team-card:hover { border-color: var(--text-primary); }
.team-avatar {
  width: 88px; height: 88px;
  margin: 0 auto var(--space-4);
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 600;
}
.team-card h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 2px;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}
.team-role {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-4);
}
.team-bio {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-muted);
}

/* =================================================================
   CONTACT PAGE
   ================================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--space-12);
  align-items: start;
}
.form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-12);
}
.form-wrap h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  margin-bottom: var(--space-2);
}
.form-wrap > p { color: var(--text-muted); font-size: var(--fs-small); margin-bottom: var(--space-8); }

.form-group { margin-bottom: var(--space-6); }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg-page);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: var(--fs-small);
  color: var(--text-primary);
  transition: border-color var(--transition), background var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--bg-card);
}
.form-group textarea { min-height: 140px; resize: vertical; }

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-8);
  margin-bottom: var(--space-4);
}
.contact-info-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: var(--space-6);
}
.contact-info-item {
  display: flex;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--border-subtle);
}
.contact-info-item:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
.contact-info-icon {
  width: 36px; height: 36px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-content strong {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
  font-weight: 700;
}
.contact-info-content a,
.contact-info-content span {
  color: var(--text-primary);
  font-size: var(--fs-small);
  line-height: 1.5;
  text-decoration: none;
}
.contact-info-content a:hover { color: var(--accent); }

/* =================================================================
   LEGAL PAGES
   ================================================================= */
.legal-page { padding: var(--space-24) 0; }
.legal-content { max-width: 760px; margin: 0 auto; }
.legal-content h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: var(--space-3);
}
.legal-updated {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: var(--space-12);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid var(--border);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.legal-content h2 {
  font-size: 1.55rem;
  margin-top: var(--space-12);
  margin-bottom: var(--space-4);
}
.legal-content p {
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: var(--space-4);
  color: var(--text-secondary);
}
.legal-content ul {
  padding-left: 0;
  margin-bottom: var(--space-6);
}
.legal-content li {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  padding: 4px 0 4px var(--space-6);
  position: relative;
}
.legal-content li::before {
  content: '';
  position: absolute;
  left: var(--space-2);
  top: 14px;
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

/* =================================================================
   CTA BANNER
   ================================================================= */
.cta-banner {
  background: var(--dark-bg);
  color: var(--dark-text);
  padding: var(--space-16) var(--space-12);
  border-radius: var(--radius-md);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--accent);
}
.cta-banner h2 { color: var(--dark-text); margin-bottom: var(--space-4); }
.cta-banner p {
  color: var(--dark-muted);
  max-width: 580px;
  margin: 0 auto var(--space-8);
  font-size: 1.12rem;
  font-family: var(--font-display);
  line-height: 1.5;
}

/* =================================================================
   UPDATE LOG (Changelog)
   ================================================================= */
.updates-list {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-8);
}
.updates-list h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-3);
  border-bottom: 2px solid var(--text-primary);
}
.update-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: var(--space-6);
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--border-subtle);
}
.update-item:last-child { border-bottom: none; }
.update-date {
  font-family: var(--font-mono);
  font-size: var(--fs-caption);
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.update-text { font-size: var(--fs-small); color: var(--text-secondary); line-height: 1.55; }
.update-text strong { color: var(--text-primary); font-weight: 600; }

/* =================================================================
   FOOTER
   ================================================================= */
.footer {
  background: var(--dark-bg);
  color: var(--dark-text);
  padding: var(--space-16) 0 var(--space-8);
  border-top: 4px solid var(--accent);
}
.footer .logo { color: var(--dark-text); }
.footer .logo-mark { background: var(--dark-text); color: var(--dark-bg); }
.footer .logo-tag { color: var(--dark-muted); }
.footer .logo-sub { color: #93C5FD; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
  gap: var(--space-12);
  margin-bottom: var(--space-12);
}
.footer-brand p {
  color: var(--dark-muted);
  font-size: 0.9rem;
  margin-top: var(--space-4);
  line-height: 1.65;
}
.footer-cr {
  display: block;
  margin-top: var(--space-3);
  font-family: var(--font-mono);
  font-size: var(--fs-caption);
  color: var(--dark-muted);
}
.footer h4 {
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dark-text);
  margin-bottom: var(--space-4);
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a, .footer-links li {
  color: var(--dark-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}
.footer-links a:hover { color: var(--dark-text); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--fs-caption);
  color: var(--dark-muted);
}
.footer-bottom a { color: var(--dark-muted); margin-left: var(--space-6); }
.footer-bottom a:hover { color: var(--dark-text); }

/* =================================================================
   PRODUCT VISUALS (SVG containers)
   ================================================================= */
.device-icon {
  width: 100%;
  max-width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

/* =================================================================
   UTILITY CLASSES
   ================================================================= */
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.text-mute { color: var(--text-muted); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.flex-center { display: flex; align-items: center; justify-content: center; }

/* =================================================================
   RESPONSIVE
   ================================================================= */
@media (max-width: 1024px) {
  .picks-grid { grid-template-columns: 1fr 1fr; }
  .picks-grid > *:last-child { grid-column: 1 / -1; max-width: 50%; margin: 0 auto; }
  .method-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: 1fr; }
  .feature-block { grid-template-columns: 1fr; gap: var(--space-12); }
  .about-grid { grid-template-columns: 1fr; gap: var(--space-12); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-8); }
  .stat:nth-child(3) { border-left: none; padding-left: 0; }
}

@media (max-width: 768px) {
  body { font-size: 1rem; }
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--bg-page); flex-direction: column; padding: var(--space-6); border-bottom: 1px solid var(--border); gap: var(--space-4); }
  .nav.open { display: flex; }
  .nav-toggle { display: block; }
  .picks-grid { grid-template-columns: 1fr; }
  .picks-grid > *:last-child { max-width: 100%; }
  .method-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .review-article { grid-template-columns: 1fr; gap: var(--space-8); }
  .review-sidebar { position: static; }
  .contact-grid { grid-template-columns: 1fr; gap: var(--space-8); }
  .review-specs { grid-template-columns: 1fr; }
  .review-spec { border-right: none; }
  .review-pros-cons { grid-template-columns: 1fr; gap: var(--space-6); }
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-8); }
  .footer-bottom { flex-direction: column; gap: var(--space-3); }
  .cta-banner { padding: var(--space-12) var(--space-6); }
  .topbar .container { flex-direction: column; align-items: flex-start; gap: var(--space-2); padding: var(--space-3) var(--gutter); }
  .topbar-right { gap: var(--space-4); }
  .byline { flex-wrap: wrap; }
  .byline-dates { margin-left: 0; text-align: left; width: 100%; padding-top: var(--space-3); border-top: 1px solid var(--border-subtle); }
  .method-bar { height: auto; flex-direction: column; }
  .method-seg { padding: var(--space-3); width: 100%; }
  .update-item { grid-template-columns: 1fr; gap: var(--space-2); }
}
