/* ============================================================
   PENSIONERS MARATHON — Main Stylesheet
   Mobile-first | NAPSA Brand Colors | Manrope
   ============================================================ */

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

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

:root {
  --napsa-blue:       #232d61;
  --napsa-blue-deep:  #1a2350;
  --napsa-blue-soft:  #2e3b78;
  --napsa-yellow:     #f9a61b;
  --napsa-yellow-lt:  #ffbe4d;
  --accent-glow:      rgba(249,166,27,0.25);
  --bg:               #ffffff;
  --text:             #111827;
  --muted:            #4b5563;
  --border:           #eef2f6;
  --section-bg:       #fafbff;
  --card-shadow:      0 12px 30px rgba(35,45,97,0.08);
}

html { scroll-behavior: smooth; }

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

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Manrope', sans-serif;
  letter-spacing: -0.02em;
}

/* ── REUSABLES ── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-badge {
  display: inline-block;
  padding: 6px 20px;
  background: rgba(35,45,97,0.05);
  border: 1px solid rgba(249,166,27,0.5);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  color: var(--napsa-blue);
  letter-spacing: 0.06em;
  margin-bottom: 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--napsa-blue);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.section-header p {
  font-size: 16px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── BUTTONS ── */
.btn-primary {
  background: linear-gradient(95deg, var(--napsa-blue) 0%, var(--napsa-blue-soft) 100%);
  color: white;
  border: none;
  padding: 10px 26px;
  border-radius: 100px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 6px 14px rgba(35,45,97,0.3);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover {
  background: var(--napsa-blue-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(35,45,97,0.25);
}

/* Nav Register button — only text colour transitions on hover */
#app > nav .btn-primary,
#reg-app > nav .btn-primary {
  transition: color 0.25s;
}
#app > nav .btn-primary:hover,
#reg-app > nav .btn-primary:hover {
  color: var(--napsa-yellow);
}

/* Register page — same blue pill; label only turns yellow */
#app > nav .btn-primary--nav-active,
#reg-app > nav .btn-primary--nav-active {
  color: var(--napsa-yellow);
}

.btn-outline-white {
  background: none;
  border: 2px solid rgba(255,255,255,0.4);
  color: white;
  padding: 12px 28px;
  border-radius: 100px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.7);
}

.btn-ghost-dark {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--napsa-blue);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s;
  text-decoration: none;
}
.btn-ghost-dark:hover { gap: 14px; color: var(--napsa-yellow); }

.btn-white {
  background: var(--napsa-yellow);
  color: var(--napsa-blue);
  border: none;
  padding: 14px 38px;
  border-radius: 100px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  text-decoration: none;
}
.btn-white:hover {
  background: var(--napsa-yellow-lt);
  transform: translateY(-3px);
  box-shadow: 0 20px 30px rgba(0,0,0,0.25);
}

/* ── NAV ── */
#app > nav,
#reg-app > nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 72px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(35,45,97,0.08);
  transition: box-shadow 0.3s;
}

#app > nav.scrolled,
#reg-app > nav.scrolled {
  box-shadow: 0 4px 24px rgba(35,45,97,0.1);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
  color: var(--napsa-blue);
  text-decoration: none;
  letter-spacing: -0.3px;
}

.logo-icon {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--napsa-blue), var(--napsa-blue-deep));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 12px rgba(35,45,97,0.2);
}
.logo-icon svg { width: 17px; height: 17px; fill: var(--napsa-yellow); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: #2c3a5e;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--napsa-yellow); }
.nav-links a.nav-link-active {
  color: var(--napsa-yellow);
  font-weight: 800;
}

.nav-actions { display: flex; align-items: center; gap: 16px; }

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--napsa-blue);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: white;
  z-index: 99;
  padding: 24px;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  flex-direction: column;
  gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--napsa-yellow); }
.mobile-menu .btn-primary { margin-top: 16px; justify-content: center; width: 100%; }
.mobile-menu .btn-primary--nav-active {
  color: var(--napsa-yellow);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 20%, rgba(249,166,27,0.08) 0%, rgba(35,45,97,0.02) 70%),
              linear-gradient(125deg, #fff9ef 0%, #fef7e8 35%, #ffffff 100%);
  z-index: 0;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
  animation: blobFloat 12s ease-in-out infinite;
}
.hero-blob-1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(249,166,27,0.5), rgba(35,45,97,0.2));
  top: -120px; left: -80px;
  animation-delay: 0s;
}
.hero-blob-2 {
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(35,45,97,0.45), rgba(249,166,27,0.25));
  top: 25%; right: -40px;
  animation-delay: -4s;
}
.hero-blob-3 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(249,166,27,0.4), rgba(35,45,97,0.2));
  bottom: -30px; left: 30%;
  animation-delay: -7s;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  33%       { transform: translate(25px,-25px) scale(1.06); }
  66%       { transform: translate(-18px,20px) scale(0.98); }
}

