:root {
  --gold: #d4af37;
  --gold-soft: #f0d878;
  --gold-deep: #b8922a;
  --gold-dim: rgba(212, 175, 55, 0.14);
  --gold-glow: rgba(212, 175, 55, 0.35);
  --amber: #e8a849;
  --copper: #c47a3a;
  --ink: #0a0a0a;
  --ink-soft: #111111;
  --charcoal: #1a1a1a;
  --ivory: #faf8f3;
  --ivory-muted: #f0ece4;
  --mist: #e8e2d8;
  --stone: #7a7265;
  --stone-soft: #9e9589;
  --line: rgba(26, 26, 26, 0.1);
  --line-light: rgba(250, 248, 243, 0.1);
  --header-h: 4.5rem;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-snap: cubic-bezier(0.34, 1.2, 0.64, 1);
  --font-display: "DM Sans", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-mono: "DM Mono", ui-monospace, monospace;
  --radius: 14px;
  --radius-sm: 8px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal-fade,
  .reveal-scale,
  .reveal-slide-left,
  .reveal-slide-right,
  .reveal-blur,
  .reveal-stagger > *,
  .reveal-hero {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
  touch-action: none;
}

body.nav-open #main,
body.nav-open .site-footer {
  pointer-events: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0;
}

h1 {
  font-size: clamp(2.6rem, 6.2vw, 4.35rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
}

h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
}

p {
  margin: 0;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100%;
  z-index: 200;
  padding: 0.75rem 1rem;
  background: var(--gold);
  color: var(--ink);
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  z-index: 120;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold), var(--gold-soft), var(--amber));
  pointer-events: none;
}

.container {
  width: min(1140px, calc(100% - 2.5rem));
  margin-inline: auto;
}

/* ——— Scroll-driven animation classes ——— */
.reveal-fade {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: calc(var(--i, 0) * 80ms);
}

.reveal-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92) translateY(1.5rem);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal-scale.is-visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.reveal-slide-left {
  opacity: 0;
  transform: translateX(-3rem);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal-slide-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-slide-right {
  opacity: 0;
  transform: translateX(3rem);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal-slide-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-blur {
  opacity: 0;
  filter: blur(12px);
  transform: translateY(1rem);
  transition: opacity 0.9s var(--ease-out), filter 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal-blur.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  transition-delay: calc(var(--i, 0) * 100ms);
}

.reveal-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* Legacy compat */
.reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ——— Section wave dividers ——— */
.section-wave {
  height: 80px;
  background: linear-gradient(180deg, var(--ivory) 0%, var(--ivory-muted) 100%);
  position: relative;
  overflow: hidden;
}

.section-wave::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 100%, var(--gold-dim), transparent 70%);
}

.section-wave-dark {
  background: linear-gradient(180deg, var(--ivory-muted) 0%, var(--ink) 100%);
}

.section-wave-dark::after {
  background: radial-gradient(ellipse 60% 100% at 50% 100%, rgba(212, 175, 55, 0.08), transparent 70%);
}

.section-wave-mist {
  background: linear-gradient(180deg, var(--ivory) 0%, var(--ivory-muted) 100%);
}

/* ——— Section glow ——— */
.section-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.section-glow::before,
.section-glow::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
  animation: glow-drift 18s var(--ease) infinite alternate;
}

.section-glow::before {
  width: min(45vw, 400px);
  height: min(45vw, 400px);
  top: -15%;
  right: -5%;
  background: radial-gradient(circle, var(--gold-dim), transparent 70%);
}

.section-glow::after {
  width: min(35vw, 320px);
  height: min(35vw, 320px);
  bottom: -10%;
  left: -5%;
  background: radial-gradient(circle, rgba(196, 122, 58, 0.12), transparent 70%);
  animation-delay: -8s;
}

@keyframes glow-drift {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(3%, 5%) scale(1.1);
  }
}

/* ——— Header ——— */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease),
    border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  border-bottom-color: rgba(212, 175, 55, 0.15);
}

.header-shell {
  width: min(1140px, calc(100% - 2rem));
  margin-inline: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
  z-index: 2;
}

.nav-backdrop {
  display: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  z-index: 2;
  transition: opacity 0.2s var(--ease);
}

.brand:hover {
  opacity: 0.85;
}

.brand img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.85rem;
}

.site-nav a {
  color: rgba(250, 248, 243, 0.65);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: color 0.25s var(--ease);
  position: relative;
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1.5px;
  background: linear-gradient(90deg, var(--gold), var(--amber));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.site-nav a:not(.nav-cta):hover {
  color: var(--gold);
}

.site-nav a:not(.nav-cta):hover::after {
  transform: scaleX(1);
}

.site-nav a.is-current {
  color: var(--gold);
}

.site-nav a.is-current::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 0.55rem 1.15rem;
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 999px;
  color: var(--gold) !important;
  font-weight: 500;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}

.nav-cta:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
  box-shadow: 0 0 28px var(--gold-glow);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 0;
  background: transparent;
  z-index: 2;
}

.nav-toggle span {
  display: block;
  width: 1.35rem;
  height: 1.5px;
  margin-inline: auto;
  background: var(--gold);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + 3rem) 1.5rem 5rem;
  background: var(--ink);
  color: var(--ivory);
  overflow: hidden;
}

.hero-atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(ellipse 65% 50% at 50% -5%, rgba(212, 175, 55, 0.18), transparent 55%),
    radial-gradient(ellipse 40% 35% at 85% 55%, rgba(232, 168, 73, 0.12), transparent 50%),
    radial-gradient(ellipse 35% 30% at 15% 75%, rgba(196, 122, 58, 0.1), transparent 45%),
    linear-gradient(180deg, #0a0a0a 0%, #0f0d08 50%, #0a0a0a 100%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  animation: orb-drift 16s var(--ease) infinite alternate;
}

.hero-orb-a {
  width: min(55vw, 480px);
  height: min(55vw, 480px);
  top: -8%;
  left: 28%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.3), transparent 70%);
}

.hero-orb-b {
  width: min(42vw, 360px);
  height: min(42vw, 360px);
  bottom: 8%;
  right: -4%;
  background: radial-gradient(circle, rgba(196, 122, 58, 0.22), transparent 70%);
  animation-delay: -7s;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212, 175, 55, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 65% 55% at 50% 40%, black, transparent);
  opacity: 0.8;
}

.hero-spotlight {
  position: absolute;
  width: 42vw;
  height: 42vw;
  max-width: 480px;
  max-height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.14), transparent 65%);
  transform: translate(-50%, -50%);
  left: 50%;
  top: 40%;
  transition: left 0.25s var(--ease-out), top 0.25s var(--ease-out);
  will-change: left, top;
}

@keyframes orb-drift {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(4%, 6%) scale(1.08);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(740px, 100%);
  text-align: center;
}

.hero-logo {
  width: min(300px, 72vw);
  margin: 0 auto 1.5rem;
  filter: drop-shadow(0 16px 48px rgba(212, 175, 55, 0.25));
}

