:root {
  --bg: #f8fbff;
  --surface: #ffffff;
  --surface-alt: #eef4ff;
  --text: #0f172a;
  --muted: #52607a;
  --line: #dbe5f4;
  --accent: #2563eb;
  --accent-dark: #1d4ed8;
  --accent-soft: rgba(37, 99, 235, 0.12);
  --shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
  --radius: 22px;
  --radius-sm: 14px;
  --content: 1180px;
}

[data-theme="dark"] {
  --bg: #0b1220;
  --surface: #10192d;
  --surface-alt: #13203a;
  --text: #e5edf9;
  --muted: #9eb0cf;
  --line: #223251;
  --accent: #60a5fa;
  --accent-dark: #93c5fd;
  --accent-soft: rgba(96, 165, 250, 0.16);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.0625rem;
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 24%, var(--bg) 100%);
  color: var(--text);
  line-height: 1.7;
}

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

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--accent-dark);
}

::selection {
  background: var(--accent);
  color: #fff;
}

.container {
  width: min(calc(100% - 2rem), var(--content));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(219, 229, 244, 0.8);
}

[data-theme="dark"] .site-header {
  background: rgba(11, 18, 32, 0.82);
  border-bottom-color: rgba(34, 50, 81, 0.85);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--text);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--accent) 0%, #38bdf8 100%);
  box-shadow: var(--shadow);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.site-nav a {
  color: var(--muted);
  font-weight: 600;
  font-size: 1rem;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.nav-toggle,
.theme-toggle {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  border-radius: 999px;
  min-width: 44px;
  min-height: 44px;
  cursor: pointer;
}

.nav-toggle {
  display: none;
}

.button,
button.button,
input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
  border-radius: 999px;
  padding: 0.9rem 1.45rem;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  background: var(--accent);
  color: #fff;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.button:hover,
button.button:hover,
input[type="submit"]:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.25);
}

.button.secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 3rem;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.06), transparent 60%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero h1,
.page-hero h1 {
  margin: 0.9rem 0 1rem;
  font-size: clamp(2.6rem, 5vw, 4.9rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  max-width: 12ch;
}

.hero p,
.page-hero p {
  max-width: 60ch;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.75;
}

.hero-actions,
.meta-cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.hero-panel {
  position: relative;
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.12), rgba(255, 255, 255, 0.8));
  border: 1px solid rgba(37, 99, 235, 0.16);
  border-radius: 30px;
  padding: 1.4rem;
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s ease;
}

.hero-panel:hover {
  box-shadow: 0 28px 70px rgba(37, 99, 235, 0.15);
}

[data-theme="dark"] .hero-panel {
  background: linear-gradient(180deg, rgba(96, 165, 250, 0.15), rgba(16, 25, 45, 0.88));
}

.insight-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.stat {
  padding: 1rem;
  background: var(--surface);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
}

.stat strong {
  display: block;
  font-size: 1.55rem;
  letter-spacing: -0.04em;
}

.section {
  padding: 4rem 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.6rem;
}

.section-head h2,
.section-head h3 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.section-head p {
  max-width: 58ch;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.2rem;
}

.article-card,
.category-card,
.info-block,
.panel,
.list-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.article-card:hover,
.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.12);
}

[data-theme="dark"] .article-card:hover,
[data-theme="dark"] .category-card:hover {
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.4);
}

.article-card {
  grid-column: span 12;
  overflow: hidden;
  border-top: 4px solid var(--accent-soft);
}

.article-card.featured {
  border-top-color: transparent;
}

.article-card.featured img + .card-copy {
  border-top: none;
}

.article-card.featured {
  display: grid;
  align-items: stretch;
}

.article-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-copy {
  padding: 1.35rem;
}

.card-copy h3,
.card-copy h2 {
  margin: 0.5rem 0 0.6rem;
  letter-spacing: -0.03em;
  font-size: 1.15rem;
  line-height: 1.35;
}

.card-copy p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--muted);
}

