/* The Argentine Goat — custom theme */

:root {
  --arg-blue: #74acdf;
  --arg-blue-deep: #4a8fc9;
  --arg-blue-dark: #1a3a5c;
  --arg-white: #f4f8fc;
  --arg-gold: #f6b40e;
  --arg-gold-bright: #ffd54f;
  --arg-gold-dark: #c98a00;
  --storm: #0a0f18;
  --storm-mid: #121c2b;
  --storm-light: #1c2a40;
  --text: #e8f0fa;
  --text-muted: #9eb4cc;
  --border: rgba(116, 172, 223, 0.22);
  --glow-blue: rgba(116, 172, 223, 0.35);
  --glow-gold: rgba(246, 180, 14, 0.4);
  --font-display: "Bebas Neue", "Arial Narrow", sans-serif;
  --font-body: "Barlow Condensed", "Segoe UI", sans-serif;
  --header-h: 76px;
  --radius: 14px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--storm);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.site-shell {
  position: relative;
  z-index: 2;
}

/* Background */
.pitch-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(116, 172, 223, 0.12), transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(246, 180, 14, 0.06), transparent 50%),
    linear-gradient(180deg, #0c1420 0%, var(--storm) 40%, #080d14 100%);
}

.pitch-lines {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 98px,
      rgba(255, 255, 255, 0.5) 98px,
      rgba(255, 255, 255, 0.5) 100px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 98px,
      rgba(255, 255, 255, 0.5) 98px,
      rgba(255, 255, 255, 0.5) 100px
    );
}

.pitch-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: floatGlow 12s ease-in-out infinite;
}

.pitch-glow-a {
  width: 420px;
  height: 420px;
  top: 10%;
  left: -8%;
  background: var(--glow-blue);
}

.pitch-glow-b {
  width: 360px;
  height: 360px;
  bottom: 15%;
  right: -6%;
  background: var(--glow-gold);
  animation-delay: -6s;
}

#particleCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.flag-ribbon {
  position: fixed;
  top: 0;
  width: 6px;
  height: 100vh;
  z-index: 1;
  opacity: 0.35;
  background: repeating-linear-gradient(
    180deg,
    var(--arg-blue) 0px,
    var(--arg-blue) 40px,
    var(--arg-white) 40px,
    var(--arg-white) 80px
  );
  animation: ribbonWave 8s ease-in-out infinite;
}

.flag-ribbon-left { left: 0; }
.flag-ribbon-right { right: 0; animation-delay: -4s; }

@keyframes ribbonWave {
  0%, 100% { opacity: 0.25; transform: scaleX(1); }
  50% { opacity: 0.45; transform: scaleX(1.3); }
}

@keyframes floatGlow {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -30px) scale(1.08); }
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(10, 15, 24, 0.88);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--arg-gold);
  object-fit: cover;
  box-shadow: 0 0 20px var(--glow-gold);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.12em;
  color: var(--arg-gold);
}

.brand-sub {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  color: var(--text-muted);
  margin-top: 2px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  transition: color 0.25s;
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--arg-gold);
  transition: width 0.3s var(--ease);
}

.site-nav a:hover {
  color: var(--arg-white);
}

.site-nav a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 18px;
  background: linear-gradient(135deg, var(--arg-gold), var(--arg-gold-dark));
  color: var(--storm) !important;
  border-radius: 999px;
  font-weight: 700 !important;
  box-shadow: 0 4px 20px var(--glow-gold);
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 28px var(--glow-gold);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--arg-white);
  transition: transform 0.3s;
}

/* Sections */
.section {
  position: relative;
  padding: 100px 0;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-inner.wide { max-width: 1240px; }
.section-inner.narrow { max-width: 820px; }

.section-kicker {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--arg-blue);
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  letter-spacing: 0.06em;
  line-height: 0.95;
  background: linear-gradient(180deg, var(--arg-white), var(--arg-blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-head {
  text-align: center;
  margin-bottom: 56px;
}

/* Hero */
.section-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: calc(var(--header-h) + 40px);
  padding-bottom: 80px;
  overflow: hidden;
}

.hero-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(116, 172, 223, 0.15);
  pointer-events: none;
}

.hero-orbit-1 {
  width: 500px;
  height: 500px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: orbitSpin 40s linear infinite;
}

.hero-orbit-2 {
  width: 650px;
  height: 650px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: orbitSpin 55s linear infinite reverse;
  opacity: 0.5;
}

.hero-orbit-3 {
  width: 380px;
  height: 380px;
  top: 20%;
  right: 10%;
  border-color: rgba(246, 180, 14, 0.12);
  animation: orbitSpin 30s linear infinite;
}

@keyframes orbitSpin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--arg-blue);
  margin-bottom: 16px;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 10px #4ade80;
  animation: pulseDot 1.8s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.title-line {
  display: block;
  color: var(--arg-white);
  text-shadow: 0 0 40px var(--glow-blue);
}

