/* ── EventPilot — AI Ticket Discovery ── */

:root {
    --bg-dark: #0a0a0f;
    --bg-hero: linear-gradient(165deg, #0a0a0f 0%, #12101a 40%, #1a0e2e 70%, #0f0a1a 100%);
    --bg-light: #f8f7f4;
    --bg-card: #ffffff;
    --surface: rgba(255, 255, 255, 0.04);
    --surface-light: rgba(255, 255, 255, 0.07);
    --ink: #0f0e13;
    --ink-light: #ffffff;
    --muted: #6b6680;
    --muted-light: rgba(255, 255, 255, 0.55);
    --line: rgba(255, 255, 255, 0.08);
    --line-dark: rgba(0, 0, 0, 0.08);
    --accent: #8b5cf6;
    --accent-glow: rgba(139, 92, 246, 0.25);
    --accent-2: #06b6d4;
    --accent-3: #f59e0b;
    --gradient-accent: linear-gradient(135deg, #8b5cf6, #06b6d4);
    --gradient-warm: linear-gradient(135deg, #f59e0b, #ef4444);
    --gradient-cool: linear-gradient(135deg, #06b6d4, #8b5cf6);
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-card: 0 1px 3px rgba(0,0,0,0.04), 0 8px 24px rgba(0,0,0,0.06);
    --shadow-hover: 0 4px 12px rgba(0,0,0,0.08), 0 20px 48px rgba(0,0,0,0.12);
    --shadow-glow: 0 0 60px rgba(139, 92, 246, 0.15);
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
    font-family: "Manrope", system-ui, -apple-system, sans-serif;
    color: var(--ink);
    background: var(--bg-light);
    line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ── Shell ── */
.shell { width: min(1200px, calc(100% - 2rem)); margin: 0 auto; }

/* ── Navigation ── */
.nav-wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 1rem;
    transition: background 0.3s, backdrop-filter 0.3s;
}
.nav-wrap.scrolled {
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px) saturate(1.4);
    border-bottom: 1px solid var(--line);
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    height: 64px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 800;
    font-size: 1.15rem;
    color: #fff;
    letter-spacing: -0.02em;
}
.brand-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.nav-links a {
    padding: 0.5rem 0.85rem;
    color: var(--muted-light);
    font-weight: 600;
    font-size: 0.88rem;
    border-radius: var(--radius-sm);
    transition: color 0.2s, background 0.2s;
}
.nav-links a:hover {
    color: #fff;
    background: var(--surface-light);
}
.nav-cta {
    margin-left: 0.5rem;
    padding: 0.5rem 1.1rem !important;
    background: var(--gradient-accent) !important;
    color: #fff !important;
    border-radius: 999px !important;
    font-weight: 700 !important;
}

/* ── Consent Mode v2 banner ── */
.consent-banner {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 420;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: center;
    width: min(960px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 1rem;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: var(--radius-md);
    background: rgba(10, 10, 15, 0.96);
    color: #fff;
    box-shadow: 0 18px 48px rgba(0,0,0,0.38);
    backdrop-filter: blur(18px) saturate(1.3);
}
.consent-copy {
    min-width: 0;
}
.consent-copy strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}
.consent-copy p {
    color: rgba(255,255,255,0.68);
    font-size: 0.82rem;
    line-height: 1.45;
}
.consent-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.consent-btn {
    min-height: 38px;
    padding: 0 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.14);
    font: inherit;
    font-size: 0.8rem;
    font-weight: 800;
    cursor: pointer;
}
.consent-btn-primary {
    color: #fff;
    background: var(--gradient-accent);
    border-color: transparent;
}
.consent-btn-secondary {
    color: rgba(255,255,255,0.86);
    background: rgba(255,255,255,0.06);
}
.consent-btn:hover {
    transform: translateY(-1px);
}
@media (max-width: 768px) {
    .consent-banner {
        grid-template-columns: 1fr;
        align-items: stretch;
    }
    .consent-actions {
        justify-content: stretch;
    }
    .consent-btn {
        flex: 1;
    }
}

/* ── Hero ── */
.hero {
    background: var(--bg-hero);
    padding: 100px 1rem 0;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139,92,246,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(6,182,212,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
    padding-bottom: 4rem;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1rem;
    background: var(--surface-light);
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted-light);
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 1.8rem;
}
.hero-badge .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}
.hero h1 {
    font-family: "Fraunces", serif;
    font-size: clamp(2.8rem, 6.5vw, 5.2rem);
    font-weight: 700;
    line-height: 1.05;
    color: #fff;
    max-width: 16ch;
    margin: 0 auto 1.2rem;
    letter-spacing: -0.02em;
}
.hero h1 .gradient-text {
    background: linear-gradient(135deg, #8b5cf6, #06b6d4, #8b5cf6, #06b6d4);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 6s ease infinite;
}
@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.hero-sub {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: var(--muted-light);
    max-width: 520px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

/* ── Hero voice CTA ── */
.hero-voice-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    max-width: 520px;
    margin: 0 auto 1.5rem;
    padding: 0.85rem 1.1rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(139,92,246,0.18), rgba(59,130,246,0.12));
    border: 1px solid rgba(139,92,246,0.45);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 18px 40px -22px rgba(139,92,246,0.65);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.hero-voice-cta:hover { transform: translateY(-2px); box-shadow: 0 22px 48px -22px rgba(139,92,246,0.75); border-color: rgba(183,148,246,0.7); }
.hero-voice-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 30% 30%, #b794f6, #8b5cf6 60%, #5b21b6 100%);
    font-size: 1.4rem;
    flex-shrink: 0;
    box-shadow: inset 0 -4px 10px rgba(0,0,0,0.25);
}
.hero-voice-text { display: flex; flex-direction: column; line-height: 1.2; text-align: left; }
.hero-voice-text strong { font-size: 0.95rem; font-weight: 800; letter-spacing: 0.01em; }
.hero-voice-text small { font-size: 0.74rem; opacity: 0.75; margin-top: 0.15rem; }
.hero-voice-arrow { font-size: 1.1rem; opacity: 0.8; margin-left: 0.25rem; }
@media (max-width: 560px) {
    .hero-voice-cta { padding: 0.7rem 0.9rem; gap: 0.7rem; }
    .hero-voice-icon { width: 38px; height: 38px; font-size: 1.2rem; }
    .hero-voice-text strong { font-size: 0.88rem; }
    .hero-voice-text small { font-size: 0.68rem; }
}

/* ── AI Search Box (Hero) ── */
.ai-search-wrap {
    max-width: 680px;
    margin: 0 auto 3rem;
    position: relative;
}
.ai-search-box {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--surface-light);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 999px;
    padding: 0.5rem 0.5rem 0.5rem 1.5rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.ai-search-box:focus-within {
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: var(--shadow-glow);
}
.ai-search-box input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: #fff;
    font: inherit;
    font-size: 1rem;
    min-height: 44px;
}
.ai-search-box input::placeholder {
    color: var(--muted-light);
}
.ai-search-btn {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: var(--gradient-accent);
    color: #fff;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    font-size: 1.2rem;
}
.ai-search-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 24px rgba(139,92,246,0.4);
}
.ai-search-hints {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}
.ai-hint {
    padding: 0.4rem 0.85rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted-light);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.ai-hint:hover {
    background: var(--surface-light);
    color: #fff;
    border-color: rgba(139,92,246,0.3);
}

/* ── Stats Row ── */
.stats-row {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem 0 0;
    border-top: 1px solid var(--line);
}
.stat {
    text-align: center;
}
.stat-value {
    font-family: "Fraunces", serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
}
.stat-label {
    font-size: 0.78rem;
    color: var(--muted-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 0.15rem;
}

/* ── Category Grid (below hero, still dark) ── */
.categories-section {
    background: var(--bg-dark);
    padding: 3rem 1rem 4rem;
}
.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}
.section-header .overline {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: 0.75rem;
}
.section-header h2 {
    font-family: "Fraunces", serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}
.section-header p {
    margin-top: 0.6rem;
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.categories-section .section-header h2 { color: #fff; }
.categories-section .section-header p { color: var(--muted-light); }

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}
.cat-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--surface-light);
    border: 1px solid var(--line);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}
.cat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    border-color: rgba(139,92,246,0.3);
}
.cat-card-img {
    height: 180px;
    overflow: hidden;
    position: relative;
}
.cat-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.cat-card:hover .cat-card-img img {
    transform: scale(1.05);
}
.cat-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,15,0.8) 0%, transparent 60%);
}
.cat-tag {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 2;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: rgba(139,92,246,0.9);
    color: #fff;
}
.cat-tag.sports { background: rgba(6,182,212,0.9); }
.cat-tag.festivals { background: rgba(245,158,11,0.9); }
.cat-body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.cat-body h3 {
    font-family: "Fraunces", serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.4rem;
    line-height: 1.2;
}
.cat-body p {
    font-size: 0.88rem;
    color: var(--muted-light);
    line-height: 1.5;
    flex: 1;
}
.cat-body .cat-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent);
    transition: gap 0.2s;
}
.cat-card:hover .cat-cta {
    gap: 0.65rem;
}