.hero-brand {
  font-family: var(--font-mono);
  font-size: clamp(0.85rem, 1.6vw, 1rem);
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.hero h1 {
  color: var(--ivory);
  margin-bottom: 1.2rem;
}

.hero-lede {
  color: rgba(250, 248, 243, 0.65);
  font-weight: 300;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  max-width: 36rem;
  margin: 0 auto 2.15rem;
}

[data-rotate-words] {
  color: var(--gold-soft);
  font-weight: 500;
  display: inline-block;
  min-width: 14ch;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

[data-rotate-words].is-swap {
  opacity: 0;
  transform: translateY(0.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1.75rem;
}

.hero-chips button {
  border: 1px solid rgba(212, 175, 55, 0.3);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(250, 248, 243, 0.7);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease),
    color 0.25s var(--ease), transform 0.25s var(--ease-snap);
}

.hero-chips button:hover {
  color: var(--ink);
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.hero-scroll {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1.5rem;
  height: 2.5rem;
  display: flex;
  justify-content: center;
  opacity: 0.5;
  transition: opacity 0.25s var(--ease);
}

.hero-scroll:hover {
  opacity: 1;
}

.hero-scroll-line {
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scroll-pulse 2.2s var(--ease) infinite;
}

@keyframes scroll-pulse {
  0%,
  100% {
    transform: scaleY(0.55);
    opacity: 0.4;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

.reveal-hero {
  opacity: 0;
  transform: translateY(1.5rem);
  animation: hero-in 0.9s var(--ease-out) forwards;
  animation-delay: calc(var(--d, 0) * 0.12s + 0.15s);
}

@keyframes hero-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.7rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  transition: background 0.3s var(--ease), color 0.3s var(--ease),
    border-color 0.3s var(--ease), box-shadow 0.3s var(--ease),
    transform 0.25s var(--ease-snap);
  cursor: pointer;
}

.btn span {
  display: inline-block;
  pointer-events: none;
}

.btn.sm {
  padding: 0.65rem 1.15rem;
  font-size: 0.85rem;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--amber) 100%);
  color: var(--ink);
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.2), 0 12px 40px rgba(212, 175, 55, 0.25);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-soft) 0%, var(--gold) 100%);
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.35), 0 16px 48px rgba(212, 175, 55, 0.35);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  color: var(--ivory);
  border-color: rgba(212, 175, 55, 0.35);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  border-color: var(--gold);
  background: var(--gold-dim);
  color: var(--gold);
  transform: translateY(-2px);
}

.magnetic {
  will-change: transform;
}

/* ——— Sections ——— */
.section {
  padding: clamp(5rem, 11vw, 8rem) 0;
  position: relative;
}

.section-light {
  background: var(--ivory);
}

.section-mist {
  background:
    radial-gradient(ellipse 60% 45% at 80% 10%, rgba(212, 175, 55, 0.06), transparent 55%),
    radial-gradient(ellipse 45% 35% at 10% 90%, rgba(196, 122, 58, 0.05), transparent 50%),
    var(--ivory-muted);
}

.section-ink {
  background:
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(212, 175, 55, 0.1), transparent 50%),
    radial-gradient(ellipse 35% 30% at 15% 75%, rgba(196, 122, 58, 0.08), transparent 45%),
    var(--ink-soft);
  color: var(--ivory);
}

.section-ink::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(180deg, transparent, black 20%, black 80%, transparent);
  pointer-events: none;
  opacity: 0.6;
}

.section-header {
  max-width: 40rem;
  margin-bottom: 3.25rem;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.9rem;
}

.section-ink .eyebrow,
.section-cta .eyebrow,
.hero .eyebrow {
  color: var(--gold);
}

.section-lede {
  margin-top: 1rem;
  color: var(--stone);
  font-weight: 300;
  font-size: 1.08rem;
}

.section-lede.light {
  color: rgba(250, 248, 243, 0.55);
}

/* ——— Who it's for header ——— */
.who-header {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 3rem;
}

/* ——— Vertical Slider ——— */
.vertical-panel {
  max-width: 56rem;
  margin: 0 auto;
}

/* Slider controls row */
.vert-slider-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.vert-counter {
  font-family: var(--font-mono);
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
}

.vert-counter-cur {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  transition: opacity 0.15s var(--ease), transform 0.15s var(--ease-snap);
}

.vert-counter-cur.is-swap {
  opacity: 0;
  transform: translateY(-8px);
}

.vert-counter-sep {
  color: var(--stone-soft);
  font-weight: 300;
  font-size: 1.2rem;
  margin: 0 0.15rem;
}

.vert-counter-tot {
  font-size: 1rem;
  color: var(--stone-soft);
  font-weight: 400;
}

.vert-slider-arrows {
  display: flex;
  gap: 0.6rem;
}

.stage-arrow {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.25);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease),
    box-shadow 0.25s var(--ease), transform 0.2s var(--ease-snap);
  box-shadow: 0 4px 16px rgba(26, 26, 26, 0.06);
}

.stage-arrow svg {
  width: 1.1rem;
  height: 1.1rem;
  color: var(--gold-deep);
  transition: color 0.2s var(--ease);
}

.stage-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 8px 28px rgba(212, 175, 55, 0.3);
  transform: scale(1.12);
}

.stage-arrow:hover svg {
  color: var(--ink);
}

.stage-arrow:active {
  transform: scale(0.92);
}

/* Slider track */
.vert-slider-track {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 360px;
}

/* Each slide card */
.vert-slide {
  --slide-rx: 0deg;
  --slide-ry: 0deg;
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 2.5rem;
  align-items: center;
  padding: clamp(2rem, 4vw, 3rem);
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.05), #fff 40%);
  border: 1px solid rgba(26, 26, 26, 0.06);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(26, 26, 26, 0.06);
  opacity: 0;
  transform: perspective(1000px) rotateY(var(--slide-ry)) rotateX(var(--slide-rx)) translateX(80px) scale(0.94);
  transition: opacity 0.55s var(--ease-out), transform 0.6s var(--ease-snap);
  pointer-events: none;
  transform-style: preserve-3d;
}

.vert-slide.is-active {
  position: relative;
  opacity: 1;
  transform: perspective(1000px) rotateY(var(--slide-ry)) rotateX(var(--slide-rx)) translateX(0) scale(1);
  pointer-events: auto;
  z-index: 2;
}

.vert-slide.is-exit {
  opacity: 0;
  transform: perspective(1000px) translateX(-80px) scale(0.94);
  z-index: 1;
}

/* Slide visual — big emoji + decorative ring */
.vert-slide-visual {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vert-slide-emoji {
  font-size: 3.5rem;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 4px 16px rgba(212, 175, 55, 0.2));
  animation: emoji-float 3s ease-in-out infinite;
}

@keyframes emoji-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-6px) rotate(-3deg); }
  66% { transform: translateY(-3px) rotate(2deg); }
}

.vert-slide-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px dashed rgba(212, 175, 55, 0.2);
  animation: ring-spin 12s linear infinite;
}

.vert-slide-ring::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08), transparent 70%);
}

@keyframes ring-spin {
  to { transform: rotate(360deg); }
}

/* Slide body text */
.vert-slide-body .vertical-kicker {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.vert-slide-body h3 {
  margin-bottom: 0.75rem;
  color: var(--ink);
}

.vert-slide-body > p {
  color: var(--stone);
  font-weight: 300;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.vertical-points {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.vertical-points li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--charcoal);
  font-size: 0.98rem;
  font-weight: 400;
}

.vertical-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.55rem;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--amber));
  border-radius: 1px;
}

/* Timer bar */
.vert-timer {
  position: relative;
  width: 100%;
  height: 3px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 999px;
  margin-top: 1.25rem;
  overflow: hidden;
}

