/* ============================================
   V.VEGAS CASINO - DESIGN SYSTEM
   Single fixed dark theme (no theme switcher).
   Palette: deep charcoal surfaces, gold primary,
   neon red + cyan accents (Vegas Strip motif).
   ============================================ */

:root {
    /* Surfaces */
    --background: #12100e;
    --background-alt: #1a1815;
    --surface: #1f1c18;
    --surface-raised: #26221d;
    --card: #1c1916;

    /* Text */
    --foreground: #f4efe6;
    --muted-foreground: #b7ada0;
    --subtle-foreground: #a8a094;
    --foreground-strong: #ffffff;

    /* Brand accents */
    --gold: #e5bd6d;
    --primary: #e5bd6d;
    --primary-strong: #f0cf8a;
    --primary-foreground: #1a1409;
    --neon-red: #ff3b47;
    --neon-cyan: #2fe3e0;
    --neon-magenta: #ff4fa3;

    --accent: #2fe3e0;
    --accent-foreground: #10201f;
    --destructive: #c0392b;
    --destructive-foreground: #ffffff;

    /* Lines */
    --border: #3a332a;
    --border-strong: #574a37;
    --border-gold: rgba(229, 189, 109, 0.45);

    /* Typography */
    --font-display: "Playfair Display", Georgia, serif;
    --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;

    --step-xs: 0.875rem;
    --step-sm: 0.9375rem;
    --step-base: 1.0625rem;
    --step-md: clamp(1.125rem, calc(0.4vw + 1.05rem), 1.25rem);
    --step-lg: clamp(1.3rem, calc(1vw + 1.05rem), 1.6rem);
    --step-xl: clamp(1.6rem, calc(2vw + 1.05rem), 2.25rem);
    --step-2xl: clamp(2rem, calc(3.2vw + 1rem), 3.4rem);

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1.25rem;
    --space-lg: 2rem;
    --space-xl: clamp(2.5rem, calc(4vw + 1rem), 4.5rem);

    /* Geometry */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-pill: 999px;
    --container: 1320px;
    --header-height: 64px;

    --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.45);
    --glow-gold: 0 0 28px rgba(229, 189, 109, 0.28);
    --glow-red: 0 0 34px rgba(255, 59, 71, 0.32);
}

/* ============================================
   OVERFLOW PREVENTION - Safety Net
   ============================================ */

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

img, video, iframe, embed, object, svg {
    max-width: 100%;
    height: auto;
}

[class*="grid"] > *,
[class*="flex"] > * {
    min-width: 0;
}

pre, code, .code-block, [class*="code"] {
    max-width: 100%;
    overflow-x: auto;
}

pre code,
.code-block code {
    display: block;
    min-width: 0;
}

.table-wrapper,
[class*="table-"] {
    max-width: 100%;
    overflow-x: auto;
}

p, li, td, th {
    overflow-wrap: break-word;
}

details {
    height: fit-content;
}

:where(p, li, blockquote, figcaption, dd, .prose, .seo-text, article)
  a:not([class]) {
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

input, textarea, select {
    max-width: 100%;
}

section {
    overflow: clip;
}

/* ============================================
   BASE TYPOGRAPHY
   Display serif for headings (Playfair Display),
   Inter for all body copy and UI.
   ============================================ */

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--background);
    color: var(--foreground);
    font-family: var(--font-body);
    font-size: var(--step-base);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--foreground-strong);
    line-height: 1.18;
    margin: 0 0 var(--space-md);
    font-weight: 600;
}

h1 { font-size: var(--step-2xl); }
h2 { font-size: var(--step-xl); }
h3 { font-size: var(--step-lg); }
h4 { font-size: var(--step-md); font-family: var(--font-body); font-weight: 700; }

p { margin: 0 0 var(--space-md); }

a { color: var(--primary-strong); }
a:hover { color: var(--foreground-strong); }

