/* ═══════════════════════════════════════════════════════════
   ProductionBrain — Shared Styles
   Single stylesheet for all site pages
   ═══════════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ─── */
:root {
    --bg-primary: #232235;
    --bg-secondary: #2a2940;
    --bg-card: #2e2d45;
    --bg-elevated: #34334d;
    --bg-dark: #1a1928;
    --text-primary: #f0f0f0;
    --text-secondary: #b0b0c0;
    --text-soft: #9090a8;
    --text-light: #c0c0d0;
    --text-muted: #7a7a95;
    --accent: #00bfff;
    --accent-dim: rgba(0, 191, 255, 0.20);
    --accent-glow: rgba(0, 191, 255, 0.35);
    --red-accent: #ff5945;
    --warning: #ff9500;
    --warning-dim: rgba(255, 149, 0, 0.18);
    --success: #34c759;
    --success-dim: rgba(52, 199, 89, 0.18);
    --border: rgba(255, 255, 255, 0.08);
    --border-accent: rgba(0, 191, 255, 0.25);
    --font-display: 'Outfit', sans-serif;
    --font-mono: 'Space Mono', monospace;

    /* ─── SPACING TOKENS (8px grid) ─── */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 24px;
    --space-6: 32px;
    --space-7: 48px;
    --space-8: 64px;
    --space-9: 80px;
    --space-10: 120px;

    /* ─── TYPOGRAPHY SCALE ─── */
    --text-xs: 0.72rem;
    --text-sm: 0.85rem;
    --text-base: 1rem;
    --text-md: 1.05rem;
    --text-lg: 1.15rem;
    --text-xl: 1.3rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.75rem;
    --text-4xl: 2rem;
    --text-5xl: 2.5rem;
    --text-6xl: 3rem;
    --leading-tight: 1.1;
    --leading-snug: 1.3;
    --leading-normal: 1.6;
    --leading-relaxed: 1.7;
    --tracking-tight: -0.03em;
    --tracking-normal: 0;
    --tracking-wide: 0.08em;
    --tracking-wider: 0.12em;
    --tracking-widest: 0.2em;

    /* ─── TRANSITION TOKENS ─── */
    --ease-default: 0.3s ease;
    --ease-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);

    /* ─── HOVER COLOR TOKENS ─── */
    --accent-hover: #33cfff;
    --text-white: #ffffff;
}

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

/* ─── BASE ─── */
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-display);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ─── ACCENT UTILITIES ─── */
.ac  { color: var(--accent); font-weight: 600; }
.ar  { color: var(--red-accent); font-weight: 600; }

.ico {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    color: var(--accent);
    opacity: 0.8;
}

.ico-red { color: var(--red-accent); }


/* ─── ACCESSIBILITY ─── */
.skip-to-content {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--accent);
    color: var(--bg-primary);
    padding: 12px 24px;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    text-decoration: none;
    z-index: 999;
    border-radius: 0 0 4px 4px;
    transition: top 0.2s;
}

.skip-to-content:focus {
    top: 0;
}


/* ═══════════════════════════════════════════════════════════
   SHARED COMPONENTS  (header, footer, buttons)
   ═══════════════════════════════════════════════════════════ */

/* ─── SITE HEADER ─── */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(35, 34, 53, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 18px;
    text-decoration: none;
}

.header-logo img {
    height: 76px;
    width: auto;
}

.logo-text {
    font-weight: 800;
    font-size: 1.7rem;
    letter-spacing: -0.03em;
    color: var(--text-primary);
}

.logo-text span { color: var(--accent); }

.header-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header-nav a {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--ease-default);
}

.header-nav a:hover { color: var(--accent); }

.header-cta {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--bg-primary);
    background: var(--accent);
    padding: 12px 28px;
    text-decoration: none;
    transition: var(--ease-default);
    border: 1px solid transparent;
}

.header-cta:hover {
    background: transparent;
    color: var(--accent);
    border-color: var(--accent);
}

/* ─── SITE FOOTER ─── */
.site-footer {
    padding: 48px 40px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-brand img {
    height: 56px;
    width: auto;
    opacity: 0.7;
}

.footer-brand .footer-name { font-weight: 700; font-size: 1.2rem; }
.footer-brand .footer-name span { color: var(--accent); }

.footer-tagline {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    color: var(--text-muted);
}

.footer-inner {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 28px;
}

.footer-links a {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--ease-default);
}

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

/* ─── FOOTER NOTE (used on book-slot, booking-confirmed) ─── */
.footer-note {
    text-align: center;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-note a {
    color: var(--accent);
    text-decoration: none;
}

/* ─── SHARED BUTTONS ─── */
/* Note: .btn, .btn-primary used across various pages (homepage, featured vendors, etc.) */
.btn {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 16px 32px;
    text-decoration: none;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    background: transparent;
    transition: var(--ease-default);
    cursor: pointer;
}

.btn:hover {
    border-color: var(--text-secondary);
    color: var(--text-primary);
}

.btn-primary {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg-primary);
}

.btn-primary:hover {
    background: var(--text-white);
    border-color: var(--text-white);
    color: var(--bg-primary);
}

/* ─── CTA BUTTON (used on booking-confirmed, featured vendors) ─── */
/* Note: .cta-button, .cta-btn, .cta-btn--primary, .cta-btn--secondary used on booking-confirmed page */
.cta-button {
    display: inline-block;
    padding: 16px 36px;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--accent);
    color: var(--bg-primary);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    transition: var(--ease-default);
}

.cta-button:hover { background: var(--text-white); }

/* ─── MOBILE HAMBURGER TOGGLE ─── */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: 1px solid var(--border);
    color: var(--text-primary);
    padding: 8px 12px;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 4px;
    transition: var(--ease-default);
    line-height: 1;
}

.mobile-nav-toggle:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* ─── MOBILE NAV OVERLAY ─── */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(26, 25, 40, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 200;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.mobile-nav-overlay.active { display: flex; }

.mobile-nav-overlay a {
    font-family: var(--font-mono);
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 12px 24px;
    transition: var(--ease-default);
}

.mobile-nav-overlay a:hover { color: var(--accent); }

.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
}

