/* ============================================
   IRIS CASINO - DESIGN SYSTEM
   Premium noir editorial. Hairline silver.
   ============================================ */

:root {
    --background: #0c0c0e;
    --foreground: #ecebe6;
    --card: #16171a;
    --card-foreground: #ecebe6;
    --popover: #141518;
    --popover-foreground: #ecebe6;
    --primary: #ecebe6;
    --primary-foreground: #0c0c0e;
    --secondary: #1c1d20;
    --secondary-foreground: #ecebe6;
    --muted: #222326;
    --muted-foreground: #b8babf;
    --accent: #c8cad0;
    --accent-foreground: #0c0c0e;
    --destructive: #dc2626;
    --destructive-foreground: #ffffff;
    --border: #2a2b2f;
    --input: #1a1b1e;
    --ring: #c8cad0;

    /* Brand tokens */
    --silver: #c8cad0;
    --silver-bright: #e6e7ea;
    --platinum: #d8dade;
    --steel: #9a9ca2;
    --ivory: #ecebe6;
    --obsidian: #0c0c0e;
    --graphite: #16171a;
    --slate: #1c1d20;

    /* Spacing rhythm */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 40px;
    --space-xl: 72px;
    --space-2xl: 120px;

    --container: 1240px;
    --gutter: clamp(20px, 5vw, 80px);
    --header-h: 72px;

    --hairline: linear-gradient(90deg, transparent 0%, var(--silver) 50%, transparent 100%);
    --hairline-v: linear-gradient(180deg, transparent 0%, var(--silver) 50%, transparent 100%);

    --font-serif: "Cormorant Garamond", "Times New Roman", serif;
    --font-sans: "Inter Tight", system-ui, -apple-system, sans-serif;

    --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
    --t-fast: 250ms var(--ease);
    --t-med: 400ms var(--ease);
    --t-slow: 600ms var(--ease);
}

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

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

body {
    font-family: var(--font-sans);
    font-size: 17px;
    line-height: 1.65;
    color: var(--foreground);
    background: var(--background);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img, video, iframe, svg { max-width: 100%; height: auto; display: block; }
[class*="grid"] > *, [class*="flex"] > * { min-width: 0; }
pre, code { max-width: 100%; overflow-x: auto; }
p, li, td, th { overflow-wrap: break-word; }
input, textarea, select { max-width: 100%; font: inherit; }
section { overflow: clip; }

ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
button { background: none; border: 0; cursor: pointer; color: inherit; font: inherit; }

.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; top: -100px; left: 0;
    background: var(--accent); color: var(--accent-foreground);
    padding: 12px 20px; z-index: 9999;
    transition: top var(--t-fast);
}
.skip-link:focus { top: 0; }

/* ============================================
   TYPOGRAPHY - Cormorant display / Inter Tight body
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--foreground);
}

h1 {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 300;
    letter-spacing: -0.015em;
}

h2 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 400;
    line-height: 1.2;
}

h3 {
    font-size: clamp(22px, 2.5vw, 28px);
    font-weight: 500;
    line-height: 1.3;
}

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

p { margin-bottom: 24px; }
p:last-child { margin-bottom: 0; }

a { transition: color var(--t-fast); }
a:hover { color: var(--accent); }

.eyebrow {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--steel);
}

.lead {
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.55;
    color: var(--ivory);
    font-weight: 300;
}

strong { font-weight: 600; color: var(--ivory); }

/* ============================================
   LAYOUT
   ============================================ */
.container-noir {
    max-width: var(--container);
    margin: 0 auto;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
}

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

section { padding: clamp(48px, 8vw, 120px) 0; }

.section-head {
    margin-bottom: clamp(32px, 5vw, 64px);
    max-width: 760px;
}

.section-head .eyebrow {
    display: inline-block;
    margin-bottom: 16px;
}

.section-head h2 + p { margin-top: 16px; color: var(--muted-foreground); }

/* Hairline silver divider - signature element */
.hairline {
    height: 1px;
    background: var(--hairline);
    border: 0;
    margin: 0;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--header-h);
    background: rgba(12, 12, 14, 0.72);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: background var(--t-fast), border-color var(--t-fast);
}

.site-header.scrolled {
    background: rgba(12, 12, 14, 0.92);
}

@media (min-width: 1025px) {
    .site-header {
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }
}

.header-inner {
    max-width: var(--container);
    margin: 0 auto;
    height: 100%;
    padding: 0 var(--gutter);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--ivory);
    flex-shrink: 0;
}