.vert-timer-fill {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold), var(--amber));
  border-radius: inherit;
}

.vert-timer-fill.is-running {
  animation: timer-fill 5s linear forwards;
}

@keyframes timer-fill {
  from { width: 0%; }
  to { width: 100%; }
}

/* Dots */
.vert-slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.vert-dot {
  position: relative;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(212, 175, 55, 0.2);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease-snap);
}

.vert-dot-fill {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: var(--gold);
  transform: scale(0);
  transition: transform 0.35s var(--ease-snap);
}

.vert-dot.is-active {
  border-color: var(--gold);
  transform: scale(1.3);
}

.vert-dot.is-active .vert-dot-fill {
  transform: scale(1);
}

.vert-dot:hover {
  border-color: var(--gold);
  transform: scale(1.15);
}

.vert-slide {
  cursor: pointer;
}

@keyframes panel-fade {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ——— Platform ——— */
.platform-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 3.5rem;
  align-items: center;
}

.platform-grid > * {
  min-width: 0;
}

.platform-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2.5rem;
}

.platform-stats .stat {
  background: transparent;
  border: 0;
  padding: 0;
  text-align: left;
  cursor: pointer;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}

.platform-stats .stat:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

.stat {
  min-width: 5.5rem;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.04em;
}

.stat-suffix {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold-soft);
}

.stat-label {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.85rem;
  color: rgba(250, 248, 243, 0.45);
  letter-spacing: 0.04em;
}

/* ——— Real BeWell admin preview ——— */
.app-preview {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.app-screen-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.app-screen-tab {
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: rgba(250, 248, 243, 0.6);
  padding: 0.45rem 0.9rem;
  font-size: 0.78rem;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  border-radius: 999px;
  transition: background 0.25s var(--ease), color 0.25s var(--ease),
    border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.app-screen-tab:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.app-screen-tab.is-active {
  background: linear-gradient(135deg, var(--gold), var(--amber));
  border-color: transparent;
  color: var(--ink);
  font-weight: 600;
  box-shadow: 0 0 32px rgba(212, 175, 55, 0.3);
}

.app-frame {
  --rx: 0deg;
  --ry: 0deg;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset;
  transform: perspective(1400px) rotateY(var(--ry)) rotateX(var(--rx));
  transition: transform 0.35s var(--ease-out);
  transform-style: preserve-3d;
}

.app-chrome {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 0.9rem;
  background: #1a1a1a;
}

.app-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.app-dot:nth-child(1) {
  background: #ff5f57;
}
.app-dot:nth-child(2) {
  background: #febc2e;
}
.app-dot:nth-child(3) {
  background: #28c840;
}

.app-url {
  margin-left: 0.65rem;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.04em;
}

.app-shell {
  background: linear-gradient(160deg, #fef5f1 0%, #f9e5d9 55%, #e8d4c4 100%);
  min-height: 420px;
}

.app-topbar {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  height: 3.35rem;
  padding: 0 0.85rem;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid #eee;
  backdrop-filter: blur(8px);
}

.app-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 3px;
  width: 28px;
  height: 28px;
  justify-content: center;
  align-items: center;
  border: 0;
  background: transparent;
  padding: 0;
}

.app-menu-btn span {
  display: block;
  width: 14px;
  height: 1.5px;
  background: #444;
}

.app-logo {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  object-fit: cover;
  background: #0a0a0a;
}

.app-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  flex: 1;
  min-width: 0;
}

.app-brand-text strong {
  font-size: 0.9rem;
  color: #111;
  font-weight: 700;
  font-family: var(--font-body);
}

.app-brand-text span {
  font-size: 0.68rem;
  color: #888;
}

.app-logout {
  font-size: 0.72rem;
  font-weight: 600;
  color: #fff;
  background: #e56152;
  padding: 0.35rem 0.7rem;
  border-radius: 0.55rem;
}

.app-workspace {
  padding: 0.75rem;
  position: relative;
  max-height: 520px;
  overflow: auto;
}

.app-panel {
  animation: panel-fade 0.4s var(--ease);
}

.app-panel[hidden] {
  display: none;
}

.app-hint {
  font-size: 0.78rem;
  color: rgba(250, 248, 243, 0.4);
  text-align: center;
}

/* ——— Dashboard ——— */
.bw-dash {
  background: rgba(255, 255, 255, 0.72);
  border-radius: 1.1rem;
  padding: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.bw-dash-top {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.bw-date {
  font-size: 0.68rem;
  color: #9ca3af;
  margin-bottom: 0.15rem;
}

.bw-hello {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 700;
  color: #111;
  letter-spacing: -0.02em;
}

.bw-sub {
  font-size: 0.72rem;
  color: #6b7280;
  margin-top: 0.1rem;
}

.bw-search {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
  font-size: 0.7rem;
  color: #9ca3af;
  flex-shrink: 0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.bw-search svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: #9ca3af;
  stroke-width: 2;
}

.bw-sec {
  font-size: 0.78rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0.35rem 0 0.45rem;
}

.bw-overview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.45rem;
  margin-bottom: 0.85rem;
}

.bw-ov {
  position: relative;
  text-align: left;
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 0.85rem;
  padding: 0.65rem 0.7rem 0.7rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  border: 0;
  cursor: default;
}

button.bw-ov {
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

button.bw-ov:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.bw-ov::after {
  content: "";
  position: absolute;
  top: 12%;
  right: 0;
  width: 3px;
  height: 76%;
  border-radius: 2px 0 0 2px;
}

.bw-ov.accent-green::after {
  background: #22c55e;
}
.bw-ov.accent-teal::after {
  background: #14b8a6;
}
.bw-ov.accent-amber::after {
  background: #eab308;
}
.bw-ov.accent-rose::after {
  background: #f43f5e;
}

.bw-ov-label {
  display: block;
  font-size: 0.68rem;
  color: #6b7280;
  font-weight: 500;
}

.bw-ov-num {
  display: block;
  font-size: 1.45rem;
  font-weight: 700;
  color: #111;
  line-height: 1.15;
  margin: 0.15rem 0;
}

.bw-ov-meta {
  font-size: 0.62rem;
  color: #9ca3af;
}

.bw-ranks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.45rem;
}

.bw-ranks i {
  font-style: normal;
  font-size: 0.58rem;
  color: #6b7280;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
}

.bw-ranks .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
}

.dot.bronze {
  background: #f97316;
}
.dot.silver {
  background: #3b82f6;
}
.dot.gold {
  background: #eab308;
}

.bw-rev-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.bw-link {
  border: 0;
  background: transparent;
  color: #d24335;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0;
}

.bw-revenue {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr 1.15fr;
  gap: 0.5rem;
}

.bw-outstanding {
  background: linear-gradient(145deg, #e56152 0%, #d24335 55%, #b03528 100%);
  color: #fff;
  border-radius: 1rem;
  padding: 0.85rem 0.8rem;
  text-align: center;
}

.bw-gauge {
  position: relative;
  width: 110px;
  margin: 0 auto 0.35rem;
}

.bw-gauge svg {
  width: 100%;
  display: block;
}

.bw-gauge-track {
  fill: none;
  stroke: rgba(255, 255, 255, 0.28);
  stroke-width: 10;
  stroke-linecap: round;
}

.bw-gauge-fill {
  fill: none;
  stroke: #fff;
  stroke-width: 10;
  stroke-linecap: round;
}

.bw-gauge span {
  position: absolute;
  left: 50%;
  bottom: 0.15rem;
  transform: translateX(-50%);
  font-size: 1.1rem;
  font-weight: 700;
}

.bw-out-label {
  font-size: 0.78rem;
  font-weight: 600;
  opacity: 0.95;
}

.bw-out-amt {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0.15rem 0 0.35rem;
}

.bw-out-foot {
  font-size: 0.58rem;
  opacity: 0.85;
  line-height: 1.35;
}

.bw-paid-stack {
  display: grid;
  gap: 0.45rem;
}

.bw-mini-card {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 0.85rem;
  padding: 0.65rem 0.7rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.bw-mini-card > span {
  display: block;
  font-size: 0.65rem;
  color: #6b7280;
}

.bw-mini-card strong {
  display: block;
  font-size: 1rem;
  color: #111;
  margin: 0.2rem 0 0.35rem;
}

.bw-mini-card em {
  display: block;
  font-style: normal;
  font-size: 0.62rem;
  color: #9ca3af;
  margin-bottom: 0.3rem;
}

.bw-mini-card small {
  display: block;
  font-size: 0.58rem;
  color: #6b7280;
  margin-top: 0.3rem;
}

.bw-bar {
  display: block;
  height: 5px;
  border-radius: 999px;
  background: #e5e7eb;
  position: relative;
  overflow: hidden;
}

.bw-bar::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--w, 40%);
  border-radius: inherit;
}

.bw-bar.green::after {
  background: #22c55e;
}

.bw-bar.split {
  background: linear-gradient(90deg, #22c55e var(--w), #ef4444 var(--w));
}

.bw-bar.split::after {
  display: none;
}

.bw-chart-card {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 0.85rem;
  padding: 0.65rem 0.7rem 0.5rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.bw-chart-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.45rem;
}

.bw-chart-head strong {
  font-size: 0.78rem;
  color: #1f2937;
}

.bw-chart-head span {
  font-size: 0.62rem;
  color: #9ca3af;
}

.bw-bars {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 0.25rem;
  align-items: end;
  height: 88px;
}

.bw-bars span {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  gap: 0.25rem;
}

.bw-bars i {
  display: block;
  width: 100%;
  max-width: 18px;
  height: var(--h);
  border-radius: 4px 4px 2px 2px;
  background: #e5e7eb;
  transition: height 0.6s var(--ease-out);
}

.bw-bars .hi i {
  background: linear-gradient(180deg, #f07162, #d24335);
}

.bw-bars b {
  font-size: 0.55rem;
  font-weight: 500;
  color: #9ca3af;
}

/* ——— Boss Report ——— */
.bw-report {
  display: grid;
  gap: 0.65rem;
}

.bw-kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.45rem;
}

.bw-kpi {
  text-align: left;
  background: #fff;
  border: 1.5px solid #f3f4f6;
  border-radius: 0.85rem;
  padding: 0.55rem 0.65rem 0.6rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease),
    transform 0.2s var(--ease);
}

.bw-kpi:hover {
  transform: translateY(-1px);
  border-color: #cbd5e1;
}

.bw-kpi.is-selected {
  border-color: #3b82f6;
  box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.2);
}

