/* ============================================================
   NEU — Autonomous Hospitality Ecosystem
   Espresso + orange, cinematic dark, big bold sans
   ============================================================ */

:root {
  /* espresso backgrounds */
  --bg-0: #120d09;
  --bg-1: #1a1410;
  --card:  #1e1812;

  /* warm text */
  --cream:     #f5efe6;
  --cream-2:   #d8cdbf;
  --muted:     #9c8e7d;
  --muted-2:   #6f6356;
  --hairline:  rgba(245,239,230,0.09);
  --hairline-2:rgba(245,239,230,0.05);
  --border: 1px solid var(--hairline);

  /* orange accent */
  --accent:        #e0823e;
  --accent-bright: #f5984c;
  --accent-deep:   #b9612a;
  --accent-wash:   rgba(224,130,62,0.10);

  /* type */
  --display: "Space Grotesk", system-ui, sans-serif;
  --mono: "Space Mono", ui-monospace, monospace;

  --maxw: 1280px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--display);
  background: var(--bg-0);
  color: var(--cream);
  line-height: 1.5;
  overflow-x: hidden;
  cursor: none;
}

::selection { background: var(--accent); color: #1a0f06; }

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

/* ---------- background atmosphere ---------- */
.grain {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  opacity: 0.05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- custom cursor ---------- */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; z-index: 9999; pointer-events: none;
  border-radius: 50%; transform: translate(-50%, -50%);
  mix-blend-mode: screen;
}
.cursor-dot { width: 7px; height: 7px; background: var(--accent-bright); }
.cursor-ring {
  width: 38px; height: 38px; border: 1px solid rgba(245,152,76,0.5);
  transition: width .25s var(--ease), height .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
}
.cursor-ring.hover { width: 64px; height: 64px; background: var(--accent-wash); border-color: transparent; }

/* ---------- layout helpers ---------- */
.wrap { width: min(100% - 48px, var(--maxw)); margin-inline: auto; position: relative; z-index: 2; }
section { position: relative; z-index: 2; }

.eyebrow {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--accent); display: inline-flex;
  align-items: center; gap: 10px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 1px; background: var(--accent);
  display: inline-block; opacity: .7;
}

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px clamp(24px, 4vw, 56px);
  transition: background .4s var(--ease), border-color .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(18,13,9,0.72); backdrop-filter: blur(16px);
  border-bottom: var(--border);
}
.nav.scrolled, .nav.on-world { padding-top: 16px; padding-bottom: 16px; }
.brand { display: flex; align-items: center; gap: 16px; }
.brand .logo { height: 25px; width: auto; }
/* Use the matching wordmark color while preserving the orange accent. */
.nav.on-world .brand .logo-white,
.nav:not(.on-world) .brand .logo-primary { display: none; }
.brand .sub-divide { width: 1px; height: 19px; background: var(--hairline); }
.brand .sub {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.22em;
  color: var(--muted); text-transform: uppercase; font-weight: 700;
  line-height: 1.2;
}
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-size: 14px; color: var(--cream-2); letter-spacing: 0.01em; font-weight: 600;
  position: relative; transition: color .25s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 1px;
  background: var(--accent); transition: width .3s var(--ease);
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { width: 100%; }

/* ---------- hamburger + mobile menu ---------- */
.nav-burger {
  display: none; align-items: center; justify-content: center;
  width: 44px; height: 44px; margin-left: 14px; padding: 0;
  background: transparent; border: var(--border); border-radius: 12px;
  cursor: none; flex-direction: column; gap: 5px;
  transition: border-color .25s, background .25s;
}
.nav-burger:hover { border-color: var(--accent); }
.nav-burger span {
  display: block; width: 20px; height: 2px; border-radius: 2px; background: var(--cream);
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; top: 0; left: 0; right: 0; z-index: 95;
  display: flex; flex-direction: column; gap: 4px;
  padding: 96px clamp(24px, 6vw, 44px) 36px;
  background: rgba(18,13,9,0.96); backdrop-filter: blur(20px);
  border-bottom: var(--border);
  transform: translateY(-110%); transition: transform .42s var(--ease);
  visibility: hidden;
}
.mobile-menu.open { transform: translateY(0); visibility: visible; }
.mobile-menu a:not(.btn) {
  font-size: 20px; font-weight: 500; color: var(--cream); padding: 16px 0;
  border-bottom: 1px solid var(--hairline-2);
}
.mobile-menu a:not(.btn):active { color: var(--accent-bright); }
.mobile-menu .btn { margin-top: 22px; justify-content: center; }
body.menu-open { overflow: hidden; }

@media (max-width: 520px) {
  .brand { gap: 10px; }
  .brand .logo { height: 27px; }
  .brand .sub-divide { height: 24px; }
  .brand .sub {
    max-width: 128px;
    font-size: 10px;
    letter-spacing: 0.16em;
  }
}

