/* ============================================
   RAZED CASINO AUSTRALIA REVIEW — 2026
   Design tokens & full stylesheet
   ============================================ */

/* --- Google Fonts loaded in HTML --- */

:root {
  /* Palette */
  --bg:          #f5f5f0;
  --bg-alt:      #eceee8;
  --surface:     #ffffff;
  --text:        #1a1a1a;
  --text-muted:  #6b7280;
  --accent:      #6d28d9;
  --accent-soft: #ede9fe;
  --cyan:        #0891b2;
  --cyan-soft:   #ecfeff;
  --positive:    #059669;
  --positive-bg: #ecfdf5;
  --negative:    #dc2626;
  --negative-bg: #fef2f2;
  --warning:     #d97706;
  --warning-bg:  #fffbeb;
  --border:      #d4d4d4;
  --border-light:#e5e5e5;
  --gold:        #ca8a04;

  /* Type scale */
  --font-display: 'Space Grotesk', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  --fs-hero:   clamp(2.2rem, 5vw, 3.4rem);
  --fs-h2:     clamp(1.5rem, 3vw, 2rem);
  --fs-h3:     clamp(1.15rem, 2vw, 1.4rem);
  --fs-body:   1.05rem;
  --fs-small:  0.875rem;
  --fs-xs:     0.78rem;

  --lh-body:   1.7;
  --lh-heading:1.2;

  /* Spacing */
  --section-gap: 4rem;
  --content-max: 820px;
  --page-pad:    clamp(1rem, 4vw, 2.5rem);

  /* Radius */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

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

img { max-width: 100%; display: block; }
a   { color: var(--accent); text-decoration: none; transition: color .2s; }
a:hover { color: var(--cyan); }

/* --- Layout wrapper --- */
.wrapper {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--page-pad);
}

.wide-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--page-pad);
}

/* ============================================
   HEADER / NAVBAR
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(26, 26, 26, .97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--page-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.02em;
}

.nav-logo span {
  color: var(--cyan);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,.7);
  font-size: var(--fs-small);
  font-weight: 500;
  transition: color .2s;
}

.nav-links a:hover {
  color: #fff;
}

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

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: .3s;
  border-radius: 2px;
}

/* ============================================
   DISCLOSURE BAR
   ============================================ */
.disclosure {
  background: var(--warning-bg);
  border-bottom: 1px solid #fde68a;
  padding: 10px var(--page-pad);
  text-align: center;
  font-size: var(--fs-xs);
  color: var(--warning);
  line-height: 1.5;
}

.disclosure strong { font-weight: 600; }

/* ============================================
   HERO
   ============================================ */
.hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  padding: clamp(3rem, 8vw, 5rem) 0 clamp(2.5rem, 6vw, 4rem);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(109,40,217,.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(8,145,178,.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--page-pad);
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: var(--fs-xs);
  font-weight: 500;
  color: rgba(255,255,255,.8);
  margin-bottom: 1.2rem;
  width: fit-content;
}

.hero-eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--positive);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: var(--fs-hero);
  font-weight: 700;
  line-height: var(--lh-heading);
  letter-spacing: -.03em;
  margin-bottom: 1rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--cyan);
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.65);
  line-height: 1.6;
  max-width: 560px;
  margin-bottom: 1.5rem;
}

.hero-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: var(--fs-small);
  color: rgba(255,255,255,.5);
}

.hero-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Trust score card */
.trust-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: 2rem;
  text-align: center;
  backdrop-filter: blur(8px);
}

.trust-card .label {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.45);
  margin-bottom: 1rem;
  font-weight: 600;
}

.score-ring {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 0 auto 1.2rem;
}

.score-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.score-ring .track {
  fill: none;
  stroke: rgba(255,255,255,.08);
  stroke-width: 8;
}

.score-ring .fill {
  fill: none;
  stroke: var(--cyan);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 377;
  stroke-dashoffset: 377;
  transition: stroke-dashoffset 1.8s cubic-bezier(.4,0,.2,1);
}

.score-ring .score-number {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: #fff;
}

