/* ============================================
   CASEA CASINO - DESIGN SYSTEM
   Dark charcoal-black stage aesthetic with electric blue accents.
   Runway-podium visual language. Syne display + Manrope body.
   ============================================ */

/* ============================================
   DESIGN TOKENS
   Single dark theme - no light mode (per brief).
   ============================================ */
:root {
    /* Backgrounds */
    --background: #0a0d14;
    --background-elevated: #0f131c;
    --card: #131826;
    --card-foreground: #f0f2f8;

    /* Text */
    --foreground: #f0f2f8;
    --muted-foreground: #94a3b8;

    /* Brand colors */
    --primary: #1a51e0;
    --primary-hover: #2d62ee;
    --primary-foreground: #ffffff;
    --secondary: #1c2230;
    --secondary-foreground: #f0f2f8;

    /* Accents */
    --accent: #38bdf8;
    --accent-foreground: #0a0d14;
    --accent-glow: rgba(56, 189, 248, 0.15);

    /* Borders */
    --border: #2a3548;
    --border-light: #3a4558;

    /* Functional */
    --destructive: #ea0d33;
    --destructive-foreground: #ffffff;

    /* Typography */
    --font-display: "Syne", sans-serif;
    --font-body: "Manrope", sans-serif;

    /* Spacing scale (8px base unit) */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;

    /* Layout */
    --max-width: 1280px;
    --header-height: 64px;
    --header-height-desktop: 72px;
    --radius: 8px;
    --radius-lg: 16px;

    /* Transitions */
    --transition-fast: 250ms ease-out;
    --transition-medium: 400ms ease-out;
    --transition-slow: 600ms ease-in-out;

    /* Shadows */
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
    --shadow-card-hover: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 20px var(--accent-glow);
    --shadow-cta: 0 0 30px rgba(47, 107, 255, 0.4);
}

/* Make .dark identical - site is always dark */
.dark {
    --background: #0a0d14;
    --background-elevated: #0f131c;
    --card: #131826;
    --card-foreground: #f0f2f8;
    --foreground: #f0f2f8;
    --muted-foreground: #94a3b8;
    --primary: #1a51e0;
    --primary-hover: #2d62ee;
    --primary-foreground: #ffffff;
    --secondary: #1c2230;
    --secondary-foreground: #f0f2f8;
    --accent: #38bdf8;
    --accent-foreground: #0a0d14;
    --border: #2a3548;
    --border-light: #3a4558;
}

/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.6;
    color: var(--foreground);
    background-color: var(--background);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}

/* ============================================
   TYPOGRAPHY
   Syne for display headings, Manrope for body.
   Mobile-first sizes, scaled up at breakpoints.
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--foreground);
    line-height: 1.15;
}

h1 {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 20px;
    font-weight: 600;
}

h4 {
    font-size: 18px;
    font-weight: 600;
}

p {
    margin-bottom: 28px;
}

@media (min-width: 1024px) {
    h1 { font-size: 48px; }
    h2 { font-size: 36px; }
    h3 { font-size: 24px; }
    h4 { font-size: 20px; }
}

/* ============================================
   LAYOUT CONTAINERS
   ============================================ */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

@media (min-width: 1024px) {
    .container {
        padding: 0 var(--space-xl);
    }
}

.section-spacing {
    padding-top: 56px;
    padding-bottom: 56px;
}

@media (min-width: 1024px) {
    .section-spacing {
        padding-top: 96px;
        padding-bottom: 96px;
    }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 12px 28px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--primary-foreground);
    box-shadow: 0 2px 12px rgba(47, 107, 255, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    color: var(--primary-foreground);
    transform: translateY(-2px);
    box-shadow: var(--shadow-cta);
}

.btn-secondary {
    background-color: transparent;
    color: var(--foreground);
    border: 1px solid var(--border-light);
}

.btn-secondary:hover {
    background-color: var(--secondary);
    color: var(--foreground);
    border-color: var(--accent);
}

.btn-large {
    min-height: 52px;
    padding: 14px 36px;
    font-size: 17px;
}

