:root {
  --bg-main: #080812;
  --bg-deep: #151022;
  --pink: #ff5c8a;
  --gold: #ffd36a;
  --text-main: #ffffff;
  --text-muted: #a9a9b8;
  --card-bg: rgba(255, 255, 255, 0.08);
  --card-border: rgba(255, 255, 255, 0.16);
  --gradient-main: linear-gradient(135deg, #a83bff 0%, #ff3b5c 100%);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 8%, rgba(168, 59, 255, 0.24), transparent 32rem),
    radial-gradient(circle at 82% 18%, rgba(255, 59, 92, 0.18), transparent 30rem),
    linear-gradient(180deg, var(--bg-main), var(--bg-deep) 54%, #080812);
  color: var(--text-main);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  border-bottom: 1px solid var(--card-border);
  background: rgba(8, 8, 18, 0.72);
  backdrop-filter: blur(18px);
}
.brand, .header-actions, nav, .language { display: flex; align-items: center; }
.brand { gap: 10px; font-weight: 900; font-size: 20px; }
.brand img { width: 44px; height: 44px; object-fit: contain; border-radius: 10px; }
nav { justify-content: center; gap: clamp(12px, 2vw, 28px); color: var(--text-muted); font-weight: 700; }
nav a, .language a { transition: color .2s ease, text-shadow .2s ease; }
nav a:hover, nav a.active, .language a.active { color: white; text-shadow: 0 0 18px rgba(255, 92, 138, .75); }
.header-actions { gap: 14px; justify-content: flex-end; }
.language { gap: 9px; font-size: 13px; color: var(--text-muted); white-space: nowrap; }

.btn, .ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.btn { background: var(--gradient-main); box-shadow: 0 16px 42px rgba(255, 59, 92, .28); }
.btn.small { min-height: 40px; padding-inline: 16px; font-size: 14px; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 22px 58px rgba(255, 59, 92, .42); }
.ghost-btn { background: rgba(255,255,255,.08); border-color: var(--card-border); color: white; }
.ghost-btn:hover { transform: translateY(-2px); border-color: rgba(255,255,255,.34); box-shadow: 0 16px 42px rgba(168,59,255,.24); }

main { overflow: hidden; }
.hero {
  min-height: calc(100vh - 76px);
  padding: clamp(56px, 8vw, 108px) clamp(18px, 5vw, 72px) 68px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.92fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
}
.eyebrow { color: var(--gold); font-weight: 900; text-transform: uppercase; font-size: 13px; letter-spacing: 0; }
.hero h1, .page-hero h1 {
  margin: 10px 0 22px;
  font-size: clamp(44px, 6.5vw, 88px);
  line-height: .98;
  letter-spacing: 0;
}
.hero p:not(.eyebrow), .page-hero p, .section-head p, .app-cta p {
  color: var(--text-muted);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.8;
  max-width: 720px;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.hero-visual { position: relative; min-height: 610px; }
.poster-wall {
  position: absolute;
  inset: 24px 0 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  opacity: .72;
  transform: rotate(-7deg) translateX(16px);
}
.poster-wall img { aspect-ratio: 2 / 3; object-fit: cover; border-radius: 18px; border: 1px solid var(--card-border); box-shadow: 0 18px 50px rgba(0,0,0,.4); }
.poster-wall img:nth-child(even) { transform: translateY(42px); }
.phone {
  position: absolute;
  right: 8%;
  top: 4%;
  width: min(310px, 54vw);
  padding: 12px;
  border-radius: 42px;
  background: linear-gradient(145deg, rgba(255,255,255,.42), rgba(255,255,255,.08));
  border: 1px solid rgba(255,255,255,.32);
  box-shadow: 0 36px 90px rgba(0,0,0,.58), 0 0 70px rgba(255,59,92,.22);
  animation: float 5s ease-in-out infinite;
}
.phone-top { width: 34%; height: 22px; background: #080812; border-radius: 0 0 16px 16px; position: absolute; left: 33%; top: 12px; z-index: 2; }
.phone img { border-radius: 32px; aspect-ratio: 9 / 16; object-fit: cover; }
.phone-ui {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 30px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(8,8,18,.68);
  border: 1px solid var(--card-border);
  backdrop-filter: blur(14px);
}
.phone-ui span, .show-copy span, .price-card span { color: var(--gold); font-size: 13px; font-weight: 900; }
.phone-ui strong { display: block; margin: 5px 0 12px; font-size: 22px; }
.phone-ui a { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; background: var(--gradient-main); }

.section, .page-hero, .pricing-grid, .notes, .faq, .legal-page, .app-cta, .filter-pills {
  width: min(1180px, calc(100% - 36px));
  margin-inline: auto;
}
.section { padding: 70px 0; }
.section-head { display: flex; justify-content: space-between; gap: 28px; align-items: end; margin-bottom: 28px; }
h2 { margin: 0; font-size: clamp(30px, 4vw, 52px); letter-spacing: 0; }
.show-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.show-card, .price-card, details, .legal-page {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 50px rgba(0,0,0,.28);
}
.show-card { overflow: hidden; }
.poster img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; transition: transform .35s ease; }
.show-card:hover .poster img { transform: scale(1.04); }
.show-copy { padding: 16px; }
.show-copy h3 { min-height: 56px; margin: 8px 0; font-size: 21px; line-height: 1.25; }
.show-copy p { min-height: 70px; margin: 0 0 16px; color: var(--text-muted); line-height: 1.6; }
.show-copy .ghost-btn { width: 100%; min-height: 40px; }

.genres {
  padding: 48px;
  border-block: 1px solid var(--card-border);
  background: rgba(255,255,255,.035);
}
.genres div, .filter-pills { display: flex; gap: 12px; flex-wrap: wrap; }
.genres a, .filter-pills button {
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--card-border);
  background: rgba(255,255,255,.08);
  color: white;
  font-weight: 800;
}
.filter-pills { padding-bottom: 38px; }
.filter-pills button { cursor: pointer; font: inherit; }

.page-hero { padding: 92px 0 42px; text-align: center; }
.page-hero p { margin-inline: auto; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding-bottom: 32px;
}
.price-card { padding: 24px; position: relative; overflow: hidden; }
.price-card.recommended { border-color: rgba(255,211,106,.72); box-shadow: 0 24px 70px rgba(255,92,138,.22); }
.price-card h2 { margin: 16px 0 26px; font-size: 23px; min-height: 60px; }
.price strong { display: block; font-size: clamp(31px, 4vw, 42px); }
.price em { color: var(--text-muted); font-style: normal; }
.price-card .btn { width: 100%; margin-top: 28px; }
.notes {
  margin-bottom: 80px;
  padding: 22px 28px;
  border: 1px solid var(--card-border);
  border-radius: 8px;
  background: rgba(255,255,255,.05);
  color: var(--text-muted);
}
.notes p { margin: 8px 0; }

.checkout-page {
  min-height: calc(100vh - 76px);
  padding: 70px 0 92px;
}
.checkout-shell {
  width: min(1120px, calc(100% - 36px));
  margin-inline: auto;
}
.checkout-heading {
  text-align: center;
  margin-bottom: 28px;
}
.checkout-heading h1 {
  margin: 10px 0 16px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.04;
}
.checkout-heading p:not(.eyebrow) {
  margin: 0 auto;
  max-width: 720px;
  color: var(--text-muted);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.8;
}
.checkout-steps {
  margin: 0 0 24px;
  padding: 10px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  list-style: none;
  border: 1px solid var(--card-border);
  border-radius: 8px;
  background: rgba(255,255,255,.055);
  color: var(--text-muted);
}
.checkout-steps li {
  min-height: 42px;
  display: grid;
  place-items: center;
  padding: 8px 10px;
  border-radius: 8px;
  font-weight: 900;
  text-align: center;
}
.checkout-steps li.is-active {
  color: white;
  background: var(--gradient-main);
  box-shadow: 0 14px 34px rgba(255,59,92,.28);
}
.checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.38fr) minmax(300px, .62fr);
  gap: 20px;
  align-items: start;
}
.payment-grid { grid-template-columns: minmax(290px, .74fr) minmax(0, 1fr); }
.checkout-card {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 64px rgba(0,0,0,.3);
}
.checkout-card h2 {
  margin: 0 0 20px;
  font-size: clamp(24px, 3vw, 34px);
}
.checkout-label {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--gold);
  font-weight: 900;
}
.checkout-lines {
  display: grid;
  gap: 0;
  margin: 0;
}
.checkout-lines div {
  display: grid;
  grid-template-columns: minmax(120px, 180px) minmax(0, 1fr);
  gap: 18px;
  padding: 17px 0;
  border-bottom: 1px solid var(--card-border);
}
.checkout-lines div:first-child { border-top: 1px solid var(--card-border); }
.checkout-lines dt,
.checkout-lines dd {
  margin: 0;
  line-height: 1.75;
}
.checkout-lines dt {
  color: white;
  font-weight: 900;
}
.checkout-lines dd {
  color: var(--text-muted);
  text-align: right;
}
.checkout-lines.compact div {
  grid-template-columns: minmax(96px, 132px) minmax(0, 1fr);
  padding: 14px 0;
}
.checkout-total dt,
.checkout-total dd {
  color: white;
  font-size: 22px;
  font-weight: 900;
}
.agreement {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 22px 0;
  color: var(--text-muted);
  line-height: 1.65;
}
.agreement input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--pink);
}
.checkout-action { width: 100%; }
.order-product {
  display: grid;
  gap: 8px;
  padding: 20px;
  border: 1px solid var(--card-border);
  border-radius: 8px;
  background: rgba(255,255,255,.06);
}
.order-product strong { font-size: 22px; }
.order-product span { color: var(--gold); font-weight: 900; }
.checkout-muted {
  color: var(--text-muted);
  line-height: 1.75;
  margin: 18px 0 0;
}
.paypay-card {
  border-color: rgba(255,211,106,.45);
}
.paypay-top {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 28px;
}
.paypay-mark {
  width: 104px;
  min-width: 104px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, #00a8ff, #0068ff);
  color: white;
  font-size: 21px;
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: 0 18px 42px rgba(0,104,255,.28);
}
.paypay-top p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.7;
}
.paypay-amount {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  margin: 0 0 24px;
  padding: 20px;
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--card-border);
}
.paypay-amount span { color: var(--text-muted); font-weight: 900; }
.paypay-amount strong { font-size: clamp(31px, 4vw, 44px); }
.complete-card {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}
.complete-card .checkout-lines { text-align: left; }
.success-icon {
  width: 74px;
  height: 74px;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gradient-main);
  color: white;
  font-size: 40px;
  font-weight: 900;
  box-shadow: 0 20px 56px rgba(255,59,92,.34);
}
.status-badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,211,106,.15);
  color: var(--gold);
  font-weight: 900;
}
.checkout-thanks {
  margin-top: 22px;
  color: var(--text-muted);
  line-height: 1.8;
}
.checkout-thanks p { margin: 6px 0; }

