/* Prevain Booking – Landingpage
   Design: "Modern SaaS / Clean" — Stripe/Linear-Stil, Prevain-Marke (Cyan), Drei-Welten-Konzept.
   Typo: Clash Display (Überschriften) + Satoshi (Text), via Fontshare.
   Akzentfarben: --brand #7c3aed (Prevain-Violett), Welten-spezifisch (Stay/Appt/Seat). */

:root {
  /* Prevain-Marke */
  --brand:       #7c3aed;
  --brand-deep:  #6d28d9;
  --brand-faint: rgba(124, 58, 237, .10);
  --brand-glow:  rgba(124, 58, 237, .45);
  /* Neutral */
  --ink:    #0b1120;
  --ink-2:  #1a2340;
  --paper:  #ffffff;
  --tint:   #f4f6fb;
  --tint-2: #eaeef8;
  --line:   #e3e8f4;
  --muted:  #556080;
  --muted-2:#8f97b6;
  /* Drei Welten */
  --stay:  #f97316;
  --appt:  #10b981;
  --seat:  #d946ef;
  /* aktive Welt (wird per JS gesetzt) */
  --world:      var(--stay);
  --world-soft: rgba(249, 115, 22, .13);
  /* Typografie */
  --fdisp: "Clash Display", "Satoshi", system-ui, sans-serif;
  --fbody: "Satoshi", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --fmono: ui-monospace, "SFMono-Regular", "JetBrains Mono", Menlo, monospace;
  /* Form */
  --r-xl:  28px;
  --r-lg:  20px;
  --r-md:  14px;
  --r-sm:  10px;
  /* Schatten */
  --s1: 0 1px 3px rgba(11, 17, 32, .05), 0 2px 8px rgba(11, 17, 32, .04);
  --s2: 0 4px 24px -6px rgba(11, 17, 32, .14), 0 1px 4px rgba(11, 17, 32, .06);
  --s3: 0 20px 60px -16px rgba(11, 17, 32, .26);
  --sglow: 0 28px 80px -24px var(--brand-glow);
  /* Layout */
  --maxw: 1120px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--fbody);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv01";
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ── Typografie ──────────────────────────────────────────── */
h1, h2, h3, .display {
  font-family: var(--fdisp);
  font-weight: 700;
  letter-spacing: -.022em;
  line-height: 1.06;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--brand-deep);
}

.eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

/* ── Navigation ──────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(170%) blur(16px);
  -webkit-backdrop-filter: saturate(170%) blur(16px);
  background: rgba(255, 255, 255, .75);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}

.nav.scrolled {
  border-color: var(--line);
  background: rgba(255, 255, 255, .90);
}

.nav__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--fdisp);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -.02em;
}

.brand__mark {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  flex: none;
  background: conic-gradient(from 210deg, var(--stay), var(--appt), var(--seat), var(--brand), var(--stay));
  box-shadow: inset 0 0 0 2.5px rgba(255,255,255,.7), var(--s1);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color .2s;
}

.nav__links a:hover { color: var(--ink); }
.nav__cta { display: inline-flex; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  --bg: var(--ink);
  --fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--fbody);
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  padding: 14px 22px;
  border-radius: var(--r-md);
  border: 0;
  cursor: pointer;
  background: var(--bg);
  color: var(--fg);
  white-space: nowrap;
  transition: transform .18s var(--ease), box-shadow .22s, background .2s, color .18s;
}

.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--brand); outline-offset: 3px; }

.btn--primary {
  --bg: linear-gradient(120deg, var(--brand) 0%, #a78bfa 100%);
  --fg: #ffffff;
  box-shadow: var(--sglow);
}

.btn--primary:hover { box-shadow: 0 36px 90px -28px rgba(124, 58, 237, .65); }

.btn--ghost {
  --bg: transparent;
  --fg: var(--ink);
  box-shadow: inset 0 0 0 1.5px var(--line);
}

.btn--ghost:hover {
  --bg: var(--tint);
  box-shadow: inset 0 0 0 1.5px var(--brand);
}

.btn--light  { --bg: #fff; --fg: var(--ink); box-shadow: var(--s1); }
.btn--sm     { padding: 10px 16px; font-size: 14px; border-radius: var(--r-sm); }
.btn--block  { width: 100%; }

/* ── Hero ────────────────────────────────────────────────── */
.hero { position: relative; padding: 64px 0 96px; overflow: hidden; }