.btn-nav {
    min-height: 40px;
    padding: 8px 20px;
    font-size: 15px;
}

/* ============================================
   HEADER & NAVIGATION
   Sticky header with logo, horizontal nav on desktop,
   hamburger drawer on mobile (< 1024px).
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(10, 13, 20, 0.98);
    border-bottom: 1px solid var(--border);
}

@media (min-width: 1024px) {
    .site-header {
        background-color: rgba(10, 13, 20, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
}

.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
}

@media (min-width: 1024px) {
    .header-inner {
        height: var(--header-height-desktop);
        padding: 0 var(--space-xl);
    }
}

.site-brand {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    flex-shrink: 0;
}

.site-brand .logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.brand-name {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    color: var(--foreground);
    letter-spacing: -0.01em;
}

.site-brand:hover .brand-name {
    color: var(--accent);
}

/* Desktop Navigation */
.primary-nav {
    display: none;
    align-items: center;
    gap: var(--space-xl);
}

@media (min-width: 1024px) {
    .primary-nav {
        display: flex;
    }
}

.nav-list {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--muted-foreground);
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--transition-fast);
}

.nav-link:hover {
    color: var(--foreground);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta-group {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

/* Mobile Menu Toggle (hamburger) */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    z-index: 1001;
    position: relative;
}

@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--foreground);
    border-radius: 2px;
    transition: transform var(--transition-medium), opacity var(--transition-fast);
}

.mobile-menu-toggle[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Navigation Drawer */
.primary-nav.is-open {
    display: flex;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    align-items: stretch;
    background-color: var(--background);
    z-index: 999;
    overflow-y: auto;
    padding: var(--space-lg);
    gap: var(--space-md);
    animation: slideInLeft var(--transition-medium);
}

@keyframes slideInLeft {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

.primary-nav.is-open .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
}

.primary-nav.is-open .nav-list li {
    border-bottom: 1px solid var(--border);
}

.primary-nav.is-open .nav-link {
    display: flex;
    align-items: center;
    min-height: 48px;
    font-size: 17px;
    padding: var(--space-sm) 0;
}

.primary-nav.is-open .nav-cta-group {
    flex-direction: column;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.primary-nav.is-open .nav-cta-group .btn {
    width: 100%;
    text-align: center;
}

/* Nav Overlay Scrim */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 998;
}

.nav-overlay.is-active {
    display: block;
}

/* ============================================
   PODIUM HERO
   Full-bleed runway-podium hero with crossed spotlight
   beams, mirror-floor reflection, asymmetric model placement.
   ============================================ */
.podium-hero {
    position: relative;
    min-height: 60vh;
    background-color: var(--background);
    overflow: clip;
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .podium-hero {
        min-height: 70vh;
    }
}

.podium-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.spotlight-beam {
    position: absolute;
    top: -20%;
    width: 120%;
    height: 140%;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(56, 189, 248, 0.08) 30%,
        rgba(47, 107, 255, 0.06) 50%,
        transparent 80%
    );
    transform-origin: top center;
}

.spotlight-beam--left {
    left: -10%;
    transform: rotate(15deg);
    animation: spotlightSweepLeft 8s ease-in-out infinite alternate;
}

.spotlight-beam--right {
    right: -10%;
    transform: rotate(-15deg);
    animation: spotlightSweepRight 8s ease-in-out infinite alternate;
}

@keyframes spotlightSweepLeft {
    0% { transform: rotate(15deg) translateX(0); opacity: 0.6; }
    100% { transform: rotate(20deg) translateX(40px); opacity: 1; }
}

@keyframes spotlightSweepRight {
    0% { transform: rotate(-15deg) translateX(0); opacity: 0.6; }
    100% { transform: rotate(-20deg) translateX(-40px); opacity: 1; }
}

.spotlight-glow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 200px;
    background: radial-gradient(ellipse at center bottom, rgba(47, 107, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.podium-hero__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: var(--space-2xl);
    padding-top: 56px;
    padding-bottom: 56px;
}

@media (min-width: 1024px) {
    .podium-hero__inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: var(--space-3xl);
        padding-top: 96px;
        padding-bottom: 96px;
    }
}

