/*
 * Fugu Casino - Design System
 * Underwater themed dark casino with deep teal/navy backgrounds,
 * gold/turquoise/coral accents, and Bricolage Grotesque + Manrope typography.
 */

:root {
    /* Dark underwater theme - single mode */
    --background: #0a1929;
    --foreground: #f5f0e8;
    --card: #0f2540;
    --card-foreground: #f5f0e8;
    --popover: #0f2540;
    --popover-foreground: #f5f0e8;
    --primary: #2dd4bf;
    --primary-foreground: #022c22;
    --secondary: #1a3a5c;
    --secondary-foreground: #f5f0e8;
    --muted: #1e3a5f;
    --muted-foreground: #a8c4d4;
    --accent: #ff6b6b;
    --accent-foreground: #000000;
    --destructive: #f43f5e;
    --destructive-foreground: #000000;
    --border: #1e3a5f;
    --input: #1e3a5f;
    --ring: #2dd4bf;
    --gold: #fbbf24;
    --gold-foreground: #1a1407;
    --turquoise: #2dd4bf;
    --coral: #ff6b6b;
    --deep-teal: #0d3b54;
    --deep-navy: #0a1929;
    --cream: #f5f0e8;
    --soft-blue-gray: #b0cfdc;
    --muted-teal-gray: #7a9aac;

    /* Fonts */
    --font-heading: "Bricolage Grotesque", sans-serif;
    --font-body: "Manrope", sans-serif;

    /* Spacing */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 56px;
    --space-2xl: 96px;

    /* Container */
    --container-max: 1200px;

    /* Radii */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --transition-base: 300ms var(--ease-out);
}

.dark {
    --background: #0a1929;
    --foreground: #f5f0e8;
    --card: #0f2540;
    --card-foreground: #f5f0e8;
    --popover: #0f2540;
    --popover-foreground: #f5f0e8;
    --primary: #2dd4bf;
    --primary-foreground: #022c22;
    --secondary: #1a3a5c;
    --secondary-foreground: #f5f0e8;
    --muted: #1e3a5f;
    --muted-foreground: #94b8c9;
    --accent: #ff6b6b;
    --accent-foreground: #000000;
    --destructive: #f43f5e;
    --destructive-foreground: #000000;
    --border: #1e3a5f;
    --input: #1e3a5f;
    --ring: #2dd4bf;
}

/* ============================================
   RESET & BASE
   ============================================ */

*,
*::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;
}

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

section {
    overflow: clip;
}

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

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

body.no-scroll {
    overflow: hidden;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition-base);
}

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

/* Inline links inside paragraph text must be distinguishable without color */
p a {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
    color: var(--primary);
}

p a:hover {
    color: var(--gold);
    text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    margin: 0 0 var(--space-md);
    line-height: 1.2;
    color: var(--cream);
    letter-spacing: -0.02em;
    overflow-wrap: break-word;
}

h1 {
    font-size: 32px;
    font-weight: 800;
}

h2 {
    font-size: 26px;
    font-weight: 600;
}

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

p {
    margin: 0 0 28px;
    color: var(--soft-blue-gray);
}

/* ============================================
   LAYOUT
   ============================================ */

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

section {
    padding: 80px 0 48px;
    scroll-margin-top: 88px;
}

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

    h1 { font-size: 42px; }
    h2 { font-size: 32px; }
    h3 { font-size: 22px; }
}

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

    section {
        padding: 96px 0;
    }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 12px 24px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    min-height: 44px;
    line-height: 1.4;
    white-space: nowrap;
}

.btn-gold {
    background: var(--gold);
    color: var(--gold-foreground);
    border-color: var(--gold);
}

.btn-gold:hover {
    background: #f59e0b;
    color: var(--gold-foreground);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(251, 191, 36, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--cream);
    border-color: var(--muted-teal-gray);
}

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

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

.btn-gold-outline:hover {
    background: rgba(251, 191, 36, 0.1);
    color: var(--gold);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 18px;
    min-height: 48px;
}

@media (max-width: 767px) {
    .btn {
        white-space: normal;
        text-align: center;
    }
}

/* ============================================
   HEADER
   ============================================ */

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

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

.site-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

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

.logo {
    border-radius: var(--radius-sm);
    width: auto;
    flex-shrink: 0;
}

.brand-name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 20px;
    color: var(--cream);
    letter-spacing: -0.02em;
}

.primary-nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: calc(100vh - 72px);
    background: #0a1929;
    z-index: 999;
    overflow-y: auto;
    padding: var(--space-lg);
    flex-direction: column;
}

