/* Te Reto Inclusivo — single-page marketing site */
/* Color tokens */
:root {
  --teal: #1D9E75;
  --teal-deep: #085041;
  --teal-bg: #E1F5EE;
  --teal-border: #9FE1CB;
  --amber: #EF9F27;
  --amber-bg: #FAEEDA;
  --white: #FFFFFF;
  --off-white: #F8F8F5;
  --text: #1A1A18;
  --text-muted: #5F5E5A;
  --radius-card: 12px;
  --radius-btn: 8px;
  --radius-pill: 999px;
  --container: 1280px;
}

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

body {
  margin: 0;
  font-family: 'Nunito', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Nunito', sans-serif;
  color: var(--teal-deep);
  font-weight: 800;
  line-height: 1.15;
  margin: 0;
  letter-spacing: -0.01em;
}

h1 { font-size: 56px; font-weight: 800; }
h2 { font-size: 40px; font-weight: 800; }
h3 { font-size: 22px; font-weight: 700; }

p { margin: 0; }

a {
  color: var(--teal);
  text-decoration: none;
}
a:hover { color: var(--teal-deep); }

/* Skip nav */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--teal-deep);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 0 0 var(--radius-btn) 0;
  font-weight: 700;
  z-index: 10000;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
  color: var(--white);
  outline: 3px solid var(--amber);
  outline-offset: 2px;
}

/* Focus rings — accessibility mandatory */
:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 2px;
  border-radius: 4px;
}
.on-teal-bg :focus-visible { outline-color: var(--white); }

/* Layout container */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 768px) { .container { padding: 0 20px; } }

/* Section spacing */
section { padding: 96px 0; scroll-margin-top: 80px; }
@media (max-width: 768px) { section { padding: 64px 0; } }

