/* Ashdar Tagor — roulette editorial (he-IL) */
:root {
  --felt: #0c3a2c;
  --felt-deep: #07261d;
  --felt-mid: #145c45;
  --crimson: #c41e2a;
  --crimson-deep: #8e1520;
  --brass: #c9a35c;
  --brass-soft: #e2c98a;
  --ink: #121816;
  --ink-soft: #3a4540;
  --muted: #5c6b64;
  --paper: #eef1ef;
  --paper-2: #e2e8e4;
  --line: rgba(18, 24, 22, 0.12);
  --white: #f8faf8;
  --shadow: 0 18px 50px rgba(7, 38, 29, 0.18);
  --radius: 4px;
  --font-display: "Secular One", "Rubik", sans-serif;
  --font-body: "Rubik", system-ui, sans-serif;
  --header-h: 64px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  max-width: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  max-width: 100%;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--felt-mid);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--crimson);
}

h1,
h2,
h3,
.brand-mark {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 0.55em;
  overflow-wrap: anywhere;
  word-break: break-word;
}

h1 {
  font-size: clamp(1.55rem, 5.5vw, 2.35rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.25rem, 4vw, 1.75rem);
}

h3 {
  font-size: 1.1rem;
}

p {
  margin: 0 0 0.9em;
}

.container {
  width: min(720px, calc(100% - 1.5rem));
  max-width: 100%;
  margin-inline: auto;
  min-width: 0;
}

@media (min-width: 900px) {
  .container {
    width: min(760px, calc(100% - 2rem));
  }

  body {
    font-size: 1.05rem;
    line-height: 1.7;
  }
}

.skip-link {
  position: absolute;
  inset-inline-start: 1rem;
  top: -100px;
  background: var(--felt);
  color: var(--white);
  padding: 0.6rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  top: 1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(238, 241, 239, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Desktop: compact centered header (not edge-to-edge) */
@media (min-width: 861px) {
  :root {
    --header-h: 52px;
  }

  .site-header {
    top: 0.55rem;
    height: auto;
    background: transparent;
    border-bottom: none;
    backdrop-filter: none;
    display: flex;
    justify-content: center;
    padding-inline: 1rem;
    pointer-events: none;
  }

  .site-header .header-inner {
    pointer-events: auto;
    width: max-content;
    max-width: min(480px, calc(100vw - 2rem));
    margin-inline: auto;
    height: var(--header-h);
    padding-inline: 0.75rem 0.7rem;
    gap: 1.35rem;
    justify-content: flex-start;
    background: rgba(238, 241, 239, 0.95);
    backdrop-filter: blur(14px);
    border: 1px solid var(--line);
    border-radius: 6px;
    box-shadow: 0 8px 28px rgba(7, 38, 29, 0.12);
  }

  .site-header .logo-mark {
    width: 34px;
    height: 34px;
  }

  .site-header .logo-text {
    font-size: 1.05rem;
  }

  .site-header .header-cta-desktop {
    min-height: 38px;
    padding: 0.45rem 0.95rem;
    font-size: 0.86rem;
  }
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: inherit;
  text-decoration: none;
}

.logo-mark {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  filter: drop-shadow(0 2px 6px rgba(7, 38, 29, 0.25));
  transition: transform 0.35s var(--ease), filter 0.35s;
}

a.logo:hover .logo-mark {
  transform: scale(1.06);
  filter: drop-shadow(0 4px 10px rgba(201, 163, 92, 0.35));
}

div.logo {
  cursor: default;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}

.logo-text span {
  color: var(--crimson);
}

@media (prefers-reduced-motion: reduce) {
  a.logo:hover .logo-mark {
    transform: none;
  }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 44px;
  padding: 0.65rem 1.1rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s, border-color 0.25s;
  max-width: 100%;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--crimson);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--crimson-deep);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  border-color: var(--felt);
  color: var(--felt);
}

.btn-ghost:hover {
  background: var(--felt);
  color: var(--white);
}

.btn-ghost-light {
  background: transparent;
  border-color: rgba(248, 250, 248, 0.45);
  color: var(--white);
}

.btn-ghost-light:hover {
  background: rgba(248, 250, 248, 0.12);
  color: var(--white);
  border-color: var(--brass-soft);
}

.btn-brass {
  background: linear-gradient(135deg, var(--brass), var(--brass-soft));
  color: var(--felt-deep);
}

