/* Tviy Slot: shared styles (landing, cabinet, terms) */
:root {
  --ink: #090e1a;
  --ink-2: #0f1728;
  --ink-3: #16213a;
  --on-ink: #e9eef7;
  --on-ink-muted: #9aa7bd;
  --mint: #3ddc97;
  --mint-2: #1fbf80;
  --mint-ink: #04150d;
  --amber: #ffc45c;

  --bg: #f5f2ea;
  --surface: #ffffff;
  --surface-2: #faf8f3;
  --text: #121826;
  --muted: #586274;
  --line: #e3ddd0;
  --accent: #0c8a60;
  --accent-soft: #e2f4ec;
  --warn: #8a5300;
  --warn-soft: #fdf0d8;
  --danger: #b0322b;
  --danger-soft: #fbe5e3;
  --ok: #17703b;
  --ok-soft: #e1f3e6;

  --radius: 18px;
  --shadow: 0 1px 2px rgba(15, 20, 30, .05), 0 12px 32px -12px rgba(15, 20, 30, .16);
  --display: "Unbounded", system-ui, -apple-system, "Segoe UI", sans-serif;
  --body: "Onest", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color-scheme: light;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0c111d;
    --surface: #131a29;
    --surface-2: #101624;
    --text: #e9eef7;
    --muted: #9aa7bd;
    --line: #243049;
    --accent: #3ddc97;
    --accent-soft: #13352a;
    --warn: #ffc45c;
    --warn-soft: #3a2c12;
    --danger: #ff8f86;
    --danger-soft: #3d1c1a;
    --ok: #7fe3a6;
    --ok-soft: #133321;
    --shadow: none;
    color-scheme: dark;
  }
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--text); font: 17px/1.6 var(--body); -webkit-font-smoothing: antialiased; }
a { color: var(--accent); }
img, svg { max-width: 100%; }
h1, h2, h3 { font-family: var(--display); font-weight: 600; line-height: 1.12; letter-spacing: -.02em; margin: 0 0 .5em; }
h2 { font-size: clamp(25px, 3.4vw, 40px); }
h3 { font-size: 18px; letter-spacing: -.01em; }
p { margin: 0 0 1em; }
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 16px; }
@media (min-width: 720px) { .wrap { padding: 0 28px; } }
.muted { color: var(--muted); }
.small { font-size: 14px; }
.hidden { display: none !important; }
.center { text-align: center; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* ---------- buttons ---------- */
.btn { position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 48px; padding: 0 22px; border-radius: 14px; border: 1px solid transparent; font: 600 16px/1 var(--body); text-decoration: none; cursor: pointer; overflow: hidden; transition: transform .15s ease, box-shadow .2s ease, background .2s ease; }
.btn:active { transform: scale(.98); }
.btn.primary, .btn:not(.ghost):not(.danger):not(.on-dark-ghost) { background: linear-gradient(180deg, var(--mint), var(--mint-2)); color: var(--mint-ink); box-shadow: 0 8px 24px -8px rgba(61, 220, 151, .65), inset 0 1px 0 rgba(255,255,255,.35); }
.btn.primary::after, .btn:not(.ghost):not(.danger):not(.on-dark-ghost)::after { content: ""; position: absolute; inset: 0; background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,.45) 50%, transparent 70%); transform: translateX(-120%); transition: transform .7s ease; }
.btn.primary:hover::after, .btn:not(.ghost):not(.danger):not(.on-dark-ghost):hover::after { transform: translateX(120%); }
.btn.primary:hover, .btn:not(.ghost):not(.danger):not(.on-dark-ghost):hover { color: var(--mint-ink); box-shadow: 0 12px 30px -8px rgba(61, 220, 151, .8), inset 0 1px 0 rgba(255,255,255,.35); }
.btn.big { min-height: 56px; padding: 0 28px; font-size: 17px; border-radius: 16px; }
.btn.ghost { background: transparent; color: var(--text); border-color: var(--line); }
.btn.ghost:hover { background: var(--surface); }
.btn.on-dark-ghost { background: rgba(255,255,255,.06); color: var(--on-ink); border-color: rgba(255,255,255,.16); }
.btn.on-dark-ghost:hover { background: rgba(255,255,255,.12); color: #fff; }
.btn.danger { background: transparent; color: var(--danger); border-color: var(--line); }
.btn.danger:hover { background: var(--danger-soft); }
.btn[disabled] { opacity: .45; cursor: not-allowed; box-shadow: none; }
.btn svg { width: 20px; height: 20px; flex: none; }
:focus-visible { outline: 2px solid var(--mint); outline-offset: 3px; }

/* ---------- top bar ---------- */
.top { position: sticky; top: 0; z-index: 30; background: rgba(9, 14, 26, .93); backdrop-filter: saturate(160%) blur(14px); -webkit-backdrop-filter: saturate(160%) blur(14px); border-bottom: 1px solid rgba(255,255,255,.08); color: var(--on-ink); }
.top .wrap { display: flex; align-items: center; justify-content: space-between; gap: 12px; height: 64px; }
.logo { display: inline-flex; align-items: center; gap: 10px; font: 600 17px/1 var(--display); letter-spacing: -.02em; color: #fff; text-decoration: none; }
.logo:hover { color: #fff; }
.logo .mark { width: 32px; height: 32px; border-radius: 10px; display: grid; place-items: center; background: linear-gradient(135deg, var(--mint), #13a86f); box-shadow: 0 0 0 1px rgba(255,255,255,.12) inset, 0 6px 18px -6px rgba(61,220,151,.7); }
.logo .mark svg { width: 18px; height: 18px; }
.nav { display: flex; align-items: center; gap: 18px; }
.nav a:not(.btn) { color: var(--on-ink-muted); text-decoration: none; font-size: 15px; }
.nav a:not(.btn):hover { color: #fff; }
.nav .btn { min-height: 40px; padding: 0 16px; font-size: 15px; border-radius: 12px; }
@media (max-width: 760px) { .nav a.hide-sm { display: none; } }

/* ---------- dark hero ---------- */
.dark { position: relative; background: var(--ink); color: var(--on-ink); overflow: hidden; isolation: isolate; }
.dark .muted { color: var(--on-ink-muted); }
.aurora { position: absolute; inset: -20% -10% auto -10%; height: 140%; z-index: -2; pointer-events: none; }
.aurora i { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .5; will-change: transform; }
.aurora i:nth-child(1) { width: 560px; height: 560px; left: 55%; top: 0; background: #16a974; animation: drift1 22s ease-in-out infinite alternate; }
.aurora i:nth-child(2) { width: 460px; height: 460px; left: 5%; top: 30%; background: #1b3f8a; opacity: .55; animation: drift2 26s ease-in-out infinite alternate; }
.aurora i:nth-child(3) { width: 260px; height: 260px; left: 42%; top: 55%; background: #c98b1e; opacity: .28; animation: drift3 19s ease-in-out infinite alternate; }
@keyframes drift1 { to { transform: translate(-120px, 80px) scale(1.15); } }
@keyframes drift2 { to { transform: translate(140px, -60px) scale(1.1); } }
@keyframes drift3 { to { transform: translate(-80px, -90px) scale(1.25); } }
.gridbg { position: absolute; inset: 0; z-index: -1; pointer-events: none; background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px); background-size: 56px 56px; -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 40%, transparent 100%); mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 40%, transparent 100%); }
.grain { position: absolute; inset: 0; z-index: -1; pointer-events: none; opacity: .09; mix-blend-mode: overlay; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }

.hero { padding: 36px 0 72px; }
.hero .grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr); gap: 56px; align-items: start; }
@media (max-width: 980px) { .hero .grid { grid-template-columns: minmax(0, 1fr); gap: 36px; } }
.flag { display: inline-flex; align-items: center; gap: 8px; padding: 7px 12px; border-radius: 999px; background: rgba(255, 196, 92, .12); color: var(--amber); border: 1px solid rgba(255, 196, 92, .28); font-size: 13px; font-weight: 600; }
.flag::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 0 4px rgba(255,196,92,.18); }
.hero h1 { font-size: clamp(30px, 4.3vw, 50px); margin: 18px 0 16px; color: #fff; }
.hero h1 .hl { background: linear-gradient(90deg, var(--mint), #9ff0cd 60%, var(--mint)); -webkit-background-clip: text; background-clip: text; color: transparent; background-size: 200% 100%; animation: shimmer 6s linear infinite; }
@keyframes shimmer { to { background-position: -200% 0; } }
.hero .lead { font-size: clamp(17px, 1.6vw, 19px); color: #c6d0e0; max-width: 580px; }
.trust { list-style: none; padding: 0; margin: 18px 0 22px; display: flex; flex-wrap: wrap; gap: 10px 18px; }
.trust li { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: #d5dde9; }
.trust svg { width: 18px; height: 18px; color: var(--mint); flex: none; }

/* entrance */
.rise { opacity: 0; transform: translateY(18px); animation: rise .8s cubic-bezier(.2,.7,.2,1) forwards; }
.rise.d1 { animation-delay: .08s; } .rise.d2 { animation-delay: .18s; } .rise.d3 { animation-delay: .28s; } .rise.d4 { animation-delay: .4s; } .rise.d5 { animation-delay: .55s; }
@keyframes rise { to { opacity: 1; transform: none; } }

/* ---------- quiz ---------- */
.quiz { background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.13); border-radius: 22px; padding: 20px; backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); box-shadow: 0 30px 60px -30px rgba(0,0,0,.6); max-width: 560px; }
.quiz .qhead { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 14px; font-size: 13px; color: var(--on-ink-muted); }
.quiz .bar { display: flex; gap: 6px; flex: 1; max-width: 180px; }
.quiz .bar i { flex: 1; height: 4px; border-radius: 4px; background: rgba(255,255,255,.14); transition: background .3s; }
.quiz .bar i.on { background: var(--mint); box-shadow: 0 0 12px rgba(61,220,151,.7); }
.quiz .q { font: 600 19px/1.3 var(--display); letter-spacing: -.01em; color: #fff; margin: 0 0 14px; }
.opts { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (max-width: 420px) { .opts { grid-template-columns: 1fr; } }
.opt { display: flex; align-items: center; gap: 12px; min-height: 54px; padding: 12px 14px; border-radius: 14px; border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.04); color: #eef3fa; font: 500 16px/1.25 var(--body); text-align: left; cursor: pointer; transition: border-color .2s, background .2s, transform .15s; }
.opt:hover { border-color: rgba(61,220,151,.7); background: rgba(61,220,151,.08); }
.opt:active { transform: scale(.985); }
.opt .ring { width: 18px; height: 18px; border-radius: 50%; border: 2px solid rgba(255,255,255,.35); flex: none; position: relative; }
.opt:hover .ring { border-color: var(--mint); }
.opt small { display: block; color: var(--on-ink-muted); font-size: 13px; margin-top: 2px; }
.qstep { animation: qin .35s ease; }
@keyframes qin { from { opacity: 0; transform: translateX(14px); } to { opacity: 1; transform: none; } }
.qback { background: none; border: 0; color: var(--on-ink-muted); font: inherit; font-size: 14px; cursor: pointer; padding: 0; }
.qback:hover { color: #fff; }
.qdone .ok { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; }
.qdone .ok .tick { width: 38px; height: 38px; border-radius: 12px; display: grid; place-items: center; background: rgba(61,220,151,.16); color: var(--mint); flex: none; }
.qdone p { color: #cdd6e4; font-size: 15px; }
.qdone .btns { display: flex; flex-wrap: wrap; gap: 10px; }
.qfine { margin-top: 12px; font-size: 13px; color: var(--on-ink-muted); }
.qfine a { color: #cfe; }

/* ---------- hunt demo ---------- */
.demo { position: relative; border-radius: 24px; padding: 18px; background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03)); border: 1px solid rgba(255,255,255,.13); box-shadow: 0 40px 80px -40px rgba(0,0,0,.8), 0 0 0 1px rgba(0,0,0,.2); overflow: hidden; }
.demo .chrome { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.demo .dots { display: flex; gap: 6px; }
.demo .dots i { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.18); }
.demo .title { font-size: 13px; color: var(--on-ink-muted); }
.demo .live { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: var(--mint); letter-spacing: .04em; text-transform: uppercase; }
.demo .live::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--mint); animation: blink 1.2s ease-in-out infinite; }
@keyframes blink { 50% { opacity: .25; } }
.demo .status { display: flex; align-items: center; gap: 10px; padding: 11px 13px; border-radius: 12px; background: rgba(0,0,0,.25); border: 1px solid rgba(255,255,255,.08); font-size: 14px; margin-bottom: 14px; }
.demo .spin { width: 16px; height: 16px; border-radius: 50%; border: 2px solid rgba(255,255,255,.18); border-top-color: var(--mint); animation: spin .8s linear infinite; flex: none; }
.demo.found .spin, .demo.booked .spin { animation: none; border-color: var(--mint); background: var(--mint); }
@keyframes spin { to { transform: rotate(360deg); } }
.demo .count { margin-left: auto; color: var(--on-ink-muted); font-variant-numeric: tabular-nums; white-space: nowrap; }
.demo .week { display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: var(--on-ink-muted); margin-bottom: 10px; }
.demo .cal { position: relative; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 8px; }
.demo .day { font-size: 12px; color: var(--on-ink-muted); text-align: center; padding-bottom: 2px; }
.demo .chip { position: relative; height: 40px; border-radius: 10px; display: grid; place-items: center; font-size: 13px; font-variant-numeric: tabular-nums; color: rgba(233,238,247,.38); background: repeating-linear-gradient(135deg, rgba(255,255,255,.05) 0 6px, rgba(255,255,255,.025) 6px 12px); border: 1px solid rgba(255,255,255,.07); transition: all .35s ease; }
.demo .chip.flash { color: #fff; background: rgba(61,220,151,.25); border-color: rgba(61,220,151,.6); }
.demo .chip.free { color: var(--mint-ink); background: var(--mint); border-color: var(--mint); font-weight: 700; box-shadow: 0 0 0 0 rgba(61,220,151,.7); animation: pulse 1s ease-out infinite; }
.demo .chip.pick { transform: scale(.92); }
.demo .chip.done { color: var(--mint-ink); background: var(--mint); border-color: var(--mint); font-weight: 700; animation: none; box-shadow: 0 0 24px rgba(61,220,151,.6); }
@keyframes pulse { to { box-shadow: 0 0 0 14px rgba(61,220,151,0); } }
.demo .scan { position: absolute; top: 20px; bottom: 0; width: 70px; left: -70px; background: linear-gradient(90deg, transparent, rgba(61,220,151,.22), transparent); border-right: 1px solid rgba(61,220,151,.55); pointer-events: none; opacity: 0; }
.demo.scanning .scan { opacity: 1; animation: scan 1.8s linear infinite; }
@keyframes scan { to { left: 100%; } }
.demo .toast { position: absolute; left: 18px; right: 18px; bottom: 18px; display: flex; gap: 12px; align-items: center; padding: 14px; border-radius: 16px; background: rgba(12, 20, 35, .92); border: 1px solid rgba(61,220,151,.45); box-shadow: 0 20px 40px -10px rgba(0,0,0,.7), 0 0 30px -8px rgba(61,220,151,.45); transform: translateY(130%); opacity: 0; transition: transform .6s cubic-bezier(.2,.9,.2,1.1), opacity .4s; }
.demo.booked .toast { transform: none; opacity: 1; }
.demo .toast .ic { width: 42px; height: 42px; border-radius: 12px; background: var(--mint); color: var(--mint-ink); display: grid; place-items: center; flex: none; }
.demo .toast b { display: block; color: #fff; font-size: 15px; }
.demo .toast span { display: block; font-size: 14px; color: #cfe; }
.demo .toast small { display: block; font-size: 12px; color: var(--on-ink-muted); }
.demo-cap { margin: 12px 0 0; font-size: 12px; color: var(--on-ink-muted); text-align: center; }
.demo-wrap { position: relative; }
.demo-wrap::before { content: ""; position: absolute; inset: 10% -6% -6% 10%; background: radial-gradient(closest-side, rgba(61,220,151,.28), transparent); filter: blur(30px); z-index: -1; }

/* ---------- light sections ---------- */
.sec { padding: 88px 0; }
.sec.tight { padding: 64px 0; }
.sec.alt { background: var(--surface-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.eyebrow::before { content: ""; width: 18px; height: 2px; border-radius: 2px; background: currentColor; }
.sec-head { max-width: 720px; margin-bottom: 40px; }
.sec-head p { color: var(--muted); font-size: 18px; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.s1 { transition-delay: .08s; } .reveal.s2 { transition-delay: .16s; } .reveal.s3 { transition-delay: .24s; }

/* steps timeline */
.steps { position: relative; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
@media (max-width: 960px) { .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .steps { grid-template-columns: minmax(0, 1fr); } }
.steps .line { position: absolute; left: 28px; right: calc((100% - 54px) / 4 - 28px); top: 27px; height: 2px; background: var(--line); overflow: hidden; }
.steps .line::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--mint-2), var(--mint)); transform: scaleX(0); transform-origin: left; transition: transform 1.6s cubic-bezier(.3,.7,.2,1) .2s; }
.steps.in .line::after { transform: scaleX(1); }
@media (max-width: 960px) { .steps .line { display: none; } }
.step { position: relative; }
.step .num { position: relative; z-index: 1; width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; font: 600 20px/1 var(--display); background: var(--ink); color: var(--mint); box-shadow: 0 10px 24px -10px rgba(9,14,26,.6); margin-bottom: 18px; }
.step p { color: var(--muted); font-size: 16px; margin: 0; }
.step .tag { display: inline-block; margin-top: 10px; font-size: 13px; font-weight: 600; color: var(--accent); background: var(--accent-soft); padding: 3px 10px; border-radius: 999px; }

/* compare */
.compare { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 18px; }
@media (max-width: 760px) { .compare { grid-template-columns: minmax(0, 1fr); } }
.cmp { border-radius: 22px; padding: 28px; }
.cmp.self { background: var(--surface); border: 1px solid var(--line); }
.cmp.bot { background: var(--ink); color: var(--on-ink); position: relative; overflow: hidden; }
.cmp.bot::before { content: ""; position: absolute; width: 360px; height: 360px; right: -120px; top: -140px; border-radius: 50%; background: radial-gradient(closest-side, rgba(61,220,151,.35), transparent); }
.cmp h3 { font-size: 20px; margin-bottom: 18px; }
.cmp ul { list-style: none; margin: 0; padding: 0; position: relative; }
.cmp li { display: flex; gap: 12px; margin-bottom: 14px; align-items: flex-start; }
.cmp li svg { width: 22px; height: 22px; flex: none; margin-top: 1px; }
.cmp.self li svg { color: #c2542f; }
.cmp.bot li svg { color: var(--mint); }
.cmp.self li { color: var(--muted); }

/* pricing */
.prices { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: 18px; align-items: stretch; }
@media (max-width: 760px) { .prices { grid-template-columns: minmax(0, 1fr); } }
@property --ang { syntax: "<angle>"; inherits: false; initial-value: 0deg; }
.price { position: relative; border-radius: 24px; padding: 30px; background: var(--surface); border: 1px solid var(--line); }
.price.hot { border: 2px solid transparent; background: linear-gradient(var(--surface), var(--surface)) padding-box, conic-gradient(from var(--ang), var(--mint), #1b3f8a, var(--amber), var(--mint)) border-box; animation: spinb 6s linear infinite; box-shadow: 0 24px 60px -30px rgba(12,138,96,.55); }
@keyframes spinb { to { --ang: 360deg; } }
.price .tag { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: var(--accent); background: var(--accent-soft); padding: 4px 12px; border-radius: 999px; margin-bottom: 14px; }
.price .amount { font: 600 clamp(44px, 6vw, 60px)/1 var(--display); letter-spacing: -.03em; margin: 4px 0 10px; }
.price .amount small { font: 500 16px/1 var(--body); color: var(--muted); letter-spacing: 0; }
.price .split { display: flex; gap: 10px; margin: 16px 0; }
.price .split div { flex: 1; border-radius: 14px; padding: 12px 14px; background: var(--surface-2); border: 1px solid var(--line); }
.price .split b { display: block; font: 600 20px/1.2 var(--display); }
.price .split span { font-size: 13px; color: var(--muted); }
.seats { display: flex; align-items: center; gap: 10px; font-size: 15px; }
.seats .pips { display: flex; gap: 5px; }
.seats .pips i { width: 12px; height: 12px; border-radius: 4px; background: var(--line); }
.seats .pips i.on { background: var(--mint); box-shadow: 0 0 10px rgba(61,220,151,.6); }
.refunds { list-style: none; padding: 0; margin: 28px 0 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
@media (max-width: 860px) { .refunds { grid-template-columns: minmax(0, 1fr); } }
.refunds li { border-radius: 18px; padding: 18px; background: var(--surface); border: 1px solid var(--line); font-size: 15px; color: var(--muted); }
.refunds li b { display: block; color: var(--text); font-size: 16px; margin-bottom: 6px; }
.refunds .pct { font: 600 26px/1 var(--display); color: var(--accent); display: block; margin-bottom: 10px; }

/* honesty */
.duo { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 18px; }
@media (max-width: 760px) { .duo { grid-template-columns: minmax(0, 1fr); } }
.card { border-radius: 22px; padding: 26px; background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow); }
.card.warn { background: var(--warn-soft); border-color: transparent; box-shadow: none; }
.card .ic { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: var(--accent-soft); color: var(--accent); margin-bottom: 16px; }
.card.warn .ic { background: rgba(255,196,92,.25); color: var(--warn); }
.card .ic svg { width: 22px; height: 22px; }
.card.warn h3 { color: var(--warn); }
.list { margin: 0; padding: 0; list-style: none; }
.list li { position: relative; padding-left: 22px; margin-bottom: 12px; font-size: 16px; }
.list li::before { content: ""; position: absolute; left: 2px; top: .62em; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.card.warn .list li::before { background: var(--warn); }

/* after booking */
.after { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 40px; align-items: center; }
@media (max-width: 860px) { .after { grid-template-columns: minmax(0, 1fr); } }
.chat { border-radius: 26px; padding: 18px; background: linear-gradient(160deg, #0f1c33, #0a1222); box-shadow: 0 40px 80px -40px rgba(9,14,26,.8); }
.chat .hdr { display: flex; align-items: center; gap: 10px; padding: 4px 6px 14px; border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: 14px; color: #fff; font-weight: 600; font-size: 15px; }
.chat .hdr .av { width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(135deg, var(--mint), #13a86f); display: grid; place-items: center; }
.chat .hdr .av svg { width: 16px; height: 16px; }
.chat .hdr small { display: block; color: var(--on-ink-muted); font-weight: 400; font-size: 12px; }
.bubble { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.08); border-radius: 18px 18px 18px 6px; padding: 14px 16px; color: #e6ecf5; font-size: 15px; line-height: 1.5; }
.bubble b { color: #fff; }
.bubble .ln { opacity: 0; transform: translateY(8px); transition: opacity .5s, transform .5s; }
.chat.in .bubble .ln { opacity: 1; transform: none; }
.chat.in .bubble .ln:nth-child(2) { transition-delay: .25s; } .chat.in .bubble .ln:nth-child(3) { transition-delay: .5s; } .chat.in .bubble .ln:nth-child(4) { transition-delay: .75s; } .chat.in .bubble .ln:nth-child(5) { transition-delay: 1s; } .chat.in .bubble .ln:nth-child(6) { transition-delay: 1.25s; } .chat.in .bubble .ln:nth-child(7) { transition-delay: 1.5s; }
.bubble .ln + .ln { margin-top: 8px; }
.bubble .tickrow { display: flex; gap: 8px; color: #c9d4e3; font-size: 14px; }
.bubble .tickrow::before { content: "✓"; color: var(--mint); font-weight: 700; }
.chat .meta { text-align: right; font-size: 12px; color: var(--on-ink-muted); margin-top: 6px; }

/* faq */
.faq { max-width: 860px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 18px; padding: 20px 0; font-weight: 600; font-size: 18px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .pm { width: 30px; height: 30px; border-radius: 10px; border: 1px solid var(--line); display: grid; place-items: center; flex: none; transition: transform .3s, background .3s; }
.faq summary .pm::before { content: "+"; font-size: 20px; line-height: 1; color: var(--accent); }
.faq details[open] summary .pm { transform: rotate(45deg); background: var(--accent-soft); }
.faq details p { color: var(--muted); margin: 0 0 20px; max-width: 760px; animation: qin .35s ease; }

/* final cta */
.final { padding: 88px 0; text-align: center; }
.final h2 { color: #fff; font-size: clamp(28px, 4.4vw, 48px); }
.final p { color: #c6d0e0; font-size: 18px; max-width: 620px; margin: 0 auto 28px; }
.final .btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

footer { background: var(--ink); color: var(--on-ink-muted); font-size: 14px; padding: 28px 0 36px; border-top: 1px solid rgba(255,255,255,.08); }
footer .wrap { display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between; }
footer a { color: #cfe; }

/* sticky mobile bar */
.stick { position: fixed; left: 12px; right: 12px; bottom: calc(12px + env(safe-area-inset-bottom)); z-index: 40; display: none; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 10px 10px 16px; border-radius: 18px; background: rgba(9,14,26,.9); color: var(--on-ink); border: 1px solid rgba(255,255,255,.12); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); box-shadow: 0 20px 40px -12px rgba(0,0,0,.6); transform: translateY(160%); transition: transform .45s cubic-bezier(.2,.8,.2,1); }
.stick.show { transform: none; }
.stick b { display: block; font-size: 15px; color: #fff; }
.stick span { font-size: 12px; color: var(--on-ink-muted); }
.stick .btn { min-height: 44px; padding: 0 18px; }
@media (max-width: 760px) { .stick { display: flex; } body.has-stick { padding-bottom: 84px; } }

/* ---------- cabinet ---------- */
.cab { padding-top: 36px; padding-bottom: 72px; }
.cab h1 { font-size: clamp(26px, 4vw, 36px); }
.panel { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; margin-bottom: 16px; box-shadow: var(--shadow); transition: opacity .3s; }
@media (max-width: 480px) { .panel { padding: 20px 16px; } }
.panel h2 { font-size: 20px; display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.panel h2 .num { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 10px; background: var(--ink); color: var(--mint); font: 600 15px/1 var(--display); flex: none; }
.panel.done h2 .num { background: var(--mint); color: var(--mint-ink); }
.panel.locked { opacity: .5; }
.panel.locked .body { pointer-events: none; }
.status { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
@media (max-width: 640px) { .status { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.status > div { border-radius: 14px; padding: 12px 14px; background: var(--surface-2); border: 1px solid var(--line); min-width: 0; }
.status .k { font-size: 13px; color: var(--muted); }
.status .v { font-weight: 700; font-size: 17px; overflow-wrap: anywhere; }
.pill { display: inline-block; padding: 3px 10px; border-radius: 999px; font-size: 13px; font-weight: 700; background: var(--accent-soft); color: var(--accent); }
label.f { display: block; font-weight: 600; margin: 18px 0 6px; font-size: 15px; }
.hint { font-size: 13px; color: var(--muted); margin-top: 4px; }
input[type=email], input[type=date], input[type=time], select { width: 100%; max-width: 440px; min-height: 48px; padding: 10px 14px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface-2); color: var(--text); font: inherit; font-size: 16px; }
input:focus, select:focus { outline: 2px solid var(--mint); outline-offset: 1px; }
.row { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.win { display: flex; flex-wrap: nowrap; gap: 6px; align-items: center; margin-bottom: 8px; max-width: 440px; }
.win input[type=time] { width: auto; flex: 1 1 100px; min-width: 0; max-width: 160px; padding: 8px; }
.win .chip { flex: none; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { border: 1px solid var(--line); background: var(--surface-2); color: var(--text); border-radius: 999px; padding: 7px 13px; font: inherit; font-size: 14px; cursor: pointer; }
.chip:hover { border-color: var(--accent); }
.chip[disabled] { opacity: .45; cursor: not-allowed; }
.radios label { display: flex; gap: 12px; align-items: flex-start; padding: 12px 14px; border: 1px solid var(--line); border-radius: 14px; margin-bottom: 8px; cursor: pointer; max-width: 560px; transition: border-color .2s, background .2s; }
.radios label:has(input:checked) { border-color: var(--accent); background: var(--accent-soft); }
.radios input { margin-top: 4px; accent-color: var(--accent); }
.radios .t { font-weight: 600; }
.radios .d { font-size: 13px; color: var(--muted); }
.disclosure { white-space: pre-wrap; background: var(--surface-2); border: 1px solid var(--line); border-radius: 14px; padding: 16px; max-height: 340px; overflow: auto; font-size: 15px; }
.check { display: flex; gap: 10px; align-items: flex-start; margin: 14px 0; cursor: pointer; }
.check input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--accent); flex: none; }
.msg { margin-top: 12px; padding: 11px 14px; border-radius: 12px; font-size: 15px; display: none; }
.msg.show { display: block; }
.msg.ok { background: var(--ok-soft); color: var(--ok); }
.msg.err { background: var(--danger-soft); color: var(--danger); }
.msg.info { background: var(--accent-soft); color: var(--accent); }
.booked { background: var(--ink); color: var(--on-ink); border: 1px solid rgba(61,220,151,.4); position: relative; overflow: hidden; }
.booked::before { content: ""; position: absolute; width: 320px; height: 320px; right: -100px; top: -120px; border-radius: 50%; background: radial-gradient(closest-side, rgba(61,220,151,.35), transparent); }
.booked h2 { color: var(--mint); }
.booked .big { font: 600 26px/1.2 var(--display); color: #fff; position: relative; }
.booked p { position: relative; }
.booked .muted { color: var(--on-ink-muted); }
.cab-hero { padding: 34px 0 30px; }
.cab-hero h1 { color: #fff; margin: 0 0 6px; }
.cab-hero p { margin: 0; }
.login-box { max-width: 480px; margin: 12px auto 0; text-align: center; }
.login-box h1 { font-size: 28px; }
#tgWidget { min-height: 48px; margin: 18px 0; display: flex; justify-content: center; }

/* ---------- legal ---------- */
.doc { max-width: 780px; padding: 44px 16px 72px; margin: 0 auto; }
.doc h1 { font-size: clamp(28px, 4vw, 38px); }
.doc h2 { font-size: 21px; margin-top: 30px; }

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