/* Page-specific styles */

/* ===== HERO ===== */
.hero {
  text-align: center;
  padding: 72px 24px 64px;
  background: linear-gradient(160deg, #f8faf2 0%, #edf2e0 100%);
  border-bottom: 1px solid #dde8c8;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: -56px;
  background-image: radial-gradient(circle, rgba(98,181,23,0.13) 1.5px, transparent 1.5px);
  background-size: 30px 30px;
  animation: hero-drift 22s linear infinite;
  pointer-events: none;
  z-index: 0;
}
.hero h1 {
  font-size: clamp(38px, 6vw, 62px);
  font-weight: 900;
  color: #2a2a2a;
  line-height: 1.25;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  animation: fade-up 0.45s ease both;
}
.hero h1 em {
  font-style: normal;
  color: #2a2a2a;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 4px;
  text-underline-offset: 6px;
  animation: underline-color-grow 0.4s 0.5s ease forwards;
}
@keyframes underline-color-grow {
  from { text-decoration-color: transparent; }
  to   { text-decoration-color: #d1db24; }
}
.hero-sub {
  font-size: 17px;
  color: #555;
  line-height: 1.65;
  max-width: 600px;
  margin: 0 auto 36px;
  animation: fade-up 0.45s 0.15s ease both;
}
.hero-empathy {
  position: relative; z-index: 1;
  font-size: 18px;
  color: #4a4a4a;
  line-height: 1.6;
  max-width: 680px;
  margin: 24px auto 0;
  animation: fade-up 0.45s 0.25s ease both;
}
.hero-empathy strong {
  font-weight: 800;
  color: #4a8c11;
}
@media (max-width: 600px) {
  .hero-empathy { font-size: 15px; margin-top: 18px; }
}

/* ===== HERO BUY BUTTON + DEMO ROW ===== */
.hero-buy-btn {
  position: relative; z-index: 1;
  display: inline-flex;
  align-items: center; justify-content: center;
  background: #62b517; color: #fff;
  font-size: 17px; font-weight: 800;
  padding: 14px 36px;
  margin-top: 24px;
  border-radius: 10px;
  text-decoration: none;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 14px rgba(98,181,23,0.32);
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  animation: fade-up 0.45s 0.25s ease both;
}
.hero-buy-btn:hover {
  background: #4a8c11;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(98,181,23,0.4);
}
.hero-demos {
  position: relative; z-index: 1;
  margin: 24px auto 0;
  max-width: 480px;
  animation: fade-up 0.45s 0.4s ease both;
}
.hero-demos-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: #888;
  margin-bottom: 10px;
}
.hero-demos-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-demo-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.7);
  color: #4a8c11;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid #c8d8b0;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.hero-demo-btn:hover {
  background: #62b517;
  color: #fff;
  border-color: #62b517;
}
.hero-demo-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #62b517;
  flex-shrink: 0;
}
.hero-demo-dot--cy {
  background: #d1db24;
}
.hero-demo-btn:hover .hero-demo-dot,
.hero-demo-btn:hover .hero-demo-dot--cy {
  background: #fff;
}
@media (max-width: 600px) {
  .hero-buy-btn { font-size: 15px; padding: 12px 28px; margin-top: 18px; }
  .hero-demos { margin-top: 18px; }
  .hero-demo-btn { font-size: 12px; padding: 7px 14px; }
}

