:root {
  --bg: #0b0c10;
  --bg-2: #12141a;
  --ink: #f4f1ea;
  --muted: #9a9aa8;
  --line: rgba(244, 241, 234, 0.1);
  --card: #161821;
  --card-2: #1c1f2a;
  --accent: #ff4d6d;
  --accent-2: #ff8a5b;
  --accent-soft: rgba(255, 77, 109, 0.14);
  --gold: #e6c07b;
  --radius: 22px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(900px 480px at 85% -5%, rgba(255, 77, 109, 0.18) 0%, transparent 55%),
    radial-gradient(700px 420px at 0% 15%, rgba(255, 138, 91, 0.12) 0%, transparent 50%),
    radial-gradient(600px 400px at 50% 100%, rgba(80, 100, 255, 0.08) 0%, transparent 45%),
    var(--bg);
  font-family: Inter, "Noto Sans SC", "PingFang SC", "Hiragino Sans", sans-serif;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, select { font: inherit; }

.wrap { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }

.top {
  position: sticky;
  top: 0;
  z-index: 30;
  width: 100%;
  margin: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(11, 12, 16, 0.82);
  backdrop-filter: blur(18px);
}
.top-inner {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
  padding: 8px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -0.04em;
  font-size: 18px;
  color: var(--ink);
}
.brand img {
  width: 34px;
  height: 34px;
  border-radius: 11px;
}
.nav {
  display: flex;
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}
.nav a:hover, .nav a.active { color: var(--ink); }
.nav a.active { color: var(--accent); }
.lang {
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--ink);
  border-radius: 999px;
  padding: 10px 14px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid rgba(255, 77, 109, 0.28);
  color: #ffb3c1;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.download-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.download-actions .qr-box {
  width: 148px;
  height: 148px;
  flex-shrink: 0;
}
.download-actions .qr-box::before {
  width: 104px;
  height: 104px;
}
.download-actions .qr-box::after {
  inset: 44px;
}
.download-actions-btns {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.download-actions-btns .qr-hint {
  margin: 0;
  text-align: left;
}
.download-actions-btns .btn {
  min-width: 180px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 600;
  font-size: 15px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 10px 28px rgba(255, 77, 109, 0.35);
}
.btn-primary:hover { filter: brightness(1.06); }
.btn-ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
}
.btn-ghost:hover { border-color: rgba(244, 241, 234, 0.28); }
.trust {
  display: flex;
  gap: 28px;
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.trust b { display: block; font-size: 20px; letter-spacing: -0.04em; color: var(--ink); }
.trust span { color: var(--muted); font-size: 12px; }

.section { padding: 36px 0 12px; }
.section h2 {
  margin: 0 0 8px;
  font-size: 34px;
  letter-spacing: -0.045em;
  color: var(--ink);
}
.lead { color: var(--muted); margin: 0 0 24px; max-width: 560px; }

/* Full-bleed top title / download */
.download-top {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}
.download-hero {
  width: 100%;
  min-height: min(78vh, 720px);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
  padding: 56px max(24px, calc((100% - 1160px) / 2));
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(11, 12, 16, 0.2), rgba(11, 12, 16, 0.75)),
    radial-gradient(700px 420px at 20% 30%, rgba(255, 77, 109, 0.16), transparent 60%),
    radial-gradient(500px 360px at 90% 70%, rgba(255, 138, 91, 0.12), transparent 55%),
    var(--bg-2);
  box-shadow: none;
}
.download-copy { max-width: 720px; }
.download-copy h1 {
  margin: 16px 0 14px;
  width: 100%;
  max-width: none;
  font-size: clamp(48px, 7vw, 84px);
  line-height: 0.96;
  letter-spacing: -0.055em;
  font-weight: 700;
  color: var(--ink);
}
.download-copy .lead {
  max-width: 640px;
  font-size: 18px;
  color: #b8b8c4;
}
.download-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.qr-box {
  width: 180px;
  height: 180px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(255,255,255,.12);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
}

.qr-hint { margin: 0; color: var(--muted); font-size: 13px; text-align: center; }
.phone.mini {
  width: min(200px, 100%);
  padding: 8px;
  border-radius: 28px;
  background: #000;
  box-shadow: var(--shadow);
  margin-top: 8px;
  border: 1px solid rgba(255,255,255,.08);
}
.phone.mini img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 22px;
}

.poster-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .2s ease, transform .2s ease;
  color: inherit;
}
a.card { text-decoration: none; }
.card:hover {
  border-color: rgba(255, 77, 109, 0.35);
  transform: translateY(-2px);
}
.card .poster { border-radius: 0; }
.card h3 {
  margin: 12px 14px 4px;
  font-size: 16px;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.card .tag {
  margin: 0 14px;
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 600;
}
.card .blurb {
  margin: 8px 14px 16px;
  color: var(--muted);
  font-size: 13px;
  flex: 1;
}
.poster {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.poster img { width: 100%; height: 100%; object-fit: cover; }
.poster .ep {
  position: absolute;
  top: 10px;
  right: 10px;
  left: auto;
  bottom: auto;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(0,0,0,.65);
  color: #fff;
  font-size: 11px;
  font-weight: 650;
  text-shadow: none;
}

.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.tile {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px;
  min-height: 168px;
}
.tile.wide {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--card-2), rgba(255, 77, 109, 0.12));
  border-color: rgba(255, 77, 109, 0.22);
}
.num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
}
.tile h3 { margin: 0 0 8px; font-size: 20px; letter-spacing: -0.04em; color: var(--ink); }
.tile p { margin: 0; color: var(--muted); }

.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.quote-grid.three { grid-template-columns: repeat(3, 1fr); }
.quote {
  margin: 0;
  padding: 24px;
  background: var(--card);
  border-radius: 24px;
  border: 1px solid var(--line);
}
.stars { color: var(--gold); letter-spacing: 2px; font-size: 13px; }
.quote p { font-size: 16px; letter-spacing: -0.02em; color: #e8e6df; }
.quote em { font-style: normal; font-weight: 650; color: #fff; }
.quote footer { color: var(--muted); font-size: 13px; }

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}
.faq summary {
  cursor: pointer;
  font-weight: 650;
  font-size: 17px;
  letter-spacing: -0.03em;
  list-style: none;
  color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq p { color: var(--muted); margin: 10px 0 0; max-width: 720px; }

.footer {
  margin-top: 48px;
  padding: 28px 0 40px;
  color: var(--muted);
  font-size: 14px;
  background: #07080b;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 20px;
  padding-top: 24px;
}
.footer a { display: block; margin: 6px 0; }
.footer a:hover { color: var(--ink); }
.logo-type { color: var(--ink); font-weight: 700; letter-spacing: -0.04em; }

@media (max-width: 1100px) {
  .poster-grid { grid-template-columns: repeat(3, 1fr); }
  .quote-grid.three { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav { display: none; }
  .download-hero, .bento, .quote-grid, .quote-grid.three, .footer-grid, .poster-grid {
    grid-template-columns: 1fr;
  }
  .download-hero {
    min-height: auto;
    padding: 40px 20px;
  }
  .download-copy h1 { font-size: clamp(36px, 10vw, 52px); }
  .tile.wide { grid-column: auto; }
  .phone.mini img { height: 300px; }
}
