@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg: #000000;
  --bg2: #0A0A0F;
  --bg3: #1E1E24;
  --bg4: #40424D;
  --accent: #D83FFF;
  --accent2: #5D4DFF;
  --text: #EDEFF7;
  --text-muted: #9DA2B3;
  --gradient: linear-gradient(135deg, #5D4DFF 0%, #D83FFF 100%);
  --gradient-reverse: linear-gradient(135deg, #D83FFF 0%, #5D4DFF 100%);
  --card-bg: rgba(30, 30, 36, 0.5);
  --border: rgba(93, 77, 255, 0.15);
  --border-hover: rgba(216, 63, 255, 0.4);
  --radius: 16px;
  --glass: rgba(30, 30, 36, 0.4);
}

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

body {
  font-family: 'Manrope', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: var(--accent); text-decoration: none; transition: all 0.3s; }
a:hover { opacity: 0.85; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== NAV ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}
nav .nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
nav .logo { display: flex; align-items: center; }
nav .logo img { height: 36px; width: auto; }
nav .nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
nav .nav-links a {
  color: var(--text-muted); font-weight: 500; font-size: 0.9rem;
  transition: color 0.3s; letter-spacing: 0.01em;
}
nav .nav-links a:hover, nav .nav-links a.active {
  color: #fff; opacity: 1;
}
.nav-cta {
  background: var(--gradient) !important;
  color: #fff !important;
  padding: 10px 24px !important;
  border-radius: 8px;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.02em;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(216, 63, 255, 0.3); }
.hamburger { display: none; background: none; border: none; color: var(--text); font-size: 1.5rem; cursor: pointer; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 120px 24px 80px;
  position: relative; overflow: hidden;
  background: var(--bg);
}
.hero-video {
  position: absolute; top: 50%; left: 50%;
  min-width: 100%; min-height: 100%;
  width: auto; height: auto;
  transform: translate(-50%, -50%);
  z-index: 0; object-fit: cover;
  opacity: 0.5;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(10, 10, 18, 0.7), rgba(10, 10, 18, 0.85)),
    radial-gradient(ellipse at 30% 20%, rgba(93, 77, 255, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(216, 63, 255, 0.10) 0%, transparent 50%);
  z-index: 1;
}
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 200px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; max-width: 850px; }
.hero-badge {
  display: inline-block; padding: 8px 20px; border-radius: 50px;
  background: rgba(93, 77, 255, 0.35); border: 1px solid rgba(93, 77, 255, 0.5);
  font-size: 0.8rem; font-weight: 600; color: #fff;
  margin-bottom: 28px; text-transform: uppercase; letter-spacing: 3px;
  backdrop-filter: blur(8px);
}
.hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem); font-weight: 800;
  line-height: 1.08; margin-bottom: 20px; letter-spacing: -0.02em;
}
.hero h1 .gradient { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero .subtitle { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 12px; max-width: 600px; margin-left: auto; margin-right: auto; }
.hero .date-venue {
  font-size: 1.3rem; font-weight: 700; margin-bottom: 36px;
  color: #ffffff; -webkit-text-fill-color: #ffffff;
  letter-spacing: 0.08em;
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero--sub { min-height: 55vh; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block; padding: 14px 36px; border-radius: 10px;
  font-weight: 700; font-size: 0.95rem; cursor: pointer; border: none;
  transition: all 0.3s; font-family: 'Manrope', sans-serif; letter-spacing: 0.01em;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--gradient); color: #fff;
  box-shadow: 0 4px 24px rgba(216, 63, 255, 0.2);
}
.btn-primary:hover { box-shadow: 0 8px 32px rgba(216, 63, 255, 0.35); color: #fff; }
.btn-outline {
  background: transparent; border: 2px solid rgba(216, 63, 255, 0.5); color: #fff;
}
.btn-outline:hover { border-color: var(--accent); color: #fff; background: rgba(216, 63, 255, 0.08); }
.hero .btn-outline {
  background: rgba(216, 63, 255, 0.25); border: 2px solid rgba(216, 63, 255, 0.6);
  backdrop-filter: blur(8px); color: #fff;
}
.hero .btn-outline:hover { background: rgba(216, 63, 255, 0.4); border-color: var(--accent); }

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 52px 24px;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; max-width: 1000px; margin: 0 auto; text-align: center; }
.stat-number {
  font-size: 2.8rem; font-weight: 800;
  background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-label { color: var(--text-muted); font-size: 0.9rem; margin-top: 4px; font-weight: 500; }

/* ===== SECTIONS ===== */
section { padding: 100px 24px; }
.section-title {
  font-size: 2.5rem; font-weight: 800; text-align: center; margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.section-subtitle {
  text-align: center; color: var(--text-muted); font-size: 1.05rem;
  max-width: 620px; margin: 0 auto 60px; line-height: 1.7;
}
.bg-dark { background: var(--bg2); }
.bg-darker { background: var(--bg3); }

/* ===== CARDS (Glass) ===== */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.card {
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 36px; transition: all 0.3s;
}
.card:hover { transform: translateY(-4px); border-color: var(--border-hover); box-shadow: 0 8px 40px rgba(93, 77, 255, 0.08); }
.card h3 { font-size: 1.2rem; margin-bottom: 10px; font-weight: 700; }
.category-tag {
  display: inline-block; padding: 4px 14px; border-radius: 50px;
  background: rgba(93, 77, 255, 0.12); color: var(--accent2); font-size: 0.78rem; font-weight: 600; margin-bottom: 12px;
}
.card p { color: var(--text-muted); font-size: 0.95rem; }

/* ===== ABOUT ===== */
.about-content { max-width: 800px; margin: 0 auto; text-align: center; }
.about-content p { color: var(--text-muted); font-size: 1.1rem; line-height: 1.8; margin-bottom: 20px; }
.market-stat { font-weight: 700; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/* ===== FEATURED EXHIBITORS ===== */
.featured-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.exhibitor-card {
  background: var(--glass); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px; text-align: center; transition: all 0.3s;
  backdrop-filter: blur(12px);
}
.exhibitor-card:hover { transform: translateY(-4px); border-color: var(--border-hover); }
.exhibitor-logo {
  width: 64px; height: 64px; border-radius: 16px; margin: 0 auto 16px;
  background: var(--gradient); display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 800; color: #fff;
}
.exhibitor-card h3 { font-size: 1.1rem; margin-bottom: 6px; }
.exhibitor-card p { color: var(--text-muted); font-size: 0.9rem; }

/* ===== TESTIMONIALS ===== */
.testimonial-section { background: var(--bg2); }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; max-width: 1000px; margin: 0 auto; }
.testimonial {
  background: var(--glass); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 36px; color: var(--text-muted); position: relative;
  backdrop-filter: blur(12px);
}
.testimonial::before {
  content: '"'; position: absolute; top: 12px; left: 20px; font-size: 3.5rem;
  background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  opacity: 0.4; font-style: normal; line-height: 1;
}
.testimonial p { font-style: italic; padding-top: 16px; }
.testimonial .author { font-style: normal; font-weight: 600; color: var(--text); margin-top: 16px; font-size: 0.9rem; }

/* ===== BENEFITS ===== */
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.benefit-card {
  background: var(--glass); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 36px; text-align: center; backdrop-filter: blur(12px);
  transition: all 0.3s;
}
.benefit-card:hover { border-color: var(--border-hover); transform: translateY(-2px); }
.benefit-icon { font-size: 2.5rem; margin-bottom: 16px; }
.benefit-card h3 { margin-bottom: 10px; font-weight: 700; }
.benefit-card p { color: var(--text-muted); font-size: 0.95rem; }

/* ===== PRICING ===== */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; max-width: 800px; margin: 0 auto; }
.pricing-card {
  background: var(--glass); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 44px; text-align: center; position: relative; backdrop-filter: blur(12px);
}
.pricing-card.featured { border-color: var(--accent); }
.pricing-card.featured::before {
  content: 'MOST POPULAR'; position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gradient); color: #fff; padding: 6px 20px; border-radius: 50px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 1.5px;
}
.pricing-card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.price { font-size: 3rem; font-weight: 800; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.price-unit { font-size: 1rem; color: var(--text-muted); }
.pricing-features { list-style: none; margin: 24px 0; text-align: left; }
.pricing-features li { padding: 10px 0; color: var(--text-muted); border-bottom: 1px solid var(--border); font-size: 0.95rem; }
.pricing-features li::before { content: '✓ '; color: var(--accent); font-weight: 700; }

/* ===== AUDIENCE ===== */
.audience-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
@media (max-width: 768px) { .audience-grid { grid-template-columns: repeat(2, 1fr); } }
.audience-item {
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px; text-align: center; font-weight: 700; backdrop-filter: blur(12px);
  transition: all 0.3s; font-size: 1rem;
  background-image: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.audience-item:hover { border-color: rgba(216,63,255,0.5); }

/* ===== SECTORS ===== */
.sectors-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 16px; }
.sector-item {
  background: var(--glass); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px; text-align: center; transition: all 0.3s; backdrop-filter: blur(12px);
}
.sector-item:hover { border-color: var(--border-hover); }
.sector-icon { font-size: 2rem; margin-bottom: 8px; }
.sector-item span { font-weight: 600; font-size: 0.95rem; }

/* ===== PILLARS (3-col) ===== */
.pillars-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px; align-items: stretch; }
.pillar-card {
  background: var(--glass); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 40px; backdrop-filter: blur(12px); transition: all 0.3s;
  display: flex; flex-direction: column;
}
.pillar-card p { min-height: 3em; }
.pillar-card ul { flex: 1; }
.pillar-card:hover { border-color: var(--border-hover); }
.pillar-card h3 {
  font-size: 1.3rem; margin-bottom: 16px; font-weight: 700;
  background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.pillar-card ul { list-style: none; }
.pillar-card ul li { padding: 6px 0; color: var(--text-muted); font-size: 0.95rem; }
.pillar-card ul li::before { content: '→ '; color: var(--accent); }

/* ===== FILTER BAR ===== */
.filter-bar {
  display: flex; gap: 16px; margin-bottom: 32px; flex-wrap: wrap; align-items: center;
}
.filter-bar input, .filter-bar select {
  background: var(--bg3); border: 1px solid var(--border); color: var(--text);
  padding: 12px 18px; border-radius: 10px; font-size: 0.95rem; font-family: 'Manrope', sans-serif;
}
.filter-bar input { flex: 1; min-width: 200px; }
.filter-bar select { min-width: 180px; }
.filter-bar .btn { padding: 12px 24px; }

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border); padding: 28px 0;
}
.faq-item h3 {
  font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; cursor: pointer;
  display: flex; align-items: center; gap: 12px;
}
.faq-item h3::before {
  content: ''; display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: var(--gradient); flex-shrink: 0;
}
.faq-item p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.8; padding-left: 20px; }