.podium-hero__content {
    max-width: 560px;
    text-align: left;
}

.hero-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: var(--space-md);
}

.podium-hero__headline {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
}

@media (min-width: 1024px) {
    .podium-hero__headline {
        font-size: 48px;
    }
}

.podium-hero__subtext {
    font-size: 17px;
    line-height: 1.6;
    color: var(--muted-foreground);
    margin-bottom: var(--space-xl);
}

.podium-hero__model-wrap {
    position: relative;
    flex-shrink: 0;
    width: 100%;
    max-width: 360px;
}

@media (min-width: 1024px) {
    .podium-hero__model-wrap {
        max-width: 480px;
        width: 45%;
    }
}

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

.podium-hero__model-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.podium-hero__reflection {
    position: relative;
    height: 80px;
    overflow: hidden;
    margin-top: -2px;
}

.podium-hero__reflection-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    transform: scaleY(-1);
    opacity: 0.3;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, transparent 100%);
}

/* ============================================
   CARD GRID
   Responsive grid: 1 col mobile → 2 col ≥640px → 3 col ≥1024px.
   Deep blue-black surfaces, hover lift + shadow.
   ============================================ */
.card-grid-section {
    padding-top: 56px;
    padding-bottom: 56px;
}

@media (min-width: 1024px) {
    .card-grid-section {
        padding-top: 96px;
        padding-bottom: 96px;
    }
}

.section-heading {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: var(--space-md);
    letter-spacing: -0.01em;
}

@media (min-width: 1024px) {
    .section-heading {
        font-size: 36px;
    }
}

.section-intro {
    font-size: 17px;
    line-height: 1.6;
    color: var(--muted-foreground);
    max-width: 720px;
    margin-bottom: var(--space-2xl);
}

.card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

@media (min-width: 640px) {
    .card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: var(--space-xl);
    }
}

@media (min-width: 1024px) {
    .card-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: var(--space-xl);
    }
}

.card {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-card-hover);
    border-color: var(--accent);
}

.card__image-wrap {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: var(--secondary);
}

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

.card__body {
    padding: var(--space-lg);
}

@media (min-width: 1024px) {
    .card__body {
        padding: var(--space-xl);
    }
}

.card__title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

@media (min-width: 1024px) {
    .card__title {
        font-size: 24px;
    }
}

.card__text {
    font-size: 17px;
    line-height: 1.6;
    color: var(--muted-foreground);
    margin-bottom: 0;
}

.card__link {
    display: inline-block;
    margin-top: var(--space-md);
    font-size: 15px;
    font-weight: 600;
    color: var(--accent);
}

.card__link:hover {
    color: var(--primary-hover);
}

/* ============================================
   FAQ ACCORDION
   Collapsible Q&A with plus-minus icons, smooth expansion.
   Left accent border when expanded. Zero-JS fallback via details.
   ============================================ */
.faq-section {
    padding-top: 56px;
    padding-bottom: 56px;
}

@media (min-width: 1024px) {
    .faq-section {
        padding-top: 96px;
        padding-bottom: 96px;
    }
}

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

.faq-item {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-left: 3px solid transparent;
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color var(--transition-slow);
}

.faq-item.is-expanded {
    border-left-color: var(--accent);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding: var(--space-lg);
    text-align: left;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--foreground);
    transition: background-color var(--transition-fast);
}

@media (min-width: 1024px) {
    .faq-question {
        font-size: 20px;
        padding: var(--space-xl);
    }
}

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

.faq-question-text {
    flex: 1;
    min-width: 0;
}

.faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.faq-icon-minus {
    display: none;
}

.faq-item.is-expanded .faq-icon-plus {
    display: none;
}

.faq-item.is-expanded .faq-icon-minus {
    display: block;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
}

.faq-answer-inner {
    padding: 0 var(--space-lg) var(--space-lg);
}

@media (min-width: 1024px) {
    .faq-answer-inner {
        padding: 0 var(--space-xl) var(--space-xl);
    }
}

.faq-answer-inner p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--muted-foreground);
    margin-bottom: 0;
}

