/* ================================================================
   blog-v2.css — Nopturnia Blog V2 Design System
================================================================ */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:ital,wght@0,400;0,500;0,600;0,700;1,400&family=JetBrains+Mono:wght@400;500&display=swap');

/* ===== TOKENS ===== */
:root {
  --v2-brand:      #1D4ED8;
  --v2-brand-soft: #3B82F6;
  --v2-accent:     #60A5FA;
  --v2-ink:        #0F172A;
  --v2-ink-soft:   #64748B;
  --v2-bg:         #F8FAFC;
  --v2-card:       #FFFFFF;
  --v2-secondary:  #F1F5F9;
  --v2-hairline:   #E2E8F0;
  --v2-glow: 0 0 60px rgba(29,78,216,0.18);
  --v2-display: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
  --v2-sans:    'Inter', ui-sans-serif, system-ui, sans-serif;
  --v2-mono:    'JetBrains Mono', ui-monospace, SFMono-Regular, monospace;
  --v2-r-sm: 6px; --v2-r-md: 8px; --v2-r-lg: 10px;
  --v2-r-xl: 14px; --v2-r-2xl: 18px; --v2-r-3xl: 22px;
  --v2-nav-h: 56px;
  --v2-max-w: 1240px;
}
@supports (color: oklch(0.48 0.21 264)) {
  :root {
    --v2-brand: oklch(0.48 0.21 264);
    --v2-brand-soft: oklch(0.62 0.19 258);
    --v2-accent: oklch(0.72 0.17 250);
    --v2-ink: oklch(0.16 0.03 260);
    --v2-ink-soft: oklch(0.42 0.02 260);
    --v2-bg: oklch(0.985 0.003 260);
    --v2-hairline: oklch(0.93 0.005 260);
    --v2-secondary: oklch(0.96 0.006 260);
  }
}

/* ===== BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body.blog-v2 {
  font-family: var(--v2-sans);
  background: var(--v2-bg);
  color: var(--v2-ink);
  -webkit-font-smoothing: antialiased;
  padding-top: var(--v2-nav-h);
  overflow-x: hidden;
}
body.blog-v2 a { text-decoration: none; color: inherit; }
body.blog-v2 img { display: block; max-width: 100%; }
/* Blog-v2 button reset — scoped to specific component classes only.
   This avoids touching chat widget buttons (which keep their styles from chat-widget.css / index.js). */
body.blog-v2 .v2-icon-btn,
body.blog-v2 .v2-hamburger,
body.blog-v2 .v2-sheet-close,
body.blog-v2 .v2-faq-q,
body.blog-v2 .v2-share-btn,
body.blog-v2 .v2-rail-btn,
body.blog-v2 .v2-jump-btn {
  cursor: pointer; background: none; border: none; font-family: inherit;
}
body.blog-v2 ul { list-style: none; }
body.blog-v2 ::selection { background: rgba(29,78,216,0.15); color: var(--v2-ink); }

/* ===== BUTTON-STYLED ANCHORS — force white text (higher specificity than body.blog-v2 a) ===== */
body.blog-v2 .v2-amz-btn,
body.blog-v2 .v2-tbl-buy,
body.blog-v2 .v2-verdict-link,
body.blog-v2 .v2-amz-btn:hover,
body.blog-v2 .v2-tbl-buy:hover,
body.blog-v2 .v2-verdict-link:hover {
  color: #fff;
  text-decoration: none;
}

/* ===== UTILITIES ===== */
.v2-eyebrow {
  font-family: var(--v2-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--v2-brand);
}
@keyframes v2GridDrift {
  from { background-position: 0 0; }
  to   { background-position: 44px 44px; }
}

/* ===== SITE NAV ===== */
.v2-site-nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--v2-nav-h);
  z-index: 100;
  background: rgba(248,250,252,0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--v2-hairline);
  transition: transform 0.3s ease;
}
.v2-site-nav.nav-hidden { transform: translateY(-100%); }
.v2-nav-inner {
  max-width: var(--v2-max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
}
.v2-nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: 16px;
  flex-shrink: 0;
}
.v2-logo-img {
  width: 28px; height: 28px;
  border-radius: 6px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}
