@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

/* ─── TOKENS ──────────────────────────────────────── */
:root {
  --red:        #DC143C;
  --red-dim:    rgba(220,20,60,0.08);
  --blue:       #003893;
  --blue-mid:   #1A52C4;
  --blue-dim:   rgba(0,56,147,0.1);
  --black:      #07090F;
  --surface:    #0C0F18;
  --surface2:   #11141E;
  --border:     rgba(255,255,255,0.06);
  --border2:    rgba(255,255,255,0.03);
  --muted:      #4E5568;
  --light:      #8D96AD;
  --white:      #ECF0F8;
  --nav-h:      68px;
}

/* ─── RESET ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--black);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ─── NAV ─────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw;
  background: rgba(7,9,15,0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.55rem; letter-spacing: 0.14em;
  display: flex; gap: 0;
}
.nav-logo .n { color: var(--white); }
.nav-logo .t { color: var(--red); }
.nav-logo .s { color: var(--blue-mid); }

.nav-links {
  display: flex; align-items: center; gap: 2rem;
}
.nav-links a {
  font-size: 0.8rem; font-weight: 400;
  letter-spacing: 0.04em; color: var(--light);
  transition: color 0.2s; padding: 4px 0;
  position: relative;
}
.nav-links a.active,
.nav-links a:hover { color: var(--white); }

.nav-cta {
  border: 1px solid rgba(220,20,60,0.4);
  color: var(--red) !important;
  padding: 7px 18px !important; border-radius: 3px;
  font-weight: 500 !important;
  transition: background 0.2s, color 0.2s !important;
}
.nav-cta:hover {
  background: var(--red) !important;
  color: #fff !important;
  border-color: var(--red) !important;
}

.hamburger {
  display: none; flex-direction: column;
  gap: 5px; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 1px;
  background: var(--white); transition: 0.3s;
}
nav.open .hamburger span:nth-child(1) { transform: rotate(45deg) translate(4px,4px); }
nav.open .hamburger span:nth-child(2) { opacity: 0; }
nav.open .hamburger span:nth-child(3) { transform: rotate(-45deg) translate(4px,-4px); }
nav.open .nav-links {
  display: flex; flex-direction: column;
  position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--surface); padding: 28px 5vw;
  gap: 20px; border-bottom: 1px solid var(--border);
}

/* ─── PAGE HERO (inner pages) ─────────────────────── */
.page-hero {
  padding: 140px 5vw 72px;
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.72rem; color: var(--muted);
  letter-spacing: 0.06em; margin-bottom: 28px;
}
.breadcrumb a { color: var(--red); }
.breadcrumb span { color: var(--muted); }
.page-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.95; letter-spacing: 0.04em;
  margin-bottom: 20px;
}
.page-hero p {
  font-size: 1rem; color: var(--light);
  max-width: 520px; line-height: 1.8;
}

/* ─── SECTION UTILITIES ───────────────────────────── */
.section { padding: 96px 5vw; }
.section-alt { background: var(--surface); }

.label {
  font-size: 0.68rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--red);
  display: block; margin-bottom: 14px;
}
.h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.6rem, 4.5vw, 4.5rem);
  line-height: 0.95; letter-spacing: 0.04em;
}
.h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1; letter-spacing: 0.04em;
}
.body { font-size: 0.92rem; color: var(--light); line-height: 1.85; }
.body + .body { margin-top: 14px; }
.body strong { color: var(--white); font-weight: 500; }

/* ─── DIVIDERS ────────────────────────────────────── */
.flag-top {
  height: 3px;
  background: linear-gradient(90deg, var(--red) 50%, var(--blue) 50%);
}

/* ─── TEXT LINK ───────────────────────────────────── */
.text-link {
  font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--light); border-bottom: 1px solid rgba(255,255,255,0.12);
  padding-bottom: 2px; display: inline-block;
  transition: color 0.2s, border-color 0.2s;
}
.text-link:hover { color: var(--red); border-color: var(--red); }
.text-link.red { color: var(--red); border-color: rgba(220,20,60,0.3); }

/* ─── FOOTER ──────────────────────────────────────── */
footer {
  background: var(--surface);
}
.footer-inner {
  padding: 64px 5vw 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 48px; padding-bottom: 40px;
  border-bottom: 1px solid var(--border); margin-bottom: 28px;
}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.7rem; letter-spacing: 0.14em; margin-bottom: 14px;
}
.footer-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.85; max-width: 240px; }
.footer-col h4 {
  font-size: 0.64rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--red); margin-bottom: 18px;
}
.footer-col li + li { margin-top: 11px; }
.footer-col a { font-size: 0.83rem; color: var(--light); transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.72rem; color: var(--muted);
}
.footer-socials { display: flex; gap: 20px; }
.footer-socials a {
  font-size: 0.68rem; color: var(--muted); letter-spacing: 0.1em;
  text-transform: uppercase; transition: color 0.2s;
}
.footer-socials a:hover { color: var(--white); }

/* ─── NUMBERS BAR ─────────────────────────────────── */
.numbers-bar {
  display: grid; grid-template-columns: repeat(4,1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.num-cell {
  padding: 52px 5vw;
  border-right: 1px solid var(--border);
  position: relative;
}
.num-cell:last-child { border-right: none; }
.num-cell::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--red), var(--blue));
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s;
}
.num-cell:hover::after { transform: scaleX(1); }
.num-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 5vw, 5.5rem);
  line-height: 1; letter-spacing: 0.04em; color: var(--white);
}
.num-val sup { font-size: 0.38em; color: var(--red); vertical-align: super; }
.num-desc { font-size: 0.75rem; color: var(--muted); margin-top: 6px; line-height: 1.5; }

/* ─── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .numbers-bar { grid-template-columns: 1fr 1fr; }
  .num-cell { border-bottom: 1px solid var(--border); }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; }
  .numbers-bar { grid-template-columns: 1fr; }
}