.btn-brass:hover {
  color: var(--felt-deep);
  filter: brightness(1.05);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
}

.toc-sheet {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(7, 38, 29, 0.55);
}

.toc-sheet.is-open {
  display: block;
}

.toc-panel {
  position: absolute;
  inset-block: 0;
  inset-inline-start: 0;
  width: min(320px, 88vw);
  background: var(--white);
  padding: 1.25rem;
  box-shadow: var(--shadow);
  overflow-y: auto;
  animation: slideIn 0.35s var(--ease);
}

@keyframes slideIn {
  from {
    transform: translateX(24px);
    opacity: 0.4;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.toc-panel h2 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.toc-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.toc-panel a {
  display: block;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
}

.toc-close {
  margin-bottom: 1rem;
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
  }

  .header-cta-desktop {
    padding: 0.55rem 0.85rem;
    font-size: 0.82rem;
  }
}

/* Hero — full-bleed composition */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(196, 30, 42, 0.35), transparent 55%),
    radial-gradient(ellipse 70% 50% at 85% 20%, rgba(201, 163, 92, 0.28), transparent 50%),
    linear-gradient(160deg, var(--felt-deep) 0%, var(--felt) 45%, #0a2f24 100%);
}

@media (min-width: 861px) {
  .hero {
    /* Keep brand in first viewport, pull next sections up */
    min-height: clamp(380px, 58vh, 520px);
  }

  .hero-content {
    padding: clamp(1.75rem, 4.5vh, 2.75rem) 0 clamp(1.35rem, 3.5vh, 2.25rem);
  }

  .intent-strip {
    padding: 0.55rem 0;
  }

  .section {
    padding: clamp(1.35rem, 3.2vw, 2.35rem) 0;
  }

  #verdict.section {
    padding-top: clamp(1.15rem, 2.5vw, 1.75rem);
  }
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 11px,
      rgba(255, 255, 255, 0.015) 11px,
      rgba(255, 255, 255, 0.015) 12px
    );
  pointer-events: none;
}

.hero-wheel {
  position: absolute;
  inset-inline-end: -4%;
  top: 50%;
  translate: 0 -50%;
  width: min(42vw, 380px);
  aspect-ratio: 1;
  opacity: 0.92;
  animation: wheelIn 1.1s var(--ease) both, spinSlow 48s linear infinite;
  animation-delay: 0.15s, 1.2s;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.35));
  max-width: 45vw;
}

@keyframes wheelIn {
  from {
    opacity: 0;
    transform: scale(0.88) rotate(-18deg);
  }
  to {
    opacity: 0.92;
    transform: scale(1) rotate(0);
  }
}

@keyframes spinSlow {
  to {
    transform: rotate(360deg);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 1.5rem));
  margin-inline: auto;
  padding: clamp(2.25rem, 7vh, 4rem) 0 clamp(1.75rem, 5vh, 3rem);
  max-width: 34rem;
}

@media (min-width: 900px) {
  .hero-content {
    margin-inline-start: max(0.75rem, calc((100% - 760px) / 2 + 0.75rem));
    margin-inline-end: auto;
  }

  .hero-wheel {
    inset-inline-end: max(-4%, calc((100% - 760px) / 2 - 8%));
    max-width: none;
  }
}

.brand-hero {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 7vw, 3.4rem);
  letter-spacing: 0.01em;
  margin: 0 0 0.35em;
  color: var(--white);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
  animation: rise 0.8s var(--ease) both;
}

.brand-hero em {
  font-style: normal;
  color: var(--brass-soft);
}

.hero h1 {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-family: var(--font-body);
  font-weight: 500;
  color: rgba(248, 250, 248, 0.92);
  margin-bottom: 0.75em;
  animation: rise 0.8s var(--ease) 0.1s both;
}

