/* ============================================================
   FIRST SQUAD — Stylesheet
   ============================================================ */

/* ---------- 1. Font registration ---------- */
@font-face {
  font-family: 'Stara';
  src: url('../fonts/Stara-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Stara';
  src: url('../fonts/Stara-SemiBold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Stara';
  src: url('../fonts/Stara-ExtraBold.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* Fallback geométrica para preview antes de subir os .otf */
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

/* ---------- 2. Design tokens ---------- */
:root {
  /* Brand palette */
  --c-ink:       #1D252D;   /* Pantone 433 C — fundo dominante */
  --c-ink-deep:  #141A20;   /* variação mais profunda */
  --c-purple:    #211551;   /* Pantone 274 C — profundidade */
  --c-orange:    #DC582A;   /* Pantone 7579 C — acento */
  --c-orange-hi: #FF6F3C;   /* hover variant */
  --c-bone:      #D9D9D6;   /* Pantone Cool Gray 1 C */
  --c-bone-dim:  rgba(217, 217, 214, 0.62);
  --c-bone-faint:rgba(217, 217, 214, 0.34);
  --c-rule:      rgba(217, 217, 214, 0.10);
  --c-rule-bold: rgba(217, 217, 214, 0.20);

  /* Typography */
  --ff-display: 'Stara', 'Rajdhani', sans-serif;
  --ff-mono:    'JetBrains Mono', ui-monospace, monospace;

  /* Spacing */
  --pad-x: clamp(1.5rem, 5vw, 6rem);
  --container: 1400px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- 3. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--ff-display);
  font-weight: 500;
  background: var(--c-ink);
  color: var(--c-bone);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Ambient atmosphere: dot-matrix grid + scanlines + atmosphere wash + grain */
body::before {
  content: "";
  position: fixed; inset: 0;
  /* DOT MATRIX — small dots at every grid intersection. Discreet but visible. */
  background-image:
    /* primary dot matrix — bone color, mostly transparent */
    radial-gradient(circle at 50% 50%, rgba(217, 217, 214, 0.09) 1px, transparent 1.5px),
    /* secondary, larger spacing — orange "circuit nodes", very sparse */
    radial-gradient(circle at 50% 50%, rgba(220, 88, 42, 0.35) 1.2px, transparent 1.8px),
    /* atmosphere wash — top-left purple, bottom-right orange ember */
    radial-gradient(ellipse 90% 70% at 10% 0%, rgba(33, 21, 81, 0.55), transparent 65%),
    radial-gradient(ellipse 60% 50% at 100% 100%, rgba(220, 88, 42, 0.08), transparent 60%);
  background-size:
    32px 32px,     /* dot matrix — tight spacing for "tech" feel */
    192px 192px,   /* orange nodes — every 6th intersection */
    100% 100%,
    100% 100%;
  background-position: 0 0, 0 0, 0 0, 0 0;
  pointer-events: none;
  z-index: 0;
}
/* Top layer: horizontal scanlines + diagonal weave + grain */
body::after {
  content: "";
  position: fixed; inset: 0;
  background-image:
    /* film grain — keeps everything from feeling digitally flat */
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0.85 0 0 0 0 0.85 0 0 0 0 0.84 0 0 0 0.32 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"),
    /* CRT-style horizontal scanlines — very faint, 3px cycle */
    repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent 2px,
      rgba(217, 217, 214, 0.022) 2px,
      rgba(217, 217, 214, 0.022) 3px
    ),
    /* diagonal data-flow weave */
    repeating-linear-gradient(
      135deg,
      transparent 0,
      transparent 140px,
      rgba(220, 88, 42, 0.025) 140px,
      rgba(220, 88, 42, 0.025) 141px
    );
  opacity: 0.6;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 1;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

/* ---------- 4. Typography ---------- */
.eyebrow {
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-orange);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--c-orange);
}

.display {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 7.5vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.h1 {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.005em;
  text-transform: uppercase;
}

.h2 {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

/* Orange accent — for highlighting key words in any heading */
.accent {
  color: var(--c-orange);
  /* layered glow gives a "lit" tech feel — punchy but not aggressive */
  text-shadow:
    0 0 1px rgba(220, 88, 42, 0.6),
    0 0 18px rgba(220, 88, 42, 0.35),
    0 0 44px rgba(220, 88, 42, 0.18);
}

.body-lg {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  font-weight: 500;
  color: var(--c-bone-dim);
  max-width: 60ch;
}

.label-mono {
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-bone-dim);
}

/* ---------- 5. Layout ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
  position: relative;
  z-index: 2;
}

main { position: relative; z-index: 2; }

section { padding: clamp(2.5rem, 5vw, 4.75rem) 0; position: relative; }

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-rule-bold), transparent);
  margin: 0 var(--pad-x);
}

/* ---------- Case feature block (events / content cases with bg photo) ---------- */
.case-feature {
  position: relative;
  border: 1px solid var(--c-rule);
  padding: 3rem;
  overflow: hidden;
  isolation: isolate;
}
.case-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  opacity: 0.22;
  filter: contrast(1.05) saturate(0.9) brightness(0.95);
  z-index: -2;
  pointer-events: none;
  transition: opacity 0.7s var(--ease), transform 0.9s var(--ease);
}
.case-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at top right, rgba(33, 21, 81, 0.45), transparent 60%),
    linear-gradient(135deg, rgba(20, 26, 32, 0.65), rgba(20, 26, 32, 0.88));
  pointer-events: none;
}
.case-feature:hover .case-bg {
  opacity: 0.32;
  transform: scale(1.03);
}
.case-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  position: relative;
}
@media (max-width: 860px) {
  .case-feature { padding: 2rem; }
  .case-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ---------- Location / HQ section ---------- */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 960px) {
  .location-grid { grid-template-columns: 1fr; gap: 3rem; }
}