/* ── Light sections ── */
.light-section {
    padding: 5rem 1rem;
}
.light-section .section-header h2 { color: var(--ink); }
.light-section .section-header p { color: var(--muted); }

/* ── Ticket guide links ── */
.ticket-guides-section {
    background: var(--bg-light);
    padding: 4.5rem 1rem;
}
.ticket-guide-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.9rem;
}
.ticket-guide-card {
    background: var(--bg-card);
    border: 1px solid var(--line-dark);
    border-radius: var(--radius-md);
    padding: 1.1rem;
    min-height: 130px;
    color: inherit;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.65rem;
    box-shadow: var(--shadow-card);
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.ticket-guide-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(139,92,246,0.28);
}
.ticket-guide-type {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
}
.ticket-guide-card strong {
    font-family: "Fraunces", serif;
    font-size: 1.08rem;
    color: var(--ink);
    line-height: 1.2;
}
.ticket-guide-card span:last-child {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.4;
}
.ticket-guide-more {
    margin-top: 1.5rem;
    text-align: center;
}
.hot-search-section {
    background: #fff;
    padding: 4.5rem 1rem;
    border-top: 1px solid var(--line-dark);
}
.hot-search-section-inline {
    margin: 1.5rem 0 2rem;
    padding: 0;
    border: 0;
    background: transparent;
}
.hot-search-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.85rem;
}
.hot-search-section-inline .hot-search-grid {
    max-width: none;
}
.hot-search-card {
    min-height: 136px;
    padding: 1rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--line-dark);
    background: var(--bg-card);
    color: inherit;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.45rem;
    box-shadow: var(--shadow-card);
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.hot-search-card:hover {
    transform: translateY(-3px);
    border-color: rgba(245, 158, 11, 0.36);
    box-shadow: var(--shadow-hover);
}
.hot-search-badge {
    width: fit-content;
    padding: 0.18rem 0.52rem;
    border-radius: 999px;
    background: rgba(245, 158, 11, 0.1);
    color: #b45309;
    font-size: 0.68rem;
    font-weight: 900;
    text-transform: uppercase;
}
.hot-search-card strong {
    font-family: "Fraunces", serif;
    color: var(--ink);
    font-size: 1.05rem;
    line-height: 1.18;
}
.hot-search-card span:last-child {
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.35;
}
.market-shortcut-section {
    background: #fff;
    padding: 4.5rem 1rem;
    border-top: 1px solid var(--line-dark);
}
.market-shortcut-inner {
    max-width: 1200px;
    margin: 0 auto 1rem;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 1rem;
    align-items: stretch;
}
.market-shortcut-copy,
.market-shortcut-panel {
    border: 1px solid var(--line-dark);
    border-radius: var(--radius-md);
    background: var(--bg-card);
    box-shadow: var(--shadow-card);
}
.market-shortcut-copy {
    padding: 1.35rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.9rem;
}
.market-shortcut-copy h2 {
    font-family: "Fraunces", serif;
    color: var(--ink);
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    line-height: 1.05;
}
.market-shortcut-copy p {
    color: var(--muted);
    line-height: 1.55;
    max-width: 720px;
}
.market-shortcut-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}
.market-city-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.market-city-pills a {
    padding: 0.42rem 0.72rem;
    border-radius: 999px;
    background: rgba(6, 182, 212, 0.09);
    color: #0e7490;
    font-size: 0.82rem;
    font-weight: 800;
    text-decoration: none;
}
.market-city-pills a:hover {
    background: rgba(6, 182, 212, 0.16);
}
.market-shortcut-panel {
    padding: 1rem;
}
.market-panel-label {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 0.75rem;
    padding: 0.25rem 0.62rem;
    border-radius: 999px;
    background: rgba(139, 92, 246, 0.08);
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
}
.market-event-list {
    display: grid;
    gap: 0.55rem;
}
.market-event-link {
    display: grid;
    grid-template-columns: minmax(74px, 0.36fr) minmax(0, 1fr);
    gap: 0.25rem 0.65rem;
    align-items: center;
    min-height: 58px;
    padding: 0.7rem 0.8rem;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius-sm);
    background: var(--bg-light);
    color: inherit;
    text-decoration: none;
}
.market-event-link:hover {
    border-color: rgba(139, 92, 246, 0.28);
    transform: translateY(-1px);
}
.market-event-link span {
    grid-row: span 2;
    color: #b45309;
    font-size: 0.76rem;
    font-weight: 900;
}
.market-event-link strong {
    color: var(--ink);
    font-size: 0.94rem;
    line-height: 1.2;
    min-width: 0;
}
.market-event-link small {
    color: var(--muted);
    font-size: 0.72rem;
}
.market-hub-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.85rem;
}
.market-hub-card {
    min-height: 126px;
    padding: 1rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--line-dark);
    background: var(--bg-card);
    color: inherit;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.45rem;
    box-shadow: var(--shadow-card);
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.market-hub-card:hover {
    transform: translateY(-3px);
    border-color: rgba(6, 182, 212, 0.3);
    box-shadow: var(--shadow-hover);
}
.market-hub-card-active {
    border-color: rgba(139, 92, 246, 0.42);
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.08), #fff 72%);
}
.market-hub-code {
    width: fit-content;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    background: rgba(139, 92, 246, 0.08);
    color: var(--accent);
    font-size: 0.68rem;
    font-weight: 900;
    text-transform: uppercase;
}
.market-hub-card strong {
    font-family: "Fraunces", serif;
    color: var(--ink);
    font-size: 1.06rem;
    line-height: 1.18;
}
.market-hub-card span:last-child {
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.35;
}
.ticket-market-panel {
    margin: 0 0 2rem;
    padding: 1rem;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(6, 182, 212, 0.08), #fff 58%);
    box-shadow: var(--shadow-card);
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
    gap: 1rem;
}
.ticket-market-copy,
.ticket-market-routes,
.ticket-market-providers {
    min-width: 0;
}
.ticket-market-copy {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.8rem;
}
.ticket-market-badge,
.ticket-market-heading span,
.ticket-market-provider span {
    width: fit-content;
    padding: 0.22rem 0.55rem;
    border-radius: 999px;
    background: rgba(6, 182, 212, 0.1);
    color: #0e7490;
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
}
.ticket-market-copy h2 {
    color: var(--ink);
    font-family: "Fraunces", serif;
    font-size: clamp(1.45rem, 2.6vw, 2rem);
    line-height: 1.08;
}
.ticket-market-copy p {
    max-width: 760px;
    color: var(--muted);
    line-height: 1.55;
}
.ticket-market-heading {
    margin-bottom: 0.75rem;
    display: grid;
    gap: 0.35rem;
}
.ticket-market-heading strong {
    color: var(--ink);
    font-size: 0.96rem;
}
.ticket-market-providers {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.65rem;
}
.ticket-market-provider {
    min-height: 112px;
    padding: 0.85rem;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius-md);
    background: var(--bg-card);
    color: inherit;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.4rem;
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.ticket-market-provider:hover {
    transform: translateY(-2px);
    border-color: rgba(6, 182, 212, 0.3);
    box-shadow: var(--shadow-card);
}
.ticket-market-provider-primary {
    border-color: rgba(139, 92, 246, 0.36);
    background: rgba(139, 92, 246, 0.06);
}
.ticket-market-provider strong {
    color: var(--ink);
    font-size: 0.92rem;
    line-height: 1.2;
}
.ticket-market-provider small {
    color: var(--muted);
    font-size: 0.76rem;
    line-height: 1.35;
}
.ticket-fast-exit-section {
    margin: 0 0 2rem;
    padding: 1rem 0 0;
    border-top: 1px solid var(--line-dark);
}
.ticket-fast-exit-head {
    margin-bottom: 0.9rem;
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 1rem;
}
.ticket-fast-exit-head h2 {
    color: var(--ink);
    font-family: "Fraunces", serif;
    font-size: clamp(1.35rem, 2.2vw, 1.9rem);
    line-height: 1.08;
}
.ticket-fast-exit-head p {
    max-width: 420px;
    color: var(--muted);
    line-height: 1.45;
    font-size: 0.9rem;
}
.ticket-fast-exit-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
}
.ticket-fast-exit-card {
    min-height: 190px;
    padding: 1rem;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius-md);
    background: var(--bg-card);
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.65rem;
}
.ticket-fast-exit-meta {
    width: fit-content;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    background: rgba(139, 92, 246, 0.08);
    color: var(--accent);
    font-size: 0.68rem;
    font-weight: 900;
    text-transform: uppercase;
}
.ticket-fast-exit-card h3 {
    color: var(--ink);
    font-family: "Fraunces", serif;
    font-size: 1.12rem;
    line-height: 1.12;
}
.ticket-fast-exit-card p {
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.4;
}
.ticket-fast-exit-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.45rem;
    align-items: center;
}
.ticket-fast-exit-primary,
.ticket-fast-exit-secondary {
    min-height: 40px;
    padding: 0.62rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.78rem;
    font-weight: 900;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.ticket-fast-exit-primary {
    background: var(--ink);
    color: #fff;
}
.ticket-fast-exit-primary:hover {
    background: #111827;
}
.ticket-fast-exit-secondary {
    border: 1px solid var(--line-dark);
    color: var(--ink);
    background: #fff;
}
.ticket-fast-exit-secondary:hover {
    border-color: rgba(139, 92, 246, 0.3);
}
.market-context-panel {
    margin: 0 0 2rem;
    padding: 1rem 0;
    border-top: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
    gap: 1rem;
}
.market-context-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.75rem;
}
.market-context-badge,
.market-context-card span {
    width: fit-content;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    background: rgba(6, 182, 212, 0.1);
    color: #0e7490;
    font-size: 0.68rem;
    font-weight: 900;
    text-transform: uppercase;
}
.market-context-copy h2 {
    color: var(--ink);
    font-family: "Fraunces", serif;
    font-size: clamp(1.35rem, 2.4vw, 2rem);
    line-height: 1.1;
}
.market-context-copy p {
    color: var(--muted);
    line-height: 1.55;
    max-width: 760px;
}
.market-context-routes {
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
}
.market-context-card {
    min-height: 116px;
    padding: 0.85rem;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius-md);
    background: var(--bg-card);
    color: inherit;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.4rem;
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.market-context-card:hover {
    transform: translateY(-2px);
    border-color: rgba(6, 182, 212, 0.3);
    box-shadow: var(--shadow-card);
}
.market-context-card-primary {
    border-color: rgba(139, 92, 246, 0.36);
    background: rgba(139, 92, 246, 0.06);
}
.market-context-card strong {
    color: var(--ink);
    font-size: 0.92rem;
    line-height: 1.2;
}
.market-context-card small {
    color: var(--muted);
    font-size: 0.76rem;
    line-height: 1.35;
}
.conversion-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(120px, 1fr)) auto;
    align-items: center;
    gap: 0.85rem;
    margin: -0.5rem 0 2rem;
    padding: 0.9rem;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    box-shadow: var(--shadow-card);
}
.conversion-metric {
    min-height: 72px;
    padding: 0.75rem 0.9rem;
    border-radius: var(--radius-md);
    background: var(--bg-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.2rem;
}
.conversion-metric span {
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.conversion-metric strong {
    color: var(--ink);
    font-size: 1.3rem;
    line-height: 1.1;
}
.conversion-actions {
    display: flex;
    gap: 0.55rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.language-hub-section {
    background: #fff;
    padding: 4.5rem 1rem;
    border-top: 1px solid var(--line-dark);
}
.language-hub-section-inline {
    margin: 1.5rem 0 2rem;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}
.language-hub-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.85rem;
}
.language-hub-section-inline .language-hub-grid {
    max-width: none;
}
.locale-hub-card {
    min-height: 132px;
    padding: 1rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--line-dark);
    background: var(--bg-card);
    color: inherit;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.45rem;
    box-shadow: var(--shadow-card);
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.locale-hub-card:hover {
    transform: translateY(-3px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: var(--shadow-hover);
}
.locale-hub-code {
    width: fit-content;
    padding: 0.18rem 0.52rem;
    border-radius: 999px;
    background: rgba(139, 92, 246, 0.08);
    color: var(--accent);
    font-size: 0.68rem;
    font-weight: 900;
    text-transform: uppercase;
}
.locale-hub-card strong {
    font-family: "Fraunces", serif;
    color: var(--ink);
    font-size: 1.06rem;
    line-height: 1.2;
}
.locale-hub-card span:not(.locale-hub-code),
.locale-hub-card small {
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.35;
}
.html-sitemap-page {
    padding-bottom: 4rem;
}
.sitemap-section {
    margin-top: 2rem;
}
.sitemap-link-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}
.sitemap-link-grid-compact {
    grid-template-columns: repeat(2, 1fr);
}
.sitemap-link-card {
    min-height: 86px;
    padding: 0.9rem 1rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--line-dark);
    background: var(--bg-card);
    color: inherit;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.35rem;
    box-shadow: var(--shadow-card);
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.sitemap-link-card:hover {
    transform: translateY(-2px);
    border-color: rgba(6, 182, 212, 0.3);
    box-shadow: var(--shadow-hover);
}
.sitemap-link-card strong {
    color: var(--ink);
    font-size: 0.92rem;
    line-height: 1.25;
}
.sitemap-link-card span {
    color: var(--muted);
    font-size: 0.76rem;
    line-height: 1.3;
    word-break: break-word;
}
.city-intent-section {
    background: #fff;
    padding: 4.5rem 1rem;
    border-top: 1px solid var(--line-dark);
}
.ticket-intent-section {
    background: var(--bg-light);
    padding: 4.5rem 1rem;
    border-top: 1px solid var(--line-dark);
}
.city-ticket-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.85rem;
}
.city-ticket-grid-wide {
    max-width: none;
    grid-template-columns: repeat(3, 1fr);
}
.city-ticket-card {
    background: var(--bg-card);
    border: 1px solid var(--line-dark);
    border-radius: var(--radius-md);
    padding: 1rem;
    min-height: 118px;
    color: inherit;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.5rem;
    box-shadow: var(--shadow-card);
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.city-ticket-card:hover {
    transform: translateY(-3px);
    border-color: rgba(6, 182, 212, 0.3);
    box-shadow: var(--shadow-hover);
}
.city-ticket-card-active {
    border-color: rgba(139, 92, 246, 0.4);
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.08), #fff 72%);
}
.city-ticket-name {
    width: fit-content;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    background: rgba(6, 182, 212, 0.08);
    color: #0891b2;
    font-size: 0.72rem;
    font-weight: 800;
}
.city-ticket-card strong {
    font-family: "Fraunces", serif;
    font-size: 1.04rem;
    line-height: 1.2;
    color: var(--ink);
}
.city-ticket-card span:last-child {
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.35;
}
.intent-ticket-card .city-ticket-name {
    background: rgba(139, 92, 246, 0.08);
    color: var(--accent);
}

/* ── AI Finder Section ── */
.finder-section {
    background: var(--bg-light);
    padding: 5rem 1rem;
}
.finder-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
.finder-left .section-header { text-align: left; }
.finder-left .section-header p { margin-left: 0; }

.finder-form {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--line-dark);
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
.form-group.full-width {
    grid-column: 1 / -1;
}
.form-group label {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.form-group input,
.form-group select {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius-md);
    background: var(--bg-light);
    font: inherit;
    font-size: 0.95rem;
    color: var(--ink);
    transition: border-color 0.2s, box-shadow 0.2s;
    min-height: 48px;
}
.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}
.form-group input::placeholder {
    color: var(--muted);
}