.hero-lead {
  color: rgba(248, 250, 248, 0.78);
  font-size: 1.05rem;
  max-width: 32ch;
  margin-bottom: 1.5rem;
  animation: rise 0.8s var(--ease) 0.18s both;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  animation: rise 0.8s var(--ease) 0.26s both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 720px) {
  .hero {
    min-height: auto;
    align-items: start;
  }

  .hero-wheel {
    position: relative;
    inset: auto;
    translate: none;
    width: min(58vw, 220px);
    margin: 1.1rem auto 0;
    opacity: 0.85;
    animation: wheelIn 1.1s var(--ease) both, spinSlow 48s linear infinite;
    animation-delay: 0.15s, 1.2s;
  }

  .hero-content {
    width: min(720px, calc(100% - 1.5rem));
    margin-inline: auto;
    max-width: none;
    padding: 1.5rem 0 1.75rem;
    text-align: center;
  }

  .brand-hero {
    font-size: clamp(2rem, 9vw, 2.6rem);
  }

  .hero h1 {
    font-size: 1.15rem;
  }

  .hero-lead {
    max-width: 34ch;
    margin-inline: auto;
    font-size: 0.98rem;
  }

  .hero-cta {
    justify-content: stretch;
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
  }
}

/* Intent strip */
.intent-strip {
  background: var(--felt-deep);
  color: var(--white);
  padding: 0.85rem 0;
  border-block: 1px solid rgba(201, 163, 92, 0.25);
  overflow-x: auto;
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
}

.intent-strip ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  justify-content: center;
}

.intent-strip a {
  color: var(--brass-soft);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
}

.intent-strip a:hover {
  color: var(--white);
}

/* Sections */
.section {
  padding: clamp(1.75rem, 5vw, 3.25rem) 0;
}

.section-alt {
  background: var(--paper-2);
}

.section-felt {
  background: linear-gradient(180deg, var(--felt) 0%, var(--felt-deep) 100%);
  color: var(--white);
}

.section-felt a {
  color: var(--brass-soft);
}

.section-kicker {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 0.45rem;
}

.section-felt .section-kicker {
  color: var(--brass);
}

.short-answer {
  font-size: 1.02rem;
  color: var(--ink-soft);
  max-width: 40rem;
  border-inline-start: 3px solid var(--brass);
  padding-inline-start: 0.85rem;
  margin-bottom: 1.25rem;
}

.section-felt .short-answer {
  color: rgba(248, 250, 248, 0.85);
  border-color: var(--brass);
}

/* Type grid — not card-heavy; linked rows */
.type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.type-link {
  display: block;
  background: var(--white);
  padding: 1.15rem 1.1rem;
  text-decoration: none;
  color: inherit;
  transition: background 0.25s, color 0.25s;
}

.type-link:hover {
  background: var(--felt);
  color: var(--white);
}

.type-link:hover .type-meta {
  color: rgba(248, 250, 248, 0.7);
}

.type-link h3 {
  margin-bottom: 0.35em;
  color: inherit;
}

.type-meta {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.type-edge {
  display: inline-block;
  margin-top: 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--crimson);
}

.type-link:hover .type-edge {
  color: var(--brass-soft);
}

@media (max-width: 860px) {
  .type-grid {
    grid-template-columns: 1fr;
  }
}

/* Verdict block */
.verdict {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.verdict-stat {
  text-align: center;
  padding: 1.75rem;
  background:
    radial-gradient(circle at 30% 20%, rgba(201, 163, 92, 0.2), transparent 55%),
    var(--felt);
  color: var(--white);
  border-radius: var(--radius);
}

.verdict-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  color: var(--brass-soft);
  line-height: 1;
  margin-bottom: 0.35rem;
}

@media (max-width: 720px) {
  .verdict {
    grid-template-columns: 1fr;
  }
}

/* Compare table → stacked cards on mobile */
.compare-wrap {
  overflow-x: auto;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.98rem;
}

.compare-table th,
.compare-table td {
  padding: 0.9rem 1rem;
  text-align: start;
  border-bottom: 1px solid var(--line);
}

.compare-table th {
  background: var(--felt);
  color: var(--white);
  font-weight: 600;
}

.compare-table tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.45);
}

.compare-table .best {
  color: var(--felt-mid);
  font-weight: 700;
}

@media (max-width: 768px) {
  .compare-table,
  .compare-table thead,
  .compare-table tbody,
  .compare-table th,
  .compare-table td,
  .compare-table tr {
    display: block;
  }

  .compare-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .compare-table tr {
    background: var(--white);
    margin-bottom: 0.85rem;
    padding: 0.85rem 1rem;
    border: 1px solid var(--line);
  }

  .compare-table td {
    border: none;
    padding: 0.35rem 0;
    background: transparent !important;
  }

  .compare-table td::before {
    content: attr(data-label);
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 0.1rem;
  }
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  counter-reset: step;
}