.site-brand .logo {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border);
}

.brand-wordmark {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--ivory);
}

.brand-dot { color: var(--silver); margin: 0 2px; }

.primary-nav {
    display: flex;
    align-items: center;
    gap: clamp(20px, 3vw, 40px);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2.5vw, 36px);
}

.nav-list a {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--ivory);
    position: relative;
    padding: 8px 0;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1px;
    background: var(--silver);
    transition: width var(--t-med);
}

.nav-list a:hover::after { width: 100%; }
.nav-list a:hover { color: var(--silver-bright); }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-login {
    font-size: 14px;
    color: var(--ivory);
    padding: 8px 4px;
}

.nav-login:hover { color: var(--silver-bright); }

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    width: 44px; height: 44px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--ivory);
    transition: transform var(--t-fast), opacity var(--t-fast);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) 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(-6px) rotate(-45deg);
}

/* Mobile drawer */
@media (max-width: 1024px) {
    .mobile-menu-toggle { display: flex; }

    .primary-nav {
        display: none;
        position: fixed;
        top: var(--header-h);
        left: 0; right: 0; bottom: 0;
        background: var(--obsidian);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        padding: var(--space-lg) var(--gutter);
        z-index: 999;
        overflow-y: auto;
    }

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

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
    }

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

    .nav-list a {
        display: flex;
        align-items: center;
        min-height: 56px;
        font-family: var(--font-serif);
        font-size: 24px;
        font-weight: 400;
    }

    .nav-list a::after { display: none; }

    .nav-actions {
        margin-top: var(--space-lg);
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .nav-login {
        text-align: center;
        padding: 14px;
        border: 1px solid var(--border);
    }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 14px 32px;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border: 1px solid transparent;
    border-radius: 0;
    cursor: pointer;
    transition: all var(--t-med);
    position: relative;
    overflow: hidden;
    text-align: center;
    color: var(--ivory);
}

.btn-sm {
    min-height: 40px;
    padding: 10px 22px;
    font-size: 12px;
}

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

.btn-outline::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, var(--silver-bright), transparent);
    transform: translateX(-100%);
    transition: transform 600ms var(--ease);
    z-index: 0;
    opacity: 0.25;
}

.btn-outline:hover {
    background: var(--platinum);
    color: var(--obsidian);
    border-color: var(--platinum);
}

.btn-outline:hover::before { transform: translateX(100%); }

.btn-platinum {
    background: var(--platinum);
    color: var(--obsidian);
    border-color: var(--platinum);
}

.btn-platinum:hover {
    background: var(--silver-bright);
    border-color: var(--silver-bright);
    color: var(--obsidian);
}

.btn > * { position: relative; z-index: 1; }

/* ============================================
   INFO CARD
   ============================================ */
.info-card {
    position: relative;
    background: var(--graphite);
    border: 1px solid var(--border);
    padding: clamp(24px, 3vw, 32px);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform var(--t-med), border-color var(--t-med), box-shadow var(--t-med);
    min-width: 0;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 1px;
    background: var(--hairline);
    transition: left 400ms var(--ease);
}

.info-card:hover {
    transform: translateY(-4px);
    border-color: var(--silver);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.info-card:hover::before { left: 100%; }

.info-card-media {
    margin: -24px -24px 8px;
    overflow: hidden;
    aspect-ratio: 3 / 2;
}

@media (min-width: 768px) {
    .info-card-media { margin: -32px -32px 8px; }
}

.info-card-media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform var(--t-slow);
}

.info-card:hover .info-card-media img { transform: scale(1.04); }

.info-card-icon {
    font-size: 28px;
    color: var(--silver);
    line-height: 1;
}

.info-card-tag {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--silver);
    padding: 4px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    align-self: flex-start;
}

.info-card-title {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 400;
    color: var(--ivory);
    margin: 0;
}

.info-card-desc {
    font-size: 15px;
    line-height: 1.65;
    color: var(--muted-foreground);
    margin: 0;
}

.info-card-link {
    margin-top: auto;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--silver-bright);
    padding-bottom: 4px;
    border-bottom: 1px solid var(--silver);
    align-self: flex-start;
    transition: all var(--t-fast);
}

.info-card-link:hover {
    color: var(--ivory);
    border-color: var(--ivory);
    gap: 14px;
}

/* Grid helpers */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: var(--space-md);
}

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

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

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

/* ============================================
   STAT BLOCK
   ============================================ */