.bw-kpi-zh {
  display: block;
  font-size: 0.62rem;
  color: #6b7280;
}

.bw-kpi-en {
  display: block;
  font-size: 0.68rem;
  color: #374151;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.bw-kpi.is-selected .bw-kpi-en {
  color: #2563eb;
}

.bw-kpi-en i {
  font-style: normal;
  font-weight: 500;
  font-size: 0.6rem;
  margin-left: 0.2rem;
  opacity: 0;
}

.bw-kpi.is-selected .bw-kpi-en i {
  opacity: 1;
}

.bw-kpi strong {
  display: block;
  font-size: 0.92rem;
  color: #111;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.bw-kpi em {
  font-style: normal;
  font-size: 0.62rem;
  color: #9ca3af;
}

.bw-detail {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 1rem;
  padding: 0.75rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.bw-detail-title {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 0.35rem;
}

.bw-detail-formula {
  font-size: 0.68rem;
  color: #6b7280;
  margin-bottom: 0.55rem;
  line-height: 1.4;
}

.bw-detail-banners {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
  margin-bottom: 0.65rem;
}

.bw-detail-banners .bn {
  border-radius: 0.55rem;
  padding: 0.45rem 0.55rem;
  color: #fff;
}

.bw-detail-banners .bn span {
  display: block;
  font-size: 0.6rem;
  opacity: 0.9;
}

.bw-detail-banners .bn strong {
  font-size: 0.82rem;
}

.bn.green {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}
.bn.amber {
  background: linear-gradient(135deg, #fbbf24, #d97706);
}
.bn.blue {
  background: linear-gradient(135deg, #60a5fa, #2563eb);
}

.bw-line-chart {
  border: 1px solid #f3f4f6;
  border-radius: 0.75rem;
  padding: 0.45rem 0.45rem 0.35rem;
  background: #fafafa;
}

.bw-line-chart svg {
  width: 100%;
  height: 110px;
  display: block;
}

.bw-line-chart .grid line {
  stroke: #e5e7eb;
  stroke-dasharray: 3 3;
  stroke-width: 1;
}

.bw-line-chart .line {
  fill: none;
  stroke-width: 2.2;
  stroke-linejoin: round;
  stroke-linecap: round;
}

.bw-line-chart .line.profit {
  stroke: #6366f1;
}

.bw-line-chart .line.commission {
  stroke: #f59e0b;
}

.bw-line-chart .nodes circle {
  fill: #fff;
  stroke: #6366f1;
  stroke-width: 2;
}

.bw-x {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.15rem;
  margin-top: 0.2rem;
}

.bw-x span {
  font-size: 0.52rem;
  color: #9ca3af;
  text-align: center;
}

/* ——— Shared list pages ——— */
.bw-list {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 1rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.bw-list-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.9rem 0.95rem 0.55rem;
  flex-wrap: wrap;
}

.bw-list-title {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 700;
  color: #111;
  letter-spacing: -0.02em;
}

.bw-list-sub {
  font-size: 0.72rem;
  color: #6b7280;
  margin-top: 0.15rem;
  max-width: 28rem;
}

.bw-head-right {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
  justify-content: flex-end;
}

.bw-cta {
  display: inline-flex;
  align-items: center;
  background: #d24335;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.45rem 0.75rem;
  border-radius: 0.65rem;
  white-space: nowrap;
}

.bw-cta.ghost {
  background: #fff;
  color: #374151;
  border: 1px solid #e5e7eb;
}

.bw-cta.sm {
  padding: 0.4rem 0.65rem;
  font-size: 0.68rem;
}

.bw-cta.sm.green {
  background: #059669;
}

.bw-cta.sm.danger {
  color: #b91c1c;
  border-color: #fecaca;
}

.bw-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  padding: 0 0.95rem 0.65rem;
}

.bw-pills.tight {
  padding: 0;
}

.bw-pills button {
  border: 0;
  background: #f3f4f6;
  color: #4b5563;
  font-size: 0.7rem;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.bw-pills button.is-on {
  background: #d24335;
  color: #fff;
  font-weight: 600;
}

.bw-pills button b {
  font-weight: 600;
  font-size: 0.62rem;
  opacity: 0.9;
}

.bw-pills button b.violet {
  background: #8b5cf6;
  color: #fff;
  border-radius: 999px;
  padding: 0.05rem 0.35rem;
}

.bw-pills .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
}

.bw-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0.7rem 0.95rem;
  border-top: 1px solid #f3f4f6;
  border-bottom: 1px solid #f3f4f6;
  background: #fef5f1;
  align-items: center;
}

.bw-field {
  font-size: 0.7rem;
  color: #9ca3af;
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 0.65rem;
  padding: 0.45rem 0.65rem;
}

.bw-field.grow {
  flex: 1;
  min-width: 8rem;
}

.bw-table {
  display: grid;
}

.bw-th,
.bw-td {
  display: grid;
  gap: 0.35rem;
  align-items: center;
  padding: 0.55rem 0.85rem;
  border-bottom: 1px solid #f3f4f6;
  font-size: 0.7rem;
  text-align: left;
  width: 100%;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  background: #fff;
}

.bw-th {
  background: #fafafa;
  color: #9ca3af;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.bw-td {
  color: #374151;
  cursor: pointer;
  transition: background 0.2s var(--ease);
}

.bw-td:hover,
.bw-td.is-on {
  background: #fff7f5;
}

.bw-cust .bw-th,
.bw-cust .bw-td {
  grid-template-columns: 3.2rem 1.5fr 0.7fr 0.7fr 0.55fr 0.5fr;
}

.bw-book .bw-th,
.bw-book .bw-td {
  grid-template-columns: 3.2rem 0.85fr 1.2fr 0.55fr 0.75fr 0.85fr 0.7fr;
}

.bw-inv .bw-th,
.bw-inv .bw-td {
  grid-template-columns: 3.2rem 0.9fr 1.1fr 0.75fr 0.7fr 0.8fr 0.75fr;
}

.bw-acts {
  display: inline-flex;
  gap: 0.25rem;
}

.bw-acts i {
  display: inline-block;
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 0.4rem;
}

.bw-acts .v {
  background: #059669;
}
.bw-acts .e {
  background: #6366f1;
}
.bw-acts .c {
  background: #ef4444;
}

.bw-who {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-width: 0;
}

.bw-who .av {
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 999px;
  background: #fdf4f3;
  color: #b03528;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  font-style: normal;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px #fce7e4;
}

.bw-who strong {
  display: block;
  color: #111;
  font-size: 0.72rem;
  font-weight: 600;
}

.bw-who small {
  display: block;
  color: #9ca3af;
  font-size: 0.6rem;
}

.bw-who.sm .av {
  display: none;
}

.rk {
  display: inline-flex;
  padding: 0.12rem 0.45rem;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 600;
  color: #fff;
  width: fit-content;
}

.rk.gold {
  background: #ca8a04;
}
.rk.silver {
  background: #64748b;
}
.rk.bronze {
  background: #ea580c;
}

.ref,
.inv {
  font-family: ui-monospace, monospace;
  font-size: 0.65rem;
  color: #d24335;
  background: #f3f4f6;
  padding: 0.15rem 0.35rem;
  border-radius: 0.3rem;
  width: fit-content;
}

.badge {
  display: inline-flex;
  padding: 0.12rem 0.4rem;
  border-radius: 0.25rem;
  font-size: 0.62rem;
  font-weight: 500;
  width: fit-content;
  text-transform: lowercase;
}

.badge.confirmed {
  background: #dcfce7;
  color: #166534;
}
.badge.came {
  background: #dbeafe;
  color: #1e40af;
}
.badge.cancelled {
  background: #fee2e2;
  color: #991b1b;
}

/* Calendar */
.bw-cal {
  padding: 0.65rem 0.85rem 0.85rem;
}

.bw-cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.55rem;
}