.chip-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.25rem;
}
.chip { position: relative; cursor: pointer; }
.chip input { position: absolute; opacity: 0; width: 0; height: 0; }
.chip span {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    border: 1px solid var(--line-dark);
    background: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--muted);
    transition: all 0.2s;
    cursor: pointer;
}
.chip:hover span {
    border-color: var(--accent);
    color: var(--accent);
}
.chip input:checked + span {
    background: var(--gradient-accent);
    color: #fff;
    border-color: transparent;
}

.finder-submit {
    grid-column: 1 / -1;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: var(--radius-md);
    background: var(--gradient-accent);
    color: #fff;
    font: inherit;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}
.finder-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 32px var(--accent-glow);
}

/* ── AI Results ── */
.ai-results-wrap {
    max-width: 1200px;
    margin: 2rem auto 0;
}
.status-box {
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    background: var(--bg-card);
    border: 1px solid var(--line-dark);
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.status-box .spinner {
    width: 16px;
    height: 16px;
    border: 2px solid var(--line-dark);
    border-top-color: var(--accent);
    border-radius: 50%;
    display: none;
}
.status-box.loading .spinner {
    display: block;
    animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.result-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border: 1px solid var(--line-dark);
    box-shadow: var(--shadow-card);
    transition: transform 0.2s, box-shadow 0.2s;
}
.result-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}
.result-card .overline {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin-bottom: 0.5rem;
    display: block;
}
.result-card h3 {
    font-family: "Fraunces", serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.2;
    margin-bottom: 0.5rem;
}
.result-card p {
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 1rem;
    line-height: 1.5;
}
.result-card .btn-ticket {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.65rem 1.2rem;
    border-radius: 999px;
    background: var(--ink);
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    transition: transform 0.2s, box-shadow 0.2s;
}
.result-card .btn-ticket:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.result-card.summary-card {
    background: linear-gradient(135deg, #f5f3ff, #ecfeff);
    border-color: rgba(139,92,246,0.15);
}
.result-card.summary-card h3 { color: var(--accent); }
.result-card.summary-card ul {
    padding-left: 1.1rem;
    list-style: disc;
}
.result-card.summary-card li {
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

/* ── Guide Cards Section (light) ── */
.guides-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    max-width: 1200px;
    margin: 0 auto;
}
.guide-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--line-dark);
    box-shadow: var(--shadow-card);
    transition: transform 0.3s, box-shadow 0.3s;
}
.guide-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}
.guide-card-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}
.guide-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.guide-card:hover .guide-card-img img {
    transform: scale(1.05);
}
.guide-card-img .guide-tag {
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
    color: #fff;
}
.guide-card-body {
    padding: 1.25rem;
}
.guide-card-body .market-badge {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--accent);
    margin-bottom: 0.35rem;
    display: block;
}
.guide-card-body h3 {
    font-family: "Fraunces", serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.2;
    margin-bottom: 0.4rem;
}
.guide-card-body p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.5;
    margin-bottom: 1rem;
}
.guide-card-actions {
    display: flex;
    gap: 0.5rem;
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.65rem 1.2rem;
    border-radius: 999px;
    background: var(--ink);
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    cursor: pointer;
}
.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.2rem;
    border-radius: 999px;
    background: transparent;
    color: var(--ink);
    font-weight: 700;
    font-size: 0.85rem;
    border: 1px solid var(--line-dark);
    transition: background 0.2s, border-color 0.2s;
    cursor: pointer;
}
.btn-secondary:hover {
    background: var(--bg-light);
    border-color: var(--ink);
}