.primary-nav.is-open {
    display: flex;
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nav-list a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 12px var(--space-md);
    color: var(--cream);
    font-weight: 600;
    font-size: 17px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
}

.nav-list a:hover {
    background: var(--muted);
    color: var(--primary);
}

.nav-cta-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

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

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--cream);
    border-radius: 2px;
    transition: all var(--transition-base);
}

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

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

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

.mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
}

.mobile-menu-overlay.is-visible {
    display: block;
}

@media (min-width: 1024px) {
    .primary-nav {
        display: flex;
        position: static;
        flex-direction: row;
        align-items: center;
        gap: var(--space-lg);
        padding: 0;
        background: none;
        overflow: visible;
        min-height: 0;
    }

    .nav-list {
        flex-direction: row;
        gap: 4px;
    }

    .nav-list a {
        min-height: auto;
        padding: 8px 14px;
        font-size: 15px;
    }

    .nav-cta-group {
        flex-direction: row;
        margin-top: 0;
        gap: 10px;
    }

    .nav-cta-group .btn {
        width: auto;
        padding: 8px 20px;
        font-size: 15px;
    }

    .mobile-menu-toggle {
        display: none;
    }

    .mobile-menu-overlay {
        display: none !important;
    }
}

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

.site-footer {
    background: #061523;
    border-top: 1px solid var(--border);
    padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

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

.footer-heading {
    font-size: 16px;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: var(--space-sm);
    letter-spacing: 0;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: var(--space-sm);
}

.footer-brand span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    color: var(--cream);
}

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

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a {
    color: var(--soft-blue-gray);
    font-size: 15px;
}

.footer-col ul a:hover {
    color: var(--primary);
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pay-badge {
    display: inline-block;
    padding: 6px 12px;
    background: var(--muted);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 13px;
    color: var(--muted-foreground);
    font-weight: 600;
}

.footer-bottom {
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border);
    text-align: center;
}

.license-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
    flex-wrap: wrap;
}

.license-badge {
    padding: 6px 14px;
    background: var(--muted);
    border-radius: var(--radius-sm);
    font-size: 13px;
    color: var(--soft-blue-gray);
    font-weight: 600;
}

.age-badge {
    padding: 6px 14px;
    background: var(--accent);
    color: var(--accent-foreground);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 800;
}

.footer-copy {
    font-size: 13px;
    color: var(--muted-foreground);
    margin: 0 0 8px;
}

.footer-responsible {
    font-size: 13px;
    color: var(--muted-foreground);
    margin: 0;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
        gap: var(--space-xl);
    }

    section {
        padding: 88px 0 64px;
    }
}

/* ============================================
   HERO SECTIONS
   ============================================ */

.hero-section {
    position: relative;
    padding: var(--space-2xl) 0;
    background: linear-gradient(180deg, var(--deep-teal) 0%, var(--deep-navy) 100%);
    overflow: clip;
}

.hero-home {
    min-height: 520px;
    display: flex;
    align-items: center;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(180deg, rgba(13, 59, 84, 0.75) 0%, rgba(10, 25, 41, 0.95) 100%);
    background-color: var(--deep-teal);
    z-index: 0;
}

.hero-content-wrapper {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-md);
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-visual {
    display: none;
    position: relative;
    z-index: 2;
}

.hero-visual img {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 0 30px rgba(45, 212, 191, 0.25));
}

.hero-content h1 {
    font-size: 32px;
    margin-bottom: var(--space-md);
    max-width: 720px;
}

.hero-content p {
    font-size: 17px;
    max-width: 620px;
    margin-bottom: var(--space-lg);
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(45, 212, 191, 0.15);
    border: 1px solid var(--primary);
    border-radius: 100px;
    font-size: 14px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.hero-cta-group .btn {
    width: 100%;
    text-align: center;
}

.hero-micro {
    font-size: 13px;
    color: var(--muted-foreground);
    margin: 0;
}

.hero-bubbles {
    z-index: 1;
}

@media (min-width: 768px) {
    .hero-content h1 { font-size: 42px; }

    .hero-cta-group {
        flex-direction: row;
        gap: var(--space-md);
    }

    .hero-cta-group .btn {
        width: auto;
    }
}

@media (min-width: 768px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 1024px) {
    .hero-home {
        min-height: 600px;
        padding: 100px 0;
    }

    .hero-content-wrapper {
        grid-template-columns: 1.3fr 1fr;
        gap: var(--space-2xl);
    }

    .hero-visual {
        display: block;
    }

    .hero-content h1 { font-size: 52px; }
    .hero-content p { font-size: 19px; }
}

/* ============================================
   FEATURE CARD GRID
   ============================================ */

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

.feature-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.feature-card:hover {
    transform: scale(1.04);
    border-color: var(--primary);
    box-shadow: 0 0 24px rgba(45, 212, 191, 0.2);
}

.feature-card-image {
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: var(--space-md);
    aspect-ratio: 5 / 3;
}

.feature-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-card-body h3 {
    color: var(--cream);
    margin-bottom: var(--space-sm);
}

.feature-card-body p {
    font-size: 15px;
    color: var(--soft-blue-gray);
    margin-bottom: var(--space-md);
}

.feature-card-body .btn {
    align-self: flex-start;
    padding: 8px 18px;
    font-size: 14px;
}

@media (min-width: 768px) {
    .feature-card-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }
}

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

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

