/* ============================================================
   WinArt — App landing pages (reusable)
   Set --accent / --accent2 per app on <body class="lp">.
   ============================================================ */

.lp { --accent: #06b6d4; --accent2: #ec4899; }
.lp .accent-grad {
  background: linear-gradient(110deg, var(--accent), var(--accent2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---- top nav ---- */
.lp-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,10,15,.72); backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid var(--border);
}
.lp-nav .container { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.lp-back { color: var(--text-mut); font-size: 14px; font-family: var(--font-display); }
.lp-back:hover { color: var(--text); }

/* ---- hero ---- */
.lp-hero { padding: 70px 0 40px; }
.lp-hero-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.lp-badge {
  display: inline-flex; align-items: center; gap: 12px; margin-bottom: 26px;
}
.lp-badge img { width: 64px; height: 64px; border-radius: 16px; box-shadow: 0 10px 30px -8px var(--accent); }
.lp-badge .lp-badge-meta { display: flex; flex-direction: column; }
.lp-badge .lp-badge-meta strong { font-family: var(--font-display); font-size: 16px; }
.lp-badge .lp-badge-meta span { font-size: 13px; color: var(--text-dim); }

.lp-title { font-size: clamp(40px, 7vw, 72px); font-weight: 700; line-height: 1.02; letter-spacing: -.03em; margin-bottom: 14px; }
.lp-tagline { font-family: var(--font-display); font-size: clamp(18px, 3vw, 24px); font-weight: 500; color: var(--text); margin-bottom: 16px; }
.lp-sub { font-size: 17px; color: var(--text-mut); max-width: 520px; margin-bottom: 30px; }

/* ---- store buttons ---- */
.store-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.store-btn {
  display: inline-flex; align-items: center; gap: 12px; padding: 12px 20px;
  border-radius: 14px; background: var(--text); color: #0a0a0f;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.store-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 30px -10px rgba(255,255,255,.35); }
.store-btn svg { width: 26px; height: 26px; flex-shrink: 0; }
.store-btn .sb-text { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.store-btn .sb-text small { font-size: 11px; font-weight: 500; opacity: .7; }
.store-btn .sb-text b { font-family: var(--font-display); font-size: 17px; font-weight: 600; }
.store-btn.soon { background: var(--surface); color: var(--text-mut); border: 1px solid var(--border-hi); cursor: default; }
.store-btn.soon:hover { transform: none; box-shadow: none; }

/* ---- region / availability note ---- */
.lp-note { margin-top: 16px; font-family: var(--font-display); font-size: 13.5px; color: var(--text-mut); letter-spacing: .01em; }

/* ---- phone screenshots ---- */
.lp-shots { display: flex; justify-content: center; gap: 18px; }
.lp-shots img {
  width: 100%; max-width: 280px; height: auto; display: block;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.5));
}
.lp-shots .shot-2 { display: none; }
.lp-hero .lp-shots img { max-width: 300px; }

/* ---- modes ---- */
.modes { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.mode-card {
  position: relative; padding: 32px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--border); overflow: hidden;
}
.mode-card::before { content: ""; position: absolute; inset: 0; padding: 1px; border-radius: var(--radius);
  background: linear-gradient(135deg, var(--mc, var(--accent)), transparent 70%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; }
.mode-card h3 { font-size: 24px; margin-bottom: 12px; color: var(--mc, var(--accent)); }
.mode-card p { color: var(--text-mut); font-size: 15.5px; line-height: 1.6; }
.mode-card .mode-eg { display: inline-block; margin-top: 16px; font-family: var(--font-display); font-size: 13px;
  color: var(--text); border: 1px solid var(--border-hi); border-radius: 999px; padding: 6px 14px; background: var(--surface-2); }

/* ---- feature grid ---- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature {
  display: flex; align-items: flex-start; gap: 12px; padding: 20px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm);
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.feature:hover { border-color: var(--border-hi); transform: translateY(-3px); }
.feature .fi { color: var(--accent); font-size: 18px; line-height: 1.4; flex-shrink: 0; }
.feature span { font-size: 15px; color: var(--text); }

/* ---- gameplay split ---- */
.lp-split { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.lp-split.reverse .lp-split-media { order: -1; }
.lp-split-text h2 { font-size: clamp(26px, 4vw, 38px); margin-bottom: 16px; }
.lp-split-text p { color: var(--text-mut); font-size: 16px; margin-bottom: 14px; }

/* ---- final cta ---- */
.lp-final { text-align: center; padding: 90px 0; }
.lp-final h2 { font-size: clamp(30px, 6vw, 56px); margin-bottom: 28px; }

/* ---- responsive ---- */
@media (max-width: 860px) {
  .lp-hero-inner, .lp-split { grid-template-columns: 1fr; gap: 40px; }
  .lp-split.reverse .lp-split-media { order: 0; }
  .lp-hero .lp-shots { order: -1; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .modes { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .feature-grid { grid-template-columns: 1fr; }
  .lp-shots .shot-2 { display: block; }
}