/* ============================================
   CTA BANNER
   Full-width gradient band, centered heading + button.
   Drives conversion on every commercial page.
   ============================================ */
.cta-banner {
    background: linear-gradient(135deg, #0a1535 0%, #0a0d14 100%);
    padding-top: 56px;
    padding-bottom: 56px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

@media (min-width: 1024px) {
    .cta-banner {
        padding-top: 96px;
        padding-bottom: 96px;
    }
}

.cta-banner__inner {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.cta-banner__heading {
    font-size: 26px;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: var(--space-md);
    letter-spacing: -0.01em;
}

@media (min-width: 1024px) {
    .cta-banner__heading {
        font-size: 36px;
    }
}

.cta-banner__subtext {
    font-size: 17px;
    line-height: 1.6;
    color: var(--muted-foreground);
    margin-bottom: var(--space-xl);
}

.cta-banner__micro {
    font-size: 14px;
    line-height: 1.5;
    color: var(--muted-foreground);
    margin-top: var(--space-md);
    margin-bottom: 0;
}

/* ============================================
   FOOTER
   Four-column link layout, payment logos, compliance row.
   ============================================ */
.site-footer {
    background-color: var(--background-elevated);
    border-top: 1px solid var(--border);
    padding-top: var(--space-3xl);
    padding-bottom: var(--space-2xl);
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

@media (min-width: 768px) {
    .footer-columns {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.footer-heading {
    font-size: 16px;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: var(--space-md);
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    font-size: 15px;
    color: var(--muted-foreground);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-payments {
    padding-top: var(--space-2xl);
    border-top: 1px solid var(--border);
    margin-bottom: var(--space-2xl);
}

.footer-payments-label {
    display: block;
    font-size: 14px;
    color: var(--muted-foreground);
    margin-bottom: var(--space-md);
}

.payment-logos {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.payment-logo {
    font-size: 14px;
    font-weight: 600;
    color: var(--muted-foreground);
    padding: var(--space-sm) var(--space-md);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: color var(--transition-fast), border-color var(--transition-fast);
}

.payment-logo:hover {
    color: var(--accent);
    border-color: var(--accent);
}

.footer-compliance {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    padding-top: var(--space-2xl);
    border-top: 1px solid var(--border);
    margin-bottom: var(--space-2xl);
}

.compliance-badge {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.compliance-icon {
    font-size: 20px;
    font-weight: 800;
    color: var(--accent);
    flex-shrink: 0;
    line-height: 1.5;
}

.compliance-text {
    font-size: 14px;
    line-height: 1.5;
    color: var(--muted-foreground);
}

.footer-bottom {
    padding-top: var(--space-2xl);
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    font-size: 14px;
    color: var(--muted-foreground);
    margin-bottom: 0;
}

/* ============================================
   ENGAGEMENT & CRO PATTERNS
   Reusable UI patterns for content pages.
   ============================================ */

/* Summary / TL;DR Box */
.summary-box {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    border-radius: var(--radius);
    padding: var(--space-lg);
    margin: var(--space-xl) 0;
}

@media (min-width: 1024px) {
    .summary-box {
        padding: var(--space-xl);
    }
}

.summary-box__title {
    font-size: 16px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.summary-box p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--foreground);
    margin-bottom: 0;
}

/* Callout / Highlight Box */
.callout {
    background-color: var(--secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-lg);
    margin: var(--space-xl) 0;
}

@media (min-width: 1024px) {
    .callout {
        padding: var(--space-xl);
    }
}

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

.callout--warning {
    border-left: 3px solid var(--destructive);
}

.callout__title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.callout p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--muted-foreground);
    margin-bottom: 0;
}

/* Stat Highlight */
.stat-highlight {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    padding: var(--space-xl) 0;
}

.stat-highlight__number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    letter-spacing: -0.02em;
}

@media (min-width: 1024px) {
    .stat-highlight__number {
        font-size: 64px;
    }
}

.stat-highlight__label {
    font-size: 16px;
    font-weight: 500;
    color: var(--muted-foreground);
}

.stat-highlight__source {
    font-size: 14px;
    color: var(--muted-foreground);
    opacity: 0.8;
}

/* Pull Quote */
.pull-quote {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 22px;
    line-height: 1.4;
    color: var(--foreground);
    border-left: 3px solid var(--accent);
    padding: var(--space-md) 0 var(--space-md) var(--space-xl);
    margin: var(--space-2xl) 0;
    max-width: 800px;
}

@media (min-width: 1024px) {
    .pull-quote {
        font-size: 28px;
    }
}

.pull-quote cite {
    display: block;
    font-family: var(--font-body);
    font-style: normal;
    font-size: 15px;
    font-weight: 500;
    color: var(--muted-foreground);
    margin-top: var(--space-md);
}

/* Details / Summary */
details {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: var(--space-sm);
    overflow: hidden;
}

summary {
    padding: var(--space-lg);
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--foreground);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: '+';
    font-size: 22px;
    color: var(--accent);
    font-weight: 400;
    transition: transform var(--transition-fast);
}

details[open] summary::after {
    transform: rotate(45deg);
}

details > div {
    padding: 0 var(--space-lg) var(--space-lg);
}

details > div p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--muted-foreground);
    margin-bottom: 0;
}

/* Trust Badges Row */
.trust-badges {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

@media (min-width: 768px) {
    .trust-badges {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.trust-badge {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
}

.trust-badge__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.trust-badge__title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.trust-badge__text {
    font-size: 14px;
    line-height: 1.5;
    color: var(--muted-foreground);
    margin-bottom: 0;
}

/* Comparison Table */
.table-wrapper {
    width: 100%;
    overflow-x: auto;
    margin: var(--space-xl) 0;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--card);
    min-width: 480px;
}

.comparison-table th,
.comparison-table td {
    padding: var(--space-md) var(--space-lg);
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.comparison-table th {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--foreground);
    background-color: var(--secondary);
}

.comparison-table td {
    font-size: 16px;
    color: var(--muted-foreground);
}

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

.comparison-table tr:hover td {
    color: var(--foreground);
}

.comparison-table .col-highlight {
    background-color: rgba(47, 107, 255, 0.08);
}

.comparison-table .col-highlight th {
    color: var(--accent);
}

/* Social Proof / Testimonials */
.testimonials {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

@media (min-width: 768px) {
    .testimonials {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .testimonials {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.testimonial {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

.testimonial__quote {
    font-size: 17px;
    line-height: 1.6;
    color: var(--foreground);
    margin-bottom: var(--space-lg);
}

.testimonial__author {
    font-size: 15px;
    font-weight: 600;
    color: var(--accent);
}

.testimonial__role {
    font-size: 14px;
    color: var(--muted-foreground);
}

/* Partner Logo Strip */
.logo-strip {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
    padding: var(--space-2xl) 0;
}

.logo-strip__item {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--muted-foreground);
    opacity: 0.85;
    transition: color var(--transition-fast), opacity var(--transition-fast);
    text-align: center;
    padding: var(--space-sm) var(--space-md);
}

.logo-strip__item:hover {
    color: var(--accent);
    opacity: 1;
}

/* Editorial Header (non-podium pages) */
.editorial-header {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a1535 0%, var(--background) 70%);
    overflow: clip;
    padding-top: 56px;
    padding-bottom: 56px;
}

@media (min-width: 1024px) {
    .editorial-header {
        min-height: 70vh;
        padding-top: 96px;
        padding-bottom: 96px;
    }
}

.editorial-header__inner {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: var(--space-2xl);
    width: 100%;
}

@media (min-width: 1024px) {
    .editorial-header__inner {
        flex-direction: row;
        justify-content: space-between;
        gap: var(--space-3xl);
    }
}

.editorial-header__content {
    max-width: 560px;
}

.editorial-header__image {
    flex-shrink: 0;
    width: 100%;
    max-width: 360px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid var(--border);
    aspect-ratio: 3 / 4;
}

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

@media (min-width: 1024px) {
    .editorial-header__image {
        max-width: 420px;
        width: 40%;
    }
}

/* Split Section (text + visual) */
.split-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

@media (min-width: 1024px) {
    .split-section {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-3xl);
    }
}

.split-section__text h2 {
    margin-bottom: var(--space-md);
}

.split-section__text p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--muted-foreground);
}

.split-section__visual {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}

.split-section__visual img {
    width: 100%;
    height: auto;
    display: block;
}

/* Feature List with Icons */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.feature-list__item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.feature-list__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    background-color: var(--secondary);
    border-radius: var(--radius);
}

.feature-list__content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.feature-list__content p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--muted-foreground);
    margin-bottom: 0;
}

/* Numbered Steps */
.numbered-steps {
    counter-reset: step;
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.numbered-steps__item {
    counter-increment: step;
    display: flex;
    gap: var(--space-lg);
    align-items: flex-start;
}

.numbered-steps__item::before {
    content: counter(step);
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--accent);
    background-color: var(--secondary);
    border: 1px solid var(--border);
    border-radius: 50%;
}

.numbered-steps__content h3,
.numbered-steps__content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.numbered-steps__content p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--muted-foreground);
    margin-bottom: 0;
}