.kicker {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.category-card {
  grid-column: span 12;
  padding: 1.6rem;
  position: relative;
  overflow: hidden;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -30% auto;
  width: 140px;
  height: 140px;
  border-radius: 999px;
  background: var(--accent-soft);
  transition: transform 0.4s ease;
}

.category-card:hover::after {
  transform: scale(1.3);
}

.newsletter,
.cta-band {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
  color: #fff;
  border-radius: 32px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.newsletter p,
.cta-band p {
  color: rgba(255, 255, 255, 0.82);
}

.split {
  display: grid;
  gap: 1.4rem;
}

.form-row {
  display: grid;
  gap: 1rem;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.45rem;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.95rem 1rem;
  background: var(--surface);
  color: var(--text);
  font: inherit;
}

textarea {
  min-height: 180px;
  resize: vertical;
}

.form-note,
.muted {
  color: var(--muted);
}

.ad-wrap {
  margin: 1.5rem 0;
}

.ad-label {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ad-slot {
  min-height: 110px;
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px dashed rgba(37, 99, 235, 0.4);
  border-radius: 18px;
  color: var(--muted);
  background: var(--surface-alt);
  padding: 1rem;
  font-size: 0.95rem;
}

.page-hero {
  padding: 3.6rem 0 2rem;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.94rem;
  color: var(--muted);
}

.layout-article {
  display: grid;
  gap: 2rem;
}

.toc {
  position: sticky;
  top: 96px;
  align-self: start;
  padding: 1.25rem;
}

.toc h2 {
  margin-top: 0;
  font-size: 1.05rem;
}

.toc ol,
.toc ul {
  margin: 0;
  padding-left: 1.1rem;
}

.toc li + li {
  margin-top: 0.5rem;
}

.article-shell {
  padding: 1.6rem;
}

.article-shell p,
.article-shell li {
  font-size: 1.05rem;
  line-height: 1.8;
}

.article-shell h1 {
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.article-shell h2 {
  font-size: clamp(1.55rem, 2.5vw, 1.95rem);
  letter-spacing: -0.03em;
  margin-top: 2.4rem;
}

.article-shell h3 {
  font-size: clamp(1.25rem, 2vw, 1.45rem);
  letter-spacing: -0.03em;
  margin-top: 1.6rem;
}

.article-shell ul,
.article-shell ol {
  padding-left: 1.2rem;
}

.author-box,
.comment-box {
  padding: 1.35rem;
}

.author-box strong {
  display: block;
  margin-bottom: 0.35rem;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 2rem;
}

.pagination a,
.pagination span {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--surface);
  font-weight: 700;
}

.pagination .active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.site-footer {
  padding: 3rem 0 3rem;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
}

.footer-links,
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a,
.social-links a {
  color: var(--muted);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.status-message {
  margin-top: 1rem;
  font-weight: 600;
}

.empty-state {
  text-align: center;
  padding: 3rem 1.5rem;
}

@media (min-width: 700px) {
  .hero-grid,
  .split,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-card {
    grid-column: span 6;
  }

  .category-card {
    grid-column: span 6;
  }

  .form-row.two-up {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 980px) {
  .site-nav {
    gap: 1.5rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(380px, 0.85fr);
  }

  .article-card.featured {
    grid-column: span 6;
  }

  .article-card {
    grid-column: span 4;
  }

  .category-card {
    grid-column: span 4;
  }

  .layout-article {
    grid-template-columns: minmax(0, 240px) minmax(0, 1fr) minmax(0, 250px);
  }
}

@media (max-width: 979px) {
  .layout-article {
    grid-template-columns: 1fr;
  }

  .toc {
    position: static;
  }
}

/* =============================================
   Cookie Consent Banner
   ============================================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--surface);
  border-top: 2px solid var(--line);
  padding: 1rem 1.5rem;
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.12);
  display: none;
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-inner {
  max-width: var(--content);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-text {
  flex: 1;
  min-width: 240px;
}

.cookie-text p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.5;
}

.cookie-text a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-btn {
  border: none;
  border-radius: 999px;
  padding: 0.6rem 1.2rem;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  transition: background 0.2s;
}

.cookie-btn.accept {
  background: var(--accent);
  color: #fff;
}

.cookie-btn.accept:hover {
  background: var(--accent-dark);
}

.cookie-btn.decline {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--line);
}

.cookie-btn.decline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* =============================================
   Star Rating Component
   ============================================= */
.star-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
}

.star {
  font-size: 1.2rem;
  color: #d1d5db;
}

.star.filled {
  color: #f59e0b;
}

.star.half {
  position: relative;
  color: #d1d5db;
}

.star.half::after {
  content: "★";
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  overflow: hidden;
  color: #f59e0b;
}

.rating-text {
  font-size: 0.82rem;
  color: var(--muted);
  margin-left: 0.3rem;
}

/* =============================================
   Comparison Table
   ============================================= */
.comparison-table-wrap {
  overflow-x: auto;
  margin: 1.5rem 0;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.96rem;
}

.comparison-table th {
  background: var(--surface-alt);
  text-align: left;
  padding: 0.85rem 1rem;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  border-bottom: 2px solid var(--line);
}

.comparison-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:hover td {
  background: rgba(37, 99, 235, 0.03);
}

.comparison-table .check {
  color: #10b981;
  font-weight: 700;
}

.comparison-table .cross {
  color: #ef4444;
}

.comparison-table .partial {
  color: #f59e0b;
}

.comparison-table .best-badge {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* =============================================
   Score / Meter Component
   ============================================= */
.score-meter {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0.4rem 0;
}

.score-label {
  min-width: 100px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}

.score-bar-bg {
  flex: 1;
  height: 8px;
  background: var(--surface-alt);
  border-radius: 999px;
  overflow: hidden;
}

.score-bar-fill {
  height: 100%;
  border-radius: 999px;
  transition: width 0.4s ease;
}

.score-bar-fill.high { background: linear-gradient(90deg, #2563eb, #38bdf8); }
.score-bar-fill.mid { background: linear-gradient(90deg, #f59e0b, #fbbf24); }
.score-bar-fill.low { background: linear-gradient(90deg, #ef4444, #f87171); }

.score-value {
  min-width: 36px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--muted);
  text-align: right;
}

/* =============================================
   Pros / Cons List
   ============================================= */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 1.5rem 0;
}

@media (max-width: 600px) {
  .pros-cons {
    grid-template-columns: 1fr;
  }
}

.pros-cons h4 {
  margin: 0 0 0.6rem;
  font-size: 1rem;
}

.pros-cons ul {
  margin: 0;
  padding-left: 1.2rem;
  list-style: none;
}

.pros-cons li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
  line-height: 1.65;
}

.pros-cons li::before {
  position: absolute;
  left: 0;
  font-weight: 700;
}

.pros li::before { content: "✓"; color: #10b981; }
.cons li::before { content: "✗"; color: #ef4444; }

/* =============================================
   Author Card
   ============================================= */
.author-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  margin: 1.5rem 0;
}

.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #38bdf8);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.author-info strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.author-info p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

/* =============================================
   Disclosure Notice
   ============================================= */
.disclosure {
  font-size: 0.82rem;
  color: var(--muted);
  background: var(--surface-alt);
  border-left: 3px solid var(--accent);
  padding: 0.75rem 1rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1.5rem 0;
  line-height: 1.5;
}

.disclosure strong {
  color: var(--text);
}

/* =============================================
   Callout / Tip Box
   ============================================= */
.callout {
  background: var(--surface-alt);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border: 1px solid var(--line);
}

.callout.tip {
  border-left: 4px solid #10b981;
}

.callout.info {
  border-left: 4px solid var(--accent);
}

.callout.warning {
  border-left: 4px solid #f59e0b;
}

.callout strong:first-child {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.callout p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.65;
}

/* =============================================
   Scroll to Top
   ============================================= */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  z-index: 50;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, transform 0.2s;
  display: grid;
  place-items: center;
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: translateY(-3px);
}

/* =============================================
   Tag / Badge
   ============================================= */
.tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
}

.tag.green { background: rgba(16, 185, 129, 0.12); color: #10b981; }
.tag.orange { background: rgba(245, 158, 11, 0.12); color: #f59e0b; }
.tag.red { background: rgba(239, 68, 68, 0.12); color: #ef4444; }
.tag.purple { background: rgba(139, 92, 246, 0.12); color: #8b5cf6; }

/* =============================================
   Affiliate Disclaimer in Footer
   ============================================= */
.affiliate-footer {
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  margin-top: 1.5rem;
}

.affiliate-footer p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}

/* =============================================
   Image with Caption
   ============================================= */
.figure-img {
  margin: 1.5rem 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}

.figure-img img {
  width: 100%;
  display: block;
}

.figure-img figcaption {
  padding: 0.6rem 1rem;
  font-size: 0.82rem;
  color: var(--muted);
  background: var(--surface-alt);
  text-align: center;
  font-style: italic;
}

/* =============================================
   Key Takeaway Box (For AdSense content quality)
   ============================================= */
.key-takeaway {
  background: linear-gradient(135deg, #0f172a, #1e3a8a);
  color: #fff;
  border-radius: var(--radius);
  padding: 1.75rem;
  margin: 1.5rem 0;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.2);
}

.key-takeaway h4 {
  margin: 0 0 0.6rem;
  font-size: 1.1rem;
  color: #93c5fd;
  letter-spacing: 0.02em;
}

.key-takeaway ul {
  margin: 0;
  padding-left: 1.2rem;
}

.key-takeaway li {
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.9);
}

/* =============================================
   Responsive tweaks
   ============================================= */
@media (max-width: 760px) {
  .site-nav {
    position: absolute;
    inset: 72px 1rem auto;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 1rem;
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-actions .button {
    display: none;
  }

  .hero {
    padding-top: 4rem;
  }

  .insight-strip {
    grid-template-columns: 1fr;
  }

  .pros-cons {
    grid-template-columns: 1fr;
  }

  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-actions {
    justify-content: flex-end;
  }
}
