:root {
  --bg: #07080c;
  --card: rgba(18, 20, 28, 0.78);
  --line: rgba(255,255,255,.09);
  --text: #f4f5f8;
  --dim: #8b93a7;
  --gold: #f0c14b;
  --pink: #ff4b7a;
  --mint: #6ee7b7;
  --font: "Segoe UI Variable Text", "Bahnschrift", "Segoe UI", system-ui, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { min-height: 100%; background: var(--bg); color: var(--text); font-family: var(--font); }
body { position: relative; }
.bg {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(900px 480px at 8% -8%, rgba(240,193,75,.16), transparent 55%),
    radial-gradient(700px 420px at 100% 0%, rgba(255,75,122,.14), transparent 50%),
    radial-gradient(600px 400px at 50% 110%, rgba(110,231,183,.06), transparent 50%),
    var(--bg);
}
.bg:after {
  content: ""; position: absolute; inset: 0; opacity: .045;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
header {
  max-width: 1080px; margin: 0 auto; padding: 20px 24px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.brand { display: flex; gap: 12px; align-items: center; text-decoration: none; color: inherit; }
.mark {
  width: 38px; height: 38px; border-radius: 12px; position: relative;
  background: linear-gradient(135deg, var(--gold), var(--pink));
  box-shadow: 0 10px 28px rgba(255,75,122,.28);
}
.mark:after {
  content: ""; position: absolute; inset: 9px 11px 9px 9px; border-radius: 3px;
  border: 2px solid rgba(7,8,12,.55); border-left: 0; border-bottom: 0;
  transform: rotate(45deg);
}
.brand b { letter-spacing: .28em; font-size: 13px; display: block; }
.brand small { color: var(--dim); letter-spacing: .12em; font-size: 11px; }
.nav { display: flex; gap: 8px; align-items: center; }
.nav a {
  color: var(--dim); text-decoration: none; font-size: 13px; letter-spacing: .04em;
  padding: 8px 12px; border-radius: 999px; border: 1px solid transparent;
}
.nav a:hover { color: #fff; background: rgba(255,255,255,.04); }
.nav-cta {
  color: #111 !important; background: linear-gradient(90deg, var(--gold), #ff8a4a) !important;
  font-weight: 700; border: 0 !important;
}
main { max-width: 1080px; margin: 0 auto; padding: 8px 24px 72px; }
.hero { padding: 18px 0 26px; }
.kicker { color: var(--gold); letter-spacing: .32em; font-size: 11px; text-transform: uppercase; }
h1 { font-size: clamp(34px, 5.4vw, 56px); line-height: 1.02; letter-spacing: -.04em; margin: 12px 0 14px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 8px; }
.pill {
  font-size: 12px; color: var(--dim); border: 1px solid var(--line); border-radius: 999px;
  padding: 6px 10px; background: rgba(255,255,255,.03);
}
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: 22px;
  padding: 24px; margin-top: 12px; backdrop-filter: blur(16px);
  box-shadow: 0 20px 50px rgba(0,0,0,.28);
}
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.field span, .lbl { color: var(--dim); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; }
input[type=text], input[type=email], input[type=password] {
  background: #0c0e14; border: 1px solid var(--line); color: var(--text);
  border-radius: 12px; padding: 13px 14px; font: 16px/1.2 var(--font); outline: none;
}
input:focus { border-color: rgba(240,193,75,.55); box-shadow: 0 0 0 4px rgba(240,193,75,.08); }
.drop {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; min-height: 168px; border: 1.5px dashed rgba(240,193,75,.38);
  border-radius: 18px; background:
    radial-gradient(400px 120px at 50% 0%, rgba(240,193,75,.08), transparent 70%), #0c0e14;
  cursor: pointer; text-align: center; padding: 28px;
}
.drop.drag { border-color: var(--gold); background: #17140c; }
.drop input { display: none; }
.drop strong { font-size: 17px; }
.drop em { color: var(--dim); font-style: normal; font-size: 13px; }
.legal { color: var(--dim); font-size: 12px; margin: 10px 0 16px; line-height: 1.5; }
.legal a { color: var(--gold); }
.row { display: grid; grid-template-columns: 1.4fr .8fr; gap: 18px; }
@media (max-width: 760px) { .row, .subs, .steps, .tstrip { grid-template-columns: 1fr !important; } }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.chips button {
  background: #0c0e14; border: 1px solid var(--line); color: var(--text);
  border-radius: 999px; padding: 8px 12px; cursor: pointer; font: 13px var(--font);
}
.chips button.on { background: var(--gold); color: #111; border-color: var(--gold); font-weight: 700; }
.chips button.ai { border-color: rgba(255,75,122,.45); }
.chips button.ai.on { background: linear-gradient(90deg, var(--gold), #ff7a4d); }
.chips button.lock { opacity: .35; pointer-events: none; }
.block { margin-top: 16px; }
.hintq { color: var(--dim); font-size: 12px; margin-top: 8px; line-height: 1.4; }
.check { display: flex; gap: 8px; align-items: center; margin: 18px 0; color: var(--dim); }
.go {
  width: 100%; border: 0; border-radius: 14px; padding: 15px;
  background: linear-gradient(90deg, var(--gold), #ff7a4d);
  color: #111; font: 700 15px var(--font); cursor: pointer; letter-spacing: .04em;
  text-decoration: none; display: inline-block; text-align: center;
}
a.go { text-decoration: none; }
a.go:hover, a.go:visited { text-decoration: none; }
a.go:not(.lite):not(.ghost), a.go:not(.lite):not(.ghost):hover, a.go:not(.lite):not(.ghost):visited { color: #111; }
a.go.lite, a.go.lite:hover, a.go.lite:visited { color: #fff; text-decoration: none; }
a.go.ghost, a.go.ghost:hover, a.go.ghost:visited { color: var(--gold); text-decoration: none; }
.go:hover { filter: brightness(1.05); }
.go:disabled { opacity: .5; cursor: wait; }
.go.lite { background: #222632; color: #fff; }
.go.ghost { background: transparent; border: 1px solid var(--gold); color: var(--gold); }
.hidden { display: none !important; }
.bar { height: 8px; background: #0c0e14; border-radius: 99px; overflow: hidden; margin-bottom: 10px; }
.bar i { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--gold), var(--pink)); transition: width .3s; }
#stage { color: var(--dim); }
#result { margin-top: 28px; }
#result h2 { margin-bottom: 14px; letter-spacing: .08em; }
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 14px; }
.clip { background: var(--card); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.clip video { width: 100%; aspect-ratio: 9/16; object-fit: contain; background: #000; display: block; }
.clip footer { padding: 10px 12px 12px; display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.clip a {
  color: #111; background: var(--gold); text-decoration: none; font-size: 12px; font-weight: 700;
  padding: 6px 10px; border-radius: 999px;
}
.meta { color: var(--dim); font-size: 12px; }
.err { color: #ff7a8a; margin-top: 8px; }
.ok { color: var(--mint); margin: 8px 0; }
.steps { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; margin: 18px 0 8px; }
.step { border: 1px solid var(--line); border-radius: 16px; padding: 16px; background: rgba(255,255,255,.02); }
.step b { display: block; color: var(--gold); font-size: 12px; letter-spacing: .16em; margin-bottom: 8px; }
.step p { color: var(--dim); font-size: 13px; line-height: 1.45; }
.tstrip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 14px; }
.sub {
  border: 1px solid var(--line); border-radius: 18px; padding: 18px 16px 16px;
  background: #0d1017; position: relative; overflow: hidden;
}
.sub.on { border-color: var(--gold); box-shadow: 0 0 0 1px rgba(240,193,75,.2); }
.sub.hot { border-color: rgba(255,75,122,.45); }
.sub h3 { margin-bottom: 4px; font-size: 18px; }
.price { font-size: 28px; font-weight: 800; letter-spacing: -.03em; margin: 8px 0 4px; }
.price span { font-size: 14px; color: var(--dim); font-weight: 600; }
.sub ul { list-style: none; margin: 12px 0 16px; color: var(--dim); font-size: 13px; line-height: 1.7; }
.sub ul li:before { content: "▹ "; color: var(--gold); }
.badge {
  position: absolute; top: 12px; right: 12px; font-size: 10px; letter-spacing: .14em;
  text-transform: uppercase; background: var(--pink); color: #fff; border-radius: 999px; padding: 3px 8px;
}
.badge.gold { background: var(--gold); color: #111; }
.auth { max-width: 460px; margin-left: auto; margin-right: auto; }
.auth h1 { font-size: 30px; margin-bottom: 10px; }
.auth a { color: var(--gold); }
.who { display: flex; gap: 16px; align-items: center; }
.ava {
  width: 68px; height: 68px; border-radius: 20px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--gold), var(--pink)); color: #111; font-weight: 800; font-size: 28px;
}
.uid { letter-spacing: .14em; }
.mini {
  margin-left: 8px; background: #0c0e14; border: 1px solid var(--line); color: var(--text);
  border-radius: 999px; padding: 4px 8px; cursor: pointer; font-size: 11px;
}
.plan-now { margin: 16px 0 8px; }
.limit { color: var(--gold); margin-top: 8px; }
.subs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 14px; }
.profile h1 { font-size: 32px; margin: 0 0 6px; }
.foot {
  max-width: 1080px; margin: 0 auto; padding: 8px 24px 40px; color: var(--dim); font-size: 12px;
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; align-items: center;
}
.foot-links { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.foot-links a { color: var(--dim); text-decoration: none; }
.foot-links a:hover { color: var(--gold); }
.support-fab {
  position: fixed; right: 18px; bottom: 18px; z-index: 80;
  color: #111; background: linear-gradient(90deg, var(--gold), #ff8a4a);
  font: 800 14px var(--font); letter-spacing: .04em;
  padding: 12px 18px; border-radius: 999px; text-decoration: none;
  box-shadow: 0 12px 30px rgba(255, 75, 122, .38);
}
.support-fab:hover, .support-fab:visited { color: #111; filter: brightness(1.08); }
.doc { max-width: 760px; }
.doc h1 { font-size: clamp(28px, 4vw, 42px); }
.doc .card h2 { font-size: 17px; margin: 22px 0 8px; letter-spacing: .04em; }
.doc .card p, .doc .card li { color: var(--dim); font-size: 14px; line-height: 1.65; margin: 0 0 8px; }
.doc .card ul { padding-left: 18px; margin: 8px 0 14px; }
.doc .card a { color: var(--gold); }
.doc code, .notice code {
  font-size: 12px; background: #0c0e14; border: 1px solid var(--line);
  border-radius: 6px; padding: 1px 6px;
}
.checkout { max-width: 520px; margin: 12px auto 0; }
.pay-sum { font-size: 36px; font-weight: 800; letter-spacing: -.03em; margin: 6px 0 4px; }
.pay-sum span { font-size: 15px; color: var(--dim); font-weight: 600; }
.pay-points { list-style: none; margin: 8px 0 16px; color: var(--dim); font-size: 14px; line-height: 1.7; }
.pay-points li:before { content: "▹ "; color: var(--gold); }
.consent {
  display: flex; gap: 10px; align-items: flex-start;
  color: var(--dim); font-size: 13px; line-height: 1.45; margin: 12px 0;
}
.consent input { margin-top: 3px; accent-color: var(--gold); width: 16px; height: 16px; flex: none; }
.consent a { color: var(--gold); }
.notice {
  border: 1px solid rgba(240,193,75,.35); background: rgba(240,193,75,.08);
  border-radius: 14px; padding: 12px 14px; color: var(--text);
  font-size: 13px; line-height: 1.5; margin: 12px 0;
}
.sec-title { font-size: 20px; letter-spacing: .08em; margin: 28px 0 4px; }
.save { color: var(--mint); font-size: 12px; font-weight: 700; margin: 0 0 8px; }
.old { color: var(--dim); text-decoration: line-through; font-size: 13px; margin-left: 6px; font-weight: 500; }
.want { margin-top: 10px; }
.orb {
  position: fixed; z-index: -1; pointer-events: none; border-radius: 50%;
  filter: blur(40px); opacity: .35; animation: float 9s ease-in-out infinite;
}
.orb.a { width: 220px; height: 220px; background: #f0c14b; top: 8%; left: -40px; }
.orb.b { width: 280px; height: 280px; background: #ff4b7a; top: 40%; right: -80px; animation-delay: -3s; }
.orb.c { width: 180px; height: 180px; background: #6ee7b7; bottom: 8%; left: 30%; animation-delay: -5s; opacity: .18; }
@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-24px) scale(1.06); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}
@keyframes shine {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,75,122,.0), 0 18px 40px rgba(255,75,122,.12); }
  50% { box-shadow: 0 0 0 8px rgba(255,75,122,.08), 0 22px 50px rgba(255,75,122,.28); }
}
@keyframes markSpin {
  0%, 100% { transform: rotate(0deg); }
  40% { transform: rotate(-8deg); }
  70% { transform: rotate(6deg); }
}
.hero { animation: fadeUp .7s ease both; }
.hero-meta .pill { animation: fadeUp .7s ease both; }
.hero-meta .pill:nth-child(1) { animation-delay: .08s; }
.hero-meta .pill:nth-child(2) { animation-delay: .16s; }
.hero-meta .pill:nth-child(3) { animation-delay: .24s; }
.hero-meta .pill:nth-child(4) { animation-delay: .32s; }
.step, .card, .sub, .tstrip .sub { animation: fadeUp .6s ease both; }
.steps .step:nth-child(1) { animation-delay: .05s; }
.steps .step:nth-child(2) { animation-delay: .15s; }
.steps .step:nth-child(3) { animation-delay: .25s; }
.tstrip .sub:nth-child(1) { animation-delay: .05s; }
.tstrip .sub:nth-child(2) { animation-delay: .12s; }
.tstrip .sub:nth-child(3) { animation-delay: .2s; }
.tstrip .sub:nth-child(4) { animation-delay: .28s; }
.mark { animation: markSpin 4.5s ease-in-out infinite; }
.sub { transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.sub:hover { transform: translateY(-8px) scale(1.02); border-color: rgba(240,193,75,.55); }
.sub.hot { animation: fadeUp .6s ease both, pulseGlow 2.8s ease-in-out infinite; transform-origin: center; }
.sub.hot:hover { transform: translateY(-10px) scale(1.035); }
.sub.maxish { background: linear-gradient(180deg, rgba(240,193,75,.08), #0d1017 40%); }
.go {
  background-size: 200% 100%;
  background-image: linear-gradient(90deg, var(--gold), #ff7a4d, var(--gold));
  transition: filter .2s, transform .2s;
}
.go:hover { filter: brightness(1.08); transform: translateY(-1px); animation: shine 1.1s linear infinite; }
.nav-cta { transition: transform .2s; }
.nav-cta:hover { transform: scale(1.05); }
.drop { transition: border-color .2s, transform .2s, background .2s; }
.drop:hover { transform: scale(1.01); }
.chips button { transition: transform .15s, background .15s, color .15s; }
.chips button:hover:not(.lock) { transform: translateY(-2px); }
.reveal { opacity: 0; transform: translateY(18px); }
.reveal.in { opacity: 1; transform: none; transition: .55s ease; }
@media (prefers-reduced-motion: reduce) {
  *, .orb, .mark, .sub.hot, .go { animation: none !important; transition: none !important; }
}
