/*
Theme Name: CM Events
Theme URI: https://www.creative-marketing.ro/
Description: Event landing page theme with WooCommerce ticketing. Dark neon aesthetic for AI/tech event summits.
Author: Creative Marketing
Author URI: https://www.creative-marketing.ro/
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
WC requires at least: 7.0
License: GPL-2.0-or-later
Text Domain: cmevents
*/

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

:root {
    --neon: #4f46e5;                        /* indigo — primary accent        */
    --neon2: #7c3aed;                       /* violet — secondary accent      */
    --bg: #f8faff;                          /* page background                */
    --bg2: #eef2ff;                         /* alternate section background   */
    --surface: rgba(15,23,42,0.04);
    --border: rgba(15,23,42,0.12);
    --border-neon: rgba(79,70,229,0.25);
    --text: #0f172a;                        /* near-black — high contrast     */
    --muted: #334155;                       /* slate-700 — ~10:1 on --bg      */
    --nav-bg: rgba(248,250,255,0.92);
    --font-display: 'Bebas Neue', sans-serif;
    --font-mono: 'IBM Plex Mono', monospace;
    --font-body: 'Outfit', sans-serif;
}

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--neon); }
a:hover { color: var(--neon2); }

/* ============================================================
   GRID BACKGROUND
   ============================================================ */
.grid-bg {
    position: fixed;
    inset: 0;
    background-image:
            linear-gradient(rgba(79,70,229,0.06) 1px, transparent 1px),
            linear-gradient(90deg, rgba(79,70,229,0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}
.grid-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(79,70,229,0.07) 0%, transparent 70%);
}

/* ============================================================
   NOISE OVERLAY
   ============================================================ */
.noise {
    position: fixed;
    inset: 0;
    opacity: 0.006;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

/* ============================================================
   NAV
   ============================================================ */
nav.site-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 4rem;
    background: var(--nav-bg);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}
.nav-logo {
    font-family: var(--font-display);
    font-size: 1.6rem;
    letter-spacing: 0.12em;
    color: var(--neon);
    text-decoration: none;
}
.nav-logo span { color: var(--text); }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: var(--muted);
    text-decoration: none;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--neon); }
.nav-cta {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    padding: 0.6rem 1.4rem;
    border: 1px solid var(--neon);
    color: var(--neon);
    background: transparent;
    cursor: pointer;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.nav-cta:hover { background: var(--neon); color: #fff; }
.nav-cart-count {
    background: var(--neon);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.nav-cart-count:empty,
.nav-cart-count[data-count="0"] { display: none; }

/* Nav right group */
.nav-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* User icon */
.nav-user-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
    flex-shrink: 0;
}
.nav-user-icon:hover { color: var(--neon); }

/* Cart icon */
.nav-cart-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
    flex-shrink: 0;
}
.nav-cart-icon:hover { color: var(--neon); }
.nav-cart-icon .nav-cart-count {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 16px;
    height: 16px;
    font-size: 0.55rem;
}

/* Burger button */
.nav-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: 1px solid var(--border);
    cursor: pointer;
    padding: 0.5rem 0.55rem;
    z-index: 200;
    transition: border-color 0.2s;
}
.nav-burger:hover { border-color: var(--neon); }
.nav-burger span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text);
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}
.nav-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.nav-mobile {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 88vw);
    height: 100%;
    background: var(--bg);
    border-left: 1px solid var(--border);
    z-index: 150;
    padding: 5.5rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}
.nav-mobile.is-open { right: 0; }
.nav-mobile-links { list-style: none; }
.nav-mobile-links li { border-bottom: 1px solid var(--border); }
.nav-mobile-links li:first-child { border-top: 1px solid var(--border); }
.nav-mobile-links li a {
    display: block;
    padding: 1rem 0;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text);
    text-decoration: none;
    transition: color 0.2s, padding-left 0.2s;
}
.nav-mobile-links li a:hover { color: var(--neon); padding-left: 0.5rem; }
.nav-mobile-cta { text-align: center; }
.nav-mobile-cta-link {
    display: block;
    text-align: center;
    background: var(--neon);
    color: #fff !important;
    padding: 0.6rem 1.25rem;
    border-radius: 6px;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: background 0.2s;
}
.nav-mobile-cta-link:hover { background: var(--neon2); }
.nav-mobile-cart-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--neon);
    text-decoration: none;
    padding: 0.75rem 0;
    border-top: 1px solid var(--border);
}
.nav-mobile-cart-link:hover { color: var(--neon2); }