.bw-cal-nav strong {
  font-size: 0.85rem;
  color: #111;
}

.bw-nav-btn {
  border: 1px solid #e5e7eb;
  background: #fff;
  border-radius: 0.5rem;
  padding: 0.3rem 0.55rem;
  font-size: 0.68rem;
  color: #374151;
}

.bw-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.25rem;
}

.bw-cal-grid .wd {
  text-align: center;
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #9ca3af;
  font-weight: 600;
  padding: 0.2rem 0;
}

.bw-cal-grid .day {
  min-height: 3.1rem;
  background: #fafafa;
  border: 1px solid #f3f4f6;
  border-radius: 0.45rem;
  padding: 0.25rem;
  font-size: 0.65rem;
  color: #374151;
  cursor: pointer;
}

.bw-cal-grid .day.mute {
  color: #d1d5db;
  background: #fff;
}

.bw-cal-grid .day.today b {
  display: inline-flex;
  width: 1.2rem;
  height: 1.2rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #0f766e;
  color: #fff;
  font-size: 0.62rem;
}

.bw-cal-grid .day.is-sel {
  background: #f0fdfa;
  box-shadow: 0 0 0 2px #2dd4bf;
}

.bw-cal-grid .day.has i {
  display: block;
  margin-top: 0.15rem;
  font-style: normal;
  font-size: 0.5rem;
  line-height: 1.25;
  background: #eef2ff;
  color: #3730a3;
  border-radius: 0.25rem;
  padding: 0.1rem 0.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bw-day-panel {
  margin-top: 0.65rem;
  border: 1px solid #f3f4f6;
  border-radius: 0.75rem;
  padding: 0.65rem;
  background: #fafafa;
}

.bw-day-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 0.45rem;
}

.bw-day-item {
  display: grid;
  grid-template-columns: 4.5rem 1.2fr 0.9fr auto;
  gap: 0.4rem;
  align-items: center;
  padding: 0.45rem 0.5rem;
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 0.5rem;
  margin-bottom: 0.35rem;
  font-size: 0.68rem;
}

.bw-day-item .t {
  color: #0f766e;
  font-weight: 600;
}

.bw-day-item .n {
  color: #111;
  font-weight: 600;
}

.bw-day-item .st {
  color: #6b7280;
}

/* Billings */
.bw-bill {
  display: grid;
  gap: 0.55rem;
}

.bw-sum4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.4rem;
}

.bw-sum4 .s {
  border-radius: 0.85rem;
  padding: 0.65rem 0.7rem;
  border: 1px solid transparent;
}