:focus-visible {
    outline: 2px solid var(--primary-strong);
    outline-offset: 3px;
    border-radius: 3px;
}

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

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 1100;
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 0.75rem 1.25rem;
    font-weight: 600;
    border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus {
    left: 0;
}

.eyebrow {
    font-size: var(--step-xs);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: var(--space-sm);
    font-weight: 600;
}

/* ============================================
   LAYOUT PRIMITIVES
   .container - page gutter + max width
   .container--narrow - reading measure
   ============================================ */

.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--space-md);
}

.container--narrow {
    max-width: 820px;
}

main > section {
    padding-block: var(--space-xl);
    border-bottom: 1px solid var(--border);
}

main > section:last-child {
    border-bottom: 0;
}

.section-title {
    margin-bottom: var(--space-lg);
}

.prose {
    max-width: 72ch;
}

.prose p,
.prose li {
    color: var(--muted-foreground);
}

.prose h3 {
    color: var(--foreground-strong);
    margin-top: var(--space-lg);
}

.prose ul,
.prose ol {
    margin: 0 0 var(--space-md);
    padding-left: 1.25rem;
}

.prose li { margin-bottom: 0.5rem; }

.prose strong { color: var(--foreground); }

/* ============================================
   BUTTONS
   .btn--gold  - primary conversion action
   .btn--ghost - outlined secondary (Login)
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 48px;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-size: var(--step-sm);
    font-weight: 700;
    letter-spacing: 0.01em;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn--gold {
    background: linear-gradient(180deg, var(--primary-strong), var(--primary));
    color: var(--primary-foreground);
    box-shadow: var(--glow-gold);
}
.btn--gold:hover {
    background: var(--primary-strong);
    color: var(--primary-foreground);
    transform: translateY(-1px);
}

.btn--ghost {
    background: transparent;
    color: var(--primary-strong);
    border-color: var(--border-gold);
}
.btn--ghost:hover {
    border-color: var(--primary-strong);
    color: var(--foreground-strong);
}

.btn--sm {
    min-height: 44px;
    padding: 0.55rem 1.2rem;
    font-size: var(--step-xs);
}

.btn--lg {
    min-height: 54px;
    padding: 0.9rem 2.4rem;
    font-size: var(--step-md);
}

/* ============================================
   SITE HEADER + PRIMARY NAV
   Mobile: fixed full-screen drawer below header.
   Desktop (>=1024px): inline pill navigation.
   ============================================ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--background);
    border-bottom: 1px solid var(--border-gold);
}

.site-header__inner {
    max-width: var(--container);
    margin-inline: auto;
    padding: 0 var(--space-md);
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
}

.site-brand {
    display: inline-flex;
    align-items: baseline;
    gap: 0.35rem;
    font-family: var(--font-display);
    font-size: 1.25rem;
    text-decoration: none;
    white-space: nowrap;
}

.site-brand__mark {
    color: var(--primary);
    font-weight: 700;
}

.site-brand__text {
    color: var(--foreground-strong);
    font-weight: 500;
}

.nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 46px;
    height: 46px;
    padding: 0 10px;
    z-index: 1001;
    background: var(--primary);
    border: 0;
    border-radius: var(--radius-sm);
    cursor: pointer;
    flex-shrink: 0;
}

.nav-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--primary-foreground);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.primary-nav {
    display: none;
}

.primary-nav.is-open {
    display: block;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: var(--background);
    border-top: 1px solid var(--border);
    overflow-y: auto;
    padding: var(--space-md) var(--space-md) var(--space-xl);
}

.primary-nav__list {
    list-style: none;
    margin: 0 0 var(--space-md);
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.primary-nav__list a {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 0 0.5rem;
    color: var(--foreground);
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid var(--border);
}

.primary-nav__list a:hover {
    color: var(--primary-strong);
}

.primary-nav__actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.primary-nav__actions .btn {
    width: 100%;
}

/* ============================================
   HERO
   Desktop: framed photo left, copy right.
   Mobile: framed photo above copy (single column).
   ============================================ */

