:root {
  --bg: #f2f3f5;
  --bg-elev: #ffffff;
  --line: #d8dce3;
  --text: #2b2f36;
  --muted: #6b7280;
  --gold: #e10600;
  --on-gold: #ffffff;
  --coral: #b42318;
  --green: #1b8a4a;
  --max: 1120px;
  --font: "Outfit", system-ui, sans-serif;
  --display: "Fraunces", Georgia, serif;
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  color-scheme: light;
  background-color: var(--bg);
  background-image:
    radial-gradient(900px 420px at 50% -10%, rgba(225, 6, 0, 0.1), transparent 58%),
    linear-gradient(180deg, #f7f8fa 0%, #eceef1 100%);
  background-attachment: fixed;
  color: var(--text);
  font-family: var(--font);
}
a { color: inherit; }
img { max-width: 100%; }

.wrap { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 248, 250, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(43, 47, 54, 0.06);
}
.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  flex-shrink: 0;
}
.logo-mark {
  height: 40px;
  width: auto;
  display: block;
}
.logo-word {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
}
.logo-word b {
  color: var(--gold);
  font-weight: 600;
}
.nav-end {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}
.nav-links { display: flex; gap: 28px; align-items: center; font-size: 14px; }
.nav-links a { text-decoration: none; color: var(--muted); }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-login {
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
  white-space: nowrap;
}
.nav-login:hover { color: var(--text); }
.nav-signup { white-space: nowrap; }
.nav-links a.btn,
.nav-links a.btn:hover,
.nav-links a.btn.active,
.nav-signup.btn,
.nav-signup.btn:hover {
  color: #fff;
}
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg-elev);
  cursor: pointer;
  color: var(--text);
  padding: 0;
}
.nav-toggle-bars {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  position: relative;
}
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
}
.nav-toggle-bars::before { top: -6px; }
.nav-toggle-bars::after { top: 6px; }
.nav.is-open .nav-toggle-bars { background: transparent; }
.nav.is-open .nav-toggle-bars::before {
  top: 0;
  transform: rotate(45deg);
}
.nav.is-open .nav-toggle-bars::after {
  top: 0;
  transform: rotate(-45deg);
}
.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 48;
  border: 0;
  padding: 0;
  margin: 0;
  background: rgba(43, 47, 54, 0.28);
  cursor: pointer;
}
.nav-backdrop[hidden] { display: none; }
body.nav-open { overflow: hidden; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
}
.btn-gold { background: var(--gold); color: var(--on-gold); box-shadow: 0 6px 16px rgba(225, 6, 0, 0.32); }
.btn-ghost { border-color: var(--line); color: var(--text); background: var(--bg-elev); }
.btn-coral { background: var(--coral); color: #fff; }
.btn-wide { width: 100%; }

.hero { padding: 72px 0 48px; }
.home-banner {
  position: relative;
  isolation: isolate;
  min-height: min(78vh, 720px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.home-banner-room {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    url("shots/home-banner-dining.jpg") center / cover no-repeat;
}
.home-banner-room::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(247, 248, 250, 0.96) 0%, rgba(247, 248, 250, 0.78) 36%, rgba(247, 248, 250, 0.28) 58%, rgba(43, 47, 54, 0.22) 100%),
    linear-gradient(180deg, rgba(247, 248, 250, 0.2) 0%, transparent 28%, rgba(43, 47, 54, 0.18) 100%);
}
.home-banner-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 46%);
  gap: 32px;
  align-items: center;
  padding: 36px 0 48px;
  min-height: min(78vh, 720px);
}
.home-banner-copy {
  padding: 0;
  max-width: 36rem;
}
.home-banner-copy h1 { max-width: 14ch; }
.home-banner-copy .btn-ghost {
  background: rgba(255, 255, 255, 0.88);
}
.home-pos {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 420px;
  perspective: 1400px;
}
.home-pos-stage {
  width: min(100%, 420px);
  transform: rotateY(-14deg) rotateX(7deg);
  transform-style: preserve-3d;
  transition: transform 0.5s ease;
}
.home-banner:hover .home-pos-stage {
  transform: rotateY(-9deg) rotateX(5deg);
}
.home-pos-device {
  position: relative;
  filter: drop-shadow(0 28px 48px rgba(43, 47, 54, 0.38));
}
.home-pos-bezel {
  background: #1c1f24;
  border-radius: 18px;
  padding: 10px 10px 0;
  border: 1px solid #111;
}
.home-pos-screen {
  background: #f2f3f5;
  border-radius: 10px;
  min-height: 340px;
  overflow: hidden;
  color: var(--text);
}
.home-pos-chrome {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  background: #fff;
  font-size: 12px;
}
.home-pos-mark {
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: -0.03em;
}
.home-pos-mark b { color: var(--gold); font-weight: 600; }
.home-pos-live {
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 10px;
}
.home-pos-tickets {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px;
}
.home-pos-ticket {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
  box-shadow: 0 4px 12px rgba(43, 47, 54, 0.06);
}
.home-pos-ticket.is-new {
  animation: home-pos-in 0.55s ease;
}
.home-pos-ticket header {
  display: flex;
  align-items: center;
  gap: 8px;
}
.home-pos-num {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.03em;
}
.home-pos-token {
  background: var(--text);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 2px 7px;
  border-radius: 999px;
}
.home-pos-age {
  margin-left: auto;
  color: var(--muted);
  font-size: 12px;
}
.home-pos-meta {
  margin: 4px 0 8px;
  color: var(--muted);
  font-size: 12px;
}
.home-pos-ticket ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
}
.home-pos-ticket li {
  padding: 3px 0;
  border-top: 1px solid #eef0f3;
}
.home-pos-chin {
  height: 14px;
  background: #1c1f24;
  border-radius: 0 0 16px 16px;
}
.home-pos-neck {
  width: 42px;
  height: 36px;
  margin: 0 auto;
  background: linear-gradient(90deg, #2a2e35, #4a5058 40%, #2a2e35);
  clip-path: polygon(28% 0, 72% 0, 100% 100%, 0 100%);
}
.home-pos-base {
  width: 168px;
  height: 10px;
  margin: -2px auto 0;
  background: #2a2e35;
  border-radius: 999px;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.28);
}
@keyframes home-pos-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}
.home-pitch {
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.home-pitch-inner {
  padding: 32px 0 28px;
}
.home-pitch h2 {
  font-family: var(--display);
  font-size: clamp(26px, 4.2vw, 40px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.18;
  margin: 0 0 14px;
  max-width: 22ch;
}
.home-pitch-lead {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
  max-width: 58ch;
  margin: 0 0 18px;
}
.home-pitch-beats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.home-pitch-beats li {
  border: 1px solid #f0c4c0;
  background: #fff5f4;
  color: var(--coral);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.01em;
  padding: 8px 14px;
  border-radius: 999px;
}
.home-pitch-beats a {
  color: inherit;
  text-decoration: none;
}
.home-pitch-beats a:hover,
.home-pitch-beats a:focus-visible {
  text-decoration: underline;
}
.wrap > .stats { margin-top: 28px; }
.eyebrow {
  color: var(--coral);
  font-size: 12px;
  letter-spacing: 0.16em;
  font-weight: 600;
  margin: 0 0 14px;
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 0 18px;
  max-width: 16ch;
}
.hero.pillar { padding: 28px 0 36px; }
.hero.pillar h1 { max-width: 22ch; }
.hero p.lead {
  color: var(--muted);
  font-size: 18px;
  max-width: 42ch;
  margin: 0 0 28px;
  line-height: 1.55;
}
.hero.pillar p.lead { max-width: 54ch; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin: 48px 0 0;
}
.stat { background: var(--bg-elev); padding: 22px 20px; }
.stat b { display: block; font-size: 22px; font-family: var(--display); }
.stat span { color: var(--muted); font-size: 13px; }

.section { padding: 72px 0; }
.section h2 {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 500;
  margin: 0 0 12px;
  letter-spacing: -0.03em;
}
.section .sub { color: var(--muted); max-width: 52ch; margin: 0 0 36px; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  padding: 24px;
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(43, 47, 54, 0.06);
}
.card h3 { margin: 0 0 8px; font-size: 17px; }
.card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.5; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.ticket-mock {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: 10px;
  padding: 18px;
  font-size: 13px;
  box-shadow: 0 12px 32px rgba(43, 47, 54, 0.08);
}
.ticket-mock .row { display: flex; justify-content: space-between; margin-bottom: 10px; color: var(--muted); }
.ticket-mock .take { color: var(--gold); font-weight: 700; letter-spacing: 0.06em; font-size: 11px; }
.pill { background: #ffe8e6; color: var(--gold); padding: 2px 8px; border-radius: 999px; font-size: 12px; }
.item { margin: 14px 0; }
.item em { color: var(--gold); font-style: normal; }
.item .station { color: var(--muted); }
.qty { color: var(--coral); }
.ready { width: 100%; margin-top: 12px; background: var(--green); border: 0; color: #fff; padding: 10px; border-radius: 6px; font-weight: 600; }

.testimonials {
  padding: 64px 0 56px;
  text-align: center;
}
.testimonials h2 {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 500;
  letter-spacing: -0.03em;
  margin: 0 0 28px;
}
.testimonial {
  max-width: 46rem;
  margin: 0 auto;
}
.testimonial-logo {
  display: inline-block;
  margin: 0 0 22px;
  line-height: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(43, 47, 54, 0.12);
}
.testimonial-logo img {
  width: 168px;
  height: 168px;
  object-fit: cover;
  display: block;
}
.testimonial blockquote {
  margin: 0;
}
.testimonial-qa {
  text-align: center;
}
.testimonial-qa p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
}
.testimonial-qa .testimonial-q {
  color: var(--text);
  font-weight: 600;
  margin-top: 22px;
}
.testimonial-qa .testimonial-q:first-child { margin-top: 0; }
.testimonial-qa .testimonial-q span,
.testimonial-qa .testimonial-a span {
  color: var(--coral);
  font-style: normal;
  font-weight: 600;
}
.testimonial-qa .testimonial-a {
  color: var(--muted);
  font-style: italic;
  margin-top: 6px;
}
.testimonial figcaption {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 14px;
}
.testimonial figcaption strong { font-weight: 600; }
.testimonial figcaption a {
  color: var(--gold);
  text-decoration: none;
}
.testimonial figcaption a:hover { text-decoration: underline; }

.cta-band {
  background: var(--bg-elev);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 56px 0;
  text-align: center;
}
.cta-band h2 { margin-bottom: 10px; }
.footer {
  padding: 28px 0 40px;
  color: var(--muted);
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer a { color: var(--muted); }

.site-footer {
  margin-top: 48px;
  padding: 48px 0 28px;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(720px 240px at 8% 0%, rgba(225, 6, 0, 0.08), transparent 56%),
    linear-gradient(180deg, #fff 0%, #f2f3f5 100%);
}
.site-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, minmax(0, 1fr));
  gap: 32px 36px;
  align-items: start;
}
.site-footer .logo,
.site-footer-logo {
  transition: transform 0.18s ease;
}
.site-footer .logo:hover,
.site-footer-logo:hover { transform: translateY(-2px); }
.site-footer-brand p {
  margin: 14px 0 18px;
  max-width: 36ch;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}
.site-footer-cta { min-height: 2.6rem; box-shadow: 0 8px 20px rgba(225, 6, 0, 0.16); }
.site-footer-cta:hover { transform: translateY(-1px); box-shadow: 0 12px 24px rgba(225, 6, 0, 0.22); }
.site-footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}
.site-footer-col h3 {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.site-footer-col a {
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.16s ease, transform 0.16s ease;
}
.site-footer-col a:hover {
  color: var(--gold);
  transform: translateX(3px);
}
.site-social { display: flex; flex-wrap: wrap; gap: 10px; }
.site-social-btn {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  text-decoration: none;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.site-social-btn svg { width: 18px; height: 18px; display: block; }
.site-social-btn:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 12px 22px rgba(43, 47, 54, 0.14);
}
.site-social-btn.facebook:hover { background: #1877f2; border-color: #1877f2; color: #fff; }
.site-social-btn.instagram:hover {
  background: linear-gradient(45deg, #f9ce34, #ee2a7b 55%, #6228d7);
  border-color: transparent;
  color: #fff;
}
.site-social-btn.x:hover { background: #111; border-color: #111; color: #fff; }
.site-social-btn.linkedin:hover { background: #0a66c2; border-color: #0a66c2; color: #fff; }
.site-social-btn.youtube:hover { background: #ff0000; border-color: #ff0000; color: #fff; }
.site-footer-bar {
  margin-top: 32px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 13px;
}
.site-footer-bar a {
  color: var(--muted);
  text-decoration: none;
}
.site-footer-bar a:hover { color: var(--gold); }

.plans {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  align-items: stretch;
}
.plan {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px 20px 20px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 32px rgba(43, 47, 54, 0.06);
}
.plan.featured { border-color: var(--gold); }
.plan .name { font-family: var(--display); font-size: 22px; margin: 0 0 6px; }
.plan .offer-badge {
  display: inline-block;
  margin: 0 0 10px;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--on-gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.plan .offer-badge[hidden] { display: none; }
.plan .price { font-size: 28px; font-weight: 650; margin: 0 0 4px; }
.plan .price small { font-size: 14px; font-weight: 400; color: var(--muted); }
.plan .list-price { color: var(--muted); font-size: 13px; margin: 0 0 4px; text-decoration: line-through; }
.plan .list-price[hidden] { display: none; }
.plan .annual { color: var(--muted); font-size: 12px; margin: 0 0 18px; min-height: 32px; }
.plan .save-pct {
  display: inline-block;
  margin-right: 6px;
  padding: 1px 7px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--gold) 18%, transparent);
  color: var(--gold);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.02em;
}
.plan ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  flex: 1;
  font-size: 13px;
  color: var(--muted);
}
.plan li { padding: 6px 0 6px 16px; position: relative; }
.plan li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 1px;
}

.note { color: var(--muted); font-size: 13px; margin-top: 28px; }

.doc { max-width: 720px; padding: 40px 0 72px; }
.doc h1 { font-family: var(--display); font-size: clamp(28px, 4vw, 40px); font-weight: 500; margin: 0 0 8px; letter-spacing: -0.03em; }
.doc .meta { color: var(--muted); font-size: 13px; margin: 0 0 32px; }
.doc h2 { font-size: 18px; margin: 28px 0 10px; }
.doc p, .doc li { color: var(--muted); font-size: 15px; line-height: 1.65; }
.doc p { margin: 0 0 12px; }
.doc ul { margin: 0 0 12px; padding-left: 1.2em; }
.doc a { color: var(--gold); }
.doc ol { margin: 0 0 12px; padding-left: 1.2em; }
.doc .crumb { font-size: 13px; color: var(--muted); margin: 0 0 16px; }
.doc .yt-embed {
  position: relative;
  width: 100%;
  max-width: 880px;
  aspect-ratio: 16 / 9;
  margin: 0.75rem 0 1.25rem;
  border-radius: 12px;
  overflow: hidden;
  background: #111;
}
.doc .yt-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.card h3 a { color: var(--text); text-decoration: none; }
.card h3 a:hover { color: var(--gold); }
.card .meta { color: var(--muted); font-size: 12px; margin: 0 0 8px; }

.blog-hero { padding: 56px 0 32px; }
.blog-hero h1 {
  font-family: var(--display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 14px;
  max-width: 18ch;
}
.blog-hero .lead {
  color: var(--muted);
  font-size: 18px;
  max-width: 42ch;
  margin: 0;
  line-height: 1.55;
}

.blog-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding-bottom: 64px;
}
.blog-list > .sub { grid-column: 1 / -1; }
.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: 10px;
  padding: 28px 24px 22px;
  box-shadow: 0 12px 32px rgba(43, 47, 54, 0.06);
  text-decoration: none;
  color: inherit;
}
.blog-card.featured { grid-column: 1 / -1; padding: 36px 32px 28px; }
.blog-card .meta {
  color: var(--coral);
  font-size: 12px;
  letter-spacing: 0.14em;
  font-weight: 600;
  margin: 0 0 12px;
  text-transform: uppercase;
}
.blog-card h2 {
  font-family: var(--display);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 0 0 12px;
  color: var(--text);
}
.blog-card.featured h2 { font-size: clamp(28px, 4vw, 40px); }
.blog-card p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  flex: 1;
}
.blog-card .read {
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}
.blog-card:hover h2 { color: var(--gold); }

.post-hero {
  padding: 48px 0 28px;
  max-width: 760px;
}
.post-hero h1 {
  font-family: var(--display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
}
.post-hero .back {
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
}
.post-hero .back:hover { color: var(--gold); }

.post-panel {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 40px 44px;
  max-width: 760px;
  margin: 0 0 56px;
  box-shadow: 0 12px 32px rgba(43, 47, 54, 0.06);
}

.post-body {
  color: var(--text);
  font-size: 17px;
  line-height: 1.7;
}
.post-body h2 {
  font-family: var(--display);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 500;
  letter-spacing: -0.03em;
  margin: 36px 0 12px;
  color: var(--text);
}
.post-body h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 24px 0 8px;
  color: var(--text);
}
.post-body .faq {
  margin: 8px 0 16px;
}
.post-body p { margin: 0 0 16px; }
.post-body a { color: var(--gold); }
.post-body strong { font-weight: 600; }
.post-body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}
.post-body li {
  padding: 8px 0 8px 18px;
  position: relative;
}
.post-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 1px;
}
.post-body .shot {
  margin: 24px 0 28px;
  background: #04141a;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(43, 47, 54, 0.08);
}
.post-body .shot img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}
.post-body .shot.shot-tall {
  background: #0e1014;
}
.post-body .shot.shot-tall img {
  width: auto;
  max-width: 100%;
  max-height: 560px;
  margin-inline: auto;
}
.post-body .shot figcaption {
  font-size: 13px;
  color: var(--muted);
  padding: 10px 14px 12px;
  background: var(--bg-elev);
  border-top: 1px solid var(--line);
  line-height: 1.45;
}

