/* ============================================================
   Aldecogonzalodt — Pizarra Táctica aesthetic
   Dark pitch · chalk lines · editorial typography
   ============================================================ */

:root {
  --pitch:       #0B100B;
  --pitch-2:     #0F1410;
  --pitch-3:     #151B15;
  --card:        #121812;
  --chalk:       #F2EFE4;
  --chalk-dim:   #C7C3B5;
  --chalk-mute:  #8B897E;
  --chalk-low:   #5C5B52;
  --line:        rgba(242, 239, 228, 0.12);
  --line-strong: rgba(242, 239, 228, 0.22);
  --grass:       #97C93D;
  --grass-soft:  #7CA830;
  --grass-tint:  rgba(151, 201, 61, 0.14);
  --whistle:     #EA5E4C;
  --ball:        #F1D263;

  --radius-sm: 6px;
  --radius:    14px;
  --radius-lg: 22px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --f-display: 'Big Shoulders Display', 'Inter Tight', system-ui, sans-serif;
  --f-serif:   'Fraunces', Georgia, 'Times New Roman', serif;
  --f-body:    'Inter Tight', system-ui, -apple-system, sans-serif;
  --f-mono:    'JetBrains Mono', ui-monospace, SFMono-Regular, monospace;

  --page-pad: clamp(20px, 4vw, 56px);
  --section-pad: clamp(80px, 10vw, 140px);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--f-body);
  background: var(--pitch);
  color: var(--chalk);
  line-height: 1.55;
  overflow-x: hidden;
  font-feature-settings: 'ss01', 'cv11';
  letter-spacing: -0.006em;
}

::selection { background: var(--grass); color: var(--pitch); }

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

em { font-style: italic; font-family: var(--f-serif); font-weight: 400; }

/* --- Atmosphere ------------------------------------------------- */

.grain {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 80;
  opacity: 0.07;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='3'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.6 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.field-lines {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  color: var(--chalk);
  opacity: 0.045;
}
.field-lines svg { width: 100%; height: 100%; }

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(700px 500px at 85% 10%, rgba(151, 201, 61, 0.09), transparent 70%),
    radial-gradient(900px 600px at 10% 90%, rgba(234, 94, 76, 0.06), transparent 70%);
}

/* --- Typography scales ----------------------------------------- */

.chalk {
  position: relative;
  display: inline-block;
  color: var(--chalk);
}
.chalk::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: 0.08em;
  height: 0.18em;
  background: var(--grass);
  z-index: -1;
  transform: skewX(-8deg) translateY(0);
  opacity: 0.85;
}

/* --- Nav --------------------------------------------------------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 18px var(--page-pad);
  background: color-mix(in srgb, var(--pitch) 72%, transparent);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--line);
}

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

.brand-mark {
  width: 42px; height: 42px;
  display: grid;
  place-items: center;
  background: var(--chalk);
  color: var(--pitch);
  border-radius: 4px;
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 0.02em;
  position: relative;
  box-shadow:
    0 0 0 2px var(--pitch),
    0 0 0 3px var(--chalk);
}
.brand-mark-inner { line-height: 1; transform: translateY(1px); }

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-name {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: 0.005em;
  text-transform: uppercase;
}
.brand-dt { color: var(--grass); }
.brand-sub {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--chalk-mute);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 28px;
  justify-self: center;
}
.nav-links a {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--chalk-dim);
  transition: color 0.25s var(--ease);
  position: relative;
  padding: 4px 0;
}
.nav-links a:hover { color: var(--chalk); }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--grass);
  transition: right 0.35s var(--ease);
}
.nav-links a:hover::after { right: 0; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  border: 1px solid var(--chalk);
  border-radius: 100px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.nav-cta:hover {
  background: var(--chalk);
  color: var(--pitch);
}
.nav-cta-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--grass);
  box-shadow: 0 0 0 3px var(--grass-tint);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px var(--grass-tint); }
  50%      { box-shadow: 0 0 0 8px rgba(151, 201, 61, 0.05); }
}

/* --- Buttons ----------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 3px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
  position: relative;
  border: 1px solid transparent;
}

.btn-lg { padding: 18px 26px; font-size: 16px; }

.btn-primary {
  background: var(--chalk);
  color: var(--pitch);
  box-shadow:
    0 0 0 0 var(--grass),
    3px 3px 0 0 var(--grass);
}
.btn-primary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 0 var(--grass);
}

.btn-ghost {
  border-color: var(--chalk);
  color: var(--chalk);
}
.btn-ghost:hover {
  background: var(--chalk);
  color: var(--pitch);
}

.btn-ico { width: 18px; height: 18px; }
.btn-arr { transition: transform 0.3s var(--ease); }
.btn:hover .btn-arr { transform: translate(2px, -1px); }

/* --- Hero -------------------------------------------------------- */