.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}
.section-intro {
  max-width: 720px;
  margin-top: 20px;
  color: var(--text-muted);
  font-size: 18px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  min-width: 44px;
  padding: 0 22px;
  border-radius: var(--radius-btn);
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.05s;
  text-decoration: none;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-primary:hover { background: var(--teal-deep); border-color: var(--teal-deep); color: var(--white); }
.btn-ghost {
  background: transparent;
  color: var(--teal-deep);
  border-color: var(--teal-deep);
}
.btn-ghost:hover { background: var(--teal-deep); color: var(--white); }
.btn-on-teal {
  background: var(--white);
  color: var(--teal-deep);
  border-color: var(--white);
}
.btn-on-teal:hover { background: var(--teal-deep); color: var(--white); border-color: var(--white); }

.btn-sm { height: 40px; padding: 0 18px; font-size: 14px; }

/* Pills / badges */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 32px;
  padding: 0 14px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  background: var(--teal-bg);
  color: var(--teal-deep);
  border: 0.5px solid var(--teal-border);
}
.pill-amber { background: var(--amber-bg); color: #7A4A0F; border-color: #E8C68A; }

/* Cards */
.card {
  background: var(--white);
  border: 0.5px solid var(--teal-border);
  border-radius: var(--radius-card);
  padding: 28px;
}
.card-muted { background: var(--off-white); }

/* ===== Nav ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 0.5px solid #ECECE7;
  height: 64px;
}
.nav-inner {
  display: flex;
  align-items: center;
  height: 64px;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 19px;
  font-weight: 800;
  color: var(--teal-deep);
}
.logo-img {
  display: block;
  height: 70px;
  width: auto;
}
.logo-suffix {
  font-family: inherit;
  font-weight: 400;
  font-size: 15px;
  color: var(--text-muted);
  border-left: 0.5px solid #D9D6CD;
  padding-left: 12px;
  line-height: 1;
  letter-spacing: 0.01em;
}
.logo-mark-img {
  height: 44px;
  width: auto;
  display: block;
}
.footer-brand .logo {
  align-items: center;
  gap: 14px;
  color: var(--white);
  font-size: 22px;
}
.footer-brand .logo-suffix {
  color: rgba(255,255,255,0.75);
  border-left-color: rgba(255,255,255,0.25);
}
.footer-brand .wordmark {
  font-weight: 800;
  letter-spacing: -0.01em;
}
@media (max-width: 480px) {
  .logo-img { height: 34px; }
  .logo-suffix { font-size: 13px; padding-left: 10px; }
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  margin-right: 24px;
  list-style: none;
  padding: 0;
}
.nav-links a {
  color: var(--text);
  font-weight: 500;
  font-size: 15px;
  padding: 8px 4px;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover, .nav-links a:focus-visible { color: var(--teal-deep); border-bottom-color: var(--teal); }
.nav-cta { margin-left: 0; }

.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border: 0.5px solid var(--teal-border);
  background: var(--white);
  border-radius: var(--radius-btn);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--teal-deep);
  position: relative;
}
.hamburger span::before,
.hamburger span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--teal-deep);
}
.hamburger span::before { top: -6px; }
.hamburger span::after { top: 6px; }

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: inline-flex; }
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 200;
  display: flex;
  flex-direction: column;
  padding: 20px;
  transform: translateY(-100%);
  transition: transform 0.25s ease;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu-top {
  display: flex;
  align-items: center;
  height: 64px;
  margin-bottom: 24px;
}
.mobile-menu-close {
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 0.5px solid var(--teal-border);
  background: var(--white);
  border-radius: var(--radius-btn);
  cursor: pointer;
  font-size: 22px;
  color: var(--teal-deep);
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu nav a {
  color: var(--text);
  font-size: 22px;
  font-weight: 700;
  padding: 18px 8px;
  border-bottom: 0.5px solid #ECECE7;
}
.mobile-menu .btn { margin-top: 24px; align-self: flex-start; }

/* ===== Hero ===== */
.hero {
  padding-top: 20px;
  padding-bottom: 20px;
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
}
.hero h1 {
  margin-top: 18px;
  margin-bottom: 20px;
  text-wrap: pretty;
}
.hero-sub {
  font-size: 20px;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 32px;
  text-wrap: pretty;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: var(--off-white);
  border: 0.5px solid #E0E0DA;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}
.trust-badge .dot {
  width: 6px; height: 6px; border-radius: 999px; background: var(--teal);
}

/* Phone stack illustration */
.phone-stack {
  position: relative;
  height: 560px;
}
.phone-frame {
  position: absolute;
  width: 240px;
  height: 480px;
  background: var(--white);
  border: 0.5px solid #DDD9CF;
  border-radius: 36px;
  padding: 14px;
  overflow: hidden;
}
.phone-frame .notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 18px;
  background: #1A1A18;
  border-radius: 999px;
  z-index: 2;
}
.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  background: var(--teal-bg);
  overflow: hidden;
  position: relative;
  padding: 36px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.phone-1 { top: 0; right: 60px; transform: rotate(-4deg); z-index: 1; }
.phone-2 { top: 40px; right: 0; transform: rotate(3deg); z-index: 2; }
.phone-3 { top: 90px; right: 130px; transform: rotate(-1deg); z-index: 0; opacity: 0.95; }

.phone-screen .ps-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
  font-size: 10px;
  font-weight: 700;
  color: var(--teal-deep);
}
.phone-screen .ps-avatar {
  width: 28px; height: 28px; background: var(--amber); border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; color: white;
}
.phone-screen .ps-h { font-size: 13px; font-weight: 800; color: var(--teal-deep); }
.phone-screen .ps-sub { font-size: 9px; color: var(--text-muted); margin-top: -2px; }
.emo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  margin-top: 8px;
}
.emo-tile {
  background: white;
  border: 0.5px solid var(--teal-border);
  border-radius: 10px;
  padding: 8px 6px;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  color: var(--teal-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.emo-face {
  width: 24px; height: 24px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px;
}

.phone-2 .phone-screen { background: var(--amber-bg); }
.phone-2 .ps-h { color: #7A4A0F; }
.phone-3 .phone-screen { background: var(--white); border: 0.5px solid var(--teal-border); }

.progress-row {
  display: flex; align-items: center; gap: 6px;
  font-size: 9px; font-weight: 600; color: var(--text-muted);
}
.progress-track {
  flex: 1; height: 6px; background: var(--teal-bg); border-radius: 999px; overflow: hidden;
}
.progress-fill { height: 100%; background: var(--teal); border-radius: 999px; }

.game-tile {
  background: white;
  border: 0.5px solid var(--teal-border);
  border-radius: 10px;
  padding: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  color: var(--teal-deep);
}
.game-tile .gt-icon {
  width: 26px; height: 26px; border-radius: 8px;
  background: var(--teal-bg);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--teal-deep);
}
.game-tile .gt-meta { font-size: 8px; color: var(--text-muted); font-weight: 500; }

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .phone-stack { height: 480px; max-width: 440px; margin: 0 auto; }
}
@media (max-width: 768px) {
  h1 { font-size: 38px; }
  h2 { font-size: 30px; }
  .hero-sub { font-size: 18px; }
  .hero { min-height: 0; padding-bottom: 64px; }
  .phone-stack { height: 440px; }
}

/* ===== Problem ===== */
.problem { background: var(--off-white); }
.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
@media (max-width: 1024px) { .three-col { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .three-col { grid-template-columns: 1fr; } }
.pain-card .stat {
  font-size: 32px;
  font-weight: 800;
  color: var(--teal-deep);
  margin: 16px 0 8px;
  line-height: 1.1;
  text-wrap: balance;
  text-align: center;
}
.pain-card p { color: var(--text-muted); font-size: 16px; }
.icon-box {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--teal-bg);
  border: 0.5px solid var(--teal-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-deep);
}
.icon-box.amber { background: var(--amber-bg); color: #7A4A0F; border-color: #E8C68A; }
.pain-card-icon {
  width: 200px;
  height: 200px;
  border-radius: 16px;
  display: flex;
  margin: 0 auto;
}
.pain-card-img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  display: block;
}

/* ===== Solution ===== */
.solution { background: #FAFAF7; }

.sol-flow {
  display: flex;
  align-items: stretch;
  margin-top: 56px;
}
.sol-card {
  flex: 1;
  min-width: 0;
  background: #FFFFFF;
  border: 1px solid #E7EAF0;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 2px 8px rgba(47, 55, 71, 0.06);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sol-connector {
  width: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #DCE4EF;
  font-size: 22px;
}
.sol-connector-v { display: none; }

.sol-mock {
  background: #F8F8F5;
  border: 1px solid #E7EAF0;
  border-radius: 16px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 148px;
  margin-bottom: 4px;
}
.sol-mock-top { margin-bottom: 2px; }
.sol-mock-bar {
  display: block;
  height: 6px;
  width: 36px;
  background: #DCE4EF;
  border-radius: 999px;
}
.sol-mock-label {
  font-size: 11px;
  font-weight: 700;
  color: #085041;
}
.sol-mock-emojis {
  display: flex;
  gap: 8px;
}
.sol-emo {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #E7EAF0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border: 2px solid transparent;
}
.sol-emo--active { background: #E3F3EC; border-color: #1D9E75; }
.sol-mock-pill {
  display: inline-flex;
  width: fit-content;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  margin-top: auto;
}
.sol-pill--teal { background: #E3F3EC; color: #085041; }
.sol-pill--amber { background: #FFF3D2; color: #7A4A0F; }

.sol-mock-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  color: #2F3747;
  background: #FFFFFF;
  border: 1px solid #E7EAF0;
  border-radius: 8px;
  padding: 6px 10px;
}
.sol-mock-row--alert { background: #FFFBF0; border-color: #FFE9A0; }
.sol-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  flex-shrink: 0;
}
.sol-dot--green { background: #1D9E75; }
.sol-dot--amber { background: #F47A1F; }

.sol-mock-chart {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 52px;
  padding: 0 2px;
}
.sol-bar {
  flex: 1;
  background: #DCE4EF;
  border-radius: 4px 4px 0 0;
}
.sol-bar--hi { background: #1D9E75; }

.sol-card-tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #F47A1F;
}
.sol-card-title {
  font-size: 20px;
  font-weight: 800;
  color: #085041;
  margin: 0;
  line-height: 1.2;
}
.sol-card-body {
  font-size: 15px;
  color: #5E6A82;
  line-height: 1.6;
  margin: 0;
}

.sol-tagline {
  margin-top: 40px;
  text-align: center;
  font-size: 17px;
  font-weight: 700;
  color: #5E6A82;
}

@media (max-width: 900px) {
  .sol-flow { flex-direction: column; }
  .sol-connector { width: auto; height: 32px; }
  .sol-connector-h { display: none; }
  .sol-connector-v { display: inline-flex; }
}

/* ===== How it works ===== */
.how { background: var(--teal-bg); }
.steps {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  list-style: none;
  padding: 0;
}
.steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: var(--teal);
  opacity: 0.4;
  z-index: 0;
}
.step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 8px;
}
.step-num {
  width: 64px; height: 64px;
  border-radius: 999px;
  background: var(--white);
  border: 2px solid var(--teal);
  color: var(--teal-deep);
  font-size: 22px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  position: relative;
}
.step-num-lg {
  width: 80px;
  height: 80px;
  font-size: 28px;
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal-deep);
  margin-top: -8px;
}
.step .icon-box {
  display: flex;
  margin: 0 auto 10px;
}
.step-num svg { color: var(--teal-deep); }
.step-title {
  font-size: 18px;
  margin-bottom: 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
}
.step-title-lg {
  font-size: 22px;
  font-weight: 700;
}
.step-seal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
}
.step-badge {
  display: block;
  width: fit-content;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--amber-bg);
  color: #7A4A0F;
  border: 0.5px solid #E8C68A;
  font-size: 11px;
  font-weight: 700;
  margin: 0 auto 8px;
  text-transform: lowercase;
  letter-spacing: 0.01em;
}
.step-pill {
  display: block;
  width: fit-content;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--teal);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  margin: 0 auto 10px;
}
.step p { font-size: 14px; color: var(--text-muted); }
@media (max-width: 900px) {
  .steps { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; }
  .steps::before { display: none; }
}
@media (max-width: 500px) { .steps { grid-template-columns: 1fr; } }