/* ===== FORMS ===== */
.form-card {
  background: var(--glass); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 48px; max-width: 640px; margin: 0 auto; backdrop-filter: blur(12px);
}
.form-group { margin-bottom: 24px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; font-size: 0.9rem; color: var(--text); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 14px 18px; background: var(--bg);
  border: 1px solid var(--border); color: var(--text);
  border-radius: 10px; font-size: 0.95rem; font-family: 'Manrope', sans-serif;
  transition: border-color 0.3s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--accent);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-check { display: flex; align-items: center; gap: 8px; }
.form-check input[type="checkbox"] { width: auto; }

/* ===== CONTENT BLOCKS ===== */
.content-block { max-width: 800px; margin: 0 auto; }
.content-block h2 {
  font-size: 1.8rem; font-weight: 700; margin-bottom: 16px; margin-top: 48px;
}
.content-block h2:first-child { margin-top: 0; }
.content-block p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.8; margin-bottom: 16px; }
.content-block strong { color: var(--text); }

/* ===== CONTACT INFO ===== */
.contact-info {
  background: var(--glass); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 40px; backdrop-filter: blur(12px);
}
.contact-info h3 { font-size: 1.1rem; margin-bottom: 16px; font-weight: 700; }
.contact-info p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 8px; }
.contact-info a { color: var(--accent); }