.step {
  position: relative;
  padding-top: 0.25rem;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.75rem;
  background: var(--crimson);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1rem;
  border-radius: 50%;
}

.step h3 {
  margin-bottom: 0.35em;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 860px) {
  .steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

/* FAQ */
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 0.85rem 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--crimson);
  flex-shrink: 0;
}

.faq details[open] summary::after {
  content: "–";
}

.faq details p {
  margin: 0.75rem 0 0.25rem;
  color: var(--ink-soft);
}

/* Page hero (inner pages) */
.page-hero {
  padding: 1.5rem 0 1.15rem;
  background:
    linear-gradient(135deg, rgba(12, 58, 44, 0.08), transparent 60%),
    var(--paper);
  border-bottom: 1px solid var(--line);
}

.breadcrumb {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--crimson);
}

.prose {
  max-width: none;
  width: 100%;
}

.prose ul {
  padding-inline-start: 1.15rem;
}

.related {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
  margin-top: 1.25rem;
}

@media (min-width: 560px) {
  .related {
    grid-template-columns: repeat(2, 1fr);
  }
}

.related a {
  display: block;
  padding: 0.85rem 0.95rem;
  background: var(--white);
  border: 1px solid var(--line);
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
  transition: border-color 0.2s, background 0.2s;
}

.related a:hover {
  border-color: var(--felt);
  background: var(--paper-2);
}

/* Footer */
.site-footer {
  background: var(--felt-deep);
  color: rgba(248, 250, 248, 0.78);
  padding: 2.75rem 0 1.75rem;
  font-size: 0.92rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.site-footer a {
  color: var(--brass-soft);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--white);
}

.site-footer .logo-text {
  color: var(--white);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.45rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  font-size: 0.85rem;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: 2px solid var(--brass);
  color: var(--brass-soft);
  font-weight: 700;
  border-radius: 50%;
  font-size: 0.75rem;
}

@media (max-width: 720px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Legal prose */
.legal-content {
  padding: 2.5rem 0 3.5rem;
}

.legal-content h2 {
  margin-top: 1.75rem;
}

/* Content structure on guide pages */
.page-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 1rem 0 0;
}

.page-toc a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.3rem 0.7rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.page-toc a:hover {
  border-color: var(--felt);
  background: var(--felt);
  color: var(--white);
}

.content-block {
  margin: 0 0 1.5rem;
  padding-bottom: 0.15rem;
}

.content-block > h2 {
  scroll-margin-top: calc(var(--header-h) + 12px);
}

.content-block .lead {
  font-size: 1rem;
  color: var(--ink-soft);
}

.checklist {
  list-style: none;
  margin: 0.85rem 0;
  padding: 0;
}

.checklist li {
  position: relative;
  padding: 0.55rem 0;
  padding-inline-start: 1.75rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.96rem;
}

.checklist li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.85rem;
  width: 0.8rem;
  height: 0.8rem;
  border: 2px solid var(--felt-mid);
  border-radius: 2px;
  background:
    linear-gradient(135deg, transparent 45%, var(--brass) 45%, var(--brass) 55%, transparent 55%),
    linear-gradient(-45deg, transparent 40%, var(--brass) 40%, var(--brass) 60%, transparent 60%);
  background-size: 60% 60%;
  background-position: center;
  background-repeat: no-repeat;
}

.key-facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin: 1rem 0 1.25rem;
}

@media (min-width: 560px) {
  .key-facts {
    grid-template-columns: repeat(3, 1fr);
  }
}

.key-fact {
  background: var(--white);
  padding: 0.9rem 0.85rem;
  text-align: center;
}

.key-fact strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--felt);
  line-height: 1.15;
  margin-bottom: 0.2rem;
}

.key-fact span {
  font-size: 0.82rem;
  color: var(--muted);
}

/* CTA bands */
.cta-band {
  margin: 1.25rem 0 1.5rem;
  padding: 1.15rem 1rem;
  border-radius: var(--radius);
  background:
    radial-gradient(ellipse 70% 80% at 100% 0%, rgba(201, 163, 92, 0.22), transparent 55%),
    linear-gradient(135deg, var(--felt-deep), var(--felt));
  color: var(--white);
  max-width: 100%;
}