.hero {
    position: relative;
    padding-block: var(--space-lg) var(--space-xl);
    border-bottom: 1px solid var(--border);
}

.hero__glow {
    position: absolute;
    inset: -20% -10% auto;
    height: 70%;
    pointer-events: none;
    background:
        radial-gradient(60% 60% at 25% 40%, rgba(255, 59, 71, 0.16), transparent 70%),
        radial-gradient(55% 55% at 80% 20%, rgba(47, 227, 224, 0.12), transparent 70%);
}

.hero__inner {
    position: relative;
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--space-md);
    display: grid;
    gap: var(--space-lg);
}

.hero__media {
    margin: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-strong);
    background: var(--surface);
}

.hero__media img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.hero__title {
    margin-bottom: var(--space-md);
}

.hero__lead p {
    color: var(--muted-foreground);
    max-width: 58ch;
}

.hero__cta {
    margin-bottom: 0;
}

/* ============================================
   USP STRIP - three trust points under hero
   ============================================ */

.usp-strip {
    background: var(--background-alt);
}

.usp-strip__title {
    text-align: center;
    font-size: var(--step-lg);
    margin-bottom: var(--space-lg);
}

.usp-strip__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: var(--space-md);
}

.usp-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    min-width: 0;
}

.usp-item__icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    color: var(--primary);
}