/* 2×2 photo gallery */
.location-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.loc-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--c-rule);
  background: var(--c-ink-deep);
  aspect-ratio: 4 / 3;
  clip-path: polygon(
    0 0, calc(100% - 16px) 0, 100% 16px,
    100% 100%, 16px 100%, 0 calc(100% - 16px)
  );
  isolation: isolate;
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.loc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.04) saturate(0.85) brightness(0.92);
  transition: filter 0.5s var(--ease), transform 0.6s var(--ease);
}
.loc-photo::before {
  /* subtle scanline overlay, matching player/video cards */
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg,
    transparent 0,
    transparent 2px,
    rgba(0, 0, 0, 0.22) 2px,
    rgba(0, 0, 0, 0.22) 3px
  );
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 2;
  opacity: 0.4;
  transition: opacity 0.4s var(--ease);
}
.loc-photo::after {
  /* bottom legibility fade for the caption */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(20, 26, 32, 0.92));
  pointer-events: none;
  z-index: 1;
}
.loc-photo figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.85rem;
  z-index: 3;
  font-family: var(--ff-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-bone);
  line-height: 1.3;
}
.loc-photo:hover {
  border-color: rgba(220, 88, 42, 0.5);
  box-shadow:
    0 0 0 1px rgba(220, 88, 42, 0.22),
    0 18px 50px -20px rgba(0, 0, 0, 0.6);
  transform: translateY(-3px);
}
.loc-photo:hover img {
  filter: contrast(1.08) saturate(1.1) brightness(1);
  transform: scale(1.04);
}
.loc-photo:hover::before { opacity: 0.18; }

.location-meta {
  margin-top: 2.5rem;
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-top: 1px solid var(--c-rule);
  padding-top: 1.5rem;
}
.location-meta li {
  display: grid;
  grid-template-columns: minmax(110px, 140px) 1fr;
  gap: 1.5rem;
  align-items: baseline;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--c-rule);
}
.location-meta li:last-child { border-bottom: none; padding-bottom: 0; }
.location-meta li > span:last-child {
  color: var(--c-bone-dim);
  font-size: 1rem;
}
@media (max-width: 520px) {
  .location-meta li { grid-template-columns: 1fr; gap: 0.35rem; }
}
  position: relative;
  border: 1px solid var(--c-rule);
  padding: 3rem;
  overflow: hidden;
  isolation: isolate;
}
.case-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  opacity: 0.22;
  filter: contrast(1.05) saturate(0.9) brightness(0.95);
  z-index: -2;
  pointer-events: none;
  transition: opacity 0.7s var(--ease), transform 0.9s var(--ease);
}
.case-feature::after {
  /* dark wash + brand purple from one corner */
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at top right, rgba(33, 21, 81, 0.45), transparent 60%),
    linear-gradient(135deg, rgba(20, 26, 32, 0.65), rgba(20, 26, 32, 0.88));
  pointer-events: none;
}
.case-feature:hover .case-bg {
  opacity: 0.32;
  transform: scale(1.03);
}
.case-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  position: relative;
}
@media (max-width: 860px) {
  .case-feature { padding: 2rem; }
  .case-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ---------- 6. Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.2rem 0;
  transition: background 0.3s var(--ease), backdrop-filter 0.3s var(--ease), border-color 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(20, 26, 32, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--c-rule);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--c-bone);
}
.brand-full {
  display: block;
  height: 36px;
  width: auto;
  transition: opacity 0.3s var(--ease), filter 0.3s var(--ease);
}
.brand:hover .brand-full {
  filter: brightness(1.15) drop-shadow(0 0 8px rgba(220, 88, 42, 0.25));
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-link {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-bone-dim);
  position: relative;
  padding: 0.4rem 0;
  transition: color 0.25s var(--ease);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 1px;
  width: 0;
  background: var(--c-orange);
  transition: width 0.3s var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--c-bone); }
.nav-link.active::after { width: 100%; }
.nav-link:hover::after { width: 100%; }

.lang-toggle {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--c-rule-bold);
  border-radius: 2px;
  overflow: hidden;
}
.lang-btn {
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  padding: 0.5rem 0.75rem;
  color: var(--c-bone-dim);
  transition: all 0.2s var(--ease);
}
.lang-btn.active {
  background: var(--c-orange);
  color: var(--c-ink);
}
.lang-btn:not(.active):hover { color: var(--c-bone); background: rgba(217, 217, 214, 0.04); }

.menu-toggle {
  display: none;
  width: 38px;
  height: 38px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--c-bone);
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.menu-toggle.open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

@media (max-width: 920px) {
  .menu-toggle { display: flex; }
  .nav {
    position: fixed;
    top: 0; right: 0;
    width: min(78vw, 360px);
    height: 100vh;
    background: var(--c-ink-deep);
    border-left: 1px solid var(--c-rule);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2rem 2rem;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
  }
  .nav.open { transform: translateX(0); }
  .nav-link { font-size: 1rem; }
}