.cta-band--soft {
  background: var(--paper-2);
  color: var(--ink);
  border: 1px solid var(--line);
}

.cta-band h2,
.cta-band h3 {
  color: inherit;
  margin-bottom: 0.35em;
  font-size: clamp(1.1rem, 4vw, 1.3rem);
}

.cta-band p {
  margin: 0 0 0.95rem;
  max-width: none;
  opacity: 0.9;
  font-size: 0.95rem;
}

.cta-band--soft p {
  color: var(--ink-soft);
  opacity: 1;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.cta-band .btn-primary {
  background: var(--crimson);
}

.cta-band .btn-brass:hover {
  filter: brightness(1.06);
}

.cta-band .btn-ghost-light {
  border-color: rgba(248, 250, 248, 0.4);
}

.cta-note {
  margin: 0.75rem 0 0;
  font-size: 0.75rem;
  opacity: 0.72;
  line-height: 1.4;
}

.cta-band--soft .cta-note {
  color: var(--muted);
  opacity: 1;
}

.btn-pulse {
  animation: ctaPulse 2.4s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(196, 30, 42, 0.45);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(196, 30, 42, 0);
  }
}

.prose .cta-band + .content-block,
.prose .content-block + .cta-band {
  margin-top: 0.35rem;
}

/* —— Mobile polish —— */
@media (max-width: 640px) {
  :root {
    --header-h: 58px;
  }

  .site-header {
    height: var(--header-h);
  }

  .header-inner {
    height: var(--header-h);
  }

  .logo-mark {
    width: 34px;
    height: 34px;
  }

  .logo-text {
    font-size: 1.05rem;
  }

  .intent-strip {
    padding: 0.65rem 0;
    overflow-x: auto;
  }

  .intent-strip .container {
    overflow-x: auto;
    max-width: 100%;
    min-width: 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .intent-strip .container::-webkit-scrollbar {
    display: none;
  }

  .intent-strip ul {
    flex-wrap: nowrap;
    width: max-content;
    max-width: none;
    justify-content: flex-start;
    gap: 0.35rem 0.75rem;
    padding-inline: 0.15rem 0.5rem;
  }

  .intent-strip a {
    font-size: 0.82rem;
    white-space: nowrap;
  }

  .verdict {
    gap: 1.1rem;
  }

  .verdict-stat {
    padding: 1.15rem 1rem;
  }

  .verdict-stat strong {
    font-size: 2.2rem;
  }

  .type-link {
    padding: 1rem 0.95rem;
  }

  .steps {
    gap: 1rem;
  }

  .cta-actions {
    flex-direction: column;
  }

  .cta-actions .btn {
    width: 100%;
  }

  .page-hero .cta-actions {
    flex-direction: column;
  }

  .page-hero .cta-actions .btn {
    width: 100%;
  }

  .page-toc {
    margin-top: 0.85rem;
    max-height: none;
  }

  .page-toc a {
    flex: 1 1 calc(50% - 0.4rem);
    justify-content: center;
    text-align: center;
    font-size: 0.78rem;
    min-height: 36px;
  }

  .compare-table td,
  .compare-table th {
    font-size: 0.92rem;
  }

  .site-footer {
    padding: 2rem 0 1.35rem;
  }

  .footer-grid {
    gap: 1.35rem;
  }

  .legal-content {
    padding: 1.5rem 0 2.5rem;
  }

  .toc-panel {
    width: min(300px, 92vw);
    padding: 1rem;
  }
}

@media (max-width: 380px) {
  .container {
    width: calc(100% - 1.1rem);
  }

  .page-toc a {
    flex: 1 1 100%;
  }

  h1 {
    font-size: 1.4rem;
  }

  .header-cta-desktop {
    padding: 0.5rem 0.7rem;
    font-size: 0.78rem;
  }

  .cta-sticky-copy strong {
    font-size: 0.88rem;
  }
}

/* —— Sticky follow CTA —— */
.cta-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  z-index: 150;
  padding: 0.65rem 0.75rem calc(0.65rem + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(180deg, transparent, rgba(7, 38, 29, 0.55) 28%, rgba(7, 38, 29, 0.94));
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s var(--ease), opacity 0.28s ease;
}

.cta-sticky.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cta-sticky-inner {
  width: 100%;
  max-width: min(720px, 100%);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  padding: 0.7rem 0.85rem;
  background: var(--felt-deep);
  border: 1px solid rgba(201, 163, 92, 0.45);
  box-shadow: 0 -8px 32px rgba(7, 38, 29, 0.35);
  box-sizing: border-box;
}

.cta-sticky-copy {
  margin: 0;
  color: rgba(248, 250, 248, 0.92);
  display: grid;
  gap: 0.1rem;
  min-width: 0;
}

.cta-sticky-copy strong {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 400;
  color: var(--white);
}

.cta-sticky-copy span {
  font-size: 0.72rem;
  opacity: 0.72;
}

.cta-sticky-btn {
  flex-shrink: 0;
  min-width: 7.5rem;
}

body.cta-sticky-on {
  padding-bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px));
}

