:root {
  --bg: #f4f4f6;
  --card: #ffffff;
  --ink: #16141c;
  --muted: #6b6b75;
  --line: #e6e6ea;
  --yellow: #7b61ff;
  --ice: #7b61ff;
  --ice-2: #3d3a47;
  --gold: #c4a35a;
  --danger: #e85d5d;
  --ok: #2f9e62;
  --warn: #d48806;
  --shadow: 0 24px 64px rgba(22, 20, 28, 0.08);
  --font: "Inter", ui-sans-serif, system-ui, sans-serif;
  --display: "Inter", ui-sans-serif, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
body {
  font-family: var(--font);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.5;
  background: var(--bg);
}
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; }
img { max-width: 100%; display: block; }
.app { min-height: 100dvh; }

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  height: 64px;
  padding: 0 28px;
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(244, 244, 246, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-txt { display: flex; flex-direction: column; line-height: 1.15; }
.tagline {
  font-style: normal;
  font-size: 10px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img.logo {
  height: 36px;
  width: 36px;
  object-fit: contain;
  background: #fff;
  border-radius: 10px;
  border: 1px solid var(--line);
}
.wordmark {
  font-family: var(--font);
  letter-spacing: 0.12em;
  font-size: 13px;
  font-weight: 800;
}
.nav-pills { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; justify-content: flex-end; }

.btn, .ghost {
  border-radius: 10px;
  padding: 10px 16px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
}
.ghost { background: transparent; color: var(--muted); border-color: var(--line); }
.ghost:hover { color: var(--ink); border-color: #c8c8d0; }
.btn {
  background: var(--yellow);
  color: #fff;
  border-color: var(--yellow);
  border-radius: 999px;
  font-weight: 700;
}
.btn:hover { filter: brightness(1.06); }
.btn.full { width: 100%; }
.btn.sm, .ghost.sm { min-height: 36px; padding: 8px 12px; font-size: 13px; }

.hero { max-width: 1120px; margin: 0 auto; padding: 56px 28px 28px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: center;
}
h1, h2 { font-weight: 600; letter-spacing: -0.035em; }
h1 { font-size: clamp(34px, 4.6vw, 52px); line-height: 1.08; margin: 0 0 16px; font-weight: 600; }
h2 { font-size: 22px; margin: 0 0 12px; }
.hero-sub {
  font-size: clamp(20px, 2.6vw, 28px);
  line-height: 1.2;
  font-weight: 600;
  margin: 0 0 16px;
  letter-spacing: -0.03em;
}
h3 { font-size: 15px; margin: 18px 0 10px; }
.lede { color: var(--muted); max-width: 38ch; font-size: 16px; margin: 0; }
.kicker {
  color: var(--yellow);
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: none;
  font-weight: 600;
  margin-bottom: 12px;
}

.phone {
  width: 320px;
  margin-left: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 40px;
  padding: 12px;
  box-shadow: var(--shadow);
}
.phone-notch {
  width: 108px;
  height: 22px;
  background: #ececef;
  border-radius: 14px;
  margin: 4px auto 10px;
}
.phone-body {
  background: #fafafa;
  border-radius: 28px;
  overflow: hidden;
}
.cover-img { height: 210px; background-size: cover; background-position: center; }
.phone-body .sheet { padding: 16px; }
.svc {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
}

.how {
  max-width: 1120px;
  margin: 8px auto 48px;
  padding: 0 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
}
.how article {
  background: var(--card);
  padding: 22px 22px 24px;
}
.how .n {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(126, 184, 212, 0.12);
  color: var(--ice);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
}
.how h3 { margin: 0 0 6px; font-size: 16px; }
.how p { margin: 0; color: var(--muted); font-size: 14px; }

.site-footer {
  max-width: 1120px;
  margin: 0 auto;
  padding: 22px 28px 40px;
  color: #5c5c64;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: none;
  border-top: 1px solid var(--line);
}

.wrap { max-width: 720px; margin: 0 auto; padding: 20px 16px 108px; }
.narrow { max-width: 420px; margin: 0 auto; padding: 32px 16px 80px; }

.profile-cover {
  height: 220px;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--line);
}
.profile-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 16px;
  margin-top: -48px;
  position: relative;
}
.stars { color: var(--gold); font-size: 13px; }

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  display: grid;
  place-items: center;
  font-weight: 700;
  flex: none;
  background: #2a2a2e;
  color: var(--ice);
  font-size: 13px;
  border: 1px solid #3a3a40;
}
.avatar.lg { width: 76px; height: 76px; font-size: 22px; border: 3px solid var(--bg); }
.avatar-need {
  background: #efe9ff;
  color: var(--yellow);
  font-size: 11px;
  font-weight: 700;
  text-transform: lowercase;
}
.photo-pick {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  margin: 0 0 16px;
}
.photo-pick span { display: flex; flex-direction: column; gap: 2px; }
.photo-pick b { font-size: 14px; }
.photo-pick i { font-style: normal; font-size: 12px; color: var(--muted); max-width: 28ch; }
.warn-card {
  background: #fff7e8;
  border: 1px solid #f0d9a8;
  border-radius: 16px;
  padding: 14px 16px;
  margin: 12px 0;
}
.warn-card p { margin: 8px 0 0; color: var(--muted); font-size: 14px; }
.warn-note { color: #b45309; font-size: 13px; margin: 0 0 12px; }

.row { display: flex; gap: 12px; align-items: center; }
.between { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.muted { color: var(--muted); }
.tiny { font-size: 12px; color: var(--muted); }
.price { font-weight: 700; color: var(--ice-2); }

.service {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.service:last-child { border-bottom: 0; }
.service .go { color: var(--ice); font-weight: 600; font-size: 12px; }

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
}

.choice {
  width: 100%;
  text-align: left;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 8px;
}
.choice.on { border-color: var(--yellow); background: rgba(123, 97, 255, 0.08); }
.choice b { font-size: 16px; }

.ask { font-size: 24px; margin: 8px 0 14px; letter-spacing: -0.03em; }
.dots { display: flex; gap: 6px; margin: 0 0 18px; }
.dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e8e8ec;
  display: block;
}
.dots i.on { background: var(--yellow); width: 22px; border-radius: 8px; }

.chip {
  display: inline-flex;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  margin: 0 6px 8px 0;
}
.chip.on { border-color: var(--ice); color: var(--ice-2); }

.slots { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.slot, .day {
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 12px;
  padding: 12px 8px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
}
.day { min-width: 64px; }
.slot.on, .day.on { border-color: var(--yellow); background: rgba(123, 97, 255, 0.1); color: var(--yellow); }
.slot[disabled] { opacity: 0.28; }

.field { margin: 12px 0; }
.field label { display: block; font-size: 12px; color: var(--muted); margin-bottom: 6px; }
.field input, .search input, #jday, .field select, .field textarea {
  width: 100%;
  background: #fff;
  border: 1px solid #e0e0e6;
  border-radius: 12px;
  padding: 13px 14px;
  outline: none;
}
.field textarea { resize: vertical; min-height: 84px; }
.field input:focus, .search input:focus { border-color: var(--ice); }

.otp { display: flex; gap: 8px; justify-content: center; }
.otp input {
  width: 54px;
  height: 60px;
  text-align: center;
  font-size: 22px;
  border-radius: 12px;
  border: 1px solid #e0e0e6;
  background: var(--card);
}

.sms {
  margin: 16px 0;
  background: #f7f7f9;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
}

.list { display: grid; gap: 8px; }
.person, .booking {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
}
.booking .st { font-size: 12px; font-weight: 600; color: var(--ok); }
.booking .st.wait { color: var(--warn); }
.booking .st.gone { color: var(--muted); }
.booking .st.no { color: var(--danger); }

.chat { display: flex; flex-direction: column; min-height: calc(100dvh - 150px); }
.bubble {
  max-width: 78%;
  padding: 10px 12px;
  border-radius: 14px;
  margin: 6px 0;
  font-size: 14px;
}
.bubble.me { margin-left: auto; background: var(--yellow); color: #fff; }
.bubble.them { background: var(--card); border: 1px solid var(--line); }
.composer {
  position: sticky;
  bottom: 70px;
  display: flex;
  gap: 8px;
  background: transparent;
  padding: 8px 0;
}
.composer input {
  flex: 1;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
}

.dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.94);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 6px 6px calc(8px + env(safe-area-inset-bottom));
  z-index: 40;
}
.dock-5 { grid-template-columns: repeat(5, 1fr); }
.dock button {
  background: none;
  border: 0;
  color: var(--muted);
  padding: 6px 2px;
  font-size: 10px;
  font-weight: 600;
}
.dock button span { display: block; font-size: 16px; margin-bottom: 2px; }
.dock button.on { color: var(--yellow); }