.dot-grid {
  position: absolute;
  width: 140px; height: 140px;
  background-image: radial-gradient(circle, rgba(35,45,97,0.2) 1.8px, transparent 1.8px);
  background-size: 14px 14px;
  opacity: 0.5;
}
.dot-grid-tl { top: 100px; left: 40px; }
.dot-grid-br { bottom: 80px; right: 50px; }

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 48px 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 56px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249,166,27,0.1);
  border: 1px solid rgba(249,166,27,0.4);
  border-radius: 100px;
  padding: 5px 14px 5px 10px;
  font-size: 12px;
  font-weight: 700;
  color: #9a6200;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeUp 0.8s cubic-bezier(0.22,1,0.36,1) both;
}
.hero-eyebrow-dot {
  width: 8px; height: 8px;
  background: var(--napsa-yellow);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.4); opacity: 0.7; }
}

.hero-text h1 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(44px, 5.5vw, 68px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--napsa-blue);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
  animation: fadeUp 0.8s 0.1s cubic-bezier(0.22,1,0.36,1) both;
}

.hero-text p {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 36px;
  font-weight: 500;
  line-height: 1.6;
  max-width: 440px;
  animation: fadeUp 0.8s 0.18s cubic-bezier(0.22,1,0.36,1) both;
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.26s cubic-bezier(0.22,1,0.36,1) both;
}
.hero-btns .btn-hero-cta {
  padding: 14px 32px;
  font-size: 15px;
}

.play-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(35,45,97,0.08);
  border: 1.5px solid rgba(35,45,97,0.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.play-icon svg { width: 14px; height: 14px; fill: var(--napsa-blue); margin-left: 2px; }

/* Hero stats row */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 44px;
  animation: fadeUp 0.8s 0.34s cubic-bezier(0.22,1,0.36,1) both;
}
.hero-stat { text-align: center; }
.hero-stat strong {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--napsa-blue);
  line-height: 1;
}
.hero-stat span {
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.hero-stat-divider {
  width: 2px; height: 40px;
  background: linear-gradient(to bottom, var(--napsa-yellow), #ffe2b3);
}

/* Hero image collage */
.hero-images {
  position: relative;
  height: 400px;
  animation: fadeUp 0.8s 0.15s cubic-bezier(0.22,1,0.36,1) both;
}

.hero-img {
  position: absolute;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 28px 48px rgba(35,45,97,0.2);
  border: 2px solid rgba(249,166,27,0.3);
}
.hero-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}
.hero-img:hover img { transform: scale(1.03); }

.hero-img-1 {
  width: 260px; height: 210px;
  top: 0; left: 60px;
  z-index: 2;
}
.hero-img-2 {
  width: 240px; height: 280px;
  bottom: 0; right: 0;
  z-index: 3;
}

/* Floating badge on hero */
.hero-badge {
  position: absolute;
  top: 50%; left: 0;
  transform: translateY(-50%);
  background: white;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 12px 40px rgba(35,45,97,0.15);
  border: 1px solid rgba(249,166,27,0.25);
  z-index: 4;
  animation: fadeUp 0.9s 0.4s cubic-bezier(0.22,1,0.36,1) both;
}
.hero-badge-label {
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 4px;
}
.hero-badge-date {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--napsa-blue);
}

/* Watermark */
.conf-watermark {
  position: absolute;
  bottom: 30px; left: 0;
  font-family: 'Manrope', sans-serif;
  font-size: clamp(70px, 13vw, 150px);
  font-weight: 800;
  color: rgba(35,45,97,0.08);
  white-space: nowrap;
  letter-spacing: -0.03em;
  pointer-events: none;
  user-select: none;
  animation: fadeUp 1s 0.3s cubic-bezier(0.22,1,0.36,1) both;
}