/* ─── RESPONSIVE — SHARED COMPONENTS ─── */
@media (max-width: 768px) {
    .site-header { padding: 14px 20px; }
    .header-logo { gap: 10px; }
    .header-logo img { height: 48px; }
    .logo-text { font-size: 1.15rem; }
    .header-nav { display: none; }
    .mobile-nav-toggle { display: block; }
    .header-cta { padding: 10px 18px; font-size: 0.75rem; white-space: nowrap; max-width: 140px; overflow: hidden; text-overflow: ellipsis; }
    .site-footer { padding: 32px 20px; }
    .footer-brand img { height: 36px; }
    .footer-brand .footer-name { font-size: 0.95rem; }
    .footer-inner { flex-direction: column; align-items: center; text-align: center; }
    .footer-links { gap: 20px; }
    .footer-links a { font-size: 0.72rem; }
}


/* ═══════════════════════════════════════════════════════════
   HOMEPAGE  (index.html)
   ═══════════════════════════════════════════════════════════ */

.home-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

.home-page::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse at 25% 20%, rgba(0, 191, 255, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 75%, rgba(255, 89, 69, 0.09) 0%, transparent 50%),
        radial-gradient(ellipse at 55% 10%, rgba(255, 149, 0, 0.06) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

.home-page main {
    flex: 1;
    position: relative;
    z-index: 1;
}

.home-page .footer-tagline {
    width: 100%;
    text-align: center;
    margin-top: 20px;
    opacity: 0.6;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
}

/* ─── HERO ─── */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 40px 60px;
    text-align: center;
}

.hero-logo {
    max-width: 420px;
    width: 100%;
    height: auto;
    margin-bottom: 32px;
    filter: drop-shadow(0 0 60px rgba(0, 191, 255, 0.15));
}

.hero-tagline {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.hero-headline {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    max-width: 720px;
    margin-bottom: 20px;
}

.hero-headline .highlight {
    background: linear-gradient(135deg, var(--accent), var(--warning));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 580px;
    line-height: 1.7;
}

/* ─── CTA SECTION ─── */
.cta-section {
    padding: 0 40px 80px;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.cta-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    transition: border-color var(--ease-smooth), box-shadow var(--ease-smooth), transform var(--ease-default);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    border-radius: 12px 12px 0 0;
    opacity: 0;
    transition: opacity var(--ease-smooth);
}

.cta-card:hover { transform: translateY(-4px); }

.cta-card--attend::before {
    background: linear-gradient(90deg, var(--accent), #00e5ff);
    opacity: 1;
}

.cta-card--attend:hover {
    border-color: var(--border-accent);
    box-shadow: 0 8px 40px rgba(0, 191, 255, 0.12), 0 0 0 1px var(--border-accent);
}

.cta-card--vendor::before {
    background: linear-gradient(90deg, var(--red-accent), var(--warning));
    opacity: 1;
}

.cta-card--vendor:hover {
    border-color: rgba(255, 89, 69, 0.25);
    box-shadow: 0 8px 40px rgba(255, 89, 69, 0.12), 0 0 0 1px rgba(255, 89, 69, 0.25);
}

.cta-icon {
    width: 48px; height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 1.3rem;
}

.cta-card--attend .cta-icon { background: var(--accent-dim); color: var(--accent); }
.cta-card--vendor .cta-icon { background: rgba(255, 89, 69, 0.15); color: var(--red-accent); }

.cta-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.cta-title {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.cta-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 32px;
    flex: 1;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 6px;
    transition: var(--ease-default);
    align-self: flex-start;
}

.cta-btn--primary {
    background: var(--accent);
    color: var(--bg-primary);
    border: 1px solid var(--accent);
}

.cta-btn--primary:hover {
    background: var(--accent-hover);
    box-shadow: 0 4px 20px rgba(0, 191, 255, 0.3);
}

.cta-btn--secondary {
    background: transparent;
    color: var(--red-accent);
    border: 1px solid var(--red-accent);
}

.cta-btn--secondary:hover {
    background: var(--red-accent);
    color: var(--text-white);
    box-shadow: 0 4px 20px rgba(255, 89, 69, 0.3);
}

.cta-btn .arrow { transition: transform var(--ease-default); font-size: 1.1em; }
.cta-btn:hover .arrow { transform: translateX(4px); }

/* ─── DIVIDER ─── */
.section-divider {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.section-divider hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-accent), transparent);
}

/* ─── HOST SECTION ─── */
.host-section {
    padding: 80px 40px;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
}

.host-inner {
    display: flex;
    align-items: center;
    gap: 56px;
}

.host-image-wrap { flex-shrink: 0; }

.host-image {
    width: 200px; height: 200px;
    border-radius: 16px;
    object-fit: cover;
    border: 2px solid var(--border-accent);
    box-shadow: 0 8px 40px rgba(0, 191, 255, 0.1);
}

.host-content { flex: 1; }

.host-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
}

.host-name {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.host-bio {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.75;
    max-width: 560px;
}

/* ─── RESPONSIVE — HOMEPAGE ─── */
@media (max-width: 900px) {
    .cta-grid { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 768px) {
    .hero { padding: 48px 24px 40px; }
    .hero-logo { max-width: 280px; margin-bottom: 24px; }
    .hero-tagline { font-size: 0.72rem; }
    .hero-headline { font-size: 1.65rem; }
    .hero-sub { font-size: 1rem; }
    .cta-section { padding: 0 24px 56px; }
    .cta-card { padding: 32px 28px; }
    .cta-title { font-size: 1.4rem; }
    .cta-desc { font-size: 0.95rem; }
    .cta-btn { width: 100%; justify-content: center; padding: 14px 24px; font-size: 0.78rem; }
    .section-divider { padding: 0 24px; }
    .host-section { padding: 56px 24px; }
    .host-inner { flex-direction: column; text-align: center; gap: 32px; }
    .host-image { width: 160px; height: 160px; }
    .host-bio { max-width: 100%; }
}

@media (max-width: 420px) {
    .hero-headline { font-size: 1.4rem; }
    .hero-logo { max-width: 220px; }
    .cta-card { padding: 28px 22px; }
}


/* ═══════════════════════════════════════════════════════════
   FEATURED VENDORS — Landing Page
   ═══════════════════════════════════════════════════════════ */

.vendor-page {
    overflow-x: hidden;
}

/* ─── TOP BAR ─── */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 40px;
    border-bottom: 1px solid var(--border);
    font-family: var(--font-mono);
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}

.top-bar a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--ease-default);
}