/* ---------- 7. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.75rem;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  clip-path: polygon(
    0 0, calc(100% - 10px) 0, 100% 10px,
    100% 100%, 10px 100%, 0 calc(100% - 10px)
  );
  position: relative;
}
.btn-primary { background: var(--c-orange); color: var(--c-ink); }
.btn-primary:hover { background: var(--c-orange-hi); transform: translate(-2px, -2px); }
.btn-ghost {
  background: transparent;
  border: 1px solid var(--c-rule-bold);
  color: var(--c-bone);
}
.btn-ghost:hover { border-color: var(--c-orange); color: var(--c-orange); }
.btn .arrow { transition: transform 0.25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- 8. Hero ---------- */
.hero {
  min-height: 84vh;
  padding-top: clamp(4.5rem, 7vh, 6.5rem);
  padding-bottom: clamp(3.5rem, 6vh, 5rem);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
}
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
}

.hero-eyebrow { margin-bottom: 1.5rem; }
.hero-title {
  margin-bottom: 1.8rem;
  /* Hero-specific clamp — smaller than default .display to balance long headlines */
  font-size: clamp(2.3rem, 5vw, 4.6rem);
  letter-spacing: -0.015em;
}
.hero-title .outline {
  -webkit-text-stroke: 1.5px var(--c-bone);
  color: transparent;
}
.hero-desc { margin-bottom: 2.5rem; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-mark {
  display: block;
  width: 100%;
  max-width: 600px;
  height: auto;
  filter: drop-shadow(0 28px 80px rgba(220, 88, 42, 0.5))
          drop-shadow(0 0 24px rgba(220, 88, 42, 0.25));
  animation: floaty 8s var(--ease) infinite;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: -15%;
  background: radial-gradient(circle, rgba(220, 88, 42, 0.28), transparent 55%);
  z-index: -1;
  filter: blur(50px);
}

.hero-meta {
  position: absolute;
  bottom: 2rem;
  left: var(--pad-x);
  right: var(--pad-x);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-bone-faint);
}
.hero-meta .coord { display: flex; gap: 1.5rem; }
@media (max-width: 720px) { .hero-meta { display: none; } }

/* ---------- 9. Pillars grid ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--c-rule);
  border-bottom: 1px solid var(--c-rule);
}
.pillar {
  padding: 2.5rem 1.8rem;
  border-right: 1px solid var(--c-rule);
  position: relative;
  overflow: hidden;
  transition: background 0.3s var(--ease);
  isolation: isolate;
}
.pillar:last-child { border-right: none; }
.pillar:hover { background: rgba(220, 88, 42, 0.04); }

/* Background image variant — photos used as ambient texture behind the text */
.pillar-with-bg .pillar-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  opacity: 0.18;
  filter: contrast(1.05) saturate(0.85) brightness(0.95);
  z-index: -2;
  pointer-events: none;
  transition: opacity 0.6s var(--ease), transform 0.8s var(--ease), filter 0.6s var(--ease);
}
.pillar-with-bg::after {
  /* dark gradient overlay so text always reads regardless of photo */
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(29, 37, 45, 0.55) 0%,
    rgba(29, 37, 45, 0.82) 60%,
    rgba(29, 37, 45, 0.95) 100%
  );
  pointer-events: none;
}
.pillar-with-bg:hover .pillar-bg {
  opacity: 0.32;
  transform: scale(1.04);
  filter: contrast(1.1) saturate(1.05) brightness(1);
}

.pillar-num {
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--c-orange);
  margin-bottom: 2.5rem;
}
.pillar-title {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  line-height: 1.1;
}
.pillar-desc { font-size: 0.95rem; color: var(--c-bone-dim); max-width: 32ch; }
.pillar-arrow {
  display: inline-block;
  margin-top: 2rem;
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-orange);
  transition: transform 0.25s var(--ease);
}
.pillar:hover .pillar-arrow { transform: translateX(6px); }
@media (max-width: 1100px) and (min-width: 861px) {
  .pillars { grid-template-columns: 1fr 1fr; }
  .pillar:nth-child(odd) { border-right: 1px solid var(--c-rule); }
  .pillar:nth-child(even) { border-right: none; }
  .pillar:nth-child(1), .pillar:nth-child(2) { border-bottom: 1px solid var(--c-rule); }
}
@media (max-width: 860px) {
  .pillars { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid var(--c-rule); }
  .pillar:last-child { border-bottom: none; }
}

/* ---------- 10. Section heads & two-column layouts ---------- */
.section-head {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  margin-bottom: 2.5rem;
  align-items: end;
}
.section-head .h1 { max-width: 14ch; }
.section-head .body-lg { max-width: 56ch; }
@media (max-width: 860px) {
  .section-head { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ---------- 11. Stats / Number callouts ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  border-top: 1px solid var(--c-rule);
}
.stat {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--c-rule);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 4.5vw, 3.8rem);
  line-height: 0.95;
  color: var(--c-bone);
  margin-bottom: 0.7rem;
  letter-spacing: -0.02em;
}
.stat-num .small { font-size: 0.5em; color: var(--c-orange); }
.stat-label {
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-bone-dim);
}
@media (max-width: 700px) {
  .stat { border-right: none; border-bottom: 1px solid var(--c-rule); }
  .stat:last-child { border-bottom: none; }
}

/* ---------- 12. Operations / cards ---------- */
.ops-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 960px) { .ops-grid { grid-template-columns: 1fr; } }