.hour-row {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 10px;
  min-height: 58px;
  border-bottom: 1px solid var(--line);
}
.hour-row .t { color: var(--muted); font-size: 12px; padding-top: 10px; }
.apt {
  border-radius: 12px;
  padding: 10px 12px;
  background: rgba(126, 184, 212, 0.08);
  border: 1px solid rgba(126, 184, 212, 0.22);
  font-size: 13px;
  margin: 6px 0;
}
.apt.wait { background: rgba(212, 160, 74, 0.08); border-color: rgba(212, 160, 74, 0.3); }

.search {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 8px 0 12px;
  background: #fff;
  border: 1px solid #e0e0e6;
  border-radius: 12px;
  padding: 4px 4px 4px 6px;
}
.search:focus-within { border-color: var(--ice); }
.search input {
  flex: 1;
  min-width: 0;
  width: auto;
  border: 0;
  background: transparent;
  padding: 9px 8px 9px 8px;
  border-radius: 8px;
}
.search input:focus { border-color: transparent; }
.mic {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--yellow);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px rgba(123, 97, 255, 0.35);
}
.mic:hover { filter: brightness(1.06); }
.mic svg { display: block; }

.voice-panel, .confirm {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  margin: 12px 0;
}
.examples { display: grid; gap: 8px; }
.examples.hide { display: none; }
.voice-panel.compact { padding: 12px 14px; }
.voice-panel.compact > p.tiny { display: none; }
.examples button {
  text-align: left;
  background: #f7f7f9;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  color: var(--muted);
  font-size: 13px;
}

