/* Page-specific styles */

/* ===== 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: '\2715'; color: #c45a15; }
.journey-side--solution .journey-side-points li::before { content: '\2713'; 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%); }
}

/* ===== STORY SECTIONS ===== */
.story-section {
  padding: 72px 24px;
}
.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; }
.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; }

.story-section.bg-warm { background: #fefce8; }
.story-section.bg-warm .who-item {
  background: #fff;
  border-color: #e8d84a;
}

.story-section.bg-cool { background: #f0f4f8; }
.story-section.bg-tint { background: #dff0c8; }
.story-section.bg-cool .approach-pillar {
  background: #fff;
  border-color: #c8d8e8;
}

.story-container {
  max-width: 1320px;
  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: 100%;
  margin-bottom: 32px;
}

/* ===== PULL QUOTE ===== */
.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;
}
.pull-quote cite {
  display: block;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 800;
  color: #62b517;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== MINI GAME CARDS ===== */
.plan-mini-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 24px;
}
@media (min-width: 640px) {
  .plan-mini-cards {
    grid-template-columns: 1fr 1fr;
  }
}
.plan-mini-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: #f4fae8;
  border: 1.5px solid #d4e8a8;
  border-radius: 12px;
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s, transform 0.14s;
}
.plan-mini-card:hover {
  border-color: #62b517;
  background: #eaf5d4;
  transform: translateY(-1px);
}
.plan-mini-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: transparent;
}
.plan-mini-text {
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: left;
}
.plan-mini-title {
  font-size: 14px;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.2;
}
.plan-mini-sub {
  font-size: 11px;
  color: #6a8a40;
  font-weight: 600;
}
.plan-mini-arrow {
  font-size: 14px;
  color: #62b517;
  font-weight: 700;
}

/* ===== GAME LINK + OUTCOMES UNIFIED COLUMNS ===== */
.game-link-outcomes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 32px;
}
@media (min-width: 640px) {
  .game-link-outcomes-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.game-link-outcomes-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ===== GAME OUTCOMES ===== */
.game-outcomes-col {
  background: #fff;
  border: 1.5px solid #d4e8a8;
  border-radius: 12px;
  padding: 18px 20px;
  flex: 1;
}
.game-outcomes-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.game-outcomes-list li {
  font-size: 12px;
  color: #555;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.game-outcomes-list li strong {
  color: #1a1a1a;
}
.outcome-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: #f4fae8;
  border: 1.5px solid #d4e8a8;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.outcome-icon svg {
  width: 16px;
  height: 16px;
}

/* ===== APPROACH PILLARS ===== */
.approach-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.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);
}
.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;
}

/* ===== WHO GRID ===== */
.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.who-item {
  background: #f4fae8;
  border: 2px solid #d4e8a8;
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
}
.who-icon { font-size: 32px; margin-bottom: 12px; }
.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;
}

/* ===== 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;
}
.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); }

/* ===== CTA BUTTONS ===== */
.section-cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.btn-play-now {
  display: inline-block;
  background: #62b517;
  color: #fff;
  text-decoration: none;
  text-align: center;
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 800;
  transition: background 0.15s, transform 0.15s;
}
.btn-play-now:hover { background: #4d8f12; transform: scale(1.02); }
.btn-play-alt {
  display: inline-block;
  background: transparent;
  color: #d1db24;
  text-decoration: none;
  text-align: center;
  padding: 12px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 800;
  border: 2px solid #d1db24;
  transition: all 0.15s;
}
.btn-play-alt:hover { background: rgba(209,219,36,0.15); border-color: #fff; color: #fff; }

/* ===== HERO VISUAL ===== */
.hero-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: center;
}
.hero-headline-full {
  font-size: clamp(36px, 5.8vw, 70px);
  font-weight: 900;
  color: #f0f7e6;
  line-height: 1.1;
  margin-bottom: 36px;
}
.hero-headline-full em { font-style: normal; color: #62b517; }
.hero-visual-wrap {
  display: flex;
  justify-content: center;
}
.hero-visual-block {
  background: #0d2200;
  border-radius: 20px;
  padding: 32px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual-block svg {
  width: 100%;
  display: block;
}
@media (max-width: 900px) {
  .hero-layout { grid-template-columns: 1fr; }
  .hero-visual-wrap { margin-top: 32px; }
}

/* ===== BACKGROUND PATTERNS ===== */
.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;
}
/* ===== TWO PERSPECTIVES ===== */
.two-perspectives {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 32px 0 8px;
}
.perspective-card {
  background: #f4fae8;
  border: 2px solid #c8e0a0;
  border-radius: 16px;
  padding: 28px 26px;
}
.perspective-label {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #62b517;
  border-left: 3px solid #d1db24;
  padding-left: 8px;
  margin-bottom: 16px;
}
@media (max-width: 700px) {
  .two-perspectives { grid-template-columns: 1fr; }
}

/* ===== AUDIENCE GRID ===== */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.audience-card {
  background: #fff;
  border: 1.5px solid rgba(98,181,23,0.3);
  border-radius: 12px;
  padding: 20px 22px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.audience-icon {
  width: 32px; height: 32px; flex-shrink: 0;
  background: rgba(98,181,23,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.audience-icon svg { width: 18px; height: 18px; }
.audience-card strong { display: block; font-size: 13px; font-weight: 800; color: #1a3a00; margin-bottom: 4px; }
.audience-card p { font-size: 12px; color: #4a5a3a; line-height: 1.5; margin: 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .approach-pillars { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .story-section { padding: 48px 20px; }
  .pull-quote { padding: 20px 24px; }
  .pull-quote p { font-size: 17px; }
  .section-cta-buttons { flex-direction: column; }
  .hero-visual-block { padding: 20px; }
}