/* ===== FOOTER ===== */
footer {
  background: var(--bg2); border-top: 1px solid var(--border); padding: 72px 24px 32px;
}
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px; margin-bottom: 48px; }
.footer-col h4 { margin-bottom: 20px; font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text); }
.footer-col p, .footer-col a { color: var(--text-muted); font-size: 0.9rem; display: block; margin-bottom: 10px; }
.footer-col a:hover { color: var(--accent); }
.footer-logo { height: 28px; margin-bottom: 16px; }
.footer-bottom {
  text-align: center; padding-top: 28px; border-top: 1px solid var(--border);
  color: var(--text-muted); font-size: 0.82rem;
}

/* ===== CTA SECTION ===== */
/* ===== IMAGE BREAK ===== */
.image-break {
  height: 350px; background-size: cover; background-position: center;
  background-attachment: fixed; position: relative;
}
.image-break-overlay {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(to bottom, rgba(10,10,18,0.5), rgba(10,10,18,0.6));
}
.image-break-text {
  font-size: 1.4rem; font-weight: 300; letter-spacing: 6px; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
@media (max-width: 768px) {
  .image-break { height: 250px; background-attachment: scroll; }
  .image-break-text { font-size: 1rem; letter-spacing: 3px; }
}

/* ===== VENUE SHOWCASE ===== */
.venue-showcase {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  min-height: 500px; overflow: hidden;
}
.venue-image { position: relative; overflow: hidden; }
.venue-image img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; transition: transform 0.6s ease;
}
.venue-image:hover img { transform: scale(1.03); }
.venue-text {
  display: flex; flex-direction: column; justify-content: center;
  padding: 60px 48px; background: var(--bg2);
}
.venue-text .section-title { text-align: left; }
.venue-text p { max-width: 480px; line-height: 1.7; }
@media (max-width: 768px) {
  .venue-showcase { grid-template-columns: 1fr; }
  .venue-image { max-height: 300px; }
  .venue-text { padding: 40px 24px; }
}