/* ── How It Works ── */
.how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}
.how-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--line-dark);
    box-shadow: var(--shadow-card);
}
.how-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}
.how-icon.purple { background: #f5f3ff; }
.how-icon.cyan { background: #ecfeff; }
.how-icon.amber { background: #fffbeb; }
.how-card .step-num {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 0.5rem;
    display: block;
}
.how-card h3 {
    font-family: "Fraunces", serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.4rem;
}
.how-card p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.5;
}

/* ── Footer ── */
.site-footer {
    background: var(--bg-dark);
    color: #fff;
    padding: 3.5rem 1rem 2rem;
    margin-top: 0;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
}
.footer-brand {
    font-weight: 800;
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.footer-desc {
    font-size: 0.9rem;
    color: var(--muted-light);
    line-height: 1.6;
    max-width: 340px;
}
.footer-col h4 {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted-light);
    margin-bottom: 0.85rem;
}
.footer-col a {
    display: block;
    padding: 0.3rem 0;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    transition: color 0.2s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
    font-size: 0.82rem;
    color: var(--muted-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ── Guide Page ── */
.guide-page {
    padding-top: 80px;
}
.guide-back {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}
.guide-hero-section {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--line-dark);
    display: grid;
    grid-template-columns: 400px 1fr;
    margin-bottom: 2rem;
}
.guide-hero-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 320px;
}
.guide-hero-copy {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.guide-hero-copy .overline {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 0.75rem;
}
.guide-hero-copy h1 {
    font-family: "Fraunces", serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--ink);
    line-height: 1.1;
    margin-bottom: 0.75rem;
}
.guide-hero-copy .guide-lede {
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.guide-hero-copy .guide-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.guide-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 3rem;
}
.guide-detail-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border: 1px solid var(--line-dark);
    box-shadow: var(--shadow-card);
}
.guide-detail-card.card-link,
a.guide-detail-card {
    display: block;
    color: inherit;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.guide-detail-card.card-link:hover,
a.guide-detail-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(139, 92, 246, 0.22);
}
.guide-detail-card .overline {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 0.5rem;
    display: block;
}
.guide-detail-card h3 {
    font-family: "Fraunces", serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.4rem;
}
.guide-detail-card p,
.guide-detail-card li {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.5;
}
.guide-detail-card ul {
    padding-left: 1.1rem;
    list-style: disc;
}
.guide-detail-card li {
    margin-bottom: 0.25rem;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .category-grid { grid-template-columns: repeat(2, 1fr); }
    .ticket-guide-grid,
    .hot-search-grid,
    .language-hub-grid,
    .market-hub-grid { grid-template-columns: repeat(2, 1fr); }
    .market-shortcut-inner { grid-template-columns: 1fr; }
    .ticket-market-panel { grid-template-columns: 1fr; }
    .ticket-market-providers { grid-template-columns: repeat(2, 1fr); }
    .ticket-fast-exit-head { align-items: start; flex-direction: column; }
    .ticket-fast-exit-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .market-context-panel { grid-template-columns: 1fr; }
    .sitemap-link-grid,
    .sitemap-link-grid-compact { grid-template-columns: repeat(2, 1fr); }
    .city-ticket-grid,
    .city-ticket-grid-wide { grid-template-columns: repeat(2, 1fr); }
    .guides-grid { grid-template-columns: repeat(2, 1fr); }
    .finder-container { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .conversion-strip { grid-template-columns: repeat(3, 1fr); }
    .conversion-actions { grid-column: 1 / -1; justify-content: flex-start; }
}

@media (max-width: 768px) {
    .category-grid { grid-template-columns: 1fr; }
    .ticket-guide-grid,
    .hot-search-grid,
    .language-hub-grid,
    .market-hub-grid { grid-template-columns: 1fr; }
    .market-shortcut-copy,
    .market-shortcut-panel { padding: 1rem; }
    .market-shortcut-actions { flex-direction: column; }
    .market-event-link { grid-template-columns: 1fr; }
    .market-event-link span { grid-row: auto; }
    .ticket-market-panel { padding: 0.85rem; }
    .ticket-market-providers { grid-template-columns: 1fr; }
    .ticket-fast-exit-grid { grid-template-columns: 1fr; }
    .ticket-fast-exit-card { min-height: 170px; }
    .ticket-fast-exit-actions { grid-template-columns: 1fr; }
    .market-context-routes { grid-template-columns: 1fr; }
    .sitemap-link-grid,
    .sitemap-link-grid-compact { grid-template-columns: 1fr; }
    .city-ticket-grid,
    .city-ticket-grid-wide { grid-template-columns: 1fr; }
    .guides-grid { grid-template-columns: 1fr; }
    .how-grid { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .guide-hero-section { grid-template-columns: 1fr; }
    .guide-hero-section img { min-height: 200px; max-height: 240px; }
    .guide-details { grid-template-columns: 1fr; }
    .conversion-strip { grid-template-columns: 1fr; }
    .conversion-actions { flex-direction: column; }
    .stats-row { gap: 1.5rem; flex-wrap: wrap; }
    .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
    .nav-links { display: none; }
    .hero { padding: 80px 1rem 0; }
}

/* ── Scroll Reveal Animations ── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── Hero entrance ── */
.hero-inner > * {
    animation: hero-fade-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-inner > :nth-child(1) { animation-delay: 0.1s; }
.hero-inner > :nth-child(2) { animation-delay: 0.2s; }
.hero-inner > :nth-child(3) { animation-delay: 0.3s; }
.hero-inner > :nth-child(4) { animation-delay: 0.45s; }
.hero-inner > :nth-child(5) { animation-delay: 0.6s; }

@keyframes hero-fade-up {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ── Shimmer loading for AI results ── */
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
.shimmer-card {
    background: linear-gradient(90deg,
        var(--bg-light) 25%,
        #e8e6e1 37%,
        var(--bg-light) 63%);
    background-size: 200% 100%;
    animation: shimmer 1.5s ease-in-out infinite;
    border-radius: var(--radius-lg);
    min-height: 200px;
    border: 1px solid var(--line-dark);
}

/* ── Floating particles in hero ── */
.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}
.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.4);
    animation: float-up linear infinite;
}
.particle:nth-child(odd) {
    background: rgba(6, 182, 212, 0.3);
}
@keyframes float-up {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% {
        transform: translateY(-20vh) scale(1);
        opacity: 0;
    }
}

/* ── Glow pulse on search button ── */
.ai-search-btn {
    position: relative;
}
.ai-search-btn::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: var(--gradient-accent);
    opacity: 0;
    z-index: -1;
    filter: blur(12px);
    transition: opacity 0.3s;
}
.ai-search-box:focus-within .ai-search-btn::after {
    opacity: 0.5;
    animation: glow-pulse 2s ease infinite;
}
@keyframes glow-pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.15); }
}

/* ── Result card entrance ── */
.results-grid .result-card {
    animation: card-pop 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.results-grid .result-card:nth-child(1) { animation-delay: 0.05s; }
.results-grid .result-card:nth-child(2) { animation-delay: 0.15s; }
.results-grid .result-card:nth-child(3) { animation-delay: 0.25s; }
.results-grid .result-card:nth-child(4) { animation-delay: 0.35s; }

@keyframes card-pop {
    from { opacity: 0; transform: translateY(16px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ── Share button on results ── */
.share-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--line-dark);
}
.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    border: 1px solid var(--line-dark);
    background: transparent;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}
.share-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(139,92,246,0.05);
}
.share-btn.copied {
    border-color: #22c55e;
    color: #22c55e;
    background: rgba(34,197,94,0.05);
}