.top-bar a:hover { color: var(--accent); }
.top-bar .top-bar-highlight { color: var(--warning); }

/* ─── VENDOR HERO ─── */
.vendor-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 40px 80px;
    position: relative;
}

.vendor-hero::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 65%; height: 100%;
    background:
        radial-gradient(ellipse at 75% 25%, rgba(0, 191, 255, 0.22) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 60%, rgba(255, 89, 69, 0.14) 0%, transparent 45%);
    pointer-events: none;
}

.vendor-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 55%; height: 65%;
    background:
        radial-gradient(ellipse at 15% 75%, rgba(255, 89, 69, 0.16) 0%, transparent 50%),
        radial-gradient(ellipse at 35% 90%, rgba(255, 149, 0, 0.10) 0%, transparent 45%);
    pointer-events: none;
}

.vendor-hero .hero-label {
    font-family: var(--font-mono);
    font-size: 1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeUp 0.8s 0.2s forwards;
}

.vendor-hero h1 {
    font-size: clamp(3.5rem, 8vw, 8rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.04em;
    max-width: 1100px;
    opacity: 0;
    animation: fadeUp 0.8s 0.4s forwards;
}

.vendor-hero h1 .num-accent { color: var(--red-accent); }
.vendor-hero h1 .line-two { display: block; color: var(--accent); }

.vendor-hero .hero-body {
    max-width: 680px;
    margin-top: 48px;
    font-size: 1.5rem;
    line-height: 1.65;
    color: var(--text-secondary);
    opacity: 0;
    animation: fadeUp 0.8s 0.6s forwards;
}

.vendor-hero .hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 56px;
    opacity: 0;
    animation: fadeUp 0.8s 0.8s forwards;
}

/* ─── SECTION HEADER (shared across vendor sub-sections) ─── */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 64px;
    flex-wrap: wrap;
    gap: 24px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.section-header h2 span { color: var(--accent); }

.section-header .tag {
    font-family: var(--font-mono);
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 10px 24px;
    border: 1px solid var(--border);
}

/* ─── PROOF SECTION ─── */
.proof-section {
    padding: 120px 40px;
    border-top: 1px solid var(--border);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
}

.proof-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 85% 25%, rgba(52, 199, 89, 0.16) 0%, transparent 45%),
        radial-gradient(ellipse at 10% 70%, rgba(0, 191, 255, 0.10) 0%, transparent 40%);
    pointer-events: none;
}

.proof-left h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.proof-left h2 span { color: var(--accent); }
.proof-right { padding-top: 8px; }

.proof-right p {
    font-size: 1.35rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.proof-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 48px;
}

.stat {
    border-left: 2px solid var(--accent);
    padding-left: 20px;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.03em;
}

.stat-label {
    font-family: var(--font-mono);
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ─── QUOTE SECTION ─── */
.quote-section {
    padding: 140px 40px;
    border-top: 1px solid var(--border);
    position: relative;
}

.quote-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 15% 40%, rgba(0, 191, 255, 0.22) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 75%, rgba(255, 89, 69, 0.10) 0%, transparent 40%);
    pointer-events: none;
}

.quote-text {
    font-size: clamp(2.2rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    max-width: 1000px;
    position: relative;
}

.quote-text .dim    { color: var(--text-muted); }
.quote-text .bright { color: var(--text-primary); }
.quote-text .pop    { color: var(--accent); }
.quote-text .warn   { color: var(--red-accent); }

.quote-body {
    max-width: 680px;
    margin-top: 48px;
    font-size: 1.35rem;
    line-height: 1.7;
    color: var(--text-secondary);
    position: relative;
}

/* ─── SOLUTIONS GRID ─── */
.solutions-section {
    padding: 120px 40px;
    border-top: 1px solid var(--border);
    position: relative;
}

.solutions-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 65% 30%, rgba(0, 191, 255, 0.14) 0%, transparent 45%),
        radial-gradient(ellipse at 20% 80%, rgba(255, 149, 0, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2px;
}

.solution-card {
    background: var(--bg-card);
    padding: 48px 36px;
    position: relative;
    transition: all var(--ease-smooth);
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--ease-smooth);
}

.solution-card:hover::before { transform: scaleX(1); }
.solution-card:hover { background: var(--bg-elevated); }

.solution-card .card-number {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.solution-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
    line-height: 1.3;
}

.solution-card p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* ─── FOMO SECTION ─── */
.fomo-section {
    padding: 120px 40px;
    border-top: 1px solid var(--border);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
}

.fomo-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 25% 40%, rgba(255, 89, 69, 0.15) 0%, transparent 45%),
        radial-gradient(ellipse at 75% 70%, rgba(255, 149, 0, 0.12) 0%, transparent 45%);
    pointer-events: none;
}

.fomo-display {
    text-align: center;
    padding: 64px 40px;
    border: 1px solid rgba(255, 89, 69, 0.25);
    position: relative;
    background: rgba(255, 89, 69, 0.08);
}

.fomo-display::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(255, 89, 69, 0.14) 0%, transparent 70%);
    pointer-events: none;
}

.fomo-big {
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1;
    position: relative;
    color: var(--red-accent);
}

.fomo-sub {
    font-family: var(--font-mono);
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 16px;
    position: relative;
}

.fomo-detail {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
}

.fomo-detail .fomo-detail-label {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.fomo-detail .fomo-detail-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--warning);
}

.fomo-copy h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
}