.v2-logo-text {
  font-family: var(--v2-display);
  font-size: 15px; font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--v2-ink);
}
.v2-nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}
.v2-nav-link {
  position: relative;
  font-size: 14px; font-weight: 500;
  color: var(--v2-ink-soft);
  padding: 6px 10px;
  border-radius: var(--v2-r-md);
  transition: color 0.2s, background 0.2s;
}
.v2-nav-link:hover, .v2-nav-link.active { color: var(--v2-ink); background: var(--v2-secondary); }
.v2-nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 10px; right: 10px;
  height: 2px;
  background: var(--v2-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.v2-nav-link:hover::after, .v2-nav-link.active::after { transform: scaleX(1); }
.v2-nav-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.v2-icon-btn {
  width: 32px; height: 32px;
  border-radius: var(--v2-r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--v2-ink-soft);
  transition: background 0.2s, color 0.2s;
}
.v2-icon-btn:hover { background: var(--v2-secondary); color: var(--v2-ink); }
.v2-icon-btn svg { width: 16px; height: 16px; }
.v2-currency-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px 10px;
  border: 1px solid var(--v2-hairline);
  border-radius: var(--v2-r-md);
  font-family: var(--v2-mono);
  font-size: 12px;
  color: var(--v2-ink-soft);
  cursor: pointer;
}
.v2-currency-wrap select {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
}
.v2-hamburger {
  display: none;
  width: 32px; height: 32px;
  align-items: center; justify-content: center;
  border-radius: var(--v2-r-md);
  color: var(--v2-ink-soft);
  transition: background 0.2s;
}
.v2-hamburger:hover { background: var(--v2-secondary); }
.v2-hamburger svg { width: 20px; height: 20px; }

/* Mobile overlay */
.v2-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,0.4);
  z-index: 200;
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 0.3s;
}
.v2-overlay.open { display: block; opacity: 1; }

/* Mobile sheet */
.v2-sheet {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 80%; max-width: 320px;
  background: var(--v2-card);
  z-index: 201;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  display: flex; flex-direction: column;
  padding: 20px;
  overflow-y: auto;
  border-right: 1px solid var(--v2-hairline);
}
.v2-sheet.open { transform: translateX(0); }
.v2-sheet-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px;
}
.v2-sheet-links { display: flex; flex-direction: column; gap: 2px; }
.v2-sheet-link {
  display: block;
  padding: 10px 12px;
  border-radius: var(--v2-r-lg);
  font-size: 15px; font-weight: 500;
  color: var(--v2-ink-soft);
  transition: background 0.2s, color 0.2s;
}
.v2-sheet-link:hover, .v2-sheet-link.active { background: var(--v2-secondary); color: var(--v2-ink); }
.v2-sheet-currency {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--v2-hairline);
}
.v2-sheet-currency select {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid var(--v2-hairline);
  border-radius: var(--v2-r-md);
  font-family: var(--v2-mono);
  font-size: 12px;
  background: var(--v2-card);
  color: var(--v2-ink);
}

/* ===== ARTICLE NAV ===== */
.v2-article-nav {
  position: fixed;
  top: var(--v2-nav-h);
  left: 0; right: 0;
  z-index: 110;
  background: rgba(248,250,252,0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--v2-hairline);
  transform: translateY(-120%);
  transition: transform 0.3s ease;
  pointer-events: none;
}
.v2-article-nav.nav-visible { transform: translateY(0); pointer-events: auto; }
.v2-anav-inner {
  max-width: var(--v2-max-w);
  margin: 0 auto;
  padding: 0 16px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.v2-anav-title {
  font-size: 13px; font-weight: 500;
  color: var(--v2-ink);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  flex: 1; min-width: 0;
}
.v2-anav-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.v2-jump-wrap { position: relative; }
.v2-jump-btn {
  display: flex; align-items: center; gap: 4px;
  padding: 4px 8px;
  border: 1px solid var(--v2-hairline);
  border-radius: var(--v2-r-md);
  font-family: var(--v2-mono); font-size: 11px;
  color: var(--v2-ink-soft);
  transition: background 0.2s;
}
.v2-jump-btn:hover { background: var(--v2-secondary); }
.v2-jump-btn svg { width: 12px; height: 12px; }
.v2-jump-dd {
  display: none;
  position: absolute;
  right: 0; top: calc(100% + 8px);
  width: 260px;
  background: var(--v2-card);
  border: 1px solid var(--v2-hairline);
  border-radius: var(--v2-r-lg);
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
  overflow: hidden;
  z-index: 150;
}
.v2-jump-dd.open { display: block; }
.v2-jump-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 12px;
  font-size: 13px;
  border-bottom: 1px solid var(--v2-hairline);
  color: var(--v2-ink);
  transition: background 0.15s;
}
.v2-jump-row:last-child { border-bottom: none; }
.v2-jump-row:hover { background: var(--v2-secondary); }
.v2-jump-row.verdict {
  background: rgba(29,78,216,0.04);
  border-top: 2px solid rgba(29,78,216,0.3);
  font-weight: 500;
}
.v2-jump-row.verdict:hover { background: rgba(29,78,216,0.08); }
.v2-jump-price { font-family: var(--v2-mono); font-size: 11px; color: var(--v2-brand); }
.v2-progress-wrap { height: 2px; }
.v2-progress-bar {
  height: 2px;
  background: linear-gradient(90deg, var(--v2-brand), var(--v2-brand-soft));
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.1s linear;
}