/* ── Trending badge ── */
.trending-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(239,68,68,0.1), rgba(245,158,11,0.1));
    border: 1px solid rgba(239,68,68,0.15);
    font-size: 0.72rem;
    font-weight: 700;
    color: #ef4444;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.trending-badge .fire { animation: fire-pulse 1s ease infinite; }
@keyframes fire-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

/* ── Nav CTA pulse ── */
.nav-cta {
    position: relative;
    overflow: visible;
}
.nav-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: var(--gradient-accent);
    opacity: 0;
    z-index: -1;
    filter: blur(8px);
    animation: nav-glow 3s ease infinite;
}
@keyframes nav-glow {
    0%, 100% { opacity: 0; }
    50% { opacity: 0.4; }
}

/* ── Geo banner ── */
.geo-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: linear-gradient(135deg, rgba(139,92,246,0.95), rgba(6,182,212,0.95));
    backdrop-filter: blur(20px);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    animation: geo-slide 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes geo-slide {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.geo-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.6rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    position: relative;
}
.geo-banner-icon { font-size: 1.05rem; }
.geo-banner-action {
    margin-left: 0.35rem;
    padding: 0.2rem 0.7rem;
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 999px;
    color: #fff;
    font-family: inherit;
    font-weight: 700;
    font-size: 0.78rem;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}
.geo-banner-action:hover { background: rgba(255,255,255,0.3); }
.geo-banner-close {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255,255,255,0.7);
    font-size: 1.35rem;
    font-weight: 400;
    cursor: pointer;
    line-height: 1;
    padding: 0 0.3rem;
}
.geo-banner-close:hover { color: #fff; }
body.has-geo-banner .nav-wrap { top: 40px; }
body.has-geo-banner .hero { padding-top: 140px; }

/* ── Trending rail ── */
.trending-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3.5rem 1.5rem 0.5rem;
}
.trending-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}
.trending-title {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}
.trending-title h2 {
    font-family: "Fraunces", serif;
    font-size: clamp(1.4rem, 2.5vw, 1.85rem);
    font-weight: 700;
    color: var(--ink);
    margin: 0;
}
.trending-sub {
    font-size: 0.85rem;
    color: var(--muted);
}
.live-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ef4444;
    box-shadow: 0 0 0 0 rgba(239,68,68,0.7);
    animation: live-pulse 1.8s ease infinite;
    flex-shrink: 0;
}
@keyframes live-pulse {
    0% { box-shadow: 0 0 0 0 rgba(239,68,68,0.6); }
    70% { box-shadow: 0 0 0 10px rgba(239,68,68,0); }
    100% { box-shadow: 0 0 0 0 rgba(239,68,68,0); }
}

.trending-rail-wrap {
    position: relative;
}
.trending-rail {
    display: flex;
    gap: 0.9rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 0.5rem 0.25rem 1.25rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(139,92,246,0.3) transparent;
    -webkit-overflow-scrolling: touch;
}
.trending-rail::-webkit-scrollbar { height: 6px; }
.trending-rail::-webkit-scrollbar-track { background: transparent; }
.trending-rail::-webkit-scrollbar-thumb {
    background: rgba(139,92,246,0.3);
    border-radius: 3px;
}
.trend-card {
    flex: 0 0 260px;
    scroll-snap-align: start;
    background: var(--bg-card);
    border: 1px solid var(--line-dark);
    border-radius: var(--radius-lg);
    padding: 0;
    overflow: hidden;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s, border-color 0.25s;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    color: inherit;
    text-decoration: none;
}
.trend-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(139,92,246,0.3);
}
.trend-art {
    height: 130px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.trend-art::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(255,255,255,0.2), transparent 60%);
    pointer-events: none;
}
.trend-initials {
    font-family: "Fraunces", serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    z-index: 1;
}
.trend-heat {
    position: absolute;
    top: 0.7rem;
    right: 0.7rem;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(10px);
    border-radius: 999px;
    padding: 0.2rem 0.55rem;
    font-size: 0.75rem;
    z-index: 1;
}
.trend-body {
    padding: 0.9rem 1.05rem 1.05rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.trend-artist {
    font-family: "Fraunces", serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.2;
}
.trend-tour {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.35;
    margin-bottom: 0.35rem;
    min-height: 2.2em;
}
.trend-meta {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.76rem;
    color: var(--muted);
    flex-wrap: wrap;
}
.trend-price {
    font-weight: 700;
    color: var(--accent);
}
.trend-dot { opacity: 0.4; }
.trend-cities { color: var(--muted); }

.rail-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--line-dark);
    background: var(--bg-card);
    color: var(--ink);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-card);
    transition: all 0.2s;
    z-index: 2;
    font-family: inherit;
}
.rail-nav:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}
.rail-nav.prev { left: -20px; }
.rail-nav.next { right: -20px; }
.rail-nav:disabled {
    opacity: 0.3;
    cursor: default;
    pointer-events: none;
}
@media (max-width: 768px) {
    .rail-nav { display: none; }
    .trend-card { flex-basis: 220px; }
}

/* ── Category filter tabs ── */
.category-filters {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.cat-filter {
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.03);
    color: var(--muted-light);
    font-family: inherit;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.25s;
}
.cat-filter:hover {
    border-color: rgba(139,92,246,0.4);
    color: #fff;
}
.cat-filter.active {
    background: var(--gradient-accent);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 20px rgba(139,92,246,0.35);
}
.cat-card[hidden] { display: none !important; }
.cat-card.filter-out {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
}

