:root {
  --bg: #0A0A0C;
  --surface: #17171C;
  --surface-alt: #212127;
  --border: #2C2C33;
  --accent: #5594F7;
  --accent-muted: #5925AD;
  --danger: #D7333B;
  --warning: #E08E45;
  --text-primary: #F5F5F7;
  --text-muted: #9A98A3;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text-primary);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

img, video { max-width: 100%; height: auto; }

.wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

header.site {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

header.site .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 12px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-primary);
  text-decoration: none;
}
a.logo:hover { text-decoration: none; }

.logo img { width: 32px; height: 32px; border-radius: 8px; }

nav.site {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px 20px;
}
nav.site a {
  color: var(--text-muted);
  font-size: 0.95rem;
  white-space: nowrap;
}
nav.site a:hover { color: var(--text-primary); }

.hero {
  padding: 88px 0 64px;
  text-align: center;
}

.hero h1 {
  font-size: 2.75rem;
  line-height: 1.15;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}

.hero .accent { color: var(--accent); }

.hero p.lead {
  color: var(--text-muted);
  font-size: 1.2rem;
  max-width: 620px;
  margin: 0 auto 36px;
}

.cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 22px 8px 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, #1c1f26, #101216);
  color: #fff;
  width: fit-content;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45), 0 2px 6px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.store-badge:hover {
  text-decoration: none;
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.55), 0 0 0 1px var(--accent),
    0 4px 18px rgba(76, 141, 255, 0.25);
}
.store-badge .play-icon { flex-shrink: 0; }
.store-badge-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
  text-align: left;
}
.store-badge-top {
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.store-badge-bottom {
  font-size: 1.25rem;
  font-weight: 700;
}

.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.98rem;
}

.btn-primary {
  background: var(--accent);
  color: #06111F;
}
.btn-primary:hover { text-decoration: none; opacity: 0.9; }

.btn-secondary {
  background: var(--surface);
  color: var(--text-primary);
  border: 1px solid var(--border);
}
.btn-secondary:hover { text-decoration: none; border-color: var(--accent); }

section { padding: 64px 0; }

section.alt { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

h2.section-title {
  font-size: 1.9rem;
  text-align: center;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}

p.section-lead {
  text-align: center;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 48px;
}

.story {
  max-width: 680px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1.05rem;
}
.story strong { color: var(--text-primary); }

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
}

.feature-card .icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 14px;
  background: rgba(85, 148, 247, 0.15);
  color: var(--accent);
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.feature-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.pro-card {
  max-width: 640px;
  margin: 40px auto 0;
  background: linear-gradient(135deg, rgba(85,148,247,0.12), rgba(89,37,173,0.12));
  border: 1px solid var(--accent);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
}

.shots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.shot-thumb {
  display: block;
  position: relative;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface);
  padding: 0;
  cursor: pointer;
  transition: border-color 0.15s, transform 0.15s;
}
.shot-thumb:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.shot-thumb img {
  display: block;
  width: 100%;
  height: auto;
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(6,6,8,0.92);
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: 88vw;
  max-height: 86vh;
  border-radius: 20px;
  box-shadow: 0 30px 90px rgba(0,0,0,0.6);
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border);
  color: var(--text-primary);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.16); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

@media (max-width: 600px) {
  .lightbox-nav { width: 40px; height: 40px; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
}

.pro-card h3 { margin: 0 0 10px; font-size: 1.3rem; }
.pro-card p { color: var(--text-muted); margin: 0 0 20px; }

.pro-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
  text-align: left;
  color: var(--text-primary);
  font-size: 0.92rem;
}
.pro-list li::before { content: "✓ "; color: var(--accent); font-weight: 700; }

.pro-price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary) !important;
  margin: 0 0 4px !important;
}
.pro-price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted);
}

.faq-list {
  max-width: 720px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 4px 20px;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 28px 16px 0;
  position: relative;
  font-weight: 600;
  color: var(--text-primary);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 14px;
  color: var(--accent);
  font-size: 1.3rem;
  font-weight: 700;
  transition: transform 0.15s;
}
.faq-item[open] summary::after {
  content: "\2212";
}
.faq-item p {
  color: var(--text-muted);
  margin: 0 0 18px;
  font-size: 0.95rem;
}

.notice {
  max-width: 720px;
  margin: 28px auto 0;
  background: var(--surface);
  border: 1px solid var(--warning);
  border-left: 4px solid var(--warning);
  border-radius: 10px;
  padding: 18px 22px;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.notice strong { color: var(--text-primary); }

footer.site {
  border-top: 1px solid var(--border);
  padding: 32px 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

footer.site .wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

footer.site a { color: var(--text-muted); margin-right: 20px; }
footer.site a:hover { color: var(--text-primary); }

.footer-legal {
  max-width: 960px;
  margin: 20px auto 0;
  padding: 16px 24px 0;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.footer-legal p { margin: 0 0 4px; }
.footer-legal .badges span { white-space: nowrap; }
.footer-legal .badges span:not(:last-child)::after {
  content: "\00b7";
  margin: 0 8px;
  color: var(--border);
}

.legal {
  max-width: 720px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}

.legal h1 { font-size: 2rem; margin-bottom: 4px; }
.legal .updated { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 40px; }
.legal h2 { font-size: 1.25rem; margin-top: 40px; }
.legal p, .legal li { color: var(--text-muted); }
.legal ul { padding-left: 20px; }
.legal strong { color: var(--text-primary); }

@media (max-width: 700px) {
  header.site .wrap { justify-content: center; text-align: center; }
  nav.site { justify-content: center; width: 100%; }
}

@media (max-width: 600px) {
  .hero h1 { font-size: 2rem; }
  nav.site a { font-size: 0.85rem; }
  .shots-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  section { padding: 48px 0; }
  .wrap { padding: 0 18px; }
}

@media (max-width: 380px) {
  .shots-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
}