.faq { padding-bottom: 90px; }
details { padding: 20px 24px; margin-bottom: 14px; }
summary { cursor: pointer; font-weight: 900; font-size: 18px; }
details p { color: var(--text-muted); line-height: 1.75; }

.legal-page { margin-top: 92px; margin-bottom: 90px; padding: clamp(22px, 5vw, 54px); }
.legal-page h1 { margin-top: 0; font-size: clamp(32px, 5vw, 58px); }
.legal-meta {
  display: grid;
  gap: 8px;
  margin: 0 0 30px;
  color: var(--gold);
  font-weight: 800;
}
.legal-page h2 {
  margin: 34px 0 14px;
  font-size: clamp(22px, 3vw, 30px);
}
.legal-page h3 {
  margin: 26px 0 10px;
  font-size: 19px;
}
.legal-page p, .legal-page dd { color: var(--text-muted); line-height: 1.9; }
.legal-page p { margin: 10px 0; }
.legal-page .legal-list-line { padding-left: 1.2em; text-indent: -1.2em; }
.legal-page dl { display: grid; grid-template-columns: minmax(180px, 260px) 1fr; gap: 0; }
.legal-page dt, .legal-page dd { margin: 0; padding: 18px 0; border-bottom: 1px solid var(--card-border); }
.legal-page dt { font-weight: 900; color: white; }
.notice { color: var(--gold) !important; }