/* Jackpot Display */
.jackpot-display {
    text-align: center;
    padding: var(--space-2xl) var(--space-xl);
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.jackpot-display__amount {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.02em;
    line-height: 1;
}

@media (min-width: 1024px) {
    .jackpot-display__amount {
        font-size: 56px;
    }
}

.jackpot-display__label {
    font-size: 16px;
    font-weight: 500;
    color: var(--muted-foreground);
    margin-top: var(--space-sm);
}

/* Content Article Styling */
.article-content {
    max-width: 720px;
    margin: 0 auto;
}

.article-content h2 {
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-md);
}

.article-content h3 {
    margin-top: var(--space-xl);
    margin-bottom: var(--space-sm);
}

.article-content p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--muted-foreground);
    margin-bottom: 28px;
}

.article-content a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.article-content a:hover {
    color: var(--primary-hover);
}

.article-content ul,
.article-content ol {
    margin-bottom: 28px;
    padding-left: var(--space-xl);
}

.article-content ul li,
.article-content ol li {
    font-size: 17px;
    line-height: 1.6;
    color: var(--muted-foreground);
    margin-bottom: var(--space-sm);
}

.article-content ul {
    list-style: disc;
}

.article-content ol {
    list-style: decimal;
}

.article-content blockquote {
    border-left: 3px solid var(--accent);
    padding-left: var(--space-xl);
    margin: var(--space-2xl) 0;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 22px;
    line-height: 1.4;
    color: var(--foreground);
}