/* Overlay */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
    z-index: 140;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    backdrop-filter: blur(2px);
}
.nav-overlay.is-open { opacity: 1; pointer-events: all; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
    padding: 5.5rem 4rem 4rem;
    overflow: hidden;
}
.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.hero-infographic {
    width: 100%;
    max-width: 640px;
    height: auto;
    display: block;
    filter: drop-shadow(0 4px 32px rgba(79,70,229,0.18));
}

/* AI line draw-in animation */
.hero-ai-line {
    stroke-dasharray: 900;
    stroke-dashoffset: 900;
    animation: drawAiLine 2s cubic-bezier(0.4,0,0.2,1) 0.6s forwards;
}
@keyframes drawAiLine {
    to { stroke-dashoffset: 0; }
}

/* Peak dot pulse ring */
.hero-pulse-ring {
    animation: pulseRing 2s ease-out 2.6s infinite;
    transform-origin: 458px 29px;
}
@keyframes pulseRing {
    0%   { r: 8;  opacity: 0.25; }
    60%  { r: 18; opacity: 0; }
    100% { r: 18; opacity: 0; }
}
.hero-tag {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--neon);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: fadeUp 0.8s ease both;
}
.hero-tag::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 1px;
    background: var(--neon);
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(4.5rem, 8vw, 9rem);
    line-height: 0.9;
    letter-spacing: 0.02em;
    color: var(--text);
    animation: fadeUp 0.8s 0.1s ease both;
}
.hero-title .accent  { color: var(--neon); }
.hero-title .accent2 { color: var(--neon2); }

.hero-sub {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--muted);
    max-width: 480px;
    margin-top: 1.5rem;
    line-height: 1.7;
    animation: fadeUp 0.8s 0.2s ease both;
}

.hero-meta {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    animation: fadeUp 0.8s 0.3s ease both;
}
.hero-meta-item label {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    display: block;
    margin-bottom: 0.3rem;
}
.hero-meta-item span {
    font-family: var(--font-mono);
    font-size: 0.95rem;
    color: var(--text);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
    animation: fadeUp 0.8s 0.4s ease both;
}

.hero-number {
    position: absolute;
    right: 4rem;
    bottom: 4rem;
    font-family: var(--font-display);
    font-size: clamp(8rem, 18vw, 18rem);
    line-height: 1;
    color: rgba(79,70,229,0.1);
    letter-spacing: -0.02em;
    pointer-events: none;
    user-select: none;
    animation: pulse 4s ease-in-out infinite;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    padding: 1rem 2.5rem;
    background: var(--neon);
    color: #fff;
    border: none;
    cursor: pointer;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}
.btn-primary:hover { background: #0f172a; color: #fff; transform: translateY(-2px); }

.btn-secondary {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
    cursor: pointer;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
}
.btn-secondary:hover { border-color: var(--neon2); color: var(--neon2); }

/* ============================================================
   COUNTDOWN
   ============================================================ */
.countdown-bar {
    position: relative;
    z-index: 1;
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 2.5rem 4rem;
    display: flex;
    align-items: center;
    gap: 4rem;
}
.countdown-label {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    flex-shrink: 0;
}
.countdown-units {
    display: flex;
    gap: 2rem;
    flex: 1;
}
.countdown-unit { text-align: center; }
.countdown-num {
    font-family: var(--font-display);
    font-size: 3rem;
    line-height: 1;
    color: var(--neon);
    display: block;
    letter-spacing: 0.05em;
}
.countdown-unit-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 0.4rem;
    display: block;
}
.countdown-sep {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--border);
    line-height: 1;
    padding-top: 0.2rem;
}
.countdown-bar .progress-line {
    flex: 1;
    height: 1px;
    background: var(--border);
    position: relative;
    overflow: hidden;
}
.countdown-bar .progress-line::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon), transparent);
    animation: scan 3s linear infinite;
}

/* ============================================================
   STATS ROW
   ============================================================ */
.stats-row {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-bottom: 1px solid var(--border);
}
.stat-item {
    padding: 3rem 4rem;
    border-right: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}
.stat-item:last-child { border-right: none; }
.stat-item::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: var(--neon);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}
.stat-item:hover::after { transform: scaleX(1); }
.stat-num {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: var(--text);
    line-height: 1;
    display: block;
}
.stat-num .accent { color: var(--neon); }
.stat-label {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 0.75rem;
    display: block;
}

/* ============================================================
   SECTIONS
   ============================================================ */
section {
    position: relative;
    z-index: 1;
    padding: 6rem 4rem;
}
.section-tag {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--neon);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.section-tag::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 1px;
    background: var(--neon);
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 0.95;
    letter-spacing: 0.02em;
    color: var(--text);
    margin-bottom: 1.5rem;
}