.fomo-copy p {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.fomo-note {
    font-family: var(--font-mono);
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    line-height: 1.7;
}

/* ─── PROCESS ─── */
.process-section {
    padding: 120px 40px;
    border-top: 1px solid var(--border);
    background: var(--bg-secondary);
    position: relative;
}

.process-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 20%, rgba(0, 191, 255, 0.12) 0%, transparent 45%),
        radial-gradient(ellipse at 80% 80%, rgba(52, 199, 89, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 64px;
}

.process-step {
    background: var(--bg-primary);
    padding: 40px 28px;
    position: relative;
}

.process-step .step-num {
    font-family: var(--font-mono);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 24px;
}

.process-step h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 14px;
    line-height: 1.3;
}

.process-step p {
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--text-secondary);
}

.process-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 48px;
    font-family: var(--font-mono);
    font-size: 1rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

.process-footer strong { color: var(--text-primary); }

/* ─── URGENCY ─── */
.urgency-section {
    padding: 100px 40px;
    border-top: 1px solid var(--border);
    text-align: center;
    position: relative;
}

.urgency-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 40%, rgba(255, 149, 0, 0.16) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(255, 89, 69, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.urgency-label {
    font-family: var(--font-mono);
    font-size: 1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--warning);
    margin-bottom: 32px;
}

.urgency-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 48px;
}

.vendor-page .slots-grid {
    display: flex;
    justify-content: center;
    gap: 64px;
    flex-wrap: wrap;
}

.slot-box {
    padding: 32px 48px;
    border: 1px solid rgba(255, 149, 0, 0.25);
    background: var(--warning-dim);
    min-width: 220px;
}

.slot-box .slot-date {
    font-family: var(--font-mono);
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--warning);
    margin-bottom: 12px;
}

.slot-box .slot-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 16px 0 12px;
}

.slot-dot {
    width: 28px; height: 28px;
    border-radius: 50%;
}

.slot-dot.booked {
    background: var(--red-accent);
    box-shadow: 0 0 12px rgba(255, 89, 69, 0.4);
}

.slot-dot.open {
    background: transparent;
    border: 2px solid var(--text-muted);
}

.slot-box .slot-label {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.urgency-note {
    margin-top: 40px;
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* ─── GUARANTEE ─── */
.guarantee-section {
    padding: 100px 40px;
    border-top: 1px solid var(--border);
    position: relative;
}

.guarantee-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 30%, rgba(52, 199, 89, 0.14) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 75%, rgba(0, 191, 255, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.guarantee-item {
    background: var(--success-dim);
    border-top: 2px solid var(--success);
    padding: 40px 32px;
}

.guarantee-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--success);
}

.guarantee-item p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* ─── FINAL CTA ─── */
.final-cta {
    padding: 160px 40px;
    border-top: 1px solid var(--border);
    text-align: center;
    position: relative;
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 45%, rgba(0, 191, 255, 0.24) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 70%, rgba(255, 89, 69, 0.10) 0%, transparent 40%),
        radial-gradient(ellipse at 80% 20%, rgba(52, 199, 89, 0.08) 0%, transparent 35%);
    pointer-events: none;
}

.final-cta .cta-logo {
    margin-bottom: 40px;
    position: relative;
}

.final-cta .cta-logo img {
    height: 60px;
    width: auto;
    opacity: 0.9;
}

.final-cta h2 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.04em;
    max-width: 700px;
    margin: 0 auto 32px;
    position: relative;
}

.final-cta h2 span { color: var(--accent); }

.final-cta .cta-sub {
    font-size: 1.35rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.7;
    position: relative;
}

.final-cta .btn-primary {
    padding: 20px 48px;
    font-size: 0.95rem;
    position: relative;
}

.final-cta .cta-email {
    font-family: var(--font-mono);
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-top: 24px;
    letter-spacing: 0.05em;
    position: relative;
}

.final-cta .cta-email a {
    color: var(--accent);
    text-decoration: none;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: all var(--ease-smooth);
}

/* ─── RESPONSIVE — VENDOR PAGE ─── */
@media (max-width: 768px) {
    .top-bar { padding: 12px 20px; font-size: 0.78rem; }
    .vendor-hero { padding: 100px 20px 60px; }
    .vendor-hero .hero-body { font-size: 1.25rem; }
    .vendor-hero .hero-actions { flex-direction: column; }
    .btn { text-align: center; }
    .proof-section { grid-template-columns: 1fr; gap: 48px; padding: 80px 20px; }
    .proof-right p { font-size: 1.15rem; }
    .quote-section { padding: 80px 20px; }
    .quote-body { font-size: 1.15rem; }
    .solutions-section { padding: 80px 20px; }
    .solutions-grid { grid-template-columns: 1fr; }
    .solution-card p { font-size: 1.05rem; }
    .fomo-section { grid-template-columns: 1fr; gap: 48px; padding: 80px 20px; }
    .fomo-copy p { font-size: 1.1rem; }
    .process-section { padding: 80px 20px; }
    .process-grid { grid-template-columns: 1fr; }
    .process-footer { flex-direction: column; gap: 12px; }
    .urgency-section { padding: 80px 20px; }
    .urgency-note { font-size: 1.05rem; }
    .guarantee-section { padding: 80px 20px; }
    .guarantee-grid { grid-template-columns: 1fr; }
    .guarantee-item p { font-size: 1.05rem; }
    .final-cta { padding: 100px 20px; }
    .final-cta .cta-sub { font-size: 1.15rem; }
    .section-header { flex-direction: column; align-items: flex-start; }
}

/* ─── AMBIENT GRADIENT UTILITY ─── */
/* Base pattern for background gradient overlays. Pages customize via CSS variables. */


/* ═══════════════════════════════════════════════════════════
   BOOK SLOT PAGE
   ═══════════════════════════════════════════════════════════ */

.book-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

.book-page::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse at 25% 30%, rgba(0, 191, 255, 0.18) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 70%, rgba(255, 89, 69, 0.14) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.book-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
    position: relative;
    z-index: 1;
}

.book-header {
    text-align: center;
    margin-bottom: 64px;
}

.book-header .logo {
    width: 80px;
    height: auto;
    margin-bottom: 24px;
    opacity: 0.9;
}

.book-header h1 {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    line-height: 1.1;
}

.book-header h1 span { color: var(--accent); }

