/* =============================================
   Cryptopuzzle.com — Main Stylesheet
   Light, spacious, professional
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Cormorant+Garamond:wght@600;700&display=swap');

/* ── Custom Properties ── */
:root {
  --color-primary:       #111111;
  --color-primary-light: #333333;
  --color-accent:        #fbbf24;
  --color-accent-light:  #fde68a;
  --color-accent-dark:   #d97706;
  --color-bg:            #ffffff;
  --color-bg-subtle:     #f9fafb;
  --color-bg-dark:       #0f172a;
  --color-text:          #0f172a;
  --color-text-muted:    #6b7280;
  --color-border:        #e5e7eb;
  --color-success:       #16a34a;
  --color-warning:       #d97706;
  --color-danger:        #dc2626;
  --font-base:           'DM Sans', system-ui, -apple-system, sans-serif;
  --font-heading:        'Cormorant Garamond', Georgia, serif;
  --radius-sm:           6px;
  --radius-md:           12px;
  --radius-lg:           20px;
  --shadow-sm:           0 1px 3px rgba(0,0,0,.07);
  --shadow-md:           0 4px 16px rgba(0,0,0,.09);
  --shadow-lg:           0 8px 40px rgba(0,0,0,.12);
  --max-width:           1200px;
  --transition:          .2s ease;
}

@keyframes spin { to { transform: rotate(360deg); } }

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-base);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ── Typography ── */
h1, h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.01em;
  color: var(--color-text);
}
h3, h4, h5 {
  font-family: var(--font-base);
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p  { margin-bottom: 1rem; color: var(--color-text); }

.lead {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--color-text-muted);
  max-width: 72ch;
}

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

.section {
  padding: 96px 0;
}

.section--subtle {
  background: var(--color-bg-subtle);
}

.section--dark {
  background: var(--color-primary);
  color: #fff;
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark p {
  color: #fff;
}

.section__header {
  max-width: 720px;
  margin-bottom: 56px;
}

.section__label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}

/* ── Navigation ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--color-border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav__logo img {
  height: 52px;
  width: auto;
  display: block;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav__link {
  font-size: .875rem;
  font-weight: 500;
  color: #1a1a1a;
  padding: 8px 13px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

.nav__link:hover {
  color: #000;
  background: #f5f5f5;
}

.nav__link.active {
  color: #111;
  font-weight: 600;
}

.nav__cta {
  background: #111 !important;
  color: #fff !important;
  padding: 9px 18px !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 600 !important;
  font-size: .85rem !important;
  margin-left: 10px;
  transition: background var(--transition) !important;
}

.nav__cta:hover {
  background: #f97316 !important;
  color: #fff !important;
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: #1a1a1a;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #111 0%, #2d2d2d 60%, #1a1a1a 100%);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .12;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 96px 0;
}

.hero__content { color: #fff; }

.hero__content h1 {
  color: #fff;
  margin-bottom: 24px;
}

.hero__content h1 em {
  font-style: normal;
  color: var(--color-accent);
}

.hero__content .lead {
  color: rgba(255,255,255,.75);
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: var(--font-base);
  font-size: .9rem;
  font-weight: 600;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: #111;
  color: #fff;
  border-color: #111;
}

.btn--primary:hover {
  background: #f97316;
  border-color: #f97316;
  color: #fff;
}

.btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.4);
}

.btn--outline:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.7);
}

.btn--outline-dark {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-border);
}

.btn--outline-dark:hover {
  border-color: var(--color-primary);
  background: var(--color-bg-subtle);
}

.btn--sm {
  padding: 10px 20px;
  font-size: .875rem;
}

/* ── Cards ── */
.card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  transition: box-shadow var(--transition), transform var(--transition);
}

.card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.10);
  transform: translateY(-4px);
}

.card--featured {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 2px var(--color-accent-light);
}

/* Section title with icon dot — like crypto-insiders */
.section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}

.section-title__dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.section-title__dot--accent { background: var(--color-accent); }
.section-title__dot--blue   { background: #3b82f6; }
.section-title__dot--green  { background: var(--color-success); }

.section-title__dot svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
}

