/* ============================================================================
   AlmaIA — Landing (estático)
   Tema oscuro con acento rosado, coherente con la app.
   ========================================================================== */

:root {
  --bg: #09090b;
  --surface: #121216;
  --surface-2: #18181d;
  --surface-3: #1f1f26;
  --accent: #ff647c;
  --accent-soft: rgba(255, 100, 124, 0.14);
  --accent-2: #ff8ba3;
  --violet: #8a6bff;
  --text: #f4f4f5;
  --muted: #9b9ba4;
  --muted-2: #6f6f78;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --radius: 16px;
  --radius-lg: 24px;
  --font-sans: "Manrope", ui-sans-serif, system-ui, sans-serif;
  --font-display: "DM Serif Display", ui-serif, Georgia, serif;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
  --max: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.skip-link {
  position: absolute;
  left: 16px;
  top: -64px;
  z-index: 200;
  padding: 10px 18px;
  border-radius: 0 0 12px 12px;
  background: var(--accent);
  color: #1c0f0a;
  font-weight: 700;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 0; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 860px; }

/* ---------------------------------------------------------------- Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--accent);
  color: #1c0f0a;
}
.btn-primary:hover { background: var(--accent-2); }

.btn-outline {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--text);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent-2); }

.btn-sm { padding: 9px 18px; font-size: 0.88rem; }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }

/* ------------------------------------------------------------------ Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(9, 9, 11, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 68px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}
.logo-mark {
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  object-fit: cover;
}
.logo-word {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: -0.01em;
}

.main-nav {
  display: flex;
  gap: 28px;
  flex: 1;
}
.nav-link { color: var(--muted); font-size: 0.92rem; font-weight: 500; transition: color 0.15s ease; }
.nav-link:hover { color: var(--text); }

.header-actions { display: flex; align-items: center; gap: 12px; }

.icon-btn {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  transition: color 0.15s ease, border-color 0.15s ease;
}
.icon-btn svg { width: 18px; height: 18px; }
.icon-btn:hover { color: var(--text); border-color: var(--border-strong); }
.icon-btn.vip { color: var(--violet); border-color: rgba(138, 107, 255, 0.35); }
.icon-btn.vip:hover { border-color: var(--violet); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: transparent;
  align-items: center;
  justify-content: center;
}
.menu-toggle span { width: 18px; height: 2px; background: var(--text); border-radius: 2px; }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 8px 24px 20px;
  border-top: 1px solid var(--border);
}
.mobile-menu a { padding: 10px 0; color: var(--muted); font-weight: 500; }
.mobile-menu a.btn { margin-top: 6px; justify-content: center; }
.mobile-menu.open { display: flex; }

/* -------------------------------------------------------------------- Hero */
.hero {
  position: relative;
  padding: 88px 0 72px;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(circle at center, rgba(255, 100, 124, 0.22), transparent 60%);
  filter: blur(20px);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.hero-title .grad {
  background: linear-gradient(120deg, var(--accent-2), var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero-sub {
  margin-top: 22px;
  max-width: 560px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.hero-cta { margin-top: 30px; }

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 42px;
}
.stat { display: flex; flex-direction: column; }
.stat strong { font-size: 1.5rem; font-weight: 800; }
.stat span { font-size: 0.82rem; color: var(--muted); }

.hero-copy { min-width: 0; }

/* Hero showcase */
.hero-showcase {
  position: relative;
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  align-items: flex-end;
  min-height: 380px;
  min-width: 0;
}
.showcase-card {
  position: relative;
  width: 170px;
  height: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow);
}
.showcase-card img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.showcase-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(6, 6, 7, 0.94), rgba(6, 6, 7, 0));
  pointer-events: none;
}
.showcase-card--main { width: 210px; height: 360px; }
.showcase-info {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}
.showcase-name { display: flex; align-items: center; gap: 7px; }
.showcase-name strong { font-size: 1.05rem; font-weight: 700; }
.showcase-name .online { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; }
.showcase-meta { display: flex; gap: 12px; font-size: 0.8rem; color: #f1d5dc; }
.showcase-react {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.5);
  font-size: 0.85rem;
  backdrop-filter: blur(6px);
}

/* ---------------------------------------------------------------- Sections */
.section { padding: 96px 0; }
.section-alt { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.section-head { max-width: 760px; margin: 0 auto 52px; text-align: center; }
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.6vw, 2.7rem);
  line-height: 1.15;
}
.section-head p { margin-top: 18px; color: var(--muted); font-size: 1.02rem; }