.app-cta {
  margin-top: 24px;
  margin-bottom: 86px;
  padding: clamp(24px, 5vw, 48px);
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(168,59,255,.32), rgba(255,59,92,.2));
}
.app-cta h2 { margin-bottom: 8px; }

.site-footer {
  padding: 40px clamp(18px, 5vw, 72px);
  display: flex;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid var(--card-border);
  background: rgba(0,0,0,.24);
  color: var(--text-muted);
}
.site-footer img { width: 54px; height: 54px; object-fit: contain; border-radius: 10px; margin-bottom: 12px; }
.site-footer strong { color: white; font-size: 22px; }
.footer-links { display: flex; gap: 14px 22px; flex-wrap: wrap; justify-content: flex-end; max-width: 760px; }
.footer-links a:hover { color: white; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-18px); } }

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr; gap: 12px; position: relative; }
  nav, .header-actions { justify-content: flex-start; flex-wrap: wrap; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-visual { min-height: 540px; }
  .show-grid, .pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .checkout-grid, .payment-grid { grid-template-columns: 1fr; }
  .section-head, .app-cta, .site-footer { align-items: flex-start; flex-direction: column; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 620px) {
  .site-header { padding-inline: 16px; }
  .brand span { font-size: 18px; }
  nav { gap: 12px 16px; font-size: 14px; }
  .language { overflow-x: auto; width: 100%; }
  .btn, .ghost-btn { width: 100%; }
  .hero { padding-top: 38px; }
  .hero h1, .page-hero h1 { font-size: 42px; }
  .hero-visual { min-height: 420px; }
  .poster-wall { grid-template-columns: repeat(2, 1fr); opacity: .58; }
  .poster-wall img:nth-child(n+5) { display: none; }
  .phone { right: 50%; transform: translateX(50%); width: min(265px, 76vw); animation: none; }
  .show-grid, .pricing-grid { grid-template-columns: 1fr; }
  .checkout-steps { grid-template-columns: 1fr; }
  .checkout-lines div, .checkout-lines.compact div { grid-template-columns: 1fr; gap: 4px; }
  .checkout-lines dd { text-align: left; }
  .paypay-top, .paypay-amount { align-items: flex-start; flex-direction: column; }
  .show-copy h3, .show-copy p, .price-card h2 { min-height: auto; }
  .genres { padding: 30px 0; }
  .legal-page dl { grid-template-columns: 1fr; }
  .legal-page dt { border-bottom: 0; padding-bottom: 4px; }
  .legal-page dd { padding-top: 0; }
}