/* ============================================
   STAT BLOCK
   ============================================ */

.stat-block-container {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
}

.stat-item {
    text-align: center;
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--border);
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 8px;
}

.stat-number.gold { color: var(--gold); }
.stat-number.turquoise { color: var(--turquoise); }

.stat-label {
    display: block;
    font-size: 15px;
    color: var(--soft-blue-gray);
    font-weight: 500;
}

.stat-source {
    display: block;
    font-size: 12px;
    color: var(--muted-foreground);
    margin-top: 4px;
}

@media (min-width: 768px) {
    .stat-block-container {
        flex-direction: row;
        justify-content: space-around;
        padding: var(--space-xl);
    }

    .stat-item {
        flex: 1;
        padding: 0 var(--space-md);
        border-bottom: none;
        border-right: 1px solid var(--border);
    }

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

    .stat-number {
        font-size: 44px;
    }
}

/* ============================================
   CTA BANNER
   ============================================ */

.cta-banner-section {
    position: relative;
    padding: var(--space-xl) var(--space-md);
    background: linear-gradient(135deg, var(--deep-teal) 0%, var(--deep-navy) 100%);
    text-align: center;
    overflow: clip;
}

.cta-banner-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-banner-content h2 {
    font-size: 26px;
    margin-bottom: var(--space-md);
    color: var(--cream);
}

.cta-subtext {
    font-size: 17px;
    color: var(--soft-blue-gray);
    margin-bottom: var(--space-lg);
}

.cta-micro {
    font-size: 13px;
    color: var(--muted-foreground);
    margin-top: var(--space-md);
    margin-bottom: 0;
}

.bubble-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.bubble-particles .bubble {
    position: absolute;
    bottom: -20px;
    width: 10px;
    height: 10px;
    background: rgba(45, 212, 191, 0.2);
    border-radius: 50%;
    animation: bubbleRise 8s linear infinite;
}

.bubble-particles .bubble:nth-child(1) { left: 10%; width: 8px; height: 8px; animation-delay: 0s; animation-duration: 7s; }
.bubble-particles .bubble:nth-child(2) { left: 25%; width: 12px; height: 12px; animation-delay: 1s; animation-duration: 9s; }
.bubble-particles .bubble:nth-child(3) { left: 40%; width: 6px; height: 6px; animation-delay: 2s; animation-duration: 6s; }
.bubble-particles .bubble:nth-child(4) { left: 55%; width: 14px; height: 14px; animation-delay: 0.5s; animation-duration: 10s; }
.bubble-particles .bubble:nth-child(5) { left: 70%; width: 10px; height: 10px; animation-delay: 1.5s; animation-duration: 8s; }
.bubble-particles .bubble:nth-child(6) { left: 85%; width: 7px; height: 7px; animation-delay: 3s; animation-duration: 7.5s; }
.bubble-particles .bubble:nth-child(7) { left: 18%; width: 9px; height: 9px; animation-delay: 2.5s; animation-duration: 8.5s; }
.bubble-particles .bubble:nth-child(8) { left: 65%; width: 11px; height: 11px; animation-delay: 1.8s; animation-duration: 9.5s; }

@keyframes bubbleRise {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }
    10% { opacity: 1; }
    90% { opacity: 0.8; }
    100% {
        transform: translateY(-400px) scale(1.2);
        opacity: 0;
    }
}

@media (min-width: 768px) {
    .cta-banner-section {
        padding: var(--space-2xl) var(--space-lg);
    }

    .cta-banner-content h2 { font-size: 36px; }
}

/* ============================================
   FAQ ACCORDION
   ============================================ */

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

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