.title-gold {
  background: linear-gradient(135deg, var(--arg-gold-bright), var(--arg-gold), var(--arg-gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 8px var(--glow-gold));
}

.hero-symbol {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.15em;
  color: var(--arg-blue);
  margin-bottom: 12px;
}

.hero-bio {
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 28px;
  max-width: 420px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.stat-pill {
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  background: rgba(26, 58, 92, 0.4);
}

.stat-pill span {
  color: var(--arg-gold);
  margin-right: 6px;
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.visual-ring {
  position: absolute;
  width: 110%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2px solid rgba(246, 180, 14, 0.25);
  animation: ringPulse 4s ease-in-out infinite;
}

@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.05); opacity: 1; }
}

.visual-frame {
  position: relative;
  width: min(420px, 90vw);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--arg-gold);
  box-shadow:
    0 0 60px var(--glow-gold),
    0 0 120px var(--glow-blue),
    inset 0 0 40px rgba(0, 0, 0, 0.4);
  animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.hero-logo,
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video {
  opacity: 0;
  transition: opacity 0.6s;
}

#heroStage.has-video .hero-video {
  opacity: 1;
}

#heroStage.has-video .hero-logo {
  opacity: 0;
}

#heroStage.pulse-glow .visual-frame {
  box-shadow:
    0 0 80px var(--glow-gold),
    0 0 160px var(--glow-blue);
}

.jersey-number {
  position: absolute;
  bottom: -10px;
  right: 10%;
  font-family: var(--font-display);
  font-size: 8rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px rgba(116, 172, 223, 0.2);
  pointer-events: none;
  user-select: none;
}

.hero-ticker {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  background: rgba(10, 15, 24, 0.7);
  backdrop-filter: blur(8px);
  padding: 14px 0;
}

.ticker-track {
  display: flex;
  gap: 48px;
  animation: tickerScroll 30s linear infinite;
  white-space: nowrap;
}

.ticker-track span {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  border-radius: 999px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.btn-gold {
  background: linear-gradient(135deg, var(--arg-gold-bright), var(--arg-gold), var(--arg-gold-dark));
  color: var(--storm);
  box-shadow: 0 6px 24px var(--glow-gold);
}

.btn-gold:hover {
  box-shadow: 0 10px 36px var(--glow-gold);
}

.btn-gold .btn-icon {
  filter: brightness(0.15);
}

.btn-outline {
  border: 2px solid var(--arg-blue);
  color: var(--arg-white);
  background: rgba(116, 172, 223, 0.08);
}

.btn-outline:hover {
  background: rgba(116, 172, 223, 0.18);
  box-shadow: 0 0 24px var(--glow-blue);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.05rem;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Contract */
.section-contract {
  padding: 40px 0;
}

.contract-row {
  display: flex;
  gap: 12px;
  align-items: stretch;
}

.contract-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 20px;
  background: rgba(18, 28, 43, 0.8);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
}

.contract-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--arg-blue);
}

.contract-text {
  font-family: "Courier New", monospace;
  font-size: 0.9rem;
  word-break: break-all;
  color: var(--arg-white);
}

.btn-copy {
  padding: 0 24px;
  background: linear-gradient(135deg, var(--arg-blue), var(--arg-blue-deep));
  color: var(--storm);
  font-weight: 700;
  letter-spacing: 0.14em;
  border-radius: var(--radius);
  transition: transform 0.2s, background 0.2s;
}

.btn-copy:hover { transform: scale(1.03); }
.btn-copy.copied { background: #4ade80; }

/* About */
.section-about {
  background: linear-gradient(180deg, transparent, rgba(26, 58, 92, 0.15), transparent);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 56px;
}

.symbol-tag {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.12em;
  color: var(--arg-gold);
  margin-bottom: 16px;
}

.about-lead {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.45;
  margin-bottom: 16px;
  color: var(--arg-white);
}

.about-body {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 28px;
}

.about-gallery {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: stretch;
}

.gallery-frame {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  background: rgba(18, 28, 43, 0.5);
  transition: transform 0.4s var(--ease), border-color 0.3s;
}

.gallery-frame:hover {
  transform: translateY(-4px);
  border-color: rgba(246, 180, 14, 0.45);
}

.gallery-frame img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

.gallery-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  padding: 8px 14px;
  background: linear-gradient(135deg, var(--arg-gold), var(--arg-gold-dark));
  color: var(--storm);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  border-radius: 6px;
}