/* ============================================================
   SPEAKERS
   ============================================================ */
.speakers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    margin-top: 4rem;
}
.speaker-card {
    background: #fff;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: background 0.3s;
}
.speaker-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon), var(--neon2));
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}
.speaker-card:hover { background: rgba(79,70,229,0.05); }
.speaker-card:hover::before { transform: scaleX(1); }
.speaker-avatar {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    margin-bottom: 1.25rem;
    background: var(--surface);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--neon);
    position: relative;
    overflow: hidden;
    transition: border-color .3s;
}
.speaker-card:hover .speaker-avatar { border-color: var(--neon); }
.speaker-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}
.speaker-name {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.25rem;
}
.speaker-role {
    font-family: var(--font-mono);
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    color: var(--neon);
    margin-bottom: 0.25rem;
}
.speaker-company {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    color: var(--muted);
    margin-bottom: 1rem;
}
.speaker-topic {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.5;
}
.speaker-index {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--muted);
    letter-spacing: 0.1em;
}

/* ============================================================
   SCHEDULE
   ============================================================ */
.schedule-section { background: var(--bg2); }
.schedule-list {
    margin-top: 4rem;
    border: 1px solid var(--border);
}
.schedule-item {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    align-items: center;
    gap: 2rem;
    padding: 1.75rem 2.5rem;
    border-bottom: 1px solid var(--border);
    transition: background 0.2s;
    position: relative;
}
.schedule-item:last-child { border-bottom: none; }
.schedule-item:hover { background: rgba(79,70,229,0.04); }
.schedule-item.keynote { background: rgba(124,58,237,0.05); }
.schedule-item.keynote .schedule-time { color: var(--neon2); }
.schedule-time {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--muted);
    letter-spacing: 0.08em;
}
.schedule-info-title {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 0.2rem;
}
.schedule-info-speaker {
    font-family: var(--font-mono);
    font-size: 0.82rem;
    color: var(--muted);
    letter-spacing: 0.06em;
}
.schedule-badge {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    border: 1px solid var(--border-neon);
    color: var(--neon);
}
.schedule-badge.workshop { border-color: rgba(0,212,255,0.3); color: var(--neon2); }
.schedule-badge.panel    { border-color: var(--border); color: var(--muted); }

/* ============================================================
   TOPICS
   ============================================================ */
.topics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    margin-top: 4rem;
    border: 1px solid var(--border);
}
.topic-card {
    background: #fff;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}
.topic-icon {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--neon);
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
    display: block;
}
.topic-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    line-height: 1.1;
    color: var(--text);
    letter-spacing: 0.03em;
    margin-bottom: 0.75rem;
}
.topic-desc {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.6;
}
.topic-num {
    position: absolute;
    bottom: 1.5rem;
    right: 2rem;
    font-family: var(--font-display);
    font-size: 5rem;
    color: rgba(79,70,229,0.07);
    line-height: 1;
}

/* ============================================================
   REGISTER CTA
   ============================================================ */
.register-section {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    padding: 8rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.register-section::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(79,70,229,0.09) 0%, transparent 70%);
    pointer-events: none;
}
.register-eyebrow {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--neon);
    margin-bottom: 1.5rem;
}
.register-title {
    font-family: var(--font-display);
    font-size: clamp(4rem, 9vw, 8rem);
    line-height: 0.9;
    letter-spacing: 0.02em;
    color: var(--text);
    margin-bottom: 1.5rem;
}
.register-title .accent { color: var(--neon); }
.register-sub {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--muted);
    max-width: 480px;
    margin: 0 auto 3rem;
}
.register-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.register-note {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--muted);
    letter-spacing: 0.08em;
    margin-top: 1.5rem;
}

/* ============================================================
   TICKET — single free reservation
   ============================================================ */
.ticket-reservation {
    display: grid;
    grid-template-columns: 1fr 400px;
    border: 1px solid var(--border);
    background: #fff;
    margin-top: 4rem;
    overflow: hidden;
}

.ticket-res-left {
    padding: 3rem 3.5rem;
    border-right: 1px solid var(--border);
}

.ticket-res-label {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--neon);
    margin-bottom: 1.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.ticket-res-label::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 1px;
    background: var(--neon);
    flex-shrink: 0;
}

.ticket-res-right {
    padding: 3rem 3.5rem;
    background: rgba(79,70,229,0.04);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}
.ticket-res-right::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--neon), var(--neon2));
}

.ticket-res-price {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    line-height: 1;
    color: var(--neon);
    letter-spacing: 0.04em;
    margin-bottom: 0.5rem;
}