/* ── COUNTDOWN ── */
.countdown-section {
  background: white;
  padding: 0 48px;
}
.countdown-inner {
  max-width: 1280px;
  margin: 0 auto;
  transform: translateY(-36px);
}
.countdown-card {
  background: white;
  border-radius: 32px;
  box-shadow: var(--card-shadow), 0 0 0 1px rgba(249,166,27,0.2);
  padding: 36px 56px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.count-item { text-align: center; }
.count-number {
  font-family: 'Manrope', sans-serif;
  font-size: 58px;
  font-weight: 800;
  color: var(--napsa-blue);
  line-height: 1;
  display: block;
  text-shadow: 0 2px 5px rgba(249,166,27,0.2);
}
.count-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--napsa-blue);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.event-started-card {
  justify-content: center;
}
.event-started-content {
  text-align: center;
}
.event-started-title {
  font-family: 'Manrope', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--napsa-blue);
  line-height: 1;
  margin: 0 0 10px;
}
.event-started-sub {
  font-size: 16px;
  font-weight: 700;
  color: var(--napsa-yellow, #f9a61b);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0;
}
.countdown-local-time {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--napsa-blue);
  opacity: 0.6;
  margin: 10px 0 0;
  letter-spacing: 0.03em;
}
.count-divider {
  width: 2px; height: 68px;
  background: linear-gradient(to bottom, var(--napsa-yellow), #ffe2b3);
}

/* ── INFO BAR ── */
.info-bar {
  background: white;
  padding: 20px 48px 48px;
}
.info-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 24px;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #eef2ff;
  font-size: 14px;
  font-weight: 600;
  color: var(--napsa-blue);
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
  transition: all 0.2s;
}
.info-item:hover {
  border-color: var(--napsa-yellow);
  box-shadow: 0 6px 14px rgba(249,166,27,0.1);
}
.info-icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--napsa-yellow);
}

/* ── ABOUT ── */
.about-section {
  padding: 80px 48px;
  background: var(--section-bg);
}
.about-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.about-inner h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--napsa-blue);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.about-inner p {
  font-size: 16px;
  color: #2c3a5e;
  line-height: 1.7;
}

/* ── CATEGORIES ── */
.categories-section {
  padding: 0 48px 80px;
  background: white;
}
.categories-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.category-card {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 35px rgba(35,45,97,0.15);
}

.category-thumb {
  width: 100%;
  padding-bottom: 110%;
  position: relative;
  overflow: hidden;
}
.category-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.5s ease;
}
.category-card:hover .category-bg { transform: scale(1.04); }