.ops-card {
  background: linear-gradient(180deg, rgba(33, 21, 81, 0.20), rgba(20, 26, 32, 0.40));
  border: 1px solid var(--c-rule);
  padding: 2.2rem 2rem 2rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.ops-card::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(225deg, var(--c-orange) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.ops-card:hover { border-color: var(--c-orange); transform: translateY(-4px); }
.ops-card:hover::before { opacity: 0.4; }
.ops-card-num {
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--c-orange);
  margin-bottom: 1.5rem;
}
.ops-card-title {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 1.4rem;
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.ops-card-subtitle {
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-bone-dim);
  margin-bottom: 1.5rem;
}
.ops-card-desc { font-size: 0.92rem; color: var(--c-bone-dim); line-height: 1.6; }
.ops-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  border-top: 1px solid var(--c-rule);
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.ops-card-meta .tag { color: var(--c-orange); }

/* ---------- 13. Manifesto block ---------- */
.manifesto {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3.5rem;
  align-items: start;
}
@media (max-width: 860px) { .manifesto { grid-template-columns: 1fr; gap: 2.5rem; } }

.manifesto-quote {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.005em;
}
.manifesto-quote .mq-line {
  display: block;
  margin-bottom: 1.1em;
}
.manifesto-quote .mq-line:last-child { margin-bottom: 0; }
.manifesto-quote .mq-line > span { display: inline; }
.manifesto-quote .accent { color: var(--c-orange); }
.manifesto-quote .outline {
  -webkit-text-stroke: 1.2px var(--c-bone);
  color: transparent;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.2rem;
}
.values-grid .value-item {
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--c-rule);
}
.values-grid .value-item:last-child { border-bottom: none; padding-bottom: 0; }
.value-item .value-num {
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--c-orange);
  margin-bottom: 0.8rem;
}
.value-item .value-title {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.6rem;
}
.value-item .value-desc { font-size: 0.92rem; color: var(--c-bone-dim); }

/* ---------- 14. Player cards ---------- */
.team-strip {
  margin-top: 3rem;
  border-top: 1px solid var(--c-rule);
}
.team-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 1.5rem 0 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.team-name {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.team-meta { display: flex; gap: 1.5rem; }
.team-meta .badge {
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-orange);
  padding: 0.3rem 0.75rem;
  border: 1px solid var(--c-orange);
}

.players-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 860px) { .players-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; } }

.player-card {
  position: relative;
  background: var(--c-ink-deep);
  border: 1px solid var(--c-rule);
  overflow: hidden;
  transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
  /* angular notches on top-right and bottom-left — brand consistency */
  clip-path: polygon(
    0 0,
    calc(100% - 20px) 0,
    100% 20px,
    100% 100%,
    20px 100%,
    0 calc(100% - 20px)
  );
}

.player-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% 20%, rgba(33, 21, 81, 0.55), transparent 65%),
    linear-gradient(180deg, rgba(20, 26, 32, 0.35), var(--c-ink-deep));
}
.player-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: contrast(1.05) saturate(0.55) brightness(0.92);
  transition: filter 0.6s var(--ease), transform 0.7s var(--ease);
  will-change: transform, filter;
}
.player-card:hover .player-photo img {
  filter: contrast(1.1) saturate(1.15) brightness(1.02);
  transform: scale(1.05);
}

/* CRT-style scanlines on the photo — fade out on hover so the player "comes alive" */
.player-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg,
    transparent 0,
    transparent 2px,
    rgba(0, 0, 0, 0.3) 2px,
    rgba(0, 0, 0, 0.3) 3px
  );
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 2;
  opacity: 0.55;
  transition: opacity 0.4s var(--ease);
}
.player-card:hover .player-photo::before { opacity: 0.18; }

/* Bottom fade for legibility / cinematic feel */
.player-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, var(--c-ink-deep) 100%);
  pointer-events: none;
  z-index: 1;
}

.player-num {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 3;
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--c-bone);
  background: rgba(20, 26, 32, 0.7);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  padding: 0.35rem 0.7rem;
  border-left: 2px solid var(--c-orange);
  transition: border-color 0.4s var(--ease);
}

.player-info {
  padding: 1.4rem 1.5rem 1.6rem;
  position: relative;
}
.player-nick {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
  color: var(--c-bone);
}
.player-stat {
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--c-orange);
  text-transform: uppercase;
}

.player-card:hover {
  border-color: rgba(220, 88, 42, 0.55);
  box-shadow:
    0 0 0 1px rgba(220, 88, 42, 0.25),
    0 24px 60px -20px rgba(0, 0, 0, 0.6);
  transform: translateY(-4px);
}

/* ----- Team stats strip (below the player cards) ----- */
.team-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--c-rule);
}
@media (max-width: 720px) {
  .team-stats { grid-template-columns: 1fr; gap: 2rem; padding-top: 2rem; margin-top: 2.5rem; }
}
.team-stat-num {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 4.2vw, 3.2rem);
  letter-spacing: -0.005em;
  line-height: 1;
  color: var(--c-bone);
  margin-bottom: 0.65rem;
}
.team-stat-num .small {
  font-size: 0.5em;
  color: var(--c-orange);
  margin-left: 0.05em;
  letter-spacing: 0;
  font-weight: 600;
}
.team-stat-label {
  font-family: var(--ff-mono);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-bone-dim);
  max-width: 28ch;
  line-height: 1.5;
}

/* ---------- 15. Sponsors ---------- */
.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
  border: 1px solid var(--c-rule);
}
.sponsor-cell {
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--c-rule);
  border-bottom: 1px solid var(--c-rule);
  padding: 2rem;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-bone-dim);
  transition: all 0.3s var(--ease);
  position: relative;
}
.sponsor-cell:hover {
  background: rgba(220, 88, 42, 0.06);
  color: var(--c-orange);
}
.sponsor-cell .sponsor-placeholder {
  border: 1px dashed var(--c-rule-bold);
  padding: 1rem 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
}