/* Split layout */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split-reverse .split-visual { order: 2; }
.split-reverse .split-copy { order: 1; }

.split-copy h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  line-height: 1.15;
  margin-bottom: 20px;
}
.split-copy p { color: var(--muted); font-size: 1rem; margin-bottom: 26px; }

.split-copy { min-width: 0; }
.split-visual { display: flex; justify-content: center; min-width: 0; }

.visual-panel {
  position: relative;
  width: 320px;
  max-width: 100%;
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow);
}
.visual-panel img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.visual-panel-tag {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border-strong);
  font-size: 0.78rem;
  backdrop-filter: blur(6px);
}

.memory-card {
  width: 380px;
  max-width: 100%;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow);
}
.memory-avatar { width: 64px; height: 64px; border-radius: 50%; overflow: hidden; margin-bottom: 16px; border: 2px solid var(--accent); }
.memory-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.memory-quote { font-family: var(--font-display); font-size: 1.4rem; line-height: 1.4; }
.memory-label { display: inline-block; margin-top: 14px; font-size: 0.8rem; color: var(--accent); font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }

.devices { position: relative; width: 100%; height: 420px; }
.device { position: absolute; border-radius: 24px; overflow: hidden; border: 1px solid var(--border-strong); box-shadow: var(--shadow); }
.device img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.device-phone { width: 200px; height: 400px; left: 20px; top: 10px; }
.device-tablet { width: 240px; height: 320px; right: 0; bottom: 20px; }

/* Character grid */
.character-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.character-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface-2);
  border: 1px solid var(--border);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.character-card:hover { transform: translateY(-6px); border-color: var(--accent); }
.character-card img { width: 100%; height: auto; aspect-ratio: 3 / 4; object-fit: cover; object-position: top; }
.character-card-body { padding: 16px; }
.character-card-body h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 6px; }
.character-card-body p { color: var(--muted); font-size: 0.88rem; line-height: 1.5; min-height: 66px; }
.character-stats { display: flex; gap: 14px; margin-top: 12px; font-size: 0.82rem; color: var(--accent-2); font-weight: 600; }

/* Benefits */
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.benefit {
  padding: 26px;
  border-radius: var(--radius-lg);
  background: var(--surface-2);
  border: 1px solid var(--border);
}
.benefit-icon { font-size: 1.9rem; display: inline-block; margin-bottom: 14px; }
.benefit h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.benefit p { color: var(--muted); font-size: 0.9rem; line-height: 1.6; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step {
  position: relative;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--bg);
  border: 1px solid var(--border);
}
.step-num {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 16px;
}
.step h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 0.92rem; line-height: 1.6; }

/* FAQ */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-2);
  overflow: hidden;
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: var(--accent);
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}
.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] .faq-icon::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq-item p { padding: 0 22px 20px; color: var(--muted); font-size: 0.95rem; line-height: 1.65; }

/* Explore more */
.explore-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.explore-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--border);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.explore-card:hover { transform: translateY(-5px); border-color: var(--accent); }
.explore-card img { width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; object-position: top; }
.explore-body { padding: 16px; }
.explore-body h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 6px; }
.explore-body p { color: var(--muted); font-size: 0.85rem; line-height: 1.55; }