.book-header .subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ─── SLOTS GRID ─── */
.slots-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.slot-card {
    background: var(--bg-card);
    border: 2px solid var(--border);
    padding: 32px 24px;
    border-radius: 8px;
    transition: var(--ease-default);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.slot-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 191, 255, 0.15);
}

.slot-card:has(.slot-button:hover) {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 191, 255, 0.25);
}

.slot-card.sold-out {
    opacity: 0.5;
    cursor: not-allowed;
    border-color: var(--red-accent);
}

.slot-card.sold-out:hover {
    transform: none;
    box-shadow: none;
}

.slot-week {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.slot-date {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.slot-availability {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.slot-availability .count { color: var(--accent); font-weight: 700; }
.slot-availability.low .count { color: var(--red-accent); }
.slot-availability.sold .count { color: var(--text-muted); }

.slot-price {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 20px;
}

.slot-button {
    display: block;
    width: 100%;
    padding: 14px 28px;
    margin-top: auto;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    line-height: 1.4;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    background: var(--accent);
    color: var(--bg-primary);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--ease-default);
    font-weight: 700;
}

.slot-button:link,
.slot-button:visited {
    color: var(--bg-primary);
    text-decoration: none;
}

.slot-button:hover {
    background: var(--text-white);
    color: var(--bg-primary);
}

.slot-button:active {
    background: rgba(255,255,255,0.88);
    color: var(--bg-primary);
}

.slot-button:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.slot-button.disabled {
    background: var(--text-muted);
    color: var(--bg-card);
    cursor: not-allowed;
    pointer-events: none;
}

/* ─── INFO BOX ─── */
.info-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 32px;
    border-radius: 8px;
    margin-top: 48px;
}

.info-box h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: var(--accent);
}

.info-box ul {
    list-style: none;
    padding-left: 0;
}

.info-box ul.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 32px;
}

.info-box li {
    padding: 8px 0 8px 24px;
    position: relative;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.info-box li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

/* ─── RESPONSIVE — BOOK SLOT ─── */
@media (max-width: 1024px) {
    .slots-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .book-container { padding: 40px 20px; }
    .book-header h1 { font-size: 2rem; }
    .book-header .subtitle { font-size: 1.1rem; }
    .slots-grid { grid-template-columns: 1fr; gap: 16px; }
    .slot-card { padding: 24px 20px; }
    .slot-date { font-size: 1.5rem; }
    .slot-price { font-size: 1.6rem; }
    .slot-button { padding: 16px 24px; font-size: 0.9rem; min-height: 48px; }
    .info-box ul.info-grid { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════════════════
   BOOKING CONFIRMED PAGE
   ═══════════════════════════════════════════════════════════ */

.confirmed-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.confirmed-page::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse at 50% 30%, rgba(52, 199, 89, 0.18) 0%, transparent 55%),
        radial-gradient(ellipse at 70% 70%, rgba(0, 191, 255, 0.14) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.confirmed-container {
    max-width: 600px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.checkmark {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: var(--success);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    font-size: 3rem;
    animation: pop 0.5s ease-out;
}

@keyframes pop {
    0%  { transform: scale(0); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.confirmed-container h1 {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.confirmed-container h1 span { color: var(--accent); }

.week-label {
    font-family: var(--font-mono);
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 32px;
    letter-spacing: 0.05em;
}

.confirmed-container .message {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.next-steps {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 32px;
    border-radius: 8px;
    text-align: left;
    margin-bottom: 32px;
}

.next-steps h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--success);
}

.next-steps ol {
    padding-left: 20px;
    color: var(--text-secondary);
}

.next-steps li {
    padding: 8px 0;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* ─── RESPONSIVE — CONFIRMED ─── */
@media (max-width: 768px) {
    .confirmed-container { padding: 40px 20px; }
    .confirmed-container h1 { font-size: 2rem; }
    .confirmed-container .message { font-size: 1.05rem; }
}


/* ═══════════════════════════════════════════════════════════
   DECISION MAKERS — Embed Pages
   ═══════════════════════════════════════════════════════════ */

.embed-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

.embed-page::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse at 25% 30%, rgba(0, 191, 255, 0.18) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 70%, rgba(255, 89, 69, 0.14) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 20%, rgba(255, 149, 0, 0.08) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

.embed-container {
    flex: 1;
    padding: 40px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.embed-container iframe {
    display: block;
    width: 100%;
    height: 1600px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.3),
        0 0 48px rgba(0, 191, 255, 0.12);
}

/* ─── RESPONSIVE — EMBED ─── */
@media (max-width: 768px) {
    .embed-container { padding: 20px; }
    .embed-container iframe { height: 1000px; }
}


/* ═══════════════════════════════════════════════════════════
   DECISION MAKERS — Value Proposition Page  (dm-page)
   ═══════════════════════════════════════════════════════════ */

.dm-page {
    overflow-x: hidden;
}

.dm-page::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse at 25% 30%, rgba(0, 191, 255, 0.14) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 70%, rgba(255, 89, 69, 0.10) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 20%, rgba(255, 149, 0, 0.06) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

/* ─── DM HERO ─── */
.dm-hero {
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 40px 80px;
    position: relative;
    z-index: 1;
}

.dm-hero::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 65%; height: 100%;
    background:
        radial-gradient(ellipse at 75% 25%, rgba(0, 191, 255, 0.18) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 60%, rgba(52, 199, 89, 0.10) 0%, transparent 45%);
    pointer-events: none;
}

.dm-hero-label {
    font-family: var(--font-mono);
    font-size: 1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeUp 0.8s 0.2s forwards;
}

.dm-hero h1 {
    font-size: clamp(3rem, 7vw, 7rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.04em;
    max-width: 1000px;
    opacity: 0;
    animation: fadeUp 0.8s 0.4s forwards;
}

.dm-hero h1 .num-accent { color: var(--accent); }
.dm-hero h1 .line-two { display: block; color: var(--accent); }

.dm-hero-body {
    max-width: 680px;
    margin-top: 36px;
    font-size: 1.45rem;
    line-height: 1.65;
    color: var(--text-secondary);
    opacity: 0;
    animation: fadeUp 0.8s 0.6s forwards;
}

.dm-hero-price {
    margin-top: 16px;
    font-family: var(--font-mono);
    font-size: 1rem;
    letter-spacing: 0.08em;
    color: var(--warning);
    opacity: 0;
    animation: fadeUp 0.8s 0.7s forwards;
}

.dm-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 48px;
    opacity: 0;
    animation: fadeUp 0.8s 0.8s forwards;
}

/* ─── MARCH CALENDAR ─── */
.dm-calendar-section {
    padding: 120px 40px;
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 1;
}

.dm-calendar-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 30%, rgba(0, 191, 255, 0.10) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(255, 149, 0, 0.06) 0%, transparent 40%);
    pointer-events: none;
}

.dm-week-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.dm-week-card {
    background: var(--bg-card);
    border: 2px solid var(--border);
    padding: 32px 24px;
    border-radius: 8px;
    transition: var(--ease-default);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
}

.dm-week-live {
    border-color: var(--accent);
    box-shadow: 0 0 24px rgba(0, 191, 255, 0.12);
}

.dm-week-live:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 191, 255, 0.2);
}

.dm-week-disabled {
    opacity: 0.45;
}

.dm-week-label {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.dm-week-date {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}

.dm-week-time {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.dm-week-status {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
}

.dm-status-live {
    color: var(--success);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.dm-status-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 8px rgba(52, 199, 89, 0.6);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.dm-status-booking {
    color: var(--text-muted);
}

.dm-week-price {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 20px;
}

.dm-week-btn {
    display: block;
    width: 100%;
    padding: 14px 28px;
    margin-top: auto;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    background: var(--accent);
    color: var(--bg-primary);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--ease-default);
    font-weight: 700;
}

.dm-week-btn:hover {
    background: var(--text-white);
    color: var(--bg-primary);
}

.dm-btn-disabled {
    background: var(--text-muted);
    color: var(--bg-card);
    cursor: not-allowed;
    pointer-events: none;
}

/* ─── WHO ATTENDS ─── */
.dm-who-section {
    padding: 120px 40px;
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 1;
}

.dm-who-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 40%, rgba(0, 191, 255, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 75% 75%, rgba(255, 89, 69, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.dm-who-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    position: relative;
}

.dm-who-card {
    background: var(--bg-card);
    padding: 40px 28px;
    transition: background var(--ease-default);
}

.dm-who-card:hover { background: var(--bg-elevated); }

.dm-who-icon {
    font-size: 2rem;
    margin-bottom: 20px;
}

.dm-who-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.dm-who-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* ─── WHAT YOU GET ─── */
.dm-value-section {
    padding: 120px 40px;
    border-top: 1px solid var(--border);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.dm-value-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 65% 30%, rgba(52, 199, 89, 0.12) 0%, transparent 45%),
        radial-gradient(ellipse at 15% 70%, rgba(0, 191, 255, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.dm-value-left {
    position: relative;
}

.dm-value-left h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 32px;
}

.dm-value-left h2 span { color: var(--accent); }

.dm-value-why {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-secondary);
    border-left: 3px solid var(--warning);
    padding-left: 24px;
}

.dm-value-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
}

.dm-value-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.dm-value-check {
    flex-shrink: 0;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--success-dim);
    color: var(--success);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    margin-top: 2px;
}

.dm-value-item h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.dm-value-item p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ─── SOCIAL PROOF ─── */
.dm-proof-section {
    padding: 100px 40px;
    border-top: 1px solid var(--border);
    text-align: center;
    position: relative;
    z-index: 1;
}

.dm-proof-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 40%, rgba(0, 191, 255, 0.16) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(255, 89, 69, 0.06) 0%, transparent 40%);
    pointer-events: none;
}

.dm-proof-header {
    margin-bottom: 48px;
    position: relative;
}

.dm-proof-label {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
}

.dm-proof-header h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    max-width: 800px;
    margin: 0 auto;
}