.sponsor-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 5rem;
  align-items: center;
  padding: 3rem;
  border: 1px solid var(--c-rule);
  background: linear-gradient(120deg, rgba(33, 21, 81, 0.35), rgba(20, 26, 32, 0.20));
  position: relative;
  overflow: hidden;
}
.sponsor-cta::before {
  content: "";
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 4px;
  background: var(--c-orange);
}
@media (max-width: 760px) {
  .sponsor-cta { grid-template-columns: 1fr; padding: 2rem; }
}

/* ---------- 16. Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; gap: 3rem; } }

.contact-channels { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-channel {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--c-rule);
  transition: padding-left 0.25s var(--ease);
}
.contact-channel:hover { padding-left: 1rem; }
.contact-channel:hover .contact-channel-value { color: var(--c-orange); }
.contact-channel-label {
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-bone-faint);
}
.contact-channel-value {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  transition: color 0.25s var(--ease);
}

.form-group { margin-bottom: 1.5rem; }
.form-label {
  display: block;
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-bone-dim);
  margin-bottom: 0.5rem;
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  background: var(--c-ink-deep);
  border: 1px solid var(--c-rule-bold);
  color: var(--c-bone);
  padding: 0.85rem 1rem;
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 0.95rem;
  transition: border-color 0.25s var(--ease);
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--c-orange);
}
.form-textarea { min-height: 120px; resize: vertical; font-family: var(--ff-display); }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23D9D9D6' stroke-width='1.2' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }

/* ---------- 17. Footer ---------- */
.site-footer {
  border-top: 1px solid var(--c-rule);
  padding: 4rem 0 2rem;
  position: relative;
  z-index: 2;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand .brand-full { display: block; height: 44px; width: auto; margin-bottom: 1.5rem; opacity: 0.9; }
.footer-brand p { color: var(--c-bone-dim); font-size: 0.9rem; max-width: 32ch; line-height: 1.6; }

.footer-col h4 {
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-orange);
  margin-bottom: 1.2rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a {
  color: var(--c-bone-dim);
  font-size: 0.9rem;
  transition: color 0.2s var(--ease);
}
.footer-col a:hover { color: var(--c-bone); }

.footer-bottom {
  border-top: 1px solid var(--c-rule);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-bone-faint);
}

/* ---------- 18. Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.40s; }
.reveal[data-delay="6"] { transition-delay: 0.48s; }

/* ---------- 19. Page header (interior pages) ---------- */
.page-header {
  padding-top: clamp(8rem, 16vh, 12rem);
  padding-bottom: clamp(3rem, 7vh, 5rem);
  position: relative;
  overflow: hidden;
}
.page-header .container { position: relative; z-index: 2; }
.page-header-mark {
  position: absolute;
  top: 50%;
  right: -6%;
  transform: translateY(-50%);
  width: 50%;
  max-width: 700px;
  height: auto;
  opacity: 0.10;
  pointer-events: none;
  z-index: 0;
}
.breadcrumb {
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-bone-faint);
  margin-bottom: 1.5rem;
}
.breadcrumb .current { color: var(--c-orange); }

/* ---------- 20. Misc utilities ---------- */
.mt-4 { margin-top: 4rem; }
.mt-6 { margin-top: 6rem; }
.text-center { text-align: center; }
.divider-orange { width: 60px; height: 2px; background: var(--c-orange); margin-bottom: 2rem; }

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero-mark { animation: none; }
}

/* ====================================================================
   21. CONTENT PAGE — Video cards + lightbox
   ==================================================================== */

/* Section head — title left, status right */
.content-section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: end;
  margin-bottom: 3rem;
}
@media (max-width: 760px) {
  .content-section-head { grid-template-columns: 1fr; gap: 1.5rem; }
}
.content-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.7rem;
}
@media (max-width: 760px) { .content-meta { align-items: flex-start; } }

.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.55);
  animation: statusPulse 2.4s ease-out infinite;
  vertical-align: middle;
  margin-right: 0.4rem;
}
@keyframes statusPulse {
  0%   { box-shadow: 0 0 0 0   rgba(74, 222, 128, 0.55); }
  70%  { box-shadow: 0 0 0 10px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0   rgba(74, 222, 128, 0); }
}

.content-link {
  font-family: var(--ff-mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-orange);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.25s var(--ease);
}
.content-link:hover { transform: translateX(4px); }

/* ----- Grids ----- */
.shorts-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}
@media (max-width: 1100px) { .shorts-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) {
  .shorts-grid {
    grid-template-columns: repeat(5, 70%);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    margin: 0 calc(var(--pad-x) * -1);
    padding: 0 var(--pad-x);
    gap: 0.9rem;
  }
  .shorts-grid > * { scroll-snap-align: start; }
}
.longs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 760px) { .longs-grid { grid-template-columns: 1fr; } }

/* ----- Skeleton (loading state) ----- */
.content-skeleton {
  position: relative;
  aspect-ratio: var(--ar, 16/9);
  background: linear-gradient(
    100deg,
    rgba(255, 255, 255, 0.02) 30%,
    rgba(255, 255, 255, 0.06) 50%,
    rgba(255, 255, 255, 0.02) 70%
  );
  background-size: 200% 100%;
  animation: skeletonShine 1.6s linear infinite;
  border: 1px solid var(--c-rule);
  clip-path: polygon(
    0 0, calc(100% - 14px) 0, 100% 14px,
    100% 100%, 14px 100%, 0 calc(100% - 14px)
  );
}
@keyframes skeletonShine {
  0%   { background-position: -100% 0; }
  100% { background-position:  100% 0; }
}

.content-empty {
  grid-column: 1 / -1;
  padding: 3rem;
  text-align: center;
  font-family: var(--ff-mono);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--c-bone-dim);
  border: 1px dashed var(--c-rule);
}