.cat-bg-1 { background: linear-gradient(125deg, #232d61 0%, #3a478f 45%, #f9a61b 100%); }
.cat-bg-2 { background: linear-gradient(125deg, #1a2350 0%, #232d61 50%, #f9a61b 80%); }
.cat-bg-3 { background: linear-gradient(125deg, #2e3b78 0%, #232d61 40%, #f9a61b 100%); }
.cat-bg-4 { background: linear-gradient(125deg, #1a1040 0%, #4c2090 50%, #e8920a 100%); }

.cat-shape {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0.8;
}

.category-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 20px 18px;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
  color: white;
}
.category-distance {
  font-size: 11px;
  opacity: 0.8;
  font-weight: 600;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.category-name {
  font-family: 'Manrope', sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.1;
}
.category-price {
  margin-top: 10px;
  display: inline-block;
  background: var(--napsa-yellow);
  color: var(--napsa-blue);
  font-size: 12px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 100px;
}

/* ── REGISTRATION TYPES ── */
.reg-section {
  padding: 80px 48px;
  background: var(--section-bg);
}
.reg-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.reg-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.reg-card {
  background: white;
  border-radius: 24px;
  padding: 32px;
  border: 1px solid #edf2f7;
  transition: all 0.25s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}
.reg-card:hover {
  border-color: var(--napsa-yellow);
  transform: translateY(-6px);
  box-shadow: 0 20px 30px rgba(35,45,97,0.1);
}
.reg-card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--napsa-blue), var(--napsa-blue-soft));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 6px 14px rgba(35,45,97,0.25);
}
.reg-card-icon svg { width: 24px; height: 24px; stroke: var(--napsa-yellow); fill: none; stroke-width: 2; }
.reg-card h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--napsa-blue);
}
.reg-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 20px;
}
.reg-card .btn-reg-card {
  font-size: 13px;
  padding: 9px 20px;
}
.reg-tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.tag-individual { background: rgba(249,166,27,0.12); color: #9a6200; }
.tag-lfs        { background: rgba(35,45,97,0.08);   color: var(--napsa-blue); }
.tag-corporate  { background: rgba(46,59,120,0.08);  color: var(--napsa-blue-soft); }
.tag-vendor     { background: rgba(234,88,12,0.08);  color: #c2410c; }

/* ── SCHEDULE ── */
.schedule-section {
  padding: 90px 48px;
  background: var(--section-bg);
}
.schedule-inner { max-width: 1280px; margin: 0 auto; }
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.schedule-card {
  background: white;
  border-radius: 24px;
  padding: 28px;
  border: 1px solid #edf2f7;
  transition: all 0.25s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}
.schedule-card:hover {
  border-color: var(--napsa-yellow);
  transform: translateY(-6px);
  box-shadow: 0 20px 30px rgba(35,45,97,0.1);
}
.schedule-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.tag-race   { background: rgba(249,166,27,0.12); color: #9a6200; }
.tag-start  { background: rgba(35,45,97,0.08);   color: var(--napsa-blue); }
.tag-awards { background: rgba(46,59,120,0.08);  color: var(--napsa-blue-soft); }

.schedule-card h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.3;
  color: var(--napsa-blue);
}
.schedule-card .time {
  font-size: 13px;
  color: #5c6b8a;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}
.schedule-card .time svg {
  width: 14px; height: 14px;
  stroke: var(--napsa-yellow);
  fill: none;
  stroke-width: 2.2;
}

/* ── SPONSORS ── */
.sponsors-section {
  padding: 60px 48px;
  background: white;
}
.sponsors-inner { max-width: 1280px; margin: 0 auto; text-align: center; }
.sponsors-inner h3 {
  font-size: 13px;
  font-weight: 700;
  color: var(--napsa-blue-soft);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 36px;
}
.sponsors-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px 56px;
}
.sponsor-item {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.2s ease, transform 0.2s ease;
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--napsa-blue);
}
.sponsor-item:hover {
  color: var(--napsa-blue-deep);
  transform: translateY(-1px);
}
.sponsor-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--napsa-yellow);
}

/* ── CTA ── */
.cta-section {
  background: linear-gradient(115deg, var(--napsa-blue) 0%, #1f2b5e 100%);
  padding: 90px 48px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='70' height='70' viewBox='0 0 70 70' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f9a61b' fill-opacity='0.08'%3E%3Ccircle cx='35' cy='35' r='3'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-blob {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,166,27,0.15), transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}
.cta-inner h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.cta-inner p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 38px;
  line-height: 1.6;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── ABOUT PAGE ── */
.about-page-hero {
  background: linear-gradient(115deg, var(--napsa-blue) 0%, #1f2b5e 100%);
  padding: 100px 48px 60px;
  position: relative;
  overflow: hidden;
}
.about-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='70' height='70' viewBox='0 0 70 70' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='35' cy='35' r='3' fill='%23f9a61b' fill-opacity='0.07'/%3E%3C/svg%3E");
}
.about-page-hero-blob {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,166,27,0.14), transparent 70%);
  top: 50%;
  right: -100px;
  transform: translateY(-50%);
  pointer-events: none;
}
.about-page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
}
.about-page-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
}
.about-page-hero .breadcrumb a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.about-page-hero .breadcrumb a:hover { color: white; }
.about-page-hero .breadcrumb span { color: var(--napsa-yellow); font-weight: 700; }
.about-page-hero .breadcrumb svg {
  width: 14px;
  height: 14px;
  stroke: rgba(255,255,255,0.35);
  fill: none;
  stroke-width: 2;
}
.about-page-hero h1 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 800;
  color: white;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.about-page-hero h1 span { color: white; }
.about-page-lead {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  line-height: 1.6;
  margin: 0;
}

.about-page-main {
  background: white;
}

.about-page-section {
  padding: 72px 48px;
}
.about-page-section-alt {
  background: var(--section-bg);
}
.about-page-inner {
  max-width: 1040px;
  margin: 0 auto;
}
.about-page-section h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--napsa-blue);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.about-section-sub {
  font-size: 16px;
  color: #4a5878;
  line-height: 1.65;
  max-width: 720px;
  margin: 0 0 28px;
}
.about-page-section p {
  font-size: 16px;
  color: #2c3a5e;
  line-height: 1.7;
  margin: 0 0 16px;
}
.about-page-section p:last-child { margin-bottom: 0; }

.about-page-intro {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 320px);
  gap: 48px;
  align-items: start;
}
.about-facts-card {
  background: white;
  border-radius: 24px;
  padding: 28px 28px 24px;
  border: 1px solid #eef2ff;
  box-shadow: 0 12px 32px rgba(35,45,97,0.08);
}
.about-page-section-alt .about-facts-card {
  background: #fafbff;
}
.about-facts-card h3 {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--napsa-yellow);
  margin: 0 0 16px;
}
.about-facts-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.about-facts-card li {
  font-size: 14px;
  color: #2c3a5e;
  line-height: 1.55;
  padding: 12px 0;
  border-bottom: 1px solid #edf0f7;
}
.about-facts-card li:last-child { border-bottom: none; padding-bottom: 0; }
.about-facts-card strong {
  display: block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--napsa-blue);
  margin-bottom: 4px;
}