/* ===== HERO JOURNEY: BEFORE / AFTER SPLIT ===== */
.hero-journey {
  background: #fff;
  padding: 0;
  border-bottom: 1px solid #dde8c8;
}
.journey-split {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  position: relative;
}
.journey-side {
  padding: 44px 56px;
  position: relative;
  overflow: hidden;
}
.journey-side--problem {
  background: linear-gradient(135deg, #fef0e0 0%, #fde2c4 100%);
}
.journey-side--solution {
  background: linear-gradient(135deg, #e6f3cf 0%, #c8dca0 100%);
}
.journey-side-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2.4px;
  margin-bottom: 18px;
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
}
.journey-side--problem .journey-side-label {
  color: #8a3d05;
  background: rgba(232,140,58,0.18);
}
.journey-side--solution .journey-side-label {
  color: #2a5a06;
  background: rgba(98,181,23,0.18);
}
.journey-side-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.journey-side-points li {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  padding-left: 28px;
  position: relative;
}
.journey-side--problem .journey-side-points li { color: #5a2802; }
.journey-side--solution .journey-side-points li { color: #1a3a00; }
.journey-side-points li::before {
  position: absolute;
  left: 0;
  top: 2px;
  font-weight: 900;
  font-size: 18px;
}
.journey-side--problem .journey-side-points li::before {
  content: '✕';
  color: #c45a15;
}
.journey-side--solution .journey-side-points li::before {
  content: '✓';
  color: #62b517;
}
.journey-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  position: relative;
  width: 80px;
}
.journey-divider::before,
.journey-divider::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 50%;
  background: inherit;
}
.journey-divider::before { top: 0; clip-path: polygon(0 0, 100% 0, 0 100%); background: #fde2c4; }
.journey-divider::after  { bottom: 0; clip-path: polygon(0 100%, 100% 0, 100% 100%); background: #c8dca0; }
.journey-divider-arrow {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #62b517;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 900;
  box-shadow: 0 6px 18px rgba(98,181,23,0.45);
}
@media (max-width: 800px) {
  .journey-split {
    grid-template-columns: 1fr;
  }
  .journey-side { padding: 32px 24px; }
  .journey-divider {
    width: 100%;
    height: 60px;
  }
  .journey-divider::before { background: #fde2c4; clip-path: polygon(0 0, 100% 0, 100% 100%); }
  .journey-divider::after  { background: #c8dca0; clip-path: polygon(0 0, 100% 100%, 0 100%); }
  .journey-divider-arrow { font-size: 0; }
  .journey-divider-arrow::after { content: '↓'; font-size: 24px; }
}
.hero-cta-row {
  position: relative; z-index: 1;
  margin-top: 28px;
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  animation: fade-up 0.45s 0.3s ease both;
}
.hero-btn-buy {
  display: inline-flex; align-items: center;
  background: #62b517; color: #fff;
  font-size: 17px; font-weight: 800;
  padding: 14px 32px; border-radius: 10px;
  text-decoration: none; letter-spacing: 0.5px;
  box-shadow: 0 4px 14px rgba(98,181,23,0.3);
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}
.hero-btn-buy:hover { background: #4a8c11; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(98,181,23,0.38); }
.hero-btn-buy::after { content: ' →'; margin-left: 6px; }
.hero-btn-secondary {
  display: inline-flex; align-items: center;
  background: transparent; color: #4a8c11;
  font-size: 17px; font-weight: 800;
  padding: 14px 28px; border-radius: 10px;
  text-decoration: none; letter-spacing: 0.5px;
  border: 2px solid #62b517;
  transition: background 0.2s ease, color 0.2s ease;
}
.hero-btn-secondary:hover { background: #62b517; color: #fff; }
.hero p {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
  max-width: 580px;
  margin: 0 auto 0;
  position: relative;
  z-index: 1;
  animation: fade-up 0.45s 0.15s ease both;
  font-weight: 600;
}
.hero-cta {
  display: inline-block;
  background: #62b517;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 8px;
  position: relative;
  z-index: 1;
  animation: fade-up 0.45s 0.28s ease both;
  transition: background 0.18s, transform 0.15s, box-shadow 0.18s;
  box-shadow: 0 4px 16px rgba(98,181,23,0.3);
}
.hero-cta:hover {
  background: #4e9612;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(98,181,23,0.38);
}
.hero-picker {
  display: inline-block;
  margin-top: 32px;
  padding: 18px 24px 20px;
  background: rgba(255,255,255,0.75);
  border: 1.5px solid rgba(98,181,23,0.35);
  border-radius: 16px;
  backdrop-filter: blur(6px);
  position: relative;
  z-index: 1;
  animation: fade-up 0.45s 0.22s ease both;
}
.hero-question {
  font-size: 11px;
  font-weight: 800;
  color: #4e9612;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 12px;
}
.hero-domain-pills {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-pill {
  display: inline-block;
  padding: 7px 16px;
  border-radius: 999px;
  border: 1.5px solid #2a5c0a;
  background: #2a5c0a;
  color: #f0f9e8;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.01em;
  backdrop-filter: blur(4px);
  transition: background 0.16s, border-color 0.16s, transform 0.14s, box-shadow 0.16s;
}
.hero-pill:hover {
  background: #1e4407;
  border-color: #1e4407;
  color: #f0f9e8;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(42,92,10,0.35);
}

/* ===== STORY SECTIONS ===== */
.story-section {
  padding: 72px 24px;
}
/* The Problem. Dark/serious */
.story-section.bg-problem {
  background: #1a3a00;
}
.story-section.bg-problem .story-eyebrow { color: #d1db24; border-color: #d1db24; }
.story-section.bg-problem .story-headline { color: #f0f7e6; font-size: clamp(24px, 3.8vw, 48px); white-space: nowrap; }
@media (max-width: 900px) { .story-section.bg-problem .story-headline { white-space: normal; } }
.story-section.bg-problem .story-container { max-width: 1200px; }
.story-section.bg-problem .story-body { color: rgba(240,247,230,0.75); }
.story-section.bg-problem .pull-quote {
  background: rgba(209,219,36,0.12);
  border-color: #d1db24;
}
.story-section.bg-problem .pull-quote p { color: #d1db24; }

/* Who It's For. Warm yellow */
.story-section.bg-warm { background: #fefce8; }
.story-section.bg-warm .story-headline { white-space: nowrap; font-size: clamp(20px, 3.2vw, 42px); }
.story-section.bg-warm .story-container { max-width: 1200px; }
@media (max-width: 900px) { .story-section.bg-warm .story-headline { white-space: normal; } }
.story-section.bg-warm .who-item {
  background: #fff;
  border-color: #e8d84a;
}

/* Guide Moment */
.story-section.bg-guide { background: #1a3a00; }
.story-section.bg-guide .story-container { max-width: 1200px; }
.story-section.bg-guide .guide-body { max-width: 100%; }
.story-section.bg-guide .story-eyebrow { color: #62b517; border-color: #62b517; }
.guide-body {
  font-size: 19px;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  max-width: 780px;
  margin-bottom: 40px;
  font-weight: 500;
}
.guide-signals {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.guide-signal {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
}
.guide-signal-check {
  color: #62b517;
  font-size: 18px;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Our Approach. Slate blue-gray */
.story-section.bg-cool { background: #eef5e8; }
.story-section.bg-cool .story-container { max-width: 1200px; }
.story-section.bg-cool .story-body { max-width: 100%; }
.story-section.bg-cool .approach-pillar {
  background: #fff;
  border-color: #c8d8e8;
}

/* Games stays with existing #e8edd8 */
.story-container {
  max-width: 900px;
  margin: 0 auto;
}
.story-eyebrow {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: #62b517;
  border-left: 4px solid #d1db24;
  padding-left: 10px;
  margin-bottom: 20px;
}
.story-headline {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  color: #1a1a1a;
  line-height: 1.15;
  margin-bottom: 20px;
}
.story-headline em { font-style: normal; color: #62b517; }
.story-body {
  font-size: 16px;
  color: #444;
  line-height: 1.8;
  max-width: 720px;
  margin-bottom: 32px;
}

/* ===== PULL QUOTE ===== */
.stakes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}
.stakes-card {
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(209,219,36,0.25);
  border-left: 4px solid #d1db24;
  border-radius: 0 10px 10px 0;
  padding: 20px 22px;
}
.stakes-label {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #d1db24;
  margin-bottom: 10px;
}
.stakes-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
  font-style: italic;
  margin: 0;
}
@media (max-width: 700px) { .stakes-grid { grid-template-columns: 1fr; } }
.pull-quote {
  position: relative;
  padding: 28px 36px;
  background: #f4fae8;
  border-left: 5px solid #62b517;
  border-radius: 0 12px 12px 0;
  margin: 8px 0;
}
.pull-quote p {
  font-size: 20px;
  font-weight: 800;
  color: #2a4a08;
  line-height: 1.4;
  font-style: italic;
}

/* ===== APPROACH PILLARS ===== */
.approach-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 36px;
}

/* ===== COMMUNITY PHOTO STRIP (infinite scroll) ===== */
.community-strip {
  margin-top: 56px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
}
.community-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: community-scroll 90s linear infinite;
}
.community-strip:hover .community-track {
  animation-play-state: paused;
}
.community-photo {
  flex: 0 0 auto;
  width: 320px;
  height: 220px;
  border-radius: 14px;
  overflow: hidden;
  background: #1a3a00;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.community-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@keyframes community-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (max-width: 600px) {
  .community-strip { margin-top: 40px; }
  .community-photo { width: 240px; height: 170px; }
  .community-track { gap: 12px; animation-duration: 70s; }
}
@media (prefers-reduced-motion: reduce) {
  .community-track { animation: none; }
}
.approach-pillar {
  background: #fff;
  border: 2px solid #a8c96a;
  border-radius: 14px;
  padding: 24px 22px;
  box-shadow: 0 2px 12px rgba(98,181,23,0.1);
}
.pillar-icon {
  font-size: 28px;
  margin-bottom: 12px;
}
.pillar-icon-svg {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.pillar-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.approach-pillar strong {
  display: block;
  font-size: 15px;
  font-weight: 900;
  color: #1a1a1a;
  margin-bottom: 8px;
}
.approach-pillar p {
  font-size: 13px;
  color: #555;
  line-height: 1.6;
}

/* ===== GAMES SECTION ===== */
.games-section {
  padding: 64px 24px;
  background: #e8edd8;
}
.games-section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.games-section .story-eyebrow { margin-bottom: 8px; }
.games-section-cta {
  font-size: 15px;
  color: #4a6a20;
  margin-bottom: 28px;
  font-weight: 600;
}
.plan-mini-cards {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 14px;
}
.plan-mini-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  background: #fff;
  border: 1.5px solid #d4e8a8;
  border-radius: 10px;
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s, transform 0.14s;
}
.plan-mini-card:hover {
  border-color: #62b517;
  background: #f4fae8;
  transform: translateY(-1px);
}
.plan-mini-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  font-size: 9px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.04em;
  color: #fff;
}
.plan-mini-icon--ai  { background: transparent; }
.plan-mini-icon--cy  { background: transparent; }
.plan-mini-icon--knn { background: transparent; }
.plan-mini-icon--qb  { background: transparent; }
.plan-mini-label {
  font-size: 9px;
  font-weight: 700;
  color: #a8b899;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 0 2px;
}
.plan-mini-label::before,
.plan-mini-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #dcecc4;
}
.plan-mini-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  flex: 1;
}
.plan-mini-title {
  font-size: 13px;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.2;
}
.plan-mini-sub {
  font-size: 10px;
  color: #6a8a40;
  font-weight: 600;
  line-height: 1.3;
}
.plan-mini-arrow {
  font-size: 13px;
  color: #62b517;
  font-weight: 700;
}
.topic-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.topic-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  padding: 28px 20px 24px;
  background: #fff;
  border: 2px solid #a8c96a;
  border-radius: 14px;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, transform 0.18s, box-shadow 0.18s;
}
.topic-link::after { display: none; }
.topic-link:hover {
  background: #f4fae8;
  border-color: #62b517;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(98,181,23,0.15);
}
.topic-link-anim {
  width: 150px;
  height: 150px;
  flex-shrink: 0;
  border-radius: 10px;
  background: #f0f5e8;
  overflow: hidden;
  margin-bottom: 18px;
}
.topic-link-anim svg { width: 100%; height: 100%; display: block; }
.topic-link-info { flex: 1; }
.topic-link-subject {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #62b517;
  margin-bottom: 6px;
}
.topic-link-title {
  font-size: 20px;
  font-weight: 900;
  color: #1a1a1a;
  line-height: 1.2;
}
.topic-link-explore {
  display: inline-block;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 800;
  color: #62b517;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ===== GAME CARD ===== */
.game-card {
  background: #fff;
  border-radius: 14px;
  border: 2px solid #a8c96a;
  box-shadow: 0 4px 20px rgba(98,181,23,0.15);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.game-card:not(.coming-soon):hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(98,181,23,0.26);
}
.game-card.coming-soon {
  opacity: 0.7;
  pointer-events: none;
}
.game-card-tech-header {
  background: #d1db24;
  padding: 7px 18px;
  text-align: center;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.4px;
  color: #2a3a00;
  position: relative;
  overflow: hidden;
}
.game-card-tech-header::after {
  content: '';
  position: absolute;
  top: 0; left: -80%; width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.45), transparent);
  transition: left 0.45s ease;
}
.game-card:hover .game-card-tech-header::after { left: 130%; }
.game-card-image {
  width: 100%;
  height: 200px;
  flex-shrink: 0;
  background: #f0f5e8;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.game-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.35s ease;
}
.game-card:not(.coming-soon):hover .game-card-image img { transform: scale(1.06); }
.coming-soon-placeholder {
  font-size: 15px;
  font-weight: 700;
  color: #9ca3af;
  text-align: center;
  padding: 0 20px;
  font-style: italic;
  line-height: 1.4;
}
.game-card-body {
  padding: 14px 18px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.game-card-title {
  font-size: 19px;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.2;
}
.game-card-theme {
  font-size: 13px;
  color: #555;
  line-height: 1.45;
  font-style: italic;
}
.game-card-learning {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  background: #f4fae8;
  border-left: 3px solid #d1db24;
  border-radius: 0 7px 7px 0;
  padding: 8px 10px;
}
.game-card-learning p {
  font-size: 12px;
  color: #4a8c11;
  font-weight: 600;
  line-height: 1.35;
}
.game-card-actions {
  display: flex;
  gap: 8px;
  padding-top: 4px;
}
.btn-play {
  flex: 1;
  padding: 10px 16px;
  background: #62b517;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border: none;
  border-radius: 9px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: background 0.15s, transform 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.btn-play:hover { background: #4d8f12; transform: scale(1.02); }
.btn-buy {
  padding: 10px 13px;
  background: transparent;
  color: #4a8c11;
  font-size: 13px;
  font-weight: 700;
  border: 2px solid #d1db24;
  border-radius: 9px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: all 0.15s;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.btn-buy:hover { border-color: #62b517; background: #f4fae8; }
.btn-waitlist {
  flex: 1;
  padding: 10px 16px;
  background: #d1db24;
  color: #2a3a00;
  font-size: 14px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, transform 0.15s;
}
.btn-waitlist:hover { background: #b8c11e; transform: scale(1.02); }
.game-card.coming-soon .btn-waitlist { pointer-events: auto; }

/* ===== SCENARIO CARDS ===== */
.scenario-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 36px;
}
.scenario-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 2px solid #a8c96a;
  border-radius: 16px;
  padding: 32px 28px;
  transition: all 0.2s ease;
}
.scenario-card:hover {
  border-color: #62b517;
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(98,181,23,0.18);
}
.scenario-tag {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #62b517;
  border-left: 4px solid #d1db24;
  padding-left: 8px;
  margin-bottom: 18px;
}
.scenario-use-case {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #62b517;
  border-left: 4px solid #d1db24;
  padding-left: 8px;
  margin-bottom: 10px;
}
.scenario-audience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}
.audience-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3px;
  background: rgba(98,181,23,0.10);
  color: #3a6e0e;
  border: 1px solid rgba(98,181,23,0.28);
  border-radius: 20px;
  padding: 3px 10px;
}
.scenario-icon { margin-bottom: 14px; }
.scenario-icon svg { width: 40px; height: 40px; display: block; }
.scenario-card strong {
  display: block;
  font-size: 18px;
  font-weight: 900;
  color: #1a1a1a;
  line-height: 1.25;
  margin-bottom: 12px;
}
.scenario-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}
.scenario-cta {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  color: #4e9612;
  letter-spacing: 0.03em;
  border-top: 1px solid #d4e8a8;
  padding-top: 14px;
}
@media (max-width: 700px) { .scenario-grid { grid-template-columns: 1fr; } }

/* ===== WHO IT'S FOR ===== */
.who-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 480px;
  gap: 20px;
  margin-top: 20px;
}
.who-item {
  background: #f4fae8;
  border: 2px solid #d4e8a8;
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
  transition: all 0.2s ease;
}
.who-icon { width: 52px; height: 52px; margin-bottom: 14px; flex-shrink: 0; }
.who-icon svg { width: 100%; height: 100%; display: block; }
.who-item strong {
  display: block;
  font-size: 15px;
  font-weight: 900;
  color: #1a1a1a;
  margin-bottom: 8px;
}
.who-item p {
  font-size: 13px;
  color: #555;
  line-height: 1.6;
}
a.who-item { display: block; text-decoration: none; color: inherit; }
a.who-item:hover { border-color: #62b517; background: #f0fae0; transform: translateY(-3px); box-shadow: 0 6px 20px rgba(98,181,23,0.15); }
.who-item--featured {
  grid-column: 1 / -1;
  display: block;
  text-align: left;
  background: #eef7d8;
  border-color: #62b517;
  border-width: 2.5px;
  padding: 32px 36px;
}
.who-item--featured .who-item-header { margin-bottom: 14px; }
.who-item--featured .who-item-header .who-icon { width: 44px; height: 44px; }
.who-item--featured strong { font-size: 20px; }
.who-item--featured p { font-size: 15px; width: 100%; max-width: none; }
.who-cta-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 800;
  color: #4e9612;
  letter-spacing: 0.02em;
}
.who-item--secondary { opacity: 0.82; text-align: left; }
.who-item-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.who-item-header .who-icon { margin-bottom: 0; width: 40px; height: 40px; flex-shrink: 0; }
.who-item-header strong { margin-bottom: 0; }

/* ===== 1-2-3 PLAN ===== */
.story-section.bg-plan { background: #fff; }
.plan-container { max-width: 1200px; }
.plan-headline { color: #1a1a1a; }
.plan-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  position: relative;
}
.plan-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.66% + 12px);
  right: calc(16.66% + 12px);
  height: 2px;
  background: linear-gradient(90deg, #62b517, #d1db24, #62b517);
  z-index: 0;
}
.plan-step {
  background: #f8faf2;
  border: 2px solid #d4e8a8;
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.plan-number {
  width: 52px;
  height: 52px;
  background: #62b517;
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(98,181,23,0.3);
}
.plan-step-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}
.plan-step-questions {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.plan-step-questions li {
  font-size: 12px;
  color: #555;
  line-height: 1.5;
  padding-left: 14px;
  position: relative;
}
.plan-step-questions li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #62b517;
  font-weight: 700;
  font-size: 10px;
  top: 1px;
}
.plan-step strong {
  display: block;
  font-size: 16px;
  font-weight: 900;
  color: #1a1a1a;
  margin-bottom: 10px;
}
.plan-step p {
  font-size: 14px;
  color: #555;
  line-height: 1.65;
}
@media (max-width: 900px) {
  .plan-steps { grid-template-columns: 1fr; }
  .plan-steps::before { display: none; }
}

/* ===== TESTIMONIAL STRIP ===== */
.testimonial-strip {
  background: #f4fae8;
  border-top: 1px solid #d4e8a8;
  border-bottom: 1px solid #d4e8a8;
  padding: 56px 24px;
}
.testimonial-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.testimonial-mark {
  width: 40px;
  height: 30px;
  margin-bottom: 20px;
}
.testimonial-strip blockquote {
  font-size: clamp(20px, 2.8vw, 28px);
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.4;
  margin: 0 0 16px;
  font-style: italic;
}
.testimonial-strip cite {
  font-size: 13px;
  font-weight: 700;
  color: #62b517;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-style: normal;
}

/* ===== ABOUT CTA STRIP ===== */
.about-cta {
  background: #1a3a00;
  padding: 56px 24px;
  text-align: center;
}
.about-cta h2 {
  font-size: 26px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.2;
}
.about-cta p {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  max-width: 500px;
  margin: 0 auto 28px;
  line-height: 1.6;
}
.cta-btn-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-about {
  display: inline-block;
  padding: 13px 32px;
  background: #d1db24;
  color: #1a3a00;
  font-size: 15px;
  font-weight: 800;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s;
}
.btn-about:hover { background: #c4cc1e; transform: scale(1.02); }
.btn-about--secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.45);
}
.btn-about--secondary:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

/* ===== BLOG SECTION ===== */
.blog-section {
  padding: 72px 24px;
  background: #eef5e8;
}
.blog-section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 16px;
}
.blog-view-all {
  font-size: 13px;
  font-weight: 800;
  color: #4e9612;
  text-decoration: none;
  letter-spacing: 0.03em;
  border-bottom: 2px solid #d1db24;
  padding-bottom: 2px;
  transition: color 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.blog-view-all:hover { color: #2a6a00; border-color: #62b517; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: #fff;
  border: 2px solid #a8c96a;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(98,181,23,0.18);
  border-color: #62b517;
}
.blog-card-img {
  width: 100%;
  height: 160px;
  background: #f0f5e8;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.blog-card-img svg { width: 100%; height: 100%; display: block; }
.blog-card-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.blog-card-tag {
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: #fff;
  background: #62b517;
  padding: 3px 8px;
  border-radius: 5px;
}
.blog-card-tag.tag-cyber    { background: #2a5c0a; }
.blog-card-tag.tag-ai       { background: #4a6a20; }
.blog-card-tag.tag-learn    { background: #6a8c30; }
.blog-card-tag.tag-workshop { background: #1a6a5a; }
.blog-card-tag.tag-quantum  { background: #5a20a0; }
.blog-card-tag.tag-career        { background: #2a4a8a; }
.blog-card-tag.tag-org-upskilling{ background: #7a4a10; }
.blog-card-img-auto {
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-card-img-wordmark {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: rgba(255,255,255,0.15);
  user-select: none;
  text-align: center;
  padding: 0 16px;
}
.blog-card-date {
  font-size: 11px;
  font-weight: 600;
  color: #888;
}
.blog-card-title {
  font-size: 17px;
  font-weight: 900;
  color: #1a1a1a;
  line-height: 1.3;
}
.blog-card-excerpt {
  font-size: 13px;
  color: #555;
  line-height: 1.65;
  flex: 1;
}
.blog-card-read {
  font-size: 12px;
  font-weight: 800;
  color: #62b517;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding-top: 6px;
  border-top: 1px solid #e8f0d8;
}
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } .blog-header { flex-direction: column; align-items: flex-start; } }

/* ===== BLOG CAROUSEL ===== */
.blog-page { display: none; }
.blog-page.active { display: grid; }
@keyframes blog-slide-in {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes blog-slide-in-left {
  from { opacity: 0; transform: translateX(-24px); }
  to   { opacity: 1; transform: translateX(0); }
}
.blog-page.anim-right { animation: blog-slide-in 0.32s cubic-bezier(0.4,0,0.2,1) both; }
.blog-page.anim-left  { animation: blog-slide-in-left 0.32s cubic-bezier(0.4,0,0.2,1) both; }
.blog-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}
.blog-carousel-btn {
  background: #fff;
  border: 2px solid #a8c96a;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  color: #4a8c11;
  transition: background 0.15s, border-color 0.15s, opacity 0.15s;
  font-family: inherit;
  line-height: 1;
}
.blog-carousel-btn:hover:not(:disabled) { background: #f4fae8; border-color: #62b517; }
.blog-carousel-btn:disabled { opacity: 0.28; cursor: default; }
.blog-dots { display: flex; gap: 8px; align-items: center; }
.blog-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: #c8ddb0;
  transition: background 0.2s, transform 0.2s;
  cursor: pointer;
}
.blog-dot.active { background: #62b517; transform: scale(1.35); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .approach-pillars { grid-template-columns: repeat(2, 1fr); }
  .topic-links { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: 1fr; }
  .who-item--featured { flex-direction: column; gap: 16px; padding: 24px 20px; }
  .who-item--featured .who-icon { width: 52px; height: 52px; }
}
@media (max-width: 600px) {
  .games-grid { grid-template-columns: 1fr; }
  .hero { padding: 48px 20px 40px; }
  .story-section { padding: 48px 20px; }
  .pull-quote { padding: 20px 24px; }
  .pull-quote p { font-size: 17px; }
}

/* ===== BACKGROUND PATTERNS ===== */

/* 1. Circuit traces. Problem + CTA (dark sections with pattern) */
.story-section.bg-problem,
.about-cta {
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='%2362b517' stroke-opacity='0.11' stroke-width='1.5' fill='none' stroke-linecap='round'%3E%3Cpolyline points='0,30 40,30 40,75'/%3E%3Ccircle cx='40' cy='30' r='3'/%3E%3Ccircle cx='40' cy='75' r='3'/%3E%3Cline x1='40' y1='75' x2='100' y2='75'/%3E%3Cline x1='70' y1='0' x2='70' y2='30'/%3E%3Ccircle cx='70' cy='30' r='2.5'/%3E%3Cline x1='70' y1='30' x2='100' y2='30'/%3E%3Cline x1='0' y1='55' x2='15' y2='55'/%3E%3Ccircle cx='15' cy='55' r='2.5'/%3E%3Cline x1='15' y1='55' x2='15' y2='100'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 100px 100px;
}

/* 2. Guide Moment. No pattern, clean dark (empathy moment should breathe) */
.story-section.bg-guide {
  background-color: #1a3a00;
}

/* 3. Who It's For. Solid, no pattern */
/* (bg-warm already defined above as solid #fefce8) */

/* 4. Our Approach. Solid, no pattern */
/* (bg-cool already defined above as solid #eef5e8) */

/* 5. How It Works. Solid, no pattern */
.story-section.bg-plan { background-image: none; }

/* 6. Diagonal lines. Games section (medium section with pattern) */
.games-section {
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(98,181,23,0.07) 0,
    rgba(98,181,23,0.07) 1px,
    transparent 0,
    transparent 50%
  );
  background-size: 18px 18px;
}

/* 7. Testimonial. No pattern, clean (let the quote breathe) */
.testimonial-strip { background-image: none; }

/* Restore hover transforms on topic-links after reveal */
.topic-link[data-reveal].is-visible:hover { transform: translateY(-4px); }
.hero-word-box {
  display: inline-grid;
  background: #fefce8;
  padding: 2px 12px 4px;
  border-radius: 8px;
  border: 2px solid #c8a800;
  vertical-align: baseline;
  overflow: hidden;
}
.hero-word-item {
  grid-column: 1;
  grid-row: 1;
  color: #62b517;
  opacity: 0;
  text-align: center;
  white-space: nowrap;
}
@keyframes hero-word-enter {
  from { opacity: 0; transform: translateY(70%); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes hero-word-leave {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(-70%); }
}
.hero-word-item.active  { animation: hero-word-enter 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
.hero-word-item.leaving { animation: hero-word-leave 0.4s ease-in forwards; }