/* ----- Video card ----- */
.vcard {
  position: relative;
  cursor: pointer;
  background: var(--c-ink-deep);
  border: 1px solid var(--c-rule);
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  clip-path: polygon(
    0 0, calc(100% - 16px) 0, 100% 16px,
    100% 100%, 16px 100%, 0 calc(100% - 16px)
  );
  display: flex;
  flex-direction: column;
}
.vcard:hover {
  transform: translateY(-4px);
  border-color: rgba(220, 88, 42, 0.55);
  box-shadow:
    0 0 0 1px rgba(220, 88, 42, 0.25),
    0 24px 60px -22px rgba(0, 0, 0, 0.6);
}

/* Media wrapper holds the thumb + overlays */
.vcard-media {
  position: relative;
  aspect-ratio: var(--ar, 16/9);
  overflow: hidden;
  background: var(--c-ink-deep);
}
.vcard-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.85) brightness(0.92);
  transition: filter 0.5s var(--ease), transform 0.6s var(--ease);
}
.vcard:hover .vcard-thumb {
  filter: contrast(1.08) saturate(1.1) brightness(1);
  transform: scale(1.04);
}
.vcard-thumb-placeholder {
  background:
    radial-gradient(ellipse at center, rgba(33, 21, 81, 0.55), transparent 70%),
    linear-gradient(135deg, rgba(33, 21, 81, 0.25), rgba(20, 26, 32, 0.85));
}
/* Embed a faint logo mark in the center so empty cards feel intentional */
.vcard-thumb-placeholder::after {
  content: "";
  position: absolute;
  inset: 25% 25%;
  background: url("../assets/logo-mark-orange.png") center / contain no-repeat;
  opacity: 0.10;
  filter: drop-shadow(0 0 20px rgba(220, 88, 42, 0.4));
}

/* Scanlines overlay — matches player cards */
.vcard-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg,
    transparent 0,
    transparent 2px,
    rgba(0, 0, 0, 0.28) 2px,
    rgba(0, 0, 0, 0.28) 3px
  );
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 2;
  opacity: 0.5;
  transition: opacity 0.4s var(--ease);
}
.vcard:hover .vcard-media::before { opacity: 0.15; }

/* Bottom legibility fade */
.vcard-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(20, 26, 32, 0.9));
  pointer-events: none;
  z-index: 1;
}

/* Play icon — centered, appears on hover */
.vcard-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  color: var(--c-bone);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
  z-index: 3;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
  pointer-events: none;
}
.vcard-play::before {
  content: "";
  position: absolute;
  inset: 50% 50%;
  width: 64px;
  height: 64px;
  margin: -32px 0 0 -32px;
  border-radius: 50%;
  background: rgba(220, 88, 42, 0.92);
  z-index: -1;
  transition: transform 0.35s var(--ease);
}
.vcard:hover .vcard-play {
  opacity: 1;
  transform: scale(1);
}
.vcard:hover .vcard-play::before { transform: scale(1.05); }

/* Duration badge */
.vcard-duration {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  z-index: 3;
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--c-bone);
  background: rgba(20, 26, 32, 0.85);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  padding: 0.3rem 0.55rem;
  border-left: 2px solid var(--c-orange);
}

/* Info block below media */
.vcard-info {
  padding: 1rem 1.1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
}
.vcard-title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.3;
  letter-spacing: 0.01em;
  color: var(--c-bone);
  /* clamp 2 lines */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.vcard-long .vcard-title { font-size: 1.05rem; }
.vcard-meta {
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-bone-faint);
}
.vcard-views { display: inline-flex; align-items: baseline; gap: 0.3rem; }
.vcard-views-label { color: var(--c-bone-faint); }

/* ====== Video lightbox ====== */
.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(20, 26, 32, 0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
}
.video-lightbox.open {
  opacity: 1;
  visibility: visible;
}
.video-lightbox-frame {
  position: relative;
  width: 100%;
  max-width: 1100px;
  max-height: calc(100vh - 8rem);
  aspect-ratio: 16/9;
  border: 1px solid var(--c-rule);
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.8);
  background: #000;
}
.video-lightbox-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.video-lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border: 1px solid var(--c-rule);
  background: rgba(20, 26, 32, 0.85);
  color: var(--c-bone);
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10000;
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}
.video-lightbox-close:hover {
  border-color: var(--c-orange);
  color: var(--c-orange);
  transform: rotate(90deg);
}

.no-scroll { overflow: hidden; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .status-dot { animation: none; }
  .content-skeleton { animation: none; }
}

/* Make pillar work as a link too (when wrapped in <a>) */
a.pillar-link {
  color: inherit;
  text-decoration: none;
  display: block;
}

