:root {
  --ink: #f6f7fb;
  --paper: #fefefe;
  --muted: #cfd6e4;
  --accent: #f36b2d;
  --accent-dark: #d24a1b;
  --logo-glow: #f5b65c;
  --surface: #0b0d11;
  --surface-alt: #151923;
  --glow: 0 20px 60px rgba(243, 107, 45, 0.25);
  --radius: 18px;
  font-family: 'Space Grotesk', 'Inter', system-ui, -apple-system, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; }
body {
  margin: 0;
  background: radial-gradient(circle at top, rgba(243, 107, 45, 0.25), transparent 45%), #05070c;
  color: var(--ink);
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
.page-wrapper { max-width: 1200px; margin: 0 auto; padding: 0 1.75rem 4rem; }
.site-header {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "brand toggle"
    "panel panel";
  align-items: start;
  row-gap: 1rem;
  padding: 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 100;
}
.brand-block { grid-area: brand; display: flex; gap: 1rem; align-items: flex-start; }
.menu-toggle {
  grid-area: toggle;
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.04);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.site-header.is-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header.is-open .menu-toggle span:nth-child(2) { opacity: 0; }
.site-header.is-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.header-panel {
  grid-area: panel;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
}
.logo-mark {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.3);
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
  background: #fff;
}
.badge { display: inline-flex; align-items: center; justify-content: center; font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; padding: 0.35rem 0.8rem; border-radius: 999px; border: 1px solid rgba(255,255,255,0.3); }
.brand-label { margin: 0; font-weight: 600; }
.brand-subtitle { margin: 0; font-size: 0.85rem; color: var(--muted); }
.primary-nav { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.primary-nav a { padding: 0.1rem 0 0.25rem; border-bottom: 2px solid transparent; font-weight: 500; font-size: 0.92rem; }
.primary-nav a:hover { border-color: var(--accent); }
.header-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}
.language-control {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.language-control select {
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 0.9rem;
}
.language-control select:focus {
  outline: 2px solid rgba(243, 107, 45, 0.6);
  outline-offset: 2px;
}
.language-control option {
  color: #111;
}
.google-translate-anchor {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Hide Google Translate injected top banner so only the custom selector is shown */
iframe.goog-te-banner-frame,
.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
}
html.translated-ltr body,
html.translated-rtl body,
body {
  top: 0 !important;
}
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 0.85rem 1.4rem; border-radius: 999px; font-weight: 600; font-size: 0.95rem; border: 1px solid transparent; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.btn.primary { background: var(--accent); color: #fff; box-shadow: var(--glow); }
.btn.primary:hover { transform: translateY(-2px); }
.btn.ghost { border-color: rgba(255, 255, 255, 0.25); color: #fff; transition: all 0.2s ease; }
.btn.ghost:hover { border-color: var(--accent); background: rgba(243, 107, 45, 0.1); }
.hero {
  margin: 3.5rem 0 2rem;
  border-radius: var(--radius);
  padding: 2.5rem;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  box-shadow: var(--glow);
  position: relative;
  background: rgba(5, 7, 12, 0.8);
  animation: floatHero 12s ease-in-out infinite alternate;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35) saturate(1.1);
  pointer-events: none;
}
.hero-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.45), rgba(5,7,12,0.95));
  pointer-events: none;
}
.hero-content,
.hero-card { position: relative; z-index: 1; }
.hero-content { color: #fff; }
.hero h1 { font-size: clamp(2.4rem, 3vw, 3.4rem); margin: 0; color: #fff; }
.hero p { color: #d5d6dc; }
.hero .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-card { background: rgba(255,255,255,0.03); padding: 1.5rem; border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.08); animation: pulseGlow 8s ease-in-out infinite alternate; }
.hero-card h3 { margin: 0 0 1rem; color: #fff; }
.hero-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.15);
  padding: 1rem;
  margin-bottom: 1.25rem;
  background: radial-gradient(circle, rgba(255,255,255,0.06), rgba(5,7,12,0.95));
}
.hero-visual img {
  display: block;
  width: 100%;
  height: 160px;
  object-fit: contain;
  filter: saturate(1.1) contrast(1.05);
  mix-blend-mode: screen;
}
.hero-visual p {
  margin: 0.85rem 0 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  text-shadow: 0 1px 5px rgba(0,0,0,0.5);
}
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.stat { display: flex; flex-direction: column; gap: 0.25rem; }
.stat span:first-child { font-size: 1.8rem; font-weight: 700; color: #fff; }
.eyebrow { text-transform: uppercase; letter-spacing: 0.25em; font-size: 0.7rem; color: var(--muted); margin: 0 0 0.5rem; }
.section-heading { margin-top: 4rem; }
.section-heading h2 { margin-bottom: 0.5rem; font-size: 2rem; }
.section-heading p { margin: 0; color: var(--muted); }
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; margin-top: 1.5rem; }
.event-card { padding: 1.6rem; background: rgba(255,255,255,0.03); border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.04); min-height: 230px; display: flex; flex-direction: column; gap: 0.5rem; }
.event-card h3 { margin: 0; color: #fff; }
.event-card p { margin: 0; color: #c7c8ce; }
.event-card time { font-weight: 600; color: var(--accent); }
.event-card .venue { font-size: 0.9rem; color: rgba(255,255,255,0.7); }
.mission-grid { margin-top: 4rem; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.mission-card { border-radius: var(--radius); padding: 1.5rem; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); min-height: 200px; }
.mission-card h3 { margin-top: 0; color: #fff; }
.registration-panel { margin: 3rem 0; padding: 2rem; border-radius: var(--radius); background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.08); }
.registration-panel h3 { margin-top: 0; font-size: 1.75rem; }
.registration-form { margin-top: 1.25rem; display: grid; gap: 1rem; }
.form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; }
.field-group label { display: block; font-size: 0.85rem; color: var(--muted); margin-bottom: 0.35rem; text-transform: uppercase; letter-spacing: 0.2em; }
.field-group input,
.field-group textarea { width: 100%; padding: 0.75rem 0.9rem; border-radius: 12px; border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.02); color: #fff; font-size: 1rem; }
.field-group textarea { resize: vertical; min-height: 120px; }
.form-status { padding: 0.85rem 1rem; border-radius: 12px; border: 1px solid transparent; font-weight: 600; }
.form-status.success { background: rgba(76, 175, 80, 0.15); border-color: rgba(76, 175, 80, 0.35); color: #d7f7d1; }
.form-status.error { background: rgba(244, 67, 54, 0.15); border-color: rgba(244, 67, 54, 0.4); color: #ffcdd2; }
.supporting-text { margin-top: 0.5rem; font-size: 0.85rem; color: var(--muted); }
.timeline { margin-top: 3rem; background: var(--surface); border-radius: var(--radius); padding: 2rem; border: 1px solid rgba(255,255,255,0.05); }
.timeline-nav { display: flex; gap: 0.65rem; margin-bottom: 1rem; flex-wrap: wrap; }
.timeline-nav button { border: 1px solid rgba(255,255,255,0.15); background: transparent; color: #fff; padding: 0.5rem 0.9rem; border-radius: 999px; cursor: pointer; transition: background 0.2s ease, border 0.2s ease; }
.timeline-nav button.is-active { background: rgba(243, 107, 45, 0.2); border-color: rgba(243,107,45,0.7); }
.timeline-card { background: rgba(255,255,255,0.02); border-radius: var(--radius); padding: 1.5rem; }
.timeline-card h3 { margin-top: 0; color: #fff; }
.timeline-card p { color: #dcdfe6; }
.timeline-card ul { padding-left: 1.25rem; margin: 0; color: #c7c8ce; }
.blog-grid { margin-top: 2rem; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.2rem; }
.blog-card { background: rgba(255,255,255,0.02); border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.05); padding: 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; }
.blog-card small { color: var(--muted); text-transform: uppercase; letter-spacing: 0.2em; }
.blog-card h3 { margin: 0; color: #fff; }
.blog-card p { margin: 0; color: #c7c8ce; }
.gallery-controls { display: flex; gap: 0.75rem; margin: 1.5rem 0 2rem; flex-wrap: wrap; justify-content: center; }
.gallery-filter { padding: 0.6rem 1rem; border-radius: 999px; border: 1px solid rgba(255,255,255,0.2); background: transparent; color: #fff; cursor: pointer; font-weight: 500; transition: all 0.3s ease; }
.gallery-filter:hover { border-color: var(--accent); color: var(--accent); background: rgba(243, 107, 45, 0.1); }
.gallery-filter.active { background: var(--accent); border-color: var(--accent); color: #fff; }
.gallery-grid { margin-top: 2rem; display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; }

.gallery-item { 
  position: relative; 
  background: rgba(255,255,255,0.02); 
  border-radius: var(--radius); 
  border: 1px solid rgba(255,255,255,0.05); 
  overflow: hidden; 
  display: flex; 
  flex-direction: column; 
  cursor: pointer; 
  transition: all 0.3s ease;
  height: 280px;
}

.gallery-item:hover { 
  border-color: var(--accent); 
  transform: translateY(-4px); 
  box-shadow: 0 15px 40px rgba(243,107,45,0.2); 
}

.gallery-media-wrapper { 
  position: relative; 
  width: 100%; 
  height: 180px; 
  overflow: hidden; 
  background: rgba(0,0,0,0.2); 
  flex-shrink: 0;
}

.gallery-media-wrapper > * { 
  position: absolute; 
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%; 
}

.gallery-media { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  display: block; 
  transition: transform 0.4s ease; 
}

.gallery-item:hover .gallery-media { 
  transform: scale(1.05); 
}

.gallery-overlay { 
  position: absolute; 
  inset: 0; 
  background: linear-gradient(135deg, rgba(243,107,45,0.3), rgba(0,0,0,0.4)); 
  opacity: 0; 
  transition: opacity 0.3s ease; 
}

.gallery-item:hover .gallery-overlay { 
  opacity: 1; 
}

.gallery-play-button { 
  position: absolute; 
  inset: 50%; 
  transform: translate(-50%, -50%); 
  width: 56px; 
  height: 56px; 
  border-radius: 50%; 
  background: rgba(243,107,45,0.9); 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  opacity: 0; 
  transition: all 0.3s ease; 
  z-index: 10;
}

.gallery-play-button::after { 
  content: '▶'; 
  color: #fff; 
  font-size: 1.4rem; 
  margin-left: 3px; 
}

.gallery-item:hover .gallery-play-button { 
  opacity: 1; 
}

.audio-wrapper { 
  position: relative;
  width: 100%; 
  height: 180px;
  background: linear-gradient(135deg, rgba(243,107,45,0.2), rgba(243,107,45,0.05)); 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  overflow: hidden;
}

.audio-player { 
  display: flex; 
  align-items: center; 
  gap: 0.75rem; 
  width: 100%; 
  padding: 0.75rem;
  flex-shrink: 1;
}

.audio-icon { 
  font-size: 2.5rem; 
  color: var(--accent); 
  flex-shrink: 0; 
}

.audio-player audio { 
  flex-grow: 1; 
  accent-color: var(--accent);
  max-height: 36px;
}

.gallery-content { 
  padding: 0.75rem; 
  background: rgba(5, 7, 12, 0.9);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.gallery-content h3 { 
  margin: 0 0 0.3rem; 
  color: #fff; 
  font-size: 0.95rem;
  line-height: 1.3;
}

.gallery-content p { 
  margin: 0; 
  color: rgba(255, 255, 255, 0.8); 
  font-size: 0.8rem; 
  line-height: 1.3;
  flex-grow: 1;
}
.gallery-lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 1000; display: none; align-items: center; justify-content: center; backdrop-filter: blur(4px); opacity: 0; transition: opacity 0.3s ease; }
.gallery-lightbox.active { display: flex; opacity: 1; }

/* Gallery Pagination */
.gallery-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
}

.pagination-prev, .pagination-next {
  padding: 0.7rem 1.2rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.pagination-prev:hover, .pagination-next:hover {
  border-color: var(--accent);
  background: rgba(243, 107, 45, 0.1);
  color: var(--accent);
}

.pagination-prev:disabled, .pagination-next:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  border-color: rgba(255, 255, 255, 0.1);
}

.pagination-prev:disabled:hover, .pagination-next:disabled:hover {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.pagination-info {
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 500;
  min-width: 80px;
  text-align: center;
}

#pagination-current {
  color: var(--accent);
  font-weight: 600;
}
.lightbox-content { position: relative; width: 90%; max-width: 650px; height: 70vh; display: flex; flex-direction: column; gap: 1rem; }
.lightbox-close { position: absolute; top: -40px; right: 0; background: none; border: none; color: #fff; font-size: 2rem; cursor: pointer; z-index: 1001; transition: text-shadow 0.2s ease; }
.lightbox-close:hover { text-shadow: 0 0 10px rgba(255,255,255,0.3); }
.lightbox-media-container { flex-grow: 1; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,0.4); border-radius: 12px; overflow: hidden; }
.lightbox-media-container img, .lightbox-media-container video { max-width: 100%; max-height: 100%; object-fit: contain; }
.lightbox-prev, .lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(243,107,45,0.7); border: none; color: #fff; width: 44px; height: 44px; border-radius: 50%; cursor: pointer; font-size: 1.2rem; display: flex; align-items: center; justify-content: center; transition: all 0.2s ease; z-index: 1001; }
.lightbox-prev:hover, .lightbox-next:hover { background: var(--accent); }
.lightbox-prev { left: -60px; }
.lightbox-next { right: -60px; }
.lightbox-info { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 1rem; backdrop-filter: blur(10px); }
.lightbox-info h3 { margin: 0 0 0.35rem; color: #fff; font-size: 1.1rem; }
.lightbox-info p { margin: 0; color: #c7c8ce; font-size: 0.9rem; }
@media (max-width: 768px) {
  .lightbox-prev, .lightbox-next { width: 36px; height: 36px; font-size: 1rem; left: -48px; right: -48px; }
  .lightbox-content { height: 75vh; }
}
.cta { margin: 3rem 0; padding: 2rem; border-radius: var(--radius); background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0)); border: 1px solid rgba(255,255,255,0.15); display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; }
.cta a { min-width: 200px; }
.site-footer { margin-top: 4rem; padding: 2.5rem 2rem; background: #090b0f; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-columns { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.footer-columns ul { padding-left: 1rem; margin: 0; color: #c7c8ce; }
.site-footer p { margin: 0.5rem 0; }
.muted { color: var(--muted); }
.animatable { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.animatable.visible { opacity: 1; transform: translateY(0); }
.timeline-card.animatable { opacity: 0; transform: translateY(15px); }
.timeline-card.animatable.visible { opacity: 1; transform: translateY(0); }
.hero-card.animatable { opacity: 0; transform: translateY(15px); }
.hero-card.animatable.visible { opacity: 1; transform: translateY(0); }

/* Professional responsive breakpoints */
@media (max-width: 1200px) {
  .page-wrapper {
    max-width: 1080px;
    padding: 0 1.25rem 3.25rem;
  }
  .hero h1 {
    font-size: clamp(2rem, 3vw, 2.8rem);
  }
}

@media (max-width: 992px) {
  .site-header {
    padding: 1.2rem 1.25rem;
    position: static;
  }
  .header-panel { grid-template-columns: 1fr; }
  .page-wrapper {
    padding: 0 1.1rem 3rem;
  }
  .primary-nav { justify-content: center; }
  .header-actions { justify-content: center; }
  .brand-block { justify-content: center; text-align: center; }
  .brand-subtitle { display: none; }
  .hero {
    margin: 2.25rem 0 1.5rem;
    padding: 1.6rem;
  }
  .section-heading {
    margin-top: 2.75rem;
  }
  .card-grid,
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .site-header {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand toggle"
      "panel panel";
    padding: 1rem;
    row-gap: 0.75rem;
    align-items: center;
  }
  .menu-toggle { display: inline-flex; }
  .header-panel {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.9rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 0.85rem;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-6px);
    pointer-events: none;
    transition: max-height 0.28s ease, opacity 0.22s ease, transform 0.22s ease;
  }
  .site-header.is-open .header-panel {
    max-height: 560px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .page-wrapper {
    padding: 0 0.95rem 2.4rem;
  }
  .primary-nav {
    justify-content: flex-start;
    align-items: stretch;
    flex-direction: column;
    gap: 0.2rem;
  }
  .primary-nav a {
    font-size: 0.92rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 0.65rem 0.2rem;
  }
  .header-actions {
    justify-content: flex-start;
  }
  .hero h1 {
    font-size: clamp(1.65rem, 6vw, 2.2rem);
  }
  .stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .card-grid,
  .blog-grid,
  .mission-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .site-header {
    padding: 0.85rem 0.8rem;
  }
  .brand-label {
    font-size: 0.92rem;
  }
  .badge {
    font-size: 0.65rem;
    letter-spacing: 0.14em;
  }
  .page-wrapper {
    padding: 0 0.75rem 2rem;
  }
  .header-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .language-control {
    justify-content: space-between;
    width: 100%;
  }
  .language-control select,
  .header-actions .btn {
    width: 100%;
  }
  .hero {
    border-radius: 14px;
    padding: 1.2rem;
  }
  .section-heading h2 {
    font-size: 1.55rem;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .lightbox-content {
    width: 94%;
  }
}

@media (max-width: 400px) {
  .site-header {
    padding: 0.7rem;
  }
  .language-control {
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
  }
  .menu-toggle {
    width: 38px;
    height: 38px;
  }
  .hero h1 {
    font-size: 1.45rem;
  }
  .timeline-nav button {
    width: 100%;
  }
  .btn {
    padding: 0.72rem 1rem;
    font-size: 0.88rem;
  }
}
@keyframes pulseGlow {
  0% { box-shadow: 0 10px 40px rgba(243, 107, 45, 0.2); }
  50% { box-shadow: 0 25px 60px rgba(243, 107, 45, 0.32); }
  100% { box-shadow: 0 12px 32px rgba(243, 107, 45, 0.18); }
}
@keyframes floatHero {
  0% { transform: translateY(0); }
  100% { transform: translateY(-12px); }
}