/* ===== PAGE GRID ===== */
.v2-page-wrap {
  max-width: var(--v2-max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.v2-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 1024px) {
  .v2-page-grid {
    grid-template-columns: 1fr 260px;
    gap: 0 48px;
  }
}
.v2-main-col { min-width: 0; }

/* ===== HERO ===== */
.v2-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--v2-hairline);
}
.v2-hero-dots {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(15,23,42,0.07) 1px, transparent 1px);
  background-size: 22px 22px;
  animation: v2GridDrift 18s linear infinite;
  opacity: 0.6;
}
.v2-hero-wash {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(60% 50% at 50% 0%, rgba(29,78,216,0.10), transparent 70%),
    radial-gradient(40% 40% at 80% 60%, rgba(59,130,246,0.08), transparent 70%);
}
.v2-hero-fade {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 128px;
  background: linear-gradient(to bottom, transparent, var(--v2-bg));
  pointer-events: none;
}
.v2-hero-body {
  position: relative;
  padding: 40px 0;
}
@media (min-width: 1024px) { .v2-hero-body { padding: 56px 0; } }
.v2-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--v2-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--v2-brand);
}
.v2-hero-eyebrow span.line {
  display: inline-block;
  width: 32px; height: 1px;
  background: var(--v2-brand);
}
.v2-hero-h1 {
  margin-top: 20px;
  font-family: var(--v2-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--v2-ink);
}
.v2-hero-subtitle {
  display: block;
  background: linear-gradient(90deg, var(--v2-brand) 0%, var(--v2-brand-soft) 50%, var(--v2-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.v2-hero-dek {
  margin-top: 20px;
  max-width: 520px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--v2-ink-soft);
}
.v2-hero-meta {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  color: var(--v2-ink-soft);
}
.v2-hero-author {
  display: flex; align-items: center; gap: 8px;
}
.v2-author-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(29,78,216,0.10);
  color: var(--v2-brand);
  display: flex; align-items: center; justify-content: center;
}
.v2-author-icon svg { width: 14px; height: 14px; }
.v2-author-name { font-weight: 600; color: var(--v2-ink); font-size: 13px; }
.v2-meta-sep { width: 1px; height: 12px; background: var(--v2-hairline); }
.v2-meta-chip {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--v2-mono); font-size: 12px;
}
.v2-meta-chip svg { width: 14px; height: 14px; }
.v2-hero-img-wrap {
  position: relative;
  margin-top: 32px;
  overflow: hidden;
  border-radius: var(--v2-r-2xl);
  border: 1px solid var(--v2-hairline);
  background: var(--v2-card);
  box-shadow: var(--v2-glow);
}
.v2-hero-img-wrap::after {
  content: '';
  position: absolute; inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.4);
  pointer-events: none;
  border-radius: var(--v2-r-2xl);
}
.v2-hero-img {
  width: 100%; height: auto;
  max-height: 280px;
  object-fit: cover;
  display: block;
}
@media (min-width: 1024px) { .v2-hero-img { max-height: 340px; } }