/* ---------- keyboard focus visibility ---------- */
:focus-visible {
  outline: 2px solid var(--accent-bright);
  outline-offset: 3px; border-radius: 4px;
}
.btn:focus-visible, .lang-toggle button:focus-visible { outline-offset: 2px; }

.btn {
  font-family: var(--display); font-size: 14px; font-weight: 500;
  padding: 12px 22px; border-radius: 100px; border: 1px solid transparent;
  cursor: none; transition: transform .2s var(--ease), background .25s, color .25s, border-color .25s;
  display: inline-flex; align-items: center; gap: 9px; white-space: nowrap;
}
.btn-primary { background: var(--accent); color: #1a0f06; font-weight: 600; }
.btn-primary:hover { background: var(--accent-bright); transform: translateY(-2px); }
.btn-ghost { border-color: var(--hairline); color: var(--cream); background: rgba(245,239,230,0.02); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-bright); }
.btn-lg { padding: 17px 32px; font-size: 16px; }

/* language toggle */
.lang-toggle { display: inline-flex; border: var(--border); border-radius: 100px; overflow: hidden; }
.lang-toggle button {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; padding: 8px 13px;
  appearance: none; -webkit-appearance: none; border-radius: 100px;
  background: transparent; color: var(--muted); border: none; cursor: none; transition: box-shadow .25s, color .25s;
}
.lang-toggle button.active { box-shadow: inset 0 0 0 40px var(--accent); color: #1a0f06; font-weight: 700; }
.lang-toggle button:not(.active):hover { color: var(--cream); }

/* ---------- reveal animation ---------- */
.reveal { transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal-pending { opacity: 0; transform: translateY(34px); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }

/* ---------- section heading ---------- */
.section-pad { padding: clamp(44px, 6vh, 84px) 0; }
.sec-head { max-width: 780px; margin-bottom: 40px; }
.sec-head h2 {
  font-size: clamp(30px, 3.5vw, 48px); font-weight: 700; line-height: 1.04;
  letter-spacing: -0.025em; margin-top: 14px; text-wrap: balance;
}
.sec-head p { margin-top: 14px; font-size: clamp(15px,1.1vw,17px); color: var(--muted); max-width: 58ch; font-weight: 300; line-height: 1.5; }

/* ---------- CTA ---------- */
.cta { text-align: center; overflow: hidden; }
.cta::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(70% 120% at 50% 120%, rgba(224,130,62,0.22), transparent 60%);
}
.cta .wrap { display: flex; flex-direction: column; align-items: center; }
.cta h2 { margin-top: 24px; font-size: clamp(34px, 5vw, 72px); font-weight: 700; line-height: 0.98; letter-spacing: -0.035em; max-width: 14ch; text-wrap: balance; }
.cta h2 .accent { color: var(--accent); }
.cta p { margin-top: 16px; font-size: 17px; color: var(--cream-2); max-width: 46ch; font-weight: 300; }
.cta p b { color: var(--cream); font-weight: 600; }
.cta .hero-cta { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 16px; margin-top: 28px; }

/* ---------- footer ---------- */
.foot { background: var(--bg-0); border-top: var(--border); padding: 72px 0 40px; }
.foot-top { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 40px; }
@media (max-width: 820px) {
  .foot-top { grid-template-columns: 1fr 1fr; }
  .foot .brand-lg { grid-column: 1 / -1; }
}
.foot .brand-lg .logo-lg { width: 320px; height: auto; }
.foot .brand-lg p { color: var(--muted); font-size: 14px; margin-top: 20px; max-width: 34ch; font-weight: 300; }
.foot-col h5 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; color: var(--muted-2); text-transform: uppercase; margin-bottom: 18px; }
.foot-col a { display: block; color: var(--cream-2); font-size: 14.5px; padding: 6px 0; transition: color .2s; }
.foot-col a:hover { color: var(--accent-bright); }
.foot-bot { display: flex; justify-content: space-between; align-items: center; margin-top: 64px; padding-top: 28px; border-top: var(--border); flex-wrap: wrap; gap: 16px; }
.foot-bot p { font-size: 13px; color: var(--muted-2); font-family: var(--mono); letter-spacing: 0.04em; }
.foot-bot .socials { display: flex; gap: 10px; }
.foot-bot .socials a { width: 38px; height: 38px; border-radius: 10px; border: var(--border); display: grid; place-items: center; transition: border-color .25s, background .25s; }
.foot-bot .socials a:hover { border-color: var(--accent); background: var(--accent-wash); }
.foot-bot .socials svg { width: 17px; height: 17px; stroke: var(--cream-2); fill: none; stroke-width: 1.6; }

/* Trial details below the signup buttons. */
.trial-note {
  margin-top: 14px; display: flex; align-items: center; justify-content: center; gap: 18px 22px; flex-wrap: wrap;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.04em; color: var(--muted);
}
.trial-note span { display: inline-flex; align-items: center; gap: 8px; }
.trial-note span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

/* ============================================================
   NEU — Pricing
   ============================================================ */