/* ── Favorite button on cards ── */
.cat-card {
    position: relative;
}
.cat-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
    height: 100%;
}
.fav-btn {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    z-index: 3;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0,0,0,0.06);
    color: var(--muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0;
}
.fav-btn:hover {
    color: #ef4444;
    transform: scale(1.1);
}
.fav-btn.saved {
    color: #ef4444;
    background: #fff;
}
.fav-btn.saved .fav-icon {
    fill: #ef4444;
    animation: fav-pop 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.fav-icon {
    width: 18px;
    height: 18px;
}
@keyframes fav-pop {
    0% { transform: scale(1); }
    50% { transform: scale(1.35); }
    100% { transform: scale(1); }
}

/* ── Floating AI button ── */
.ai-fab {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 90;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.3rem;
    border-radius: 999px;
    background: var(--gradient-accent);
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 8px 30px rgba(139,92,246,0.45);
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    pointer-events: none;
    transition: opacity 0.35s, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.ai-fab.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
    animation: fab-pulse 3.5s ease-in-out infinite 1s;
}
.ai-fab:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 12px 36px rgba(139,92,246,0.6);
}
.ai-fab-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    font-size: 1.05rem;
    animation: sparkle-rot 6s linear infinite;
}
@keyframes sparkle-rot {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@keyframes fab-pulse {
    0%, 100% { box-shadow: 0 8px 30px rgba(139,92,246,0.45); }
    50% { box-shadow: 0 8px 30px rgba(139,92,246,0.45), 0 0 0 10px rgba(139,92,246,0.1); }
}
@media (max-width: 768px) {
    .ai-fab { bottom: 1rem; right: 1rem; padding: 0.75rem 1.1rem; font-size: 0.82rem; }
    .ai-fab-label { display: none; }
    .ai-fab-icon { width: 18px; height: 18px; }
}

/* ── Autocomplete dropdown ── */
.ai-search-wrap { position: relative; }
.autocomplete-panel {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: rgba(20, 18, 30, 0.96);
    backdrop-filter: blur(24px) saturate(1.4);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 80px rgba(0,0,0,0.55), 0 0 0 1px rgba(139,92,246,0.15);
    z-index: 50;
    max-height: 420px;
    overflow-y: auto;
    animation: ac-slide 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes ac-slide {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}
.autocomplete-list {
    padding: 0.4rem;
    margin: 0;
}
.ac-group {
    padding: 0.35rem 0.75rem 0.2rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.4);
}
.ac-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0.75rem;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.15s;
    color: #fff;
}
.ac-item:hover, .ac-item.active {
    background: rgba(139,92,246,0.18);
}
.ac-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Fraunces", serif;
    font-weight: 700;
    color: #fff;
    font-size: 0.95rem;
    background: var(--gradient-accent);
    box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.ac-icon-emoji {
    background: rgba(255,255,255,0.08);
    font-family: inherit;
    font-size: 1.2rem;
}
.ac-text {
    flex: 1;
    min-width: 0;
}
.ac-title {
    display: block;
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ac-sub {
    display: block;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.55);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ac-arrow {
    flex-shrink: 0;
    color: rgba(255,255,255,0.3);
    font-size: 1.05rem;
}
.ac-item.active .ac-arrow { color: var(--accent); }
.ac-empty {
    padding: 1.5rem;
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.88rem;
}

/* ── Ask AI option in autocomplete (always first) ── */
.ac-item-ai {
    background: linear-gradient(135deg, rgba(139,92,246,0.15), rgba(6,182,212,0.1));
    border: 1px solid rgba(139,92,246,0.3);
    margin-bottom: 0.3rem;
    position: relative;
}
.ac-item-ai::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(139,92,246,0.08), rgba(6,182,212,0.05));
    opacity: 0;
    transition: opacity 0.2s;
    pointer-events: none;
}
.ac-item-ai:hover, .ac-item-ai.active {
    background: linear-gradient(135deg, rgba(139,92,246,0.25), rgba(6,182,212,0.15));
    border-color: rgba(139,92,246,0.55);
    transform: translateY(-1px);
}
.ac-item-ai .ac-title {
    background: linear-gradient(135deg, #c4b5fd, #67e8f9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}
.ac-icon-ai {
    background: var(--gradient-accent) !important;
    box-shadow: 0 4px 20px rgba(139,92,246,0.45);
    font-size: 1.15rem !important;
    animation: ai-sparkle 3.5s ease-in-out infinite;
}
@keyframes ai-sparkle {
    0%, 100% { box-shadow: 0 4px 20px rgba(139,92,246,0.45); }
    50% { box-shadow: 0 4px 28px rgba(139,92,246,0.7), 0 0 0 4px rgba(139,92,246,0.15); }
}

/* ── Inline AI on event pages ── */
.event-ai-section {
    margin: 2.5rem 0;
}
.event-ai-card {
    background: linear-gradient(135deg, rgba(20,18,30,0.97), rgba(28,20,45,0.97));
    border: 1px solid rgba(139,92,246,0.25);
    border-radius: var(--radius-xl);
    padding: 2rem;
    color: #fff;
    box-shadow: 0 12px 40px rgba(0,0,0,0.25), 0 0 0 1px rgba(139,92,246,0.1);
    position: relative;
    overflow: hidden;
}
.event-ai-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 85% 15%, rgba(139,92,246,0.18), transparent 55%),
                radial-gradient(circle at 15% 85%, rgba(6,182,212,0.12), transparent 50%);
    pointer-events: none;
}
.event-ai-card > * { position: relative; z-index: 1; }
.event-ai-header {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}
.event-ai-spark {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 8px 24px rgba(139,92,246,0.5);
    animation: ai-sparkle 3.5s ease-in-out infinite;
    flex-shrink: 0;
}
.event-ai-header h2 {
    font-family: "Fraunces", serif;
    font-size: 1.55rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin: 0.25rem 0 0.4rem;
}
.event-ai-header p {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.7);
    margin: 0;
    line-height: 1.5;
}
.event-ai-prompt-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 1rem;
}
.event-ai-chip {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.85);
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    font-family: inherit;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s;
}
.event-ai-chip:hover {
    background: rgba(139,92,246,0.18);
    border-color: rgba(139,92,246,0.5);
    color: #fff;
    transform: translateY(-1px);
}
.event-ai-input-row {
    display: flex;
    gap: 0.5rem;
    align-items: stretch;
}
.event-ai-input-row input {
    flex: 1;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 14px;
    padding: 0.9rem 1.1rem;
    color: #fff;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 500;
    transition: border-color 0.2s, background 0.2s;
}
.event-ai-input-row input::placeholder { color: rgba(255,255,255,0.4); }
.event-ai-input-row input:focus {
    outline: none;
    border-color: rgba(139,92,246,0.55);
    background: rgba(255,255,255,0.1);
}
.event-ai-submit {
    background: var(--gradient-accent);
    color: #fff;
    border: none;
    border-radius: 14px;
    padding: 0 1.4rem;
    font-family: inherit;
    font-weight: 800;
    font-size: 0.95rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 6px 20px rgba(139,92,246,0.4);
    transition: transform 0.15s, box-shadow 0.15s;
    white-space: nowrap;
}
.event-ai-submit:hover { transform: translateY(-1px); box-shadow: 0 10px 28px rgba(139,92,246,0.55); }
.event-ai-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.event-ai-submit-arrow { transition: transform 0.2s; }
.event-ai-submit:hover .event-ai-submit-arrow { transform: translateX(3px); }
.event-ai-status {
    margin-top: 1.25rem;
    padding: 0.85rem 1rem;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    color: rgba(255,255,255,0.85);
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.event-ai-status .spinner {
    width: 14px; height: 14px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.2);
    border-top-color: var(--accent);
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.event-ai-results {
    margin-top: 1.25rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 0.85rem;
}
.event-ai-rec {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 1.1rem 1.2rem;
    color: #fff;
    display: flex;
    flex-direction: column;
    animation: card-pop 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.event-ai-rec .overline {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    margin-bottom: 0.4rem;
}
.event-ai-rec h3 {
    font-family: "Manrope", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 0.4rem;
}
.event-ai-rec p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
    margin: 0 0 0.85rem;
    flex: 1;
}
.event-ai-rec .btn-ticket {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 0.85rem;
    background: var(--gradient-accent);
    color: #fff;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.15s;
}
.event-ai-rec .btn-ticket:hover { transform: translateY(-1px); }
.event-ai-summary {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(245,158,11,0.1), rgba(139,92,246,0.08));
    border-color: rgba(245,158,11,0.25);
}
@media (max-width: 768px) {
    .event-ai-card { padding: 1.5rem 1.25rem; }
    .event-ai-header { gap: 0.75rem; }
    .event-ai-header h2 { font-size: 1.25rem; }
    .event-ai-spark { width: 40px; height: 40px; font-size: 1.25rem; }
    .event-ai-input-row { flex-direction: column; }
    .event-ai-submit { padding: 0.85rem; justify-content: center; }
}

/* ── /ask index ── */
.ask-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.25rem;
    margin: 2.5rem 0;
}
.ask-group {
    background: var(--bg-card);
    border: 1px solid var(--line-dark);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform 0.25s, box-shadow 0.25s;
}
.ask-group:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}
.ask-group-head {
    display: flex;
    gap: 0.85rem;
    align-items: center;
}
.ask-group-art {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Fraunces", serif;
    font-weight: 700;
    color: #fff;
    font-size: 1.05rem;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.ask-group-head h3 {
    font-family: "Fraunces", serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ink);
    margin: 0;
    line-height: 1.15;
}
.ask-group-head p {
    font-size: 0.85rem;
    color: var(--muted);
    margin: 0.15rem 0 0;
}
.ask-group-links {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.ask-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.6rem 0.85rem;
    border-radius: 10px;
    background: var(--bg-light);
    border: 1px solid transparent;
    color: var(--ink);
    transition: all 0.15s;
    text-decoration: none;
}
.ask-link:hover {
    border-color: rgba(139,92,246,0.35);
    background: rgba(139,92,246,0.06);
    transform: translateX(2px);
}
.ask-link-q {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--ink);
    flex: 1;
}
.ask-link-arrow {
    color: var(--accent);
    font-weight: 700;
    font-size: 1.05rem;
    flex-shrink: 0;
}
.ask-group-event {
    font-size: 0.85rem;
    color: var(--muted);
    font-weight: 600;
    align-self: flex-start;
    padding: 0.4rem 0;
    transition: color 0.15s;
}
.ask-group-event:hover { color: var(--accent); }

/* ── Saved drawer ── */
.nav-saved {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--muted-light);
    cursor: pointer;
    transition: all 0.2s;
    margin-left: 0.5rem;
    font-family: inherit;
}
.nav-saved:hover {
    color: #ef4444;
    border-color: rgba(239,68,68,0.4);
    background: rgba(239,68,68,0.08);
}
.nav-saved .fav-icon { width: 16px; height: 16px; }
.saved-count {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 9px;
    background: #ef4444;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(239,68,68,0.5);
    animation: count-pop 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes count-pop {
    0% { transform: scale(0); }
    60% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

.drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    z-index: 300;
    animation: fade-in 0.3s ease;
}
@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}
.saved-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(380px, 92vw);
    background: #ffffff;
    z-index: 310;
    box-shadow: -10px 0 40px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    animation: drawer-in 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.saved-drawer[hidden], .drawer-backdrop[hidden], .geo-banner[hidden], .autocomplete-panel[hidden], .saved-count[hidden] {
    display: none !important;
}