.score-ring .score-number small {
  font-size: 1.2rem;
  color: rgba(255,255,255,.4);
  margin-left: 2px;
}

.trust-card .verdict {
  font-weight: 600;
  font-size: var(--fs-body);
  margin-bottom: .5rem;
}

.trust-card .verdict-sub {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,.45);
}

/* ============================================
   QUICK FACTS BAR
   ============================================ */
.quick-facts {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  margin-top: -2rem;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-md);
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0;
}

.fact-item {
  padding: 1.2rem 1rem;
  text-align: center;
  border-right: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.fact-item:last-child { border-right: none; }

.fact-item .fact-label {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 500;
  margin-bottom: 4px;
}

.fact-item .fact-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
}

.fact-item .fact-value.highlight {
  color: var(--accent);
}

/* ============================================
   SECTION & TYPOGRAPHY
   ============================================ */
.section {
  padding: var(--section-gap) 0;
}

.section:nth-child(even) {
  background: var(--bg-alt);
}

.section-anchor {
  display: block;
  position: relative;
  top: -80px;
  visibility: hidden;
}

h2 {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 700;
  line-height: var(--lh-heading);
  letter-spacing: -.02em;
  margin-bottom: 1.5rem;
  color: var(--text);
}

h2 .section-number {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: .4rem;
}

h3 {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: 600;
  line-height: 1.3;
  margin: 2rem 0 .8rem;
  color: var(--text);
}

p {
  margin-bottom: 1rem;
  color: var(--text);
}

p + p { margin-top: 0; }

/* ============================================
   TABLE OF CONTENTS (floating)
   ============================================ */
.toc-float {
  position: fixed;
  left: max(calc((100vw - 1100px)/2 - 220px), 16px);
  top: 100px;
  width: 200px;
  z-index: 50;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .4s, transform .4s;
  pointer-events: none;
}

.toc-float.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.toc-float .toc-title {
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-muted);
  margin-bottom: .8rem;
}

.toc-float ul {
  list-style: none;
  border-left: 2px solid var(--border-light);
  padding-left: 12px;
}

.toc-float li {
  margin-bottom: 6px;
}

.toc-float a {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  line-height: 1.4;
  display: block;
  padding: 2px 0;
  transition: color .2s, border-color .2s;
}

.toc-float a:hover,
.toc-float a.active {
  color: var(--accent);
}

/* ============================================
   INFO TABLE (overview)
   ============================================ */
.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background: var(--surface);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}

.info-table th,
.info-table td {
  padding: 12px 16px;
  text-align: left;
  font-size: var(--fs-small);
  border-bottom: 1px solid var(--border-light);
}

.info-table th {
  background: var(--bg-alt);
  font-weight: 600;
  color: var(--text);
  width: 38%;
}

.info-table td {
  color: var(--text);
}

.info-table tr:last-child th,
.info-table tr:last-child td {
  border-bottom: none;
}

/* ============================================
   CALLOUT BOXES
   ============================================ */
.callout {
  border-radius: var(--r-md);
  padding: 1.2rem 1.5rem;
  margin: 1.5rem 0;
  font-size: var(--fs-small);
  line-height: 1.6;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.callout-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.callout.warning {
  background: var(--warning-bg);
  border: 1px solid #fde68a;
  color: #92400e;
}

.callout.info {
  background: var(--cyan-soft);
  border: 1px solid #a5f3fc;
  color: #155e75;
}

.callout.tip {
  background: var(--positive-bg);
  border: 1px solid #a7f3d0;
  color: #065f46;
}

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

.pros-card, .cons-card {
  border-radius: var(--r-md);
  padding: 1.5rem;
  border: 1px solid var(--border-light);
}

.pros-card {
  background: var(--positive-bg);
  border-color: #a7f3d0;
}

.cons-card {
  background: var(--negative-bg);
  border-color: #fecaca;
}

.pros-card h4, .cons-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pros-card h4 { color: var(--positive); }
.cons-card h4 { color: var(--negative); }

.pros-card ul, .cons-card ul {
  list-style: none;
  padding: 0;
}

.pros-card li, .cons-card li {
  padding: 6px 0 6px 24px;
  position: relative;
  font-size: var(--fs-small);
  line-height: 1.5;
}

.pros-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--positive);
  font-weight: 700;
}