/* ----- Demo mode banner ----- */
.demo-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  z-index: 9000;
  display: flex;
  justify-content: center;
  pointer-events: none;
  animation: demoBannerSlide 0.6s var(--ease) 0.3s both;
}
@keyframes demoBannerSlide {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.demo-banner.hidden { display: none; }
.demo-banner-inner {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 720px;
  padding: 1rem 1.25rem 1rem 1rem;
  background: rgba(20, 26, 32, 0.96);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(220, 88, 42, 0.45);
  box-shadow: 0 18px 50px -10px rgba(0, 0, 0, 0.6),
              0 0 0 1px rgba(220, 88, 42, 0.15);
  clip-path: polygon(
    0 0, calc(100% - 12px) 0, 100% 12px,
    100% 100%, 12px 100%, 0 calc(100% - 12px)
  );
}
.demo-banner-dot {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--c-orange);
  box-shadow: 0 0 0 0 rgba(220, 88, 42, 0.55);
  animation: statusPulse 2.2s ease-out infinite;
}
.demo-banner-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}
.demo-banner-text strong {
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  color: var(--c-orange);
}
.demo-banner-text span {
  font-size: 0.82rem;
  color: var(--c-bone-dim);
  line-height: 1.4;
}
.demo-banner-close {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 1px solid var(--c-rule);
  background: transparent;
  color: var(--c-bone-faint);
  font-size: 0.8rem;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.demo-banner-close:hover {
  color: var(--c-orange);
  border-color: var(--c-orange);
}
@media (max-width: 600px) {
  .demo-banner { bottom: 1rem; left: 1rem; right: 1rem; }
  .demo-banner-text span { font-size: 0.75rem; }
}

/* ============================================================
   13. Credibilidade — operadores, não amadores
   ============================================================ */
.cred-band { border-top: 1px solid var(--c-rule); border-bottom: 1px solid var(--c-rule); }
.cred-head { display: block; }
.cred-cols { display: grid; grid-template-columns: 1fr 1.3fr; gap: 3.5rem; align-items: start; margin-top: 1.5rem; }
@media (max-width: 860px) { .cred-cols { grid-template-columns: 1fr; gap: 1.75rem; } }
.cred-side { padding-top: 0.4rem; }
.cred-lead { max-width: 16ch; margin-top: 0; font-size: clamp(1.8rem, 3.4vw, 3rem); }

/* ----- Founders grid ----- */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 1rem; }
@media (max-width: 860px) { .team-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; } }

.founder-card {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--c-ink-deep);
  border: 1px solid var(--c-rule);
  padding: 2rem 1.8rem 1.9rem;
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
}
.founder-card:hover {
  border-color: rgba(220, 88, 42, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 0 0 1px rgba(220, 88, 42, 0.2), 0 24px 60px -20px rgba(0, 0, 0, 0.6);
}
.founder-role {
  font-family: var(--ff-mono); font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--c-orange);
  display: inline-flex; align-items: center; gap: 0.55rem;
}
.founder-role::before { content: ""; width: 14px; height: 1px; background: var(--c-orange); }
.founder-nick {
  font-family: var(--ff-display); font-weight: 800; text-transform: uppercase;
  font-size: 1.9rem; line-height: 1; letter-spacing: 0.02em; color: var(--c-bone);
  margin-top: 0.95rem;
}
.founder-name {
  font-family: var(--ff-mono); font-size: 0.72rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--c-bone-dim); margin-top: 0.55rem;
}
.founder-cred { font-size: 0.95rem; color: var(--c-bone-dim); margin-top: 1.15rem; line-height: 1.5; }

details.founder-more { margin-top: auto; padding-top: 1.1rem; }
details.founder-more > summary {
  font-family: var(--ff-mono); font-size: 0.68rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--c-orange); cursor: pointer;
  list-style: none; display: inline-flex; align-items: center; gap: 0.5rem;
  border-top: 1px solid var(--c-rule); padding-top: 1.1rem; width: 100%;
}
details.founder-more > summary::-webkit-details-marker { display: none; }
details.founder-more > summary .arrow { transition: transform 0.25s var(--ease); }
details.founder-more[open] > summary .arrow { transform: rotate(90deg); }
details.founder-more p { font-size: 0.9rem; color: var(--c-bone-dim); margin-top: 0.95rem; line-height: 1.55; }

/* ----- Credibility proof / logo walls ----- */
.cred-proof {
  margin-top: 3rem;
  border: 1px solid var(--c-rule);
  background: rgba(20, 26, 32, 0.4);
  padding: clamp(1.8rem, 4vw, 3rem);
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 22px 100%, 0 calc(100% - 22px));
}
.cred-proof + .cred-proof { margin-top: 1.5rem; }
.cred-proof-head {
  display: flex; flex-wrap: wrap; gap: 1.5rem 3rem;
  align-items: baseline; justify-content: space-between;
}
.cred-proof-id .founder-role { margin-bottom: 0.7rem; }
.cred-proof-id .founder-nick { margin-top: 0; }
.cred-proof-id .founder-name { margin-top: 0.5rem; }
.cred-proof-label {
  font-family: var(--ff-mono); font-size: 0.74rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--c-bone-dim); max-width: 42ch; line-height: 1.7;
}
.cred-proof-label strong { color: var(--c-bone); font-weight: 500; }
.proof-stats { display: flex; gap: 2.5rem; flex-wrap: wrap; }
.proof-stat .n { font-family: var(--ff-display); font-weight: 800; font-size: 1.7rem; color: var(--c-orange); line-height: 1; }
.proof-stat .l { font-family: var(--ff-mono); font-size: 0.64rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--c-bone-dim); margin-top: 0.4rem; max-width: 18ch; }

.logo-wall { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.7rem; }
.logo-chip {
  font-family: var(--ff-mono); font-size: 0.78rem; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--c-bone-dim);
  border: 1px solid var(--c-rule-bold); padding: 0.55rem 0.9rem;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
  clip-path: polygon(0 0, calc(100% - 7px) 0, 100% 7px, 100% 100%, 7px 100%, 0 calc(100% - 7px));
}
.logo-chip:hover { color: var(--c-bone); border-color: rgba(220, 88, 42, 0.5); }
.cred-disclaimer {
  font-family: var(--ff-mono); font-size: 0.66rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--c-bone-faint); margin-top: 1.4rem;
}