/* ===== WINNERS STRIP ===== */
.v2-winners {
  background: var(--v2-card);
  border-bottom: 1px solid var(--v2-hairline);
  padding: 20px 0;
}
.v2-winners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--v2-hairline);
  border-radius: var(--v2-r-xl);
  overflow: hidden;
  gap: 1px;
  background: var(--v2-hairline);
}
@media (min-width: 640px) { .v2-winners-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .v2-winners-grid { grid-template-columns: repeat(6, 1fr); } }
.v2-winner-cell {
  display: flex; flex-direction: column; gap: 6px;
  padding: 14px 16px;
  background: var(--v2-card);
  text-decoration: none;
  transition: background 0.2s;
}
.v2-winner-cell:hover { background: var(--v2-secondary); }
.v2-winner-label {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--v2-mono);
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--v2-brand);
}
.v2-winner-label svg { width: 13px; height: 13px; flex-shrink: 0; }
.v2-winner-name {
  font-family: var(--v2-display);
  font-size: 13px; font-weight: 500; line-height: 1.3;
  color: var(--v2-ink);
  transition: transform 0.2s;
}
.v2-winner-cell:hover .v2-winner-name { transform: translateX(2px); }
.v2-winner-price {
  font-family: var(--v2-mono);
  font-size: 11px;
  color: var(--v2-ink-soft);
}

/* ===== SECTIONS ===== */
.v2-sections {
  padding: 48px 0 64px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.v2-sec-head { margin-bottom: 24px; }
.v2-sec-head h2 {
  margin-top: 8px;
  font-family: var(--v2-display);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--v2-ink);
}

/* intro */
#intro { scroll-margin-top: 112px; }
.v2-intro-paras { display: flex; flex-direction: column; gap: 14px; }
.v2-intro-paras p { font-size: 15px; line-height: 1.7; color: var(--v2-ink-soft); }

/* ===== COMPARISON TABLE ===== */
#comparison { scroll-margin-top: 112px; }
.v2-cmp-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}
.v2-cmp-hint {
  display: none;
  max-width: 260px;
  font-size: 14px;
  color: var(--v2-ink-soft);
  text-align: right;
}
@media (min-width: 768px) { .v2-cmp-hint { display: block; } }
.v2-table-box {
  border-radius: var(--v2-r-2xl);
  border: 1px solid var(--v2-hairline);
  background: var(--v2-card);
  overflow: hidden;
}
.v2-table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.v2-cmp-table {
  width: 100%; min-width: 820px;
  border-collapse: collapse;
  font-size: 14px;
  text-align: left;
}
.v2-cmp-table thead tr {
  border-bottom: 1px solid var(--v2-hairline);
  background: linear-gradient(90deg, rgba(29,78,216,0.05), rgba(59,130,246,0.04), transparent);
}
.v2-cmp-table th {
  padding: 12px 16px;
  font-family: var(--v2-mono);
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--v2-ink-soft); font-weight: 500;
}
.v2-cmp-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--v2-hairline);
  color: var(--v2-ink-soft);
  vertical-align: middle;
}
.v2-cmp-table tbody tr:last-child td { border-bottom: none; }
.v2-cmp-table tbody tr:hover td { background: var(--v2-secondary); }
.v2-tbl-phone {
  display: flex; align-items: center; gap: 12px;
}
.v2-tbl-thumb {
  width: 40px; height: 40px;
  border-radius: var(--v2-r-md);
  background: var(--v2-secondary);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; flex-shrink: 0;
}
.v2-tbl-thumb img { width: 40px; height: 40px; object-fit: contain; }
.v2-tbl-name { font-family: var(--v2-display); font-weight: 500; color: var(--v2-ink); font-size: 14px; }
.v2-tbl-badge {
  font-family: var(--v2-mono);
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--v2-brand); margin-top: 2px;
}
.v2-tbl-price { font-family: var(--v2-mono); color: var(--v2-ink); }
.v2-tbl-rating {
  display: inline-flex; align-items: center; gap: 4px;
  font-family: var(--v2-mono); color: var(--v2-ink);
}
.v2-tbl-star { width: 12px; height: 12px; fill: var(--v2-brand); color: var(--v2-brand); }
.v2-tbl-buy {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 5px 10px;
  background: var(--v2-ink); color: #fff;
  border-radius: var(--v2-r-md);
  font-family: var(--v2-mono); font-size: 11px;
  white-space: nowrap;
  transition: transform 0.2s;
}
.v2-tbl-buy:hover { transform: translateY(-2px); }
.v2-tbl-buy svg { width: 12px; height: 12px; }