.dm-proof-header h2 span { color: var(--accent); }

.dm-logos-label {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 32px;
    position: relative;
}

.dm-logo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.dm-logo-item {
    font-family: var(--font-mono);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 14px 28px;
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--text-primary);
    transition: var(--ease-default);
}

.dm-logo-item:hover {
    border-color: var(--accent);
    background: var(--bg-elevated);
}

/* ─── FAQ ─── */
.dm-faq-section {
    padding: 120px 40px;
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 1;
}

.dm-faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    position: relative;
}

.dm-faq-item {
    background: var(--bg-card);
    padding: 40px 32px;
    transition: background var(--ease-default);
}

.dm-faq-item:hover { background: var(--bg-elevated); }

.dm-faq-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--accent);
}

.dm-faq-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.dm-faq-item a {
    color: var(--accent);
    text-decoration: none;
}

/* ─── DM FINAL CTA ─── */
.dm-final-cta {
    padding: 140px 40px;
    border-top: 1px solid var(--border);
    text-align: center;
    position: relative;
    z-index: 1;
}

.dm-final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 45%, rgba(0, 191, 255, 0.20) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 70%, rgba(52, 199, 89, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.dm-final-cta .cta-logo {
    margin-bottom: 40px;
    position: relative;
}

.dm-final-cta .cta-logo img {
    height: 60px;
    width: auto;
    opacity: 0.9;
}

.dm-final-cta h2 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.04em;
    max-width: 700px;
    margin: 0 auto 32px;
    position: relative;
}

.dm-final-cta h2 span { color: var(--accent); }

.dm-final-cta .cta-sub {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.7;
    position: relative;
}

/* ─── RESPONSIVE — DM PAGE ─── */
@media (max-width: 1024px) {
    .dm-week-grid { grid-template-columns: repeat(2, 1fr); }
    .dm-who-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .dm-hero { padding: 100px 20px 60px; min-height: auto; }
    .dm-hero-body { font-size: 1.2rem; }
    .dm-hero-actions { flex-direction: column; }
    .btn { text-align: center; }
    .dm-calendar-section { padding: 80px 20px; }
    .dm-week-grid { grid-template-columns: 1fr; gap: 16px; }
    .dm-who-section { padding: 80px 20px; }
    .dm-who-grid { grid-template-columns: 1fr; }
    .dm-value-section { grid-template-columns: 1fr; gap: 48px; padding: 80px 20px; }
    .dm-proof-section { padding: 80px 20px; }
    .dm-faq-section { padding: 80px 20px; }
    .dm-faq-grid { grid-template-columns: 1fr; }
    .dm-final-cta { padding: 100px 20px; }
    .section-header { flex-direction: column; align-items: flex-start; }
}