.bw-sum4 .s span {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.bw-sum4 .s strong {
  display: block;
  font-size: 0.92rem;
  color: #111;
}

.bw-sum4 .s small {
  display: block;
  font-size: 0.58rem;
  color: #6b7280;
  margin-top: 0.15rem;
}

.bw-sum4 .s.blue {
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border-color: #bfdbfe;
  color: #1d4ed8;
}
.bw-sum4 .s.purple {
  background: linear-gradient(135deg, #f5f3ff, #ede9fe);
  border-color: #ddd6fe;
  color: #6d28d9;
}
.bw-sum4 .s.green {
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  border-color: #a7f3d0;
  color: #047857;
}
.bw-sum4 .s.amber {
  background: linear-gradient(135deg, #fffbeb, #fef3c7);
  border-color: #fde68a;
  color: #b45309;
}

.bw-inv .amt {
  font-weight: 600;
  color: #111;
}
.bw-inv .paid {
  color: #15803d;
}
.bw-inv .out {
  color: #b45309;
}
.bw-inv .out.zero {
  color: #9ca3af;
}

.st {
  display: inline-flex;
  padding: 0.12rem 0.4rem;
  border-radius: 0.35rem;
  font-size: 0.62rem;
  font-weight: 500;
  border: 1px solid transparent;
  width: fit-content;
  text-transform: capitalize;
}

.st.paid-ai {
  background: #f5f3ff;
  color: #6d28d9;
  border-color: #ddd6fe;
}
.st.finalized {
  background: #eff6ff;
  color: #1d4ed8;
  border-color: #bfdbfe;
}
.st.overdue {
  background: #fef2f2;
  color: #b91c1c;
  border-color: #fecaca;
}
.st.draft {
  background: #f9fafb;
  color: #374151;
  border-color: #e5e7eb;
}

.bw-slip-card {
  margin: 0.75rem 0.95rem;
  border: 1px solid #f3f4f6;
  border-radius: 0.85rem;
  padding: 0.75rem;
  background: #fafafa;
}

.bw-slip-card.warn {
  border-color: #fecaca;
  background: #fff7f7;
}

.bw-slip-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.bw-slip-top strong {
  font-family: ui-monospace, monospace;
  color: #111;
}

.chip {
  font-size: 0.62rem;
  font-weight: 600;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
}

.chip.ai {
  background: #f5f3ff;
  color: #6d28d9;
}
.chip.sus {
  background: #fef2f2;
  color: #b91c1c;
}

.bw-slip-card > p {
  font-size: 0.72rem;
  color: #6b7280;
  margin-bottom: 0.45rem;
}

.bw-slip-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  font-size: 0.62rem;
  color: #6b7280;
  margin-bottom: 0.55rem;
}

.bw-slip-ai {
  border: 1px solid #fde68a;
  background: #fffbeb;
  border-radius: 0.65rem;
  padding: 0.65rem;
  margin-bottom: 0.55rem;
}

.bw-slip-ai p {
  font-size: 0.7rem;
  color: #78716c;
}

.bw-slip-ai .ok {
  color: #065f46;
  font-weight: 600;
  margin-top: 0.2rem;
}

.bw-slip-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.app-scan {
  height: 3px;
  margin-bottom: 0.55rem;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, #d24335, transparent);
  background-size: 200% 100%;
  animation: scan 1.6s linear infinite;
}

@keyframes scan {
  from {
    background-position: 100% 0;
  }
  to {
    background-position: -100% 0;
  }
}

/* ——— Features spotlight ——— */
.feature-spotlight {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem;
  align-items: stretch;
  margin-bottom: 3rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.feature-btn {
  width: 100%;
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  padding: 1.15rem 0.5rem 1.15rem 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  transition: background 0.25s var(--ease), padding-left 0.3s var(--ease);
  position: relative;
}

.feature-btn::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--amber));
  transition: width 0.4s var(--ease);
}

.feature-btn:hover {
  background: rgba(212, 175, 55, 0.04);
}

.feature-btn.is-active {
  padding-left: 0.75rem;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.06), transparent);
}

.feature-btn.is-active::after {
  width: 100%;
}

.feature-num {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-weight: 500;
  font-family: var(--font-mono);
  min-width: 1.5rem;
}

.feature-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--stone-soft);
  transition: color 0.25s var(--ease);
}

.feature-btn.is-active .feature-name,
.feature-btn:hover .feature-name {
  color: var(--ink);
}

.feature-detail {
  position: relative;
  background: linear-gradient(160deg, var(--charcoal) 0%, var(--ink) 100%);
  color: var(--ivory);
  padding: clamp(2rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  overflow: hidden;
  min-height: 280px;
  border-radius: var(--radius);
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.feature-detail::after {
  content: "";
  position: absolute;
  inset: auto -20% -30% auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.18), transparent 65%);
  pointer-events: none;
}

.feature-card {
  position: relative;
  z-index: 1;
  animation: panel-slide-in 0.45s var(--ease);
}

.feature-card[hidden] {
  display: none;
}

@keyframes panel-slide-in {
  from {
    opacity: 0;
    transform: translateX(1.5rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.feature-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.65rem;
  font-family: var(--font-mono);
}

.feature-card h3 {
  background: linear-gradient(135deg, var(--gold-soft), var(--amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.feature-card p {
  color: rgba(250, 248, 243, 0.65);
  font-weight: 300;
  font-size: 1.08rem;
  max-width: 28rem;
}

.feature-open {
  margin-top: 1.35rem;
  border: 0;
  background: transparent;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0;
  letter-spacing: 0.02em;
  transition: color 0.2s var(--ease), transform 0.2s var(--ease);
}

.feature-open:hover {
  color: var(--gold-soft);
  transform: translateX(4px);
}

.feature-auto {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.06);
  z-index: 2;
}

.feature-auto i {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold), var(--gold-soft));
}

.feature-spotlight.is-playing .feature-auto i {
  animation: progress-fill 4.8s linear forwards;
}

/* ——— AI band ——— */
.ai-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem 2.25rem;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, rgba(212, 175, 55, 0.06), transparent 55%),
    var(--ivory-muted);
}

.ai-band h3 {
  margin-bottom: 0.5rem;
  color: var(--ink);
}

.ai-band > div > p {
  color: var(--stone);
  font-weight: 300;
  max-width: 36rem;
}

.ai-toggle {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.15rem;
}

.ai-toggle button {
  border: 1px solid rgba(212, 175, 55, 0.3);
  background: rgba(255, 255, 255, 0.6);
  color: var(--gold-deep);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  transition: background 0.25s var(--ease), color 0.25s var(--ease),
    border-color 0.25s var(--ease);
}

.ai-toggle button.is-on {
  background: var(--ink);
  color: var(--gold);
  border-color: var(--ink);
}

.ai-demo-stage {
  min-width: min(280px, 100%);
  flex: 1;
  max-width: 320px;
}

.ai-demo {
  border: 1px solid rgba(212, 175, 55, 0.25);
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 1.15rem 1.25rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  animation: panel-fade 0.4s var(--ease);
}

.ai-demo[hidden] {
  display: none;
}

.ai-demo-scan {
  height: 3px;
  margin-bottom: 0.85rem;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  background-size: 200% 100%;
  animation: scan 1.5s linear infinite;
}

.ai-demo-label {
  font-size: 0.8rem;
  color: var(--stone);
  margin-bottom: 0.35rem;
}

.ai-demo-ok {
  font-size: 0.95rem;
  font-weight: 600;
  color: #065f46;
}

.ai-wave {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 28px;
  margin-bottom: 0.85rem;
}

.ai-wave span {
  width: 4px;
  border-radius: 2px;
  background: var(--gold);
  animation: wave 0.9s ease-in-out infinite;
}

.ai-wave span:nth-child(1) {
  height: 40%;
  animation-delay: 0s;
}
.ai-wave span:nth-child(2) {
  height: 70%;
  animation-delay: 0.1s;
}
.ai-wave span:nth-child(3) {
  height: 100%;
  animation-delay: 0.2s;
}
.ai-wave span:nth-child(4) {
  height: 55%;
  animation-delay: 0.3s;
}
.ai-wave span:nth-child(5) {
  height: 80%;
  animation-delay: 0.4s;
}

@keyframes wave {
  0%,
  100% {
    transform: scaleY(0.55);
  }
  50% {
    transform: scaleY(1);
  }
}

/* ——— FAQ interactive ——— */
.faq-header {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 3rem;
}

.faq-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: center;
  margin-top: 1rem;
}