.cta-section {
  text-align: center; padding: 100px 24px;
  position: relative; overflow: hidden;
  background: var(--bg2) url('/images/olympia-dusk.jpg') center center / cover no-repeat;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(10, 10, 18, 0.80), rgba(10, 10, 18, 0.85)),
    radial-gradient(ellipse at 50% 50%, rgba(93, 77, 255, 0.10) 0%, transparent 60%);
}
.cta-section h2 { font-size: 2.4rem; margin-bottom: 16px; position: relative; letter-spacing: -0.02em; }
.cta-section p { color: var(--text-muted); margin-bottom: 36px; font-size: 1.1rem; position: relative; }
.cta-section .btn { position: relative; }

/* ===== ADMIN (unchanged) ===== */
.admin-layout { display: flex; min-height: 100vh; padding-top: 76px; }
.admin-sidebar {
  width: 240px; background: var(--bg2); border-right: 1px solid var(--border);
  padding: 24px 16px; position: fixed; top: 76px; bottom: 0;
}
.admin-sidebar a {
  display: block; padding: 10px 16px; border-radius: 8px; color: var(--text-muted);
  margin-bottom: 4px; font-weight: 500; font-size: 0.95rem;
}
.admin-sidebar a:hover, .admin-sidebar a.active { background: var(--bg3); color: var(--accent); opacity: 1; }
.admin-main { flex: 1; margin-left: 240px; padding: 32px; }
.admin-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.admin-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin-bottom: 32px; }
.admin-stat-card {
  background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px;
}
.admin-stat-card .value { font-size: 2rem; font-weight: 800; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.admin-stat-card .label { color: var(--text-muted); font-size: 0.9rem; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th, .admin-table td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--border); }
.admin-table th { color: var(--text-muted); font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; }
.admin-table td { font-size: 0.95rem; }
.admin-table tr:hover { background: rgba(93, 77, 255, 0.03); }
.badge-featured { background: rgba(93, 77, 255, 0.15); color: var(--accent2); padding: 2px 10px; border-radius: 50px; font-size: 0.8rem; }
.action-btns { display: flex; gap: 8px; }
.action-btns a, .action-btns button {
  padding: 6px 12px; border-radius: 6px; font-size: 0.85rem; cursor: pointer; font-family: inherit; border: none;
}
.btn-edit { background: rgba(93, 77, 255, 0.15); color: var(--accent2); }
.btn-delete { background: rgba(255, 50, 50, 0.15); color: #ff5555; }

/* LOGIN */
.login-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 24px; }
.login-card {
  background: var(--glass); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 48px; width: 100%; max-width: 400px; text-align: center;
  backdrop-filter: blur(12px);
}
.login-card h2 { margin-bottom: 8px; }
.login-card .subtitle { color: var(--text-muted); margin-bottom: 32px; }
.login-error { background: rgba(255, 50, 50, 0.1); color: #ff5555; padding: 10px; border-radius: 8px; margin-bottom: 16px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hamburger { display: block; }
  nav .nav-links {
    display: none; flex-direction: column; position: absolute; top: 76px; left: 0; right: 0;
    background: rgba(0, 0, 0, 0.97); backdrop-filter: blur(24px);
    padding: 24px; gap: 16px; border-bottom: 1px solid var(--border);
  }
  nav .nav-links.open { display: flex; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 2.2rem; }
  .hero--sub { min-height: 45vh; }
  .form-row { grid-template-columns: 1fr; }
  .admin-sidebar { display: none; }
  .admin-main { margin-left: 0; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  section { padding: 64px 16px; }
  .section-title { font-size: 2rem; }
  .form-card { padding: 28px 20px; }
  .contact-grid { grid-template-columns: 1fr !important; }
}

/* ===== PARTICLE CANVAS ===== */
.particle-canvas {
  position: absolute; inset: 0; z-index: 1;
  pointer-events: none;
}
.hero { pointer-events: auto; }

/* ===== FLOATING ORBS ===== */
.hero-orb {
  position: absolute; border-radius: 50%; filter: blur(80px);
  pointer-events: none; z-index: 0;
}
.hero-orb--1 {
  width: 500px; height: 500px; top: -10%; left: -5%;
  background: rgba(93, 77, 255, 0.15);
  animation: orbFloat1 12s ease-in-out infinite;
}
.hero-orb--2 {
  width: 400px; height: 400px; bottom: -15%; right: -5%;
  background: rgba(216, 63, 255, 0.12);
  animation: orbFloat2 15s ease-in-out infinite;
}
.hero-orb--3 {
  width: 300px; height: 300px; top: 30%; right: 20%;
  background: rgba(147, 120, 255, 0.08);
  animation: orbFloat3 10s ease-in-out infinite;
}
@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(60px, 40px) scale(1.1); }
  66% { transform: translate(-30px, 60px) scale(0.95); }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-50px, -30px) scale(1.05); }
  66% { transform: translate(40px, -50px) scale(0.9); }
}
@keyframes orbFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-40px, 30px) scale(1.15); }
}