.cta-band h2 {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 500;
  letter-spacing: -0.03em;
  margin: 0 0 10px;
}
.cta-band .sub {
  color: var(--muted);
  max-width: 52ch;
  margin: 0 auto 28px;
}

.who {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.who a.card {
  text-decoration: none;
  color: inherit;
  border-left: 3px solid var(--gold);
}
.who a.card:hover h3 { color: var(--gold); }
.who a.card h3 {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.03em;
  margin: 0 0 8px;
}
.crumb {
  font-size: 13px;
  color: var(--muted);
  margin: 28px 0 0;
}
.crumb a { color: var(--muted); text-decoration: none; }
.crumb a:hover { color: var(--gold); }
.faq {
  margin-top: 12px;
}
.faq details {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px 18px;
  margin: 0 0 10px;
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
}
.faq details p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  margin: 10px 0 0;
}
.seo-shot {
  margin: 8px 0 8px;
  background: #04141a;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(43, 47, 54, 0.08);
}
.seo-shot img { display: block; width: 100%; height: auto; }
.seo-shot figcaption {
  font-size: 13px;
  color: var(--muted);
  padding: 10px 14px 12px;
  background: var(--bg-elev);
  border-top: 1px solid var(--line);
}

.prose { max-width: 720px; padding: 8px 0 12px; }
.prose h2 {
  font-family: var(--display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 500;
  letter-spacing: -0.03em;
  margin: 32px 0 12px;
}
.prose p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
  margin: 0 0 16px;
}
.prose a { color: var(--gold); }
.footer-links { max-width: 52ch; line-height: 1.7; }