.pricing { background: linear-gradient(180deg, var(--bg-0), var(--bg-1)); scroll-margin-top: 90px; }
.billing-catalog { min-height: 380px; }
.billing-calculator { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px 24px; margin: 0 0 24px; padding: 20px; border: var(--border); border-radius: 14px; min-width: 0; color-scheme: dark; }
.billing-calculator legend, .billing-comparison-products legend { color: var(--accent-bright); font-size: 14px; font-weight: 500; }
.billing-calculator legend { padding: 0 8px; }
.billing-field { min-width: 0; }
.billing-field label { display: block; margin-bottom: 8px; font-size: 13px; color: var(--cream-2); }
.billing-field :is(input, select), .billing-comparison-select {
  width: 100%; min-width: 0; color: var(--cream); background: var(--bg-0);
  border: 1px solid rgba(245,239,230,.3); border-radius: 8px;
}
.billing-field :is(input, select) { display: block; min-height: 46px; padding: 10px 12px; font: 16px var(--display); }
.billing-field input { cursor: text; }
.billing-field select { cursor: pointer; }
.billing-field input[aria-invalid="true"] { border-color: #f2a88c; }
.billing-input-error { color: #f2a88c; font-size: 12px; line-height: 1.5; }
.billing-input-error:not(:empty) { margin-top: 8px; }
.billing-catalog-toolbar, .billing-dialog-heading, .billing-next { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.billing-catalog-toolbar { gap: 28px; margin-bottom: 38px; }
.billing-catalog-toolbar p { max-width: 680px; font-size: 13px; }
.billing-catalog-toolbar .btn { flex-shrink: 0; }
.price-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; align-items: stretch; }
.price-card {
  min-width: 0; position: relative; display: flex; flex-direction: column; padding: 30px 28px;
  border: var(--border); border-radius: 20px; background: var(--card);
  cursor: pointer; overflow-wrap: anywhere; transition: transform .3s var(--ease), border-color .3s;
}
.price-card:hover { transform: translateY(-6px); border-color: rgba(224,130,62,.55); }
.price-card:focus-within, .billing-option:focus-within { outline: 2px solid var(--accent-bright); outline-offset: 4px; }
.price-card.featured {
  border-color: rgba(224,130,62,.55); background: linear-gradient(180deg, #271e16, #1b150f);
  box-shadow: 0 30px 70px rgba(0,0,0,.3), inset 0 0 0 1px rgba(224,130,62,.18);
}
.pc-badge {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%); padding: 7px 16px;
  background: var(--accent); color: #1a0f06; border-radius: 100px; white-space: nowrap;
  font: 700 11px var(--mono); letter-spacing: .12em; text-transform: uppercase;
}
.pc-name { font: 400 13px var(--mono); letter-spacing: .18em; text-transform: uppercase; color: var(--accent-bright); }
.pc-rates { display: flex; flex: 1; flex-direction: column; gap: 16px; padding-top: 22px; }
.pc-price { display: flex; flex-direction: column; align-items: flex-start; gap: 5px; }
.pc-rate-label { font-size: 12px; color: var(--cream-2); }
.pc-price .amt { font-size: clamp(30px, 3vw, 42px); font-weight: 700; letter-spacing: -.03em; line-height: 1.1; max-width: 100%; font-variant-numeric: tabular-nums; }
.pc-price .per { font: 12px var(--mono); color: var(--cream-2); }
.pc-context { font-size: 13px; }
.pc-btn { margin-top: 22px; width: 100%; justify-content: center; }
.billing-modal-open, .billing-modal-open body { overflow: hidden; }
.billing-modal-open .cursor-dot, .billing-modal-open .cursor-ring { visibility: hidden; }
.billing-dialog {
  position: fixed; inset: 0; margin: auto; padding: 0; width: min(1080px, calc(100% - 32px));
  max-width: none; max-height: calc(100vh - 32px); max-height: calc(100dvh - 32px);
  border: 1px solid rgba(224,130,62,.35); border-radius: 22px; background: var(--bg-0);
  color: var(--cream); box-shadow: 0 30px 100px rgba(0,0,0,.6); overflow: hidden;
  font-family: var(--display); cursor: auto; color-scheme: dark;
}
.billing-dialog[open] { display: grid; grid-template-rows: auto minmax(0, 1fr); }
.billing-dialog[data-view="comparison"] { width: min(1280px, calc(100% - 32px)); }
.billing-dialog::backdrop { background: rgba(8,5,3,.8); backdrop-filter: blur(6px); cursor: auto; }
.billing-dialog-header { padding: 22px 28px; border-bottom: var(--border); background: var(--bg-1); }
.billing-dialog-tools { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.billing-dialog-tools > .btn { margin-right: auto; padding: 9px 16px; }
.billing-dialog-heading > div { min-width: 0; }
.billing-dialog-heading h2 { font-size: clamp(24px, 3vw, 32px); line-height: 1.2; letter-spacing: -.03em; overflow-wrap: anywhere; }
.billing-dialog-heading p { margin-top: 8px; }
.billing-compare-action { flex-shrink: 0; max-width: 270px; }
.billing-compare-action .billing-muted { margin-top: 8px; font-size: 12px; }
.billing-dialog-body { overflow-y: auto; overflow-anchor: none; overscroll-behavior: contain; padding: 28px; min-height: 0; }
.billing-dialog-close { display: grid; place-items: center; flex: 0 0 40px; height: 40px; font: 28px var(--display); color: var(--cream); background: transparent; border: var(--border); border-radius: 50%; }
.billing-dialog :is(button, .btn, select), .billing-catalog .btn { cursor: pointer; }
.billing-dialog [hidden] { display: none; }
:is(.billing-dialog, .billing-catalog) .btn { white-space: normal; text-align: center; justify-content: center; }
:is(.billing-dialog, .billing-catalog) button:disabled { opacity: .55; cursor: not-allowed; transform: none; }
.billing-dialog :is(button, a, select, summary, [tabindex]):focus-visible { outline-offset: 3px; }
.billing-comparison-products { min-width: 0; margin: 0 0 24px; padding: 0; border: 0; }
.billing-comparison-products legend { margin-bottom: 12px; }
.billing-product-switcher { display: flex; flex-wrap: wrap; gap: 12px; align-items: flex-start; }
.billing-product-switch { min-width: 0; max-width: 190px; }
.billing-product-switch .btn { width: 100%; min-height: 44px; padding: 10px 18px; overflow-wrap: anywhere; }
.billing-product-switch .btn[aria-pressed="true"] { color: var(--cream); background: var(--accent-wash); border-color: var(--accent-bright); }
.billing-product-switch .billing-muted { margin-top: 6px; font-size: 12px; }
.billing-comparison-hint { margin-bottom: 16px; font-size: 13px; }
.billing-comparison-scroll { overflow-x: auto; overscroll-behavior-x: contain; border: var(--border); border-radius: 12px; }
.billing-comparison-table { --billing-label-width: 168px; --billing-tier-width: 284px; width: 100%; min-width: calc(var(--billing-label-width) + var(--billing-tier-count, 3) * var(--billing-tier-width)); table-layout: fixed; border-collapse: separate; border-spacing: 0; font-size: 14px; }
.billing-comparison-table caption { text-align: left; padding: 14px 18px; font-size: 12px; color: var(--cream-2); }
.billing-comparison-table :is(th, td) { padding: 18px; text-align: left; vertical-align: top; border-top: var(--border); overflow-wrap: anywhere; font-weight: 400; }
.billing-comparison-table tr > :first-child { position: sticky; left: 0; z-index: 1; width: var(--billing-label-width); background: var(--bg-1); font-weight: 600; }
.billing-comparison-table tr > :not(:first-child) { border-left: var(--border); }
.billing-comparison-table thead th { background: var(--card); }
.billing-comparison-table h3 { font-size: 22px; margin: 0 0 6px; }
.billing-comparison-table .billing-muted { font-size: 12px; }
.billing-comparison-alternatives { margin: 8px 0; }
.billing-comparison-alternatives summary { min-height: 44px; padding: 12px 0; color: var(--accent-bright); font-size: 13px; cursor: pointer; }
.billing-comparison-alternatives label { display: block; }
.billing-comparison-select { min-height: 44px; margin-top: 8px; padding: 10px; font: 13px var(--display); }
.billing-comparison-rate { font-size: 24px; letter-spacing: -.02em; font-weight: 600; font-variant-numeric: tabular-nums; }
.billing-comparison-description { font-size: 12px; color: var(--cream-2); margin-top: 14px; line-height: 1.6; }
.billing-comparison-modules .billing-disclosure:first-child { border-top: 0; }
.billing-comparison-modules summary { gap: 8px; }
.billing-comparison-modules .billing-feature-list { grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 981px) {
  .price-card.featured { transform: scale(1.025); }
  .price-card.featured:hover { transform: scale(1.025) translateY(-6px); }
}
@media (max-width: 980px) {
  .price-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; gap: 32px; }
}
.billing-tier-selection h3, .billing-plan-details h3 { font-size: 20px; font-weight: 600; letter-spacing: -.02em; }
.billing-tier-selection > p { margin: 6px 0 18px; }
.billing-muted { color: var(--cream-2); font-size: 14px; line-height: 1.6; }
.billing-options { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.billing-option {
  position: relative; display: flex; align-items: flex-start; gap: 14px; min-width: 0;
  padding: 22px; border: 1px solid rgba(245,239,230,.16); border-radius: 14px;
  background: var(--card); cursor: pointer;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.billing-option:hover { border-color: var(--accent); }
.billing-option.is-selected {
  border-color: var(--accent); background: linear-gradient(135deg, #302217, #211a13);
  box-shadow: 0 0 0 2px rgba(224,130,62,.18);
}
.billing-option input {
  appearance: none; width: 18px; height: 18px; margin-top: 5px; flex: 0 0 auto;
  border: 1.5px solid var(--muted); border-radius: 50%; background: transparent; cursor: pointer;
}
.billing-option input:checked { border: 5px solid var(--accent-bright); background: var(--bg-0); }
.billing-option input:focus-visible { outline: none; }
.billing-option-content { display: flex; flex-direction: column; align-items: flex-start; gap: 7px; min-width: 0; width: 100%; overflow-wrap: anywhere; }
.billing-option-title { font-size: 18px; font-weight: 600; }
.billing-option-description { color: var(--cream-2); font-size: 13px; font-weight: 400; line-height: 1.6; }
.billing-plan-name { font-size: 14px; font-weight: 500; }
.billing-selection {
  margin: 4px 0; padding: 3px 10px; border: 1px solid rgba(245,239,230,.18);
  border-radius: 100px; color: var(--cream-2); font-size: 11px;
}
.is-selected .billing-selection { background: var(--accent); border-color: var(--accent); color: var(--bg-0); font-weight: 600; }
.billing-rate-label { margin-top: 16px; color: var(--cream-2); font-size: 12px; }
.billing-rate { font-size: clamp(26px, 2.8vw, 36px); line-height: 1.2; letter-spacing: -.03em; font-weight: 600; font-variant-numeric: tabular-nums; }
.billing-plan-details { margin-top: 28px; padding: 28px; border: 1px solid rgba(224,130,62,.3); border-radius: 16px; background: rgba(245,239,230,.025); }
.billing-plan-details h3 { font-size: 24px; overflow-wrap: anywhere; }
.billing-plan-details h4 { font-size: 16px; font-weight: 600; }
.billing-chips { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin-top: 12px; }
.billing-chips li { padding: 5px 10px; border-radius: 7px; background: rgba(224,130,62,.12); color: var(--accent-bright); font-size: 12px; }
.billing-fees { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; padding: 20px; margin-top: 22px; border-radius: 10px; background: rgba(245,239,230,.04); }
.billing-estimate-context { margin-top: 12px; }
.billing-fees > div { min-width: 0; }
.billing-fees dt { font-size: 12px; }
.billing-fees dd { margin-top: 6px; font-size: 15px; overflow-wrap: anywhere; font-variant-numeric: tabular-nums; }
.billing-annual-offer { font-size: 13px; color: var(--accent-bright); margin-top: 18px; }
.billing-notice { max-width: 780px; margin: 18px 0 24px; color: var(--cream-2); font-size: 13px; line-height: 1.7; }
.billing-features { margin-top: 24px; }
.billing-features > h4 { margin-bottom: 12px; }
.billing-disclosure { border-top: var(--border); }
.billing-disclosure summary {
  display: flex; align-items: center; gap: 12px; padding: 16px 0;
  cursor: pointer; font-size: 14px; font-weight: 500; overflow-wrap: anywhere; list-style: none;
}
.billing-disclosure summary::-webkit-details-marker { display: none; }
.billing-disclosure summary::after { content: "+"; color: var(--accent-bright); margin-left: auto; font-size: 20px; flex: 0 0 auto; }
.billing-disclosure[open] > summary::after { content: "−"; }
.billing-disclosure summary:focus-visible, .billing-catalog .btn:focus-visible { outline-offset: 4px; border-radius: 6px; }
.billing-count { font: 11px var(--mono); color: var(--cream-2); border: var(--border); padding: 2px 7px; border-radius: 6px; }
.billing-feature-list { list-style: none; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px 28px; padding: 4px 0 22px; }
.billing-feature-list li { position: relative; padding-left: 23px; font-size: 14px; overflow-wrap: anywhere; }
.billing-feature-list li::before { content: "✓"; color: var(--accent-bright); position: absolute; left: 0; top: 0; }
.billing-feature-list p { font-size: 12px; margin-top: 4px; }
.billing-rates-table { width: 100%; border-collapse: collapse; font-size: 13px; table-layout: fixed; }
.billing-rates-table caption { text-align: left; padding-bottom: 12px; font-size: 12px; }
.billing-rates-table :is(th, td) { padding: 12px 8px; text-align: left; border-bottom: var(--border); overflow-wrap: anywhere; }
.billing-rates-table th { color: var(--cream-2); font-weight: 500; font-size: 12px; }
.billing-rates-table :is(th, td):last-child { text-align: right; font-variant-numeric: tabular-nums; }
.billing-next { padding-top: 24px; margin-top: 24px; border-top: var(--border); }
.billing-next p { margin-top: 6px; max-width: 600px; }
.billing-next .btn { flex: 0 0 auto; }
.billing-state { min-height: 300px; padding: 48px 24px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; text-align: center; border: var(--border); border-radius: 16px; background: var(--card); }
.billing-state h3 { font-size: 22px; }
.billing-state .btn { margin-top: 8px; }
.billing-spinner { width: 28px; height: 28px; border: 2px solid var(--hairline); border-top-color: var(--accent); border-radius: 50%; animation: billing-spin .9s linear infinite; }
@keyframes billing-spin { to { transform: rotate(360deg); } }
@media (min-width: 941px) {
  .pricing, .cta { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; }
}
@media (max-width: 760px) {
  .billing-calculator { grid-template-columns: 1fr; padding: 16px; gap: 16px; }
  .billing-catalog-toolbar { align-items: flex-start; flex-direction: column; gap: 18px; }
  .price-card { padding: 28px 22px; }
  .billing-dialog, .billing-dialog[data-view="comparison"] { width: calc(100% - 16px); max-height: calc(100dvh - 16px); border-radius: 16px; }
  .billing-dialog-header { padding: 16px; }
  .billing-dialog-tools { gap: 8px; margin-bottom: 18px; }
  .billing-dialog-tools > .btn { padding: 8px 10px; font-size: 12px; }
  .billing-dialog-tools .lang-toggle { flex-shrink: 0; }
  .billing-dialog-tools .lang-toggle button { padding: 8px 10px; }
  .billing-dialog-close { flex-basis: 36px; height: 36px; }
  .billing-dialog-heading { flex-direction: column; align-items: flex-start; gap: 14px; }
  .billing-dialog-heading p { font-size: 13px; }
  .billing-dialog-heading .billing-compare-action > .btn { padding: 9px 16px; font-size: 13px; }
  .billing-dialog-body { padding: 20px 16px; }
  /* Let a complete plan column fit on small screens when panning the table. */
  .billing-comparison-table { --billing-label-width: 120px; --billing-tier-width: 240px; }
  .billing-comparison-table tr > :first-child { position: static; }
  .billing-comparison-table :is(th, td) { padding: 14px; }
  .billing-options { grid-template-columns: 1fr; gap: 12px; }
  .billing-option { padding: 18px; }
  .billing-tier-selection h3 { font-size: 18px; }
  .billing-plan-details { padding: 20px 16px; }
  .billing-fees { grid-template-columns: 1fr; gap: 16px; padding: 16px; }
  .billing-feature-list { grid-template-columns: 1fr; }
  .billing-next { align-items: stretch; flex-direction: column; }
  .billing-next .btn { width: 100%; }
  .pricing .sec-head { margin-bottom: 32px; }
}
@media (min-width: 941px) and (max-height: 920px) {
  .trial-note { margin-top: 10px; }
}

/* ============================================================
   Scroll World (NEU hotel world) — base styles
   ============================================================ */

/* Keep these rules unlayered so they take precedence over the page reset. */
.sw-root { --sw-accent: var(--accent); color: var(--bg-0); font-family: var(--display); }
.sw-sky, .sw-stage, .sw-copylayer { position: fixed; inset: 0; pointer-events: none; }
.sw-sky { z-index: 0; overflow: hidden; background: var(--cream); }
.sw-sky__grad { position: absolute; inset: -10%; background: linear-gradient(178deg, color-mix(in srgb, var(--sw-accent) 12%, var(--cream)) 0%, var(--cream) 55%, color-mix(in srgb, var(--sw-accent) 6%, var(--cream)) 100%); }
.sw-sky__glow { position: absolute; inset: 0; background: radial-gradient(60% 42% at 74% 16%, color-mix(in srgb, var(--sw-accent) 22%, transparent), transparent 70%), radial-gradient(46% 34% at 50% 50%, color-mix(in srgb, #fff 45%, transparent), transparent 70%); }
.sw-particles { position: absolute; inset: -6% -2%; will-change: transform; }
.sw-pt { position: absolute; width: 13px; height: 13px; transform: scale(var(--sw-sc, 1)); opacity: 0; animation: sw-drift linear infinite; }
.sw-pt::before { content: ""; position: absolute; inset: 0; border-radius: 50%; }
.sw-pt--dot::before { background: radial-gradient(circle at 34% 30%, color-mix(in srgb, var(--sw-accent) 60%, #000), #000 82%); }
.sw-pt--ring::before { background: transparent; border: 2px solid color-mix(in srgb, var(--sw-accent) 55%, transparent); }
@keyframes sw-drift {
  0% { opacity: 0; transform: scale(var(--sw-sc)) translate(0, 12vh) rotate(0); }
  12% { opacity: .5; }
  88% { opacity: .45; }
  100% { opacity: 0; transform: scale(var(--sw-sc)) translate(4vw, -22vh) rotate(210deg); }
}
.sw-scrollbar { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 60; background: color-mix(in srgb, var(--sw-accent) 14%, transparent); }
.sw-scrollbar span { display: block; height: 100%; width: 100%; transform-origin: 0 50%; transform: scaleX(0); background: var(--sw-accent); }
.sw-stage { z-index: 10; }
.sw-scene, .sw-scene__video, .sw-scene__still { position: absolute; inset: 0; }
.sw-scene { opacity: 0; overflow: hidden; will-change: opacity; }
.sw-scene__video, .sw-scene__still { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.sw-scene__still { transform: translateX(2vw); }
.sw-scene.has-clip .sw-scene__still { opacity: 0; }
.sw-scene__video { z-index: 1; }
.sw-copylayer { z-index: 20; }
.sw-copylayer::before { content: ""; position: absolute; inset: 0; width: min(58vw, 780px); background: linear-gradient(90deg, var(--cream) 0%, color-mix(in srgb, var(--cream) 82%, transparent) 34%, color-mix(in srgb, var(--cream) 40%, transparent) 62%, transparent 100%); }
.sw-copy { position: absolute; left: clamp(18px, 5vw, 64px); top: 50%; transform: translateY(calc(-50% + var(--sw-copy-shift, 0px))); width: min(42vw, 460px); opacity: 0; will-change: opacity, transform; }
.sw-copy__num { font-family: 'Space Mono', ui-monospace, Menlo, monospace; font-size: .74rem; letter-spacing: .12em; color: var(--muted-2); }
.sw-copy__eyebrow { display: block; margin-top: 18px; font-weight: 700; font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; color: var(--sw-accent); }
.sw-copy__title { font-weight: 700; color: var(--bg-0); font-size: clamp(2rem, 4.4vw, 3.5rem); line-height: 1.03; margin: 12px 0 0; letter-spacing: -.01em; text-shadow: 0 2px 20px color-mix(in srgb, var(--cream) 70%, transparent); }
.sw-copy__body { margin-top: 18px; font-size: clamp(1rem, 1.25vw, 1.14rem); line-height: 1.55; color: color-mix(in srgb, var(--bg-0) 78%, var(--muted-2)); max-width: 40ch; text-shadow: 0 1px 12px color-mix(in srgb, var(--cream) 90%, transparent); }
.sw-copy__tags { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0 0; padding: 0; }
.sw-copy__tags li { font-size: .82rem; font-weight: 600; color: color-mix(in srgb, var(--sw-accent) 70%, #000); padding: 7px 14px; border-radius: 999px; background: color-mix(in srgb, var(--sw-accent) 14%, #fff); border: 1px solid color-mix(in srgb, var(--sw-accent) 30%, transparent); }
.sw-copy__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; pointer-events: auto; }
.sw-btn { font-weight: 600; font-size: .95rem; padding: 13px 24px; border-radius: 999px; transition: transform .2s; }
.sw-btn:hover { transform: translateY(-2px); }
.sw-btn--primary { color: #fff; background: var(--bg-0); }
.sw-btn--ghost { color: var(--bg-0); border: 1.5px solid color-mix(in srgb, var(--bg-0) 25%, transparent); }
.sw-btn:focus-visible, .sw-route__dot:focus-visible { outline: 2px solid var(--sw-accent); outline-offset: 3px; }
.sw-route { position: fixed; right: clamp(14px, 2.4vw, 30px); top: 50%; z-index: 40; transform: translateY(-50%); display: flex; flex-direction: column; gap: 22px; padding: 18px 10px; }
.sw-route::before { content: ""; position: absolute; left: 50%; top: 22px; bottom: 22px; width: 2px; transform: translateX(-50%); background: linear-gradient(180deg, transparent, color-mix(in srgb, var(--sw-accent) 40%, transparent) 12%, color-mix(in srgb, var(--sw-accent) 40%, transparent) 88%, transparent); opacity: .55; }
.sw-route__dot { position: relative; border: 0; background: transparent; cursor: pointer; width: 14px; height: 14px; display: grid; place-items: center; }
.sw-route__dot i { width: 9px; height: 9px; border-radius: 50%; background: color-mix(in srgb, var(--bg-0) 26%, transparent); transition: transform .3s, background .3s, box-shadow .3s; }
.sw-route__dot:hover i { transform: scale(1.25); background: var(--sw-accent); }
.sw-route__dot.is-active i { background: var(--sw-accent); transform: scale(1.45); box-shadow: 0 0 0 5px color-mix(in srgb, var(--sw-accent) 22%, transparent); }
.sw-route__label { position: absolute; right: calc(100% + 9px); top: 50%; transform: translateY(-50%) translateX(6px); width: max-content; white-space: nowrap; font-family: var(--display); font-size: .8rem; font-weight: 600; letter-spacing: .005em; color: var(--bg-0); background: color-mix(in srgb, var(--cream) 90%, #fff); backdrop-filter: blur(8px); padding: 7px 16px 7px 13px; border-radius: 12px; opacity: 0; pointer-events: none; transition: opacity .25s, transform .25s; border: 1px solid color-mix(in srgb, var(--sw-accent) 32%, transparent); box-shadow: 0 12px 28px -12px color-mix(in srgb, var(--bg-0) 70%, transparent); }
.sw-route__label::after { content: ""; position: absolute; right: -4px; top: 50%; width: 9px; height: 9px; transform: translateY(-50%) rotate(45deg); background: inherit; border: inherit; border-left: 0; border-bottom: 0; border-radius: 2px; }
.sw-route__dot:hover .sw-route__label, .sw-route__dot.is-active .sw-route__label { opacity: 1; transform: translateY(-50%) translateX(0); }
.sw-hint { position: fixed; left: 50%; bottom: 26px; z-index: 30; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 10px; font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); transition: opacity .3s; }
.sw-hint i { width: 22px; height: 34px; border-radius: 12px; border: 2px solid color-mix(in srgb, var(--bg-0) 28%, transparent); position: relative; }
.sw-hint i::after { content: ""; position: absolute; left: 50%; top: 7px; width: 4px; height: 7px; border-radius: 2px; background: var(--sw-accent); transform: translateX(-50%); animation: sw-wheel 1.7s ease-in-out infinite; }
@keyframes sw-wheel {
  0% { opacity: 0; top: 6px; }
  40% { opacity: 1; }
  100% { opacity: 0; top: 17px; }
}
.sw-track { position: relative; z-index: 1; width: 100%; pointer-events: none; }
@media (max-width: 860px) {
  .nav-links a { display: none; }
  .nav-burger { display: inline-flex; }
  .sw-copylayer::before { width: 100%; height: 60%; top: auto; bottom: 0; background: linear-gradient(0deg, var(--cream) 8%, color-mix(in srgb, var(--cream) 70%, transparent) 46%, transparent 100%); }
  .sw-copy { right: clamp(18px, 5vw, 64px); top: auto; bottom: clamp(64px, 14vh, 120px); bottom: calc(clamp(56px, 12dvh, 110px) + env(safe-area-inset-bottom)); transform: translateY(var(--sw-copy-shift, 0px)); width: auto; max-width: 560px; }
  .sw-copy__title { font-size: clamp(1.9rem, 7.5vw, 2.7rem); }
  .sw-copy__body { max-width: none; font-size: clamp(.98rem, 3.6vw, 1.1rem); }
  .sw-scene__video, .sw-scene__still { object-position: center 46%; }
  .sw-scene__still { transform: translateX(-2vw); }
  .sw-hint { bottom: calc(20px + env(safe-area-inset-bottom)); }
  .sw-route { gap: 16px; right: 6px; }
  .sw-route__label { display: none; }
}
@media (max-width: 860px) and (orientation: portrait) {
  .sw-scene__video, .sw-scene__still { object-position: center 44%; }
}
@media (hover: none) and (pointer: coarse) {
  .sw-route { padding: 14px 6px; }
  .sw-route__dot { width: 28px; height: 28px; }
  .sw-btn { padding: 15px 26px; }
}

/* ============================================================
   Scroll World — outro and navigation theme
   ============================================================ */

/* Cream → espresso transition between the world and pricing. */
.world-outro {
  min-height: 46vh;
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 60px;
  background: linear-gradient(180deg, var(--cream) 0%, #d9cdbb 26%, #6b5540 58%, var(--bg-0) 100%);
}
.world-outro .wrap { text-align: center; }
.world-outro .eyebrow { color: var(--accent-deep); }

/* Nav over the cream world: espresso text, primary logo, readable buttons. */
.nav.on-world {
  background: linear-gradient(180deg, rgba(245,239,230,0.86), rgba(245,239,230,0.58));
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(18,13,9,0.08);
  box-shadow: 0 10px 36px rgba(90,68,45,0.08);
}
.nav.on-world .nav-links a { color: #2f251b; }
.nav.on-world .nav-links a:hover { color: var(--bg-0); }
.nav.on-world .brand .sub { color: #3e3024; }
.nav.on-world .brand .sub-divide { background: rgba(18,13,9,0.28); }
.nav.on-world :is(.btn-ghost, .lang-toggle, .nav-burger) { background: rgba(245,239,230,0.36); }
.nav.on-world .btn-ghost { color: var(--bg-0); border-color: rgba(18,13,9,0.34); }
.nav.on-world .btn-ghost:hover { border-color: var(--accent); }
.nav.on-world .lang-toggle button { color: #4a3b2c; }
.nav.on-world .lang-toggle { border-color: rgba(18,13,9,0.24); }
.nav.on-world .nav-burger { border-color: rgba(18,13,9,0.28); }
.nav.on-world .nav-burger span { background: var(--bg-0); }
.nav.on-world.scrolled {
  background: rgba(245,239,230,0.9); backdrop-filter: blur(16px);
}

/* Keyboard focus must stay visible even with the custom cursor. */
.nav a:focus-visible, .nav button:focus-visible,
.mobile-menu a:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* Input and motion preferences shared across page components. */
@media (pointer: coarse) {
  body { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none; }
  .nav-burger { cursor: pointer; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .billing-spinner, .sw-hint i::after { animation: none; }
  .billing-option, .price-card, :is(.billing-dialog, .billing-catalog) .btn { transition: none; }
  .price-card:hover, .price-card.featured, .price-card.featured:hover { transform: none; }
  .pricing { scroll-behavior: auto; }
  .sw-pt { display: none; }
}