.toast {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: #fff;
  padding: 12px 16px;
  border-radius: 12px;
  z-index: 50;
  font-weight: 700;
}

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.shot {
  aspect-ratio: 1;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--line);
}

.sticky-book {
  position: sticky;
  bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px;
  backdrop-filter: blur(12px);
}

@media (max-width: 860px) {
  .hero { padding: 28px 16px 12px; }
  .hero-grid, .how { grid-template-columns: 1fr; }
  .how { border-radius: 16px; }
  .phone { margin: 12px auto 0; }
  .wordmark { display: inline; }
  .tagline { display: none; }
  .slots { grid-template-columns: repeat(3, 1fr); }
  .topbar { padding: 0 16px; }
}
.studio-grid { padding: 16px 16px 108px; }
@media (max-width: 899px) { .side { display: none; } }
@media (min-width: 900px) {
  .studio-grid {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 18px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 20px 40px;
  }
  .side {
    position: sticky;
    top: 80px;
    height: fit-content;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 8px;
  }
  .side button {
    display: block;
    width: 100%;
    text-align: left;
    background: none;
    border: 0;
    padding: 11px 12px;
    border-radius: 10px;
    color: var(--muted);
    font-weight: 600;
  }
  .side button.on { background: rgba(123, 97, 255, 0.12); color: var(--yellow); }
  .dock { display: none; }
  .composer { bottom: 0; }
}