.faq-tag {
  border: 1px solid rgba(212, 175, 55, 0.25);
  background: rgba(255, 255, 255, 0.7);
  color: var(--stone);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  transition: background 0.25s var(--ease), color 0.25s var(--ease),
    border-color 0.25s var(--ease), box-shadow 0.25s var(--ease),
    transform 0.2s var(--ease-snap);
}

.faq-tag:hover {
  border-color: var(--gold);
  color: var(--gold-deep);
  transform: translateY(-1px);
}

.faq-tag.is-on {
  background: var(--ink);
  color: var(--gold);
  border-color: var(--ink);
  box-shadow: 0 4px 16px rgba(10, 10, 10, 0.15);
}

.faq-tag-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0 0.3rem;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.12);
  font-size: 0.65rem;
  font-weight: 600;
  margin-left: 0.25rem;
}

.faq-tag.is-on .faq-tag-count {
  background: rgba(212, 175, 55, 0.25);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 56rem;
  margin: 0 auto;
}

.faq-card {
  --faq-rx: 0deg;
  --faq-ry: 0deg;
  background: #fff;
  border: 1px solid rgba(26, 26, 26, 0.06);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  transform: perspective(800px) rotateY(var(--faq-ry)) rotateX(var(--faq-rx));
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease),
    transform 0.2s var(--ease-out);
  transform-style: preserve-3d;
}

.faq-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, transparent 40%, rgba(212, 175, 55, 0.25) 50%, transparent 60%);
  background-size: 250% 250%;
  background-position: 100% 100%;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
  z-index: 0;
}

.faq-card:hover::before {
  opacity: 1;
  animation: shimmer-sweep 1.5s var(--ease) forwards;
}

@keyframes shimmer-sweep {
  from {
    background-position: 100% 100%;
  }
  to {
    background-position: 0% 0%;
  }
}

.faq-card > * {
  position: relative;
  z-index: 1;
}

.faq-card:hover {
  border-color: rgba(212, 175, 55, 0.2);
  box-shadow: 0 16px 48px rgba(212, 175, 55, 0.08), 0 0 0 1px rgba(212, 175, 55, 0.1);
}

.faq-card.is-open {
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: 0 20px 56px rgba(212, 175, 55, 0.12);
  transform: perspective(800px) rotateY(0deg) rotateX(0deg) scale(1.02);
  border-left: 3px solid var(--gold);
}

.faq-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(212, 175, 55, 0.06),
    transparent 40%
  );
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  pointer-events: none;
  z-index: 0;
}

.faq-card:hover::after {
  opacity: 1;
}

.faq-card.is-hidden {
  display: none;
}