.hero {
  position: relative;
  padding: clamp(60px, 8vw, 100px) var(--page-pad) clamp(80px, 10vw, 140px);
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  z-index: 2;
  max-width: 1480px;
  margin: 0 auto;
}

.hero-frame { position: relative; }

.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px dashed var(--line-strong);
}
.hero-meta-row {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--chalk-mute);
}
.hero-meta-label {
  color: var(--chalk-low);
}
.hero-meta-sep {
  flex: 0 0 14px;
  height: 1px;
  background: var(--line-strong);
}
.hero-meta-val { color: var(--chalk-dim); }

.hero-title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(58px, 9vw, 148px);
  line-height: 0.88;
  letter-spacing: -0.012em;
  text-transform: uppercase;
  margin-bottom: 36px;
}
.hero-title .line {
  display: block;
  opacity: 0;
  transform: translateY(24px);
  animation: chalk-in 0.9s var(--ease) forwards;
}
.hero-title .line:nth-child(1) { animation-delay: 0.15s; }
.hero-title .line:nth-child(2) { animation-delay: 0.28s; }
.hero-title .line:nth-child(3) { animation-delay: 0.41s; }
.hero-title .line:nth-child(4) { animation-delay: 0.54s; }

@keyframes chalk-in {
  from { opacity: 0; transform: translateY(24px); filter: blur(8px); }
  to   { opacity: 1; transform: translateY(0);    filter: blur(0); }
}

.hero-title em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--chalk-dim);
  text-transform: none;
  letter-spacing: -0.02em;
}

.hero-sub {
  max-width: 560px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--chalk-dim);
  margin-bottom: 36px;
  opacity: 0;
  animation: fade-up 0.8s var(--ease) 0.75s forwards;
}
.hero-sub strong { color: var(--chalk); font-weight: 600; }

@keyframes fade-up {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
  opacity: 0;
  animation: fade-up 0.8s var(--ease) 0.9s forwards;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  opacity: 0;
  animation: fade-up 0.8s var(--ease) 1.05s forwards;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero-stat-num {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 44px;
  line-height: 1;
  color: var(--chalk);
}
.hero-stat-label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--chalk-mute);
  max-width: 160px;
}

/* --- Hero board ------------------------------------------------ */

.hero-board {
  position: relative;
  padding: 22px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background:
    radial-gradient(800px 400px at 50% 0%, rgba(151,201,61,0.06), transparent 70%),
    linear-gradient(180deg, var(--pitch-2) 0%, var(--pitch) 100%);
  box-shadow:
    0 60px 120px -40px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(242,239,228,0.04);
  opacity: 0;
  transform: translateY(20px) rotate(-0.5deg);
  animation: fade-up 1s var(--ease) 0.35s forwards;
}
.hero-board::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px dashed var(--line-strong);
  border-radius: 4px;
  pointer-events: none;
}