.usp-item__icon svg {
    width: 100%;
    height: 100%;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.usp-item__body {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.usp-item__body strong {
    color: var(--foreground-strong);
}

.usp-item__body span {
    color: var(--muted-foreground);
    font-size: var(--step-sm);
}

/* ============================================
   MEDIA FEATURE - image + table/copy + CTA
   Used for bonus, slots, live-casino, VIP teasers
   ============================================ */

.media-feature__grid {
    display: grid;
    gap: var(--space-lg);
    align-items: start;
}

.media-feature__media {
    margin: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-strong);
    background: var(--surface);
}

.media-feature__media img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.media-feature__body {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.media-feature__body .prose { margin: 0; }
.media-feature__body .prose p:last-child { margin-bottom: 0; }

.media-feature__cta { margin: 0; }

/* ============================================
   TABLES - comparison + data
   .is-highlighted marks a recommended row
   ============================================ */

.table-wrapper {
    min-width: 0;
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    background: var(--card);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: var(--step-sm);
    min-width: 480px;
}

.data-table caption {
    caption-side: top;
    text-align: left;
    padding: var(--space-sm) var(--space-md);
    color: var(--muted-foreground);
    font-size: var(--step-xs);
}

.data-table th,
.data-table td {
    padding: 0.7rem 0.9rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
}

.data-table thead th {
    color: var(--foreground-strong);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: var(--step-xs);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: var(--surface-raised);
    border-bottom: 1px solid var(--border-gold);
}

.data-table tbody th {
    color: var(--foreground);
    font-weight: 600;
}

.data-table tbody td {
    color: var(--muted-foreground);
}

.data-table tbody tr:last-child th,
.data-table tbody tr:last-child td {
    border-bottom: 0;
}

.data-table tbody tr.is-highlighted {
    background: rgba(229, 189, 109, 0.08);
}

.data-table tbody tr.is-highlighted th {
    color: var(--primary-strong);
}

/* ============================================
   ENGAGEMENT BLOCKS
   .tldr-box  - key takeaways
   .callout   - tip / warning / note
   .stat-highlight - single sourced figure
   .pull-quote - oversized quotation
   ============================================ */

.tldr-box {
    border: 1px solid var(--border-gold);
    border-left: 3px solid var(--primary);
    border-radius: var(--radius-md);
    background: var(--surface);
    padding: var(--space-md);
    margin-bottom: var(--space-lg);
}

.tldr-box__title {
    font-family: var(--font-display);
    font-size: var(--step-md);
    color: var(--foreground-strong);
    margin-bottom: var(--space-sm);
}

.tldr-box__text {
    color: var(--muted-foreground);
    margin-bottom: var(--space-sm);
}

.tldr-box__list {
    margin: 0;
    padding-left: 1.15rem;
    color: var(--muted-foreground);
}

.tldr-box__list li { margin-bottom: 0.4rem; }
.tldr-box__list li:last-child { margin-bottom: 0; }

.callout {
    border-radius: var(--radius-md);
    padding: var(--space-md);
    margin-bottom: var(--space-lg);
    background: var(--surface);
    border-left: 3px solid var(--accent);
}

.callout--warning { border-left-color: var(--neon-red); }
.callout--tip { border-left-color: var(--primary); }

.callout__title {
    font-weight: 700;
    color: var(--foreground-strong);
    margin-bottom: 0.35rem;
}

.callout__body { color: var(--muted-foreground); }
.callout__body p:last-child { margin-bottom: 0; }

.stat-highlight {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: var(--space-md);
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    min-width: 0;
}

.stat-highlight__number {
    font-family: var(--font-display);
    font-size: var(--step-xl);
    color: var(--primary-strong);
    line-height: 1.1;
}

.stat-highlight__label {
    color: var(--foreground);
    font-weight: 600;
}

.stat-highlight__note {
    font-size: var(--step-xs);
    color: var(--muted-foreground);
}

.pull-quote {
    margin: var(--space-lg) 0;
    padding-left: var(--space-md);
    border-left: 3px solid var(--primary);
}

.pull-quote p {
    font-family: var(--font-display);
    font-size: var(--step-lg);
    color: var(--foreground-strong);
    line-height: 1.35;
    margin-bottom: 0.5rem;
}

.pull-quote cite {
    font-style: normal;
    font-size: var(--step-xs);
    color: var(--muted-foreground);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* ============================================
   FAQ - native details/summary accordion
   ============================================ */

.faq__intro {
    color: var(--muted-foreground);
    margin-bottom: var(--space-lg);
}

.faq__list {
    display: grid;
    gap: 0;
    align-items: start;
}

.faq-item {
    border-bottom: 1px solid var(--border);
    align-self: start;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
    min-height: 56px;
    padding: 0.85rem 0;
    font-weight: 600;
    color: var(--foreground-strong);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: "";
    flex-shrink: 0;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--primary);
    border-bottom: 2px solid var(--primary);
    transform: rotate(45deg) translateY(-2px);
    transition: transform 0.25s ease;
}

.faq-item[open] summary::after {
    transform: rotate(-135deg) translateY(-2px);
}

.faq-item__answer {
    padding-bottom: var(--space-md);
    color: var(--muted-foreground);
}

.faq-item__answer p:last-child { margin-bottom: 0; }

/* ============================================
   CTA BAND - full-width conversion band with
   neon strip underline (Vegas Strip motif)
   ============================================ */

.cta-band {
    position: relative;
    background: var(--background-alt);
    text-align: center;
}

.cta-band .container--narrow {
    position: relative;
}

.cta-band__title { margin-bottom: var(--space-sm); }

.cta-band__text {
    color: var(--muted-foreground);
    margin-bottom: var(--space-lg);
}

.cta-band__note {
    margin: var(--space-md) 0 0;
    font-size: var(--step-xs);
    color: var(--muted-foreground);
}

.cta-band__neon {
    display: block;
    margin-top: var(--space-lg);
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg,
        transparent,
        var(--neon-red) 20%,
        var(--neon-magenta) 45%,
        var(--primary) 62%,
        var(--neon-cyan) 85%,
        transparent);
    box-shadow: 0 0 18px rgba(255, 59, 71, 0.35);
}

/* ============================================
   TRUST BADGES + PAYMENT CHIPS
   Discreet grey/gold, never loud banners
   ============================================ */

.trust-badges {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.trust-badges__heading {
    margin: 0;
    font-size: var(--step-xs);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted-foreground);
}

.trust-badges__list,
.payment-strip {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
}

.trust-badge,
.payment-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.85rem;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-sm);
    background: var(--surface);
    color: var(--muted-foreground);
    font-size: var(--step-xs);
    letter-spacing: 0.04em;
}

