:root {
  --bg: #030712;
  --bg-2: #0a0f1a;
  --bg-3: #111827;
  --card: rgba(17, 24, 39, 0.92);
  --blue: #2563eb;
  --blue-light: #60a5fa;
  --silver: #94a3b8;
  --grey: #64748b;
  --text: #f1f5f9;
  --muted: #94a3b8;
  --line: rgba(148, 163, 184, 0.18);
  --glow: 0 18px 50px rgba(37, 99, 235, 0.18);
  --radius: 1.15rem;
  --font-body: "Lato", system-ui, sans-serif;
  --font-head: "Montserrat", "Lato", system-ui, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}
h1, h2, h3, h4, .nav__name, .btn, .stat-card__value, .stat-card__suffix, .news-card__badge, .progress-item__head strong {
  font-family: var(--font-head);
}
img, video, iframe { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.boot-msg { text-align: center; padding: 4rem; color: var(--blue-light); font-family: var(--font-head); font-weight: 700; }
.container { width: min(1140px, calc(100% - 2rem)); margin: 0 auto; }
.section { padding: 5.2rem 0; position: relative; }
.eyebrow {
  text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.78rem;
  font-weight: 700; color: var(--silver); margin: 0 0 0.8rem; font-family: var(--font-head);
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.12; margin: 0 0 1rem; font-weight: 800;
}
.text-accent {
  background: linear-gradient(90deg, var(--blue-light), var(--silver));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.section-text { color: var(--muted); font-size: 1.05rem; max-width: 56ch; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem;
  border-radius: 999px; padding: 0.9rem 1.3rem; font-weight: 700; border: 1px solid transparent;
  transition: 0.25s ease; font-family: var(--font-head);
}
.btn--primary {
  background: linear-gradient(135deg, var(--blue), #1d4ed8);
  color: #eff6ff; box-shadow: var(--glow);
}
.btn--primary:hover { transform: translateY(-2px); filter: brightness(1.1); }
.btn--ghost { border-color: rgba(96,165,250,0.35); color: var(--blue-light); }
.btn--ghost:hover { background: rgba(37,99,235,0.12); }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(3,7,18,0.82);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-header.is-scrolled {
  background: rgba(3,7,18,0.96);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 76px; gap: 1rem; }
.nav__brand { display: flex; align-items: center; gap: 0.7rem; font-weight: 800; }
.nav__logo { width: 46px; height: 46px; border-radius: 12px; object-fit: cover; border: 1px solid var(--line); }
.nav__name { font-size: 0.92rem; line-height: 1.1; letter-spacing: 0.04em; }
.nav__name small { display: block; color: var(--silver); font-size: 0.62rem; letter-spacing: 0.14em; font-weight: 600; }
.nav__links { display: flex; gap: 1rem; list-style: none; margin: 0; padding: 0; align-items: center; }
.nav__links a { color: var(--muted); font-weight: 600; font-size: 0.92rem; position: relative; font-family: var(--font-head); }
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px;
  background: linear-gradient(90deg, var(--blue-light), var(--silver));
  transform: scaleX(0); transform-origin: left; transition: transform 0.25s ease;
}
.nav__links a:hover, .nav__links a.is-active { color: var(--blue-light); }
.nav__links a:hover::after, .nav__links a.is-active::after { transform: scaleX(1); }
.nav__cta {
  background: linear-gradient(135deg, var(--blue), #1e40af) !important;
  color: #eff6ff !important; padding: 0.55rem 1rem; border-radius: 999px;
}
.nav__cta::after { display: none !important; }
.nav__toggle { display: none; width: 42px; height: 42px; border: 0; background: transparent; }
.nav__toggle span { display: block; height: 2px; background: #fff; margin: 6px 8px; }

.hero {
  position: relative; min-height: 100vh; display: grid; align-items: center;
  padding: 8rem 0 4rem; overflow: hidden;
  background: linear-gradient(180deg, #030712, #0a0f1a 55%, #030712);
}
.hero__grid-bg {
  position: absolute; inset: 0; opacity: 0.35;
  background-image:
    linear-gradient(rgba(148,163,184,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148,163,184,0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 30% 20%, black, transparent 70%);
}
.hero__pulse {
  position: absolute; width: 520px; height: 520px; border-radius: 50%;
  top: 10%; right: -8%; background: radial-gradient(circle, rgba(37,99,235,0.22), transparent 68%);
  animation: pulseGlow 6s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.08); opacity: 1; }
}
.hero__content { position: relative; z-index: 1; max-width: 760px; }
.hero__title {
  font-size: clamp(2.3rem, 5.5vw, 4rem);
  line-height: 1.05; margin: 0 0 1rem; font-weight: 800;
}
.hero__lead { color: var(--muted); font-size: 1.12rem; max-width: 54ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.8rem; }

.stats { margin-top: -2rem; position: relative; z-index: 2; padding: 0; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.stat-card, .news-card, .progress-item, .contact-box {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(0,0,0,0.28);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.stat-card { padding: 1.3rem; border-top: 3px solid var(--blue); }
.stat-card:hover, .news-card:hover, .progress-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--glow);
  border-color: rgba(96,165,250,0.35);
}
.stat-card__value, .stat-card__suffix {
  font-size: 2rem; font-weight: 800; color: var(--blue-light);
}
.stat-card__label { margin: 0.35rem 0 0; color: var(--muted); font-size: 0.92rem; }

.about {
  background:
    radial-gradient(circle at 80% 20%, rgba(37,99,235,0.12), transparent 35%),
    linear-gradient(180deg, #030712, #0a0f1a);
}
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
.about__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.75rem; }
.about__list li {
  padding: 0.95rem 1rem; border-left: 3px solid var(--blue);
  background: rgba(255,255,255,0.03); border-radius: 0.8rem; color: #cbd5e1;
}

.radio-section {
  background:
    radial-gradient(circle at 15% 50%, rgba(148,163,184,0.1), transparent 40%),
    linear-gradient(165deg, #030712, #111827 50%, #030712);
}
.radio-player {
  margin-top: 2rem; border-radius: 1.2rem; overflow: hidden;
  border: 1px solid rgba(96,165,250,0.25); box-shadow: var(--glow);
  aspect-ratio: 16 / 9; background: #000;
}
.radio-player iframe { width: 100%; height: 100%; border: 0; min-height: 360px; }
.radio-player--empty {
  display: grid; place-items: center;
  background: linear-gradient(135deg, #0a0f1a, #111827);
}
.radio-player__placeholder { text-align: center; padding: 2rem; max-width: 420px; }
.radio-player__placeholder h3 { margin: 0.8rem 0 0.4rem; font-size: 1.4rem; }
.radio-player__placeholder p { margin: 0; color: var(--muted); }
.radio-live-dot {
  display: inline-block; width: 14px; height: 14px; border-radius: 50%;
  background: #ef4444; box-shadow: 0 0 0 0 rgba(239,68,68,0.6);
  animation: livePulse 1.8s ease-out infinite;
}
@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(239,68,68,0.55); }
  70% { box-shadow: 0 0 0 14px rgba(239,68,68,0); }
  100% { box-shadow: 0 0 0 0 rgba(239,68,68,0); }
}

.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }
.news-card { padding: 1.3rem; min-height: 180px; }
.news-card__badge {
  width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(37,99,235,0.2), rgba(148,163,184,0.12));
  color: var(--blue-light); font-weight: 800; margin-bottom: 0.8rem; border: 1px solid rgba(96,165,250,0.2);
}
.news-card h3 { margin: 0 0 0.45rem; font-size: 1.05rem; }
.news-card p { margin: 0; color: var(--muted); font-size: 0.92rem; }

.reach {
  background: linear-gradient(180deg, #030712, #0a0f1a);
}
.experience__grid {
  display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 2rem; align-items: center;
}
.progress-list { display: grid; gap: 1rem; }
.progress-item { padding: 1rem 1.1rem; }
.progress-item__head { display: flex; justify-content: space-between; gap: 1rem; margin-bottom: 0.55rem; font-weight: 700; }
.progress-item__head strong { color: var(--blue-light); }
.progress-item__bar { height: 10px; border-radius: 999px; background: rgba(255,255,255,0.08); overflow: hidden; }
.progress-item__bar span {
  display: block; height: 100%; width: 0; border-radius: inherit;
  background: linear-gradient(90deg, #2563eb, #60a5fa, #94a3b8);
  box-shadow: 0 0 16px rgba(37,99,235,0.35);
  transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.social-band { padding: 0 0 4rem; }
.social-band__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1.2rem;
  background: linear-gradient(120deg, #0a0f1a, #1e293b 55%, #172554);
  border: 1px solid rgba(148,163,184,0.22); border-radius: 1.4rem; padding: 1.6rem 1.8rem;
}
.social-band__inner h2 { margin: 0 0 0.3rem; font-size: 1.5rem; }
.social-band__inner p { margin: 0; color: #cbd5e1; }
.social-band__links { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.social-btn {
  padding: 0.75rem 1.2rem; border-radius: 999px; font-weight: 700; font-family: var(--font-head);
  border: 1px solid transparent; transition: 0.25s ease;
}
.social-btn--fb { background: #1877f2; color: #fff; }
.social-btn--ig { background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af); color: #fff; }
.social-btn:hover { transform: translateY(-2px); filter: brightness(1.08); }

.cta-band { padding: 0 0 5rem; }
.cta-band__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1.2rem;
  background: linear-gradient(120deg, #111827, #1e3a8a 55%, #0f172a);
  border: 1px solid rgba(96,165,250,0.22); border-radius: 1.4rem; padding: 1.6rem 1.8rem;
}
.cta-band__inner h2 { margin: 0 0 0.3rem; }
.cta-band__inner p { margin: 0; color: #cbd5e1; }

.contact-box { padding: 1.5rem; box-shadow: var(--glow); }
.contact-box ul { list-style: none; margin: 1rem 0 0; padding: 0; }
.contact-box li { padding: 0.45rem 0; border-bottom: 1px solid var(--line); color: var(--muted); }
.contact-box strong { color: #fff; }
.contact-box a { color: var(--blue-light); }
.contact-box a:hover { text-decoration: underline; }

.footer {
  background: #020617; border-top: 1px solid var(--line); padding: 2rem 0; color: var(--muted);
}
.footer__inner { display: flex; justify-content: space-between; gap: 1rem; align-items: center; flex-wrap: wrap; }
.footer__brand { display: flex; gap: 0.8rem; align-items: center; }
.footer__brand strong { color: #fff; display: block; }
.footer__brand p { margin: 0.2rem 0 0; }
.footer__logo { width: 42px; height: 42px; border-radius: 10px; object-fit: cover; }
.footer__social { display: flex; gap: 1rem; }
.footer__social a { color: var(--silver); font-weight: 700; font-family: var(--font-head); font-size: 0.88rem; }
.footer__social a:hover { color: var(--blue-light); }

.wa-float {
  position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff; box-shadow: 0 12px 30px rgba(18,140,126,0.4);
  animation: waPulse 2.2s ease-in-out infinite;
}
.wa-float svg { width: 28px; height: 28px; fill: currentColor; }
@keyframes waPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.07); }
}

.reveal { opacity: 0; transform: translateY(28px); filter: blur(4px);
  transition: opacity 0.75s cubic-bezier(0.22,1,0.36,1), transform 0.75s cubic-bezier(0.22,1,0.36,1), filter 0.75s ease; }
.reveal-up { transform: translateY(36px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-scale { transform: translateY(18px) scale(0.94); }
.reveal.visible { opacity: 1; transform: none; filter: blur(0); }
.title-draw.visible::after {
  content: ""; display: block; width: min(120px, 40%); height: 3px; margin-top: 0.75rem;
  border-radius: 999px; background: linear-gradient(90deg, var(--blue-light), transparent);
  animation: drawLine 0.9s cubic-bezier(0.22,1,0.36,1) both;
}
@keyframes drawLine { from { width: 0; opacity: 0; } to { width: min(120px, 40%); opacity: 1; } }

@media (max-width: 980px) {
  .stats__grid, .news-grid { grid-template-columns: 1fr; }
  .about__grid, .experience__grid { grid-template-columns: 1fr; }
  .nav__toggle { display: block; }
  .nav__links {
    display: none; position: absolute; top: 76px; left: 0; right: 0;
    background: #0a0f1a; flex-direction: column; padding: 1rem;
    border-bottom: 1px solid var(--line);
  }
  .nav__links.open { display: flex; }
  .cta-band__inner, .social-band__inner { flex-direction: column; align-items: flex-start; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal, .wa-float, .hero__pulse, .radio-live-dot { animation: none !important; transition: none !important; transform: none !important; filter: none !important; opacity: 1 !important; }
}