.cons-card li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: var(--negative);
  font-weight: 700;
}

/* ============================================
   COMPARISON TABLE
   ============================================ */
.comparison-table-wrap {
  overflow-x: auto;
  margin: 1.5rem 0;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}

.comparison-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  background: var(--surface);
  font-size: var(--fs-small);
}

.comparison-table thead th {
  background: #1a1a2e;
  color: #fff;
  padding: 14px 16px;
  font-family: var(--font-display);
  font-weight: 600;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
}

.comparison-table thead th:first-child {
  text-align: left;
  border-radius: var(--r-md) 0 0 0;
}

.comparison-table thead th:last-child {
  border-right: none;
  border-radius: 0 var(--r-md) 0 0;
}

.comparison-table thead th.highlighted {
  background: var(--accent);
}

.comparison-table td {
  padding: 12px 16px;
  text-align: center;
  border-bottom: 1px solid var(--border-light);
  border-right: 1px solid var(--border-light);
}

.comparison-table td:first-child {
  text-align: left;
  font-weight: 600;
}

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

.comparison-table td.highlight-col {
  background: var(--accent-soft);
}

/* ============================================
   BONUS STEPS
   ============================================ */
.steps {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--r-md);
  padding: 1.2rem 1.5rem;
  transition: box-shadow .2s;
}

.step:hover {
  box-shadow: var(--shadow-sm);
}

.step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-content h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-body);
  margin-bottom: .3rem;
}

.step-content p {
  font-size: var(--fs-small);
  color: var(--text-muted);
  margin: 0;
}

/* ============================================
   VIP TABLE
   ============================================ */
.vip-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: var(--fs-small);
  background: var(--surface);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}

.vip-table th {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  color: #fff;
  padding: 12px 14px;
  font-weight: 600;
  text-align: left;
  font-family: var(--font-display);
}

.vip-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border-light);
}

.vip-table tr:last-child td { border-bottom: none; }
.vip-table tr:hover td { background: var(--bg-alt); }

.vip-badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 999px;
  font-weight: 600;
  font-size: var(--fs-xs);
}

.badge-bronze    { background: #fef3c7; color: #92400e; }
.badge-silver    { background: #f1f5f9; color: #475569; }
.badge-gold      { background: #fef9c3; color: #854d0e; }
.badge-platinum  { background: #ede9fe; color: #5b21b6; }
.badge-diamond   { background: #ecfeff; color: #155e75; }
.badge-onyx      { background: #1a1a2e; color: #fff; }

/* ============================================
   PROVIDER GRID
   ============================================ */
.provider-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.provider-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--r-md);
  padding: 1.2rem;
  text-align: center;
  transition: box-shadow .2s, transform .2s;
}

.provider-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.provider-card .provider-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-small);
  margin-bottom: .3rem;
}

.provider-card .provider-type {
  font-size: var(--fs-xs);
  color: var(--text-muted);
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-list {
  margin: 1.5rem 0;
}

.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--r-md);
  margin-bottom: .6rem;
  background: var(--surface);
  overflow: hidden;
  transition: box-shadow .2s;
}

.faq-item:hover {
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.1rem 1.5rem;
  font-family: var(--font-display);
  font-size: var(--fs-body);
  font-weight: 600;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: color .2s;
}

.faq-question:hover { color: var(--accent); }

.faq-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  transition: transform .3s;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.4,0,.2,1);
}

.faq-answer-inner {
  padding: 0 1.5rem 1.2rem;
  font-size: var(--fs-small);
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================
   AUTHOR / E-E-A-T BOX
   ============================================ */
.author-box {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--r-md);
  padding: 1.5rem;
  margin: 2rem 0;
}

.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--cyan));
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
}

.author-info .author-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-body);
}

.author-info .author-role {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  margin-bottom: .4rem;
}

.author-info .author-bio {
  font-size: var(--fs-small);
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: #1a1a2e;
  color: rgba(255,255,255,.5);
  padding: 3rem 0 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--page-pad);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .8rem;
}