.stat-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.stat-cell {
    padding: 32px 0;
    text-align: center;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stat-cell:first-child { border-top: 0; }

@media (min-width: 768px) {
    .stat-block {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .stat-cell { border-top: 0; border-left: 1px solid var(--border); padding: 16px 24px; }
    .stat-cell:nth-child(odd) { border-left: 0; }
}

@media (min-width: 1024px) {
    .stat-block {
        grid-template-columns: repeat(var(--stat-cols, 4), minmax(0, 1fr));
    }
    .stat-cell { border-left: 1px solid var(--border); padding: 24px; }
    .stat-cell:first-child { border-left: 0; }
    .stat-cell:nth-child(odd) { border-left: 1px solid var(--border); }
    .stat-cell:nth-child(1) { border-left: 0; }
}

.stat-block.cols-3 { --stat-cols: 3; }
.stat-block.cols-4 { --stat-cols: 4; }

.stat-number {
    font-family: var(--font-serif);
    font-size: clamp(56px, 9vw, 96px);
    font-weight: 300;
    line-height: 1;
    background: linear-gradient(180deg, var(--silver-bright) 0%, var(--silver) 50%, var(--steel) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted-foreground);
}

.stat-note {
    font-size: 13px;
    color: var(--steel);
    font-style: italic;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    position: relative;
    background: var(--obsidian);
    padding: clamp(72px, 10vw, 120px) 0;
    text-align: center;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    background-image:
        var(--hairline),
        var(--hairline),
        linear-gradient(var(--obsidian), var(--obsidian));
    background-repeat: no-repeat;
    background-size: 100% 1px, 100% 1px, 100% 100%;
    background-position: top, bottom, center;
}

.cta-banner-inner {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.cta-banner-title {
    font-family: var(--font-serif);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 300;
    color: var(--ivory);
    line-height: 1.2;
}

.cta-banner-subtitle {
    font-size: 17px;
    line-height: 1.6;
    color: var(--muted-foreground);
    max-width: 560px;
    margin: 0;
}

.cta-banner-disclaimer {
    font-size: 12px;
    letter-spacing: 0.08em;
    color: var(--steel);
    margin: 8px 0 0;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-accordion {
    max-width: 860px;
    margin: 0 auto;
    border-top: 1px solid var(--border);
}

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

.faq-question {
    list-style: none;
    cursor: pointer;
    padding: 28px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    font-family: var(--font-serif);
    font-size: clamp(20px, 2.4vw, 26px);
    font-weight: 400;
    color: var(--ivory);
    transition: color var(--t-fast);
}

.faq-question::-webkit-details-marker { display: none; }
.faq-question:hover { color: var(--silver-bright); }

.faq-icon {
    position: relative;
    width: 18px; height: 18px;
    flex-shrink: 0;
}

.faq-icon::before, .faq-icon::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    background: var(--silver);
    transition: transform var(--t-med);
}

.faq-icon::before { width: 18px; height: 1px; transform: translate(-50%, -50%); }
.faq-icon::after { width: 1px; height: 18px; transform: translate(-50%, -50%); }

.faq-item[open] .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }

.faq-answer {
    padding: 0 0 28px;
    font-size: 17px;
    line-height: 1.65;
    color: var(--muted-foreground);
    max-width: 760px;
}

.faq-answer p { margin-bottom: 16px; }
.faq-answer p:last-child { margin-bottom: 0; }

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    padding-top: calc(var(--header-h) + clamp(40px, 8vw, 120px));
    padding-bottom: clamp(60px, 10vw, 120px);
    background: var(--obsidian);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: var(--header-h); left: 0; right: 0;
    height: 1px;
    background: var(--hairline);
}

.hero-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-inner { grid-template-columns: 1.1fr 1fr; }
}

.hero-content { display: flex; flex-direction: column; gap: 28px; }

.hero-content h1 {
    color: var(--ivory);
    max-width: 14ch;
}

.hero-content .lead { max-width: 48ch; }

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 12px;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.hero-meta span {
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--steel);
}

.hero-visual {
    position: relative;
    aspect-ratio: 4 / 5;
    max-height: 640px;
    margin-left: auto;
    width: 100%;
}

.hero-visual::before, .hero-visual::after {
    content: '';
    position: absolute;
    background: var(--silver);
    opacity: 0.4;
}

.hero-visual::before { top: -20px; left: -20px; width: 80px; height: 1px; }
.hero-visual::after { top: -20px; left: -20px; width: 1px; height: 80px; }

.hero-visual img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ============================================
   BONUS HIGHLIGHT / SPLIT BAND
   ============================================ */
