/* ===== Reset & base ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Nunito', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: #FEF7EE;
  color: #1B1B1B;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ===== Tokens ===== */
:root {
  --bg-light: #FEF7EE;
  --bg-cream: #FFF4E2;
  --bg-dark: #0F1A14;
  --line: #E6E6E6;
  --line-dark: rgba(186, 244, 116, 0.12);
  --text: #1B1B1B;
  --text-muted: #897869;
  --text-on-dark: #E9F1EA;
  --primary: #406900;
  --primary-bg: #BAF474;
  --coral: #FF7A5C;
  --mint: #00B894;
  --gold: #FFC933;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.08);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.12);
  --radius: 16px;
  --radius-lg: 24px;
}

/* ===== Layout ===== */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 96px 0; }
.section-light { background: var(--bg-light); }
.section-dark {
  background: var(--bg-dark);
  color: var(--text-on-dark);
}
.section-dark .kicker { color: var(--primary-bg); }
.section-dark .section-head h2 { color: var(--text-on-dark); }
.section-dark .section-head p { color: #9BAA9F; }

.section-head { text-align: center; max-width: 700px; margin: 0 auto 56px; }
.kicker {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.kicker-light { color: var(--coral); }
.section-head h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}
.section-head p {
  font-size: 17px;
  color: var(--text-muted);
  margin: 0;
}

/* ===== Nav ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(254, 247, 238, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--text);
}
.brand-mark {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--primary-bg);
  padding: 3px;
  box-shadow: 0 2px 8px rgba(186, 244, 116, 0.4);
}
.nav-links {
  display: flex;
  gap: 28px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-muted);
}
.nav-links a:hover { color: var(--primary); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 15px;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
  text-align: center;
}
.btn-sm { padding: 10px 16px; font-size: 14px; }
.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 16px rgba(64, 105, 0, 0.3);
}
.btn-primary:hover {
  background: #2F4F00;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(64, 105, 0, 0.4);
}
.btn-ghost {
  background: white;
  color: var(--text);
  border-color: var(--line);
}
.btn-ghost:hover {
  border-color: var(--primary);
  background: #FAFCF5;
}
.btn-block { width: 100%; }
.btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none !important; }

/* ===== Hero ===== */
.hero {
  padding: 56px 0 100px;
  background:
    radial-gradient(ellipse 80% 50% at 80% 20%, rgba(186, 244, 116, 0.3) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 10% 80%, rgba(255, 201, 51, 0.2) 0%, transparent 50%),
    var(--bg-light);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(64, 105, 0, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
  position: relative;
}

.badge-soon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: white;
  border: 1px solid var(--coral);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 800;
  color: var(--coral);
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(255, 122, 92, 0.15);
}
.badge-soon .dot {
  width: 7px; height: 7px;
  background: var(--coral);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 122, 92, 0.25);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(255, 122, 92, 0.25); }
  50% { box-shadow: 0 0 0 8px rgba(255, 122, 92, 0); }
}
.hero h1 {
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
  color: var(--text);
}
.grad-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--mint) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 0 14px;
  line-height: 1.6;
  font-weight: 500;
}
.hero-sub strong { color: var(--coral); font-weight: 800; }
.hero-sub-mini {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 0 32px;
  line-height: 1.55;
  font-weight: 500;
}
.hero-cta {
  display: flex;
  justify-content: center; 
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-meta {
  display: flex;
  gap: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.hero-meta div { display: flex; flex-direction: column; }
.hero-meta strong {
  font-size: 28px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}
.hero-meta span {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 600;
}

/* ===== Hero visual ===== */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 480px;
}
.hero-mascot {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mascot-stage {
  position: relative;
  width: 360px;
  height: 360px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    inset 0 -8px 24px rgba(186, 244, 116, 0.2),
    0 20px 60px rgba(64, 105, 0, 0.15);
  border: 4px solid white;
  overflow: hidden;
}
.mascot-stage::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(186, 244, 116, 0.4) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
  animation: glow 3s ease-in-out infinite;
}
@keyframes glow {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.1); opacity: 0.8; }
}
.mascot-stage img {
  width: 80%;
  height: 80%;
  object-fit: cover;
  transition: opacity 0.25s ease;
}
.mascot-stage img.sprite-sprite {
  width: 160%;
  height: 160%;
  margin: -30% 0 0 -30%;
}
.mascot-stage img.hero-mascot-img {
  width: 90%;
  height: 90%;
  margin: 0;
  object-fit: contain;
}

/* Mascot emoji/imagen completa en waitlist (no sprite sheet recortado) */
.waitlist-mascot .waitlist-img-emoji {
  width: 90%;
  height: 90%;
  object-fit: contain;
  display: block;
}