.toplink {
  background: none;
  border: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 10px;
}
.toplink:hover { color: var(--ink); }
.lp { max-width: 1120px; margin: 0 auto; padding: 0 28px 64px; }
.lp .lede { max-width: 54ch; font-size: 18px; line-height: 1.55; color: var(--muted); }
.lp-sec { padding: 56px 0 8px; border-top: 1px solid var(--line); }
.lp-sec h2 { font-size: clamp(26px, 3vw, 36px); margin: 0 0 12px; }
.lp-lead { color: var(--muted); font-size: 17px; max-width: 62ch; margin: 0 0 28px; line-height: 1.55; }
.g2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.g3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.g4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.perk {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
}
.perk h3 { margin: 0 0 8px; font-size: 18px; }
.perk p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.5; }
.checks { margin: 0; padding: 0; list-style: none; }
.checks li {
  position: relative;
  padding: 10px 0 10px 28px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.checks li:last-child { border-bottom: 0; }
.checks li::before { content: "✓"; position: absolute; left: 0; color: var(--yellow); font-weight: 700; }
.faq details {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 4px 20px;
  margin-bottom: 8px;
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  padding: 16px 0;
}
.faq details p { color: var(--muted); margin: 0 0 16px; line-height: 1.55; }
.cta-band {
  background: var(--yellow);
  color: #fff;
  border-radius: 24px;
  padding: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 48px;
}
.cta-band h2 { margin: 0 0 8px; color: #fff; }
.cta-band p { margin: 0; color: rgba(255,255,255,0.85); }
.cta-band .btn { background: #16141c; color: #fff; border-color: #16141c; }
.lp-hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100dvh - 64px);
  padding: 28px 28px 72px;
  background:
    radial-gradient(1200px 600px at 12% -10%, rgba(123, 97, 255, 0.22), transparent 55%),
    radial-gradient(900px 520px at 92% 8%, rgba(255, 176, 210, 0.28), transparent 50%),
    radial-gradient(700px 400px at 70% 100%, rgba(123, 97, 255, 0.1), transparent 45%),
    #f7f4ff;
}
.hero-fx { position: absolute; inset: 0; pointer-events: none; }
.hero-gridlines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(22, 20, 28, 0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(22, 20, 28, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 50% 30%, #000 30%, transparent 78%);
}
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.55 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
}
.orb.o1 {
  width: 340px; height: 340px; left: -80px; top: 80px;
  background: rgba(123, 97, 255, 0.35);
  animation: orbDrift 9s ease-in-out infinite;
}
.orb.o2 {
  width: 280px; height: 280px; right: 8%; top: -40px;
  background: rgba(255, 140, 190, 0.32);
  animation: orbDrift 11s ease-in-out infinite reverse;
}
.orb.o3 {
  width: 220px; height: 220px; right: 22%; bottom: 8%;
  background: rgba(123, 97, 255, 0.2);
  animation: orbDrift 13s ease-in-out infinite;
}
@keyframes orbDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(18px, -22px) scale(1.08); }
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.hero-copy h1 {
  font-size: clamp(40px, 5.4vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.048em;
  font-weight: 700;
  margin: 0 0 18px;
  color: var(--ink);
  max-width: 11ch;
}
.hero-copy .hero-sub {
  font-size: clamp(22px, 2.4vw, 30px);
  color: var(--ink);
  margin: 0 0 14px;
}
.hero-copy .lede {
  color: #5c5868;
  max-width: 46ch;
  font-size: 17px;
  line-height: 1.55;
}
.kicker-caps { text-transform: uppercase; letter-spacing: 0.16em; font-size: 11px; color: var(--yellow); }
.hero-perks {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 540px;
}
.hero-perks li {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow: 0 8px 24px rgba(22, 20, 28, 0.05);
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  backdrop-filter: blur(10px);
}
.hero-perks li::before { content: none; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.hero-cta .btn {
  min-height: 48px;
  padding: 12px 22px;
  box-shadow: 0 12px 32px rgba(123, 97, 255, 0.35);
}
.auth-ways { display: grid; gap: 8px; margin: 18px 0 8px; }
.auth-way {
  width: 100%;
  min-height: 46px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 600;
}
.auth-way:hover { border-color: #c8c8d0; }
.or-line {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  margin: 16px 0 12px;
}
.or-line::before, .or-line::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
.halo-wrap {
  position: relative;
  padding: 28px 8px 36px;
  justify-self: end;
  width: min(100%, 420px);
}
.hero-ticket {
  position: absolute;
  inset: 18px auto auto 18px;
  width: 86%;
  height: 72%;
  border-radius: 28px;
  background: url("./../assets/img/w1.jpg") center/cover;
  transform: rotate(-8deg);
  box-shadow: 0 24px 50px rgba(22, 20, 28, 0.18);
  opacity: 0.92;
}
.halo-wrap::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 40px;
  background: radial-gradient(circle at 50% 40%, rgba(123, 97, 255, 0.45), rgba(123, 97, 255, 0.08) 55%, transparent 72%);
  filter: blur(16px);
  animation: haloPulse 2.8s ease-in-out infinite;
  pointer-events: none;
}
.hero-float {
  position: absolute;
  z-index: 3;
  background: rgba(255,255,255,0.9);
  border: 1px solid #fff;
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 32px rgba(22, 20, 28, 0.12);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  animation: floatY 4.5s ease-in-out infinite;
}
.hero-float.f1 { left: -12px; top: 28%; }
.hero-float.f2 { right: -8px; bottom: 18%; animation-delay: -1.4s; }
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes haloPulse {
  0%, 100% { opacity: 0.65; transform: scale(0.98); }
  50% { opacity: 1; transform: scale(1.03); }
}
.mock-chat {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,0.86);
  border-radius: 28px;
  padding: 18px;
  box-shadow: 0 30px 70px rgba(22, 20, 28, 0.16);
  border: 1px solid rgba(255,255,255,0.95);
  min-height: 400px;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(16px);
  transform: rotate(1.5deg);
}
.demo-feed { flex: 1; overflow: hidden; min-height: 240px; }
.demo-feed .bubble { animation: popIn 0.35s ease; }
@keyframes popIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}
.demo-typing {
  display: none;
  font-size: 12px;
  color: var(--muted);
  padding: 6px 2px 0;
}
.demo-typing.on { display: block; }
.live-dot { color: var(--ok); font-weight: 600; }
.map-page {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 20px 20px 96px;
}
.ya-map {
  height: 420px;
  border-radius: 20px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: #e8e8ee;
}
.ya-frame { width: 100%; height: 100%; border: 0; display: block; }
.pin-master {
  background: var(--yellow);
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(123, 97, 255, 0.25);
}
.pin-master.on { box-shadow: 0 0 0 8px rgba(123, 97, 255, 0.45); }
.pin-here {
  background: #16141c;
  color: #fff;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  display: grid;
  place-items: center;
}
.person.on-card { border: 1px solid var(--yellow); background: rgba(123, 97, 255, 0.06); }
.cal-board {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 16px 16px 12px;
  margin: 0 0 16px;
}
.cal-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 4px; }
.cal-toolbar h3 { margin: 0; font-size: 16px; }
.cal-nav { display: flex; gap: 6px; }
.cal-nav .ghost.sm { min-width: 36px; padding: 0; }
.cal-legend { display: flex; align-items: center; gap: 6px; margin: 0 0 12px; }
.cal-legend .cal-dot { position: static; display: inline-block; vertical-align: middle; }
.cal-months { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cal-months.n1 { grid-template-columns: 1fr; }
.cal-month-name { font-weight: 700; font-size: 14px; margin-bottom: 8px; text-transform: capitalize; }
.cal-week, .cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.cal-week span {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  padding: 4px 0 8px;
  text-transform: lowercase;
}
.cal-cell {
  position: relative;
  aspect-ratio: 1;
  border: 0;
  background: transparent;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-height: 34px;
  padding: 0;
}
.cal-cell.empty { pointer-events: none; }
.cal-num { font-size: 13px; font-weight: 600; line-height: 1; }
.cal-cell.off { color: #c5c5cc; }
.cal-cell.off .cal-num { font-weight: 500; }
.cal-cell.today { box-shadow: inset 0 0 0 1.5px var(--ink); }
.cal-cell.on { background: rgba(123, 97, 255, 0.12); color: var(--ink); }
.cal-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: block;
}
.cal-dot.free { background: #2f9e62; }
.cal-dot.busy { background: #e3a018; }
.cal-dot.full { width: 8px; height: 8px; background: #4a38c9; }
.cal-cell.full { background: rgba(123, 97, 255, 0.08); }
@media (max-width: 520px) {
  .cal-months { grid-template-columns: 1fr; gap: 18px; }
}
@media (max-width: 860px) {
  .map-page { grid-template-columns: 1fr; padding: 16px 16px 108px; }
  .ya-map { height: 260px; }
  .hero-note { color: var(--muted); }
  .hero-inner { grid-template-columns: 1fr; gap: 28px; }
  .lp-hero { min-height: 0; padding: 12px 16px 40px; }
  .hero-copy h1 { max-width: none; font-size: clamp(32px, 10vw, 44px); }
  .halo-wrap { justify-self: stretch; width: 100%; padding: 8px 0 24px; }
  .hero-ticket { display: none; }
  .mock-chat { transform: none; min-height: 340px; }
  .hero-float.f1 { left: 8px; }
  .hero-float.f2 { right: 8px; }
  .topbar { height: auto; min-height: 64px; padding: 10px 16px; flex-wrap: wrap; }
}
.lp-hero .kicker { color: var(--yellow); }
.lp-hero .ghost { color: var(--ink); border-color: var(--line); }
.stats-row {
  display: flex;
  gap: 28px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.stats-row b { display: block; font-size: 22px; color: #fff; }
.stats-row span { font-size: 13px; color: rgba(255,255,255,0.7); }
.mock-head { display: flex; justify-content: space-between; margin-bottom: 12px; font-size: 13px; color: var(--muted); }
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.plan {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
}
.plan.pop { border-color: var(--yellow); box-shadow: 0 0 0 1px var(--yellow); }
.plan .sum { font-size: 32px; font-weight: 800; letter-spacing: -0.04em; margin: 8px 0; }
.plan .sum span { color: var(--yellow); }
.blog-card {
  display: block;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
}
.blog-card h2, .blog-card h3 { margin: 8px 0; font-size: 18px; }
.blog-card p { margin: 0; color: var(--muted); }
.blog-wrap { padding-top: 32px; }
.blog-wrap.post { max-width: 720px; }
.blog-wrap.post p { font-size: 17px; line-height: 1.65; color: #3a3a42; }
.blog-list { display: grid; gap: 12px; }
.site-footer a { color: var(--muted); }
.admin-page { padding-bottom: 64px; }
.admin-tabs {
  display: flex;
  gap: 8px;
  margin: 16px 0;
}
.admin-tabs a {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 600;
  font-size: 14px;
  color: var(--muted);
}
.admin-tabs a.on { background: #fff; color: var(--ink); border-color: var(--yellow); }
.admin-scroll { overflow: auto; background: #fff; border: 1px solid var(--line); border-radius: 16px; }
.admin-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.admin-table th, .admin-table td { padding: 10px 12px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: middle; white-space: nowrap; }
.admin-table th { color: var(--muted); font-weight: 600; background: #fafafa; }
.admin-table .avatar { width: 36px; height: 36px; }
@media (max-width: 860px) {
  .g2, .g3, .g4, .plans, .cta-band { grid-template-columns: 1fr; display: grid; }
  .cta-band { display: grid; }
  .lp { padding: 0 16px 48px; }
  .toplink { display: none; }
}
.tiki-rec {
  background: #f3efff;
  border: 1px solid #d9d0ff;
  border-radius: 16px;
  padding: 16px;
  margin: 0 0 16px;
}
.tiki-rec p { margin: 8px 0 0; color: var(--muted); font-size: 14px; }
.was-price {
  color: var(--muted);
  text-decoration: line-through;
  font-weight: 500;
  margin-right: 6px;
}
.sale-chip {
  display: inline-block;
  margin-top: 12px;
  background: #efe9ff;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
}