/* ------------------------------------------------------- Google Play testers */
.tester-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
  background:
    radial-gradient(circle at 15% 40%, rgba(255, 100, 124, 0.14), transparent 35%),
    var(--surface);
}
.tester-layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: center; }
.tester-copy h2 { max-width: 620px; font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 400; line-height: 1.1; }
.tester-copy > p:not(.eyebrow) { margin-top: 20px; color: var(--muted); }
.tester-benefits { display: grid; gap: 10px; margin: 24px 0; list-style: none; }
.tester-benefits li { position: relative; padding-left: 28px; color: var(--text); }
.tester-benefits li::before { position: absolute; left: 0; content: '✓'; color: var(--accent); font-weight: 800; }
.tester-note { padding: 14px 16px; border: 1px solid var(--border-strong); border-radius: 14px; background: rgba(255,255,255,.03); font-size: .84rem; }
.tester-form { display: grid; gap: 9px; padding: 30px; border: 1px solid var(--border-strong); border-radius: var(--radius-lg); background: rgba(9,9,11,.88); box-shadow: var(--shadow); }
.tester-form__head { margin-bottom: 10px; }
.tester-form__head > span { color: var(--accent); font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.tester-form__head h3 { margin-top: 4px; font-size: 1.45rem; }
.tester-form__head p { margin-top: 5px; color: var(--muted); font-size: .86rem; }
.tester-form > label:not(.tester-consent) { margin-top: 7px; font-size: .82rem; font-weight: 700; }
.tester-form label span { color: var(--muted); font-weight: 500; }
.tester-form input:not([type='checkbox']),
.tester-form select,
.tester-form textarea {
  width: 100%;
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  padding: 12px 14px;
  outline: none;
  color: var(--text);
  background: var(--surface-2);
  font: inherit;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.tester-form textarea { resize: vertical; min-height: 92px; }
.tester-form input:focus,
.tester-form select:focus,
.tester-form textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.tester-form small { color: var(--muted-2); font-size: .72rem; }
.tester-consent { display: flex; align-items: flex-start; gap: 10px; margin: 12px 0 4px; cursor: pointer; }
.tester-consent input { width: 18px; height: 18px; margin-top: 2px; flex: 0 0 auto; accent-color: var(--accent); }
.tester-consent span { font-size: .77rem; line-height: 1.5; }
.tester-submit { display: inline-flex; align-items: center; justify-content: center; gap: 10px; width: 100%; margin-top: 4px; }
.tester-submit:disabled { cursor: wait; opacity: .65; }
.tester-submit__spinner { display: none; width: 17px; height: 17px; border: 2px solid rgba(255,255,255,.4); border-top-color: #fff; border-radius: 50%; animation: tester-spin .7s linear infinite; }
.tester-submit.is-loading .tester-submit__spinner { display: block; }
.tester-status { min-height: 1.4em; color: var(--muted); font-size: .8rem; text-align: center; }
.tester-status.is-success { color: #74dda2; }
.tester-status.is-error { color: var(--accent-2); }
.tester-success { padding: 46px 34px; border: 1px solid var(--border-strong); border-radius: var(--radius-lg); background: rgba(9,9,11,.88); box-shadow: var(--shadow); text-align: center; }
.tester-success[hidden] { display: none; }
.tester-success__icon { display: grid; place-items: center; width: 66px; height: 66px; margin: 0 auto 18px; border-radius: 50%; color: #08130d; background: #74dda2; font-size: 2rem; font-weight: 900; }
.tester-success h3 { margin: 7px 0 10px; font-size: 1.65rem; }
.tester-success > p:not(.eyebrow) { max-width: 500px; margin: 0 auto 24px; color: var(--muted); }

@keyframes tester-spin { to { transform: rotate(360deg); } }

/* Daily reward */
.daily-reward {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 16px;
  width: min(560px, calc(100% - 32px));
  padding: 16px 18px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(30, 22, 28, 0.98), rgba(18, 18, 22, 0.98));
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}
.daily-icon { font-size: 1.8rem; }
.daily-copy { flex: 1; min-width: 0; }
.daily-copy strong { display: block; font-size: 0.98rem; }
.daily-copy span { display: block; color: var(--accent-2); font-weight: 700; font-size: 0.88rem; }
.daily-copy p { color: var(--muted); font-size: 0.78rem; margin-top: 2px; }
.daily-close {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 24px;
  height: 24px;
  border: none;
  background: transparent;
  color: var(--muted);
  font-size: 1.1rem;
}
.daily-close:hover { color: var(--text); }

/* ------------------------------------------------------------- Compartir */
.share-rail {
  position: fixed;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 95;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.share-btn {
  position: relative;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  color: var(--text);
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
  transition: transform 0.18s ease, background 0.2s ease, color 0.2s ease;
}
.share-btn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--accent), var(--violet));
}
.share-btn svg { width: 20px; height: 20px; }
.share-btn:hover {
  transform: translateX(-4px);
  background: var(--surface-3);
  color: var(--accent-2);
}

/* ------------------------------------------------------------------ Footer */
.site-footer { border-top: 1px solid var(--border); background: var(--surface); padding-top: 64px; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1.3fr; gap: 32px; padding-bottom: 48px; }
.footer-brand .logo { margin-bottom: 14px; }
.footer-tagline { color: var(--muted); font-size: 0.9rem; margin-bottom: 22px; }
.socials span { display: block; font-size: 0.82rem; color: var(--muted); margin-bottom: 10px; }
.social-icons { display: flex; gap: 12px; }
.social-icons a { color: var(--muted); transition: color 0.15s ease; }
.social-icons a:hover { color: var(--accent-2); }
.social-icons svg { width: 20px; height: 20px; }

.footer-col h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 16px; }
.footer-col a:not(.store-btn) { display: block; color: var(--muted); font-size: 0.85rem; padding: 5px 0; transition: color 0.15s ease; }
.footer-col a:not(.store-btn):hover { color: var(--text); }

.store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 16px;
  border-radius: 14px;
  border: 1px solid var(--border-strong);
  background: #050506;
  color: var(--text);
  margin-bottom: 10px;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.store-btn:hover { border-color: var(--accent); transform: translateY(-2px); }
.store-btn svg { width: 24px; height: 24px; flex-shrink: 0; }
.store-btn span { display: flex; flex-direction: column; line-height: 1.15; font-size: 0.95rem; font-weight: 700; }
.store-btn small { color: var(--muted); font-size: 0.6rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  border-top: 1px solid var(--border);
  color: var(--muted-2);
  font-size: 0.82rem;
  flex-wrap: wrap;
}
.footer-legal { display: flex; gap: 22px; }
.footer-legal a { color: var(--muted-2); }
.footer-legal a:hover { color: var(--text); }

/* ------------------------------------------------------------------ Reveal */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* -------------------------------------------------------------- Responsive */
@media (max-width: 980px) {
  .main-nav { display: none; }
  .menu-toggle { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-showcase { justify-content: center; }
  .character-grid, .benefits-grid, .explore-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .tester-layout { grid-template-columns: 1fr; gap: 36px; }
  .split-reverse .split-visual { order: 0; }
  .split-reverse .split-copy { order: 0; }
  .footer-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .main-nav { display: none; }
  .header-actions .btn-outline, .header-actions .btn-sm { display: none; }
  .menu-toggle { display: flex; }
  .hero { padding: 48px 0 48px; }
  .hero-stats { gap: 24px; }
  .btn { white-space: normal; }
  .character-grid, .benefits-grid, .explore-grid { grid-template-columns: 1fr; }
  .hero-showcase { gap: 8px; min-height: auto; }
  .showcase-card { width: auto; flex: 1 1 0; min-width: 0; height: 220px; }
  .showcase-card--main { flex: 1.4 1 0; height: 280px; }
  .daily-reward { flex-direction: column; align-items: flex-start; }
  .daily-reward .btn { width: 100%; }
  .share-rail { right: 10px; gap: 8px; }
  .share-btn { width: 38px; height: 38px; border-radius: 10px; }
  .share-btn svg { width: 17px; height: 17px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