.badge-18 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1px solid var(--border-gold);
    color: var(--primary);
    font-size: var(--step-xs);
    font-weight: 700;
}

/* ============================================
   SOCIAL PROOF - anonymised winners + reviews
   ============================================ */

.winners__list {
    list-style: none;
    margin: 0;
    padding: 0;
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    background: var(--card);
    overflow: hidden;
}

.winner-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.15rem var(--space-sm);
    padding: 0.75rem var(--space-md);
    border-bottom: 1px solid var(--border);
    font-size: var(--step-sm);
}

.winner-row:last-child { border-bottom: 0; }

.winner-row__player {
    color: var(--foreground);
    font-weight: 600;
}

.winner-row__game { color: var(--muted-foreground); }

.winner-row__amount {
    color: var(--primary-strong);
    font-weight: 700;
    text-align: right;
}

.winner-row__time {
    color: var(--muted-foreground);
    font-size: var(--step-xs);
    text-align: right;
}

.winners__note,
.testimonial-note {
    margin-top: var(--space-sm);
    font-size: var(--step-xs);
    color: var(--muted-foreground);
}

.testimonial-grid {
    display: grid;
    gap: var(--space-md);
}

.testimonial-card {
    margin: 0;
    padding: var(--space-md);
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    min-width: 0;
}

.testimonial-card blockquote {
    margin: 0 0 var(--space-sm);
}

.testimonial-card blockquote p {
    margin: 0;
    color: var(--foreground);
}

.testimonial-card figcaption {
    font-size: var(--step-xs);
    color: var(--muted-foreground);
    letter-spacing: 0.04em;
}

/* ============================================
   CARDS + STEPS
   ============================================ */

.feature-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    padding: var(--space-md);
    min-width: 0;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}

.feature-card__badge {
    align-self: flex-start;
    font-size: var(--step-xs);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
}

.feature-card__title { margin: 0; }

.feature-card__text {
    margin: 0;
    color: var(--muted-foreground);
    font-size: var(--step-sm);
}

.feature-card__link {
    margin-top: auto;
    padding-top: var(--space-xs);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

.step-list {
    counter-reset: step;
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: var(--space-md);
}

.step-list__item {
    counter-increment: step;
    position: relative;
    padding-left: 3rem;
    min-width: 0;
}

.step-list__item::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 2.1rem;
    height: 2.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--border-gold);
    color: var(--primary);
    font-weight: 700;
    font-size: var(--step-xs);
}

.step-list__title {
    display: block;
    color: var(--foreground-strong);
    font-weight: 700;
}

.step-list__text {
    display: block;
    color: var(--muted-foreground);
    font-size: var(--step-sm);
}

.step-list-wrap__note {
    margin-top: var(--space-lg);
}

.prose-after-table {
    margin-top: var(--space-md);
}

/* ============================================
   BREADCRUMBS
   ============================================ */

.breadcrumbs {
    max-width: var(--container);
    margin-inline: auto;
    padding: var(--space-sm) var(--space-md) 0;
    font-size: var(--step-xs);
}

.breadcrumbs__list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin: 0;
    padding: 0;
    color: var(--muted-foreground);
}

.breadcrumbs__list li + li::before {
    content: "/";
    margin-right: 0.4rem;
    color: var(--border-strong);
}

/* ============================================
   PROSE SECTION (SEO text)
   ============================================ */

.prose-section .prose {
    max-width: none;
}

.prose-section .prose p {
    max-width: 72ch;
}

/* ============================================
   SITE FOOTER
   ============================================ */

.site-footer {
    background: var(--background-alt);
    border-top: 1px solid var(--border-gold);
    padding-top: var(--space-xl);
}