/* ── Event page ── */
.event-hero {
    border-radius: var(--radius-xl);
    padding: 3rem 2.5rem;
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
    overflow: hidden;
    position: relative;
}
.event-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.25), transparent 60%);
    pointer-events: none;
}
.event-hero-art {
    width: 180px;
    height: 180px;
    border-radius: 28px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
}
.event-initials {
    font-family: "Fraunces", serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.event-hero-copy {
    position: relative;
    z-index: 1;
}
.event-hero-copy h1 {
    font-family: "Fraunces", serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1;
    margin: 0.5rem 0 0.75rem;
    letter-spacing: -0.02em;
}
.event-tour {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 1.5rem;
    font-weight: 500;
}
.event-cta {
    background: #fff;
    color: var(--ink);
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.event-cta:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.hero-ai-chips {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.65rem;
    margin: -0.9rem 0 2rem;
}
.hero-ai-chip {
    min-height: 48px;
    border: 1px solid rgba(139,92,246,0.18);
    background: linear-gradient(135deg, rgba(139,92,246,0.12), rgba(6,182,212,0.1));
    color: var(--ink);
    border-radius: 12px;
    font: inherit;
    font-size: 0.9rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    cursor: pointer;
    box-shadow: 0 10px 26px rgba(15,23,42,0.08);
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.hero-ai-chip:hover {
    transform: translateY(-2px);
    border-color: rgba(139,92,246,0.36);
    box-shadow: 0 16px 34px rgba(15,23,42,0.12);
}
.hero-ai-chip span {
    color: #8b5cf6;
}
.preclick-ai-strip {
    display: grid;
    grid-template-columns: minmax(220px, 0.85fr) 1.6fr;
    gap: 1rem;
    align-items: center;
    margin: 1.25rem 0 2rem;
    padding: 1rem;
    border: 1px solid rgba(139,92,246,0.18);
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(15,23,42,0.92), rgba(24,24,37,0.92));
    box-shadow: 0 18px 44px rgba(15,23,42,0.16);
}
.preclick-ai-copy h2 {
    font-size: 1.05rem;
    line-height: 1.2;
    margin: 0.2rem 0 0;
    color: #fff;
}
.preclick-ai-actions {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.55rem;
}
.preclick-ai-chip.hero-ai-chip {
    margin: 0;
    width: 100%;
    justify-content: center;
    min-height: 46px;
    border-radius: 12px;
}
.event-cities {
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.event-city {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    color: var(--ink);
    font-weight: 500;
    padding: 0.4rem 0;
}
.city-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}
.city-arrow {
    margin-left: auto;
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 800;
}
.intent-section {
    margin-top: 2.5rem;
    padding: 2rem;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.72);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 2rem;
    box-shadow: var(--shadow-card);
}
.intent-section-single {
    grid-template-columns: 1fr;
}
.intent-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}
.intent-chip {
    display: inline-flex;
    flex-direction: column;
    gap: 0.1rem;
    min-width: 155px;
    padding: 0.75rem 0.9rem;
    border-radius: var(--radius-md);
    background: var(--bg-card);
    border: 1px solid var(--line-dark);
    color: inherit;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.intent-chip:hover {
    transform: translateY(-2px);
    border-color: rgba(139, 92, 246, 0.24);
    box-shadow: var(--shadow-card);
}
.intent-chip span {
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 800;
}
.intent-chip strong {
    color: var(--ink);
    font-size: 0.88rem;
    line-height: 1.3;
}
.route-lab-section {
    margin-top: 2.5rem;
    padding: 1.4rem;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--shadow-card);
}
.route-lab-main {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.route-lab-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}
.route-lab-panel {
    min-width: 0;
}
.route-lab-panel h3 {
    margin: 0 0 0.65rem;
    color: var(--ink);
    font-family: "Manrope", sans-serif;
    font-size: 0.92rem;
}
.route-lab-panel-wide {
    margin-top: 1rem;
}
.route-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
}
.route-card-grid-wide {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.route-card {
    min-height: 112px;
    padding: 0.8rem;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius-md);
    background: var(--bg-card);
    color: inherit;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.35rem;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s, background 0.2s;
}
.route-card:hover {
    transform: translateY(-2px);
    border-color: rgba(6, 182, 212, 0.3);
    box-shadow: var(--shadow-card);
}
.route-card.active {
    border-color: rgba(139, 92, 246, 0.45);
    background: rgba(139, 92, 246, 0.07);
}
.route-card span {
    color: var(--accent);
    font-size: 0.68rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.2;
}
.route-card strong {
    color: var(--ink);
    font-size: 0.9rem;
    line-height: 1.25;
}
.route-card small {
    color: var(--muted);
    font-size: 0.75rem;
    line-height: 1.3;
}
.related-event-grid {
    display: grid;
    gap: 0.75rem;
}
.related-event-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem;
    background: var(--bg-card);
    border: 1px solid var(--line-dark);
    border-radius: var(--radius-md);
    color: inherit;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.related-event-card:hover {
    transform: translateY(-2px);
    border-color: rgba(6, 182, 212, 0.28);
    box-shadow: var(--shadow-card);
}
.related-art {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 900;
    font-size: 0.82rem;
    flex-shrink: 0;
}
.related-copy {
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.related-copy strong {
    color: var(--ink);
    line-height: 1.25;
}
.related-copy small {
    color: var(--muted);
    font-size: 0.78rem;
}
@media (max-width: 768px) {
    .event-hero { grid-template-columns: 1fr; padding: 2rem 1.5rem; text-align: center; }
    .event-hero-art { margin: 0 auto; width: 140px; height: 140px; }
    .event-initials { font-size: 2.8rem; }
    .hero-ai-chips { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: -0.75rem; }
    .hero-ai-chip { min-height: 44px; font-size: 0.82rem; }
    .preclick-ai-strip { grid-template-columns: 1fr; padding: 0.9rem; }
    .preclick-ai-actions { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .guide-details { grid-template-columns: 1fr !important; }
    .intent-section { grid-template-columns: 1fr; padding: 1.2rem; }
    .intent-chip { min-width: 100%; }
    .route-lab-section { padding: 1rem; }
    .route-lab-main,
    .route-lab-columns,
    .route-card-grid,
    .route-card-grid-wide { grid-template-columns: 1fr; }
}

/* ── FAQ section ── */
.faq-section {
    margin-top: 3rem;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--line-dark);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.faq-item[open] {
    box-shadow: var(--shadow-card);
    border-color: rgba(139, 92, 246, 0.2);
}
.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 1.25rem;
    cursor: pointer;
    list-style: none;
    gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary h3 {
    font-family: "Manrope", sans-serif;
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--ink);
    margin: 0;
    line-height: 1.4;
}
.faq-chevron {
    color: var(--accent);
    font-weight: 700;
    font-size: 1rem;
    transition: transform 0.25s;
    flex-shrink: 0;
}
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-item p {
    padding: 0 1.25rem 1.2rem;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* ── Share section ── */
.share-section {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--line-dark);
}
.share-row-big {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}
.share-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1rem;
    border-radius: 999px;
    background: var(--bg-card);
    border: 1px solid var(--line-dark);
    color: var(--ink);
    font-family: inherit;
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}
.share-chip:hover {
    border-color: var(--accent);
    background: rgba(139, 92, 246, 0.05);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}
.share-chip svg { flex-shrink: 0; }
.language-switcher {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0 0 1rem;
}
.lang-chip {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 0.75rem;
    border-radius: 999px;
    border: 1px solid var(--line-dark);
    background: var(--bg-card);
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 800;
    text-decoration: none;
}
.lang-chip:hover,
.lang-chip.active {
    color: var(--ink);
    border-color: rgba(139, 92, 246, 0.28);
    background: rgba(139, 92, 246, 0.06);
}
.provider-compare-section {
    margin: 1.6rem 0;
    padding: 1.4rem;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}