.ticket-res-note {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--muted);
    letter-spacing: 0.08em;
    margin-bottom: 2.5rem;
    display: block;
}

.ticket-res-trust {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--muted);
    letter-spacing: 0.06em;
    margin-top: 1.25rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: center;
}

/* Shared feature list (reused in reservation card) */
.ticket-features {
    list-style: none;
    margin-bottom: 0;
}
.ticket-features li {
    font-size: 0.875rem;
    color: var(--muted);
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.ticket-features li:last-child { border-bottom: none; }
.ticket-features li::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--neon);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    flex-shrink: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer.site-footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--border);
    padding: 3rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-logo {
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: 0.12em;
    color: var(--neon);
    text-decoration: none;
}
.footer-logo span { color: var(--text); }
.footer-copy {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--muted);
    letter-spacing: 0.08em;
}
.footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}
.footer-links a {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--muted);
    text-decoration: none;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--neon); }

/* ============================================================
   TICKER
   ============================================================ */
.ticker {
    background: var(--neon);
    overflow: hidden;
    white-space: nowrap;
    padding: 0.6rem 0;
    position: relative;
    z-index: 1;
}
.ticker-inner {
    display: inline-flex;
    animation: ticker 30s linear infinite;
}
.ticker-item {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #fff;
    padding: 0 3rem;
}
.ticker-item::after {
    content: '◆';
    margin-left: 3rem;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes scan {
    from { left: -100%; }
    to   { left: 100%; }
}
@keyframes pulse {
    0%, 100% { opacity: 0.75; }
    50%       { opacity: 1; }
}
@keyframes ticker {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}


/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
    opacity: 1;
    transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============================================================
   WC PAGES — generic wrapper
   ============================================================ */
.wc-main {
    position: relative;
    z-index: 1;
    min-height: calc(100vh - 80px);
    padding: 8rem 4rem 6rem;
}
.wc-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ── SPONSORS & PARTNERS ── */
.sponsors-section {
    background: var(--bg2);
}
.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-top: 3rem;
}
.sponsor-logo-slot {
    background: #ffffff;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.25rem;
    height: 100px;
    transition: border-color .25s, box-shadow .25s;
}
.sponsor-logo-slot:hover {
    border-color: var(--neon);
    box-shadow: 0 4px 16px rgba(79,70,229,0.1);
}
.sponsor-logo-slot img {
    max-width: 100%;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
    nav.site-nav { padding: 1rem 1.5rem; }
    .nav-links { display: none; }
    .nav-burger { display: flex; }
    .nav-cta-desktop { display: none; }
    .hero { grid-template-columns: 1fr; padding: 5rem 1.5rem 3rem; gap: 2rem; }
    .hero-visual { justify-content: center; }
    .hero-infographic { max-width: 100%; }
    .countdown-bar { padding: 1.25rem 1.5rem; flex-direction: column; gap: 0.75rem; overflow: hidden; }
    .countdown-units { gap: 0.75rem; justify-content: center; }
    .countdown-num { font-size: 1.75rem; }
    .countdown-sep { font-size: 1.5rem; padding-top: 0; }
    .countdown-unit-label { font-size: 0.65rem; }
    .countdown-label { font-size: 0.75rem; text-align: center; }
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .stat-item { padding: 2rem; }
    section { padding: 4rem 1.5rem; }
    .hero-meta { flex-wrap: wrap; gap: 1.5rem; margin-top: 2rem; }
    .hero-actions { flex-direction: column; margin-top: 2rem; }
    .hero-actions .btn-primary,
    .hero-actions .btn-secondary { width: 100%; text-align: center; }
    .speakers-grid { grid-template-columns: 1fr; }
    .topics-grid { grid-template-columns: 1fr; }
    .ticket-reservation { grid-template-columns: 1fr; }
    .ticket-res-left { border-right: none; border-bottom: 1px solid var(--border); }
    .ticket-res-right { padding: 2.5rem 2rem; }
    .schedule-item { grid-template-columns: 90px 1fr; }
    .schedule-badge { display: none; }
    .register-section { padding: 5rem 1.5rem; }
    footer.site-footer { flex-direction: column; gap: 1.5rem; text-align: center; }
    .hero-number { display: none; }
    .wc-main { padding: 6rem 1.5rem 4rem; }
    .sponsors-grid { grid-template-columns: repeat(2, 1fr); }
}
.sponsor-logo-slot:hover {
    border-color: var(--neon);
    box-shadow: 0 4px 16px rgba(79,70,229,0.1);
}
.sponsor-logo-slot img {
    max-width: 100%;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
}