/* ===== GLOW LINE ===== */
.glow-line {
  width: 120px; height: 3px; margin: 24px auto;
  background: var(--gradient); border-radius: 2px;
  box-shadow: 0 0 20px rgba(93, 77, 255, 0.5), 0 0 40px rgba(216, 63, 255, 0.3);
}

/* ===== SECTION DIVIDER ===== */
.section-glow-top {
  position: relative;
}
.section-glow-top::before {
  content: ''; position: absolute; top: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(93, 77, 255, 0.4), rgba(216, 63, 255, 0.4), transparent);
}

/* ===== ANIMATED GRADIENT BORDER ===== */
.card-glow {
  position: relative;
}
.card-glow::before {
  content: ''; position: absolute; inset: -1px; border-radius: var(--radius);
  background: var(--gradient); opacity: 0; transition: opacity 0.4s;
  z-index: -1;
}
.card-glow:hover::before { opacity: 0.15; }

/* ===== STAT COUNTER ANIMATION ===== */
@keyframes countPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* ===== ANIMATIONS ===== */
.fade-in { opacity: 0.01; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== MAILING LIST STRIP ===== */
.mailing-strip {
  background: var(--bg3); padding: 48px 24px; text-align: center;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.mailing-strip h3 { font-size: 1.3rem; margin-bottom: 8px; }
.mailing-strip p { color: var(--text-muted); margin-bottom: 20px; font-size: 0.95rem; }
.mailing-form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto; flex-wrap: wrap; justify-content: center; }
.mailing-form input {
  flex: 1; min-width: 240px; padding: 14px 18px; background: var(--bg);
  border: 1px solid var(--border); color: var(--text); border-radius: 10px;
  font-size: 0.95rem; font-family: 'Manrope', sans-serif;
}
.mailing-form input:focus { outline: none; border-color: var(--accent); }

/* ===== TWO COL LAYOUT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; max-width: 1000px; margin: 0 auto; }

/* ===== COUNTDOWN ===== */
.countdown {
  display: flex; gap: 24px; justify-content: center; margin: 28px 0;
}
.countdown-item { text-align: center; }
.countdown-number {
  display: block; font-size: 2.4rem; font-weight: 800;
  background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1.2;
}
.countdown-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 2px; font-weight: 600; }
@media (max-width: 768px) {
  .countdown { gap: 16px; }
  .countdown-number { font-size: 1.6rem; }
}

/* ===== BENEFIT SVG ICONS ===== */
.benefit-icon-svg {
  width: 64px; height: 64px; margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(93, 77, 255, 0.08);
  border-radius: 16px; padding: 12px;
}
.benefit-icon-svg svg { width: 40px; height: 40px; }

/* ===== SOCIAL LINKS ===== */
.footer-social {
  display: flex; gap: 12px; justify-content: center; margin-bottom: 32px;
}
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
  transition: all 0.3s; color: var(--text-muted);
}
.footer-social a:hover { border-color: var(--accent); background: rgba(93, 77, 255, 0.1); }
.footer-social a svg { width: 18px; height: 18px; fill: currentColor; }

/* ===== NEWS ARTICLE CARDS ===== */
.news-card { position: relative; }
.news-card .news-date { font-size: 0.8rem; color: var(--accent); font-weight: 600; margin-bottom: 8px; }
.news-card .news-excerpt { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 16px; }
.news-card .read-more { color: var(--accent); font-weight: 600; font-size: 0.9rem; }

/* ===== ARTICLE PAGES ===== */
.article-body { max-width: 720px; margin: 0 auto; padding: 2rem 0 4rem; }
.article-body p { font-size: 1.1rem; line-height: 1.85; margin-bottom: 1.5rem; color: var(--text-muted); }
.article-body h2 { font-size: 1.6rem; font-weight: 700; margin: 2.5rem 0 1rem; color: var(--text); }
.article-body strong { color: var(--text); }
.article-body em { font-style: italic; }
.article-cta { display: flex; gap: 16px; justify-content: center; margin-top: 3rem; flex-wrap: wrap; }