.site-footer__inner {
    max-width: var(--container);
    margin-inline: auto;
    padding: 0 var(--space-md) var(--space-lg);
    display: grid;
    gap: var(--space-lg);
}

.site-footer__col { min-width: 0; }

.site-brand--footer {
    font-family: var(--font-display);
    font-size: 1.15rem;
    display: inline-flex;
    gap: 0.35rem;
    margin-bottom: var(--space-sm);
}

.site-footer__note {
    color: var(--muted-foreground);
    font-size: var(--step-sm);
    max-width: 44ch;
}

.site-footer__title {
    font-family: var(--font-body);
    font-size: var(--step-xs);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: var(--space-sm);
}

.site-footer__links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.1rem;
}

.site-footer__links a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    color: var(--muted-foreground);
    text-decoration: none;
}

.site-footer__links a:hover {
    color: var(--primary-strong);
    text-decoration: underline;
}

.site-footer__bar {
    border-top: 1px solid var(--border);
    max-width: var(--container);
    margin-inline: auto;
    padding: var(--space-md);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--step-xs);
    color: var(--muted-foreground);
}

.site-footer__legal { flex: 1 1 260px; }

/* ============================================
   SCROLL REVEAL (progressive enhancement)
   .js-reveal is added by script.js only.
   ============================================ */

.js-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.js-reveal.is-visible {
    opacity: 1;
    transform: none;
}

/* ============================================
   TABLET - 768px and up
   ============================================ */

@media (min-width: 768px) {
    .usp-strip__list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: var(--space-lg);
    }

    .winner-row {
        grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) auto auto;
        align-items: center;
        gap: var(--space-md);
    }

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

    .site-footer__inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: var(--space-lg) var(--space-xl);
    }

    .step-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: var(--space-lg);
    }
}

/* ============================================
   DESKTOP - 1024px and up
   Inline pill navigation, split hero + features
   ============================================ */

@media (min-width: 1024px) {
    :root { --header-height: 84px; }

    .nav-toggle { display: none; }

    .primary-nav {
        display: flex;
        align-items: center;
        gap: var(--space-lg);
        flex: 1 1 auto;
        justify-content: space-between;
        margin-left: var(--space-lg);
    }

    .primary-nav.is-open {
        position: static;
        background: transparent;
        border-top: 0;
        padding: 0;
        overflow: visible;
        display: flex;
    }

    .primary-nav__list {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.35rem;
        margin: 0;
    }

    .primary-nav__list a {
        min-height: 44px;
        padding: 0 1.05rem;
        border-bottom: 0;
        border: 1px solid var(--border);
        border-radius: var(--radius-pill);
        font-size: var(--step-sm);
        color: var(--foreground);
        white-space: nowrap;
    }

    .primary-nav__list a:hover {
        border-color: var(--border-gold);
        color: var(--primary-strong);
    }

    .primary-nav__actions {
        flex-direction: row;
        gap: var(--space-sm);
        flex-shrink: 0;
    }

    .primary-nav__actions .btn { width: auto; }

    .site-header__inner { min-height: var(--header-height); }

    .site-brand { font-size: 1.6rem; }

    .hero { padding-block: var(--space-lg) var(--space-xl); }

    .hero__inner {
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
        align-items: center;
        gap: var(--space-xl);
    }

    .hero__title { margin-bottom: var(--space-lg); }

    .hero__lead p { font-size: var(--step-md); }

    .media-feature__grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: var(--space-xl);
        align-items: center;
    }

    .media-feature--reverse .media-feature__media { order: 2; }
    .media-feature--reverse .media-feature__body { order: 1; }

    .testimonial-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .site-footer__inner {
        grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
    }

    .step-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* ============================================
   REDUCED MOTION
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }

    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        transition-duration: 0.001ms !important;
    }

    .js-reveal,
    .js-reveal.is-visible {
        opacity: 1;
        transform: none;
    }
}