/* ===== PHONE CARDS ===== */
#picks { scroll-margin-top: 112px; }
.v2-picks-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 32px;
}
.v2-picks-hint { display: none; font-size: 14px; color: var(--v2-ink-soft); }
@media (min-width: 768px) { .v2-picks-hint { display: block; } }
.v2-cards { display: flex; flex-direction: column; gap: 24px; }

.v2-phone-card {
  scroll-margin-top: 112px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.v2-phone-card.card-in { opacity: 1; transform: translateY(0); }
.v2-card-shell {
  position: relative;
  overflow: hidden;
  border-radius: var(--v2-r-2xl);
  border: 1px solid var(--v2-hairline);
  background: var(--v2-card);
}
.v2-card-badge {
  position: absolute; left: 24px; top: 24px; z-index: 10;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--v2-hairline);
  background: rgba(248,250,252,0.85);
  backdrop-filter: blur(8px);
  font-family: var(--v2-mono);
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--v2-brand);
}
.v2-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--v2-brand);
  flex-shrink: 0;
}
.v2-card-num {
  position: absolute; right: 24px; top: 24px; z-index: 10;
  font-family: var(--v2-mono); font-size: 10px; letter-spacing: 0.12em;
  color: var(--v2-ink-soft);
}
.v2-card-body {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) { .v2-card-body { grid-template-columns: 7fr 5fr; } }

/* Image side */
.v2-card-img-area {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: linear-gradient(135deg, var(--v2-secondary), var(--v2-bg), var(--v2-secondary));
  border-bottom: 1px solid var(--v2-hairline);
}
@media (min-width: 1024px) {
  .v2-card-img-area { border-bottom: none; border-right: 1px solid var(--v2-hairline); }
}
.v2-img-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(15,23,42,0.055) 1px, transparent 1px);
  background-size: 28px 28px;
}
.v2-img-glow {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(59,130,246,0.18), transparent 55%);
}
.v2-card-img-area img {
  position: absolute; inset: 0; margin: auto;
  max-height: 80%; max-width: 60%;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.15));
  transition: transform 0.7s ease;
}
.v2-phone-card:hover .v2-card-img-area img { transform: scale(1.05); }
.v2-card-brand {
  position: absolute; bottom: 20px; left: 20px;
  font-family: var(--v2-mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--v2-ink-soft);
}

/* Content side */
.v2-card-content {
  display: flex; flex-direction: column; gap: 18px;
  padding: 28px;
}
.v2-card-title {
  font-family: var(--v2-display);
  font-size: 22px; font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--v2-ink);
}
.v2-card-meta-row { display: flex; align-items: center; gap: 8px; margin-top: 6px; }
.v2-card-rating {
  display: inline-flex; align-items: center; gap: 4px;
  font-family: var(--v2-mono); font-size: 11px;
  color: var(--v2-ink-soft);
}
.v2-card-rating svg { width: 12px; height: 12px; fill: var(--v2-brand); color: var(--v2-brand); }
.v2-card-sep { width: 1px; height: 12px; background: var(--v2-hairline); }
.v2-card-price {
  font-family: var(--v2-mono);
  font-size: 18px; font-weight: 500;
  color: var(--v2-ink);
}
.v2-card-blurb { font-size: 14px; line-height: 1.65; color: var(--v2-ink-soft); }

/* Spec tiles */
.v2-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  border: 1px solid var(--v2-hairline);
  border-radius: var(--v2-r-lg);
  overflow: hidden;
  background: var(--v2-hairline);
}
.v2-spec {
  background: var(--v2-card);
  padding: 10px 12px;
}
.v2-spec-k {
  font-family: var(--v2-mono);
  font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--v2-ink-soft);
  display: block;
}
.v2-spec-v {
  display: block;
  margin-top: 3px;
  font-size: 12px; font-weight: 500;
  color: var(--v2-ink);
}

/* Bullets */
.v2-bullets { display: flex; flex-direction: column; gap: 8px; }
.v2-bullet {
  display: flex; gap: 8px;
  font-size: 13px; line-height: 1.5; color: var(--v2-ink-soft);
}
.v2-bullet svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 2px; color: var(--v2-brand); }

