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

:root {
  /* espresso backgrounds */
  --bg-0: #120d09;
  --bg-1: #1a1410;
  --bg-2: #241c15;
  --bg-3: #2f251c;
  --card:  #1e1812;
  --card-2:#26201a;

  /* 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);

  /* orange accent */
  --accent:        #e0823e;
  --accent-bright: #f5984c;
  --accent-deep:   #b9612a;
  --accent-glow:   rgba(224,130,62,0.55);
  --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;
}
@media (pointer: coarse) { body { cursor: auto; } }

::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; }
@media (pointer: coarse) { .cursor-dot, .cursor-ring { display: none; } }

/* ---------- 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: 1px solid var(--hairline); padding-top: 16px; padding-bottom: 16px;
}
.brand { display: flex; align-items: center; gap: 16px; }
.brand .logo { height: 25px; width: auto; display: block; }
.brand .sub-divide { width: 1px; height: 19px; background: var(--hairline); }
.brand .mark {
  font-weight: 700; font-size: 26px; letter-spacing: 0.34em;
  color: var(--cream); padding-left: 0.34em;
}
.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%; }
@media (max-width: 860px) {
  .nav-links a { display: none; }
}

/* ---------- 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: 1px solid var(--hairline); 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); }
@media (pointer: coarse) { .nav-burger { cursor: pointer; } }

.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: 1px solid var(--hairline);
  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: 860px) { .nav-burger { display: inline-flex; } }

@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: 1px solid var(--hairline); 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); }

/* ---------- hero ---------- */
.hero { position: relative; min-height: 100vh; display: flex; flex-direction: column; overflow: hidden; }
#hero-canvas { position: absolute; inset: 0; z-index: 0; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(120% 80% at 50% 110%, rgba(224,130,62,0.14), transparent 60%),
    linear-gradient(180deg, rgba(18,13,9,0.5) 0%, rgba(18,13,9,0) 35%, rgba(18,13,9,0.85) 100%);
}
.hero .wrap { z-index: 3; flex: 1 1 auto; display: flex; flex-direction: column; justify-content: center; padding-top: 80px; padding-bottom: 20px; }
/* reserve a right gutter for the mascot so hero text/stats never overlap it */
@media (min-width: 981px) {
  .hero .wrap { padding-right: clamp(260px, 27vw, 420px); }
  /* the headline + badge sit above the mascot, so let them use the full width */
  .hero h1, .hero-badge { margin-right: calc(-1 * clamp(260px, 27vw, 420px)); }
}
.hero-badge {
  display: inline-flex; align-self: flex-start; align-items: center; gap: 10px; padding: 8px 16px 8px 12px;
  border: 1px solid var(--hairline); border-radius: 100px; background: rgba(245,239,230,0.03);
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; color: var(--cream-2);
  margin-bottom: 32px; backdrop-filter: blur(6px);
}
.hero-badge .pulse {
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent-bright);
  box-shadow: 0 0 0 0 var(--accent-glow); animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 var(--accent-glow); }
  70% { box-shadow: 0 0 0 12px rgba(224,130,62,0); }
  100% { box-shadow: 0 0 0 0 rgba(224,130,62,0); }
}
.hero h1 {
  font-size: clamp(46px, 8.2vw, 128px); font-weight: 700; line-height: 0.95;
  letter-spacing: -0.03em; max-width: 16ch; text-wrap: balance;
}
.hero h1 .accent { color: var(--accent); }
.hero h1 .outline {
  color: transparent; -webkit-text-stroke: 1.4px var(--cream-2);
}
.hero-sub {
  margin-top: 30px; font-size: clamp(17px, 1.5vw, 21px); color: var(--cream-2);
  max-width: 52ch; line-height: 1.55; font-weight: 300;
}
.hero-cta { margin-top: 42px; display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero-meta {
  margin-top: 56px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px 32px; align-items: start;
  border-top: 1px solid var(--hairline); padding-top: 28px; max-width: 720px;
}
@media (max-width: 700px) { .hero-meta { grid-template-columns: repeat(2, 1fr); max-width: 420px; } }
.hero-meta .stat .num { font-size: 30px; font-weight: 700; letter-spacing: -0.02em; }
.hero-meta .stat .lbl { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; color: var(--muted); text-transform: uppercase; margin-top: 4px; }

.scroll-cue {
  position: relative; z-index: 3; flex: 0 0 auto; margin: 0 auto 18px; padding-top: 6px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.3em; color: var(--muted);
  text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 9px;
}
.scroll-cue .line { width: 1px; height: 34px; background: linear-gradient(var(--accent), transparent); position: relative; overflow: hidden; }
.scroll-cue .line::after { content: ""; position: absolute; top: -50%; left: 0; width: 1px; height: 50%; background: var(--cream); animation: drop 2s infinite var(--ease); }
@keyframes drop { 0% { top: -50%; } 100% { top: 100%; } }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }
.reveal-d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- section heading ---------- */
.section-pad { padding: clamp(44px, 6vh, 84px) 0; }
.sec-head { max-width: 820px; margin-bottom: clamp(22px, 3.2vh, 38px); }
.sec-head h2 {
  font-size: clamp(28px, 4vw, 52px); 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; }