body.toc-open .cta-sticky {
  opacity: 0;
  pointer-events: none;
}

@media (min-width: 861px) {
  .cta-sticky {
    left: auto;
    right: 1.25rem;
    bottom: 1.25rem;
    width: auto;
    max-width: min(420px, calc(100vw - 2.5rem));
    padding: 0;
    background: none;
    transform: translateY(24px) scale(0.96);
  }

  [dir="rtl"] .cta-sticky {
    right: auto;
    left: 1.25rem;
  }

  .cta-sticky.is-visible {
    transform: translateY(0) scale(1);
  }

  .cta-sticky-inner {
    width: auto;
    margin: 0;
    padding: 0.75rem 0.9rem 0.75rem 1rem;
    box-shadow: var(--shadow);
  }

  body.cta-sticky-on {
    padding-bottom: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cta-sticky {
    transition: none;
  }

  .btn-pulse {
    animation: none;
  }

  .ix-wheel-wrap img {
    transition: none !important;
  }
}

/* —— Interactive: spin + payout calc —— */
.ix-panel {
  margin-top: 1.25rem;
  padding: 1.25rem 1.15rem;
  background: var(--white);
  border: 1px solid var(--line);
}

.ix-panel--felt {
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(201, 163, 92, 0.18), transparent 55%),
    linear-gradient(160deg, var(--felt) 0%, var(--felt-deep) 100%);
  border-color: rgba(201, 163, 92, 0.35);
  color: var(--white);
}

.ix-spin {
  display: grid;
  justify-items: center;
  gap: 1rem;
  text-align: center;
}

.ix-wheel-wrap {
  position: relative;
  width: min(220px, 70vw);
  aspect-ratio: 1;
}

.ix-wheel-wrap img {
  width: 100%;
  height: auto;
  transition: transform 4s cubic-bezier(0.12, 0.75, 0.12, 1);
  will-change: transform;
}

.ix-wheel-pointer {
  position: absolute;
  top: -6px;
  left: 50%;
  translate: -50% 0;
  width: 0;
  height: 0;
  border-inline: 8px solid transparent;
  border-top: 14px solid var(--brass);
  z-index: 2;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.35));
}

.ix-spin-result {
  margin: 0;
  font-size: 1.05rem;
  min-height: 1.5em;
  color: rgba(248, 250, 248, 0.92);
}

.ix-spin-result .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.1rem;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.ix-spin-result .num.is-red {
  background: var(--crimson);
  color: var(--white);
}

.ix-spin-result .num.is-black {
  background: #1a1a1a;
  color: var(--white);
}

.ix-spin-result .num.is-green {
  background: #1f7a4c;
  color: var(--white);
}

.ix-calc {
  display: grid;
  gap: 1rem;
}

.ix-field {
  display: grid;
  gap: 0.35rem;
}

.ix-field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.ix-field select,
.ix-field input {
  width: 100%;
  min-height: 44px;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  font: inherit;
  color: var(--ink);
}

.ix-calc-out {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
}

.ix-calc-stat {
  padding: 0.85rem 0.9rem;
  background: var(--paper-2);
  border: 1px solid var(--line);
}

.ix-calc-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--felt);
  line-height: 1.15;
  margin-bottom: 0.2rem;
  font-variant-numeric: tabular-nums;
}

.ix-calc-stat span {
  font-size: 0.8rem;
  color: var(--muted);
}

.ix-note {
  margin: 0.85rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.45;
}

@media (min-width: 560px) {
  .ix-calc-out {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .ix-wheel-wrap {
    width: min(180px, 58vw);
  }

  .ix-panel {
    padding: 1rem 0.9rem;
  }
}