.hero::before {
  content: "";
  position: absolute;
  inset: -20% -20% auto -20%;
  height: 700px;
  z-index: -2;
  background:
    radial-gradient(50% 58% at 16% 22%, rgba(249, 115, 22, .16), transparent 62%),
    radial-gradient(44% 52% at 84% 10%, rgba(139, 92, 246, .16), transparent 62%),
    radial-gradient(56% 60% at 50% 0%,  rgba(124, 58, 237, .14), transparent 64%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image: radial-gradient(rgba(11, 17, 32, .045) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: linear-gradient(180deg, #000, transparent 72%);
  -webkit-mask-image: linear-gradient(180deg, #000, transparent 72%);
}

.hero__top { max-width: 780px; margin: 0 auto; text-align: center; }

.hero h1 { font-size: clamp(38px, 6.4vw, 76px); }

.hero h1 .grad {
  background: linear-gradient(106deg, var(--stay), var(--seat) 52%, var(--brand));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--muted);
  max-width: 600px;
  margin: 22px auto 0;
  line-height: 1.65;
}

.hero__cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

/* Trust-Leiste */
.trust {
  display: flex;
  gap: 6px 24px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 28px;
}

.trust span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
}

.trust svg {
  width: 16px;
  height: 16px;
  color: var(--brand-deep);
  flex: none;
}

/* ── Live-Demo (Signature) ───────────────────────────────── */
.demo { position: relative; max-width: 940px; margin: 56px auto 0; }

.demo__glow {
  position: absolute;
  inset: 10% 4% -8% 4%;
  z-index: -1;
  filter: blur(48px);
  opacity: .48;
  background: radial-gradient(60% 80% at 50% 30%, var(--world), transparent 70%);
  transition: background .5s;
}

.device {
  background: linear-gradient(180deg, #ffffff, #fafbff);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--s3);
  overflow: hidden;
}

.device__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 18px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.device__dots { display: flex; gap: 6px; }
.device__dots i { width: 10px; height: 10px; border-radius: 50%; background: var(--tint-2); display: block; }

.device__url {
  margin-left: 8px;
  flex: 1;
  font-family: var(--fmono);
  font-size: 12px;
  color: var(--muted-2);
  background: var(--tint);
  border-radius: var(--r-sm);
  padding: 6px 12px;
  text-align: center;
}

.device__live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  color: var(--world);
  transition: color .4s;
}

.device__live i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--world);
  box-shadow: 0 0 0 0 var(--world);
  animation: pulse 2s infinite;
  transition: background .4s;
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 var(--world-soft); }
  70%  { box-shadow: 0 0 0 8px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}

/* Welt-Tabs */
.worlds {
  display: flex;
  gap: 8px;
  padding: 14px 18px 4px;
  flex-wrap: wrap;
}

.world-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-family: var(--fbody);
  font-weight: 600;
  font-size: 14px;
  padding: 9px 14px;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--muted);
  transition: all .22s var(--ease);
}

.world-tab svg { width: 17px; height: 17px; }
.world-tab[aria-selected="true"] { color: #fff; border-color: transparent; }
.world-tab[data-world="stay"][aria-selected="true"] { background: var(--stay); box-shadow: 0 8px 20px -8px var(--stay); }
.world-tab[data-world="appt"][aria-selected="true"] { background: var(--appt); box-shadow: 0 8px 20px -8px var(--appt); }
.world-tab[data-world="seat"][aria-selected="true"] { background: var(--seat); box-shadow: 0 8px 20px -8px var(--seat); }

/* Stage */
.stage { position: relative; padding: 18px; min-height: 340px; }
.screen { display: none; animation: screen-in .5s var(--ease) both; }
.screen.active { display: block; }

@keyframes screen-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.screen__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 14px;
  flex-wrap: wrap;
  gap: 6px;
}

.screen__head h3 { font-size: 18px; }
.screen__head p  { font-size: 13px; color: var(--muted); }

/* Kalender */
.cal { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }

.cal__dow {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: .06em;
  padding-bottom: 2px;
}

