/* One committed world: Marshadow's shadow. Same blacks, eye red and highlight yellow as the app. */
:root {
  color-scheme: dark;
  --void: #070708;
  --shade: #0d0d10;
  --ash: #15151a;
  --ash-2: #1c1c22;
  --line: #2a2a31;
  --bone: #eceaef;
  --smoke: #a09ea8;
  --dim: #6d6b76;
  --eye: #a855f7;
  --ember: #c084fc;
  --blood: #4c1d95;
  --spark: #f6ce60;
  --display: "Big Shoulders Display", "Oswald", "Arial Narrow", Impact, sans-serif;
  --body: "Figtree", "Segoe UI", system-ui, sans-serif;
  --pixel: "Pixelify Sans", Consolas, "Courier New", monospace;
  --radius: 14px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

@property --angle { syntax: "<angle>"; inherits: false; initial-value: 0deg; }

html { scroll-behavior: smooth; }
[hidden] { display: none !important; }
body {
  margin: 0;
  position: relative;
  background: var(--void);
  color: var(--bone);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
/* Shadow fog drifting behind the whole page. */
body::before {
  content: ""; position: fixed; inset: -20%; z-index: 0; pointer-events: none;
  background:
    radial-gradient(38% 32% at 18% 28%, rgba(168, 85, 247, .075), transparent 70%),
    radial-gradient(34% 40% at 82% 72%, rgba(76, 29, 149, .11), transparent 70%),
    radial-gradient(30% 26% at 60% 12%, rgba(246, 206, 96, .025), transparent 70%);
  animation: fog 26s ease-in-out infinite alternate;
}
main, footer { position: relative; z-index: 1; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
::selection { background: var(--eye); color: #fff; -webkit-text-fill-color: #fff; }
:focus-visible { outline: 2px solid var(--spark); outline-offset: 3px; border-radius: 6px; }

.wrap { max-width: 1200px; margin-inline: auto; padding-inline: clamp(16px, 4vw, 40px); }
section { scroll-margin-top: 84px; }

.eyebrow {
  font-family: var(--pixel);
  font-size: 14px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--eye);
  margin: 0 0 14px;
}
/* A blinking pixel cursor, like a prompt waiting in the dark. */
.eyebrow::after {
  content: ""; display: inline-block; width: .55em; height: 1em; margin-left: 6px; vertical-align: -2px;
  background: currentColor; animation: caret 1.1s steps(1) infinite;
}
h1, h2, h3 { text-wrap: balance; margin: 0; }
h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(40px, 6vw, 68px);
  line-height: .95;
  text-transform: uppercase;
}
/* A light sweeps across the big type now and then. Both ends of the sweep are plain bone white. */
.shine {
  color: var(--bone);
  background: linear-gradient(100deg, var(--bone) 0 44%, #fff 48%, var(--ember) 51%, var(--bone) 55% 100%);
  background-size: 260% 100%; background-position: 100% 0;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  animation: shimmer 7s ease-in-out 1.2s infinite;
}
.lede { color: var(--smoke); max-width: 62ch; margin: 18px 0 0; font-size: 18px; }

@keyframes caret { 0% { opacity: 1; } 50% { opacity: 0; } }
@keyframes shimmer { 0% { background-position: 100% 0; } 40%, 100% { background-position: 0 0; } }
@keyframes fog { 0% { transform: translate(0, 0) rotate(0deg); } 50% { transform: translate(-4%, 3%) rotate(4deg); } 100% { transform: translate(3%, -2%) rotate(-3deg); } }
@keyframes bob { 0%, 100% { translate: 0 0; } 50% { translate: 0 -7px; } }
@keyframes bobsm { 0%, 100% { translate: 0 0; } 50% { translate: 0 -2px; } }
@keyframes headglow { 0%, 100% { filter: drop-shadow(0 0 6px rgba(168, 85, 247, .25)); } 50% { filter: drop-shadow(0 0 18px rgba(168, 85, 247, .85)); } }
@keyframes tick { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.6); opacity: .55; } }
@keyframes spin { to { --angle: 360deg; } }

/* ---------------------------------------------------------------- scroll reveal
   Elements slide in every time they enter the screen — from below when scrolling down, from above
   when scrolling back up. Nothing is hidden without JavaScript. */
[data-reveal] {
  transition: opacity .8s var(--ease) var(--d, 0s), transform .9s var(--ease) var(--d, 0s), filter .8s ease var(--d, 0s);
}
[data-reveal].pre { opacity: .2; transform: translateY(40px) scale(.985); filter: blur(6px); }
[data-reveal].pre.up { transform: translateY(-40px) scale(.985); }
[data-reveal="panel"].pre { transform: translateY(70px) scale(.95); filter: none; }
[data-reveal="panel"].pre.up { transform: translateY(-70px) scale(.95); }

/* ---------------------------------------------------------------- buttons */
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 50px; padding: 0 22px;
  border-radius: 10px; border: 1px solid var(--line);
  font: 600 16px/1 var(--body); text-decoration: none; cursor: pointer;
  color: var(--bone); background: var(--ash);
  transition: background .18s, border-color .18s, transform .2s var(--ease);
}
.btn::after {
  content: ""; position: absolute; top: 0; bottom: 0; left: -70%; width: 45%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .2), transparent);
  transform: skewX(-20deg); transition: left .7s var(--ease); pointer-events: none;
}
.btn:hover { border-color: var(--eye); background: var(--ash-2); transform: translateY(-2px); }
.btn:hover::after { left: 130%; }
.btn:active { transform: translateY(0); }
.btn-red {
  border-color: transparent; color: #fff;
  background: linear-gradient(180deg, #a855f7, #7e22ce);
  animation: btnglow 2.6s ease-in-out infinite;
}
.btn-red::after { animation: idlesheen 5s ease-in-out 1s infinite; }
.btn-red:hover { background: linear-gradient(180deg, #b86bff, #8b2fe0); border-color: transparent; }
.btn svg { width: 20px; height: 20px; flex: none; }
.btn .i-check { display: none; }
.btn.ok .i-check { display: block; }
.btn.ok .i-copy { display: none; }
@keyframes btnglow {
  0%, 100% { box-shadow: 0 10px 30px -12px rgba(168, 85, 247, .55), inset 0 1px 0 rgba(255, 255, 255, .22); }
  50% { box-shadow: 0 14px 44px -8px rgba(168, 85, 247, 1), inset 0 1px 0 rgba(255, 255, 255, .28); }
}
@keyframes idlesheen { 0% { left: -70%; } 30%, 100% { left: 130%; } }

/* ---------------------------------------------------------------- page-wide layers */
.embers { position: fixed; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }
.spot {
  position: fixed; inset: 0; z-index: 30; pointer-events: none; opacity: 0; transition: opacity .5s;
  background: radial-gradient(460px circle at var(--px, -999px) var(--py, -999px), rgba(168, 85, 247, .07), transparent 62%);
}
.spot.on { opacity: 1; }

.motion {
  position: fixed; right: 16px; bottom: calc(16px + env(safe-area-inset-bottom, 0px)); z-index: 40;
  display: flex; align-items: center; gap: 8px; padding: 8px 14px;
  font: 400 13px/1 var(--pixel); letter-spacing: .06em; color: var(--smoke);
  background: rgba(13, 13, 16, .88); border: 1px solid var(--line); border-radius: 999px; cursor: pointer;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.motion:hover { color: var(--bone); border-color: var(--eye); }
.motion .dot { width: 8px; height: 8px; background: var(--eye); box-shadow: 0 0 8px var(--eye); animation: tick 1.4s ease-in-out infinite; }
html.still .motion .dot { background: var(--dim); box-shadow: none; }

/* ---------------------------------------------------------------- header */
.top {
  position: sticky; top: env(safe-area-inset-top, 0px); z-index: 20;
  background: rgba(7, 7, 8, .72);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(42, 42, 49, .5);
  transition: background .3s, box-shadow .3s;
}
.top.scrolled { background: rgba(7, 7, 8, .9); box-shadow: 0 10px 30px -18px #000; }
.top .wrap { display: flex; align-items: center; gap: 28px; min-height: 64px; }
.progress {
  position: absolute; left: 0; right: 0; bottom: -1px; height: 2px; transform-origin: left; transform: scaleX(0);
  background: linear-gradient(90deg, var(--blood), var(--eye), var(--ember));
  box-shadow: 0 0 10px rgba(168, 85, 247, .8);
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; margin-right: auto; }
.brand img { width: 30px; height: auto; animation: bobsm 3s ease-in-out infinite, headglow 2.6s ease-in-out infinite; transition: transform .4s var(--ease); }
.brand:hover img { transform: rotate(-12deg) scale(1.15); }
.brand span { font: 800 24px/1 var(--display); letter-spacing: .02em; text-transform: uppercase; }
.top nav { display: flex; gap: 24px; }
.top nav a { position: relative; text-decoration: none; color: var(--smoke); font-size: 15px; font-weight: 500; padding-block: 6px; transition: color .2s; }
.top nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--eye);
  transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease);
}
.top nav a:hover, .top nav a.active { color: var(--bone); }
.top nav a:hover::after, .top nav a.active::after { transform: scaleX(1); }
.top .btn { min-height: 40px; padding: 0 16px; font-size: 14px; }
.top nav a[aria-current="page"] { color: var(--bone); }
.top nav a[aria-current="page"]::after { transform: scaleX(1); }

/* ---------------------------------------------------------------- hero */
.hero-top { position: relative; overflow: hidden; padding-block: clamp(40px, 7vw, 90px) clamp(20px, 4vw, 40px); }
.hero-top::before {
  /* A faint pixel grid that fades out from the mascot — the sprite's own medium — slowly drifting. */
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 8px 8px;
  mask-image: radial-gradient(circle at 74% 45%, #000 0, transparent 46%);
  -webkit-mask-image: radial-gradient(circle at 74% 45%, #000 0, transparent 46%);
  animation: grid 6s linear infinite;
}
.hero-top .wrap { position: relative; z-index: 1; display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: 24px; }
.hero h1 {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(58px, 9.4vw, 132px);
  line-height: .86;
  text-transform: uppercase;
}
.hero h1.shine { animation-duration: 8s; animation-delay: 2.2s; }
.hero h1 em {
  position: relative; display: inline-block; font-style: normal;
  color: var(--eye); -webkit-text-fill-color: var(--eye);
  animation: smolder 3.2s ease-in-out infinite;
}
/* Shadow Sneak: now and then the word's shadow darts out and back. */
.hero h1 em::after {
  content: attr(data-text); content: attr(data-text) / "";
  position: absolute; left: 0; top: 0; -webkit-text-fill-color: var(--ember); color: var(--ember);
  opacity: 0; filter: blur(1.5px); pointer-events: none;
  animation: sneak 5s ease-in-out 2.4s infinite;
}
.hero .lede { font-size: clamp(17px, 1.6vw, 20px); color: #c4c2cb; }
.hero .actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.facts { display: flex; flex-wrap: wrap; gap: 8px 22px; margin: 28px 0 0; padding: 0; list-style: none; }
.facts li { font-family: var(--pixel); font-size: 14px; color: var(--smoke); display: flex; align-items: center; gap: 8px; }
.facts li::before { content: ""; width: 6px; height: 6px; background: var(--eye); box-shadow: 0 0 8px var(--eye); animation: tick 2.4s ease-in-out infinite; }
.facts li:nth-child(2)::before { animation-delay: .4s; }
.facts li:nth-child(3)::before { animation-delay: .8s; }

.rise { animation: rise .9s var(--ease) both; }
.rise:nth-child(2) { animation-delay: .08s; }
.rise:nth-child(3) { animation-delay: .16s; }
.rise:nth-child(4) { animation-delay: .24s; }
.rise:nth-child(5) { animation-delay: .32s; }
/* The headline rises, then keeps its light sweep. */
.hero h1.rise { animation: rise .9s var(--ease) .08s both, shimmer 8s ease-in-out 2.2s infinite; }

@keyframes rise { from { transform: translateY(26px); filter: blur(8px); } to { transform: none; filter: none; } }
@keyframes grid { to { background-position: 32px 16px; } }
@keyframes smolder { 0%, 100% { text-shadow: 0 0 26px rgba(168, 85, 247, .35); } 50% { text-shadow: 0 0 50px rgba(168, 85, 247, .75); } }
@keyframes sneak {
  0%, 80%, 100% { opacity: 0; transform: none; }
  83% { opacity: .75; transform: translate(-9px, 3px); }
  86% { opacity: .5; transform: translate(6px, -2px); }
  90% { opacity: 0; transform: none; }
}

/* The mascot: rises out of its shadow pool as a silhouette, eyes ignite, then the body lights up. */
.stage { position: relative; display: grid; place-items: center; min-height: 480px; }
.aura {
  position: absolute; inset: -10% -20%;
  background: radial-gradient(circle at 50% 44%, rgba(168, 85, 247, .34), rgba(168, 85, 247, .09) 30%, transparent 58%);
  animation: aura 2.6s ease-in-out infinite;
}
.rig {
  position: relative; z-index: 2; cursor: pointer;
  transform: translate(calc(var(--mx, 0) * 16px), calc(var(--my, 0) * 10px)) rotate(calc(var(--mx, 0) * 3deg));
  transition: transform .5s var(--ease);
}
.emerge { animation: emerge 1.5s var(--ease) .1s both; }
.sprite { position: relative; width: clamp(210px, 26vw, 320px); aspect-ratio: 375 / 561; animation: float 3.2s ease-in-out infinite; }
.sprite img { position: absolute; inset: 0; width: 100%; height: 100%; }
.sprite .body { animation: lightup 1.2s ease .9s both; }
.sprite .eyes-wrap { position: absolute; inset: 0; animation: ignite .6s ease-out .55s both; }
.sprite .eyes {
  filter: brightness(1.8) saturate(1.3) drop-shadow(0 0 3px #ff4038) drop-shadow(0 0 12px rgba(168, 85, 247, .95));
  animation: glow 2.6s ease-in-out infinite;
}
.sprite .flare {
  opacity: var(--near, 0); transition: opacity .3s;
  filter: brightness(2.2) drop-shadow(0 0 6px #ff6a5f) drop-shadow(0 0 24px rgba(255, 60, 50, 1));
}
.sprite .blink { opacity: 0; animation: blink 13.8s step-end infinite, lightup 1.2s ease .9s both; }
.pool-wrap { position: absolute; z-index: 1; bottom: 4%; width: 78%; height: 54px; animation: spread 1.3s var(--ease) both; }
.pool {
  width: 100%; height: 100%; border-radius: 50%;
  background: radial-gradient(closest-side, #000 0, rgba(0, 0, 0, .75) 55%, rgba(76, 29, 149, .3) 80%, transparent 100%);
  animation: pool 3.2s ease-in-out infinite;
}
.stage.burst .aura { animation: burst .9s ease-out; }
.stage.burst .flare { animation: flare .9s ease-out; }
.stage.burst .hop { animation: hop .7s cubic-bezier(.3, 1.6, .5, 1); }
/* The app's eyes pulse faster while it works; here they do when you reach for the download. */
.hero:has(.btn-red:hover) .sprite .eyes { animation-duration: .85s; }

@keyframes emerge { from { transform: translateY(70px) scale(.9); } to { transform: none; } }
@keyframes lightup { from { filter: brightness(0); } to { filter: brightness(1); } }
@keyframes ignite { 0% { opacity: 0; } 60% { opacity: 1; filter: brightness(2.2); } 100% { opacity: 1; filter: none; } }
@keyframes spread { from { transform: scaleX(.15); opacity: 0; } to { transform: none; opacity: 1; } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
@keyframes pool { 0%, 100% { transform: scaleX(1); opacity: 1; } 50% { transform: scaleX(.84); opacity: .7; } }
@keyframes glow { 0%, 100% { opacity: .3; } 50% { opacity: 1; } }
@keyframes aura { 0%, 100% { opacity: .72; } 50% { opacity: 1; } }
@keyframes burst { 0% { transform: scale(1); } 30% { transform: scale(1.55); opacity: 1; filter: brightness(1.9); } 100% { transform: scale(1); } }
@keyframes flare { 0% { opacity: 0; } 20% { opacity: 1; } 100% { opacity: 0; } }
@keyframes hop { 0% { transform: none; } 35% { transform: translateY(-34px) scale(1.04); } 100% { transform: none; } }
@keyframes blink {
  0% { opacity: 1; } 1% { opacity: 0; }
  33.3% { opacity: 1; } 34.3% { opacity: 0; }
  66.6% { opacity: 1; } 67.6% { opacity: 0; }
  69.6% { opacity: 1; } 70.6% { opacity: 0; }
}

@media (max-width: 860px) {
  .hero-top .wrap { grid-template-columns: 1fr; }
  .stage { order: -1; min-height: 300px; margin-bottom: -10px; }
  .sprite { width: 190px; }
}

/* ---------------------------------------------------------------- showcase */
.showcase { margin: clamp(10px, 3vw, 30px) auto 0; }
.showcase .frame { position: relative; perspective: 1600px; animation: bob 6s ease-in-out infinite; }
.showcase .frame::before {
  content: ""; position: absolute; inset: 12% 6% -6%; z-index: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(168, 85, 247, .34), transparent 65%);
  filter: blur(30px); opacity: calc(1 - var(--tilt, 0) * .7);
}
.screen {
  position: relative; z-index: 1; overflow: hidden;
  border-radius: 12px; border: 1px solid var(--line);
  box-shadow: 0 40px 90px -30px #000;
  transform-origin: 50% 100%;
  transform: rotateX(calc(var(--tilt, 0) * 18deg)) scale(calc(1 - var(--tilt, 0) * .07));
  will-change: transform;
}
.screen img { width: 100%; }
/* A scan line passes over the app, like the analyzer at work. */
.screen::after, .shot::after {
  content: ""; position: absolute; left: 0; right: 0; top: -30%; height: 30%; pointer-events: none; z-index: 2;
  background: linear-gradient(180deg, transparent, rgba(168, 85, 247, .10) 80%, rgba(192, 132, 252, .55) 99%, transparent);
  animation: scan 6s ease-in-out 1.5s infinite;
}
.showcase figcaption { margin-top: 14px; color: var(--dim); font-size: 14px; text-align: center; }
@keyframes scan { 0% { transform: translateY(0); } 45%, 100% { transform: translateY(440%); } }

/* ---------------------------------------------------------------- how it helps */
.band { padding-block: clamp(70px, 10vw, 130px) 0; }
.stats { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 50px; }
.stats::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 1px;
  background: linear-gradient(90deg, var(--line), var(--eye), var(--line));
  background-size: 200% 100%;
  transform-origin: left; transition: transform 1.2s var(--ease) .1s;
  animation: linerun 4s linear infinite;
}
.stats.pre::before { transform: scaleX(0); }
.stat { position: relative; padding: 28px 26px 8px 0; }
.stat + .stat { padding-left: 26px; border-left: 1px solid var(--line); }
.stat .num {
  font: 900 clamp(64px, 7vw, 96px)/.85 var(--display);
  color: var(--eye); margin: 0;
  font-variant-numeric: tabular-nums;
  transform-origin: left bottom;
  transition: transform .3s var(--ease);
  animation: numglow 3s ease-in-out infinite; animation-delay: calc(var(--k, 0) * .5s);
}
.stat .num.done { animation: land .6s var(--ease), numglow 3s ease-in-out .6s infinite; }
.stat:hover .num { transform: scale(1.06); }
.stat .unit { font-family: var(--pixel); font-size: 14px; text-transform: uppercase; letter-spacing: .1em; color: var(--spark); margin: 10px 0 18px; }
.stat .unit::before { content: "▸ "; display: inline-block; animation: nudge 1.6s ease-in-out infinite; animation-delay: calc(var(--k, 0) * .3s); }
.stat h3 { font-size: 20px; font-weight: 700; margin-bottom: 6px; }
.stat p { color: var(--smoke); margin: 0; font-size: 16px; }
@keyframes land { 0% { text-shadow: 0 0 0 transparent; } 40% { text-shadow: 0 0 40px rgba(192, 132, 252, 1); transform: scale(1.08); } 100% { transform: none; } }
@keyframes numglow { 0%, 100% { text-shadow: 0 0 10px rgba(168, 85, 247, .15); } 50% { text-shadow: 0 0 36px rgba(168, 85, 247, .75); } }
@keyframes nudge { 0%, 100% { transform: none; } 50% { transform: translateX(4px); } }
@keyframes linerun { from { background-position: 100% 0; } to { background-position: -100% 0; } }
@media (max-width: 960px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { padding-left: 0; border-left: 0; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--line); margin-top: 20px; }
}
@media (max-width: 560px) {
  .stats { grid-template-columns: 1fr; }
  .stat, .stat + .stat { padding-left: 0; border-left: 0; }
  .stat + .stat { border-top: 1px solid var(--line); margin-top: 18px; }
}

.safe {
  --angle: 0deg;
  display: grid; grid-template-columns: .8fr 1.2fr; gap: 20px 60px; align-items: start;
  margin-top: 70px; padding: clamp(24px, 4vw, 44px);
  border: 1px solid transparent; border-radius: var(--radius);
  background:
    linear-gradient(180deg, var(--ash), var(--shade)) padding-box,
    conic-gradient(from var(--angle), var(--line) 0deg, var(--line) 260deg, rgba(168, 85, 247, .85) 320deg, var(--line) 360deg) border-box;
  animation: spin 9s linear infinite;
}
.safe h3 { font: 800 clamp(34px, 4vw, 48px)/.95 var(--display); text-transform: uppercase; }
.safe > div > p { color: var(--smoke); margin: 14px 0 0; }
.safe ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.safe li { display: grid; grid-template-columns: 22px 1fr; gap: 12px; color: #cfcdd5; }
.safe li strong { color: var(--bone); font-weight: 600; }
.safe li svg {
  width: 18px; height: 18px; margin-top: 4px;
  transition: transform .55s cubic-bezier(.3, 1.7, .5, 1) calc(var(--d, 0s) + .2s);
  animation: checkpulse 3.2s ease-in-out infinite; animation-delay: calc(var(--k, 0) * .4s);
}
.safe li.pre svg { transform: scale(0) rotate(-60deg); }
@keyframes checkpulse { 0%, 70%, 100% { filter: none; } 80% { filter: brightness(1.6) drop-shadow(0 0 6px rgba(192, 132, 252, 1)); } }
@media (max-width: 820px) { .safe { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------- explorer */
.explorer {
  display: grid; grid-template-columns: 250px 1fr; margin-top: 44px;
  background: var(--shade); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden;
}
.titlebar {
  grid-column: 1 / -1; display: flex; align-items: center; gap: 10px;
  height: 44px; padding: 0 16px; border-bottom: 1px solid var(--line); background: #0b0b0d;
}
.titlebar img { width: 22px; animation: bobsm 2.8s ease-in-out infinite, headglow 2.6s ease-in-out infinite; }
.titlebar b { font-weight: 600; font-size: 14px; }
.tour-hint { font-family: var(--pixel); font-size: 12px; color: var(--dim); letter-spacing: .08em; display: flex; align-items: center; gap: 8px; margin-left: 14px; transition: opacity .4s; }
.tour-hint::before { content: ""; width: 6px; height: 6px; background: var(--eye); animation: tick 1.2s ease-in-out infinite; }
.tour-hint.off { opacity: 0; }
.titlebar .controls { margin-left: auto; display: flex; gap: 22px; color: var(--dim); font-size: 14px; }
.tools { position: relative; padding: 14px 10px 18px; border-right: 1px solid var(--line); display: flex; flex-direction: column; gap: 2px; }
.tools .group { position: relative; z-index: 1; font: 600 11px/1 var(--body); letter-spacing: .1em; text-transform: uppercase; color: var(--dim); padding: 14px 16px 8px; margin: 0; }
.tools .group:first-of-type { padding-top: 4px; }
.pill {
  position: absolute; left: 0; top: 0; z-index: 0; border-radius: 10px; pointer-events: none;
  background: linear-gradient(90deg, rgba(168, 85, 247, .32), rgba(168, 85, 247, .05));
}
.pill.moving { transition: transform .5s cubic-bezier(.3, 1.25, .5, 1), width .5s var(--ease), height .5s var(--ease); }
.pill::before { content: ""; position: absolute; left: 6px; top: 9px; bottom: 9px; width: 3px; border-radius: 2px; background: var(--eye); animation: barpulse 1.8s ease-in-out infinite; }
.tool {
  position: relative; z-index: 1; text-align: left; border: 0; background: transparent; color: var(--smoke);
  font: 600 15px/1 var(--body); padding: 11px 16px 11px 20px; border-radius: 10px; cursor: pointer;
  transition: background .15s, color .2s, padding-left .25s var(--ease);
}
.tool:hover { background: rgba(255, 255, 255, .04); color: var(--bone); padding-left: 24px; }
.tool[aria-selected="true"] { color: var(--bone); background: transparent; padding-left: 20px; }
.tool.timing::after {
  content: ""; position: absolute; left: 20px; right: 14px; bottom: 4px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--eye), var(--ember)); transform-origin: left;
  animation: tourbar 5.2s linear forwards;
}
.viewer { padding: clamp(18px, 3vw, 30px); min-width: 0; }
.viewer .caption { min-height: 132px; }
.viewer .caption.swapping { animation: captionIn .55s var(--ease); }
.viewer .caption .eyebrow { margin-bottom: 8px; }
.viewer h3 { font: 800 clamp(30px, 3.4vw, 42px)/1 var(--display); text-transform: uppercase; }
.viewer .caption p:last-child { color: var(--smoke); margin: 10px 0 0; max-width: 70ch; }
.shot { position: relative; margin-top: 22px; border-radius: 10px; overflow: hidden; border: 1px solid var(--line); background: #080809; aspect-ratio: 904 / 750; }
.shot img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.shot .next { clip-path: inset(0 100% 0 0); }
.shot .next.sweep { animation: sweep .7s cubic-bezier(.65, 0, .35, 1) forwards; }
.shot .edge {
  position: absolute; top: 0; bottom: 0; left: 0; width: 3px; opacity: 0; pointer-events: none; z-index: 3;
  background: var(--ember); box-shadow: 0 0 22px 6px rgba(168, 85, 247, .75);
}
.shot .edge.sweep { animation: edge .7s cubic-bezier(.65, 0, .35, 1) forwards; }

@keyframes tourbar { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes barpulse { 0%, 100% { box-shadow: 0 0 4px var(--eye); } 50% { box-shadow: 0 0 16px var(--ember); } }
@keyframes captionIn { from { transform: translateY(12px); opacity: .2; filter: blur(4px); } to { transform: none; opacity: 1; filter: none; } }
@keyframes sweep { from { clip-path: inset(0 100% 0 0); } to { clip-path: inset(0 0 0 0); } }
@keyframes edge { 0% { left: 0; opacity: 1; } 90% { opacity: 1; } 100% { left: 100%; opacity: 0; } }

@media (max-width: 860px) {
  .explorer { grid-template-columns: 1fr; }
  .tools {
    flex-direction: row; overflow-x: auto; gap: 6px; padding: 12px;
    border-right: 0; border-bottom: 1px solid var(--line); scrollbar-width: thin;
  }
  .tools .group { display: none; }
  .tool, .tool:hover, .tool[aria-selected="true"] { white-space: nowrap; border: 1px solid var(--line); padding: 10px 14px; }
  .tool[aria-selected="true"] { border-color: var(--eye); }
  .tool.timing::after { left: 12px; right: 12px; bottom: 3px; }
  .pill::before { display: none; }
  .viewer .caption { min-height: 0; }
  .tour-hint { display: none; }
}

/* ---------------------------------------------------------------- themes
   The list reads like the app's own store; the big screen is the app wearing the picked theme, and
   the whole panel takes that theme's accent (--t), fading from one to the next. */
@property --t { syntax: "<color>"; inherits: true; initial-value: #a855f7; }
.themes {
  --t: #a855f7;
  display: grid; grid-template-columns: 270px 1fr; gap: 28px; margin-top: 44px;
  transition: --t .6s ease;
}
.theme-list { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.theme-list .group { font: 600 11px/1 var(--body); letter-spacing: .1em; text-transform: uppercase; color: var(--dim); margin: 16px 0 6px 10px; }
.theme-list .group:first-child { margin-top: 2px; }
.chip {
  --c: #a855f7;
  display: grid; grid-template-columns: 46px 1fr 10px; align-items: center; gap: 12px;
  width: 100%; min-height: 60px; padding: 6px 14px 6px 8px; text-align: left; cursor: pointer;
  font: 600 15px/1.2 var(--body); color: var(--smoke);
  background: transparent; border: 1px solid transparent; border-radius: 12px;
  transition: background .2s, color .2s, border-color .3s, transform .25s var(--ease);
}
.chip .pic { width: 46px; height: 46px; display: grid; place-items: center; }
.chip .pic img { max-width: 46px; max-height: 46px; width: auto; height: auto; }
.chip small { display: block; margin-top: 4px; font: 400 12px/1.1 var(--pixel); letter-spacing: .04em; color: var(--dim); }
.chip .dot { width: 10px; height: 10px; background: var(--c); box-shadow: 0 0 10px var(--c); }
.chip:hover { color: var(--bone); background: rgba(255, 255, 255, .04); transform: translateX(3px); }
.chip[aria-selected="true"] {
  color: var(--bone); border-color: var(--c);
  background: linear-gradient(90deg, color-mix(in srgb, var(--c) 20%, transparent), transparent 85%);
}
.chip.secret .pic { font: 600 26px/1 var(--pixel); color: var(--dim); border: 1px dashed var(--line); border-radius: 10px; width: 40px; height: 40px; margin: 3px; }
.chip.secret[aria-selected="true"] .pic { color: var(--bone); border-color: var(--c); }

.theme-view { min-width: 0; }
.theme-screen {
  position: relative; overflow: hidden; max-width: 100%;
  aspect-ratio: 1140 / 790; border-radius: 12px; border: 1px solid var(--line); background: #080809;
  box-shadow: 0 40px 90px -30px #000, 0 0 80px -24px color-mix(in srgb, var(--t) 60%, transparent);
}
.theme-screen img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.theme-screen .next { opacity: 0; }
.theme-screen .next.fade { animation: themefade .55s var(--ease) forwards; }
.secret-screen {
  position: absolute; inset: 0; display: none; place-content: center; justify-items: center; gap: 16px; text-align: center;
  background: radial-gradient(circle at 50% 42%, rgba(255, 77, 109, .08), transparent 55%), #060607;
}
.theme-screen.secret img { visibility: hidden; }
.theme-screen.secret .secret-screen { display: grid; }
.secret-screen .q { font: 600 clamp(90px, 14vw, 160px)/1 var(--pixel); color: var(--bone); text-shadow: 0 0 40px rgba(255, 255, 255, .2); animation: glitch 3.2s steps(1) infinite; }
.secret-screen p { margin: 0; padding-inline: 16px; color: var(--smoke); font-family: var(--pixel); font-size: 15px; }

.theme-info { display: grid; grid-template-columns: 130px 1fr; gap: 24px; align-items: center; margin-top: 24px; }
.theme-info.swapping { animation: captionIn .5s var(--ease); }
.theme-mascot { position: relative; height: 150px; display: grid; place-items: end center; }
.theme-mascot::after {
  content: ""; position: absolute; left: 12%; right: 12%; bottom: -6px; height: 14px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(0, 0, 0, .8), transparent);
}
.theme-mascot img {
  position: relative; z-index: 1; max-height: 140px; max-width: 130px; width: auto; height: auto;
  animation: float 3.2s ease-in-out infinite;
  filter: drop-shadow(0 0 18px color-mix(in srgb, var(--t) 55%, transparent));
}
.theme-mascot.q img { visibility: hidden; }
.theme-mascot.q::before {
  content: "?"; position: absolute; inset: 0; display: grid; place-items: center;
  font: 600 84px/1 var(--pixel); color: var(--dim); animation: glitch 3.2s steps(1) infinite;
}
.theme-text { min-width: 0; }
.theme-text .eyebrow { color: var(--t); margin-bottom: 6px; }
.theme-text h3 { font: 800 clamp(34px, 4vw, 50px)/.95 var(--display); text-transform: uppercase; }
.theme-text > p { color: var(--smoke); margin: 8px 0 0; }
.theme-facts { display: grid; grid-template-columns: auto 1fr; gap: 6px 16px; margin: 14px 0 0; }
.theme-facts dt { color: var(--dim); font-size: 14px; padding-top: 1px; }
.theme-facts dd { margin: 0; font-weight: 600; font-size: 15px; }

.theme-note {
  display: flex; align-items: center; gap: 18px; margin: 34px 0 0; padding: 16px 20px;
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--shade); color: var(--smoke);
}
.theme-note b { color: var(--bone); font-weight: 600; }
.theme-note .lvl { flex: none; width: 96px; height: 10px; padding: 2px; border: 1px solid var(--line); box-sizing: border-box; }
.theme-note .lvl i { display: block; height: 100%; width: 100%; background: linear-gradient(90deg, var(--blood), var(--eye)); transform-origin: left; animation: lvlfill 4.5s ease-in-out infinite; }

@keyframes themefade { from { opacity: 0; transform: scale(1.015); } to { opacity: 1; transform: none; } }
@keyframes glitch { 0%, 88%, 100% { transform: none; } 90% { transform: translate(-4px, 1px); color: #ff4d6d; } 93% { transform: translate(3px, -2px); } }
@keyframes lvlfill { 0% { transform: scaleX(.08); } 60%, 100% { transform: scaleX(1); } }

@media (max-width: 900px) {
  .themes { grid-template-columns: 1fr; gap: 18px; }
  .theme-list { flex-direction: row; overflow-x: auto; gap: 8px; padding-bottom: 6px; scrollbar-width: thin; }
  .theme-list .group { display: none; }
  .chip, .chip:hover { flex: none; width: auto; grid-template-columns: 36px auto; gap: 10px; min-height: 50px; border-color: var(--line); transform: none; }
  .chip .dot { display: none; }
  .chip .pic { width: 36px; height: 36px; }
  .chip .pic img { max-width: 36px; max-height: 36px; }
  .chip.secret .pic { width: 32px; height: 32px; margin: 2px; font-size: 20px; }
  .theme-info { grid-template-columns: 86px 1fr; gap: 16px; }
  .theme-mascot { height: 110px; }
  .theme-mascot img { max-height: 100px; max-width: 86px; }
  .theme-mascot.q::before { font-size: 60px; }
}

/* ---------------------------------------------------------------- extras */
.showoff { display: grid; grid-template-columns: 1.35fr .65fr; gap: 40px; align-items: center; margin-top: 44px; }
.card-shot { margin: 0; min-width: 0; }
.card-shot img {
  width: 100%; border-radius: 12px; border: 1px solid var(--line);
  box-shadow: 0 40px 90px -30px #000, 0 0 70px -28px rgba(168, 85, 247, .7);
  transform: rotate(-1.2deg); transition: transform .5s var(--ease);
}
.card-shot:hover img { transform: none; }
.card-text h3 { font: 800 clamp(34px, 4vw, 50px)/.95 var(--display); text-transform: uppercase; }
.card-text p { color: var(--smoke); margin: 14px 0 0; }
.card-text .small { font-size: 14px; color: var(--dim); }
.card-text kbd {
  display: inline-block; font-family: var(--body); font-size: .9em; color: var(--bone);
  background: var(--ash-2); border: 1px solid var(--line); border-bottom-width: 2px; border-radius: 5px; padding: 0 5px;
}
.features { list-style: none; margin: 60px 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 36px; }
.features li { padding: 22px 0 28px; border-top: 1px solid var(--line); }
.features h3 { display: flex; align-items: center; gap: 10px; font-size: 19px; font-weight: 700; margin-bottom: 8px; }
.features h3::before { content: ""; flex: none; width: 8px; height: 8px; background: var(--eye); box-shadow: 0 0 8px var(--eye); }
.features p { color: var(--smoke); margin: 0; font-size: 16px; }
@media (max-width: 900px) {
  .showoff { grid-template-columns: 1fr; gap: 24px; }
  .features { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) { .features { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------- how to use */
.steps-wrap { position: relative; margin-top: 50px; }
.rail {
  position: absolute; left: 0; right: 0; top: 23px; height: 2px;
  background: repeating-linear-gradient(90deg, #241733 0 8px, transparent 8px 14px);
}
.rail span {
  position: absolute; inset: 0; transform-origin: left; transform: scaleX(var(--p, 1));
  background: repeating-linear-gradient(90deg, var(--eye) 0 8px, transparent 8px 14px);
  background-size: 14px 100%;
  filter: drop-shadow(0 0 4px rgba(168, 85, 247, .9));
  animation: march .6s linear infinite;
}
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: 28px; position: relative; }
.steps li { position: relative; }
.steps .n {
  display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 18px; box-sizing: border-box;
  font: 600 22px/1 var(--pixel); color: #fff; background: var(--eye); border: 2px solid var(--eye);
  box-shadow: 0 0 0 6px var(--void), 0 0 24px rgba(168, 85, 247, .6);
  transition: background .35s, color .35s;
  animation: pop .55s cubic-bezier(.3, 1.7, .5, 1), wave 5s ease-in-out .6s infinite;
  animation-delay: 0s, calc(var(--k, 0) * .45s + .6s);
}
.steps .n.dark { background: var(--void); color: var(--eye); box-shadow: 0 0 0 6px var(--void); animation: none; }
.steps h3 { font-size: 19px; font-weight: 700; margin-bottom: 8px; }
.steps p { color: var(--smoke); margin: 0; font-size: 16px; }
.steps kbd {
  display: inline-block; font-family: var(--body); font-size: .92em; color: var(--bone);
  background: var(--ash-2); border: 1px solid var(--line); border-bottom-width: 2px; border-radius: 5px; padding: 0 5px;
  animation: keypress 3.4s ease-in-out infinite; animation-delay: calc(var(--k, 0) * .6s + .3s);
}
@keyframes pop { 0% { transform: scale(.6); } 100% { transform: scale(1); } }
@keyframes wave {
  0%, 20%, 100% { transform: none; box-shadow: 0 0 0 6px var(--void), 0 0 24px rgba(168, 85, 247, .6); }
  10% { transform: translateY(-6px) scale(1.08); box-shadow: 0 0 0 6px var(--void), 0 0 44px rgba(192, 132, 252, 1); }
}
@keyframes keypress {
  0%, 86%, 100% { transform: none; border-bottom-width: 2px; }
  91% { transform: translateY(2px); border-bottom-width: 1px; background: var(--eye); border-color: var(--eye); color: #fff; }
}
@keyframes march { to { background-position: 14px 0; } }
@media (max-width: 960px) {
  .rail { left: 23px; right: auto; top: 0; bottom: 0; width: 2px; height: auto; background: repeating-linear-gradient(180deg, #241733 0 8px, transparent 8px 14px); }
  .rail span { transform-origin: top; transform: scaleY(var(--p, 1)); background: repeating-linear-gradient(180deg, var(--eye) 0 8px, transparent 8px 14px); background-size: 100% 14px; animation-name: marchy; }
  .steps { grid-template-columns: 1fr; gap: 26px; }
  .steps li { display: grid; grid-template-columns: 48px 1fr; gap: 0 18px; }
  .steps .n { grid-row: span 2; margin: 0; }
}
@keyframes marchy { to { background-position: 0 14px; } }

/* ---------------------------------------------------------------- download */
.get {
  --angle: 0deg; /* keeps the border valid (just still) where @property isn't supported */
  position: relative; margin-top: 50px;
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px;
  padding: clamp(24px, 5vw, 56px);
  border: 1.5px solid transparent; border-radius: 18px;
  /* A red glint runs around the border, the way Marshadow's eyes catch light. */
  background:
    radial-gradient(circle at 12% 0%, rgba(168, 85, 247, .22), transparent 45%) padding-box,
    linear-gradient(180deg, #121014, var(--shade)) padding-box,
    conic-gradient(from var(--angle), #2b1a3d 0deg, #2b1a3d 240deg, var(--eye) 300deg, #e9d5ff 322deg, var(--eye) 340deg, #2b1a3d 360deg) border-box;
  animation: spin 5s linear infinite;
}
.handle { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin: 6px 0 8px; }
.handle img { width: 74px; animation: bob 2.8s ease-in-out infinite, headglow 2.6s ease-in-out infinite; }
.handle .tag { font-family: var(--pixel); font-size: 13px; color: var(--smoke); letter-spacing: .1em; text-transform: uppercase; margin: 0; }
.handle .name { font: 900 clamp(48px, 7vw, 84px)/.95 var(--display); margin: 2px 0 0; overflow-wrap: anywhere; animation-duration: 4.5s; animation-delay: .6s; }
.handle .invite { font: 600 16px/1.3 var(--body); letter-spacing: .02em; color: var(--ember); margin: 8px 0 0; overflow-wrap: anywhere; }
.get .actions { position: relative; display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.px { position: absolute; width: 6px; height: 6px; pointer-events: none; z-index: 3; animation: fly .75s cubic-bezier(.2, .8, .3, 1) forwards; }
.copied { min-height: 26px; margin: 12px 0 0; font-family: var(--pixel); font-size: 14px; color: var(--spark); }
.copied.show { animation: captionIn .45s var(--ease); }
.mini { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 12px; counter-reset: mini; }
.mini li { counter-increment: mini; display: grid; grid-template-columns: 30px 1fr; align-items: start; gap: 12px; color: #cfcdd5; }
.mini li::before {
  content: counter(mini); display: grid; place-items: center; box-sizing: border-box; width: 30px; height: 30px;
  font: 600 16px/1 var(--pixel); border: 1px solid var(--eye); color: var(--eye);
  animation: beat 3s ease-in-out infinite; animation-delay: calc(var(--i, 0) * .5s);
}
.mini li > span { padding-top: 2px; }
.mini b { color: var(--bone); font-weight: 600; }

.reqs { position: relative; overflow: hidden; align-self: start; background: rgba(7, 7, 8, .6); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.reqs::after {
  content: ""; position: absolute; left: 0; right: 0; top: -15%; height: 15%; pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(246, 206, 96, .08), transparent);
  animation: reqscan 4.5s linear infinite;
}
.reqs h3 { font-family: var(--pixel); font-weight: 600; font-size: 14px; letter-spacing: .12em; text-transform: uppercase; color: var(--spark); margin-bottom: 14px; }
.reqs dl { margin: 0; display: grid; grid-template-columns: auto 1fr; gap: 12px 18px; }
.reqs dt { color: var(--dim); font-size: 14px; padding-top: 2px; }
.reqs dd { margin: 0; font-weight: 600; font-size: 15px; }
.reqs .note { margin: 20px 0 0; padding-top: 18px; border-top: 1px solid var(--line); color: var(--smoke); font-size: 14px; }
.reqs .note b { color: var(--bone); font-weight: 600; }
@media (max-width: 900px) { .get { grid-template-columns: 1fr; } }

@keyframes fly {
  from { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  to { transform: translate(calc(-50% + var(--tx)), calc(-50% + var(--ty))) scale(.3) rotate(90deg); opacity: 0; }
}
@keyframes beat {
  0%, 16%, 100% { background: transparent; color: var(--eye); box-shadow: none; }
  8% { background: var(--eye); color: #fff; box-shadow: 0 0 16px rgba(168, 85, 247, .8); }
}
@keyframes reqscan { to { transform: translateY(770%); } }

/* ---------------------------------------------------------------- footer */
footer { margin-top: clamp(100px, 12vw, 150px); border-top: 1px solid var(--line); padding-block: 34px 70px; }
.peek { position: absolute; right: clamp(20px, 12vw, 180px); bottom: 100%; height: 62px; width: 70px; overflow: hidden; }
.peek img {
  width: 70px; margin-top: 6px;
  transition: transform .9s cubic-bezier(.3, 1.4, .5, 1) .15s;
  animation: bobsm 2.4s ease-in-out infinite, headglow 2.6s ease-in-out infinite;
}
.peek.pre img { transform: translateY(100%); }
footer .wrap { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 30px; }
footer .brand span { font-size: 20px; }
footer .links { display: flex; gap: 20px; }
footer .links a { position: relative; color: var(--smoke); text-decoration: none; font-size: 15px; transition: color .2s; }
footer .links a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -3px; height: 1px; background: var(--eye); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
footer .links a:hover { color: var(--bone); }
footer .links a:hover::after { transform: scaleX(1); }
footer .legal { flex-basis: 100%; margin: 6px 0 0; color: var(--dim); font-size: 13px; max-width: 90ch; }

/* ---------------------------------------------------------------- why it's different (hype) */
.versus { display: grid; grid-template-columns: 1fr auto 1fr; align-items: stretch; gap: 20px; margin-top: 44px; }
.vs-col { padding: clamp(22px, 3vw, 32px); border-radius: var(--radius); border: 1px solid var(--line); background: linear-gradient(180deg, var(--ash), var(--shade)); }
.vs-them { opacity: .92; }
.vs-us {
  --angle: 0deg; border-color: transparent;
  background:
    linear-gradient(180deg, rgba(35, 17, 19, .55), var(--shade)) padding-box,
    conic-gradient(from var(--angle), #2b1a3d 0deg, #2b1a3d 230deg, var(--eye) 300deg, #e9d5ff 322deg, var(--eye) 340deg, #2b1a3d 360deg) border-box;
  box-shadow: 0 30px 80px -42px rgba(168, 85, 247, .8), 0 0 60px -34px rgba(168, 85, 247, .55);
  animation: spin 6s linear infinite;
}
.vs-h { font: 800 clamp(20px, 2.4vw, 26px)/1 var(--display); text-transform: uppercase; letter-spacing: .02em; margin: 0 0 18px; }
.vs-them .vs-h { color: var(--smoke); }
.vs-us .vs-h { color: var(--bone); }
.vs-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.vs-col li { display: grid; grid-template-columns: 24px 1fr; gap: 11px; align-items: start; font-size: 16px; }
.vs-them li { color: var(--dim); }
.vs-us li { color: #d7d5dd; }
.vs-them li strong, .vs-us li strong { font-weight: 600; }
.vs-us li strong { color: var(--bone); }
.vs-col li::before { display: grid; place-items: center; box-sizing: border-box; width: 22px; height: 22px; margin-top: 1px; border-radius: 6px; font-size: 13px; }
.vs-them li::before { content: "\2715"; color: var(--dim); border: 1px solid var(--line); }
.vs-us li::before {
  content: "\2713"; color: #fff; font-weight: 700; background: var(--eye);
  box-shadow: 0 0 12px rgba(168, 85, 247, .6); animation: checkpulse 3.2s ease-in-out infinite; animation-delay: calc(var(--k, 0) * .35s);
}
.vs-v {
  align-self: center; justify-self: center; width: 60px; height: 60px; display: grid; place-items: center;
  font: 900 24px/1 var(--display); letter-spacing: .04em; color: var(--eye);
  background: var(--void); border: 1px solid var(--line); border-radius: 50%;
  box-shadow: 0 0 0 6px var(--void), 0 0 30px rgba(168, 85, 247, .4);
}
@media (max-width: 820px) {
  .versus { grid-template-columns: 1fr; gap: 16px; }
  .vs-v { margin: -6px auto; }
}

/* ---------------------------------------------------------------- price: one plan, same glinting border as the download card */
.plan {
  --angle: 0deg;
  display: grid; grid-template-columns: .9fr 1.1fr; gap: 28px 56px; align-items: center;
  margin-top: 44px; padding: clamp(24px, 4.5vw, 52px);
  border: 1.5px solid transparent; border-radius: 18px;
  background:
    radial-gradient(circle at 12% 0%, rgba(168, 85, 247, .24), transparent 48%) padding-box,
    linear-gradient(180deg, #121014, var(--shade)) padding-box,
    conic-gradient(from var(--angle), var(--line) 0deg, var(--line) 250deg, var(--eye) 310deg, #e9d5ff 325deg, var(--eye) 340deg, var(--line) 360deg) border-box;
  animation: spin 7s linear infinite;
}
.plan .tag { font-family: var(--pixel); font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--ember); margin: 0; }
.plan .name { font: 800 clamp(30px, 3.4vw, 40px)/1 var(--display); text-transform: uppercase; margin: 6px 0 0; }
.plan .price { display: flex; align-items: baseline; gap: 8px; margin: 20px 0 0; }
.plan .price .cur { align-self: flex-start; margin-top: 10px; font: 700 24px/1 var(--body); color: var(--smoke); }
.plan .price .val { font: 900 clamp(76px, 9vw, 116px)/.85 var(--display); color: var(--bone); text-shadow: 0 0 44px rgba(168, 85, 247, .5); }
.plan .price .per { font: 600 19px/1 var(--body); color: var(--smoke); }
.plan .sub { color: var(--smoke); margin: 14px 0 0; font-size: 16px; }
.plan .sub b { color: var(--bone); font-weight: 600; }
.plan .actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.plan .fine { color: var(--dim); font-size: 13px; margin: 12px 0 0; }
.includes { list-style: none; margin: 0; padding: 0; display: grid; gap: 15px; }
.includes li { display: grid; grid-template-columns: 24px 1fr; gap: 12px; align-items: start; color: #d7d5dd; font-size: 16px; }
.includes li::before {
  content: "\2713"; display: grid; place-items: center; box-sizing: border-box; width: 22px; height: 22px; margin-top: 1px;
  border-radius: 6px; font-size: 13px; font-weight: 700; color: #fff; background: var(--eye);
  box-shadow: 0 0 12px rgba(168, 85, 247, .6); animation: checkpulse 3.2s ease-in-out infinite; animation-delay: calc(var(--k, 0) * .35s);
}
.includes b { color: var(--bone); font-weight: 600; }
@media (max-width: 820px) { .plan { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------- FAQ (scoped under .faq so the .q class doesn't clash with the secret theme's) */
.faq { margin-top: 44px; display: grid; gap: 12px; max-width: 900px; }
.faq details { border: 1px solid var(--line); border-radius: var(--radius); background: var(--shade); transition: border-color .3s, background .3s; }
.faq details[open] { border-color: color-mix(in srgb, var(--eye) 55%, var(--line)); background: linear-gradient(180deg, var(--ash), var(--shade)); }
.faq summary { list-style: none; cursor: pointer; display: flex; align-items: center; gap: 16px; padding: 20px 22px; font: 600 clamp(16px, 2vw, 18px)/1.35 var(--body); color: var(--bone); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: #fff; }
.faq .sign { flex: none; margin-left: auto; position: relative; width: 26px; height: 26px; border: 1px solid var(--line); border-radius: 7px; transition: background .2s, border-color .2s; }
.faq .sign::before, .faq .sign::after { content: ""; position: absolute; left: 50%; top: 50%; background: var(--eye); transform: translate(-50%, -50%); transition: transform .3s var(--ease), background .2s; }
.faq .sign::before { width: 12px; height: 2px; }
.faq .sign::after { width: 2px; height: 12px; }
.faq details[open] .sign { background: var(--eye); border-color: var(--eye); }
.faq details[open] .sign::before, .faq details[open] .sign::after { background: #fff; }
.faq details[open] .sign::after { transform: translate(-50%, -50%) scaleY(0); }
.faq .a { padding: 0 22px 20px; color: var(--smoke); }
.faq .a p { margin: 0; }
.faq .a p + p { margin-top: 10px; }
.faq .a b { color: var(--bone); font-weight: 600; }
.faq .a kbd { display: inline-block; font-family: var(--body); font-size: .9em; color: var(--bone); background: var(--ash-2); border: 1px solid var(--line); border-bottom-width: 2px; border-radius: 5px; padding: 0 5px; }

/* ---------------------------------------------------------------- hero reel (auto-playing demo) */
.reel .reel-img { width: 100%; display: block; }
.reel .reel-next { position: absolute; inset: 0; z-index: 1; opacity: 0; }
.reel .reel-next.fade { animation: themefade .6s var(--ease) forwards; }
.reel-pill {
  position: absolute; top: 12px; left: 12px; z-index: 3;
  display: inline-flex; align-items: center; gap: 7px;
  font: 600 11px/1 var(--pixel); letter-spacing: .12em; text-transform: uppercase; color: var(--bone);
  background: rgba(7, 7, 8, .72); border: 1px solid var(--line); border-radius: 999px; padding: 6px 11px;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.reel-pill::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--eye); box-shadow: 0 0 8px var(--eye); animation: tick 1.4s ease-in-out infinite; }

/* ---------------------------------------------------------------- quiz (which mascot are you) */
.quiz { margin-top: 44px; max-width: 840px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--shade); overflow: hidden; }
.quiz-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 15px 22px; border-bottom: 1px solid var(--line); background: #0b0b0d; }
.quiz-step { font: 400 13px/1 var(--pixel); letter-spacing: .08em; text-transform: uppercase; color: var(--dim); }
.quiz-dots { display: flex; gap: 8px; }
.quiz-dots i { width: 8px; height: 8px; border-radius: 50%; background: var(--line); transition: background .3s, box-shadow .3s; }
.quiz-dots i.on { background: var(--eye); box-shadow: 0 0 8px var(--eye); }
.quiz-body { padding: clamp(22px, 4vw, 38px); }
.quiz-q { font: 800 clamp(23px, 3.4vw, 34px)/1.05 var(--display); text-transform: uppercase; margin: 0 0 22px; }
.quiz-opts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.quiz-opt {
  text-align: left; border: 1px solid var(--line); background: var(--ash); color: var(--bone);
  border-radius: 12px; padding: 16px 18px; font: 600 16px/1.3 var(--body); cursor: pointer;
  transition: border-color .2s, background .2s, transform .2s var(--ease);
}
.quiz-opt:hover { border-color: var(--eye); background: var(--ash-2); transform: translateY(-2px); }
@media (max-width: 560px) { .quiz-opts { grid-template-columns: 1fr; } }

.quiz-result { --rc: var(--eye); display: none; text-align: center; padding: clamp(22px, 4vw, 38px); }
.quiz.done .quiz-body { display: none; }
.quiz.done .quiz-result { display: block; animation: captionIn .5s var(--ease); }
.quiz-result .mascot { height: 190px; display: grid; place-items: end center; margin-bottom: 4px; }
.quiz-result .mascot img { max-height: 190px; max-width: 180px; width: auto; height: auto; animation: float 3.2s ease-in-out infinite; filter: drop-shadow(0 0 26px color-mix(in srgb, var(--rc) 60%, transparent)); }
.quiz-result .eyebrow { color: var(--rc); }
.quiz-result h3 { font: 800 clamp(34px, 5vw, 58px)/.92 var(--display); text-transform: uppercase; }
.quiz-result .tag { color: var(--smoke); max-width: 52ch; margin: 10px auto 0; }
.quiz-result .unlock { font-family: var(--pixel); font-size: 14px; color: var(--dim); margin: 12px auto 0; }
.quiz-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 24px; }
.quiz-result .copied { text-align: center; }

/* ---------------------------------------------------------------- creator (who makes it) */
.creator { display: grid; grid-template-columns: 190px 1fr; gap: 40px; align-items: center; margin-top: 44px; padding: clamp(24px, 4vw, 42px); border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(180deg, var(--ash), var(--shade)); }
.creator-face { justify-self: center; }
.creator-face img {
  width: 150px; height: 150px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--eye); box-shadow: 0 0 44px -8px rgba(168, 85, 247, .6);
  animation: bobsm 3.4s ease-in-out infinite, headglow 2.6s ease-in-out infinite;
}
.creator-text h3 { font: 800 clamp(28px, 4vw, 44px)/1 var(--display); text-transform: uppercase; }
.creator-text .role { font-family: var(--pixel); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--spark); margin: 6px 0 0; }
.creator-text p:not(.role) { color: #cfcdd5; margin: 16px 0 0; }
.creator-links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
@media (max-width: 640px) { .creator { grid-template-columns: 1fr; gap: 22px; text-align: center; } .creator-links { justify-content: center; } }

/* ---------------------------------------------------------------- paused (the button at the bottom corner) */
html.still { scroll-behavior: auto; }
html.still *, html.still *::before, html.still *::after { animation: none !important; transition: none !important; }
html.still .embers, html.still .spot { display: none; }
html.still .sprite .eyes { opacity: .8; }
html.still .screen { transform: none; }

/* ================================================================ SITE EM ABAS (páginas separadas)
   Tudo daqui pra baixo é do site novo: menu, conta, compra, páginas de texto. */

/* ---------------------------------------------------------------- header: menu, conta e celular */
.top-actions { display: flex; align-items: center; gap: 10px; }
.acct {
  display: inline-flex; align-items: center; gap: 9px; min-height: 40px; padding: 0 14px 0 6px;
  border: 1px solid var(--line); border-radius: 999px; background: var(--ash);
  color: var(--bone); text-decoration: none; font: 600 14px/1 var(--body);
  transition: border-color .2s, background .2s;
}
.acct:hover { border-color: var(--eye); background: var(--ash-2); }
.acct img { width: 28px; height: 28px; border-radius: 50%; }
.acct .nm { max-width: 14ch; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.acct.login { padding: 0 16px; gap: 8px; }
.acct.login svg { width: 18px; height: 18px; }
.menu-btn {
  display: none; width: 42px; height: 40px; border: 1px solid var(--line); border-radius: 10px;
  background: var(--ash); color: var(--bone); cursor: pointer; place-items: center;
}
.menu-btn svg { width: 20px; height: 20px; }
@media (max-width: 980px) {
  .top .wrap { gap: 12px; }
  .top .buy-top { display: none; }
  .menu-btn { display: grid; }
  .top nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; gap: 0; padding: 8px clamp(16px, 4vw, 40px) 18px;
    background: rgba(7, 7, 8, .97); border-bottom: 1px solid var(--line);
  }
  .top nav.open { display: flex; }
  .top nav a { padding: 14px 0; font-size: 17px; border-bottom: 1px solid rgba(42, 42, 49, .6); }
  .top nav a::after { display: none; }
  .acct .nm { display: none; }
  .acct { padding: 0 6px; }
  .acct.login .nm { display: inline; }
  .acct.login { padding: 0 14px; }
}

/* ---------------------------------------------------------------- aviso do site (o painel escreve) */
.notice-bar {
  position: relative; z-index: 21; text-align: center; padding: 9px 16px;
  background: linear-gradient(90deg, var(--blood), #6d28d9, var(--blood)); color: #fff;
  font: 600 14px/1.4 var(--body);
}

/* ---------------------------------------------------------------- topo das páginas internas */
.page-head { position: relative; overflow: hidden; padding-block: clamp(46px, 7vw, 90px) 0; }
.page-head h1 {
  font-family: var(--display); font-weight: 900; text-transform: uppercase;
  font-size: clamp(48px, 8vw, 104px); line-height: .9;
}
.page-head .lede { font-size: clamp(17px, 1.6vw, 20px); }
.page-head .head-mascot {
  position: absolute; right: clamp(0px, 6vw, 90px); bottom: -10px; width: clamp(90px, 12vw, 150px);
  opacity: .9; animation: float 3.4s ease-in-out infinite; pointer-events: none;
  filter: drop-shadow(0 0 26px rgba(168, 85, 247, .45));
}
@media (min-width: 761px) { .page-head .wrap { padding-right: clamp(40px, 15vw, 230px); } }
@media (max-width: 760px) { .page-head .head-mascot { display: none; } }
.band.first { padding-top: clamp(40px, 6vw, 70px); }

/* ---------------------------------------------------------------- cartões "explore" da página inicial */
.explore { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 44px; }
.explore a {
  --angle: 0deg; position: relative; display: flex; flex-direction: column; gap: 10px; min-height: 210px;
  padding: 22px; border-radius: var(--radius); text-decoration: none; overflow: hidden;
  border: 1px solid var(--line); background: linear-gradient(180deg, var(--ash), var(--shade));
  transition: transform .3s var(--ease), border-color .3s;
}
.explore a:hover { transform: translateY(-4px); border-color: var(--eye); }
.explore .ico { width: 64px; height: 64px; display: grid; place-items: center; }
.explore .ico img { max-width: 64px; max-height: 64px; width: auto; height: auto; filter: drop-shadow(0 0 14px rgba(168, 85, 247, .5)); }
.explore h3 { font: 800 28px/1 var(--display); text-transform: uppercase; }
.explore p { margin: 0; color: var(--smoke); font-size: 15px; }
.explore .go { margin-top: auto; font: 600 13px/1 var(--pixel); letter-spacing: .08em; text-transform: uppercase; color: var(--ember); }
@media (max-width: 1000px) { .explore { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .explore { grid-template-columns: 1fr; } .explore a { min-height: 0; } }

/* ---------------------------------------------------------------- planos (1 mês, 3 meses, vitalício) */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 44px; align-items: stretch; }
.plan-card {
  --angle: 0deg; position: relative; display: flex; flex-direction: column; gap: 6px;
  padding: clamp(22px, 3vw, 32px); border-radius: 18px; border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--ash), var(--shade));
  transition: border-color .3s, box-shadow .3s;
}
/* No hover o card só acende (sem subir): card e botão subindo juntos faziam tremer ao passar o mouse. */
.plan-card:hover { border-color: var(--eye); box-shadow: 0 0 60px -30px rgba(168, 85, 247, .8); }
.plan-card .btn:hover, .plan-card .btn:active { transform: none; }
.plan-card.best {
  border: 1.5px solid transparent;
  background:
    radial-gradient(circle at 20% 0%, rgba(168, 85, 247, .24), transparent 55%) padding-box,
    linear-gradient(180deg, #121014, var(--shade)) padding-box,
    conic-gradient(from var(--angle), var(--line) 0deg, var(--line) 250deg, var(--eye) 310deg, #e9d5ff 325deg, var(--eye) 340deg, var(--line) 360deg) border-box;
  animation: spin 7s linear infinite;
}
.plan-card .ribbon {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%); white-space: nowrap;
  padding: 5px 12px; border-radius: 999px; font: 600 12px/1 var(--pixel); letter-spacing: .08em; text-transform: uppercase;
  color: #fff; background: linear-gradient(180deg, #a855f7, #7e22ce); box-shadow: 0 6px 20px -6px rgba(168, 85, 247, .9);
}
.plan-card .ribbon.gold { background: linear-gradient(180deg, #f6ce60, #d49a18); color: #1a1204; }
.plan-card .pname { font: 800 30px/1 var(--display); text-transform: uppercase; margin: 6px 0 0; }
.plan-card .pprice { display: flex; align-items: baseline; gap: 6px; margin: 14px 0 0; }
.plan-card .pprice .cur { font: 700 20px/1 var(--body); color: var(--smoke); align-self: flex-start; margin-top: 8px; }
.plan-card .pprice .val { font: 900 clamp(58px, 6vw, 80px)/.85 var(--display); text-shadow: 0 0 40px rgba(168, 85, 247, .45); }
.plan-card .pper { color: var(--smoke); font-size: 15px; margin: 6px 0 0; }
.plan-card .pper b { color: var(--bone); }
.plan-card ul { list-style: none; margin: 18px 0 22px; padding: 0; display: grid; gap: 10px; }
.plan-card li { display: grid; grid-template-columns: 20px 1fr; gap: 10px; color: #d7d5dd; font-size: 15px; }
.plan-card li::before {
  content: "\2713"; display: grid; place-items: center; width: 20px; height: 20px; border-radius: 6px;
  font-size: 12px; font-weight: 700; color: #fff; background: var(--eye);
}
.plan-card .btn { margin-top: auto; width: 100%; box-sizing: border-box; }
@media (max-width: 900px) { .plans { grid-template-columns: 1fr; max-width: 520px; } }
.includes-wide { list-style: none; margin: 40px 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px 30px; }
.includes-wide li { display: grid; grid-template-columns: 24px 1fr; gap: 12px; color: #d7d5dd; font-size: 15px; }
.includes-wide li::before {
  content: "\2713"; display: grid; place-items: center; width: 22px; height: 22px; border-radius: 6px;
  font-size: 13px; font-weight: 700; color: #fff; background: var(--eye); box-shadow: 0 0 12px rgba(168, 85, 247, .6);
}
.includes-wide b { color: var(--bone); }
@media (max-width: 900px) { .includes-wide { grid-template-columns: 1fr; } }

/* escolha do plano na compra */
.plan-pick { display: grid; gap: 10px; margin-bottom: 18px; }
.plan-opt {
  display: grid; grid-template-columns: 22px 1fr auto; gap: 12px; align-items: center; cursor: pointer;
  padding: 14px 16px; border-radius: 12px; border: 1px solid var(--line); background: var(--void);
  transition: border-color .2s, background .2s;
}
.plan-opt:hover { border-color: color-mix(in srgb, var(--eye) 60%, var(--line)); }
.plan-opt:has(input:checked) { border-color: var(--eye); background: linear-gradient(90deg, rgba(168, 85, 247, .16), transparent 80%); }
.plan-opt input { width: 18px; height: 18px; margin: 0; accent-color: var(--eye); }
.plan-opt b { display: block; font-size: 16px; }
.plan-opt small { color: var(--dim); font-size: 13px; }
.plan-opt .pv { font: 800 26px/1 var(--display); }

/* ---------------------------------------------------------------- como a compra funciona (3 passos) */
.how-buy { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 36px; counter-reset: hb; }
.how-buy li {
  list-style: none; counter-increment: hb; padding: 22px; border-radius: var(--radius);
  border: 1px solid var(--line); background: var(--shade);
}
.how-buy li::before {
  content: counter(hb); display: grid; place-items: center; width: 34px; height: 34px; margin-bottom: 14px;
  font: 600 17px/1 var(--pixel); color: #fff; background: var(--eye); box-shadow: 0 0 18px rgba(168, 85, 247, .6);
}
.how-buy h3 { font-size: 18px; margin-bottom: 6px; }
.how-buy p { margin: 0; color: var(--smoke); font-size: 15px; }
.how-buy { padding: 0; }
@media (max-width: 820px) { .how-buy { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------- formulários (compra e conta) */
.card {
  position: relative; padding: clamp(20px, 3.4vw, 34px); border-radius: var(--radius);
  border: 1px solid var(--line); background: linear-gradient(180deg, var(--ash), var(--shade));
}
.card + .card { margin-top: 16px; }
.card h2, .card h3.t { font: 800 clamp(26px, 3vw, 34px)/1 var(--display); text-transform: uppercase; margin: 0 0 14px; }
.card .hint { color: var(--smoke); margin: 0 0 18px; font-size: 15px; }
.card .hint b { color: var(--bone); }
.field { display: grid; gap: 7px; margin-bottom: 16px; }
.field > span { font: 600 13px/1 var(--pixel); letter-spacing: .08em; text-transform: uppercase; color: var(--smoke); }
.field small { color: var(--dim); font-size: 13px; }
.input {
  width: 100%; box-sizing: border-box; min-height: 48px; padding: 12px 14px;
  border: 1px solid var(--line); border-radius: 10px; background: var(--void); color: var(--bone);
  font: 500 16px/1.3 var(--body); transition: border-color .2s, box-shadow .2s;
}
.input.mono { font-family: Consolas, "Courier New", monospace; letter-spacing: .03em; }
.input:focus { outline: none; border-color: var(--eye); box-shadow: 0 0 0 3px rgba(168, 85, 247, .22); }
.input.bad { border-color: #ff5c6c; }
.check { display: grid; grid-template-columns: 22px 1fr; gap: 10px; align-items: start; color: var(--smoke); font-size: 15px; margin: 6px 0 18px; cursor: pointer; }
.check input { width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--eye); }
.check a { color: var(--ember); }
.form-msg { min-height: 24px; margin: 12px 0 0; font-size: 15px; }
.form-msg.err { color: #ff8a95; }
.form-msg.ok { color: #86efac; }
.btn[disabled] { opacity: .55; pointer-events: none; }
.btn.wide { width: 100%; box-sizing: border-box; }

/* cupom na compra */
.coupon-row { display: flex; gap: 10px; }
.coupon-row .input { flex: 1; min-width: 0; text-transform: uppercase; }
.coupon-row .btn { min-height: 48px; flex: none; }
.coupon-msg { min-height: 18px; }
.coupon-msg.ok { color: #86efac !important; }
.coupon-msg.err { color: #ff8a95 !important; }
.summary .old-price { color: var(--dim); font: 600 18px/1 var(--body); text-decoration: line-through; margin-right: 4px; }
#sum-coupon { color: #86efac; }

.buy-side { display: grid; gap: 16px; align-content: start; }
.buy-side .card + .card { margin-top: 0; }

/* baixar o app (compra): o código do PC sai da tela de ativação dele */
.get-app { display: grid; grid-template-columns: 56px 1fr; gap: 14px; align-items: center; }
.get-app img { width: 56px; height: auto; filter: drop-shadow(0 0 14px rgba(168, 85, 247, .5)); }
.get-app p { margin: 0; color: var(--smoke); font-size: 15px; }
.get-app p b { color: var(--bone); }
.get-app .btn { grid-column: 1 / -1; width: 100%; box-sizing: border-box; }
.get-app ol { grid-column: 1 / -1; margin: 0; padding-left: 20px; color: var(--smoke); font-size: 14px; display: grid; gap: 6px; }
.get-app ol b { color: var(--bone); }

/* ---------------------------------------------------------------- compra: Pix */
.checkout { display: grid; grid-template-columns: 1.1fr .9fr; gap: 20px; align-items: start; margin-top: 40px; }
@media (max-width: 900px) { .checkout { grid-template-columns: 1fr; } }
.summary dl { display: grid; grid-template-columns: auto 1fr; gap: 12px 18px; margin: 0; }
.summary dt { color: var(--dim); font-size: 14px; padding-top: 2px; }
.summary dd { margin: 0; font-weight: 600; }
.summary .total { display: flex; align-items: baseline; gap: 8px; margin: 22px 0 0; padding-top: 18px; border-top: 1px solid var(--line); }
.summary .total b { font: 900 54px/.9 var(--display); text-shadow: 0 0 34px rgba(168, 85, 247, .5); }
.summary .total span { color: var(--smoke); }
.pix { display: grid; grid-template-columns: 220px 1fr; gap: 24px; align-items: center; }
@media (max-width: 640px) { .pix { grid-template-columns: 1fr; justify-items: center; text-align: center; } }
.pix .qr { width: 220px; height: 220px; padding: 10px; box-sizing: border-box; background: #fff; border-radius: 12px; }
.pix .qr img { width: 100%; height: 100%; image-rendering: pixelated; }
.pix .code { width: 100%; box-sizing: border-box; min-height: 90px; resize: none; font: 13px/1.5 Consolas, monospace; color: var(--bone); background: var(--void); border: 1px solid var(--line); border-radius: 10px; padding: 10px; word-break: break-all; }
.pix .timer { font: 600 14px/1 var(--pixel); color: var(--spark); letter-spacing: .06em; margin: 12px 0; }
.waiting { display: flex; align-items: center; gap: 10px; color: var(--smoke); font-size: 15px; margin-top: 14px; }
.waiting i { width: 10px; height: 10px; background: var(--eye); box-shadow: 0 0 10px var(--eye); animation: tick 1s ease-in-out infinite; }
.done-box { text-align: center; }
.done-box img { width: 120px; margin: 0 auto 8px; animation: float 3.2s ease-in-out infinite; }

/* ---------------------------------------------------------------- chave (conta e compra) */
.keybox { margin-top: 14px; padding: 16px; border-radius: 12px; border: 1px solid color-mix(in srgb, var(--eye) 45%, var(--line)); background: var(--void); }
.keybox code { display: block; font: 15px/1.7 Consolas, monospace; color: #c4f5d3; word-break: break-all; }
.keybox code.blur { filter: blur(6px); user-select: none; }
.keybox .row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.keybox .btn { min-height: 40px; font-size: 14px; padding: 0 16px; }

/* ---------------------------------------------------------------- conta */
.acct-head { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.acct-head img { width: 76px; height: 76px; border-radius: 50%; border: 2px solid var(--eye); box-shadow: 0 0 30px -6px rgba(168, 85, 247, .7); }
.acct-head .who h1 { font-size: clamp(38px, 6vw, 64px); }
.acct-head .who p { margin: 6px 0 0; color: var(--dim); font: 400 13px/1 var(--pixel); letter-spacing: .06em; }
.acct-head .acts { margin-left: auto; display: flex; gap: 10px; flex-wrap: wrap; }
.acct-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 16px; margin-top: 36px; align-items: start; }
.acct-grid .card + .card { margin-top: 0; }
.acct-side { display: grid; gap: 16px; }
@media (max-width: 900px) { .acct-grid { grid-template-columns: 1fr; } }
.state { display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px; border-radius: 999px; font: 600 14px/1 var(--body); }
.state::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: currentColor; box-shadow: 0 0 8px currentColor; }
.state.ativa { color: #4ade80; background: rgba(74, 222, 128, .1); }
.state.vencida { color: var(--spark); background: rgba(246, 206, 96, .1); }
.state.cancelada { color: #ff6b78; background: rgba(255, 92, 108, .1); }
.state.nenhuma { color: var(--smoke); background: rgba(160, 158, 168, .1); }
.facts-list { display: grid; grid-template-columns: auto 1fr; gap: 10px 18px; margin: 18px 0 0; }
.facts-list dt { color: var(--dim); font-size: 14px; padding-top: 1px; }
.facts-list dd { margin: 0; font-weight: 600; overflow-wrap: anywhere; }
.facts-list dd.mono { font: 13px/1.5 Consolas, monospace; }
.orders { width: 100%; border-collapse: collapse; font-size: 14px; }
.orders th, .orders td { text-align: left; padding: 10px 8px; border-bottom: 1px solid var(--line); }
.orders th { color: var(--dim); font: 600 12px/1 var(--pixel); letter-spacing: .06em; text-transform: uppercase; }
.orders tr:last-child td { border-bottom: 0; }
.pill { display: inline-block; padding: 3px 10px; border-radius: 999px; font-size: 12px; font-weight: 600; white-space: nowrap; }
.pill.paid { color: #4ade80; background: rgba(74, 222, 128, .12); }
.pill.pending, .pill.processing { color: var(--spark); background: rgba(246, 206, 96, .12); }
.pill.expired, .pill.cancelled { color: var(--smoke); background: rgba(160, 158, 168, .12); }
.pill.error, .pill.refunded { color: #ff6b78; background: rgba(255, 92, 108, .12); }
.empty { color: var(--dim); font-size: 15px; margin: 0; }
.login-box { max-width: 560px; margin: 50px auto 0; text-align: center; }
.login-box img { width: 120px; margin: 0 auto 10px; animation: float 3.2s ease-in-out infinite; }
.login-box p { color: var(--smoke); }
.login-box .btn { margin-top: 10px; }
.login-box .small { font-size: 13px; color: var(--dim); margin-top: 18px; }
.alert { margin: 0 0 18px; padding: 12px 16px; border-radius: 12px; border: 1px solid rgba(246, 206, 96, .5); background: rgba(246, 206, 96, .08); color: var(--spark); font-size: 15px; }
.alert.bad { border-color: rgba(255, 92, 108, .5); background: rgba(255, 92, 108, .08); color: #ff9aa4; }

/* ---------------------------------------------------------------- páginas de texto (termos, privacidade) */
.legal-doc { max-width: 820px; margin-top: 40px; }
.legal-doc h2 { font-size: clamp(26px, 3vw, 34px); margin: 40px 0 12px; }
.legal-doc p, .legal-doc li { color: #cfcdd5; }
.legal-doc ul { padding-left: 22px; }
.legal-doc li + li { margin-top: 6px; }
.legal-doc b { color: var(--bone); }
.legal-doc .updated { font: 400 13px/1 var(--pixel); letter-spacing: .06em; color: var(--dim); }
.legal-doc a { color: var(--ember); }

.faq .a a, .mini a, .hint a, .check a { color: var(--ember); }

/* ---------------------------------------------------------------- rodapé com mais links */
footer .links { flex-wrap: wrap; row-gap: 10px; }
footer .links.legal-links a { font-size: 13px; color: var(--dim); }

/* ---------------------------------------------------------------- aviso flutuante */
.toast {
  position: fixed; left: 50%; bottom: 24px; z-index: 60; transform: translate(-50%, 20px); opacity: 0;
  padding: 12px 18px; border-radius: 12px; border: 1px solid var(--eye); background: rgba(13, 13, 16, .96);
  color: var(--bone); font-size: 15px; pointer-events: none; transition: opacity .25s, transform .25s var(--ease);
  max-width: calc(100vw - 32px);
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.toast.bad { border-color: #ff5c6c; }