.float-tag {
  position: absolute;
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 800;
  color: var(--text);
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.float-tag span { font-size: 18px; }
.tag-top    { top: 30px;  right: 20px;  animation: floaty 5s ease-in-out infinite; }
.tag-bottom { bottom: 40px; left: 0;   animation: floaty 5s ease-in-out infinite -2s; }
.tag-side   { top: 50%;   right: -20px; animation: floaty 5s ease-in-out infinite -4s; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ===== States grid (4 estados) ===== */
.states-grid {
  display: grid;
  gap: 16px;
}
.states-4 { grid-template-columns: repeat(4, 1fr); }
.states-5 { grid-template-columns: repeat(5, 1fr); }

.state-card {
  background: white;
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px 16px 22px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.state-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.state-art {
  width: 100%;
  aspect-ratio: 1;
  margin: 0 0 14px;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.state-art .state-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}
.state-card:hover .state-img { transform: scale(1.05); }

/* ===== Pista de evolución (evo_track.png horizontal: 6 etapas, 1 fila) ===== */
.evo-track {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 32px;
  aspect-ratio: 6 / 1;
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(180deg, #FFF8E7 0%, #FFF1D6 100%);
  border: 2px solid var(--line);
}
.evo-track-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.evo-stages {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  max-width: 1100px;
  margin: 0 auto;
}
.evo-stage {
  text-align: center;
  padding: 12px 8px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 14px;
  border: 2px solid var(--line);
}
.evo-stage-emoji {
  display: block;
  font-size: 28px;
  line-height: 1;
  margin-bottom: 6px;
}
.evo-stage h3 {
  font-size: 14px;
  font-weight: 900;
  margin: 0 0 4px;
  color: var(--text);
}
.evo-stage p {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
}

/* Pet emoji fallback (panda, cat) — emoji grande centrado en .pet-art */
.pet-art .pet-emoji {
  font-size: 96px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
}
.pet-card:hover .pet-emoji { transform: scale(1.05); }

/* ===== Sprite sheet (mascot_sheet.png es 1024x1024, 4 poses en grid 2x2) ===== */
.sprite-sprite {
  width: 200%;
  height: 200%;
  max-width: 200%;
  max-height: 200%;
  object-fit: cover;
  display: block;
  image-rendering: -webkit-optimize-contrast;
}
.state-art .sprite-sprite,
.pet-art .sprite-sprite {
  width: 200%;
  height: 200%;
}

/* Poses - cada una muestra 1/4 de la imagen */
.sprite-1 { object-position: 0% 0%; }     /* arriba-izquierda: saluda feliz */
.sprite-2 { object-position: 100% 0%; }   /* arriba-derecha: pensando */
.sprite-3 { object-position: 0% 100%; }   /* abajo-izquierda: asustado */
.sprite-4 { object-position: 100% 100%; } /* abajo-derecha: pulgar arriba */

.state-card h3 {
  font-size: 18px;
  font-weight: 900;
  margin: 0 0 6px;
  color: var(--text);
}
.state-card p {
  font-size: 12.5px;
  color: var(--text-muted);
  margin: 0 0 12px;
  line-height: 1.5;
  min-height: 56px;
}
.state-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}
.state-tag.good    { background: rgba(64, 105, 0, 0.12);  color: var(--primary); }
.state-tag.zen     { background: rgba(77, 179, 85, 0.18); color: #2A8033; }
.state-tag.warning { background: rgba(255, 122, 92, 0.15); color: #C24A30; }
.state-tag.danger  { background: rgba(140, 92, 231, 0.15); color: #5849C2; }

/* ===== Pets grid (5 mascotas) ===== */
.pets-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.pet-card {
  background: white;
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px 16px 18px;
  text-align: center;
  position: relative;
  transition: all 0.3s;
  color: var(--text);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pet-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.pet-art {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 18px;
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pet-art .pet-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.pet-art .sprite-sprite {
  width: 200%;
  height: 200%;
  margin: -50% 0 0 -50%;
  object-fit: cover;
}
.pet-card:hover .pet-img { transform: scale(1.05); }

.pet-koko   { background: linear-gradient(180deg, #FFE9D1 0%, #FFF4E5 100%); }
.pet-marino { background: linear-gradient(180deg, #D6EBFF 0%, #E8F3FF 100%); }
.pet-bruno  { background: linear-gradient(180deg, #F0E1CC 0%, #F8EBD9 100%); }
.pet-bao    { background: linear-gradient(180deg, #DCF0D8 0%, #E8F4E2 100%); }
.pet-sombra { background: linear-gradient(180deg, #EBDDF0 0%, #F2E8F5 100%); }

.dex {
  position: absolute;
  top: 12px; left: 12px;
  font-size: 11px;
  font-weight: 800;
  color: var(--text-muted);
  background: rgba(255,255,255,0.9);
  padding: 3px 8px;
  border-radius: 100px;
  z-index: 2;
}
.pet-card h3 {
  font-size: 18px;
  font-weight: 900;
  margin: 0 0 4px;
  color: var(--text);
}
.pet-desc {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0 0 12px;
  line-height: 1.45;
  min-height: 50px;
}
.pet-coin {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  color: var(--primary);
  background: var(--primary-bg);
  padding: 4px 10px;
  border-radius: 100px;
}

/* ===== Waitlist ===== */
.waitlist-section { padding-top: 80px; padding-bottom: 80px; }
.waitlist-card {
  background: white;
  border: 2px solid var(--line);
  border-radius: 32px;
  padding: 40px;
  display: grid;
  grid-template-columns: 0.6fr 1fr;
  gap: 40px;
  align-items: center;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.waitlist-card::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(186, 244, 116, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.waitlist-left {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
.waitlist-mascot {
  width: 220px;
  height: 220px;
  background: var(--bg-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid white;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.waitlist-img {
  width: 90%;
  height: 90%;
  object-fit: cover;
}
.waitlist-img.sprite-sprite {
  width: 180%;
  height: 180%;
  margin: -45% 0 0 -45%;
}
.waitlist-img.sprite-waitlist { object-position: 0% 0%; }
.waitlist-right { position: relative; z-index: 1; }
.waitlist-right h2 {
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 10px;
  color: var(--text);
  letter-spacing: -0.02em;
}
.waitlist-right > p {
  color: var(--text-muted);
  font-size: 16px;
  margin: 0 0 24px;
  line-height: 1.55;
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 13px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: 0.01em;
}
.field input[type="text"],
.field input[type="email"] {
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 16px;
  border: 2px solid var(--line);
  border-radius: 12px;
  background: var(--bg-light);
  color: var(--text);
  transition: all 0.15s ease;
  outline: none;
}
.field input[type="text"]::placeholder,
.field input[type="email"]::placeholder {
  color: #B5A99A;
  font-weight: 500;
}
.field input[type="text"]:focus,
.field input[type="email"]:focus {
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 4px rgba(186, 244, 116, 0.25);
}
.field input.invalid {
  border-color: var(--coral);
  background: #FFF5F2;
}
.field-check {
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin: 2px 0 6px;
}
.field-check input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: var(--primary);
  cursor: pointer;
  flex-shrink: 0;
}
.field-check label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
}

.form-msg {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  min-height: 20px;
}
.form-msg.success { color: var(--primary); }
.form-msg.error   { color: var(--coral); }
.form-msg.loading { color: var(--text-muted); }
.form-fineprint {
  margin: -4px 0 0;
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
}

.btn-spinner {
  display: none;
  animation: spin 0.8s linear infinite;
}
.btn.loading .btn-spinner { display: inline-block; }
.btn.loading .btn-label   { display: none; }
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ===== Launch strip ===== */
.launch-strip {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: center;
}
.launch-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: white;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  transition: all 0.2s;
}
.launch-item:hover { border-color: var(--primary-bg); }
.launch-num { font-size: 28px; }
.launch-item strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
}
.launch-item small {
  font-size: 12px;
  color: var(--text-muted);
  display: block;
  margin-top: 2px;
}

/* ===== Footer ===== */
.footer {
  padding: 48px 0 32px;
  background: var(--bg-dark);
  color: var(--text-on-dark);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
}
.footer-brand img {
  width: 32px; height: 32px;
  border-radius: 9px;
  background: var(--primary-bg);
  padding: 3px;
}
.footer p { color: #9BAA9F; font-size: 14px; margin: 0; }
.footer-links a {
  color: var(--primary-bg);
  font-size: 14px;
  font-weight: 700;
}
.footer small { color: #6A7870; font-size: 12px; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .hero { padding: 40px 0 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { min-height: 400px; order: -1; }
  .mascot-stage { width: 280px; height: 280px; }
  .states-grid, .states-4, .states-5 { grid-template-columns: repeat(2, 1fr); }
  .pets-grid { grid-template-columns: repeat(2, 1fr); }
  .waitlist-card { grid-template-columns: 1fr; padding: 28px; gap: 24px; }
  .waitlist-left { order: -1; }
  .waitlist-mascot { width: 160px; height: 160px; }
  .launch-strip { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
}
@media (max-width: 520px) {
  .container { padding: 0 18px; }
  .hero-meta { gap: 20px; }
  .hero-meta strong { font-size: 22px; }
  .hero h1 { font-size: 38px; }
  .btn { padding: 12px 18px; font-size: 14px; }
  .tag-side { display: none; }
  .waitlist-card { padding: 22px; border-radius: 22px; }
  .launch-item { padding: 14px; }
}

/* ===== Manifesto page (por-que.html) ===== */
.manifesto-hero { padding: 80px 0 90px; }
.manifesto-hero-inner { max-width: 820px; margin: 0 auto; text-align: center; }
.manifesto-hero .kicker { margin-bottom: 18px; }
.manifesto-hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  margin: 0 0 24px;
}
.manifesto-lead {
  max-width: 680px;
  margin: 0 auto 32px;
  font-size: clamp(17px, 2.4vw, 21px);
  color: var(--text-muted);
  line-height: 1.6;
}
.manifesto-lead strong { color: var(--coral); font-weight: 800; }

/* Problem cards */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.problem-card {
  background: white;
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  transition: all 0.3s;
}
.problem-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--coral); }
.problem-emoji {
  display: block;
  font-size: 34px;
  line-height: 1;
  margin-bottom: 16px;
}
.problem-card h3 { font-size: 18px; font-weight: 900; margin: 0 0 8px; color: var(--text); }
.problem-card p { font-size: 14px; color: var(--text-muted); margin: 0; line-height: 1.5; }
.problem-card p strong { color: var(--coral); font-weight: 800; }

/* Pull quote */
.pull-section { padding: 88px 0; }
.pull-quote {
  margin: 0 auto;
  max-width: 880px;
  text-align: center;
  border: none;
}
.pull-quote p {
  font-size: clamp(26px, 4.2vw, 44px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  color: var(--text-on-dark);
}
.pull-quote cite {
  display: block;
  font-size: 15px;
  font-style: normal;
  color: #9BAA9F;
  font-weight: 600;
}

/* Tried list */
.tried-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.tried-row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: white;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 24px;
  transition: border-color 0.2s;
}
.tried-row:hover { border-color: var(--coral); }
.tried-x {
  flex-shrink: 0;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255, 122, 92, 0.12);
  color: var(--coral);
  border-radius: 50%;
  font-weight: 900;
  font-size: 16px;
}
.tried-row strong { display: block; font-size: 17px; font-weight: 800; color: var(--text); margin-bottom: 2px; }
.tried-row span { font-size: 14px; color: var(--text-muted); }

/* Idea grid */
.idea-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
}
.idea-mascot { display: flex; justify-content: center; }
.idea-mascot .mascot-stage {
  width: 280px; height: 280px;
  background: var(--bg-cream);
  border-color: var(--bg-cream);
}
.idea-copy { display: flex; flex-direction: column; gap: 18px; }
.idea-p {
  font-size: clamp(17px, 2.2vw, 20px);
  color: #C7D4CB;
  line-height: 1.6;
  margin: 0;
}
.idea-p strong { color: var(--coral); font-weight: 800; }
.idea-p-last strong { color: var(--primary-bg); }
.grad-text-on-dark {
  background: linear-gradient(135deg, var(--primary-bg) 0%, var(--mint) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 900;
}

/* Answer grid */
.answer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.answer-card {
  background: white;
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  transition: all 0.3s;
  position: relative;
}
.answer-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--primary-bg); }
.answer-num {
  display: block;
  font-size: 13px;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.answer-card h3 { font-size: 18px; font-weight: 900; margin: 0 0 8px; color: var(--text); }
.answer-card p { font-size: 14px; color: var(--text-muted); margin: 0; line-height: 1.5; }

/* Values */
.values-grid {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(186, 244, 116, 0.06);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 18px 22px;
}
.value-mark {
  flex-shrink: 0;
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  background: var(--primary-bg);
  color: var(--primary);
  border-radius: 50%;
  font-weight: 900;
  font-size: 15px;
}
.value-item p { margin: 0; color: #C7D4CB; font-size: 15px; line-height: 1.5; }
.value-item strong { color: var(--text-on-dark); font-weight: 800; }

/* Final CTA */
.manifesto-cta { text-align: center; max-width: 640px; margin: 0 auto; }
.manifesto-cta h2 {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 900;
  line-height: 1.15;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}
.manifesto-cta p { font-size: 17px; color: var(--text-muted); margin: 0 0 28px; line-height: 1.55; }
.btn-lg { padding: 16px 28px; font-size: 16px; }
.manifesto-back {
  display: inline-block;
  margin-top: 22px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
}
.manifesto-back:hover { color: var(--primary); }

@media (max-width: 980px) {
  .problem-grid, .answer-grid { grid-template-columns: repeat(2, 1fr); }
  .idea-grid { grid-template-columns: 1fr; gap: 32px; }
  .idea-mascot { order: -1; }
  .values-grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .problem-grid, .answer-grid { grid-template-columns: 1fr; }
  .tried-row { padding: 16px; gap: 14px; }
}

/* ===== Reveal ===== */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
}

/* ===== Focus ===== */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}