.footer-brand span { color: var(--cyan); }

.footer-desc {
  font-size: var(--fs-xs);
  line-height: 1.6;
  max-width: 360px;
}

.footer-col h5 {
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.7);
  margin-bottom: .8rem;
}

.footer-col ul { list-style: none; }

.footer-col li {
  margin-bottom: .4rem;
}

.footer-col a {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,.45);
  transition: color .2s;
}

.footer-col a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: var(--fs-xs);
}

.footer-18plus {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.06);
  border-radius: var(--r-sm);
  padding: 6px 12px;
  font-weight: 600;
  color: var(--negative);
}

/* ============================================
   TAG LABELS
   ============================================ */
.tag {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 999px;
  line-height: 1.4;
}

.tag-green  { background: var(--positive-bg); color: var(--positive); border: 1px solid #a7f3d0; }
.tag-red    { background: var(--negative-bg); color: var(--negative); border: 1px solid #fecaca; }
.tag-purple { background: var(--accent-soft);  color: var(--accent);   border: 1px solid #c4b5fd; }
.tag-cyan   { background: var(--cyan-soft);    color: var(--cyan);     border: 1px solid #a5f3fc; }
.tag-gold   { background: #fef9c3;            color: var(--gold);     border: 1px solid #fde68a; }

/* ============================================
   CRYPTO ICONS ROW
   ============================================ */
.crypto-row {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin: 1rem 0;
}

.crypto-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: var(--fs-xs);
  font-weight: 600;
  font-family: var(--font-display);
}

/* ============================================
   CTA BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-small);
  padding: 12px 28px;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform .15s, box-shadow .2s, background .2s, color .2s;
  white-space: nowrap;
  line-height: 1.4;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: linear-gradient(135deg, #6d28d9 0%, #7c3aed 50%, #8b5cf6 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(109,40,217,.35);
}

.btn-primary:hover {
  box-shadow: 0 6px 20px rgba(109,40,217,.45);
  color: #fff;
}

.btn-ghost {
  background: rgba(255,255,255,.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(4px);
}

.btn-ghost:hover {
  background: rgba(255,255,255,.18);
  color: #fff;
}

.btn-lg {
  font-size: var(--fs-body);
  padding: 16px 36px;
}

/* Header CTA */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-xs);
  padding: 8px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #6d28d9, #8b5cf6);
  color: #fff !important;
  text-decoration: none;
  transition: transform .15s, box-shadow .2s;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(109,40,217,.3);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(109,40,217,.45);
  color: #fff !important;
}

/* Hero CTAs */
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

/* Verdict CTA Box */
.verdict-cta-box {
  margin-top: 2rem;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  border-radius: var(--r-lg);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  box-shadow: var(--shadow-lg);
}

.verdict-cta-text {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  color: #fff;
}

.verdict-cta-score {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--cyan);
  line-height: 1;
  flex-shrink: 0;
}

.verdict-cta-score small {
  font-size: 1rem;
  color: rgba(255,255,255,.4);
}

.verdict-cta-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: .2rem;
}

.verdict-cta-text span {
  font-size: var(--fs-small);
  color: rgba(255,255,255,.6);
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .toc-float { display: none; }
}

@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-eyebrow { margin: 0 auto 1.2rem; }
  .hero-sub { margin: 0 auto 1.5rem; }
  .hero-meta { justify-content: center; }

  .trust-card { max-width: 300px; margin: 0 auto; }

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

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .nav-cta { display: none; }

  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(26,26,26,.98);
    padding: 1.5rem var(--page-pad);
    gap: 1rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }

  .nav-toggle { display: block; }

  .facts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero-ctas { justify-content: center; }

  .verdict-cta-box {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }

  .verdict-cta-text {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .facts-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .comparison-table-wrap {
    margin-left: calc(-1 * var(--page-pad));
    margin-right: calc(-1 * var(--page-pad));
    border-radius: 0;
  }
}

/* ============================================
   ANIMATIONS / reduced motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .score-ring .fill { transition: none; }
  .faq-answer { transition: none; }
  .hero-eyebrow .dot { animation: none; }
}