.split-band {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
    padding: clamp(48px, 8vw, 96px) 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

@media (min-width: 1024px) {
    .split-band { grid-template-columns: 1fr 1fr; }
    .split-band.reverse > :first-child { order: 2; }
}

.split-visual {
    position: relative;
    aspect-ratio: 4 / 5;
    max-height: 560px;
    overflow: hidden;
}

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

.split-content { display: flex; flex-direction: column; gap: 24px; max-width: 520px; }

.split-content .text-link {
    color: var(--silver-bright);
    border-bottom: 1px solid var(--silver);
    padding-bottom: 2px;
    align-self: flex-start;
    font-size: 13px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

/* ============================================
   EDITORIAL / SEO TEXT
   ============================================ */
.editorial-text {
    max-width: 760px;
    margin: 0 auto;
}

.editorial-text p {
    font-size: 17px;
    line-height: 1.75;
    color: var(--muted-foreground);
}

.editorial-text a {
    color: var(--silver-bright);
    border-bottom: 1px solid var(--silver);
    transition: all var(--t-fast);
}

.editorial-text a:hover {
    color: var(--ivory);
    border-color: var(--ivory);
}

.editorial-text h2, .editorial-text h3 {
    margin-top: 48px;
    margin-bottom: 20px;
    color: var(--ivory);
}

.editorial-text h2:first-child, .editorial-text h3:first-child { margin-top: 0; }

/* ============================================
   PROVIDER / PAYMENT LOGO STRIP
   ============================================ */
.logo-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

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

.logo-cell {
    padding: 28px 16px;
    text-align: center;
    font-family: var(--font-serif);
    font-size: 20px;
    color: var(--steel);
    border-left: 1px solid var(--border);
    transition: color var(--t-fast), background var(--t-fast);
}

.logo-cell:first-child { border-left: 0; }

@media (max-width: 1023px) {
    .logo-cell { border-left: 1px solid var(--border); border-top: 1px solid var(--border); }
}

.logo-cell:hover { color: var(--silver-bright); background: var(--graphite); }

/* ============================================
   VIP TIER STEPPER
   ============================================ */
.tier-stepper {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    position: relative;
}

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

.tier-card {
    background: var(--graphite);
    border: 1px solid var(--border);
    padding: 32px 24px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tier-card .tier-num {
    font-family: var(--font-serif);
    font-size: 14px;
    letter-spacing: 0.3em;
    color: var(--silver);
}

.tier-card h3 {
    font-family: var(--font-serif);
    font-size: 28px;
    color: var(--ivory);
}

.tier-card ul { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
.tier-card li { font-size: 14px; color: var(--muted-foreground); padding-left: 16px; position: relative; text-align: left; }
.tier-card li::before { content: '-'; position: absolute; left: 0; color: var(--silver); }

/* ============================================
   PULL QUOTE
   ============================================ */
.pull-quote {
    max-width: 820px;
    margin: 0 auto;
    padding: 48px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.pull-quote blockquote {
    font-family: var(--font-serif);
    font-size: clamp(24px, 4vw, 36px);
    font-style: italic;
    font-weight: 300;
    color: var(--ivory);
    line-height: 1.4;
}

.pull-quote cite {
    display: block;
    margin-top: 24px;
    font-family: var(--font-sans);
    font-style: normal;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--steel);
}

/* ============================================
   CALLOUT / SUMMARY
   ============================================ */
.callout {
    border-left: 1px solid var(--silver);
    padding: 24px 28px;
    background: var(--graphite);
    margin: 32px 0;
}

.callout-label {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--silver);
    margin-bottom: 8px;
    display: block;
}

.summary-box {
    border: 1px solid var(--border);
    padding: 32px;
    margin: 0 0 48px;
    background: var(--graphite);
    position: relative;
}

.summary-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: var(--hairline);
}

.summary-box h3 {
    font-size: 16px;
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--silver);
    margin-bottom: 16px;
}

/* ============================================
   TABLES
   ============================================ */
.table-wrapper {
    max-width: 100%;
    overflow-x: auto;
    margin: 32px 0;
    border: 1px solid var(--border);
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
    min-width: 480px;
}

th, td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
}

thead th {
    background: var(--slate);
    color: var(--silver-bright);
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

tbody tr:hover { background: var(--graphite); }

td { color: var(--muted-foreground); }

/* ============================================
   POPULAR TITLES - editorial list
   ============================================ */
.title-list {
    border-top: 1px solid var(--border);
}

.title-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
    align-items: baseline;
}

