:root {
  --ink: #07100c;
  --ink-soft: #0f1a15;
  --surface: #15231c;
  --surface-2: #1c2e25;
  --gold: #f4c01f;
  --gold-bright: #ffe27a;
  --gold-dim: #b8890a;
  --emerald: #21a06b;
  --emerald-dim: #15543b;
  --bone: #f6f2e6;
  --bone-dim: rgba(246, 242, 230, 0.62);
  --hairline: rgba(246, 242, 230, 0.1);
  --hairline-strong: rgba(246, 242, 230, 0.2);

  --font-display: "Anton", sans-serif;
  --font-head: "Bricolage Grotesque", sans-serif;
  --font-body: "Space Grotesk", sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--ink);
  color: var(--bone);
  font-family: var(--font-body);
  line-height: 1.55;
  overflow-x: hidden;
  position: relative;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---------- overlays ---------- */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 50;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.vignette {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 49;
  background: radial-gradient(ellipse at 50% 0%, transparent 55%, rgba(0, 0, 0, 0.45) 100%);
}

/* ---------- header ---------- */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem clamp(1.5rem, 5vw, 4rem);
  position: relative;
  z-index: 10;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-mark {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-dim));
  color: var(--ink);
  padding: 0.4rem 0.65rem;
  border-radius: var(--radius-sm);
  line-height: 1;
}

.brand-mark.small {
  font-size: 1.05rem;
}

.brand-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.header-nav a:not(.btn) {
  color: var(--bone-dim);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s ease;
  position: relative;
}

.header-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.header-nav a:not(.btn):hover {
  color: var(--gold-bright);
}

.header-nav a:not(.btn):hover::after {
  width: 100%;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease, gap 0.25s ease;
  white-space: nowrap;
  position: relative;
}

.btn:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.btn-arrow {
  width: 14px;
  height: 14px;
  transition: transform 0.25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(244, 192, 31, 0.18);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(244, 192, 31, 0.32);
  gap: 0.85rem;
}

.btn-primary:hover .btn-arrow {
  transform: translateX(3px);
}

.btn-outline {
  border: 1.5px solid var(--hairline-strong);
  color: var(--bone);
  background: transparent;
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
  background: rgba(244, 192, 31, 0.06);
}

.btn-ghost {
  border: 1.5px solid var(--hairline-strong);
  padding: 0.6rem 1.3rem;
  font-size: 0.88rem;
  color: var(--bone);
  background: transparent;
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
}

.btn-large {
  font-size: 1.1rem;
  padding: 1.15rem 2.5rem;
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding: clamp(2rem, 6vw, 4rem) clamp(1.5rem, 5vw, 4rem) 0;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

/* floodlight beams */
.floodlight {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.beam {
  position: absolute;
  top: -10%;
  width: 60vw;
  max-width: 900px;
  height: 140%;
  background: conic-gradient(from 90deg at 50% 0%, transparent 35%, rgba(244, 192, 31, 0.14) 50%, transparent 65%);
  transform-origin: top center;
  animation: sweep 14s ease-in-out infinite;
}

.beam-1 { left: -10%; animation-delay: 0s; }
.beam-2 { left: 30%; opacity: 0.7; background: conic-gradient(from 90deg at 50% 0%, transparent 35%, rgba(33, 160, 107, 0.18) 50%, transparent 65%); animation-delay: -5s; animation-duration: 18s; }
.beam-3 { left: 65%; opacity: 0.6; animation-delay: -9s; animation-duration: 16s; }

@keyframes sweep {
  0%, 100% { transform: rotate(-8deg); }
  50% { transform: rotate(8deg); }
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
  padding-bottom: clamp(3rem, 7vw, 5rem);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: 0.96;
  letter-spacing: 0.01em;
}

.hero-title .line {
  display: block;
  font-size: clamp(3.2rem, 9vw, 7.2rem);
}

.hero-title .accent {
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 50%, var(--emerald) 130%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  margin-top: 1.5rem;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--bone-dim);
  max-width: 38ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--hairline);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.stat-value {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  color: var(--gold-bright);
  font-variant-numeric: tabular-nums;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--bone-dim);
  max-width: 16ch;
}

/* hero visual */
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

/* trophy signature element */
.trophy-stage {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: clamp(160px, 24vw, 240px);
}

.trophy-glow {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 192, 31, 0.35), transparent 70%);
  filter: blur(8px);
  animation: trophy-pulse 4s ease-in-out infinite;
}

@keyframes trophy-pulse {
  0%, 100% { transform: scale(0.95); opacity: 0.7; }
  50% { transform: scale(1.08); opacity: 1; }
}