@media (min-width: 1024px) {
    .article-content blockquote {
        font-size: 28px;
    }
}

/* Sitemap Page */
.sitemap-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.sitemap-entry {
    padding: var(--space-lg) 0;
    border-bottom: 1px solid var(--border);
}

.sitemap-entry h2 {
    margin-bottom: var(--space-sm);
}

.sitemap-entry h2 a {
    color: var(--foreground);
    transition: color var(--transition-fast);
}

.sitemap-entry h2 a:hover {
    color: var(--accent);
}

.sitemap-entry p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--muted-foreground);
    margin-bottom: 0;
}

/* ============================================
   ANIMATIONS
   Fade-in on scroll, staggered for card grids.
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 600ms ease-out, transform 600ms ease-out;
    transition-delay: var(--card-delay, 0ms);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
.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;
}

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

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .animate-on-scroll {
        opacity: 1;
        transform: none;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.hidden { display: none; }

@media (min-width: 1024px) {
    .desktop-only { display: block; }
    .mobile-only { display: none; }
}

.mobile-only { display: block; }

@media (min-width: 1024px) {
    .mobile-only { display: none; }
}

/* a11y-autofix: link-in-text-block */
/* axe link-in-text-block: inline links inside body copy must be
   distinguishable without relying on color. Scope to text containers so
   nav/button/card links (already visually distinct) keep their styling. */
:where(p, li, blockquote, figcaption, dd, .prose, .seo-text, article)
  a:not([class]) {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