/* ----- "Ao nascer, a First uniu:" lead above the merge stats ----- */
.cred-merge { margin-top: 2.5rem; }
.cred-merge-lead {
  font-family: var(--ff-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(1.05rem, 1.6vw, 1.4rem);
  letter-spacing: 0.01em;
  color: var(--c-bone);
  margin-bottom: 1.5rem;
}

/* ----- Centered, artistic manifesto statement (sobre) ----- */
.manifesto-quote--center {
  text-align: center;
  max-width: 26ch;
  margin-inline: auto;
}
.manifesto-quote--center > span { display: block; line-height: 1.02; }
.manifesto-quote--center .mq-c-sm {
  font-size: 0.4em;
  color: var(--c-bone-dim);
  letter-spacing: 0.05em;
  line-height: 1.35;
  margin: 0.55em 0;
}
.manifesto-quote--center .mq-c-up { font-size: 1.12em; margin-top: 0.04em; }
.manifesto-quote--center .mq-c-climax { font-size: 1.34em; margin-top: 0.08em; }
@media (max-width: 560px) { .manifesto-quote--center { max-width: 15ch; } }

/* tighten proof block top gap after the lighter spacing pass */
.cred-proof { margin-top: 2rem; }

/* ----- Category tag above each achievement stat ----- */
.stat-cat {
  display: block;
  font-family: var(--ff-mono);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-orange);
  margin-bottom: 0.9rem;
}

/* ============================================================
   14. Talent management (4º vertical)
   ============================================================ */
.tm-types { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 1rem; }
@media (max-width: 820px) { .tm-types { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .tm-types { grid-template-columns: 1fr; } }
.tm-type {
  border: 1px solid var(--c-rule);
  background: var(--c-ink-deep);
  padding: 1.6rem 1.5rem;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
}
.tm-type:hover { border-color: rgba(220, 88, 42, 0.5); transform: translateY(-3px); }
.tm-type .n { font-family: var(--ff-mono); font-size: 0.66rem; letter-spacing: 0.2em; color: var(--c-bone-faint); }
.tm-type h3 { font-family: var(--ff-display); font-weight: 800; text-transform: uppercase; font-size: 1.2rem; letter-spacing: 0.01em; margin-top: 0.7rem; color: var(--c-bone); }
.tm-type p { font-size: 0.9rem; color: var(--c-bone-dim); margin-top: 0.5rem; line-height: 1.5; }

/* ----- Method steps ----- */
.tm-steps { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--c-rule); border-bottom: 1px solid var(--c-rule); }
@media (max-width: 900px) { .tm-steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .tm-steps { grid-template-columns: 1fr; } }
.tm-step { padding: 2.25rem 1.8rem; border-right: 1px solid var(--c-rule); }
.tm-step:last-child { border-right: none; }
@media (max-width: 900px) { .tm-step { border-right: 1px solid var(--c-rule); border-bottom: 1px solid var(--c-rule); } .tm-step:nth-child(even) { border-right: none; } }
@media (max-width: 520px) { .tm-step { border-right: none; } }
.tm-step .s { font-family: var(--ff-mono); font-size: 0.7rem; letter-spacing: 0.2em; color: var(--c-orange); }
.tm-step h3 { font-family: var(--ff-display); font-weight: 800; text-transform: uppercase; font-size: 1.15rem; margin-top: 1rem; color: var(--c-bone); }
.tm-step p { font-size: 0.9rem; color: var(--c-bone-dim); margin-top: 0.7rem; line-height: 1.5; }

/* ----- Dual CTA split (brand primary, talent secondary) ----- */
.tm-cta { display: grid; grid-template-columns: 1.25fr 1fr; gap: 1.5rem; }
@media (max-width: 820px) { .tm-cta { grid-template-columns: 1fr; } }
.tm-cta-card {
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid var(--c-rule);
  display: flex; flex-direction: column;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}
.tm-cta-brand { background: linear-gradient(135deg, rgba(220, 88, 42, 0.16), rgba(33, 21, 81, 0.28)); border-color: rgba(220, 88, 42, 0.4); }
.tm-cta-talent { background: var(--c-ink-deep); }
.tm-cta-card .tag { font-family: var(--ff-mono); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--c-orange); }
.tm-cta-card h3 { font-family: var(--ff-display); font-weight: 800; text-transform: uppercase; font-size: clamp(1.4rem, 2.4vw, 2rem); line-height: 1.05; margin-top: 1rem; color: var(--c-bone); }
.tm-cta-card p { color: var(--c-bone-dim); margin-top: 1rem; line-height: 1.55; flex: 1; }
.tm-cta-card .btn { margin-top: 1.75rem; align-self: flex-start; }

/* ----- Especialista: menor destaque (box compacto) ----- */
.cred-proof--compact { padding: clamp(1.1rem, 2.2vw, 1.6rem); max-width: 640px; }
.cred-proof--compact .founder-nick { font-size: 1.3rem; }
.cred-proof--compact .founder-name { font-size: 0.92rem; }
.cred-proof--compact .cred-proof-label { font-size: 0.64rem; }
.cred-proof--compact .logo-chip { font-size: 0.64rem; padding: 0.4rem 0.7rem; }


/* ----- Ordinal "º" sobrescrito (1º) ----- */
.stat-num .small.ord,
.team-stat-num .small.ord {
  vertical-align: top;
  font-size: 0.4em;
  margin-left: 0.04em;
  line-height: 1;
}

/* ----- Stat com palavra (ex.: "Mundiais") equilibrado com os números ----- */
.team-stat-num--word {
  font-size: clamp(1.9rem, 3.1vw, 2.7rem);
  color: var(--c-orange);
  letter-spacing: 0.01em;
  line-height: 1.05;
}