.hero-board-label {
  position: absolute;
  top: -12px;
  left: 22px;
  padding: 4px 10px;
  background: var(--pitch);
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--chalk-dim);
  display: inline-flex;
  gap: 10px;
  align-items: center;
}
.hero-board-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--grass);
  animation: pulse-small 1.6s ease-in-out infinite;
}
@keyframes pulse-small {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.board-svg { width: 100%; height: auto; display: block; }

.board-svg .board-arrows path {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: draw 2.6s var(--ease) 0.9s forwards;
}
.board-svg .board-arrows path:nth-child(1) { animation-delay: 0.9s; }
.board-svg .board-arrows path:nth-child(2) { animation-delay: 1.4s; }
.board-svg .board-arrows path:nth-child(3) { animation-delay: 2.1s; }
.board-svg .board-arrows path:nth-child(4) { animation-delay: 2.4s; }

@keyframes draw { to { stroke-dashoffset: 0; } }

.board-svg .board-players circle,
.board-svg .board-opp circle {
  transform-origin: center;
  transform-box: fill-box;
  animation: player-in 0.5s var(--ease) backwards;
}
.board-svg .board-players circle:nth-child(1) { animation-delay: 0.5s; }
.board-svg .board-players circle:nth-child(2) { animation-delay: 0.6s; }
.board-svg .board-players circle:nth-child(3) { animation-delay: 0.7s; }
.board-svg .board-players circle:nth-child(4) { animation-delay: 0.8s; }
.board-svg .board-players circle:nth-child(5) { animation-delay: 0.9s; }
.board-svg .board-opp circle:nth-child(1) { animation-delay: 1.0s; }
.board-svg .board-opp circle:nth-child(2) { animation-delay: 1.1s; }
.board-svg .board-opp circle:nth-child(3) { animation-delay: 1.2s; }
.board-svg .board-opp circle:nth-child(4) { animation-delay: 1.3s; }
.board-svg .board-opp circle:nth-child(5) { animation-delay: 1.4s; }

@keyframes player-in {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

/* --- Sections ---------------------------------------------------- */

.section {
  position: relative;
  padding: var(--section-pad) var(--page-pad);
  max-width: 1480px;
  margin: 0 auto;
  z-index: 2;
}

.section-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 64px;
  max-width: 820px;
}
.section-num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--chalk-mute);
  padding: 6px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
}
.section-title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(44px, 6vw, 92px);
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.section-lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--chalk-dim);
  max-width: 640px;
}
.section-lead strong { color: var(--chalk); font-weight: 600; }

/* --- Plays grid (analisis) -------------------------------------- */

.plays-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 56px;
}

.play {
  position: relative;
  padding: 28px 24px 32px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
  overflow: hidden;
}
.play::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.play:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  background: var(--pitch-3);
}
.play:hover::before { transform: scaleX(1); }

.play-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.play-tag {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grass);
}
.play-dot {
  width: 8px; height: 8px;
  border: 1px solid var(--grass);
  border-radius: 50%;
  transition: background 0.35s var(--ease);
}
.play:hover .play-dot { background: var(--grass); }

.play-title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 26px;
  line-height: 1;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.play-desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--chalk-dim);
}

/* --- Diff card --------------------------------------------------- */

.diff-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
  padding: 32px 36px;
  background: linear-gradient(120deg, var(--pitch-3) 0%, var(--pitch-2) 100%);
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  position: relative;
}
.diff-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(400px 200px at 90% 50%, rgba(151,201,61,0.08), transparent 70%);
  pointer-events: none;
  border-radius: 6px;
}
.diff-mark {
  width: 54px; height: 54px;
  display: grid;
  place-items: center;
  background: var(--grass);
  color: var(--pitch);
  border-radius: 50%;
  position: relative;
  z-index: 1;
}
.diff-mark svg { width: 24px; height: 24px; }
.diff-body {
  position: relative;
  z-index: 1;
}
.diff-eyebrow {
  display: block;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grass);
  margin-bottom: 6px;
}
.diff-text {
  font-family: var(--f-serif);
  font-size: 22px;
  line-height: 1.45;
  color: var(--chalk);
  letter-spacing: -0.01em;
}
.diff-text strong {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 0.9em;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  background: var(--chalk);
  color: var(--pitch);
  padding: 0 8px;
  line-height: 1.4;
  display: inline-block;
}

/* --- Audience --------------------------------------------------- */

.audience { padding-top: 0; }

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.aud-card {
  position: relative;
  padding: 40px 36px 44px;
  background: var(--card);
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.4s var(--ease);
}
.aud-card:hover { transform: translateY(-4px); }

.aud-num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 140px;
  line-height: 0.8;
  color: var(--chalk);
  opacity: 0.05;
  pointer-events: none;
}