.cal__day {
  aspect-ratio: 1 / .82;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  transition: transform .15s var(--ease), background .18s, color .18s, border-color .18s;
}

.cal__day:hover          { border-color: var(--stay); transform: translateY(-2px); }
.cal__day.muted          { color: var(--muted-2); opacity: .44; cursor: default; }
.cal__day.muted:hover    { border-color: var(--line); transform: none; }
.cal__day.in-range       { background: var(--stay); border-color: transparent; color: #3a1e00; opacity: .26; }
.cal__day.edge           { background: var(--stay); border-color: transparent; color: #fff; opacity: 1; box-shadow: 0 6px 16px -6px var(--stay); }

/* Slots */
.slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(90px, 1fr)); gap: 9px; }

.slot {
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  background: #fff;
  cursor: pointer;
  padding: 12px 9px;
  text-align: center;
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  transition: transform .15s var(--ease), border-color .18s, background .18s, color .18s;
}

.slot:hover             { border-color: var(--appt); transform: translateY(-2px); }
.slot.sel               { background: var(--appt); border-color: transparent; color: #fff; box-shadow: 0 8px 20px -8px var(--appt); }
.slot.gone              { opacity: .38; text-decoration: line-through; cursor: not-allowed; }
.slot.gone:hover        { border-color: var(--line); transform: none; }

.staff { display: flex; gap: 9px; margin-bottom: 14px; flex-wrap: wrap; }

.staff button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  border: 1.5px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 6px 13px 6px 6px;
  font-family: var(--fbody);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted);
  transition: all .2s;
}

.staff button.on { border-color: var(--appt); color: var(--ink); }

.staff .av {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
}

/* Saalplan */
.seatgrid { display: grid; gap: 7px; justify-content: center; }

.seat-el {
  border-radius: 8px;
  display: grid;
  place-items: center;
  cursor: pointer;
  position: relative;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  transition: transform .15s var(--ease), filter .18s, box-shadow .18s;
}

.seat-el.free          { background: var(--seat); opacity: .9; }
.seat-el.free:hover    { transform: translateY(-2px) scale(1.04); filter: brightness(1.08); }
.seat-el.taken         { background: #cfd6e6; cursor: not-allowed; color: #fff; }
.seat-el.info          { background: transparent; color: var(--muted); box-shadow: inset 0 0 0 1.5px var(--line); cursor: default; font-size: 9px; }
.seat-el.info svg      { width: 14px; height: 14px; }
.seat-el.picked        { background: #05202a; box-shadow: 0 6px 16px -5px rgba(0,0,0,.38), 0 0 0 2px var(--seat); transform: translateY(-2px) scale(1.04); }

.stagebar {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--muted-2);
  background: var(--tint);
  border-radius: var(--r-sm);
  padding: 7px;
  margin-bottom: 12px;
}

.legend { display: flex; gap: 14px; justify-content: center; margin-top: 12px; flex-wrap: wrap; }
.legend span { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: var(--muted); font-weight: 500; }
.legend i { width: 13px; height: 13px; border-radius: 4px; display: block; }

/* Demo-Fußzeile */
.demo__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding: 15px 18px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, var(--tint));
}

.summary { font-size: 14px; color: var(--muted); }
.summary b { color: var(--ink); font-weight: 700; }
.summary .price { font-family: var(--fdisp); font-weight: 700; font-size: 22px; color: var(--ink); letter-spacing: -.02em; }