.section-title h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  margin: 0;
}

.card__icon {
  width: 48px;
  height: 48px;
  background: var(--color-bg-subtle);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-accent);
  stroke: currentColor;
}

/* ── Grid Layouts ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ── Split Layout ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }

.split__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 5/4;
  box-shadow: var(--shadow-md);
}

.split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Exchange Comparison Table ── */
.exchange-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.exchange-table th {
  background: var(--color-primary);
  color: #fff;
  padding: 16px 20px;
  text-align: left;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.exchange-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--color-border);
  vertical-align: middle;
  font-size: .95rem;
}

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

.exchange-table tr:nth-child(even) td {
  background: var(--color-bg-subtle);
}

.exchange-table tr:hover td {
  background: #eef4ff;
}

.exchange-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: #111;
}

.exchange-logo__badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.badge--nl { background: #e55b2d; }
.badge--cb { background: #1652f0; }
.badge--kr { background: #5741d9; }
.badge--bn { background: #f0b90b; color: #000; }
.badge--by { background: #f7a600; color: #000; }

.score {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  font-size: .9rem;
}

.score--5 { color: var(--color-success); }
.score--4 { color: #65a30d; }
.score--3 { color: var(--color-warning); }
.score--2 { color: var(--color-danger); }

.tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 600;
}

.tag--green  { background: #dcfce7; color: #166534; }
.tag--blue   { background: #dbeafe; color: #1e40af; }
.tag--orange { background: #ffedd5; color: #9a3412; }
.tag--gray   { background: #f3f4f6; color: #374151; }

/* ── Warning / Info Boxes ── */
.alert {
  display: flex;
  gap: 14px;
  padding: 16px 20px;
  border-radius: 8px;
  border: 1px solid var(--color-border);
  background: var(--color-bg-subtle);
  margin: 28px 0;
}

.alert--warning {
  background: #fffbf0;
  border-color: #f0d080;
}

.alert--danger {
  background: #fff8f8;
  border-color: #f4c5c5;
}

.alert--info {
  background: #f6f9ff;
  border-color: #c7d9f5;
}

.alert--success {
  background: #f4fdf6;
  border-color: #b6e8c4;
}

.alert__icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 3px;
  opacity: .55;
}

.alert__title {
  font-weight: 700;
  font-size: .875rem;
  margin-bottom: 3px;
  color: var(--color-text);
}

.alert__text {
  font-size: .85rem;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.65;
}

/* ── Checklist ── */
.checklist {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.checklist__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.checklist__dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.checklist__dot--ok   { background: #dcfce7; color: var(--color-success); }
.checklist__dot--warn { background: #fef9c3; color: var(--color-warning); }
.checklist__dot--bad  { background: #fee2e2; color: var(--color-danger); }

.checklist__dot svg { width: 14px; height: 14px; stroke: currentColor; }

.checklist__text strong { display: block; font-weight: 600; color: var(--color-text); font-size: .95rem; }
.checklist__text span { font-size: .875rem; color: var(--color-text-muted); }

/* ── Stats Bar ── */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin: 48px 0;
}

.stats-bar__item {
  background: var(--color-bg);
  padding: 32px 24px;
  text-align: center;
}

.stats-bar__number {
  font-size: 2.4rem;
  font-weight: 800;
  color: #111;
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: 6px;
}

.stats-bar__number span { color: var(--color-accent); }

.stats-bar__label {
  font-size: .85rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

/* ── Table of Contents ── */
.toc {
  background: var(--color-bg-subtle);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  margin: 40px 0;
}

.toc__title {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.toc__list { display: flex; flex-direction: column; gap: 8px; }
.toc__item a {
  font-size: .95rem;
  color: #111;
  font-weight: 500;
  transition: color var(--transition);
}
.toc__item a:hover { color: #f97316; }
.toc__item--sub a { padding-left: 20px; font-size: .875rem; color: var(--color-text-muted); }

/* ── Page Header (clean, Snuggs-inspired) ── */
.page-header {
  background: var(--color-bg-subtle);
  border-bottom: 1px solid var(--color-border);
  padding: 64px 0 56px;
  position: relative;
}

.page-header__bg { display: none; }

.page-header__content {
  position: relative;
  max-width: 760px;
}

.page-header h1 {
  color: var(--color-text);
  margin-bottom: 16px;
}

.page-header .lead {
  color: var(--color-text-muted);
}

.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: .82rem;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

.breadcrumb a {
  color: var(--color-text-muted);
  transition: color var(--transition);
}
.breadcrumb a:hover { color: #111; }
.breadcrumb__sep { font-size: .7rem; opacity: .5; }

/* ── Footer ── */
.footer {
  background: var(--color-primary);
  color: rgba(255,255,255,.65);
  padding: 72px 0 40px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer__brand {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.03em;
  margin-bottom: 16px;
}

.footer__brand span { color: var(--color-accent); }

.footer__tagline {
  font-size: .9rem;
  margin-bottom: 24px;
  line-height: 1.6;
}

.footer__col-title {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.4);
  margin-bottom: 20px;
}

.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer__links a:hover { color: #fff; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__disclaimer {
  font-size: .8rem;
  line-height: 1.6;
  color: rgba(255,255,255,.4);
  max-width: 760px;
}

.footer__legal {
  display: flex;
  gap: 20px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.footer__legal a {
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  transition: color var(--transition);
}

.footer__legal a:hover { color: rgba(255,255,255,.8); }

/* ── Cookie Banner ── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: var(--color-primary);
  border-top: 2px solid var(--color-accent);
  padding: 24px;
  transform: translateY(100%);
  transition: transform .35s ease;
}

.cookie-banner.visible { transform: translateY(0); }

.cookie-banner__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
}

.cookie-banner__text { flex: 1; min-width: 280px; }
.cookie-banner__text p {
  font-size: .9rem;
  color: rgba(255,255,255,.8);
  margin: 0;
}
.cookie-banner__text a { color: var(--color-accent); }
.cookie-banner__text strong { color: #fff; }

.cookie-banner__title {
  font-weight: 700;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 6px;
}

.cookie-banner__actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.btn--cookie-accept {
  background: var(--color-accent);
  color: var(--color-primary);
  border-color: var(--color-accent);
  font-weight: 700;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  cursor: pointer;
  border: none;
  font-family: var(--font-base);
  transition: background var(--transition);
}
.btn--cookie-accept:hover { background: var(--color-accent-dark); }

.btn--cookie-decline {
  background: transparent;
  color: rgba(255,255,255,.6);
  border: 1px solid rgba(255,255,255,.2);
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  cursor: pointer;
  font-family: var(--font-base);
  transition: all var(--transition);
}
.btn--cookie-decline:hover { color: #fff; border-color: rgba(255,255,255,.5); }

/* ── Age Gate — Soft Banner ── */
.age-gate {
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  color: #111;
  padding: 0 20px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: .78rem;
  flex-wrap: nowrap;
}

.age-gate.hidden { display: none; }

.age-gate__modal { display: contents; }

.age-gate__icon { display: none; }

.age-gate__modal h2 { display: none; }

.age-gate > p,
.age-gate__modal p {
  margin: 0;
  color: #111;
  font-size: .82rem;
  line-height: 1.2;
}

.age-gate > p strong,
.age-gate__modal p strong {
  color: #111;
  font-weight: 700;
}

.age-gate__actions {
  display: flex;
  gap: 6px;
  align-items: center;
  flex-shrink: 0;
}

.btn--age-confirm {
  background: #111;
  color: #fff;
  border: 1px solid #111;
  padding: 4px 12px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .72rem;
  cursor: pointer;
  font-family: var(--font-base);
  transition: background var(--transition);
  white-space: nowrap;
}
.btn--age-confirm:hover { background: #f97316; border-color: #f97316; }

.btn--age-deny {
  background: none;
  color: #888;
  border: 1px solid #ccc;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: .70rem;
  cursor: pointer;
  font-family: var(--font-base);
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--age-deny:hover { color: #111; border-color: #888; }

/* ── Risk Notice Banner ── */
.risk-notice {
  background: #fffbeb;
  color: #78350f;
  border-top: 1px solid #fde68a;
  padding: 10px 24px;
  font-size: .78rem;
  text-align: center;
  letter-spacing: .01em;
}

.risk-notice strong { color: #92400e; }

/* ── Pros/Cons ── */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.pros-cons__col {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.pros-cons__head {
  padding: 14px 20px;
  font-weight: 700;
  font-size: .9rem;
}

.pros-cons__head--green { background: #dcfce7; color: #166534; }
.pros-cons__head--red   { background: #fee2e2; color: #991b1b; }

.pros-cons__list { padding: 16px 20px; display: flex; flex-direction: column; gap: 10px; }

.pros-cons__item {
  display: flex;
  gap: 10px;
  font-size: .9rem;
  align-items: flex-start;
}

.pros-cons__item-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
}

.pros-cons__col--pros .pros-cons__item-dot { background: var(--color-success); }
.pros-cons__col--cons .pros-cons__item-dot { background: var(--color-danger); }

/* ── Step List ── */
.step-list { display: flex; flex-direction: column; gap: 32px; }

.step-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.step-item__number {
  width: 48px;
  height: 48px;
  background: var(--color-primary);
  color: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.step-item__content h4 { margin-bottom: 6px; font-size: 1.05rem; }
.step-item__content p { margin: 0; font-size: .95rem; color: var(--color-text-muted); }

/* ── Exchange Cards (mobile friendly) ── */
.exchange-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 28px;
  background: var(--color-bg);
  transition: box-shadow var(--transition);
}

.exchange-card:hover { box-shadow: var(--shadow-md); }

.exchange-card--top {
  border-color: var(--color-accent);
  position: relative;
}

.exchange-card__badge {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--color-accent);
  color: var(--color-primary);
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.exchange-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.exchange-card__logo-circle {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .9rem;
  color: #fff;
  flex-shrink: 0;
}

.exchange-card__name { font-size: 1.2rem; font-weight: 700; color: var(--color-primary); margin-bottom: 2px; }
.exchange-card__tagline { font-size: .85rem; color: var(--color-text-muted); }

.exchange-card__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 20px 0;
}

.exchange-card__meta-item { font-size: .85rem; }
.exchange-card__meta-item strong { display: block; color: var(--color-primary); font-weight: 600; }
.exchange-card__meta-item span { color: var(--color-text-muted); }

.exchange-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
  gap: 12px;
  flex-wrap: wrap;
}

/* ── Legal Pages ── */
.legal-content {
  max-width: 800px;
}

.legal-content h2 {
  font-size: 1.4rem;
  margin-top: 48px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-border);
}

.legal-content h3 {
  font-size: 1.1rem;
  margin-top: 28px;
  margin-bottom: 10px;
}

.legal-content p, .legal-content li {
  font-size: .95rem;
  color: var(--color-text-muted);
  line-height: 1.8;
}

.legal-content ul { padding-left: 20px; margin-bottom: 16px; }
.legal-content ul li { list-style: disc; margin-bottom: 6px; }

/* ── Announcement Bar (Snuggs-style) ── */
.topbar {
  background: #000;
  color: rgba(255,255,255,.70);
  padding: 0;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .01em;
}

.topbar__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  height: 36px;
  flex-wrap: nowrap;
}

.topbar__sep {
  opacity: .3;
  font-size: .9rem;
}

/* ── Nav Dropdown (clean, Snuggs-style) ── */
.nav__dropdown {
  position: relative;
}

/* Invisible bridge fills the gap between the link and the panel,
   keeping the :hover chain alive while the cursor moves downward */
.nav__dropdown::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 8px;
}

.nav__dropdown > .nav__link {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav__dropdown > .nav__link::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  opacity: .4;
  transition: transform var(--transition);
  margin-top: 1px;
}

.nav__dropdown:hover > .nav__link::after { transform: rotate(180deg); }

/* Clean simple dropdown */
.nav__drop {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 32px rgba(0,0,0,.10);
  padding: 6px;
  min-width: 210px;
  z-index: 200;
}

/* Bridge the gap so the hover chain isn't broken */
.nav__drop::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 0;
  right: 0;
  height: 6px;
}

.nav__dropdown:hover .nav__drop { display: block; }

.nav__drop-item {
  display: block;
  padding: 9px 14px;
  font-size: .875rem;
  font-weight: 500;
  color: #1a1a1a;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}

.nav__drop-item:hover {
  background: #f5f5f5;
  color: #000;
}

/* Legacy mega-nav classes (kept for backwards compat, unused in new HTML) */
.nav__mega, .nav__mega--wide { display: none !important; }


/* ── Exchange Comparison (Redesigned) ── */
.exchange-filter-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 9px 18px;
  border-radius: 100px;
  font-size: .85rem;
  font-weight: 600;
  border: 2px solid var(--color-border);
  background: #fff;
  cursor: pointer;
  transition: all var(--transition);
  color: var(--color-text-muted);
  font-family: var(--font-base);
}

.filter-tab:hover { border-color: var(--color-primary); color: var(--color-primary); }

.filter-tab.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

/* Exchange review card */
.exchange-review-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 0;
  overflow: hidden;
  transition: box-shadow var(--transition);
  margin-bottom: 16px;
}

.exchange-review-card:hover { box-shadow: var(--shadow-md); }

.exchange-review-card--top { border-color: var(--color-accent); }

.exchange-review-card__header {
  padding: 24px 28px 20px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  position: relative;
}

.exchange-review-card__rank {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color-primary);
  color: rgba(255,255,255,.6);
  font-size: .7rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 0 0 var(--radius-sm) 0;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.exchange-review-card__rank span { color: #fff; }

.exchange-review-card__logo {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
  margin-top: 4px;
}

.exchange-review-card__info { flex: 1; min-width: 0; }

.exchange-review-card__name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 2px;
}

.exchange-review-card__tagline {
  font-size: .875rem;
  color: var(--color-text-muted);
  margin-bottom: 10px;
}

.star-rating {
  display: flex;
  align-items: center;
  gap: 6px;
}

.stars {
  display: flex;
  gap: 2px;
}

.star {
  width: 14px;
  height: 14px;
  background: var(--color-accent);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.star--empty { background: var(--color-border); }
.star--half  { background: linear-gradient(to right, var(--color-accent) 50%, var(--color-border) 50%); }

.star-rating__score {
  font-size: .95rem;
  font-weight: 700;
  color: var(--color-primary);
}

.star-rating__count {
  font-size: .8rem;
  color: var(--color-text-muted);
}

.exchange-review-card__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  flex-shrink: 0;
}

.exchange-review-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-primary);
  color: #fff;
  padding: 11px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .875rem;
  transition: background var(--transition);
  white-space: nowrap;
}

.exchange-review-card__cta:hover { background: #f97316; color: #fff; }

.exchange-review-card__cta--accent {
  background: var(--color-accent);
  color: var(--color-primary);
}

.exchange-review-card__cta--accent:hover {
  background: var(--color-accent-dark);
  color: var(--color-primary);
}

.exchange-review-card__badges { display: flex; gap: 6px; flex-wrap: wrap; justify-content: flex-end; }

.exchange-review-card__body {
  padding: 0 28px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  gap: 24px;
  border-top: 1px solid var(--color-border);
  padding-top: 20px;
}

.exchange-review-card__stat-group { display: flex; flex-direction: column; gap: 10px; }

.exchange-stat {
  display: flex;
  flex-direction: column;
}

.exchange-stat__label {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
  color: var(--color-text-muted);
  margin-bottom: 2px;
}

.exchange-stat__value {
  font-size: .95rem;
  font-weight: 700;
  color: var(--color-primary);
}

.exchange-stat__value--accent { color: var(--color-success); }

.mini-features { display: flex; flex-direction: column; gap: 6px; }

.mini-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .875rem;
  color: var(--color-text-muted);
}

.mini-feature-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-success);
  flex-shrink: 0;
}

.mini-feature-dot--warn { background: var(--color-warning); }

/* ── Score Bar ── */
.score-bar {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.score-bar__row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.score-bar__label {
  font-size: .78rem;
  color: var(--color-text-muted);
  width: 90px;
  flex-shrink: 0;
}

.score-bar__track {
  flex: 1;
  height: 6px;
  background: var(--color-border);
  border-radius: 3px;
  overflow: hidden;
}

.score-bar__fill {
  height: 100%;
  background: var(--color-primary);
  border-radius: 3px;
}

.score-bar__num {
  font-size: .78rem;
  font-weight: 700;
  color: var(--color-primary);
  width: 28px;
  text-align: right;
}

/* ── Filter Badge Row ── */
.afm-notice {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-md);
  padding: 14px 20px;
  margin-bottom: 24px;
  font-size: .875rem;
  color: #166534;
}

.afm-notice svg { flex-shrink: 0; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}

/* ── Homepage sidebar sticky ── */
.home-sidebar {
  position: sticky;
  top: 24px;
  align-self: start;
}

@media (max-width: 1024px) {
  .home-layout { grid-template-columns: 1fr !important; }
  .home-sidebar { position: static; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .topbar { display: none; }

  .exchange-review-card__body { grid-template-columns: 1fr 1fr; }
  .exchange-review-card__body > *:last-child { grid-column: 1 / -1; }
  .exchange-review-card__header { flex-wrap: wrap; }
  .exchange-review-card__right { flex-direction: row; align-items: center; width: 100%; justify-content: space-between; }

  .nav__dropdown > .nav__link::after { display: none; }
  .nav__drop { display: none !important; }

  .nav__menu { display: none; }
  .nav__menu.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--color-border);
    padding: 16px 24px;
    gap: 4px;
    box-shadow: var(--shadow-md);
  }
  .nav__toggle { display: flex; }

  .hero__inner { grid-template-columns: 1fr; padding: 64px 0; }
  .hero__image { display: none; }

  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split--reverse { direction: ltr; }
  .split__image { aspect-ratio: 16/9; }

  .stats-bar { grid-template-columns: 1fr 1fr; }

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

  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; }

  .exchange-table { font-size: .85rem; }
  .exchange-table th, .exchange-table td { padding: 12px; }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }

  .age-gate__modal { padding: 32px 24px; }
  .age-gate__actions { flex-direction: row; }
  .age-gate p { font-size: .72rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .stats-bar { grid-template-columns: 1fr; }
  .cookie-banner__inner { flex-direction: column; }
}

/* ── News Section ── */
.news-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.news-article {
  display: grid;
  grid-template-columns: 200px 1fr;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  transition: box-shadow var(--transition), transform var(--transition);
}
.news-article:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.news-article__img {
  height: 150px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--color-bg-subtle);
}
.news-article__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-article__body {
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

@media (max-width: 640px) {
  .news-article { grid-template-columns: 1fr; }
  .news-article__img { height: 180px; }
}

/* =============================================
   Guide page layout
   ============================================= */

/* Hero */
.guide-hero { position:relative; overflow:hidden; min-height:300px; display:flex; align-items:flex-end; }
.guide-hero__img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.guide-hero__overlay { position:absolute; inset:0; background:linear-gradient(to top,rgba(0,0,0,.88) 0%,rgba(0,0,0,.55) 55%,rgba(0,0,0,.18) 100%); }
.guide-hero__body { position:relative; z-index:2; padding:56px 0 40px; width:100%; }
.guide-hero__badge { display:inline-flex; align-items:center; gap:6px; background:rgba(251,191,36,.18); border:1px solid rgba(251,191,36,.35); color:#fde68a; font-size:.68rem; font-weight:700; letter-spacing:.09em; text-transform:uppercase; padding:4px 10px; border-radius:20px; margin-bottom:14px; }
.guide-hero__title { font-family:var(--font-heading); font-size:clamp(1.8rem,4.5vw,2.8rem); font-weight:700; color:#fff; margin:0 0 10px; line-height:1.2; max-width:680px; }
.guide-hero__sub { font-size:clamp(.88rem,2vw,1rem); color:rgba(255,255,255,.72); margin:0 0 16px; max-width:580px; line-height:1.6; }
.guide-hero__meta { display:flex; align-items:center; gap:14px; font-size:.74rem; color:rgba(255,255,255,.45); }
.guide-hero__meta span { display:flex; align-items:center; gap:4px; }

/* 2-column page grid */
.guide-cols { display:grid; grid-template-columns:1fr 288px; gap:40px; align-items:start; padding-top:20px; padding-bottom:64px; }
/* strip legacy .section padding inside guide articles */
.guide-main .section { padding: 0; }
.guide-main .section > .container { padding-left:0; padding-right:0; max-width:none; width:100%; }
@media(max-width:1060px){ .guide-cols { grid-template-columns:1fr 260px; gap:28px; } }
@media(max-width:820px)  { .guide-cols { grid-template-columns:1fr; } }

/* Sidebar */
.guide-sidebar { position:sticky; top:80px; display:flex; flex-direction:column; gap:18px; }
@media(max-width:820px)  { .guide-sidebar { position:static; } }

/* Sidebar card */
.gs-card { background:#fff; border:1px solid var(--color-border); border-radius:10px; overflow:hidden; }
.gs-card__head { padding:11px 15px; border-bottom:1px solid var(--color-border); }
.gs-card__head .gs-label { font-size:.62rem; font-weight:700; letter-spacing:.09em; text-transform:uppercase; color:var(--color-text-muted); margin:0 0 2px; }
.gs-card__head h3 { margin:0; font-size:.88rem; font-weight:800; color:var(--color-text); }

/* Exchange rows in sidebar */
.gxrow { display:flex; align-items:center; gap:10px; padding:9px 15px; border-bottom:1px solid var(--color-border); text-decoration:none; transition:background .15s; }
.gxrow:last-of-type { border-bottom:none; }
.gxrow:hover { background:#f9fafb; }
.gxrow__num { font-size:.7rem; font-weight:700; color:var(--color-text-muted); width:13px; flex-shrink:0; text-align:center; }
.gxrow__ico { width:28px; height:28px; border-radius:7px; display:flex; align-items:center; justify-content:center; font-size:.7rem; font-weight:800; color:#fff; flex-shrink:0; }
.gxrow__info { flex:1; min-width:0; }
.gxrow__name { font-size:.8rem; font-weight:700; color:var(--color-text); }
.gxrow__sub  { font-size:.67rem; color:var(--color-text-muted); margin-top:1px; }
.gxrow__tag  { font-size:.63rem; font-weight:700; padding:2px 6px; border-radius:3px; white-space:nowrap; flex-shrink:0; }
.tag-nl   { background:#dbeafe; color:#1d4ed8; }
.tag-easy { background:#dcfce7; color:#15803d; }
.tag-top  { background:#fef9c3; color:#a16207; }

/* Ad placeholder */
.ad-slot { border:1.5px dashed #d1d5db; border-radius:8px; padding:20px 12px; text-align:center; background:#f9fafb; }
.ad-slot__label { font-size:.6rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:#9ca3af; display:block; margin-bottom:4px; }
.ad-slot__size  { font-size:.72rem; color:#c4c9d0; display:block; }

/* Inline ad (inside article) */
.ad-inline { border:1.5px dashed #e5e7eb; border-radius:8px; padding:20px; text-align:center; background:#fafafa; margin:40px 0; }
.ad-inline .ad-slot__label { font-size:.6rem; }

/* Related guides */
.grel-item { display:flex; align-items:center; gap:8px; padding:9px 15px; border-bottom:1px solid var(--color-border); text-decoration:none; font-size:.8rem; font-weight:600; color:var(--color-text); transition:background .15s; }
.grel-item:last-of-type { border-bottom:none; }
.grel-item:hover { background:#f9fafb; color:var(--color-accent-dark); }
.grel-item::before { content:'→'; color:var(--color-accent-dark); font-size:.75rem; flex-shrink:0; }

/* Breadcrumb (in hero) */
.guide-breadcrumb { font-size:.72rem; color:rgba(255,255,255,.38); margin:0 0 10px; }
.guide-breadcrumb a { color:rgba(255,255,255,.45); text-decoration:none; }
.guide-breadcrumb a:hover { color:rgba(255,255,255,.7); }
.guide-breadcrumb span { margin:0 5px; }