@media (max-width: 900px) {
  .home-banner { min-height: 0; }
  .home-banner-inner {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 28px 0 36px;
    min-height: 0;
  }
  .home-banner-room::after {
    background:
      linear-gradient(180deg, rgba(247, 248, 250, 0.94) 0%, rgba(247, 248, 250, 0.78) 42%, rgba(247, 248, 250, 0.4) 100%);
  }
  .home-pos { min-height: 0; }
  .home-pos-stage {
    width: min(100%, 340px);
    transform: rotateY(-8deg) rotateX(4deg);
  }
  .site-footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-3, .plans, .stats, .split, .blog-list, .who { grid-template-columns: 1fr; }
  .blog-card.featured { padding: 28px 22px 22px; }
  .post-panel { padding: 24px 20px; }
  .nav { padding: 10px 0; }
  .logo-mark { height: 32px; }
  .logo-word { font-size: 18px; }
  .nav-end { gap: 8px; }
  .nav-signup { padding: 8px 12px; font-size: 13px; }
  .nav-toggle { display: inline-flex; }
  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 220px;
    padding: 10px;
    background: var(--bg-elev);
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: 0 16px 40px rgba(43, 47, 54, 0.14);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 0.15s ease, transform 0.15s ease;
  }
  .nav.is-open .nav-links {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav-links a {
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 15px;
    color: var(--text);
  }
  .nav-links a:hover, .nav-links a.active { background: #f4f5f7; }
}
@media (max-width: 560px) {
  .site-footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 380px) {
  .logo-word { display: none; }
}

.qk-chat-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font: 600 13px var(--font);
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(225, 6, 0, 0.28);
}
.qk-chat-fab[aria-expanded="true"] { background: var(--text); }
.qk-chat-panel {
  position: fixed;
  right: 18px;
  bottom: 82px;
  z-index: 80;
  width: min(380px, calc(100vw - 24px));
  height: min(520px, calc(100vh - 110px));
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(43, 47, 54, 0.16);
  overflow: hidden;
}
.qk-chat-panel[hidden] { display: none; }
.qk-chat-head {
  padding: 14px 16px 12px;
  border-bottom: 1px solid var(--line);
}
.qk-chat-head strong { display: block; font-size: 15px; }
.qk-chat-head span { color: var(--muted); font-size: 12px; }
.qk-chat-log {
  flex: 1;
  overflow: auto;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.qk-chat-bubble {
  max-width: 92%;
  padding: 9px 12px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.45;
  white-space: pre-wrap;
}
.qk-chat-bubble.bot { background: #f4f5f7; color: var(--text); }
.qk-chat-bubble.me { align-self: flex-end; background: var(--gold); color: #fff; }
.qk-chat-chips { display: flex; flex-wrap: wrap; gap: 6px; padding: 0 14px 8px; }
.qk-chat-chips button {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  cursor: pointer;
}
.qk-chat-form {
  display: flex;
  gap: 8px;
  padding: 10px 12px 12px;
  border-top: 1px solid var(--line);
}
.qk-chat-form input {
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  font: 14px var(--font);
}
.qk-chat-form button {
  border: 0;
  border-radius: 8px;
  background: var(--gold);
  color: #fff;
  font: 600 13px var(--font);
  padding: 0 14px;
  cursor: pointer;
}
.partner-benefits { margin: 8px 0 40px; }
.partner-benefits .card h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.03em;
  margin: 0 0 10px;
}
.partner-benefits .card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}
.partner-apply {
  max-width: 760px;
  margin: 0 0 48px;
  padding: 28px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 16px;
}
.partner-apply h2 {
  font-family: var(--display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 500;
  letter-spacing: -0.03em;
  margin: 0 0 8px;
}
.partner-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 20px 0 16px;
}
.partner-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
}
.partner-form input,
.partner-form select {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg);
  color: inherit;
  font: 400 15px var(--font);
}
.partner-span-2 { grid-column: 1 / -1; }
.partner-phone {
  display: flex;
  gap: 8px;
  margin-top: 6px;
}
.partner-phone select {
  width: 55%;
  margin-top: 0;
}
.partner-phone input { margin-top: 0; }
.partner-form-error {
  color: var(--coral, #e10600);
  font-size: 14px;
  margin: 0 0 12px;
}
.partner-form-ok {
  color: var(--green, #0a7a3e);
  font-size: 14px;
  margin: 0 0 12px;
}
.partner-faq { margin: 8px 0 48px; max-width: 760px; }
.partner-faq h2 {
  font-family: var(--display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 500;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
}
@media (max-width: 700px) {
  .partner-form-grid { grid-template-columns: 1fr; }
  .partner-span-2 { grid-column: auto; }
  .partner-phone { display: block; }
  .partner-phone select { width: 100%; margin-bottom: 8px; }
}

.founder-kicker {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.16em;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 12px;
}
.founder-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: 12px;
  padding: 18px 20px;
  margin: 8px 0 36px;
  box-shadow: 0 12px 32px rgba(43, 47, 54, 0.06);
}
a.founder-photo { color: inherit; text-decoration: none; }
.founder-photo {
  position: relative;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--gold);
  background: #f7e6e4;
}
.founder-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
}
.founder-photo img[hidden] { display: none; }
.founder-photo-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: 28px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: -0.03em;
}
.founder-card h2 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 4px;
  letter-spacing: -0.03em;
  color: var(--text);
}
.founder-card .founder-role {
  margin: 0 0 10px;
  font-size: 14px;
  color: var(--muted);
}
.founder-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}
.founder-linkedin:hover { text-decoration: underline; }
.founder-linkedin svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.founder-sign {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.founder-sign p { margin: 0; }
.founder-sign .founder-name {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.03em;
}
.founder-sign .founder-title {
  color: var(--muted);
  font-size: 14px;
  margin: 4px 0 10px;
}
@media (max-width: 560px) {
  .founder-card {
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-pos-stage,
  .home-banner:hover .home-pos-stage {
    transform: none;
    transition: none;
  }
  .home-pos-ticket.is-new { animation: none; }
}