.aud-card-coach .aud-num { opacity: 0.06; }
.aud-card-fan .aud-num { color: var(--grass); opacity: 0.14; }

.aud-eyebrow {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--chalk-mute);
  display: block;
  margin-bottom: 18px;
}

.aud-title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.aud-card-fan .aud-title { color: var(--grass); }

.aud-text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--chalk-dim);
  margin-bottom: 24px;
  max-width: 440px;
}

.aud-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px dashed var(--line-strong);
  padding-top: 22px;
}
.aud-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--chalk-dim);
  line-height: 1.5;
}
.aud-list li span {
  color: var(--grass);
  font-weight: 600;
}

/* --- Method ----------------------------------------------------- */

.method { padding-top: 0; }

.manifesto {
  position: relative;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(24px, 3.2vw, 40px);
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--chalk);
  max-width: 960px;
  margin: 0 auto 64px;
  padding: 48px 60px;
  text-align: center;
}
.manifesto em {
  color: var(--grass);
  font-family: var(--f-serif);
}
.manifesto cite {
  display: block;
  margin-top: 28px;
  font-family: var(--f-mono);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--chalk-mute);
}
.manifesto-q {
  font-family: var(--f-serif);
  font-size: 96px;
  line-height: 0;
  color: var(--grass);
  position: absolute;
  top: 48px; left: 0;
  font-style: normal;
}
.manifesto-q-close {
  left: auto;
  right: 0;
  top: auto;
  bottom: 40px;
}

.method-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.m-card {
  padding: 36px 36px 32px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 4px;
}
.m-dont { background: var(--pitch-2); }

.m-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  margin-bottom: 28px;
  border-bottom: 1px dashed var(--line-strong);
}
.m-badge {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 3px;
}
.m-badge-do {
  background: var(--grass);
  color: var(--pitch);
}
.m-badge-dont {
  background: transparent;
  color: var(--whistle);
  border: 1px solid var(--whistle);
  text-decoration: line-through;
  text-decoration-color: rgba(234, 94, 76, 0.5);
}
.m-count {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--chalk-mute);
}

.m-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.m-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: baseline;
  padding-left: 0;
}
.m-list li::before {
  content: counter(mlist, decimal-leading-zero);
  counter-increment: mlist;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--chalk-low);
}
.m-list { counter-reset: mlist; }

.m-list li > div,
.m-list li > h4 {
  grid-column: 2;
}
.m-list li h4 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: var(--chalk);
}
.m-list li p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--chalk-dim);
  grid-column: 2;
}

.m-dont .m-list li h4 { color: var(--chalk); }

/* --- Channels --------------------------------------------------- */

.channels { padding-top: 0; }

.channels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.ch {
  display: flex;
  flex-direction: column;
  padding: 32px 28px 32px;
  background: var(--card);
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease), border-color 0.4s var(--ease);
  min-height: 320px;
  position: relative;
  overflow: hidden;
}

.ch::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 3px;
  background: var(--ch-accent, var(--chalk));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}

.ch-yt { --ch-accent: #FF3B30; }
.ch-ig { --ch-accent: #E94E77; }
.ch-tt { --ch-accent: #67E8F9; }

.ch:hover {
  transform: translateY(-6px);
  border-color: var(--ch-accent);
}
.ch:hover::after { transform: scaleX(1); }

.ch-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.ch-tag {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid currentColor;
  border-radius: 100px;
  color: var(--ch-accent);
}
.ch-arr {
  font-size: 22px;
  color: var(--chalk-dim);
  transition: transform 0.3s var(--ease), color 0.3s var(--ease);
}
.ch:hover .ch-arr {
  transform: translate(3px, -3px);
  color: var(--ch-accent);
}

.ch-title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 40px;
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 18px;
  flex: 0 0 auto;
}

.ch-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--chalk-dim);
  flex: 1 1 auto;
  margin-bottom: 24px;
}

.ch-handle {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--chalk-mute);
  padding-top: 16px;
  border-top: 1px dashed var(--line);
  letter-spacing: 0.04em;
}

/* --- Contact ---------------------------------------------------- */

.contact { padding-top: 0; }