/* ===== Anchor quote (between Games and Impact) ===== */
.anchor-quote {
  background: var(--teal-deep);
  color: var(--white);
  padding: 80px 0;
}
.aq-inner {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  padding: 0 16px;
}
.aq-mark {
  position: absolute;
  top: -52px;
  left: -8px;
  font-family: 'Nunito', serif;
  font-size: 80px;
  font-weight: 800;
  line-height: 1;
  color: #1D9E75;
  opacity: 0.4;
  pointer-events: none;
}
.aq-quote {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--white);
  margin: 0;
  text-wrap: pretty;
}
.aq-attr {
  margin-top: 28px;
  font-size: 14px;
  color: #9FE1CB;
  font-weight: 500;
}
@media (max-width: 640px) {
  .anchor-quote { padding: 64px 0; }
  .aq-quote { font-size: 19px; }
  .aq-mark { font-size: 64px; top: -42px; left: 0; }
}

/* ===== Games ===== */
.games { background: #F8F8F5; }
.games-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 16px;
}
@media (max-width: 768px) { .games-grid { grid-template-columns: 1fr; } }

.game-featured {
  margin-top: 48px;
  margin-bottom: 16px;
  background: var(--white);
  border: 0.5px solid var(--teal-border);
  border-radius: var(--radius-card);
  padding: 20px 24px;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.game-featured-main {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  min-width: 0;
}
.game-featured-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--teal);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.game-featured-text { min-width: 0; }
.game-featured-text .game-tag {
  font-size: 12px;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.game-featured-text h3 { font-size: 19px; margin-bottom: 2px; }
.game-featured-text p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}
.game-featured-aside {
  flex-shrink: 0;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  max-width: 280px;
}
.badge-evidence {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--amber-bg);
  color: #7A4A0F;
  border: 0.5px solid #E8C68A;
  font-size: 12px;
  font-weight: 700;
}
.evidence-note {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}
@media (max-width: 768px) {
  .game-featured {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
  }
  .game-featured-aside {
    text-align: left;
    align-items: flex-start;
    max-width: none;
  }
}

