/* Agenda Radical — Institutional Site Styles */

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Archivo', sans-serif;
  color: #212529;
  background: #F5F6F7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* ── NAV ───────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 0 max(24px, calc((100vw - 1200px) / 2));
  height: 72px;
  background: rgba(7,7,10,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s;
}
.nav-logo { flex-shrink: 0; }
.site-nav.scrolled { background: rgba(7,7,10,0.97); }

.nav-logo img { height: 28px; }

.nav-links {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(244,244,240,0.7);
  transition: color 0.2s;
  letter-spacing: 0.01em;
}
.nav-links a:hover,
.nav-links a.active { color: #F4F4F0; }
.nav-links a.active { font-weight: 700; }

.nav-cta {
  display: flex;
  gap: 12px;
  align-items: center;
}
.btn-nav-outline {
  border: 1.5px solid rgba(255,255,255,0.25);
  color: #F4F4F0;
  border-radius: 999px;
  padding: 0 20px;
  height: 40px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  background: transparent;
  transition: border-color 0.2s, color 0.2s;
  font-family: 'Archivo', sans-serif;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  white-space: nowrap;
}
.btn-nav-outline:hover { border-color: #FE4805; color: #FE4805; }
.btn-nav-primary {
  background: #FE4805;
  color: #fff;
  border-radius: 999px;
  padding: 0 20px;
  height: 40px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  font-family: 'Archivo', sans-serif;
  transition: opacity 0.2s;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  white-space: nowrap;
}
.btn-nav-primary:hover { opacity: 0.88; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-hamburger span {
  width: 24px; height: 2px;
  background: #F4F4F0;
  border-radius: 2px;
  transition: all 0.3s;
  display: block;
}

/* ── HERO ───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #07070A;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: #07070A;
  overflow: hidden;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(254,72,5,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(254,72,5,0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 90% 90% at 65% 50%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 90% at 65% 50%, black 20%, transparent 100%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 60%, rgba(254,72,5,0.16) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 90% 85%, rgba(254,72,5,0.08) 0%, transparent 55%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(7,7,10,1) 0%,
    rgba(7,7,10,0.85) 40%,
    rgba(7,7,10,0.15) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 120px 48px 80px;
  margin: 0 auto;
  text-align: center;
}
.hero-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #FE4805;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
.hero-eyebrow::before {
  content: '';
  width: 32px; height: 2px;
  background: #FE4805;
  display: block;
}
.hero-eyebrow::after {
  content: '';
  width: 32px; height: 2px;
  background: #FE4805;
  display: block;
}
.hero-title {
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  color: #F4F4F0;
  margin-bottom: 24px;
  text-wrap: balance;
}
.hero-title em {
  font-style: normal;
  color: #FE4805;
}
.hero-sub {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(244,244,240,0.75);
  margin: 0 auto 40px;
  max-width: 540px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.btn-hero-primary {
  background: #FE4805;
  color: #fff;
  font-family: 'Archivo', sans-serif;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 999px;
  padding: 0 32px;
  height: 56px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: opacity 0.2s, transform 0.2s;
}
.btn-hero-primary:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-hero-outline {
  background: transparent;
  color: #F4F4F0;
  font-family: 'Archivo', sans-serif;
  font-size: 16px;
  font-weight: 600;
  border: 1.5px solid rgba(244,244,240,0.35);
  border-radius: 999px;
  padding: 0 32px;
  height: 56px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: border-color 0.2s;
}
.btn-hero-outline:hover { border-color: rgba(244,244,240,0.7); }

.hero-scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(244,244,240,0.4);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
  z-index: 2;
}
.hero-scroll-indicator .material-symbols-rounded { font-size: 18px; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── STATS BAR ──────────────────────────────────────── */
.stats-bar {
  background: #141418;
  padding: 0 48px;
  border-bottom: 1px solid #26262E;
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide-x: #26262E;
}
.stat-item {
  padding: 36px 32px;
  border-right: 1px solid #26262E;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-size: 36px;
  font-weight: 900;
  color: #F4F4F0;
  line-height: 1;
}
.stat-number span { color: #FE4805; }
.stat-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #8A8A93;
}

/* ── SECTION COMMONS ─────────────────────────────────── */
.section {
  padding: 96px 48px;
}
.section-dark {
  background: #07070A;
  color: #F4F4F0;
}
.section-mid {
  background: #141418;
  color: #F4F4F0;
}
.section-light { background: #F5F6F7; }

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 64px;
}
.section-header.centered { text-align: center; }
.section-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #FE4805;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-eyebrow.centered { justify-content: center; }
.section-eyebrow::before {
  content: '';
  width: 24px; height: 2px;
  background: #FE4805;
}
.section-eyebrow.centered::before { display: none; }
.section-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  line-height: 1.1;
  color: inherit;
  text-wrap: balance;
}
.section-title em { font-style: normal; color: #FE4805; }
.section-subtitle {
  margin-top: 16px;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(244,244,240,0.65);
  max-width: 560px;
}
.section-subtitle.dark { color: #495057; }
.section-subtitle.centered { margin: 16px auto 0; text-align: center; }

/* ── HOW IT WORKS ────────────────────────────────────── */
.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.how-column-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8A8A93;
  margin-bottom: 36px;
  padding-bottom: 16px;
  border-bottom: 1px solid #26262E;
}
.how-steps { display: flex; flex-direction: column; gap: 0; }
.how-step {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid #26262E;
  position: relative;
}
.how-step:last-child { border-bottom: none; }
.step-number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  color: #FE4805;
  letter-spacing: 1.5px;
  min-width: 28px;
  padding-top: 3px;
}
.step-body h4 {
  font-size: 17px;
  font-weight: 700;
  color: #F4F4F0;
  margin-bottom: 6px;
}
.step-body p {
  font-size: 14px;
  line-height: 1.6;
  color: #8A8A93;
}

/* ── EVENT CARDS ─────────────────────────────────────── */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.event-card {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}
.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.12);
}
.event-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: top;
  border-radius: 20px 20px 0 0;
  background: #E0E0E0;
}
.event-card-img-placeholder {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, #212529, #495057);
  border-radius: 20px 20px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.2);
  font-size: 48px;
}
.event-card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.event-card-modality {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #FE4805;
  margin-bottom: 8px;
}
.event-card-name {
  font-size: 16px;
  font-weight: 700;
  color: #212529;
  line-height: 1.3;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.event-card-meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 16px;
}
.event-card-meta-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #495057;
}
.event-card-meta-row .material-symbols-rounded { font-size: 16px; color: #9A9B9D; }
.event-card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.event-status-badge {
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  background: #E7FBF6;
  color: #008857;
}
.event-status-badge.closed { background: #FFE6EB; color: #FF0038; }
.event-status-badge.soon { background: #FFF9E6; color: #6B5300; }
.event-card-arrow {
  width: 36px; height: 36px;
  background: #212529;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  transition: background 0.2s;
  flex-shrink: 0;
}
.event-card:hover .event-card-arrow { background: #FE4805; }

.events-loading {
  grid-column: 1/-1;
  text-align: center;
  padding: 48px;
  color: #8A8A93;
  font-size: 15px;
}
.events-error {
  grid-column: 1/-1;
  text-align: center;
  padding: 48px;
  color: #8A8A93;
}
.events-cta {
  margin-top: 48px;
  text-align: center;
}
.btn-all-events {
  background: #212529;
  color: #fff;
  font-family: 'Archivo', sans-serif;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 999px;
  padding: 0 36px;
  height: 52px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
}
.btn-all-events:hover { background: #FE4805; transform: translateY(-1px); }

/* ── FEATURES ────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: #26262E;
  border-radius: 28px;
  overflow: hidden;
}
.feature-card {
  background: #141418;
  padding: 40px 36px;
  transition: background 0.2s;
}
.feature-card:hover { background: #1a1a20; }
.feature-icon {
  width: 52px; height: 52px;
  background: rgba(254,72,5,0.12);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FE4805;
  font-size: 26px;
  margin-bottom: 20px;
}
.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #F4F4F0;
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 14px;
  line-height: 1.65;
  color: #8A8A93;
}

/* ── PRICING ─────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.pricing-card {
  background: #fff;
  border-radius: 28px;
  padding: 36px 32px;
  border: 2px solid transparent;
  transition: border-color 0.2s, transform 0.2s;
  position: relative;
}
.pricing-card:hover { transform: translateY(-3px); }
.pricing-card.featured {
  background: #212529;
  color: #F4F4F0;
  border-color: #FE4805;
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #FE4805;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 99px;
  font-family: 'JetBrains Mono', monospace;
  white-space: nowrap;
}
.pricing-name {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #9A9B9D;
  margin-bottom: 12px;
}
.pricing-card.featured .pricing-name { color: #8A8A93; }
.pricing-price {
  font-size: 44px;
  font-weight: 900;
  color: #212529;
  line-height: 1;
  margin-bottom: 6px;
}
.pricing-card.featured .pricing-price { color: #F4F4F0; }
.pricing-price sup { font-size: 22px; font-weight: 700; vertical-align: top; margin-top: 8px; display: inline-block; }
.pricing-price sub { font-size: 15px; font-weight: 500; color: #9A9B9D; }
.pricing-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #495057;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid #E0E0E0;
}
.pricing-card.featured .pricing-desc { color: #8A8A93; border-color: #26262E; }
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #212529;
}
.pricing-card.featured .pricing-features li { color: #F4F4F0; }
.pricing-features li .material-symbols-rounded {
  font-size: 18px;
  color: #008857;
  flex-shrink: 0;
  margin-top: 1px;
}
.pricing-card.featured .pricing-features li .material-symbols-rounded { color: #FE4805; }
.btn-pricing {
  width: 100%;
  height: 52px;
  border-radius: 999px;
  font-family: 'Archivo', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}
.btn-pricing:hover { opacity: 0.85; transform: translateY(-1px); }
.btn-pricing-outline {
  background: transparent;
  border: 2px solid #212529;
  color: #212529;
}
.btn-pricing-solid { background: #212529; color: #fff; }
.btn-pricing-accent { background: #FE4805; color: #fff; }

/* ── DOWNLOAD CTA ─────────────────────────────────────── */
.download-section {
  background: #07070A;
  padding: 96px 48px;
  overflow: hidden;
  position: relative;
}
.download-section::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(254,72,5,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.download-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.download-content h2 {
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 900;
  color: #F4F4F0;
  line-height: 1.1;
  margin-bottom: 16px;
}
.download-content h2 em { font-style: normal; color: #FE4805; }
.download-content p {
  font-size: 16px;
  line-height: 1.65;
  color: #8A8A93;
  margin-bottom: 36px;
}
.store-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-store {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #212529;
  border: 1px solid #26262E;
  border-radius: 16px;
  padding: 12px 22px;
  color: #F4F4F0;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.btn-store:hover { border-color: #FE4805; background: #1a1a20; }
.btn-store-icon { font-size: 28px; }
.btn-store-text { display: flex; flex-direction: column; }
.btn-store-sub { font-size: 10px; color: #8A8A93; font-family: 'JetBrains Mono', monospace; letter-spacing: 0.5px; }
.btn-store-name { font-size: 16px; font-weight: 700; }
.download-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.phone-mockup {
  width: 280px;
  background: #1a1a20;
  border-radius: 44px;
  border: 2px solid #26262E;
  overflow: hidden;
  position: relative;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}
.phone-mockup img {
  width: 100%;
  border-radius: 42px;
}
.phone-mockup-screen {
  height: 520px;
  overflow: hidden;
}
.phone-mockup-placeholder {
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.1);
  font-size: 80px;
}

/* ── TESTIMONIAL/TRUST BAR ───────────────────────────── */
.trust-bar {
  background: #F5F6F7;
  padding: 48px;
  border-top: 1px solid #E0E0E0;
  border-bottom: 1px solid #E0E0E0;
}
.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #9A9B9D;
  white-space: nowrap;
}
.trust-logos {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}
.trust-logo-item {
  font-size: 14px;
  font-weight: 700;
  color: #9A9B9D;
  letter-spacing: 0.5px;
}

/* ── FOOTER ──────────────────────────────────────────── */
.site-footer {
  background: #07070A;
  padding: 72px 48px 36px;
  border-top: 1px solid #26262E;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid #26262E;
}
.footer-brand img { height: 24px; margin-bottom: 16px; }
.footer-brand p {
  font-size: 14px;
  line-height: 1.65;
  color: #8A8A93;
  max-width: 260px;
  margin-bottom: 24px;
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.social-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #141418;
  border: 1px solid #26262E;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8A8A93;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.social-btn:hover { border-color: #FE4805; color: #FE4805; }
.footer-col h5 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #F4F4F0;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: #8A8A93;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: #F4F4F0; }
.footer-bottom {
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 13px;
  color: #8A8A93;
}
.footer-bottom a { color: #8A8A93; transition: color 0.2s; }
.footer-bottom a:hover { color: #FE4805; }

/* ── EVENTS PAGE ─────────────────────────────────────── */
.page-hero {
  background: #07070A;
  padding: 140px 48px 72px;
  border-bottom: 1px solid #26262E;
}
.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.page-hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  color: #F4F4F0;
  margin-bottom: 14px;
}
.page-hero p {
  font-size: 17px;
  color: #8A8A93;
}

.events-page-section {
  padding: 64px 48px;
  background: #F5F6F7;
  min-height: 60vh;
}
.events-page-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.filters-bar {
  display: flex;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  align-items: center;
}
.filter-chip {
  height: 40px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1.5px solid #E0E0E0;
  background: #fff;
  font-family: 'Archivo', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #495057;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-chip:hover { border-color: #212529; color: #212529; }
.filter-chip.active { background: #212529; color: #fff; border-color: #212529; }

.events-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ── PRICING PAGE ─────────────────────────────────────── */
.pricing-page-hero {
  background: #07070A;
  padding: 140px 48px 72px;
}
.pricing-page-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-faq {
  padding: 96px 48px;
  background: #F5F6F7;
}
.faq-inner {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid #E0E0E0;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  font-family: 'Archivo', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #212529;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-question .material-symbols-rounded {
  font-size: 20px;
  color: #9A9B9D;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-question[aria-expanded="true"] .material-symbols-rounded { transform: rotate(180deg); }
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease, padding 0.3s;
}
.faq-answer.open { max-height: 400px; padding-bottom: 22px; }
.faq-answer p { font-size: 15px; line-height: 1.7; color: #495057; }

/* ── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .site-nav { gap: 28px; }
  .hero-content { padding: 120px 24px 80px; }
  .section { padding: 72px 24px; }
  .stats-bar { padding: 0 24px; }
  .events-grid,
  .events-full-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .how-grid { gap: 48px; }
  .download-inner { gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .download-section { padding: 72px 24px; }
  .page-hero { padding: 120px 24px 64px; }
  .events-page-section { padding: 48px 24px; }
  .pricing-faq { padding: 72px 24px; }
  .trust-bar { padding: 36px 24px; }
  .site-footer { padding: 64px 24px 32px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; margin-left: auto; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    transform: none;
    background: rgba(7,7,10,0.98);
    padding: 32px 24px;
    gap: 24px;
    border-bottom: 1px solid #26262E;
  }
  .nav-links.open + .nav-cta { display: none; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .how-grid { grid-template-columns: 1fr; gap: 40px; }
  .events-grid,
  .events-full-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .download-inner { grid-template-columns: 1fr; }
  .phone-mockup { display: none; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .trust-inner { flex-direction: column; gap: 20px; }
  .pricing-grid { max-width: 100%; }
}

/* ── ANIMATE IN ────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