.about-audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.about-audience-card {
  background: var(--section-bg);
  border-radius: 20px;
  padding: 24px 22px;
  border: 1px solid #e8ecf4;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.about-page-section-alt .about-audience-card {
  background: white;
}
.about-audience-card:hover {
  border-color: rgba(249,166,27,0.45);
  box-shadow: 0 10px 28px rgba(35,45,97,0.07);
}
.about-audience-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--napsa-blue);
  margin: 0 0 10px;
}
.about-audience-card p {
  font-size: 14px;
  margin: 0;
  color: #4a5878;
  line-height: 1.55;
}

.about-napsa-block .about-napsa-copy {
  max-width: 760px;
}

.about-distances-table-wrap {
  overflow-x: auto;
  border-radius: 20px;
  border: 1px solid #e8ecf4;
  box-shadow: 0 8px 24px rgba(35,45,97,0.06);
}
.about-distances-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  background: white;
}
.about-distances-table thead {
  background: var(--napsa-blue);
  color: white;
}
.about-distances-table th {
  text-align: left;
  padding: 14px 20px;
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.about-distances-table td {
  padding: 16px 20px;
  border-bottom: 1px solid #edf0f7;
  color: #2c3a5e;
  vertical-align: top;
}
.about-distances-table td:first-child {
  font-weight: 800;
  color: var(--napsa-blue);
  white-space: nowrap;
}
.about-distances-table tbody tr:last-child td { border-bottom: none; }
.about-distances-table tbody tr:nth-child(even) { background: #fbfcff; }

/* ── FOOTER ── */
footer {
  background: var(--napsa-blue-deep);
  color: rgba(255,255,255,0.5);
  padding: 32px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 13px;
  font-weight: 500;
}
.footer-logo { color: white; }
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.9); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }


/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  #app > nav, #reg-app > nav { padding: 0 28px; }
  .hero-inner { padding: 60px 28px 80px; gap: 40px; }
  .countdown-section { padding: 0 28px; }
  .info-bar { padding: 20px 28px 40px; }
  .about-section, .reg-section, .schedule-section,
  .sponsors-section, .cta-section { padding-left: 28px; padding-right: 28px; }
  .categories-section { padding: 0 28px 60px; }
  .about-page-hero { padding: 88px 28px 56px; }
  .about-page-section { padding-left: 28px; padding-right: 28px; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-images { height: 320px; margin-top: 20px; }
  .categories-inner { grid-template-columns: repeat(2, 1fr); }
  .schedule-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .reg-grid { grid-template-columns: 1fr; }
  .info-bar-inner { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .about-page-intro { grid-template-columns: 1fr; }
  .about-audience-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  #app > nav, #reg-app > nav { padding: 0 20px; }
  .nav-actions .btn-primary { display: none; }
  .hamburger { display: flex; }
  .hero-inner { padding: 48px 20px 72px; }
  .hero-stats { gap: 16px; flex-wrap: wrap; }
  .countdown-card { padding: 28px 20px; flex-wrap: wrap; gap: 20px; }
  .count-divider { display: none; }
  .count-number { font-size: 42px; }
  .categories-inner { grid-template-columns: repeat(2, 1fr); }
  .schedule-grid { grid-template-columns: 1fr; }
  footer { padding: 28px 20px; flex-direction: column; text-align: center; gap: 16px; }
  .footer-links { justify-content: center; }
  .about-page-hero { padding: 82px 20px 48px; }
  .about-page-section { padding-top: 48px; padding-bottom: 48px; }
}

@media (max-width: 480px) {
  .countdown-section, .info-bar { padding-left: 16px; padding-right: 16px; }
  .about-section, .reg-section, .schedule-section,
  .sponsors-section, .cta-section, .categories-section { padding-left: 16px; padding-right: 16px; }
  .hero-inner { padding: 40px 16px 60px; }
  .categories-inner { grid-template-columns: 1fr 1fr; gap: 12px; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .btn-white, .btn-outline-white { text-align: center; justify-content: center; }
  .about-page-hero { padding: 76px 16px 40px; }
  .about-page-section { padding-top: 40px; padding-bottom: 40px; }
  .about-audience-grid { grid-template-columns: 1fr; }
}