.contact-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 40px;
  padding: 56px clamp(28px, 4vw, 64px);
  background: linear-gradient(140deg, var(--pitch-3) 0%, var(--pitch-2) 100%);
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}
.contact-wrap::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(151,201,61,0.12), transparent 70%);
  pointer-events: none;
}

.contact-left { position: relative; z-index: 1; }

.contact-eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grass);
  display: block;
  margin-bottom: 20px;
}

.contact-title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.contact-title em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  color: var(--chalk-dim);
  letter-spacing: -0.01em;
}

.contact-text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--chalk-dim);
  max-width: 500px;
  margin-bottom: 32px;
}

.contact-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.contact-social {
  display: flex;
  gap: 10px;
}
.contact-social a {
  width: 48px; height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--chalk-dim);
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease), background 0.3s var(--ease);
}
.contact-social a:hover {
  color: var(--pitch);
  background: var(--chalk);
  border-color: var(--chalk);
  transform: translateY(-3px);
}
.contact-social svg { width: 20px; height: 20px; }

.contact-card {
  position: relative;
  padding: 28px;
  background: var(--pitch);
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  z-index: 1;
}
.contact-card::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px dashed var(--line);
  border-radius: 2px;
  pointer-events: none;
}

.contact-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--line);
}
.contact-card-tag {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.contact-card-num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--chalk-mute);
}

.contact-dl {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-dl > div {
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: baseline;
  gap: 16px;
  padding-bottom: 10px;
  border-bottom: 1px dotted var(--line);
}
.contact-dl > div:last-child { border-bottom: 0; }
.contact-dl dt {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--chalk-mute);
}
.contact-dl dd {
  font-family: var(--f-body);
  font-size: 14px;
  color: var(--chalk);
}

/* --- Footer ---------------------------------------------------- */

.footer {
  padding: clamp(60px, 7vw, 100px) var(--page-pad) 40px;
  border-top: 1px solid var(--line);
  position: relative;
  z-index: 2;
  max-width: 1480px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  padding-bottom: 48px;
  margin-bottom: 48px;
  border-bottom: 1px dashed var(--line-strong);
  align-items: end;
}

.footer-mission {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.4;
  color: var(--chalk-dim);
  max-width: 460px;
  letter-spacing: -0.005em;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 40px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.footer-col h5 {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--chalk-mute);
  margin-bottom: 16px;
}
.footer-col a,
.footer-col span {
  display: block;
  font-size: 14px;
  color: var(--chalk-dim);
  padding: 4px 0;
  transition: color 0.25s var(--ease);
}
.footer-col a:hover { color: var(--chalk); }
.footer-col .footer-small {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--chalk-low);
  margin-top: 6px;
  padding: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--chalk-low);
}
.footer-made a {
  color: var(--chalk-dim);
  border-bottom: 1px solid var(--grass);
  padding-bottom: 1px;
}
.footer-made a:hover { color: var(--grass); }

/* --- Reveal animations ----------------------------------------- */

.will-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.will-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive ------------------------------------------------- */

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-board {
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }
  .plays-grid { grid-template-columns: repeat(2, 1fr); }
  .channels-grid { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 860px) {
  .nav {
    grid-template-columns: auto auto;
    gap: 16px;
  }
  .nav-links { display: none; }

  .hero-stats { grid-template-columns: 1fr; gap: 16px; }

  .audience-grid { grid-template-columns: 1fr; }
  .method-grid { grid-template-columns: 1fr; }

  .diff-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 28px;
  }

  .manifesto {
    padding: 36px 24px;
    text-align: left;
  }
  .manifesto-q { display: none; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

@media (max-width: 560px) {
  .plays-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-cta span:not(.nav-cta-dot) { display: none; }
  .nav-cta { padding: 11px 14px; }

  .hero-title { font-size: clamp(44px, 13vw, 70px); }
  .aud-num { font-size: 100px; }
  .contact-dl > div { grid-template-columns: 90px 1fr; gap: 12px; }
  .contact-wrap { padding: 36px 22px; }
  .contact-cta { flex-direction: column; align-items: stretch; }
  .contact-cta .btn { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
  .hero-title .line,
  .hero-sub,
  .hero-ctas,
  .hero-stats,
  .hero-board { opacity: 1; transform: none; }
}