.demo__book { --bg: var(--world); --fg: #fff; box-shadow: 0 12px 28px -10px var(--world); transition: background .4s, box-shadow .4s, transform .18s; }

/* Erfolg-Overlay */
.done {
  position: absolute;
  inset: 0;
  display: none;
  place-items: center;
  text-align: center;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 5;
}

.done.show  { display: grid; animation: screen-in .35s var(--ease) both; }
.done__ring { width: 84px; height: 84px; margin: 0 auto 14px; }
.done__ring circle { fill: none; stroke: var(--world); stroke-width: 6; stroke-dasharray: 264; stroke-dashoffset: 264; animation: draw .6s var(--ease) forwards; transform-origin: 50% 50%; transform: rotate(-90deg); }
.done__ring path   { fill: none; stroke: var(--world); stroke-width: 7; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 60; stroke-dashoffset: 60; animation: draw .35s .5s var(--ease) forwards; }

@keyframes draw { to { stroke-dashoffset: 0; } }

.done h3 { font-size: 22px; }
.done p  { color: var(--muted); font-size: 14px; margin-top: 4px; }
.done button { margin-top: 16px; }

/* ── Sections ────────────────────────────────────────────── */
.section        { padding: 96px 0; }
.section--tint  { background: var(--tint); }
.section--ink   { background: var(--ink); color: #fff; }

.section__head { max-width: 640px; margin: 0 auto 52px; text-align: center; }
.section__head h2 { font-size: clamp(28px, 4.2vw, 46px); margin-top: 14px; }
.section__head p  { color: var(--muted); font-size: 17px; margin-top: 14px; line-height: 1.6; }
.section--ink .section__head p { color: #aeb7d6; }

/* ── Drei Welten ─────────────────────────────────────────── */
.wgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.wcard {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px;
  overflow: hidden;
  box-shadow: var(--s1);
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}

.wcard::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--c);
}

.wcard::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--c);
  opacity: .07;
  transition: transform .4s var(--ease), opacity .3s;
}

.wcard:hover { transform: translateY(-6px); box-shadow: var(--s3); border-color: color-mix(in srgb, var(--c) 40%, var(--line)); }
.wcard:hover::after { transform: scale(1.5); opacity: .1; }

.wcard__icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--c) 14%, #fff);
  color: var(--c);
  margin-bottom: 18px;
}

.wcard__icon svg { width: 26px; height: 26px; }
.wcard h3 { font-size: 21px; }
.wcard p  { color: var(--muted); font-size: 14.5px; margin-top: 10px; line-height: 1.55; }
.wcard ul { list-style: none; margin-top: 16px; display: grid; gap: 9px; }

.wcard li {
  font-size: 13.5px;
  color: var(--ink);
  display: flex;
  gap: 9px;
  align-items: flex-start;
}

.wcard li svg { width: 16px; height: 16px; color: var(--c); flex: none; margin-top: 3px; }

/* ── Features ────────────────────────────────────────────── */
.fgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

.fcard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 24px;
  transition: transform .25s var(--ease), box-shadow .25s, border-color .25s;
}

.fcard:hover { transform: translateY(-4px); box-shadow: var(--s2); border-color: var(--brand); }

.fcard__ic {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--tint);
  color: var(--brand-deep);
  margin-bottom: 14px;
}

.fcard__ic svg { width: 22px; height: 22px; }
.fcard h3 { font-size: 15.5px; font-family: var(--fbody); font-weight: 700; letter-spacing: -.01em; }
.fcard p  { color: var(--muted); font-size: 13.5px; margin-top: 7px; line-height: 1.55; }

/* ── Einbindung / Code ───────────────────────────────────── */
.embed { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.embed__steps { list-style: none; display: grid; gap: 22px; }
.embed__steps li { display: flex; gap: 16px; }

.embed__num {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--fdisp);
  font-weight: 700;
  font-size: 15px;
}

.embed__steps h3 { font-size: 17px; font-family: var(--fbody); font-weight: 700; }
.embed__steps p  { color: var(--muted); font-size: 14px; margin-top: 3px; }

.code {
  background: #0a1022;
  border-radius: var(--r-md);
  box-shadow: var(--s3);
  overflow: hidden;
  border: 1px solid #1c2548;
}

.code__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 16px;
  border-bottom: 1px solid #1c2548;
}