/* ===== VISITOR BREAKDOWN ===== */
.breakdown-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.breakdown-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 25px; }
.breakdown-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 15px; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.breakdown-list { list-style: none; }
.breakdown-list li { padding: 6px 0; font-size: 0.9rem; color: var(--text-muted); border-bottom: 1px solid var(--border); }
.breakdown-list li:last-child { border-bottom: none; }
@media (max-width: 768px) { .breakdown-grid { grid-template-columns: 1fr; } }

/* ===== WHAT'S INCLUDED ===== */
.included-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.included-item { text-align: center; padding: 25px 15px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; }
.included-icon { font-size: 2rem; margin-bottom: 10px; }
.included-item h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.included-item p { font-size: 0.85rem; color: var(--text-muted); }
@media (max-width: 768px) { .included-grid { grid-template-columns: repeat(2, 1fr); } }

/* ===================================================================
   DIRECTORY SYSTEM — Exhibitors, Speakers, Sponsors
   =================================================================== */

/* ===== DIRECTORY GRID ===== */
.directory-count {
  color: var(--text-muted); font-size: 0.9rem; margin-bottom: 24px; font-weight: 500;
}
.directory-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px;
}
.directory-card {
  background: var(--glass); border: 1px solid var(--border); border-radius: var(--radius);
  display: flex; flex-direction: column; transition: all 0.3s; overflow: hidden;
  text-decoration: none; color: var(--text); backdrop-filter: blur(12px);
}
.directory-card:hover {
  transform: translateY(-4px); border-color: var(--border-hover);
  box-shadow: 0 8px 40px rgba(93, 77, 255, 0.1); opacity: 1;
}
.directory-card-logo {
  height: 100px; display: flex; align-items: center; justify-content: center;
  padding: 20px; border-bottom: 1px solid var(--border);
  background: rgba(10, 10, 18, 0.4);
}
.directory-card-logo img {
  max-height: 60px; max-width: 180px; object-fit: contain;
  filter: brightness(0.95);
}
.directory-card-initial {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--gradient); display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 800; color: #fff;
}
.directory-card-body {
  padding: 24px; flex: 1;
}
.directory-card-body h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.directory-card-body p { color: var(--text-muted); font-size: 0.9rem; margin-top: 8px; line-height: 1.6; }
.directory-card-footer {
  padding: 16px 24px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
}
.stand-badge {
  display: inline-block; padding: 4px 12px; border-radius: 50px;
  background: rgba(93, 77, 255, 0.1); color: var(--accent2);
  font-size: 0.78rem; font-weight: 600;
}
.stand-badge--large { padding: 6px 16px; font-size: 0.85rem; }
.view-profile { color: var(--accent); font-size: 0.85rem; font-weight: 600; }

/* ===== PAGINATION ===== */
.pagination {
  display: flex; gap: 8px; justify-content: center; margin-top: 48px; flex-wrap: wrap;
}
.pagination-btn {
  padding: 10px 16px; border-radius: 8px;
  background: var(--glass); border: 1px solid var(--border);
  color: var(--text-muted); font-size: 0.9rem; font-weight: 600;
  transition: all 0.3s; text-decoration: none;
}
.pagination-btn:hover { border-color: var(--border-hover); color: var(--text); opacity: 1; }
.pagination-btn.active {
  background: var(--gradient); border-color: transparent; color: #fff;
}

/* ===== EMPTY STATE ===== */
.empty-state {
  text-align: center; padding: 80px 24px;
}
.empty-state p { color: var(--text-muted); font-size: 1.1rem; }