/* ═══════════════════════════════════════════════════════════
   EVENT PAGE  (4-march.html, etc. — embed-page with event content)
   ═══════════════════════════════════════════════════════════ */

/* ─── EVENT HERO ─── */
.event-hero {
    padding: 80px 40px 60px;
    text-align: center;
    position: relative;
    z-index: 1;
    border-bottom: 1px solid var(--border);
}

.event-hero-label {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.event-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.event-hero-date {
    font-size: 1.35rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.event-hero-price {
    font-family: var(--font-mono);
    font-size: 1rem;
    letter-spacing: 0.08em;
    color: var(--warning);
}

/* ─── EVENT LINEUP ─── */
.event-lineup {
    padding: 80px 40px;
    border-bottom: 1px solid var(--border);
    position: relative;
    z-index: 1;
}

.event-lineup::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 60% 30%, rgba(0, 191, 255, 0.10) 0%, transparent 45%),
        radial-gradient(ellipse at 20% 80%, rgba(255, 149, 0, 0.06) 0%, transparent 40%);
    pointer-events: none;
}

.event-lineup-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    position: relative;
}

.event-vendor-card {
    background: var(--bg-card);
    padding: 36px 28px;
    position: relative;
    transition: background var(--ease-default);
}

.event-vendor-card:hover { background: var(--bg-elevated); }

.event-vendor-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--ease-smooth);
}

.event-vendor-card:hover::before { transform: scaleX(1); }

.event-vendor-num {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.event-vendor-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.event-vendor-topic {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.event-vendor-card p {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--text-secondary);
}

/* ─── WHAT TO EXPECT ─── */
.event-expect {
    padding: 40px;
    border-bottom: 1px solid var(--border);
    position: relative;
    z-index: 1;
}

.event-expect-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    position: relative;
}

.event-expect-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    color: var(--text-secondary);
}

.event-expect-icon {
    font-size: 1.4rem;
}

/* ─── RESPONSIVE — EVENT PAGE ─── */
@media (max-width: 1024px) {
    .event-lineup-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .event-hero { padding: 60px 20px 40px; }
    .event-hero h1 { font-size: 2rem; }
    .event-lineup { padding: 60px 20px; }
    .event-lineup-grid { grid-template-columns: 1fr; }
    .event-expect { padding: 30px 20px; }
    .event-expect-grid { flex-direction: column; gap: 20px; align-items: flex-start; }
}


/* ═══════════════════════════════════════════════════════════
   ONE-SHEET PAGE  (1920 × 1080 fixed layout)
   ═══════════════════════════════════════════════════════════ */

@page { size: 1920px 1080px landscape; margin: 0; }

.one-sheet {
    width: 1920px;
    height: 1080px;
    background: var(--bg-dark);
    color: #e8e8f0;
    overflow: hidden;
    position: relative;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
}

.one-sheet::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 1200px 700px at 8% 25%, rgba(0,191,255,0.04) 0%, transparent 65%),
        radial-gradient(ellipse 900px 500px at 92% 80%, rgba(255,89,69,0.02) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

.one-sheet .page {
    position: relative;
    z-index: 1;
    width: 1920px;
    height: 1080px;
    display: flex;
    flex-direction: column;
}

/* ─── ONE-SHEET HEADER ─── */
.one-sheet .header {
    flex-shrink: 0;
    padding: 20px 80px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.one-sheet .header::after {
    content: '';
    position: absolute;
    bottom: 0; left: 80px; right: 80px;
    height: 1px;
    background: linear-gradient(90deg, var(--accent) 0%, rgba(0,191,255,0.15) 50%, transparent 100%);
}

.one-sheet .header-left {
    display: flex;
    align-items: center;
    gap: 18px;
}

.one-sheet .logo-img {
    height: 44px;
    width: auto;
    border-radius: 6px;
    object-fit: contain;
}

.one-sheet .logo-fallback {
    display: none;
    width: 44px; height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--accent) 0%, #0080bb 100%);
    align-items: center; justify-content: center;
    font-family: var(--font-mono);
    font-weight: 700; font-size: 17px;
    color: var(--bg-dark); flex-shrink: 0;
}

.one-sheet .logo-img[data-failed="true"] { display: none; }
.one-sheet .logo-img[data-failed="true"] + .logo-fallback { display: flex; }

.one-sheet .header-title-group { display: flex; flex-direction: column; }

.one-sheet .header-brand {
    font-weight: 600; font-size: 11px;
    letter-spacing: 3px; text-transform: uppercase;
    color: var(--text-muted);
}

.one-sheet .header-title {
    font-size: 30px; font-weight: 800;
    letter-spacing: 1.5px; text-transform: uppercase;
    line-height: 1.1; color: var(--text-primary);
}

.one-sheet .header-right { display: flex; align-items: center; }

.one-sheet .header-stat {
    text-align: center;
    padding: 0 22px;
    border-left: 1px solid rgba(255,255,255,0.06);
}

.one-sheet .header-stat:first-child { border-left: none; }

.one-sheet .header-stat-num {
    font-family: var(--font-mono);
    font-size: 22px; font-weight: 700;
    color: var(--accent); line-height: 1;
}

.one-sheet .header-stat-label {
    font-size: 9px; font-weight: 500;
    letter-spacing: 2.5px; text-transform: uppercase;
    color: var(--text-muted); margin-top: 3px;
}

/* ─── TWO-COLUMN LAYOUT — 60/40 ─── */
.one-sheet .content {
    flex: 1;
    display: flex;
    padding: 0 80px;
    min-height: 0;
}

.one-sheet .col {
    display: flex;
    flex-direction: column;
    padding-top: 32px;
    padding-bottom: 20px;
}

.one-sheet .col-left {
    flex: 0 0 60%;
    padding-right: 0;
    border-right: none;
}

.one-sheet .col-right {
    flex: 0 0 40%;
    padding-left: 44px;
}

/* ─── LEFT COLUMN — gradient bg + solid cards ─── */
.one-sheet .col-left-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 28px 36px 24px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 15% 20%, rgba(0,191,255,0.18) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 75%, rgba(255,89,69,0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(255,149,0,0.06) 0%, transparent 60%),
        linear-gradient(145deg, rgba(46,45,69,0.95), rgba(35,34,53,0.98));
    border: 1px solid rgba(0,191,255,0.12);
}