.gallery-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.gallery-stack .gallery-frame {
  animation: cardBob 5s ease-in-out infinite;
}

.gallery-stack .gallery-frame:last-child {
  animation-delay: -2.5s;
}

@keyframes cardBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.legend-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.legend-card {
  padding: 28px 24px;
  background: rgba(18, 28, 43, 0.7);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.3s var(--ease), border-color 0.3s;
}

.legend-card:hover {
  transform: translateY(-4px);
  border-color: var(--arg-gold);
}

.legend-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--arg-gold);
  opacity: 0.6;
  display: block;
  margin-bottom: 8px;
}

.legend-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.legend-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.image-mosaic {
  columns: 3;
  column-gap: 16px;
}

.mosaic-item {
  break-inside: avoid;
  margin: 0 0 16px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(18, 28, 43, 0.55);
  transition: transform 0.35s var(--ease), border-color 0.3s, box-shadow 0.35s;
}

.mosaic-item:hover {
  transform: translateY(-4px);
  border-color: rgba(116, 172, 223, 0.45);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.mosaic-item img {
  width: 100%;
  height: auto;
  display: block;
}

/* How to Buy */
.section-buy {
  background: linear-gradient(180deg, rgba(26, 58, 92, 0.1), transparent);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.step-card {
  position: relative;
  padding: 28px 22px;
  background: rgba(18, 28, 43, 0.75);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}

.step-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--arg-blue), var(--arg-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.step-card:hover::before {
  transform: scaleX(1);
}

.step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--arg-gold);
  opacity: 0.5;
  margin-bottom: 12px;
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 20px;
}

.step-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  opacity: 0.85;
}

.buy-cta {
  text-align: center;
}

/* Chart */
.chart-panel {
  background: rgba(18, 28, 43, 0.8);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.chart-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  background: rgba(26, 58, 92, 0.3);
}

.chart-live {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.chart-open-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--arg-blue);
  transition: color 0.2s;
}

.chart-open-link img {
  width: 24px;
  height: 24px;
}

.chart-open-link:hover {
  color: var(--arg-gold);
}

.chart-embed-wrap {
  position: relative;
  min-height: 520px;
  background: #0d1117;
}

.chart-embed-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.chart-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: var(--text-muted);
}

.chart-placeholder img {
  width: 64px;
  height: 64px;
  opacity: 0.5;
}

.chart-placeholder code {
  color: var(--arg-gold);
  font-size: 0.85rem;
}

/* Join Us */
.section-join {
  background:
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(116, 172, 223, 0.1), transparent),
    linear-gradient(180deg, transparent, rgba(246, 180, 14, 0.04));
}

.join-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}

.join-banner-wrap {
  position: relative;
}

.banner-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at center, var(--glow-gold), transparent 70%);
  filter: blur(30px);
  opacity: 0.5;
  animation: bannerGlow 4s ease-in-out infinite;
}

@keyframes bannerGlow {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 0.65; }
}

.join-banner {
  position: relative;
  width: 100%;
  border-radius: var(--radius);
  border: 3px solid var(--arg-gold);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.join-title {
  margin-bottom: 20px;
}

.join-body {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  background: rgba(26, 58, 92, 0.4);
  transition: border-color 0.25s, background 0.25s;
}

.chip img {
  width: 18px;
  height: 18px;
}

.chip-link:hover {
  border-color: var(--arg-gold);
  background: rgba(246, 180, 14, 0.1);
}

/* Footer */
.site-footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  background: rgba(8, 13, 20, 0.8);
}

.footer-shell {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--arg-gold);
  object-fit: cover;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
}

.footer-tag {
  font-size: 0.85rem;
  color: var(--arg-gold);
  letter-spacing: 0.12em;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--arg-gold);
}

.footer-copy {
  width: 100%;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  opacity: 0.7;
  margin-top: 8px;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid,
  .about-grid,
  .join-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual { order: -1; }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .legend-strip {
    grid-template-columns: 1fr;
  }

  .image-mosaic {
    columns: 2;
  }

  .gallery-stack {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 24px;
    background: rgba(10, 15, 24, 0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.35s var(--ease), opacity 0.35s;
    gap: 20px;
  }

  body.nav-open .site-nav {
    transform: translateY(0);
    opacity: 1;
  }

  body.nav-open .nav-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  body.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.nav-open .nav-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .contract-row {
    flex-direction: column;
  }

  .btn-copy {
    padding: 14px;
  }

  .jersey-number {
    font-size: 5rem;
    right: 5%;
  }

  .image-mosaic {
    columns: 1;
  }

  .flag-ribbon { display: none; }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