/* ===== PROFILE PAGES ===== */
.hero--profile { min-height: auto; padding: 140px 24px 60px; }
.breadcrumb {
  display: inline-block; color: var(--text-muted); font-size: 0.9rem;
  margin-bottom: 32px; font-weight: 500; transition: color 0.3s;
}
.breadcrumb:hover { color: var(--accent); opacity: 1; }
.profile-hero-inner {
  display: flex; align-items: center; gap: 36px; text-align: left;
}
.profile-hero-inner h1 { font-size: 2.4rem; margin-bottom: 12px; }
.profile-logo-large {
  flex-shrink: 0; width: 120px; height: 120px; border-radius: 20px;
  background: var(--glass); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.profile-logo-large img { max-width: 90px; max-height: 90px; object-fit: contain; }
.profile-initial-large {
  width: 120px; height: 120px; border-radius: 20px;
  background: var(--gradient); display: flex; align-items: center; justify-content: center;
  font-size: 3rem; font-weight: 800; color: #fff;
}
.profile-hero-info { flex: 1; }
.category-tag--large { font-size: 0.85rem; padding: 6px 18px; }
.profile-meta { display: flex; align-items: center; gap: 16px; margin-top: 16px; flex-wrap: wrap; }
.profile-website {
  color: var(--accent); font-weight: 600; font-size: 0.95rem;
}

/* Profile layout */
.profile-layout {
  display: grid; grid-template-columns: 1fr 340px; gap: 48px; margin-top: 16px;
}
.profile-layout--speaker { grid-template-columns: 1fr; max-width: 800px; }
.profile-section { margin-bottom: 48px; }
.profile-section h2 {
  font-size: 1.4rem; font-weight: 700; margin-bottom: 20px;
  padding-bottom: 12px; border-bottom: 1px solid var(--border);
}
.profile-text p {
  color: var(--text-muted); font-size: 1.05rem; line-height: 1.8; margin-bottom: 16px;
}
.profile-features { display: flex; flex-direction: column; gap: 10px; }
.feature-item {
  color: var(--text-muted); font-size: 1rem; padding: 8px 0;
  border-bottom: 1px solid rgba(93, 77, 255, 0.08);
}
.feature-item:last-child { border-bottom: none; }

/* Video embed */
.video-embed {
  position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;
  border-radius: var(--radius); border: 1px solid var(--border);
}
.video-embed iframe {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
}

/* Sidebar cards */
.sidebar-card {
  background: var(--glass); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; margin-bottom: 20px; backdrop-filter: blur(12px);
}
.sidebar-card h3 {
  font-size: 1rem; font-weight: 700; margin-bottom: 16px;
  text-transform: uppercase; letter-spacing: 1px; font-size: 0.85rem;
  color: var(--text-muted);
}
.sidebar-details { display: grid; gap: 12px; }
.sidebar-details dt { font-size: 0.8rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.sidebar-details dd { font-size: 0.95rem; color: var(--text); margin-bottom: 4px; }
.sidebar-links { display: flex; flex-direction: column; gap: 10px; }
.sidebar-links a {
  color: var(--text); font-size: 0.95rem; font-weight: 500;
  padding: 8px 0; border-bottom: 1px solid var(--border); transition: color 0.3s;
}
.sidebar-links a:last-child { border-bottom: none; }
.sidebar-links a:hover { color: var(--accent); opacity: 1; }

/* ===== SPEAKER CARDS ===== */
.speaker-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px;
}
.speaker-card {
  background: var(--glass); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: all 0.3s; text-decoration: none; color: var(--text);
  backdrop-filter: blur(12px);
}
.speaker-card:hover {
  transform: translateY(-4px); border-color: var(--border-hover);
  box-shadow: 0 8px 40px rgba(93, 77, 255, 0.1); opacity: 1;
}
.speaker-card-photo {
  height: 200px; display: flex; align-items: center; justify-content: center;
  background: rgba(10, 10, 18, 0.5); overflow: hidden;
}
.speaker-card-photo img { width: 100%; height: 100%; object-fit: cover; }
.speaker-card-initials {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--gradient); display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 800; color: #fff;
}
.speaker-card-body { padding: 24px; }
.speaker-card-body h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; }
.speaker-card-title { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 2px; }
.speaker-card-company { color: var(--accent); font-size: 0.85rem; font-weight: 600; margin-bottom: 12px; }
.speaker-card-talk {
  color: var(--text-muted); font-size: 0.88rem; font-style: italic;
  margin-bottom: 12px; line-height: 1.5;
}