@keyframes faq-pop-in {
  0% { opacity: 0; transform: scale(0.92) translateY(12px); }
  60% { transform: scale(1.02) translateY(-2px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

.faq-card {
  animation: faq-pop-in 0.5s var(--ease-snap) both;
  animation-delay: calc(var(--i, 0) * 60ms);
}

.faq-card summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.15rem 1.25rem;
  transition: background 0.25s var(--ease);
}

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

.faq-card summary:hover {
  background: rgba(212, 175, 55, 0.04);
}

.faq-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.65rem;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(232, 168, 73, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}

.faq-card.is-open .faq-icon {
  background: linear-gradient(135deg, var(--gold), var(--amber));
  transform: scale(1.1) rotate(-5deg);
}

.faq-icon svg {
  width: 1.1rem;
  height: 1.1rem;
  color: var(--gold-deep);
  transition: color 0.3s var(--ease);
}

.faq-card.is-open .faq-icon svg {
  color: var(--ink);
}

.faq-q {
  flex: 1;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}

.faq-chevron {
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  transition: transform 0.35s var(--ease);
  flex-shrink: 0;
}

.faq-card.is-open .faq-chevron {
  transform: rotate(225deg);
}

.faq-answer {
  padding: 0 1.25rem 1.25rem 4.35rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px) scale(0.97);
  transition: max-height 0.5s var(--ease-snap),
    opacity 0.4s var(--ease-out),
    transform 0.45s var(--ease-snap),
    padding 0.4s var(--ease);
  padding-top: 0;
  padding-bottom: 0;
}

.faq-card.is-open .faq-answer {
  max-height: 300px;
  opacity: 1;
  transform: translateY(0) scale(1);
  padding-bottom: 1.25rem;
}

.faq-answer p {
  color: var(--stone);
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 36rem;
}

.faq-answer a {
  color: var(--gold-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-cta {
  text-align: center;
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.faq-cta p {
  color: var(--stone);
  font-size: 1.05rem;
  font-weight: 400;
}

@media (max-width: 720px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-answer {
    padding-left: 1.25rem;
  }

  .vert-slide {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .vert-slide-visual {
    width: 80px;
    height: 80px;
    margin: 0 auto;
  }

  .vert-slide-emoji {
    font-size: 2.5rem;
  }
}

/* ——— CTA ——— */
.section-cta {
  background: radial-gradient(ellipse 55% 65% at 50% 100%, rgba(212, 175, 55, 0.12), transparent 55%),
    var(--ink);
  color: var(--ivory);
  text-align: center;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 45% 55% at 50% 100%, rgba(196, 122, 58, 0.1), transparent 60%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  max-width: 36rem;
  margin-inline: auto;
}

.section-cta .section-lede {
  color: rgba(250, 248, 243, 0.55);
  margin-bottom: 2rem;
}

.section-cta h2 {
  color: var(--ivory);
  margin-bottom: 0.5rem;
}

.cta-card {
  text-align: left;
  max-width: 28rem;
  margin: 0 auto 1.75rem;
  border: 1px solid rgba(212, 175, 55, 0.2);
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1.15rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-row:last-child {
  border-bottom: 0;
}

.cta-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250, 248, 243, 0.4);
  margin-bottom: 0.25rem;
}

.cta-row a {
  color: var(--gold);
  font-weight: 500;
}

.cta-copy {
  border: 1px solid rgba(212, 175, 55, 0.35);
  background: transparent;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}

.cta-copy:hover,
.cta-copy.is-done {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

.section-cta .btn-ghost {
  color: var(--gold);
}

.toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: var(--charcoal);
  color: var(--ivory);
  padding: 0.7rem 1.15rem;
  border-radius: 999px;
  font-size: 0.85rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
  z-index: 200;
  opacity: 0;
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
  pointer-events: none;
}

.toast.is-on {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ——— Footer ——— */
.site-footer {
  background: #050505;
  color: rgba(250, 248, 243, 0.45);
  padding: 2.5rem 0;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.25rem 2rem;
  align-items: center;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
}

.footer-brand img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.footer-tag {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(250, 248, 243, 0.35);
  margin-top: 0.15rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: flex-end;
}

.footer-nav a {
  font-size: 0.85rem;
  transition: color 0.2s var(--ease);
}

.footer-nav a:hover {
  color: var(--gold);
}

.footer-copy {
  grid-column: 1 / -1;
  font-size: 0.82rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.25rem;
  margin-top: 0.25rem;
}

/* ——— Admin mock responsive ——— */
@media (max-width: 960px) {
  .bw-overview,
  .bw-revenue,
  .bw-kpi-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bw-revenue {
    grid-template-columns: 1fr;
  }

  .bw-detail-banners {
    grid-template-columns: 1fr;
  }

  .app-workspace {
    max-height: none;
  }

  .bw-sum4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .bw-cust .bw-th,
  .bw-cust .bw-td,
  .bw-book .bw-th,
  .bw-book .bw-td,
  .bw-inv .bw-th,
  .bw-inv .bw-td {
    grid-template-columns: 3rem 1.2fr 0.8fr 0.8fr;
  }

  .bw-cust .bw-th > :nth-child(n + 5),
  .bw-cust .bw-td > :nth-child(n + 5),
  .bw-book .bw-th > :nth-child(n + 5),
  .bw-book .bw-td > :nth-child(n + 5),
  .bw-inv .bw-th > :nth-child(n + 5),
  .bw-inv .bw-td > :nth-child(n + 5) {
    display: none;
  }

  .bw-day-item {
    grid-template-columns: 1fr 1fr;
  }

  .app-frame {
    --rx: 0deg;
    --ry: 0deg;
  }
}

@media (max-width: 520px) {
  .bw-kpi-grid {
    grid-template-columns: 1fr 1fr;
  }

  .bw-dash-top {
    flex-direction: column;
  }
}

/* ——— Main responsive ——— */
@media (max-width: 960px) {
  .vertical-panel,
  .platform-grid,
  .feature-spotlight,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .vert-slider-track {
    min-height: 440px;
  }

  .who-header {
    text-align: center;
  }

  .faq-layout .section-header {
    position: static;
  }

  .section-wave {
    height: 50px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(1140px, calc(100% - 1.25rem));
  }

  .header-shell {
    width: min(1140px, calc(100% - 1.25rem));
    justify-content: flex-start;
    gap: 0.75rem;
  }

  .nav-toggle {
    display: flex;
    flex-shrink: 0;
    order: 0;
  }

  .brand {
    order: 1;
    min-width: 0;
  }

  .brand span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  body.nav-open .site-header {
    z-index: 300;
  }

  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1;
    background: rgba(10, 10, 10, 0.55);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s var(--ease), visibility 0.25s var(--ease);
  }

  .nav-backdrop.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: auto;
    bottom: 0;
    width: min(18rem, 86vw);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    padding: 1.25rem 1rem 2rem;
    background: #0a0a0a;
    border-right: 1px solid rgba(212, 175, 55, 0.12);
    box-shadow: 16px 0 48px rgba(0, 0, 0, 0.35);
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-100%);
    transition: transform 0.28s var(--ease), opacity 0.28s var(--ease), visibility 0.28s var(--ease);
    will-change: transform;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }

  .site-nav a {
    display: block;
    font-size: 1.15rem;
    font-family: var(--font-display);
    padding: 0.9rem 0.75rem;
    border-radius: 0.65rem;
  }

  .site-nav a:not(.nav-cta)::after {
    display: none;
  }

  .site-nav a:not(.nav-cta):active,
  .site-nav a.is-current {
    background: rgba(212, 175, 55, 0.08);
  }

  .nav-cta {
    margin-top: 0.75rem;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.35);
    padding: 0.85rem 1rem !important;
    border-radius: 999px;
  }

  .site-header.is-scrolled {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(10, 10, 10, 0.96);
  }

  .hero {
    padding-top: calc(var(--header-h) + 2rem);
    padding-bottom: 3.5rem;
  }

  .hero-chips {
    gap: 0.4rem;
  }

  .hero-chips button {
    font-size: 0.68rem;
    padding: 0.4rem 0.7rem;
  }

  .platform-grid {
    gap: 1.5rem;
  }

  .platform-stats {
    gap: 1.25rem;
  }

  .app-preview {
    width: 100%;
    max-width: 100%;
  }

  .app-screen-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0.4rem;
    padding-bottom: 0.35rem;
    margin-bottom: 0.15rem;
  }

  .app-screen-tabs::-webkit-scrollbar {
    display: none;
  }

  .app-screen-tab {
    flex: 0 0 auto;
    white-space: nowrap;
    font-size: 0.72rem;
    padding: 0.42rem 0.8rem;
  }

  .app-frame {
    transform: none !important;
    max-width: 100%;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
  }

  .app-shell {
    min-height: 360px;
  }

  .app-workspace {
    max-height: 480px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  .app-topbar {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  body.nav-open .hero-atmosphere,
  body.nav-open .section-glow,
  body.nav-open .vert-slide-emoji,
  body.nav-open .vert-slide-ring {
    animation-play-state: paused !important;
  }

  /* Bookings mock — mobile-friendly calendar + layout */
  .bw-list-head {
    flex-direction: column;
    align-items: stretch;
    gap: 0.55rem;
    padding: 0.65rem 0.65rem 0.45rem;
  }

  .bw-list-title {
    font-size: 1rem;
  }

  .bw-head-right {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.35rem;
    justify-content: stretch;
  }

  .bw-head-right .bw-pills.tight {
    grid-column: 1 / -1;
  }

  .bw-head-right .bw-cta {
    justify-content: center;
    font-size: 0.65rem;
    padding: 0.4rem 0.5rem;
  }

  .bw-tools {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.35rem;
    padding: 0.55rem 0.65rem;
  }

  .bw-field {
    font-size: 0.62rem;
    padding: 0.38rem 0.45rem;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .bw-field.grow,
  .bw-tools .bw-cta.sm {
    grid-column: 1 / -1;
  }

  .bw-tools .bw-cta.sm {
    justify-content: center;
    text-align: center;
  }

  .bw-cal {
    padding: 0.45rem 0.55rem 0.65rem;
  }

  .bw-cal-nav {
    margin-bottom: 0.4rem;
  }

  .bw-cal-nav strong {
    font-size: 0.78rem;
  }

  .bw-nav-btn {
    font-size: 0.62rem;
    padding: 0.28rem 0.45rem;
  }

  .bw-cal-grid {
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0.12rem;
  }

  .bw-cal-grid .wd {
    font-size: 0.48rem;
    letter-spacing: 0;
    padding: 0.08rem 0;
  }

  .bw-cal-grid .day {
    min-height: 0;
    aspect-ratio: 1;
    min-width: 0;
    padding: 0.12rem 0.08rem;
    font-size: 0.55rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
  }

  .bw-cal-grid .day b {
    line-height: 1.1;
  }

  .bw-cal-grid .day.today b {
    width: 1rem;
    height: 1rem;
    font-size: 0.55rem;
  }

  .bw-cal-grid .day.has i {
    display: none;
  }

  .bw-cal-grid .day.has b::after {
    content: "";
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #6366f1;
    margin: 2px auto 0;
  }

  .bw-cal-grid .day.has.is-sel b::after,
  .bw-cal-grid .day.today.has b::after {
    background: #0f766e;
  }

  .bw-day-panel {
    margin-top: 0.5rem;
    padding: 0.55rem;
  }

  .bw-day-title {
    font-size: 0.7rem;
  }

  .bw-day-item {
    grid-template-columns: 1fr;
    gap: 0.15rem;
    padding: 0.5rem;
    font-size: 0.64rem;
  }

  .bw-day-item .badge {
    justify-self: start;
    margin-top: 0.15rem;
  }

  .app-menu-btn {
    display: none;
  }

  .app-brand-text span {
    display: none;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer-nav {
    justify-content: center;
  }

  .ai-band {
    padding: 1.5rem;
    border-radius: var(--radius-sm);
  }

  .section-wave {
    height: 40px;
  }
}