.faq-item[open] {
    border-left-color: var(--coral);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding: var(--space-md);
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 17px;
    color: var(--cream);
    list-style: none;
    user-select: none;
}

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

.faq-chevron {
    flex-shrink: 0;
    color: var(--muted-foreground);
    transition: transform var(--transition-base);
}

.faq-item[open] .faq-chevron {
    transform: rotate(180deg);
    color: var(--coral);
}

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

.faq-answer p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--soft-blue-gray);
    margin: 0;
}

/* ============================================
   ENGAGEMENT PATTERNS
   ============================================ */

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

.summary-box h3 {
    color: var(--gold);
    margin-bottom: var(--space-sm);
}

.summary-box ul {
    margin: 0;
    padding-left: var(--space-lg);
}

.summary-box li {
    margin-bottom: 10px;
    color: var(--soft-blue-gray);
}

/* Callout Box */
.callout-box {
    border-radius: var(--radius-md);
    padding: var(--space-md) var(--space-lg);
    margin: var(--space-lg) 0;
    border-left: 4px solid;
}

.callout-box p {
    margin: 0;
    color: var(--soft-blue-gray);
}

.callout-title {
    display: block;
    margin-bottom: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
}

.callout-info {
    background: rgba(45, 212, 191, 0.1);
    border-color: var(--primary);
}

.callout-info .callout-title { color: var(--primary); }

.callout-warning {
    background: rgba(251, 191, 36, 0.1);
    border-color: var(--gold);
}

.callout-warning .callout-title { color: var(--gold); }

.callout-tip {
    background: rgba(255, 107, 107, 0.1);
    border-color: var(--coral);
}

.callout-tip .callout-title { color: var(--coral); }

/* Pull Quote */
.pull-quote {
    border-left: 4px solid var(--coral);
    padding: var(--space-md) var(--space-lg);
    margin: var(--space-xl) 0;
}

.pull-quote p {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 22px;
    line-height: 1.4;
    color: var(--cream);
    margin: 0 0 var(--space-sm);
}

.pull-quote cite {
    font-size: 14px;
    color: var(--muted-foreground);
    font-style: normal;
}

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

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

.table-wrapper:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    border-color: var(--primary);
}

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

.comparison-table th {
    padding: var(--space-md);
    text-align: left;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--cream);
    background: var(--muted);
    border-bottom: 1px solid var(--border);
    font-size: 15px;
}

.comparison-table td {
    padding: var(--space-md);
    color: var(--soft-blue-gray);
    border-bottom: 1px solid var(--border);
    font-size: 15px;
}

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

.comparison-table tbody tr:hover {
    background: rgba(45, 212, 191, 0.05);
}

/* ============================================
   WELCOME LAYOUT
   ============================================ */

.welcome-layout .split-text h2 {
    margin-top: var(--space-md);
}

.welcome-treasure {
    box-shadow: 0 0 40px rgba(251, 191, 36, 0.15);
    border: 1px solid var(--border);
}

.welcome-cta-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.welcome-cta-group .btn {
    width: 100%;
    text-align: center;
}

@media (min-width: 768px) {
    .welcome-cta-group {
        flex-direction: row;
        gap: var(--space-md);
    }

    .welcome-cta-group .btn {
        width: auto;
    }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

/* Only hide content if JS is available (progressive enhancement) */
.js .animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
}

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

/* No-JS fallback: show everything immediately */
.animate-on-scroll:not(.js .animate-on-scroll) {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .bubble-particles .bubble {
        animation: none;
    }

    * {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

.section-title {
    text-align: center;
    margin-bottom: var(--space-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-lg);
    font-size: 18px;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    align-items: center;
}

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

.split-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

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

.content-narrow {
    max-width: 720px;
    margin: 0 auto;
}

.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;
}

/* ============================================
   SITEMAP PAGE
   ============================================ */

.sitemap-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.sitemap-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    transition: all var(--transition-base);
}

.sitemap-item:hover {
    border-color: var(--primary);
    box-shadow: 0 0 16px rgba(45, 212, 191, 0.12);
}

.sitemap-item h3 {
    margin-bottom: var(--space-xs);
}

.sitemap-item h3 a {
    color: var(--cream);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 20px;
}

.sitemap-item h3 a:hover {
    color: var(--gold);
}

.sitemap-item p {
    font-size: 15px;
    color: var(--soft-blue-gray);
    margin: 0;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .sitemap-item {
        padding: var(--space-lg);
    }

    .sitemap-item p {
        font-size: 16px;
    }
}