/* CTA */
.v2-card-cta {
  display: flex; align-items: center; gap: 8px;
  margin-top: auto; padding-top: 4px;
}
.v2-amz-btn {
  flex: 1;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 16px;
  background: var(--v2-ink); color: #fff;
  border-radius: var(--v2-r-lg);
  font-size: 13px; font-weight: 500;
  position: relative; overflow: hidden;
  transition: transform 0.2s;
}
.v2-amz-btn:hover { transform: translateY(-2px); }
.v2-amz-btn::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.18) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.v2-amz-btn:hover::after { transform: translateX(100%); }
.v2-amz-btn svg { width: 16px; height: 16px; }
.v2-share-btn {
  width: 42px; height: 42px;
  border-radius: var(--v2-r-lg);
  border: 1px solid var(--v2-hairline);
  display: flex; align-items: center; justify-content: center;
  color: var(--v2-ink-soft); flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}
.v2-share-btn:hover { background: var(--v2-secondary); color: var(--v2-ink); }
.v2-share-btn svg { width: 16px; height: 16px; }

/* ===== BUYER CHECKLIST ===== */
#checklist { scroll-margin-top: 112px; }
.v2-checklist {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  border: 1px solid var(--v2-hairline);
  border-radius: var(--v2-r-2xl);
  overflow: hidden;
  background: var(--v2-hairline);
}
@media (min-width: 640px) { .v2-checklist { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .v2-checklist { grid-template-columns: 1fr 1fr 1fr; } }
.v2-chk-item {
  position: relative;
  background: var(--v2-card);
  padding: 24px;
  transition: background 0.2s;
}
.v2-chk-item:hover { background: rgba(241,245,249,0.4); }
.v2-chk-num {
  position: absolute; right: 20px; top: 20px;
  font-family: var(--v2-mono); font-size: 10px; letter-spacing: 0.12em;
  color: rgba(100,116,139,0.55);
}
.v2-chk-icon {
  width: 40px; height: 40px;
  border-radius: var(--v2-r-lg);
  background: rgba(29,78,216,0.10);
  color: var(--v2-brand);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s;
}
.v2-chk-item:hover .v2-chk-icon { transform: translateY(-2px); }
.v2-chk-icon svg { width: 20px; height: 20px; }
.v2-chk-label {
  margin-top: 16px;
  font-family: var(--v2-display);
  font-size: 16px; font-weight: 600;
  color: var(--v2-ink);
}
.v2-chk-detail {
  margin-top: 4px;
  font-size: 13px; line-height: 1.6;
  color: var(--v2-ink-soft);
}

/* ===== VERDICT ===== */
#verdict { scroll-margin-top: 112px; }
.v2-verdict {
  background: var(--v2-ink);
  border-radius: var(--v2-r-2xl);
  padding: 48px;
}
@media (max-width: 640px) { .v2-verdict { padding: 32px 24px; } }
.v2-verdict-eyebrow {
  font-family: var(--v2-mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.v2-verdict-title {
  margin-top: 20px;
  font-family: var(--v2-display);
  font-size: clamp(20px, 3.5vw, 30px);
  font-weight: 700; line-height: 1.2;
  color: #fff;
}
.v2-verdict-winner { color: var(--v2-brand-soft); }
.v2-verdict-body {
  margin-top: 16px;
  font-size: 14px; line-height: 1.7;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
}
.v2-verdict-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 24px;
  padding: 12px 24px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--v2-r-lg);
  color: #fff; font-size: 14px; font-weight: 500;
  transition: background 0.2s;
}
.v2-verdict-link:hover { background: rgba(255,255,255,0.13); }
.v2-verdict-link svg { width: 16px; height: 16px; }

/* ===== FAQ ===== */
#faq { scroll-margin-top: 112px; }
.v2-faq {
  border: 1px solid var(--v2-hairline);
  border-radius: var(--v2-r-2xl);
  background: var(--v2-card);
  overflow: hidden;
}
.v2-faq-item { border-bottom: 1px solid var(--v2-hairline); }
.v2-faq-item:last-child { border-bottom: none; }
.v2-faq-q {
  width: 100%;
  display: flex; align-items: flex-start; gap: 12px;
  padding: 20px;
  text-align: left;
  font-family: var(--v2-display);
  font-size: 15px; font-weight: 500;
  color: var(--v2-ink);
  transition: background 0.15s;
}
.v2-faq-q:hover { background: rgba(241,245,249,0.5); }
.v2-faq-n {
  flex-shrink: 0;
  font-family: var(--v2-mono); font-size: 11px;
  color: var(--v2-brand); margin-top: 2px;
}
.v2-faq-text { flex: 1; }
.v2-faq-chevron {
  flex-shrink: 0; width: 20px; height: 20px;
  display: flex; align-items: center; justify-content: center;
  color: var(--v2-ink-soft); margin-top: 2px;
  transition: transform 0.25s ease;
}
.v2-faq-chevron svg { width: 16px; height: 16px; }
.v2-faq-item.open .v2-faq-chevron { transform: rotate(180deg); }
.v2-faq-a {
  padding: 0 20px 20px 52px;
  font-size: 14px; line-height: 1.7;
  color: var(--v2-ink-soft);
  display: none;
}
.v2-faq-item.open .v2-faq-a { display: block; }

/* ===== STICKY RAIL ===== */
.v2-rail-col { display: none; }
@media (min-width: 1024px) {
  .v2-rail-col { display: block; padding-top: 48px; }
}
.v2-rail-sticky {
  position: sticky;
  top: calc(var(--v2-nav-h) + 24px);
}
.v2-rail-card {
  border: 1px solid var(--v2-hairline);
  border-radius: var(--v2-r-xl);
  background: var(--v2-card);
  padding: 20px;
}
.v2-rail-head {
  display: flex; align-items: center; justify-content: space-between;
}
.v2-rail-actions { display: flex; gap: 4px; }
.v2-rail-btn {
  width: 28px; height: 28px;
  border-radius: var(--v2-r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--v2-ink-soft);
  transition: background 0.2s, color 0.2s;
}
.v2-rail-btn:hover { background: var(--v2-secondary); color: var(--v2-ink); }
.v2-rail-btn svg { width: 14px; height: 14px; }
.v2-rail-links { margin-top: 16px; display: flex; flex-direction: column; gap: 2px; }
.v2-rail-link {
  display: block;
  padding: 6px 12px;
  border-left: 2px solid transparent;
  font-size: 13px; color: var(--v2-ink-soft);
  transition: color 0.2s, border-color 0.2s;
  border-radius: 0 var(--v2-r-sm) var(--v2-r-sm) 0;
}
.v2-rail-link:hover { color: var(--v2-ink); }
.v2-rail-link.active { border-left-color: var(--v2-brand); font-weight: 500; color: var(--v2-ink); }
.v2-rail-sep {
  margin: 16px 0;
  border-top: 1px solid var(--v2-hairline);
  padding-top: 16px;
}
.v2-rail-picks { display: flex; flex-direction: column; gap: 2px; }
.v2-rail-pick {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  padding: 5px 8px;
  border-radius: var(--v2-r-md);
  font-size: 12px; color: var(--v2-ink-soft);
  overflow: hidden;
  transition: background 0.15s, color 0.15s;
}
.v2-rail-pick:hover { background: var(--v2-secondary); }
.v2-rail-pick.active { background: rgba(29,78,216,0.08); color: var(--v2-ink); }
.v2-rail-pick-name { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.v2-rail-pick-price {
  font-family: var(--v2-mono); font-size: 10px;
  color: var(--v2-brand); flex-shrink: 0;
}
.v2-rail-disclosure {
  margin-top: 16px;
  font-family: var(--v2-mono); font-size: 10px;
  line-height: 1.6; color: rgba(100,116,139,0.7);
}

/* ===== RELATED ARTICLES ===== */
.v2-related {
  border-top: 1px solid var(--v2-hairline);
  background: rgba(255,255,255,0.4);
}
.v2-related-inner {
  max-width: var(--v2-max-w);
  margin: 0 auto;
  padding: 64px 24px 80px;
}
.v2-related-hd {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 40px;
}
.v2-related-hd h2 {
  margin-top: 8px;
  font-family: var(--v2-display);
  font-size: 28px; font-weight: 600;
  letter-spacing: -0.025em; color: var(--v2-ink);
}
.v2-all-link {
  display: none;
  align-items: center; gap: 4px;
  font-family: var(--v2-mono);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--v2-ink-soft);
  transition: color 0.2s;
}
.v2-all-link:hover { color: var(--v2-ink); }
.v2-all-link svg { width: 12px; height: 12px; }
@media (min-width: 768px) { .v2-all-link { display: inline-flex; } }
.v2-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) { .v2-related-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .v2-related-grid { grid-template-columns: repeat(3, 1fr); } }
.v2-rel-card {
  display: flex; flex-direction: column;
  border-radius: var(--v2-r-2xl);
  border: 1px solid var(--v2-hairline);
  background: var(--v2-bg);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.v2-rel-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
@media (min-width: 1024px) { .v2-rel-card.featured { grid-column: span 2; } }
.v2-rel-img {
  position: relative; overflow: hidden;
}
.v2-rel-card:not(.featured) .v2-rel-img { aspect-ratio: 4/3; }
.v2-rel-card.featured .v2-rel-img { aspect-ratio: 16/9; }
.v2-rel-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.v2-rel-card:hover .v2-rel-img img { transform: scale(1.05); }
.v2-rel-tag {
  position: absolute; top: 12px; left: 12px;
  padding: 3px 8px;
  border-radius: var(--v2-r-md);
  background: rgba(248,250,252,0.88);
  backdrop-filter: blur(4px);
  font-family: var(--v2-mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--v2-ink);
}
.v2-rel-arrow {
  position: absolute; top: 12px; right: 12px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--v2-ink); color: #fff;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.25s;
}
.v2-rel-arrow svg { width: 16px; height: 16px; }
.v2-rel-card:hover .v2-rel-arrow { opacity: 1; }
.v2-rel-body {
  flex: 1; display: flex; flex-direction: column; gap: 8px;
  padding: 20px;
}
.v2-rel-title {
  font-family: var(--v2-display);
  font-size: 17px; font-weight: 600;
  line-height: 1.3; letter-spacing: -0.01em;
  color: var(--v2-ink);
  transition: color 0.2s;
}
.v2-rel-card:hover .v2-rel-title { color: var(--v2-brand); }
.v2-rel-sub { font-size: 13px; line-height: 1.6; color: var(--v2-ink-soft); }