.trophy {
  position: relative;
  width: clamp(120px, 18vw, 180px);
  height: auto;
  color: var(--gold-bright);
  filter: drop-shadow(0 0 24px rgba(244, 192, 31, 0.4));
  animation: trophy-float 6s ease-in-out infinite;
}

@keyframes trophy-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.trophy-star {
  color: var(--bone);
  animation: star-twinkle 2.4s ease-in-out infinite;
}

@keyframes star-twinkle {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* glass location card */
.location-card {
  position: relative;
  width: 100%;
  max-width: 320px;
  background: linear-gradient(165deg, rgba(28, 46, 37, 0.7), rgba(15, 26, 21, 0.7));
  border: 1px solid var(--hairline-strong);
  border-radius: var(--radius-lg);
  padding: 2rem;
  overflow: hidden;
  backdrop-filter: blur(14px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.location-card:hover {
  border-color: var(--gold-dim);
}

.location-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--emerald);
  background: rgba(33, 160, 107, 0.16);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

.location-card h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.location-card p {
  color: var(--bone-dim);
  margin-top: 0.4rem;
  font-size: 0.95rem;
}

.pitch-mark {
  position: absolute;
  right: -40px;
  bottom: -30px;
  width: 200px;
  color: var(--hairline);
  transform: rotate(8deg);
}

.pitch-mark svg {
  width: 100%;
  height: auto;
}

/* ticker marquee */
.ticker {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--hairline);
  overflow: hidden;
  padding: 1.1rem 0;
  background: linear-gradient(90deg, var(--ink) 0%, transparent 5%, transparent 95%, var(--ink) 100%);
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  color: var(--bone-dim);
  animation: ticker-scroll 38s linear infinite;
  width: max-content;
}

.ticker-track .dot {
  color: var(--gold-dim);
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- dossier section ---------- */
.dossier {
  padding: clamp(4rem, 9vw, 7rem) clamp(1.5rem, 5vw, 4rem);
  background: var(--ink-soft);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  position: relative;
  z-index: 1;
}

.dossier-header {
  max-width: 64ch;
  margin-bottom: 3.5rem;
}

.dossier-header h2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.4rem);
  letter-spacing: -0.01em;
  margin: 0.5rem 0 1.25rem;
}

.dossier-intro {
  color: var(--bone-dim);
  font-size: 1.08rem;
  max-width: 56ch;
}

.dossier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.dossier-card {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: border-color 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease, box-shadow 0.3s ease;
}

.dossier-card:hover {
  border-color: var(--gold-dim);
  transform: translateY(-8px);
  background: var(--surface-2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: rgba(244, 192, 31, 0.1);
  color: var(--gold-bright);
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease, background 0.3s ease;
}

.dossier-card:hover .card-icon {
  background: rgba(244, 192, 31, 0.18);
  transform: scale(1.08) rotate(-4deg);
}

.card-icon svg {
  width: 22px;
  height: 22px;
}

.dossier-card h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 0.65rem;
  letter-spacing: -0.005em;
}

.dossier-card p {
  color: var(--bone-dim);
  font-size: 0.95rem;
}

/* ---------- countries section ---------- */
.countries {
  padding: clamp(4rem, 9vw, 6rem) 0;
  background: var(--ink);
  position: relative;
  z-index: 1;
}

.countries-inner {
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.countries h2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 0.5rem 0 2.5rem;
  max-width: 24ch;
}

.country-track {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.country-chip {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  padding: 0.8rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  transition: border-color 0.25s ease, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background 0.25s ease;
}

.country-chip:hover {
  border-color: var(--gold);
  background: rgba(244, 192, 31, 0.06);
  transform: translateY(-4px) scale(1.03);
}

.country-chip .flag {
  font-size: 1.2rem;
}

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  padding: clamp(4.5rem, 10vw, 8rem) clamp(1.5rem, 5vw, 4rem);
  text-align: center;
  background: var(--ink-soft);
  border-top: 1px solid var(--hairline);
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 700px;
  height: 700px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(244, 192, 31, 0.12), transparent 70%);
  pointer-events: none;
  animation: trophy-pulse 6s ease-in-out infinite;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 52ch;
  margin: 0 auto;
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 4.2rem);
  text-transform: uppercase;
  margin: 0.5rem 0 1.25rem;
}

.cta-content p {
  color: var(--bone-dim);
  margin-bottom: 2.25rem;
  font-size: 1.05rem;
}

/* ---------- footer ---------- */
.site-footer {
  padding: 2.5rem clamp(1.5rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.footer-top .brand {
  justify-content: center;
}

.footer-location {
  color: var(--bone-dim);
  font-size: 0.9rem;
}

.footer-tag {
  color: var(--bone-dim);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
  }

  .location-card {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .header-nav a:not(.btn) {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-bottom: 0;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .trophy-stage {
    height: 140px;
  }
}