.code__dots { display: flex; gap: 6px; }
.code__dots i { width: 10px; height: 10px; border-radius: 50%; background: #2a3466; display: block; }

.code__copy {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #182046;
  color: #cdd6f5;
  border: 1px solid #2a3466;
  border-radius: var(--r-sm);
  padding: 6px 12px;
  font-family: var(--fbody);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}

.code__copy:hover { background: var(--brand); color: #05202a; border-color: transparent; }
.code pre { margin: 0; padding: 20px 18px; overflow-x: auto; }
.code code { font-family: var(--fmono); font-size: 13px; line-height: 1.78; color: #cdd6f5; white-space: pre; }
.code .t-tag  { color: #7ee3f5; }
.code .t-attr { color: #ffb27d; }
.code .t-str  { color: #b9f5c4; }
.code .t-cmt  { color: #5c6898; }

/* ── Preise ──────────────────────────────────────────────── */
.pgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }

.plan {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}

.plan:hover { transform: translateY(-5px); box-shadow: var(--s3); }

.plan--pop {
  border-color: transparent;
  box-shadow: var(--s2);
  background: linear-gradient(180deg, #fff, #fafcff);
}

.plan--pop::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  padding: 1.5px;
  background: linear-gradient(140deg, var(--brand), var(--seat), var(--stay));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.plan__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(120deg, var(--brand), var(--seat));
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  box-shadow: var(--s1);
  white-space: nowrap;
}

.plan__name { font-family: var(--fdisp); font-weight: 700; font-size: 22px; }
.plan__for  { color: var(--muted); font-size: 13px; margin-top: 4px; min-height: 20px; }

.plan__price { display: flex; align-items: baseline; gap: 6px; margin: 20px 0 4px; }
.plan__price .amt { font-family: var(--fdisp); font-weight: 800; font-size: 46px; letter-spacing: -.04em; }
.plan__price .per { color: var(--muted); font-size: 14px; font-weight: 600; }
.plan__note { font-size: 12px; color: var(--muted-2); }

.plan__feats { list-style: none; margin: 22px 0 26px; display: grid; gap: 11px; }

.plan__feats li { display: flex; gap: 10px; font-size: 14px; align-items: flex-start; }
.plan__feats svg { width: 17px; height: 17px; color: var(--brand-deep); flex: none; margin-top: 2px; }

.plan .btn { margin-top: auto; }

.price-note { text-align: center; color: var(--muted); font-size: 14px; margin-top: 30px; }
.price-note b { color: var(--ink); }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq { max-width: 780px; margin: 0 auto; display: grid; gap: 10px; }

.qa {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: #fff;
  overflow: hidden;
  transition: border-color .2s;
}

.qa[open] { border-color: var(--brand); }

.qa summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 22px;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.qa summary::-webkit-details-marker { display: none; }

.qa summary::after {
  content: "";
  width: 12px;
  height: 12px;
  border-right: 2.5px solid var(--muted);
  border-bottom: 2.5px solid var(--muted);
  transform: rotate(45deg);
  transition: transform .25s var(--ease);
  flex: none;
}

.qa[open] summary::after { transform: rotate(-135deg); }
.qa p { padding: 0 22px 22px; color: var(--muted); font-size: 14.5px; line-height: 1.6; }

/* ── CTA-Band ────────────────────────────────────────────── */
.cta-band { position: relative; overflow: hidden; text-align: center; }

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(60% 120% at 20% 0%,  rgba(249,115,22,.22), transparent 62%),
    radial-gradient(60% 120% at 80% 100%, rgba(139,92,246,.26), transparent 62%),
    radial-gradient(50% 90%  at 50% 40%,  rgba(0,183,215,.20), transparent 66%);
}

.cta-band .wrap { position: relative; z-index: 1; }
.cta-band h2  { font-size: clamp(30px, 5vw, 52px); }
.cta-band p   { color: #aeb7d6; font-size: 18px; margin: 16px auto 30px; max-width: 540px; line-height: 1.6; }
.cta-band .hero__cta { margin-top: 0; }

/* ── Footer ──────────────────────────────────────────────── */
.foot { background: var(--ink); color: #aeb7d6; padding: 44px 0; }

.foot__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.foot__brand { color: #fff; }

.foot__links { display: flex; gap: 22px; flex-wrap: wrap; }
.foot__links a { font-size: 14px; transition: color .2s; }
.foot__links a:hover { color: #fff; }

/* ── Scroll-Reveal ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .wgrid, .fgrid, .pgrid { grid-template-columns: 1fr; }
  .embed { grid-template-columns: 1fr; gap: 30px; }
  .nav__links { display: none; }
  .plan--pop { order: -1; }
}

@media (max-width: 560px) {
  .section       { padding: 68px 0; }
  .wrap          { padding: 0 18px; }
  .btn           { padding: 12px 18px; }
  .worlds        { gap: 6px; }
  .world-tab     { padding: 8px 11px; font-size: 13px; }
  .device__url   { display: none; }
  .hero          { padding: 48px 0 72px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