.game-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--white);
  border: 0.5px solid var(--teal-border);
  border-radius: var(--radius-card);
  padding: 22px;
  transition: border-color 0.15s, background 0.15s;
  cursor: pointer;
}
.game-card:hover { border-color: var(--teal); background: #FBFEFC; }
.game-card .game-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 24px;
}
.game-icon.gi-1 { background: var(--teal-bg); color: var(--teal-deep); }
.game-icon.gi-2 { background: var(--amber-bg); color: #7A4A0F; }
.game-icon.gi-3 { background: var(--teal-bg); color: var(--teal-deep); }
.game-icon.gi-4 { background: var(--amber-bg); color: #7A4A0F; }
.game-icon.gi-5 { background: var(--teal-bg); color: var(--teal-deep); }
.game-card h3 { font-size: 18px; margin-bottom: 4px; }
.game-card .game-tag {
  font-size: 12px;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.game-card p { font-size: 15px; color: var(--text-muted); }

/* ===== Impact ===== */
.impact { background: #FAFAF7; }

.impact-hypothesis {
  margin-top: 48px;
  background: #E3F3EC;
  border: 1px solid #B8E0CF;
  border-radius: 24px;
  padding: 32px 36px;
  max-width: 820px;
  margin: 50px auto;
}
.impact-hypothesis-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #085041;
  margin-bottom: 12px;
}
.impact-hypothesis p {
  font-size: 18px;
  line-height: 1.65;
  color: #2F3747;
  font-weight: 500;
  margin: 0;
}

.impact-timeline {
  list-style: none;
  padding: 0;
  margin: 56px 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}
.impact-timeline::before {
  content: '';
  position: absolute;
  top: 21px;
  left: calc(12.5% + 4px);
  right: calc(12.5% + 4px);
  height: 2px;
  background: linear-gradient(to right, #1D9E75, #9FE1CB);
  z-index: 0;
}
.impact-step {
  position: relative;
  z-index: 1;
  padding: 0 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.impact-step-num {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #1D9E75;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 3px solid #FAFAF7;
  box-shadow: 0 0 0 2px #1D9E75;
  margin-bottom: 16px;
}
.impact-step-title {
  font-size: 16px;
  font-weight: 800;
  color: #085041;
  margin: 0 0 8px;
  line-height: 1.2;
}
.impact-step-body {
  font-size: 14px;
  color: #5E6A82;
  line-height: 1.55;
  margin: 0;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.metric-card {
  background: #FFFFFF;
  border: 1px solid #E7EAF0;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 2px 6px rgba(47, 55, 71, 0.06);
}
.metric-card .metric-number {
  font-size: 44px;
  font-weight: 800;
  color: #085041;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.metric-card .lbl {
  font-size: 15px;
  font-weight: 700;
  color: #2F3747;
  margin-top: 8px;
  line-height: 1.3;
}
.metric-card .metric-sub {
  font-size: 13px;
  color: #5E6A82;
  margin-top: 6px;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .metrics { grid-template-columns: repeat(2, 1fr); }
  .impact-timeline {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }
  .impact-timeline::before { display: none; }
  .impact-step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    padding: 0 0 28px;
    gap: 16px;
  }
  .impact-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 21px;
    top: 44px;
    bottom: 0;
    width: 2px;
    background: #DCE4EF;
  }
  .impact-step:last-child { padding-bottom: 0; }
  .impact-step-num { margin-bottom: 0; }
  .impact-step-text { flex: 1; padding-top: 8px; }
}
@media (max-width: 480px) {
  .metrics { grid-template-columns: 1fr; }
  .impact-hypothesis { padding: 24px; }
  .metric-card .metric-number { font-size: 36px; }
}

/* ===== Team ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
@media (max-width: 1024px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .team-grid { grid-template-columns: 1fr; } }
.member {
  background: var(--white);
  border: 0.5px solid var(--teal-border);
  border-radius: var(--radius-card);
  padding: 24px;
}
.avatar {
  width: 56px; height: 56px;
  border-radius: 999px;
  background: var(--teal-bg);
  color: var(--teal-deep);
  border: 0.5px solid var(--teal-border);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 800;
  margin-bottom: 16px;
}
.avatar.amber { background: var(--amber-bg); color: #7A4A0F; border-color: #E8C68A; }
.member h3 { font-size: 17px; margin-bottom: 4px; }
.member .role { font-size: 13px; font-weight: 700; color: var(--teal); margin-bottom: 10px; }
.member p { font-size: 14px; color: var(--text-muted); }

/* ===== Contact ===== */
.contact-section {
  background: #0B5A46;
  color: var(--white);
}
.contact-section h2 { color: var(--white); }
.contact-eyebrow { color: #FFD98A !important; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
  margin-top: 48px;
}

.contact-section .lead-text {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255,255,255,0.88);
  max-width: 480px;
}

.contact-benefits {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,0.95);
}
.contact-check {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: #FFD98A;
  color: #0B5A46;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-cta-img {
  display: block;
  width: 100%;
  max-width: 500px;
  height: auto;
  margin: 36px auto 0;
  border-radius: 20px;
}

.contact-card {
  background: var(--white);
  border-radius: 28px;
  padding: 40px;
  color: var(--text);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}
.contact-card h3 { font-size: 22px; margin-bottom: 8px; }
.contact-card .ph { color: var(--text-muted); font-size: 15px; margin-bottom: 20px; }
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--teal-deep);
  margin-bottom: 6px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  height: 46px;
  padding: 0 14px;
  border: 1px solid #DDD9CF;
  border-radius: var(--radius-btn);
  background: var(--white);
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  transition: border-color 0.15s;
}
.field textarea {
  height: auto;
  min-height: 96px;
  padding: 12px 14px;
  resize: vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(29,158,117,0.18);
}
.field.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field.row-2 > div { display: contents; }
@media (max-width: 480px) { .field.row-2 { grid-template-columns: 1fr; } }
.field-error {
  color: #B22E2E;
  font-size: 13px;
  margin-top: 6px;
  font-weight: 600;
}
.field-error::before { content: '⚠ '; }
.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: #B22E2E;
}
.contact-submit-row {
  display: flex; align-items: center; justify-content: end; gap: 16px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.contact-submit-row .legal { font-size: 12px; color: var(--text-muted); max-width: 60%; }
.form-success {
  background: var(--teal-bg);
  border: 0.5px solid var(--teal-border);
  border-radius: 12px;
  padding: 28px;
  text-align: center;
  color: var(--teal-deep);
}
.form-success .check-big {
  width: 56px; height: 56px;
  border-radius: 999px;
  background: var(--teal);
  color: white;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 26px; font-weight: 800;
  margin-bottom: 16px;
}
.form-success h3 { font-size: 22px; margin-bottom: 8px; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-cta-img { max-width: 320px; }
}
@media (max-width: 480px) {
  .contact-card { padding: 24px; border-radius: 20px; }
  .contact-cta-img { max-width: 100%; }
}

/* ===== Footer ===== */
.footer {
  background: var(--teal-deep);
  color: var(--white);
  padding: 64px 0 24px;
}
.footer a { color: rgba(255,255,255,0.85); }
.footer a:hover { color: var(--white); text-decoration: underline; }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand .logo { color: var(--white); }
.footer-brand .logo .brand-light { color: rgba(255,255,255,0.75); }
.footer-brand p {
  color: rgba(255,255,255,0.78);
  font-size: 15px;
  max-width: 320px;
  margin-top: 14px;
}
.footer-col h4 {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; font-size: 15px; }
.footer-bar {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 0.5px solid rgba(255,255,255,0.18);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.72);
}
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
}

/* Small-text utilities */
.muted { color: var(--text-muted); }
.label { font-size: 13px; font-weight: 500; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