.provider-compare-header {
    text-align: left;
    margin-bottom: 1rem;
}
.provider-compare-header h2 {
    font-size: 1.35rem;
}
.provider-compare-header p {
    max-width: 680px;
}
.provider-option-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.8rem;
}
.provider-option-card {
    min-height: 180px;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    padding: 1rem;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: var(--radius-md);
    background: #fff;
    color: var(--ink);
    text-decoration: none;
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.provider-option-card:hover {
    transform: translateY(-2px);
    border-color: rgba(37, 99, 235, 0.35);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12);
}
.provider-option-card-primary {
    border-color: rgba(37, 99, 235, 0.38);
    background: linear-gradient(180deg, #fff, #eef6ff);
}
.provider-option-badge {
    width: fit-content;
    padding: 0.25rem 0.48rem;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.1);
    color: #1d4ed8;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
}
.provider-option-card strong {
    font-size: 1rem;
    line-height: 1.2;
}
.provider-option-card span:not(.provider-option-badge) {
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.45;
}
.provider-option-card em {
    margin-top: auto;
    color: #0f172a;
    font-size: 0.86rem;
    font-style: normal;
    font-weight: 800;
}
.provider-mini-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 1rem;
}
.provider-mini-links a {
    padding: 0.48rem 0.62rem;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 999px;
    color: var(--ink);
    background: #fff;
    font-size: 0.78rem;
    font-weight: 800;
    text-decoration: none;
}
.provider-mini-links a:hover,
.provider-mini-links .provider-mini-primary {
    border-color: rgba(37, 99, 235, 0.35);
    background: #eef6ff;
    color: #1d4ed8;
}
.provider-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.9rem;
}
.provider-card {
    min-height: 230px;
    padding: 1rem;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: var(--radius-md);
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}
.provider-card-head {
    display: flex;
    justify-content: space-between;
    gap: 0.6rem;
    align-items: center;
}
.provider-badge,
.provider-network,
.provider-markets span,
.market-pill {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 26px;
    padding: 0.25rem 0.5rem;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.1);
    color: #1d4ed8;
    font-size: 0.68rem;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0;
}
.provider-network {
    background: rgba(15, 23, 42, 0.06);
    color: var(--muted);
}
.provider-card h3 {
    font-family: "Fraunces", serif;
    color: var(--ink);
    font-size: 1.18rem;
    line-height: 1.15;
}
.provider-card p {
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.45;
}
.provider-markets,
.market-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.42rem;
}
.provider-markets {
    margin-top: auto;
}
.provider-card .provider-link {
    color: #1d4ed8;
    font-size: 0.86rem;
    font-weight: 850;
    text-decoration: none;
}
.provider-card .provider-link:hover {
    text-decoration: underline;
}
.market-pill {
    min-height: 34px;
    padding: 0.42rem 0.72rem;
    background: rgba(139, 92, 246, 0.1);
    color: #6d28d9;
}
.sticky-buy-bar {
    position: fixed;
    left: 50%;
    transform: translateX(-50%) translateY(140%);
    bottom: 1rem;
    width: min(960px, calc(100% - 1.5rem));
    z-index: 120;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto auto;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 0.85rem;
    background: rgba(10, 10, 15, 0.94);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.4);
    backdrop-filter: blur(20px) saturate(1.4);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.sticky-buy-bar.visible {
    transform: translateX(-50%) translateY(0);
}
.sticky-buy-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.sticky-buy-copy strong {
    font-size: 0.92rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.sticky-buy-copy span {
    font-size: 0.74rem;
    color: rgba(255,255,255,0.58);
}
.sticky-buy-ai,
.sticky-buy-secondary,
.sticky-buy-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 800;
    white-space: nowrap;
    gap: 0.35rem;
    transition: transform 0.15s, box-shadow 0.15s;
}
.sticky-buy-ai:hover,
.sticky-buy-secondary:hover,
.sticky-buy-cta:hover {
    transform: translateY(-1px);
}
.sticky-buy-ai {
    padding: 0 0.85rem;
    color: #fff;
    background: linear-gradient(135deg, rgba(139,92,246,0.25), rgba(6,182,212,0.18));
    border: 1px solid rgba(139,92,246,0.55);
}
.sticky-buy-ai-spark {
    display: inline-flex;
    animation: ai-sparkle-sticky 3.5s ease-in-out infinite;
}
@keyframes ai-sparkle-sticky {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 3px rgba(139,92,246,0.6)); }
    50% { transform: scale(1.18); filter: drop-shadow(0 0 8px rgba(139,92,246,0.85)); }
}
.sticky-buy-secondary {
    padding: 0 0.85rem;
    color: rgba(255,255,255,0.85);
    border: 1px solid rgba(255,255,255,0.14);
}
.sticky-buy-cta {
    padding: 0 1rem;
    color: #fff;
    background: var(--gradient-accent);
    box-shadow: 0 6px 18px rgba(139,92,246,0.4);
}
@media (max-width: 1024px) {
    .provider-option-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 768px) {
    .provider-compare-section {
        padding: 1rem;
    }
    .provider-option-grid {
        grid-template-columns: 1fr;
    }
    .provider-option-card {
        min-height: 0;
    }
    .sticky-buy-bar {
        left: 0.75rem;
        right: 0.75rem;
        width: auto;
        transform: translateY(140%);
        grid-template-columns: minmax(0, 1fr) auto auto;
        padding: 0.6rem;
        gap: 0.4rem;
    }
    .sticky-buy-bar.visible { transform: translateY(0); }
    .sticky-buy-copy strong { font-size: 0.84rem; }
    .sticky-buy-copy span { font-size: 0.68rem; }
    .sticky-buy-ai-label { display: none; }
    .sticky-buy-ai { padding: 0 0.7rem; min-width: 38px; }
    .sticky-buy-secondary {
        display: none;
    }
    .sticky-buy-cta { padding: 0 0.85rem; font-size: 0.8rem; }
}
@keyframes drawer-in {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}
.drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 1px solid var(--line-dark);
}
.drawer-head h3 {
    font-family: "Fraunces", serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--ink);
}
.drawer-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--line-dark);
    background: transparent;
    color: var(--muted);
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-family: inherit;
}
.drawer-close:hover { background: var(--bg-light); color: var(--ink); }
.drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 1.5rem 1.5rem;
}
.drawer-empty {
    padding: 3rem 1rem;
    text-align: center;
    color: var(--muted);
}
.drawer-empty .empty-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    opacity: 0.4;
}
.drawer-empty p { font-size: 0.9rem; line-height: 1.5; }
.drawer-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem;
    border-radius: var(--radius-md);
    background: var(--bg-light);
    margin-bottom: 0.6rem;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s;
}
.drawer-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-card);
}
.drawer-item img {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}
.drawer-item-text { flex: 1; min-width: 0; }
.drawer-item-title {
    display: block;
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--ink);
}
.drawer-item-sub {
    display: block;
    font-size: 0.78rem;
    color: var(--muted);
    text-transform: capitalize;
}
.drawer-item-remove {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    font-size: 1.1rem;
    line-height: 1;
    font-family: inherit;
}
.drawer-item-remove:hover { color: #ef4444; background: rgba(239,68,68,0.08); }

/* ── Animated stat counters ── */
.stat-value.counting {
    background: linear-gradient(135deg, #fff, #c4b5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Hero spotlight that follows mouse ── */
.hero-spotlight {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(
        600px circle at var(--mx, 50%) var(--my, 30%),
        rgba(139, 92, 246, 0.15),
        transparent 50%
    );
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 1;
}
.hero:hover .hero-spotlight { opacity: 1; }

/* ── Site-wide voice FAB ── */
.voice-fab {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 90;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.7rem 1rem 0.7rem 0.75rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #b794f6 0%, #8b5cf6 55%, #5b21b6 100%);
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 0.01em;
    box-shadow: 0 22px 50px -18px rgba(139, 92, 246, 0.65), 0 6px 14px -8px rgba(0, 0, 0, 0.5);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    overflow: visible;
}
.voice-fab:hover {
    transform: translateY(-2px);
    box-shadow: 0 28px 60px -18px rgba(139, 92, 246, 0.85), 0 8px 18px -8px rgba(0, 0, 0, 0.55);
    color: #fff;
}
.voice-fab:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 3px;
}
.voice-fab-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.voice-fab-text {
    line-height: 1;
    white-space: nowrap;
}
.voice-fab-pulse {
    position: absolute;
    inset: 0;
    border-radius: 999px;
    border: 2px solid rgba(183, 148, 246, 0.55);
    animation: voiceFabPulse 2.4s ease-out infinite;
    pointer-events: none;
}
@keyframes voiceFabPulse {
    0% { transform: scale(1); opacity: 0.65; }
    100% { transform: scale(1.25); opacity: 0; }
}
[dir="rtl"] .voice-fab { right: auto; left: 1.25rem; }
@media (max-width: 560px) {
    .voice-fab {
        right: 0.85rem;
        bottom: 0.85rem;
        padding: 0.6rem 0.85rem 0.6rem 0.55rem;
        font-size: 0.82rem;
    }
    .voice-fab-icon { width: 28px; height: 28px; font-size: 1rem; }
}
@media (prefers-reduced-motion: reduce) {
    .voice-fab-pulse { animation: none; }
}

/* ── Inline voice CTA (event-page in-content) ── */
.voice-inline-cta {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    width: 100%;
    margin: 1rem 0 1.25rem;
    padding: 0.95rem 1.1rem;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.16), rgba(59, 130, 246, 0.10));
    border: 1px solid rgba(139, 92, 246, 0.5);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 18px 40px -22px rgba(139, 92, 246, 0.65);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.voice-inline-cta:hover {
    transform: translateY(-2px);
    border-color: rgba(183, 148, 246, 0.85);
    box-shadow: 0 22px 48px -22px rgba(139, 92, 246, 0.85);
    color: #fff;
    text-decoration: none;
}
.voice-inline-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 30% 30%, #b794f6, #8b5cf6 60%, #5b21b6 100%);
    font-size: 1.35rem;
    flex-shrink: 0;
    box-shadow: inset 0 -4px 10px rgba(0, 0, 0, 0.25);
}
.voice-inline-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
    flex: 1;
    min-width: 0;
}
.voice-inline-text strong {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    color: #ffffff;
}
.voice-inline-text small {
    font-size: 0.78rem;
    margin-top: 0.15rem;
    color: rgba(255, 255, 255, 0.72);
}
.voice-inline-arrow {
    font-size: 1.25rem;
    opacity: 0.85;
    flex-shrink: 0;
}
[dir="rtl"].voice-inline-cta .voice-inline-arrow { transform: scaleX(-1); }
@media (max-width: 560px) {
    .voice-inline-cta { padding: 0.8rem 0.9rem; gap: 0.65rem; }
    .voice-inline-icon { width: 40px; height: 40px; font-size: 1.2rem; }
    .voice-inline-text strong { font-size: 0.92rem; }
    .voice-inline-text small { font-size: 0.72rem; }
}