@media (min-width: 768px) {
    .title-row { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 24px; }
}

.title-row .t-name {
    font-family: var(--font-serif);
    font-size: 26px;
    color: var(--ivory);
}

.title-row .t-meta {
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--steel);
}

/* ============================================
   TRUST SIGNALS
   ============================================ */
.trust-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    text-align: center;
}

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

.trust-item {
    padding: 24px 16px;
}

.trust-item .icon {
    width: 48px; height: 48px;
    border: 1px solid var(--silver);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--silver);
    font-size: 18px;
}

.trust-item h3 {
    font-family: var(--font-serif);
    font-size: 22px;
    color: var(--ivory);
    margin-bottom: 8px;
    font-weight: 400;
}

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

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
    padding-top: calc(var(--header-h) + 32px);
    padding-bottom: 0;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--steel);
}

.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 8px; }
.breadcrumb a { color: var(--steel); }
.breadcrumb a:hover { color: var(--ivory); }
.breadcrumb li + li::before { content: '/'; margin-right: 8px; color: var(--border); }
.breadcrumb li[aria-current="page"] { color: var(--ivory); }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--obsidian);
    border-top: 1px solid var(--border);
    padding: clamp(48px, 8vw, 88px) 0 32px;
    margin-top: 0;
}

.footer-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

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

.footer-brand { max-width: 360px; }

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo .logo {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border);
}

.footer-tagline {
    color: var(--muted-foreground);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.footer-license {
    color: var(--steel);
    font-size: 12px;
    letter-spacing: 0.06em;
    margin: 0;
}

.footer-heading {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--silver);
    margin-bottom: 20px;
}

.footer-list { display: flex; flex-direction: column; gap: 12px; }
.footer-list a { color: var(--muted-foreground); font-size: 15px; transition: color var(--t-fast); }
.footer-list a:hover { color: var(--ivory); }

.payment-logos { display: flex; flex-wrap: wrap; gap: 10px; }
.payment-logos li {
    font-size: 12px;
    letter-spacing: 0.1em;
    color: var(--steel);
    padding: 6px 12px;
    border: 1px solid var(--border);
}

.footer-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.footer-badges span {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--silver);
    padding: 6px 10px;
    border: 1px solid var(--silver);
    border-radius: 999px;
}

.footer-bottom {
    max-width: var(--container);
    margin: 48px auto 0;
    padding: 24px var(--gutter) 0;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    letter-spacing: 0.08em;
    color: var(--steel);
    margin: 0;
}

/* ============================================
   ANIMATIONS - scroll reveal
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}

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

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .animate-on-scroll { opacity: 1; transform: none; }
    html { scroll-behavior: auto; }
}

/* ============================================
   SITEMAP PAGE
   ============================================ */
.sitemap-hero {
    padding-top: calc(var(--header-h) + clamp(48px, 8vw, 96px));
    padding-bottom: clamp(32px, 5vw, 56px);
    text-align: left;
}

.sitemap-hero .eyebrow {
    display: inline-block;
    margin-bottom: 20px;
}

.sitemap-hero h1 {
    margin-bottom: 24px;
}

.sitemap-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid var(--border);
}

.sitemap-entry {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 32px 0;
    border-bottom: 1px solid var(--border);
    position: relative;
}

@media (min-width: 640px) {
    .sitemap-entry {
        grid-template-columns: 80px 1fr;
        gap: 24px;
        padding: 40px 0;
    }
}

.sitemap-num {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 300;
    color: var(--silver);
    letter-spacing: 0.04em;
    line-height: 1.2;
}

.sitemap-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sitemap-name {
    font-family: var(--font-serif);
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 400;
    color: var(--ivory);
    margin: 0;
    line-height: 1.2;
}

.sitemap-desc {
    font-size: 16px;
    line-height: 1.65;
    color: var(--muted-foreground);
    margin: 0;
    max-width: 62ch;
}

.sitemap-link {
    align-self: flex-start;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--silver-bright);
    padding-bottom: 4px;
    border-bottom: 1px solid var(--silver);
    margin-top: 8px;
    transition: color var(--t-fast), border-color var(--t-fast);
}

.sitemap-link:hover {
    color: var(--ivory);
    border-color: var(--ivory);
}

/* ============================================
   FOCUS STATES
   ============================================ */
a:focus-visible, button:focus-visible, summary:focus-visible {
    outline: 2px solid var(--silver-bright);
    outline-offset: 4px;
}