/* ===== FOOTER ===== */
.v2-footer { background: var(--v2-ink); color: var(--v2-bg); }
.v2-footer-inner {
  max-width: var(--v2-max-w); margin: 0 auto;
  padding: 56px 24px;
  display: grid; grid-template-columns: 1fr; gap: 40px;
}
@media (min-width: 768px) { .v2-footer-inner { grid-template-columns: 1fr 1fr 1fr; gap: 32px; } }
.v2-ft-brand { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.v2-ft-mark {
  width: 28px; height: 28px; border-radius: 6px;
  background: var(--v2-brand);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: var(--v2-display); font-size: 14px; font-weight: 700;
}
.v2-ft-name { font-family: var(--v2-display); font-size: 15px; font-weight: 600; color: var(--v2-bg); }
.v2-ft-desc { font-size: 13px; line-height: 1.65; color: rgba(248,250,252,0.7); max-width: 300px; }
.v2-ft-col-title { font-family: var(--v2-display); font-size: 15px; font-weight: 600; color: var(--v2-bg); margin-bottom: 16px; }
.v2-ft-links { display: flex; flex-direction: column; gap: 10px; }
.v2-ft-link { font-size: 13px; color: rgba(248,250,252,0.7); transition: color 0.2s; }
.v2-ft-link:hover { color: var(--v2-bg); }
.v2-ft-socials { display: flex; flex-wrap: wrap; gap: 8px; }
.v2-ft-social {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 12px;
  border: 1px solid rgba(248,250,252,0.15);
  border-radius: var(--v2-r-md);
  background: rgba(248,250,252,0.05);
  font-size: 12px; color: rgba(248,250,252,0.8);
  transition: background 0.2s, color 0.2s;
}
.v2-ft-social:hover { background: rgba(248,250,252,0.10); color: var(--v2-bg); }
.v2-ft-social svg { width: 14px; height: 14px; }
.v2-footer-bottom { border-top: 1px solid rgba(248,250,252,0.10); }
.v2-footer-bottom-inner {
  max-width: var(--v2-max-w); margin: 0 auto;
  padding: 20px 24px;
  display: flex; flex-direction: column; gap: 6px;
  font-family: var(--v2-mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(248,250,252,0.6);
}
@media (min-width: 768px) {
  .v2-footer-bottom-inner { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1023px) {
  .v2-nav-links { display: none; }
  .v2-hamburger { display: flex; }
  .v2-currency-wrap { display: none; }
  .v2-icon-btn.desktop-only { display: none; }
}
@media (max-width: 640px) {
  .v2-card-content { padding: 20px; }
  .v2-verdict { padding: 28px 20px; }
  .v2-sections { gap: 48px; }
}
