.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding-top: 67px;
}
.hero-bg { position: absolute; inset: 0; background: var(--black); }
.hero-flag-bg { position: absolute; right: 0; top: 0; bottom: 0; width: 55%; overflow: hidden; }
.hero-flag-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.12; filter: saturate(0.7) contrast(1.1); }
.hero-vignette {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, var(--black) 30%, rgba(4,5,6,0.6) 65%, rgba(4,5,6,0.3) 100%),
    linear-gradient(to bottom, transparent 60%, var(--black) 100%),
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(198,54,60,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 80% 30%, rgba(12,64,118,0.06) 0%, transparent 60%);
}
.hero::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: linear-gradient(to bottom, var(--srb-red), var(--srb-blue), var(--srb-white)); z-index: 2;
}
.hero-content { position: relative; z-index: 3; max-width: 1200px; margin: 0 auto; padding: 80px 24px 80px 32px; width: 100%; }

.hero-tag {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em;
  color: var(--text2); margin-bottom: 20px;
  opacity: 0; transform: translateY(16px); transition: all 0.6s ease;
}
.hero-tag.visible { opacity: 1; transform: translateY(0); }
.tag-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--srb-red); box-shadow: 0 0 8px var(--srb-red); animation: blink 2s infinite; }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(90px, 18vw, 210px);
  line-height: 0.85; letter-spacing: 0.06em;
  background: linear-gradient(180deg, var(--srb-red) 0%, var(--srb-red) 33%, var(--srb-blue) 33%, var(--srb-blue) 66%, var(--srb-white) 66%, var(--srb-white) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,0.1);
  margin-bottom: 12px; filter: drop-shadow(0 0 40px rgba(198,54,60,0.2));
  opacity: 0; transform: translateY(24px); transition: all 0.8s ease 0.1s;
}
.hero-title.visible { opacity: 1; transform: translateY(0); }

.hero-acronym {
  font-family: var(--font-mono); font-size: clamp(10px, 1.4vw, 13px);
  letter-spacing: 0.2em; color: var(--text2); margin-bottom: 24px;
  opacity: 0; transition: all 0.6s ease 0.2s;
}
.hero-acronym.visible { opacity: 1; }

.hero-desc {
  font-size: clamp(14px, 1.6vw, 16px); font-weight: 300; color: var(--text2);
  max-width: 480px; margin-bottom: 36px;
  opacity: 0; transform: translateY(12px); transition: all 0.6s ease 0.3s;
}
.hero-desc.visible { opacity: 1; transform: translateY(0); }

.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 64px; opacity: 0; transition: all 0.6s ease 0.4s; }
.hero-buttons.visible { opacity: 1; }

.hero-stats { display: flex; align-items: center; gap: 32px; opacity: 0; transition: all 0.6s ease 0.5s; }
.hero-stats.visible { opacity: 1; }
.stat { text-align: center; }
.stat-num { display: block; font-family: var(--font-display); font-size: 42px; line-height: 1; color: var(--srb-red); text-shadow: 0 0 20px rgba(198,54,60,0.4); }
.stat:nth-child(3) .stat-num { color: #4a90d9; text-shadow: 0 0 20px rgba(12,64,118,0.5); }
.stat:nth-child(5) .stat-num { color: var(--srb-white); text-shadow: 0 0 20px rgba(232,237,240,0.3); }
.stat-label { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.15em; color: var(--text2); display: block; margin-top: 4px; }
.stat-divider { width: 1px; height: 48px; background: var(--border); }

.hero-emblem { position: absolute; right: 80px; top: 50%; transform: translateY(-50%); z-index: 2; width: 280px; opacity: 0; transition: opacity 0.8s ease 0.6s; }
.hero-emblem.visible { opacity: 1; }
.hero-emblem img { width: 100%; height: auto; filter: drop-shadow(0 0 30px rgba(198,54,60,0.3)) drop-shadow(0 0 60px rgba(12,64,118,0.2)); }

.hero-scroll-indicator {
  position: absolute; bottom: 32px; right: 48px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.2em; color: var(--text2);
  animation: float 3s ease-in-out infinite;
}
.scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, var(--srb-red), transparent); }

@media (max-width: 1000px) { .hero-emblem { display: none; } }
@media (max-width: 900px) { .hero-stats { gap: 20px; } .stat-num { font-size: 32px; } }
@media (max-width: 640px) { .hero-scroll-indicator { display: none; } .hero::before { width: 2px; } }