.one-sheet .section-label {
    font-family: var(--font-mono);
    font-size: 11px; font-weight: 700;
    letter-spacing: 4px; text-transform: uppercase;
    color: var(--accent); margin-bottom: 4px;
}

.one-sheet .section-title {
    font-size: 38px; font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.one-sheet .section-subtitle {
    font-size: 19px; color: var(--text-soft);
    line-height: 1.5; margin-bottom: 20px;
}

.one-sheet .quad-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 20px;
    flex: 1;
}

.one-sheet .card {
    padding: 20px 18px 16px;
    display: flex;
    flex-direction: column;
    background: rgba(26,25,40,0.85);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px;
    backdrop-filter: blur(8px);
    transition: border-color var(--ease-default);
}

.one-sheet .card:hover {
    border-color: rgba(0,191,255,0.20);
}

.one-sheet .card-icon-wrap { margin-bottom: 10px; }

.one-sheet .card-title {
    font-size: 27px; font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.15;
    letter-spacing: -0.3px;
}

.one-sheet .card-desc {
    font-size: 18px;
    color: var(--text-soft);
    line-height: 1.5;
}

/* ─── RIGHT COLUMN — stacked rows, icon bullets ─── */
.one-sheet .segment-stack {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
}

.one-sheet .segment-row {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.one-sheet .segment-row:last-child { border-bottom: none; }

.one-sheet .segment-icon-wrap {
    flex-shrink: 0;
    width: 44px; height: 44px;
    border-radius: 11px;
    background: rgba(0,191,255,0.08);
    border: 1px solid rgba(0,191,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.one-sheet .segment-icon-wrap .ico {
    width: 22px; height: 22px;
}

.one-sheet .segment-icon-red {
    background: rgba(255,89,69,0.08);
    border-color: rgba(255,89,69,0.15);
}

.one-sheet .segment-body { flex: 1; }

.one-sheet .segment-tag {
    font-family: var(--font-mono);
    font-size: 11px; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 3px;
}

.one-sheet .segment-tag-red { color: var(--red-accent); }

.one-sheet .segment-title {
    font-size: 27px; font-weight: 800;
    color: #fff;
    margin-bottom: 5px;
    line-height: 1.2;
    letter-spacing: -0.2px;
}

.one-sheet .segment-desc {
    font-size: 17.5px;
    color: var(--text-soft);
    line-height: 1.5;
}

.one-sheet .segment-note {
    flex-shrink: 0;
    margin-top: 14px;
    background: rgba(0,191,255,0.04);
    border: 1px solid rgba(0,191,255,0.10);
    border-radius: 12px;
    padding: 16px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.5;
}

.one-sheet .segment-note .ico {
    flex-shrink: 0;
    width: 22px; height: 22px;
}

/* ─── ONE-SHEET FOOTER — Multi-color ─── */
.one-sheet .footer {
    flex-shrink: 0;
    padding: 32px 80px 38px;
    position: relative;
    background: rgba(0,191,255,0.01);
}

.one-sheet .footer::before {
    content: '';
    position: absolute;
    top: 0; left: 80px; right: 80px;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(52,199,89,0.3) 20%,
        rgba(255,149,0,0.3) 40%,
        rgba(167,139,250,0.3) 60%,
        rgba(0,191,255,0.3) 80%,
        transparent 100%);
}

.one-sheet .footer-label {
    font-family: var(--font-mono);
    font-size: 10px; font-weight: 700;
    letter-spacing: 5px; text-transform: uppercase;
    color: var(--text-muted); margin-bottom: 20px;
}

.one-sheet .opp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px;
}

.one-sheet .opp-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.one-sheet .opp-icon-wrap {
    flex-shrink: 0;
    width: 44px; height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.one-sheet .opp-icon-wrap .ico {
    width: 22px; height: 22px;
    opacity: 0.9;
}

/* Green */
.one-sheet .opp-icon-green {
    background: rgba(52,199,89,0.10);
    border: 1px solid rgba(52,199,89,0.20);
}
.one-sheet .opp-icon-green .ico { color: var(--success); }
.one-sheet .opp-hl-green { color: var(--success); font-weight: 700; }

/* Warning / Orange */
.one-sheet .opp-icon-warning {
    background: rgba(255,149,0,0.10);
    border: 1px solid rgba(255,149,0,0.20);
}
.one-sheet .opp-icon-warning .ico { color: var(--warning); }
.one-sheet .opp-hl-warning { color: var(--warning); font-weight: 700; }

/* Purple */
.one-sheet .opp-icon-purple {
    background: rgba(167,139,250,0.10);
    border: 1px solid rgba(167,139,250,0.20);
}
.one-sheet .opp-icon-purple .ico { color: #a78bfa; }
.one-sheet .opp-hl-purple { color: #a78bfa; font-weight: 700; }

/* Cyan */
.one-sheet .opp-icon-cyan {
    background: rgba(0,191,255,0.08);
    border: 1px solid rgba(0,191,255,0.15);
}
.one-sheet .opp-icon-cyan .ico { color: var(--accent); }
.one-sheet .opp-hl-cyan { color: var(--accent); font-weight: 700; }

.one-sheet .opp-title {
    font-size: 21px; font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 5px;
    letter-spacing: -0.2px;
}

.one-sheet .opp-sub {
    font-size: 15px; font-weight: 400;
    color: var(--text-soft);
    line-height: 1.45;
}

@media print {
    .one-sheet { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
}
