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

:root {
  --black: #0c0a0a;
  --bg: #12100e;
  --bg2: #1c1816;
  --bg3: #26211e;
  --crimson: #b91c2a;
  --crimson-light: #dc262c;
  --gold: #eab308;
  --gold-dim: rgba(234,179,8,0.12);
  --text: #f5f0ec;
  --text2: #d4cdc6;
  --text-muted: #928b83;
  --border: rgba(185,28,42,0.15);
  --radius: 0;
  --font-head: 'Bebas Neue', 'Impact', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; }

/* ─── HEADER ─── */
.hdr {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(12,10,10,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--crimson);
  padding: 0 2rem;
}
.hdr-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.hdr-logo {
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: var(--text);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hdr-logo span { color: var(--crimson); }
.hdr-nav { display: flex; gap: 1.8rem; align-items: center; }
.hdr-nav a {
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.2s;
}
.hdr-nav a:hover { color: var(--crimson); }
.hdr-cta {
  background: var(--crimson);
  color: #fff;
  padding: 0.45rem 1.2rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: background 0.2s, transform 0.15s;
}
.hdr-cta:hover { background: var(--crimson-light); transform: scale(1.04); }

/* ─── HERO ─── */
.hero {
  margin-top: 60px;
  position: relative;
  padding: 5rem 2rem 3rem;
  text-align: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 20%, rgba(185,28,42,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(234,179,8,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.hero-flag {
  display: inline-block;
  background: var(--crimson);
  color: #fff;
  padding: 0.25rem 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1.02;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1rem;
}
.hero h1 .hl { color: var(--crimson); }
.hero h1 .hl2 { color: var(--gold); }
.hero p {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

.hf {
  max-width: 520px;
  margin: 0 auto;
  text-align: left;
  background: var(--bg2);
  border: 1px solid var(--border);
  padding: 2rem;
}
.hf h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gold);
  margin-bottom: 1rem;
}
.hf input,
.hf select,
.hf textarea {
  display: block;
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 0.85rem 1rem;
  font-size: 0.85rem;
  font-family: var(--font-body);
  color: var(--text);
  outline: none;
  margin-bottom: 0.65rem;
  transition: border-color 0.2s;
}
.hf select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath fill='%23928b83' d='M6 7L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
}
.hf input:focus,
.hf select:focus,
.hf textarea:focus { border-color: var(--crimson); }
.hf textarea { resize: vertical; min-height: 75px; margin-bottom: 1rem; }

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  background: var(--crimson);
  color: #fff;
  border: none;
  padding: 0.9rem;
  font-family: var(--font-head);
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn:hover { background: var(--crimson-light); transform: scale(1.02); }

.hn {
  font-size: 0.68rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.7rem;
}

/* ─── EMBEDDED FORM ─── */
.fc-body {
  width: 100%;
  margin: 0;
  padding: 0;
}
.embed-form-wrap {
  width: 100%;
  min-height: 120px;
  margin: 0;
  padding: 0;
  background: var(--bg2);
  border: 1px solid var(--border);
}
.embed-form-wrap > * {
  width: 100% !important;
  max-width: 100% !important;
}
.embed-form-wrap iframe {
  width: 100% !important;
}

/* ─── STATS BAR ─── */
.stats {
  background: var(--crimson);
  padding: 2rem;
}
.stats-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}
.stats-i { text-align: center; }
.stats-i strong {
  font-family: var(--font-head);
  font-size: 2.2rem;
  line-height: 1;
  color: #fff;
  letter-spacing: 0.02em;
}
.stats-i span {
  display: block;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  margin-top: 0.2rem;
}

/* ─── SECTION ─── */
.wr { max-width: 780px; margin: 0 auto; padding: 4rem 2rem; }
.blk { margin-bottom: 4rem; }
.blk:last-child { margin-bottom: 0; }
.blk h2 {
  font-family: var(--font-head);
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.blk h2::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 1.8rem;
  background: var(--crimson);
  flex-shrink: 0;
}
.blk h2 em {
  font-style: normal;
  color: var(--gold);
}
.blk > p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.85;
  margin-bottom: 1rem;
}

.bens {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 1.5rem;
}
.bi {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 1.2rem;
  border-left: 3px solid var(--border);
  transition: border-color 0.2s, background 0.2s;
}
.bi:hover {
  border-left-color: var(--crimson);
  background: rgba(185,28,42,0.04);
}
.bc {
  width: 28px;
  height: 28px;
  background: transparent;
  border: 2px solid var(--crimson);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--crimson);
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}
.bi p {
  color: var(--text2);
  font-size: 0.85rem;
  line-height: 1.75;
  margin: 0;
}
.bi p strong { color: var(--text); }

.str {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.st {
  border-top: 4px solid var(--crimson);
  padding: 1.5rem;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-top-width: 4px;
  transition: transform 0.2s, border-color 0.2s;
}
.st:hover { transform: translateY(-3px); border-color: rgba(185,28,42,0.3); }
.st-n {
  font-family: var(--font-head);
  font-size: 2.5rem;
  color: rgba(185,28,42,0.2);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.st h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--gold);
}
.st p {
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.65;
  margin: 0;
}