/* ---------- AI / autonomy section ---------- */
.ai { background: linear-gradient(180deg, var(--bg-0), var(--bg-1) 50%, var(--bg-0)); }
.ai-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(40px, 5vw, 88px); align-items: center; }
@media (max-width: 940px) { .ai-grid { grid-template-columns: 1fr; } }
.ai-points { margin-top: 40px; display: flex; flex-direction: column; gap: 4px; }
.ai-point {
  display: flex; gap: 18px; padding: 22px 0; border-top: 1px solid var(--hairline);
  cursor: none;
}
.ai-point:last-child { border-bottom: 1px solid var(--hairline); }
.ai-point .idx { font-family: var(--mono); font-size: 12px; color: var(--accent); padding-top: 3px; }
.ai-point h4 { font-size: 19px; font-weight: 600; }
.ai-point p { color: var(--muted); font-size: 15px; margin-top: 6px; font-weight: 300; max-width: 44ch; }

/* console mock */
.console {
  border-radius: 16px;
  border: 1px solid var(--hairline); overflow: hidden; box-shadow: 0 40px 90px rgba(0,0,0,0.5);
  position: relative;
}
.console { background: linear-gradient(180deg, #221b14, #16110c); }
.console-bar { display: flex; align-items: center; gap: 8px; padding: 14px 18px; border-bottom: 1px solid var(--hairline); background: rgba(0,0,0,0.2); }
.console-bar .dot { width: 11px; height: 11px; border-radius: 50%; background: #3a2f24; }
.console-bar .title { font-family: var(--mono); font-size: 12px; color: var(--muted); margin-left: 10px; letter-spacing: 0.05em; }
.console-bar .live { margin-left: auto; font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; color: var(--accent); display: flex; align-items: center; gap: 7px; }
.console-bar .live .pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--accent-bright); animation: pulse 2s infinite; }
.console-body { padding: 22px; font-family: var(--mono); font-size: 13.5px; min-height: 360px; }
.log-line { display: flex; gap: 12px; padding: 7px 0; opacity: 0; transform: translateY(8px); }
.log-line.show { opacity: 1; transform: none; transition: all .4s var(--ease); }
.log-line .t { color: var(--muted-2); flex-shrink: 0; }
.log-line .tag { flex-shrink: 0; padding: 1px 8px; border-radius: 5px; font-size: 11px; letter-spacing: 0.05em; height: fit-content; }
.tag-agent { background: rgba(224,130,62,0.16); color: var(--accent-bright); }
.tag-ok { background: rgba(120,180,120,0.14); color: #8fd09a; }
.tag-book { background: rgba(120,150,220,0.14); color: #9fb4ec; }
.tag-watch { background: rgba(120,150,220,0.16); color: #9fb4ec; }
.tag-rev { background: rgba(120,185,130,0.16); color: #8fd09a; }
.tag-alert { background: rgba(228,176,72,0.18); color: #f1c878; }
.tag-action { background: rgba(224,130,62,0.20); color: var(--accent-bright); }
.tag-fraud { background: rgba(222,96,84,0.20); color: #f29186; }
.tag-report { background: rgba(245,239,230,0.10); color: var(--cream-2); }
.log-line .msg { color: var(--cream-2); }
.log-line .msg b { color: var(--cream); font-weight: 700; }
.console-foot { border-top: 1px solid var(--hairline); padding: 14px 22px; display: flex; align-items: center; gap: 12px; font-family: var(--mono); font-size: 12px; color: var(--muted); }
.console-foot .bar { flex: 1; height: 4px; border-radius: 2px; background: rgba(245,239,230,0.08); overflow: hidden; }
.console-foot .bar i { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--accent-deep), var(--accent-bright)); border-radius: 2px; transition: width 1.2s var(--ease); }

/* ---------- modules grid ---------- */
.mod-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.mod {
  background: var(--card); border: 1px solid var(--hairline); border-radius: 18px;
  padding: 32px; position: relative; overflow: hidden; cursor: none;
  transition: transform .4s var(--ease), border-color .4s, background .4s;
}
.mod::before {
  content: ""; position: absolute; inset: 0; opacity: 0;
  background: radial-gradient(120% 140% at var(--mx,50%) var(--my,0%), var(--accent-wash), transparent 55%);
  transition: opacity .4s;
}
.mod:hover { transform: translateY(-6px); border-color: rgba(224,130,62,0.4); background: var(--card-2); }
.mod:hover::before { opacity: 1; }
.mod .mod-no { font-family: var(--mono); font-size: 12px; color: var(--muted-2); }
.mod .mod-ic {
  width: 50px; height: 50px; border-radius: 13px; margin: 18px 0 22px;
  display: grid; place-items: center; background: rgba(224,130,62,0.1);
  border: 1px solid rgba(224,130,62,0.22);
}
.mod .mod-ic svg { width: 24px; height: 24px; stroke: var(--accent-bright); fill: none; stroke-width: 1.6; }
.mod h3 { font-size: 21px; font-weight: 600; letter-spacing: -0.01em; }
.mod p { color: var(--muted); font-size: 14.5px; margin-top: 10px; font-weight: 300; line-height: 1.55; }
.mod .tagline { margin-top: 18px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; color: var(--accent); text-transform: uppercase; display: flex; align-items: center; gap: 8px; }
.col-6 { grid-column: span 6; }
.col-4 { grid-column: span 4; }
.col-8 { grid-column: span 8; }
@media (max-width: 920px) { .col-6,.col-4,.col-8 { grid-column: span 12; } }

/* feature module (big) */
.mod-feature { display: flex; flex-direction: column; justify-content: space-between; min-height: 280px; background: linear-gradient(135deg, #271e16, #19130e); }
.mod-feature .visual {
  position: absolute; right: -40px; top: 50%; transform: translateY(-50%);
  width: 280px; height: 280px; opacity: 0.5;
}

/* ---------- how it works ---------- */
.how { background: var(--bg-1); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--hairline); border: 1px solid var(--hairline); border-radius: 18px; overflow: hidden; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .steps { grid-template-columns: 1fr; } }
.step { background: var(--bg-0); padding: 38px 30px; position: relative; transition: background .4s; }
.step:hover { background: var(--card); }
.step .step-no { font-family: var(--mono); font-size: 13px; color: var(--accent); }
.step .step-ic { margin: 22px 0; width: 38px; height: 38px; stroke: var(--cream-2); fill: none; stroke-width: 1.5; }
.step h4 { font-size: 19px; font-weight: 600; }
.step p { color: var(--muted); font-size: 14px; margin-top: 10px; font-weight: 300; line-height: 1.55; }

/* ---------- ecosystem marquee ---------- */
.eco { background: linear-gradient(180deg, var(--bg-0), var(--bg-1)); overflow: hidden; }
.marquee { display: flex; gap: 18px; width: max-content; animation: scroll-x 40s linear infinite; }
.marquee.rev { animation-direction: reverse; animation-duration: 52s; }
.marquee-row { overflow: hidden; padding: 9px 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-row:hover .marquee { animation-play-state: paused; }
@keyframes scroll-x { to { transform: translateX(-50%); } }
.chip {
  display: flex; align-items: center; justify-content: center; padding: 0 28px;
  width: 188px; height: 84px; border-radius: 16px; flex-shrink: 0;
  background: #ffffff; border: 1px solid var(--hairline);
  box-shadow: 0 10px 30px rgba(0,0,0,0.28);
  transition: transform .3s var(--ease), box-shadow .3s;
}
.chip img {
  max-height: 30px; max-width: 130px; width: auto; height: auto; object-fit: contain;
  transition: transform .3s var(--ease);
}
.chip img.mono { filter: brightness(0); }
.chip:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.4); }
.chip:hover img { transform: scale(1.06); }

/* ---------- stats band ---------- */
.statband { background: var(--bg-2); border-block: 1px solid var(--hairline); }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
@media (max-width: 820px) { .stat-grid { grid-template-columns: repeat(2, 1fr); } }
.stat-big .n { font-size: clamp(46px, 6vw, 84px); font-weight: 700; letter-spacing: -0.04em; line-height: 1; }
.stat-big .n .unit { color: var(--accent); }
.stat-big .c { margin-top: 14px; font-size: 15px; color: var(--muted); font-weight: 300; max-width: 24ch; }

/* ---------- CTA ---------- */
.cta { text-align: center; position: relative; 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 { font-size: clamp(40px, 7vw, 104px); 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: 26px; font-size: 19px; color: var(--cream-2); max-width: 46ch; font-weight: 300; }
.cta .hero-cta { justify-content: center; margin-top: 44px; }

/* ---------- footer ---------- */
.foot { background: var(--bg-0); border-top: 1px solid var(--hairline); 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 .logo-lg { height: 38px; width: auto; display: block; }
.foot .brand-lg .mark { font-size: 40px; font-weight: 700; letter-spacing: 0.3em; padding-left: 0.3em; }
.foot .brand-lg .sub { font-family: var(--mono); font-size: 10px; letter-spacing: 0.3em; color: var(--muted); text-transform: uppercase; margin-top: 8px; }
.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: 1px solid var(--hairline); 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: 1px solid var(--hairline); 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; }

/* ============================================================
   NEU — AI Concierge mascot (animated character)
   ============================================================ */
.mascot {
  position: absolute; right: clamp(24px, 6vw, 120px); top: 55%;
  transform: translateY(-42%); z-index: 3; width: 260px; height: 320px;
  pointer-events: none;
}
@media (max-width: 1180px) { .mascot { width: 210px; right: 3vw; opacity: .9; } }
@media (max-width: 980px)  { .mascot { display: none; } }

.m-stage { position: absolute; inset: 0; }
.m-float { position: absolute; left: 50%; top: 42%; transform: translate(-50%,-50%); animation: m-bob 5.5s ease-in-out infinite; }
@keyframes m-bob { 0%,100% { transform: translate(-50%,-54%); } 50% { transform: translate(-50%,-42%); } }
@media (prefers-reduced-motion: reduce) { .m-float { animation: none; } }

.m-glow {
  position: absolute; left: 50%; top: 46%; width: 320px; height: 320px;
  transform: translate(-50%,-50%); border-radius: 50%; z-index: 0;
  background: radial-gradient(circle, var(--accent-glow), transparent 62%);
  filter: blur(16px); opacity: .5; animation: m-pulse 5.5s ease-in-out infinite;
}
@keyframes m-pulse { 0%,100% { opacity:.32; } 50% { opacity:.6; } }

/* antenna */
.m-antenna { position: absolute; left: 50%; top: -30px; transform: translateX(-50%); width: 2px; height: 30px; background: linear-gradient(var(--cream-2), #6f5a45); }
.m-bulb { position: absolute; top: -9px; left: 50%; transform: translateX(-50%); width: 13px; height: 13px; border-radius: 50%; background: var(--accent-bright); box-shadow: 0 0 14px 3px var(--accent-glow); animation: m-blip 2.4s ease-in-out infinite; }
@keyframes m-blip { 0%,100% { transform: translateX(-50%) scale(.85); box-shadow: 0 0 8px 1px var(--accent-glow);} 50% { transform: translateX(-50%) scale(1.15); box-shadow: 0 0 18px 5px var(--accent-glow);} }

/* head / face screen */
.m-head {
  position: relative; width: 188px; height: 158px; border-radius: 42px;
  background: linear-gradient(155deg, #3a2c20, #221913);
  border: 1px solid rgba(245,239,230,0.14);
  box-shadow: inset 0 2px 10px rgba(255,255,255,0.06), inset 0 -16px 30px rgba(0,0,0,0.5), 0 30px 60px rgba(0,0,0,0.55);
}
.m-head::before { /* glossy face inset */
  content: ""; position: absolute; inset: 16px; border-radius: 30px;
  background: radial-gradient(120% 90% at 50% 16%, #1c1510, #0e0a07);
  box-shadow: inset 0 0 26px rgba(0,0,0,0.7);
}
.m-ears { position: absolute; top: 50%; width: 14px; height: 46px; border-radius: 6px; background: linear-gradient(#3a2c20,#221913); transform: translateY(-50%); }
.m-ears.l { left: -10px; } .m-ears.r { right: -10px; }

/* eyes */
.m-face { position: absolute; inset: 16px; border-radius: 30px; display: flex; align-items: center; justify-content: center; gap: 30px; z-index: 2; }
.m-eye { position: relative; width: 38px; height: 38px; border-radius: 50%; background: radial-gradient(circle at 50% 40%, rgba(245,152,76,0.25), rgba(224,130,62,0.06)); box-shadow: 0 0 18px rgba(224,130,62,0.35); }
.m-eye .pupil { position: absolute; left: 50%; top: 50%; width: 18px; height: 18px; border-radius: 50%; background: var(--accent-bright); box-shadow: 0 0 12px 2px var(--accent-glow); transform: translate(-50%,-50%); transition: transform .12s linear; }
.m-eye .pupil::after { content:""; position:absolute; top:3px; left:4px; width:5px; height:5px; border-radius:50%; background: #fff7ee; opacity:.85; }
.m-eye.blink { animation: m-blink 4.6s infinite; }
.m-eye.blink.d { animation-delay: .08s; }
@keyframes m-blink { 0%,92%,100% { transform: scaleY(1); } 95% { transform: scaleY(.08); } }

/* smile */
.m-smile { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); width: 34px; height: 16px; border: 2.5px solid rgba(245,152,76,0.55); border-top: none; border-radius: 0 0 30px 30px; z-index: 2; }

/* body base */
.m-body-base { position: absolute; left: 50%; bottom: -34px; transform: translateX(-50%); width: 120px; height: 40px; border-radius: 22px 22px 14px 14px; background: linear-gradient(155deg,#332619,#1d1610); border: 1px solid rgba(245,239,230,0.12); box-shadow: 0 16px 30px rgba(0,0,0,0.5); }
.m-body-base::before { content:""; position:absolute; top:11px; left:50%; transform:translateX(-50%); width:46px; height:6px; border-radius:4px; background: rgba(224,130,62,0.5); box-shadow: 0 0 10px var(--accent-glow); }

/* ground shadow */
.m-shadow { position: absolute; left: 50%; bottom: 8px; transform: translateX(-50%); width: 150px; height: 22px; border-radius: 50%; background: radial-gradient(circle, rgba(0,0,0,0.5), transparent 70%); filter: blur(4px); animation: m-shadow 5.5s ease-in-out infinite; }
@keyframes m-shadow { 0%,100% { width:140px; opacity:.45; } 50% { width:165px; opacity:.6; } }

/* trial pill under hero CTA */
.trial-note {
  margin-top: 22px; display: flex; align-items: 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)); }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
@media (max-width: 980px) { .price-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; } }

.price-card {
  background: var(--card); border: 1px solid var(--hairline); border-radius: 20px;
  padding: 36px 32px; display: flex; flex-direction: column; position: relative;
  transition: transform .4s var(--ease), border-color .4s, background .4s;
}
.price-card:hover { transform: translateY(-6px); border-color: rgba(224,130,62,0.35); }
.price-card.featured {
  border-color: rgba(224,130,62,0.55); background: linear-gradient(180deg, #271e16, #1b150f);
  box-shadow: 0 40px 90px rgba(0,0,0,0.5), inset 0 0 0 1px rgba(224,130,62,0.18);
}
@media (min-width: 981px) { .price-card.featured { transform: scale(1.04); } .price-card.featured:hover { transform: scale(1.04) translateY(-6px); } }

.pc-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #1a0f06; font-weight: 600; font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase; padding: 7px 16px; border-radius: 100px;
  font-family: var(--mono); white-space: nowrap;
}
.pc-name { font-family: var(--mono); font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); }
.pc-price { margin-top: 18px; display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.pc-price .amt { font-size: clamp(34px, 3.6vw, 46px); font-weight: 700; letter-spacing: -0.03em; line-height: 1; }
.pc-price .per { font-family: var(--mono); font-size: 13px; color: var(--muted); }
.pc-price-sub { margin-top: 10px; font-family: var(--mono); font-size: 12px; color: var(--muted-2); line-height: 1.7; }
.pc-desc { margin-top: 18px; color: var(--cream-2); font-size: 15px; font-weight: 300; line-height: 1.55; }
.pc-fit { margin-top: 16px; padding: 14px 16px; border-radius: 12px; background: rgba(245,239,230,0.04); border: 1px solid var(--hairline); font-size: 13.5px; color: var(--muted); line-height: 1.55; }
.pc-fit b { color: var(--cream-2); font-weight: 600; }

.pc-btn { margin-top: 26px; width: 100%; justify-content: center; }

.pc-divider { height: 1px; background: var(--hairline); margin: 28px 0 22px; }
.pc-feat-label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 16px; }
.pc-feat-label.plus { color: var(--accent); }
.pc-feats { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.pc-feats li { display: flex; align-items: flex-start; gap: 12px; font-size: 14.5px; color: var(--cream-2); font-weight: 300; line-height: 1.4; }
.pc-feats li svg { width: 17px; height: 17px; flex-shrink: 0; margin-top: 1px; fill: none; stroke-width: 2.2; }
.pc-feats li.inc svg { stroke: var(--accent-bright); }
.pc-feats li.exc { color: var(--muted-2); }
.pc-feats li.exc svg { stroke: var(--muted-2); stroke-width: 2; }
.pc-feats li.exc span { text-decoration: line-through; text-decoration-color: rgba(156,142,125,0.5); }
.pc-feats + .pc-feat-label { margin-top: 24px; }
.pc-note { margin-top: auto; }

/* ============================================================
   NEU — live property view (hotel-themed animation)
   ============================================================ */
.prop { background: var(--bg-1); }
.prop-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(36px, 5vw, 76px); align-items: center; }
@media (max-width: 940px) { .prop-grid { grid-template-columns: 1fr; } }

/* the building */
.hotel { perspective: 1400px; }
.hotel-building {
  background: linear-gradient(180deg, #2a2018, #14100b); border: 1px solid var(--hairline);
  border-radius: 22px 22px 10px 10px; padding: 26px 26px 0; position: relative; overflow: hidden;
  box-shadow: 0 45px 100px rgba(0,0,0,0.55);
}
.hotel-building::after { /* night sheen */
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(120% 60% at 50% -10%, rgba(224,130,62,0.10), transparent 60%);
}
.hotel-sign {
  text-align: center; font-family: var(--mono); letter-spacing: 0.32em; font-size: 12px;
  color: var(--accent); text-transform: uppercase; padding-bottom: 22px; position: relative;
}
.hotel-sign::after { content: ""; position: absolute; left: 50%; bottom: 10px; transform: translateX(-50%); width: 46px; height: 2px; background: var(--accent); box-shadow: 0 0 12px var(--accent-glow); }
.hotel-floors { display: flex; flex-direction: column; gap: 12px; padding-bottom: 24px; position: relative; z-index: 1; }
.floor { display: grid; grid-template-columns: repeat(8, 1fr); gap: 11px; }
.win {
  aspect-ratio: 1 / 1.15; border-radius: 5px; background: #1a130d;
  border: 1px solid rgba(245,239,230,0.05); transition: background .7s var(--ease), box-shadow .7s var(--ease);
  position: relative;
}
.win::before { content: ""; position: absolute; inset: 26% 38% auto 38%; height: 1px; background: rgba(0,0,0,0.35); }
.win.occ   { background: var(--accent);  box-shadow: 0 0 14px rgba(224,130,62,0.55); }
.win.arr   { background: #e8b25a;  box-shadow: 0 0 14px rgba(232,178,90,0.5); }
.win.clean { background: #7fa0e0;  box-shadow: 0 0 13px rgba(127,160,224,0.45); }
.win.ready { background: #79c995;  box-shadow: 0 0 12px rgba(121,201,149,0.4); }
.win.vac   { background: #1a130d;  box-shadow: none; }
.hotel-base { height: 40px; margin: 0 -26px; background: linear-gradient(180deg, #2f251c, #14100b); border-top: 1px solid var(--hairline); display: flex; align-items: center; justify-content: center; gap: 8px; }
.hotel-door { width: 30px; height: 22px; border-radius: 5px 5px 0 0; background: linear-gradient(180deg, rgba(224,130,62,0.55), rgba(224,130,62,0.12)); box-shadow: 0 0 16px var(--accent-glow); }

/* KPIs + legend */
.prop-side .prop-kpis { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.kpi { background: var(--card); border: 1px solid var(--hairline); border-radius: 16px; padding: 22px 22px; }
.kpi .v { font-size: clamp(30px, 3.4vw, 42px); font-weight: 700; letter-spacing: -0.03em; line-height: 1; }
.kpi .v .u { color: var(--accent); font-size: 0.6em; }
.kpi .k { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-top: 9px; }
.prop-legend { display: flex; flex-wrap: wrap; gap: 14px 22px; margin-top: 26px; }
.lg { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: var(--muted); }
.lg i { width: 12px; height: 12px; border-radius: 3px; display: inline-block; }
.lg.occ i { background: var(--accent); } .lg.arr i { background: #e8b25a; }
.lg.clean i { background: #7fa0e0; } .lg.ready i { background: #79c995; }
.lg.vac i { background: #2a2018; border: 1px solid var(--hairline); }

/* ============================================================
   NEU — one section per screen (compact / full-viewport panels)
   Each major section fits within a standard laptop/desktop screen.
   ============================================================ */
@media (min-width: 941px) {
  .ai, .prop, #modules, .how, .pricing, .cta {
    min-height: 100vh; display: flex; flex-direction: column; justify-content: center;
  }
  .eco { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; }
}

/* hero — tighten vertical rhythm so it clears one screen */
.hero h1 { font-size: clamp(40px, 7vw, 100px); }
.hero-badge { margin-bottom: 16px; }
.hero-sub { margin-top: 16px; line-height: 1.45; }
.hero-cta { margin-top: 24px; }
.trial-note { margin-top: 14px; }
.hero-meta { margin-top: 24px; padding-top: 20px; }
.hero .wrap { padding-bottom: 56px; }
@media (min-width: 941px) and (max-height: 800px) {
  .hero h1 { font-size: clamp(40px, 6vw, 84px); }
  .hero-sub { font-size: 16px; }
}

/* autonomy — compact points + console */
.ai-points { margin-top: 22px; gap: 0; }
.ai-point { padding: 14px 0; gap: 16px; }
.ai-point h4 { font-size: 17px; }
.ai-point p { font-size: 14px; margin-top: 4px; }
.ai .sec-head-inline { font-size: clamp(28px,4vw,52px) !important; margin-top: 14px !important; }
.ai p[data-i18n="auto.p"] { margin-top: 14px !important; font-size: 16px !important; }
.console-body { min-height: 200px; padding: 16px 18px; font-size: 12.5px; }
@media (max-height: 800px) {
  .console-body { min-height: 150px; }
  .ai-points { margin-top: 14px; }
  .ai-point { padding: 8px 0; gap: 14px; }
  .ai-point h4 { font-size: 16px; }
  .ai-point p { font-size: 13px; -webkit-line-clamp: 2; -webkit-box-orient: vertical; display: -webkit-box; overflow: hidden; }
  .ai p[data-i18n="auto.p"] { -webkit-line-clamp: 3; -webkit-box-orient: vertical; display: -webkit-box; overflow: hidden; }
  .ai .sec-head-inline { font-size: clamp(26px,3.4vw,42px) !important; }
}
.log-line { padding: 5px 0; }
.console-bar { padding: 11px 16px; }
.console-foot { padding: 11px 18px; }

/* modules — compact cards; flagship becomes a full-width banner so the
   7 modules fit as banner + two rows of three */
.mod-grid { gap: 14px; }
.mod { padding: 20px; border-radius: 14px; }
.mod .mod-ic { width: 40px; height: 40px; border-radius: 11px; margin: 12px 0 13px; }
.mod .mod-ic svg { width: 20px; height: 20px; }
.mod h3 { font-size: 17px; }
.mod p { font-size: 13px; margin-top: 7px; line-height: 1.45; }
.mod .tagline { margin-top: 12px; font-size: 10px; }
.mod-feature { min-height: 0; }
@media (min-width: 921px) {
  .mod-feature.col-8 { grid-column: span 12; flex-direction: row; align-items: center;
    justify-content: space-between; gap: 30px; padding: 22px 26px; }
  .mod-feature.col-8 > div:first-child { display: grid; grid-template-columns: auto 1fr;
    column-gap: 20px; row-gap: 4px; align-items: center; }
  .mod-feature.col-8 .mod-no { grid-column: 1 / -1; }
  .mod-feature.col-8 .mod-ic { grid-row: 2 / 4; margin: 6px 0; }
  .mod-feature.col-8 h3 { font-size: 21px !important; }
  .mod-feature.col-8 p { font-size: 13.5px !important; max-width: 80ch !important; margin-top: 2px; }
  .mod-feature.col-8 .tagline { margin-top: 0; flex-shrink: 0; max-width: 220px; text-align: right; }
}

/* how — compact step cards */
.step { padding: 24px 22px; }
.step .step-ic { margin: 14px 0; width: 32px; height: 32px; }
.step h4 { font-size: 17px; }
.step p { font-size: 13px; margin-top: 8px; }

/* property — compact KPIs + tighter building */
.kpi { padding: 16px 18px; }
.kpi .v { font-size: clamp(26px, 3vw, 36px); }
.kpi .k { margin-top: 6px; }
.prop-legend { margin-top: 18px; gap: 10px 18px; }
.hotel-building { padding: 20px 22px 0; }
.hotel-floors { gap: 9px; padding-bottom: 18px; }
.hotel-sign { padding-bottom: 16px; font-size: 11px; }

/* pricing — compact cards + feature lists */
.price-card { padding: 22px 22px; border-radius: 16px; }
.pc-price { margin-top: 12px; }
.pc-price .amt { font-size: clamp(28px, 3vw, 40px); }
.pc-desc { margin-top: 12px; font-size: 14px; line-height: 1.45; }
.pc-fit { margin-top: 12px; padding: 10px 12px; font-size: 12.5px; line-height: 1.45; }
.pc-btn { margin-top: 16px; }
.pc-divider { margin: 16px 0 14px; }
.pricing .pc-feat-label { margin-top: 14px !important; margin-bottom: 10px; }
.pc-feats { gap: 8px; }
.pc-feats li { font-size: 13.5px; line-height: 1.35; }

/* CTA — calmer headline scale */
.cta h2 { font-size: clamp(34px, 5vw, 72px); }
.cta p { margin-top: 16px; font-size: 17px; }
.cta .hero-cta { margin-top: 28px; }

/* ---- refinement pass: pull the three densest sections under one screen ---- */
@media (min-width: 921px) {
  /* modules: cap card copy to 2 lines for uniform short cards */
  #modules .sec-head h2 { font-size: clamp(26px, 3.4vw, 44px); }
  .mod-grid { gap: 12px; }
  .mod .mod-ic { margin: 9px 0 10px; width: 38px; height: 38px; }
  .mod p { -webkit-line-clamp: 2; -webkit-box-orient: vertical; display: -webkit-box; overflow: hidden; }
  .mod .tagline { margin-top: 10px; }
  .mod-feature.col-8 p { -webkit-line-clamp: 2; }

  /* property: smaller building + tighter side panel */
  .prop-grid { gap: clamp(28px, 4vw, 56px); }
  .hotel-building { padding: 14px 18px 0; }
  .hotel-sign { padding-bottom: 10px; }
  .hotel-floors { gap: 6px; padding-bottom: 12px; }
  .win { aspect-ratio: 1 / 1; border-radius: 4px; }
  .floor { gap: 8px; }
  .hotel-base { height: 30px; }
  .kpi { padding: 14px 16px; }
  .prop-side .prop-kpis { gap: 12px; }

  /* pricing: denser feature lists */
  .price-card { padding: 18px 20px; }
  .pc-desc { margin-top: 10px; }
  .pc-fit { margin-top: 10px; padding: 9px 11px; }
  .pc-btn { margin-top: 14px; }
  .pc-divider { margin: 12px 0 10px; }
  .pricing .pc-feat-label { margin-top: 10px !important; margin-bottom: 8px; }
  .pc-feats { gap: 6px; }
  .pc-feats li { line-height: 1.3; }
  .pc-price-sub { margin-top: 6px; line-height: 1.5; }

  /* final tightening for the two densest sections */
  #modules .sec-head, #pricing .sec-head { margin-bottom: clamp(16px, 2.4vh, 28px); }
  #modules .sec-head h2 { font-size: clamp(24px, 3vw, 38px); }
  #pricing .sec-head h2 { font-size: clamp(24px, 3vw, 40px); }
  .mod { padding: 16px 18px; }
  .mod-feature.col-8 { padding: 18px 22px; }
  .price-card { padding: 16px 18px; }
  .pc-feats { gap: 5px; }
  .pc-feats li { font-size: 13px; }
}

/* short/standard laptop screens (≈1366×768, 1536×864, 1440×900) — squeeze the densest sections */
@media (min-width: 941px) and (max-height: 920px) {
  /* hero: trim rhythm so headline + stats + scroll cue all clear the fold */
  .hero .wrap { padding-top: 64px; padding-bottom: 8px; }
  .hero-meta { margin-top: 18px; padding-top: 16px; }
  .hero-cta { margin-top: 20px; }
  .trial-note { margin-top: 10px; }
  .hero-sub { -webkit-line-clamp: 3; -webkit-box-orient: vertical; display: -webkit-box; overflow: hidden; }

  /* autonomy: tighten point list + console so it clears the fold */
  .ai .sec-head { margin-bottom: clamp(14px, 2vh, 24px); }
  .ai-points { margin-top: 16px; }
  .ai-point { padding: 11px 0; }
  .console-body { min-height: 180px; }

  /* property: shorter windows + tighter side panel */
  .win { aspect-ratio: 1 / 0.82; }
  .hotel-floors { gap: 5px; padding-bottom: 10px; }
  .prop-side .prop-kpis { gap: 10px; }
  .kpi { padding: 12px 14px; }
  .prop-legend { margin-top: 14px; }
  .prop .sec-head { margin-bottom: clamp(14px, 2vh, 24px); }

  /* modules: show full copy — recover height from chrome, not by truncating text */
  #modules .sec-head { margin-bottom: clamp(12px, 1.8vh, 20px); }
  #modules .sec-head p { display: none; }
  .mod-grid { gap: 10px; }
  .mod { padding: 13px 15px; }
  .mod .mod-no { font-size: 11px; }
  .mod .mod-ic { margin: 6px 0 8px; width: 32px; height: 32px; border-radius: 9px; }
  .mod .mod-ic svg { width: 17px; height: 17px; }
  .mod h3 { font-size: 16px; }
  .mod p { -webkit-line-clamp: 4; font-size: 12.5px; margin-top: 5px; line-height: 1.4; }
  .mod .tagline { margin-top: 7px; font-size: 10px; }
  .mod-feature.col-8 p { -webkit-line-clamp: 3; }

  /* pricing: a touch more breathing room so rows/heading don't crowd */
  .pricing .sec-head { margin-bottom: clamp(16px, 2.2vh, 26px); }
  .price-grid { gap: clamp(16px, 1.6vw, 24px); }
  .price-card { padding: 16px 18px; }
  .pc-price .amt { font-size: clamp(26px, 2.6vw, 36px); }
  .pc-desc { margin-top: 9px; font-size: 13px; }
  .pc-fit { margin-top: 9px; padding: 8px 11px; font-size: 12px; }
  .pc-btn { margin-top: 13px; }
  .pc-divider { margin: 11px 0 9px; }
  .pricing .pc-feat-label { margin-top: 10px !important; margin-bottom: 7px; }
  .pc-feats { gap: 6px; }
  .pc-feats li { font-size: 12.5px; line-height: 1.3; }
  .pc-feats li svg { width: 15px; height: 15px; }
  #pricing .sec-head p { display: none; }
}

/* ============================================================
   Scroll World (NEU hotel world) — theme overrides + outro
   ============================================================ */

/* Theme the injected engine (its own CSS lives in @layer sw, so these win). */
#world.sw-root {
  --sw-bg: #F5EFE6;
  --sw-ink: #120D09;
  --sw-ink-soft: #6F6356;
  --sw-accent: #E0823E;
  --sw-font-display: var(--display);
  --sw-font-body: var(--display);
}

/* Cream → espresso transition between the world and pricing. */
.world-outro {
  position: relative; z-index: 2;
  min-height: 46vh;
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 60px;
  background: linear-gradient(180deg, #F5EFE6 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, darkened 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);
  padding-top: 16px;
  padding-bottom: 16px;
}
.nav.on-world .nav-links a { color: #2f251b; }
.nav.on-world .nav-links a:hover { color: #120D09; }
.nav.on-world .brand .logo { filter: brightness(0.15) sepia(0.4); }
.nav.on-world .brand .sub { color: #3e3024; }
.nav.on-world .brand .sub-divide { background: rgba(18,13,9,0.28); }
.nav.on-world .btn-ghost { color: #120D09; border-color: rgba(18,13,9,0.34); background: rgba(245,239,230,0.36); }
.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); background: rgba(245,239,230,0.36); }
.nav.on-world .nav-burger { border-color: rgba(18,13,9,0.28); background: rgba(245,239,230,0.36); }
.nav.on-world .nav-burger span { background: #120D09; }
.nav.on-world.scrolled {
  background: rgba(245,239,230,0.9); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(18,13,9,0.08);
}

/* 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; }