/* Stage badges */
.stage-badge {
  display: inline-block; padding: 4px 12px; border-radius: 50px;
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
}
.stage-badge--main { background: rgba(93, 77, 255, 0.15); color: #7B6FFF; }
.stage-badge--dev { background: rgba(0, 200, 150, 0.15); color: #00C896; }
.stage-badge--industry { background: rgba(255, 170, 50, 0.15); color: #FFAA32; }
.stage-badge--large { padding: 6px 16px; font-size: 0.82rem; }

/* ===== SPEAKER PROFILE ===== */
.speaker-photo-large {
  flex-shrink: 0; width: 140px; height: 140px; border-radius: 50%;
  background: var(--glass); border: 2px solid var(--border);
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.speaker-photo-large img { width: 100%; height: 100%; object-fit: cover; }
.speaker-initial-large {
  width: 140px; height: 140px; border-radius: 50%;
  background: var(--gradient); display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; font-weight: 800; color: #fff;
}
.speaker-profile-title { font-size: 1.15rem; color: var(--text-muted); margin-bottom: 12px; }
.speaker-profile-title strong { color: var(--text); }
.speaker-social-links { display: flex; gap: 12px; }
.speaker-social-links a {
  font-size: 1.3rem; transition: transform 0.2s; text-decoration: none;
}
.speaker-social-links a:hover { transform: scale(1.15); opacity: 1; }

/* Talk card */
.talk-card {
  background: var(--glass); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px; backdrop-filter: blur(12px);
}
.talk-title {
  font-size: 1.3rem; font-weight: 700; margin-bottom: 16px;
  background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.talk-meta { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; margin-bottom: 20px; }
.talk-meta span { color: var(--text-muted); font-size: 0.9rem; }
.talk-abstract p { color: var(--text-muted); font-size: 1rem; line-height: 1.8; margin-bottom: 12px; }

/* ===== SPONSOR STRIP (Homepage) ===== */
.sponsor-strip {
  background: var(--bg2); padding: 48px 24px; text-align: center;
  border-top: 1px solid var(--border);
}
.sponsor-strip h3 {
  font-size: 0.85rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; color: var(--text-muted); margin-bottom: 32px;
}
.sponsor-logos {
  display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap;
}
.sponsor-logo-item {
  opacity: 0.6; transition: opacity 0.3s;
}
.sponsor-logo-item:hover { opacity: 1; }
.sponsor-logo-item img { max-height: 40px; max-width: 140px; object-fit: contain; filter: brightness(0.8) contrast(1.1); }
.sponsor-logo-item .sponsor-text-logo {
  font-size: 1rem; font-weight: 700; color: var(--text-muted);
}

/* ===== SPONSOR TIERS (Partners page) ===== */
.sponsor-tier { margin-bottom: 60px; }
.sponsor-tier-title {
  font-size: 1.1rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; margin-bottom: 24px; text-align: center;
}
.sponsor-tier-title--platinum { color: #E5E4E2; }
.sponsor-tier-title--gold { color: #FFD700; }
.sponsor-tier-title--silver { color: #C0C0C0; }
.sponsor-tier-title--bronze { color: #CD7F32; }
.sponsor-tier-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px;
}
.sponsor-tier-card {
  background: var(--glass); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px; text-align: center; backdrop-filter: blur(12px); transition: all 0.3s;
}
.sponsor-tier-card:hover { border-color: var(--border-hover); transform: translateY(-2px); }
.sponsor-tier-card img { max-height: 50px; max-width: 160px; object-fit: contain; margin-bottom: 16px; }
.sponsor-tier-card h4 { font-size: 1rem; margin-bottom: 8px; }
.sponsor-tier-card p { color: var(--text-muted); font-size: 0.9rem; }

/* ===== ADMIN ENHANCEMENTS ===== */
.admin-section-header {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px;
}
.admin-section-header h3 { margin: 0; }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.admin-form-section {
  font-size: 1rem; font-weight: 700; margin-top: 32px; margin-bottom: 16px;
  padding-top: 24px; border-top: 1px solid var(--border);
  color: var(--text); letter-spacing: 0.02em;
}
.admin-form-section:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }
.badge-published { background: rgba(0, 200, 100, 0.15); color: #00C864; padding: 3px 10px; border-radius: 50px; font-size: 0.78rem; font-weight: 600; }
.badge-draft { background: rgba(255, 170, 50, 0.15); color: #FFAA32; padding: 3px 10px; border-radius: 50px; font-size: 0.78rem; font-weight: 600; }
.badge-tier { padding: 3px 10px; border-radius: 50px; font-size: 0.78rem; font-weight: 600; }
.badge-tier--platinum { background: rgba(229, 228, 226, 0.15); color: #E5E4E2; }
.badge-tier--gold { background: rgba(255, 215, 0, 0.15); color: #FFD700; }
.badge-tier--silver { background: rgba(192, 192, 192, 0.15); color: #C0C0C0; }
.badge-tier--bronze { background: rgba(205, 127, 50, 0.15); color: #CD7F32; }

/* File input styling */
input[type="file"] {
  padding: 10px; background: var(--bg); border: 1px solid var(--border);
  border-radius: 10px; color: var(--text-muted); font-size: 0.9rem; width: 100%;
  font-family: 'Manrope', sans-serif;
}
input[type="file"]::file-selector-button {
  background: var(--bg3); border: 1px solid var(--border); color: var(--text);
  padding: 6px 14px; border-radius: 6px; cursor: pointer; margin-right: 12px;
  font-family: 'Manrope', sans-serif; font-weight: 600; font-size: 0.85rem;
}

/* ===== DIRECTORY RESPONSIVE ===== */
@media (max-width: 768px) {
  .directory-grid { grid-template-columns: 1fr; }
  .speaker-grid { grid-template-columns: 1fr; }
  .profile-hero-inner { flex-direction: column; text-align: center; gap: 20px; }
  .profile-hero-inner h1 { font-size: 1.8rem; }
  .profile-layout { grid-template-columns: 1fr; gap: 24px; }
  .profile-meta { justify-content: center; }
  .sponsor-logos { gap: 24px; }
  .sponsor-tier-grid { grid-template-columns: 1fr; }
  .talk-meta { flex-direction: column; gap: 8px; }
}