.qt {
  background: var(--bg3);
  border: 1px solid var(--border);
  padding: 2rem 2rem 2rem 3rem;
  position: relative;
}
.qt::before {
  content: '\201C';
  position: absolute;
  left: 0.8rem;
  top: 0.5rem;
  font-size: 3.5rem;
  color: var(--crimson);
  font-family: serif;
  line-height: 1;
  opacity: 0.5;
}
.qt p {
  font-style: italic;
  color: var(--text2);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 0.5rem;
}
.qt cite {
  font-style: normal;
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
}

/* ─── FOOTER ─── */
.ft {
  background: var(--bg2);
  border-top: 3px solid var(--crimson);
  padding: 2.5rem 2rem 2rem;
}
.ft-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.ft-logo {
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.ft-logo span { color: var(--crimson); }
.ft-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.ft-links a {
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}
.ft-links a:hover { color: var(--crimson); }
.ft-copy {
  max-width: 1100px;
  margin: 1.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.74rem;
}

/* ─── PARTNERS ─── */
.ph {
  margin-top: 60px;
  padding: 3rem 2rem 0;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.ph h1 {
  font-family: var(--font-head);
  font-size: 2.4rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.ph h1 span { color: var(--crimson); }
.ph p { color: var(--text-muted); font-size: 0.85rem; margin-top: 0.3rem; }

.pc {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  align-items: center;
  padding: 1.2rem 2rem;
  max-width: 780px;
  margin: 0 auto;
}
.ps { position: relative; flex: 1; min-width: 150px; max-width: 220px; }
.ps input {
  width: 100%;
  background: var(--bg2);
  border: 1px solid var(--border);
  padding: 0.55rem 0.7rem 0.55rem 1.8rem;
  font-size: 0.8rem;
  font-family: inherit;
  color: var(--text);
  outline: none;
}
.ps input:focus { border-color: var(--crimson); }
.ps input::placeholder { color: var(--text-muted); }
.psi { position: absolute; left: 0.55rem; top: 50%; transform: translateY(-50%); font-size: 0.6rem; color: var(--text-muted); pointer-events: none; }

.pt { display: flex; gap: 0; flex-wrap: wrap; }
.pt button {
  background: var(--bg2);
  border: 1px solid var(--border);
  padding: 0.35rem 0.9rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  font-family: inherit;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: all 0.15s;
}
.pt button + button { border-left: none; }
.pt button:hover { background: rgba(185,28,42,0.08); color: var(--crimson); }
.pt button.on { background: var(--crimson); color: #fff; border-color: var(--crimson); font-weight: 700; }

.pw { max-width: 780px; margin: 0 auto; padding: 0 2rem 4rem; }
.pco { font-size: 0.7rem; color: var(--text-muted); padding: 0.5rem 0; border-bottom: 1px solid var(--border); margin-bottom: 1rem; }
.pco strong { color: var(--crimson); }

.lg { margin-bottom: 1.5rem; }
.ll {
  font-family: var(--font-head);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.2rem;
  margin-bottom: 0.5rem;
}
.pg { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 0.3rem; }
.pcrd {
  padding: 0.35rem 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid var(--border);
  transition: border-color 0.15s;
}
.pcrd:hover { border-color: var(--crimson); }
.pi {
  width: 20px; height: 20px;
  background: rgba(185,28,42,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.5rem;
  font-weight: 700;
  color: var(--crimson);
  flex-shrink: 0;
  font-family: var(--font-head);
}
.pnm { font-size: 0.75rem; color: var(--text2); line-height: 1.3; }
.nr { text-align: center; padding: 2rem; color: var(--text-muted); display: none; }
.nr.sh { display: block; }

/* ─── LEGAL ─── */
.lw { max-width: 720px; margin: 60px auto 0; padding: 0 2rem; }
.lh { padding: 2rem 0 0; }
.lh h1 {
  font-family: var(--font-head);
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.lh h1 span { color: var(--crimson); }
.lh p { color: var(--text-muted); font-size: 0.76rem; }
.lb { padding: 1.5rem 0 4rem; }
.lb h2 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 1.8rem 0 0.5rem;
  color: var(--gold);
}
.lb p { color: var(--text2); font-size: 0.85rem; line-height: 1.8; margin-bottom: 0.5rem; }
.lb ul { color: var(--text2); font-size: 0.85rem; line-height: 1.8; margin: 0 0 0.5rem 1.3rem; }
.lb ul li { margin-bottom: 0.15rem; }

/* ─── MOBILE ─── */
@media (max-width: 720px) {
  .hdr { padding: 0 1.2rem; }
  .hdr-nav a:not(.hdr-cta) { display: none; }
  .hero { padding: 3rem 1.2rem 2rem; }
  .stats-inner { gap: 2rem; }
  .wr { padding: 3rem 1.2rem; }
  .str { grid-template-columns: 1fr; }
  .ft-inner { flex-direction: column; text-align: center; }
  .ft-links { justify-content: center; }
  .ph { padding-left: 1.2rem; padding-right: 1.2rem; }
  .pc { flex-direction: column; align-items: stretch; padding-left: 1.2rem; padding-right: 1.2rem; }
  .ps { max-width: none; }
  .pw { padding-left: 1.2rem; padding-right: 1.2rem; }
  .lw { padding: 0 1.2rem; }
}