/* ============================================================
   minirez lander — design system
   Family DNA: Adviceal family (minirez · maxirez · mixipos · mixifin).
   Deep navy anchors, cyan→blue→royal-blue accent (the original minirez.com
   blue), lowercase wordmark, "different horizon" motif. Light-predominant:
   the statement, pricing spotlight, demo CTA, finale and footer stay dark as
   anchors; the panel mock / roomrack / channel / chat surfaces stay navy-dark
   so they pop off the paper.
   ============================================================ */

:root {
  /* deep teal-navy near-black base (the turquoise ramp glows on it) */
  --bg0: #041623;
  --bg1: #073048;
  --ink: #ecf7fb;
  --muted: #9dc4d8;
  --line: rgba(140, 215, 240, 0.14);

  /* TURQUOISE ramp — the whole site inherits --grad */
  --brand1: #35e2d2;  /* turquoise — gradient light end / glow / chart dots */
  --brand2: #1fb6dd;  /* cyan — core brand / primary CTA */
  --brand3: #0e86c4;  /* ocean blue — gradient anchor */
  --grad: linear-gradient(100deg, var(--brand1), var(--brand2) 52%, var(--brand3));

  --gold: #f5b84b;
  --ok: #34d399;
  --warn: #fb7185;

  /* cool light surfaces */
  --paper: #f6fbfd;
  --paper-tint: #e9f4f9;
  --ink-dark: #0a2433;
  --muted-dark: #46687e;
  --line-dark: rgba(10, 50, 70, 0.10);

  /* legibility tokens — the bright ramp is illegible as small text on paper */
  --accent-ink: #0c7fae;  /* deep teal-blue for icon strokes, tag text, kickers on light */
  --on-grad: #03202c;     /* near-black-teal text ON gradient buttons/pills */

  --font-display: 'Sora', 'Segoe UI', system-ui, sans-serif;
  --font-text: 'Inter', 'Segoe UI', system-ui, sans-serif;

  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 24px 70px -28px rgba(10, 6, 32, 0.62);
  --maxw: 1180px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}
body {
  margin: 0;
  font-family: var(--font-text);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-dark);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: rgba(31, 182, 221, 0.28); color: #0b0524; }

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.12; margin: 0; letter-spacing: -0.02em; color: var(--ink-dark); }
p { margin: 0; }
button { font-family: inherit; }

.container { width: min(var(--maxw), 100% - 48px); margin-inline: auto; }
.container--narrow { width: min(840px, 100% - 48px); }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--ink-dark);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 10px 0;
}
.skip:focus { left: 0; }

/* ---------------- scroll progress ---------------- */
.progress {
  position: fixed;
  inset-inline: 0;
  top: 0;
  height: 3px;
  z-index: 60;
  background: var(--grad);
  transform-origin: left;
  transform: scaleX(0);
}

/* ---------------- buttons & chips ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn--primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 12px 32px -10px rgba(31, 182, 221, 0.55);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 42px -10px rgba(31, 182, 221, 0.68); }
.btn--shine::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 44px;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: skewX(-20deg);
  left: -70px;
  animation: shine 3.8s ease-in-out infinite;
}
@keyframes shine {
  0%, 64% { left: -70px; }
  82%, 100% { left: 130%; }
}
.btn--ghost {
  border-color: var(--line-dark);
  color: var(--ink-dark);
  background: rgba(22, 18, 58, 0.03);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { border-color: rgba(31, 182, 221, 0.5); transform: translateY(-2px); }
/* ghost buttons sitting on a dark anchor section need the inverted treatment */
.pricing .btn--ghost,
.demo .btn--ghost,
.finale .btn--ghost {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.05);
}
.pricing .btn--ghost:hover,
.demo .btn--ghost:hover,
.finale .btn--ghost:hover { border-color: rgba(31, 182, 221, 0.7); }
.btn--lg { padding: 16px 30px; font-size: 16px; }
.btn--sm { padding: 9px 18px; font-size: 14px; }
.btn--block { display: flex; justify-content: center; width: 100%; }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--accent-ink);
  border: 1px solid rgba(31, 182, 221, 0.30);
  background: rgba(31, 182, 221, 0.08);
  padding: 8px 16px;
  border-radius: 999px;
  transition: border-color 0.2s, background 0.2s;
}
.chip:hover { border-color: rgba(31, 182, 221, 0.6); background: rgba(31, 182, 221, 0.14); }
.chip__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--brand2);
  box-shadow: 0 0 0 0 rgba(31, 182, 221, 0.7);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(31, 182, 221, 0.6); }
  70% { box-shadow: 0 0 0 9px rgba(31, 182, 221, 0); }
  100% { box-shadow: 0 0 0 0 rgba(31, 182, 221, 0); }
}

.kicker {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin-bottom: 14px;
}
.kicker--accent { color: var(--brand3); }

/* ---------------- nav ---------------- */
.nav {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(248, 248, 253, 0.86);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line-dark);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 72px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand__mark { width: 32px; height: 32px; }
.brand__img { height: 26px; width: auto; display: block; }
.footer .brand__img { height: 30px; }
.brand__word {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -0.03em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.nav__links { display: flex; gap: 22px; margin-inline: auto; align-items: center; }
.nav__links > a, .nav__drop > button {
  font-family: var(--font-text);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--muted-dark);
  transition: color 0.2s;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.nav__links > a:hover, .nav__drop > button:hover { color: var(--ink-dark); }

.nav__drop { position: relative; }
.nav__drop > button svg { transition: transform 0.2s; }
.nav__drop.is-open > button svg { transform: rotate(180deg); }
.nav__menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translate(-50%, 8px);
  width: 300px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: 16px;
  box-shadow: 0 30px 60px -26px rgba(22, 18, 58, 0.32);
  display: grid;
  gap: 2px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.nav__drop.is-open .nav__menu { opacity: 1; transform: translate(-50%, 0); pointer-events: auto; }
.nav__menu a {
  display: block;
  padding: 9px 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted-dark);
  transition: background 0.18s, color 0.18s;
}
.nav__menu a:hover { background: var(--paper-tint); color: var(--ink-dark); }
.nav__menu a em { display: block; font-style: normal; font-size: 12.5px; color: rgba(92, 88, 136, 0.72); }

.nav__cta { display: flex; gap: 12px; align-items: center; }
.nav__phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted-dark);
  transition: color 0.2s;
  white-space: nowrap;
}
.nav__phone:hover { color: var(--accent-ink); }
.nav__login { gap: 7px; }
.nav__login svg { opacity: 0.85; }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
  margin-left: auto;
}
.nav__burger span { width: 22px; height: 2px; background: var(--ink-dark); border-radius: 2px; transition: 0.25s; }
.nav__sheet { display: none; }

@media (max-width: 1180px) {
  .nav__phone { display: none; }
}
@media (max-width: 1020px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__sheet {
    position: absolute;
    inset-inline: 0;
    top: 100%;
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 10px 24px 24px;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    background: rgba(248, 248, 253, 0.985);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line-dark);
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .nav.is-open .nav__sheet { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav.is-open { background: rgba(248, 248, 253, 0.985); }
  .nav__sheet a { padding: 12px 4px; font-weight: 600; color: var(--ink-dark); border-bottom: 1px solid var(--line-dark); }
  .nav__sheet h5 {
    margin: 18px 0 4px;
    font-family: var(--font-display);
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-ink);
  }
  .nav__sheet .btn { margin-top: 14px; justify-content: center; border-bottom: 0; }
  .nav.is-open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.is-open .nav__burger span:nth-child(2) { opacity: 0; }
  .nav.is-open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ---------------- hero ---------------- */
.hero {
  position: relative;
  padding: 164px 0 92px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 95% 75% at 50% -12%, #dfe0ff 0%, transparent 62%),
    linear-gradient(180deg, #eef0ff 0%, var(--paper) 72%);
}
.hero__sky { position: absolute; inset: 0; pointer-events: none; }
.aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  animation: drift 14s ease-in-out infinite alternate;
  will-change: transform;
}
.aurora--1 { width: 640px; height: 460px; background: rgba(47, 201, 232, 0.30); top: -180px; left: -120px; }
.aurora--2 { width: 720px; height: 520px; background: rgba(30, 79, 184, 0.22); top: -120px; right: -200px; animation-delay: -5s; }
.aurora--3 { width: 460px; height: 380px; background: rgba(31, 182, 221, 0.20); bottom: -160px; left: 32%; animation-delay: -9s; }
@keyframes drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(46px, 28px, 0) scale(1.09); }
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(22, 18, 58, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 18, 58, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 75% 60% at 50% 0%, #000 35%, transparent 78%);
}
.hero__horizon {
  position: absolute;
  inset-inline: -10%;
  bottom: -2px;
  height: 220px;
  background: radial-gradient(ellipse 60% 100% at 50% 100%, rgba(31, 182, 221, 0.16), transparent 70%);
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 54px;
  align-items: center;
}
.hero__title {
  font-size: clamp(38px, 5.2vw, 64px);
  font-weight: 800;
  margin: 26px 0 22px;
}
.hero__sub { font-size: 17.5px; color: var(--muted-dark); max-width: 54ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 26px; }
.hero__price {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--font-display);
  margin-bottom: 26px;
}
.hero__price b { font-size: 30px; font-weight: 800; }
.hero__price span { font-size: 14.5px; color: var(--muted-dark); font-weight: 600; }
.hero__price em { font-style: normal; font-size: 13px; color: var(--accent-ink); font-weight: 700; }

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13.5px;
  color: var(--muted-dark);
}
.hero__trust li { display: flex; align-items: center; gap: 8px; }
.hero__trust li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand2);
  flex: none;
}

/* ---------------- panel mock ---------------- */
.hero__visual { position: relative; }
.mock {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--bg1);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transform: perspective(1600px) rotateY(-7deg) rotateX(3deg);
  transition: transform 0.5s ease;
}
.mock:hover { transform: perspective(1600px) rotateY(-2deg) rotateX(1deg); }
.mock__chrome {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 14px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--line);
}
.mock__dot { width: 9px; height: 9px; border-radius: 50%; }
.mock__url {
  margin-left: 12px;
  font-size: 11.5px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.05);
  padding: 3px 12px;
  border-radius: 999px;
}
.mock__body { display: grid; grid-template-columns: 132px minmax(0, 1fr); min-height: 430px; }
.mock__side {
  padding: 16px 10px;
  border-right: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.18);
}
.mock__sidebrand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  padding: 0 8px 14px;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.mock__sideitem {
  font-size: 11.5px;
  color: var(--muted);
  padding: 6px 9px;
  border-radius: 8px;
  margin-bottom: 2px;
  white-space: nowrap;
}
.mock__sideitem.is-active { background: rgba(31, 182, 221, 0.18); color: var(--ink); }
.mock__sideitem--ai { display: flex; align-items: center; justify-content: space-between; gap: 6px; }
.mock__sideitem--ai span {
  font-size: 9px;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 999px;
  background: var(--grad);
  color: #fff;
}
.mock__main { padding: 16px; color: var(--ink); }
.mock__head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 14px; gap: 12px; }
.mock__title { font-family: var(--font-display); font-weight: 700; font-size: 15px; }
.mock__subtitle { font-size: 11px; color: var(--muted); }
.mock__pills { display: flex; gap: 5px; }
.mock__pills span {
  font-size: 10px;
  padding: 3px 9px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
}
.mock__pills .is-on { background: rgba(31, 182, 221, 0.22); color: var(--ink); border-color: transparent; }

.mock__cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 12px; }
.kpi {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 9px 10px;
  display: grid;
  gap: 2px;
}
.kpi__label { font-size: 9.5px; color: var(--muted); }
.kpi__value { font-family: var(--font-display); font-weight: 700; font-size: 16px; }
.kpi__value--ok { color: var(--ok); }
.kpi__delta { font-size: 9.5px; color: var(--muted); }
.kpi__delta--up { color: var(--ok); }

.mock__chartcard {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 11px 12px 8px;
  margin-bottom: 10px;
}
.mock__chartcard-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--ink);
  margin-bottom: 6px;
  gap: 10px;
}
.mock__toggle { display: flex; gap: 4px; }
.mock__toggle button {
  font-size: 9.5px;
  padding: 3px 9px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: none;
  color: var(--muted);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.mock__toggle .is-on { background: rgba(31, 182, 221, 0.22); color: var(--ink); border-color: transparent; }
.mock__legend { display: flex; gap: 12px; font-size: 9.5px; color: var(--muted); margin-bottom: 4px; }
.mock__legend span { display: inline-flex; align-items: center; gap: 5px; }
.lg { width: 9px; height: 3px; border-radius: 2px; display: inline-block; }
.lg--line { background: var(--brand2); }
.lg--direct { background: rgba(52, 211, 153, 0.6); }
.lg--ota { background: rgba(47, 201, 232, 0.6); }
#occChart, #bigChart { width: 100%; height: auto; }
.mock__xlabels { display: flex; justify-content: space-between; font-size: 9px; color: var(--muted); padding: 0 4px; }

.mock__row2 { display: grid; grid-template-columns: 1.15fr 1fr; gap: 10px; }
.mock__barcard, .mock__agingcard {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 11px 12px;
}
.mock__barcard-title { font-size: 10.5px; color: var(--ink); display: block; margin-bottom: 8px; }
.mock__barcard-title em { color: var(--muted); font-style: normal; }
.catbars { display: grid; gap: 7px; }
.catbar { display: grid; grid-template-columns: 58px 1fr 30px; gap: 7px; align-items: center; font-size: 9.5px; color: var(--muted); }
.catbar__track { height: 6px; border-radius: 999px; background: rgba(255, 255, 255, 0.07); overflow: hidden; }
.catbar__fill { height: 100%; border-radius: 999px; background: var(--grad); width: 0; transition: width 1s cubic-bezier(0.22, 1, 0.36, 1); }
.catbar b { color: var(--ink); font-weight: 600; text-align: right; }

.donutwrap { display: flex; align-items: center; gap: 10px; }
.donut { width: 84px; height: 84px; flex: none; }
.donut__bg { fill: none; stroke: rgba(255, 255, 255, 0.07); stroke-width: 15; }
.donut__seg { fill: none; stroke-width: 15; stroke-linecap: butt; transition: stroke-dasharray 1s cubic-bezier(0.22, 1, 0.36, 1); }
.donut__legend { display: grid; gap: 4px; font-size: 9.5px; color: var(--muted); }
.donut__legend div { display: flex; align-items: center; gap: 6px; }
.donut__legend i { width: 7px; height: 7px; border-radius: 2px; flex: none; }
.donut__legend b { color: var(--ink); font-weight: 600; }

/* floating cards over the mock */
.float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(18, 10, 46, 0.92);
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 10px 13px;
  box-shadow: 0 18px 44px -18px rgba(10, 6, 32, 0.7);
  backdrop-filter: blur(12px);
  color: var(--ink);
  animation: bob 5.5s ease-in-out infinite;
  z-index: 2;
}
.float strong { font-size: 12px; display: block; font-family: var(--font-display); }
.float p { font-size: 10.5px; color: var(--muted); }
.float p span { color: var(--brand1); font-weight: 600; }
.float__icon {
  width: 30px; height: 30px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 700;
  flex: none;
}
.float__icon--ota { background: rgba(47, 201, 232, 0.18); color: var(--brand1); }
.float__icon--ok { background: rgba(52, 211, 153, 0.18); color: var(--ok); }
.float--booking { left: -34px; top: 16%; }
.float--checkin { right: -26px; bottom: 20%; animation-delay: -2.6s; }
.float--kbs {
  left: 8%;
  bottom: -20px;
  font-size: 11px;
  gap: 6px;
  animation-delay: -4s;
}
.float--kbs b { color: var(--brand1); }
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

/* ---------------- marquee ---------------- */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line-dark);
  background: var(--paper-tint);
  padding: 15px 0;
}
.marquee__track {
  display: flex;
  gap: 26px;
  width: max-content;
  animation: slide 46s linear infinite;
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted-dark);
  white-space: nowrap;
}
.marquee__track i { color: var(--brand2); font-style: normal; }
@keyframes slide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------------- statement (dark anchor) ---------------- */
.statement {
  position: relative;
  padding: 110px 0;
  text-align: center;
  color: var(--ink);
  background:
    radial-gradient(ellipse 60% 70% at 50% 0%, rgba(31, 182, 221, 0.22), transparent 70%),
    radial-gradient(ellipse 50% 60% at 85% 100%, rgba(30, 79, 184, 0.16), transparent 70%),
    var(--bg0);
}
.statement__quote {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.4vw, 40px);
  font-weight: 700;
  line-height: 1.25;
  max-width: 22ch;
  margin-inline: auto;
  letter-spacing: -0.02em;
}
.statement__sub {
  margin: 26px auto 0;
  max-width: 62ch;
  color: var(--muted);
  font-size: 16.5px;
}
.statement__sub strong { color: var(--ink); }
.statement__family {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 38px;
}
.statement__family a, .statement__family span {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14.5px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.22s, background 0.22s, transform 0.22s;
}
.statement__family a:hover { border-color: rgba(31, 182, 221, 0.6); background: rgba(31, 182, 221, 0.1); transform: translateY(-2px); }
.statement__family em { font-style: normal; font-size: 12.5px; color: var(--muted); }
.statement__family .is-hot {
  border-color: transparent;
  background: var(--grad);
  color: #fff;
}
.statement__family .is-hot em { color: rgba(255, 255, 255, 0.82); }

/* ---------------- sections ---------------- */
.section { padding: 108px 0; position: relative; }
.section[id] { scroll-margin-top: 88px; }
.section--light { background: var(--paper); color: var(--ink-dark); }
.section--light p { color: var(--muted-dark); }
.section--tint { background: var(--paper-tint); }

.section__head { max-width: 680px; margin-bottom: 56px; }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head h2 { font-size: clamp(29px, 3.9vw, 45px); font-weight: 800; margin-bottom: 18px; }
.section__head p { font-size: 17px; color: var(--muted-dark); }

/* ---------------- real screenshots ---------------- */
.shots__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.shot {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background: #fff;
  box-shadow: 0 24px 60px -34px rgba(22, 18, 58, 0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}
.shot:hover { transform: translateY(-4px); box-shadow: 0 30px 70px -32px rgba(22, 18, 58, 0.46); }
.shot--lead { grid-column: 1 / -1; }
.shot__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 13px;
  background: var(--paper-tint);
  border-bottom: 1px solid var(--line-dark);
}
.shot__dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(22, 18, 58, 0.16); }
.shot__addr {
  margin-left: 8px;
  font-size: 11.5px;
  color: var(--muted-dark);
  background: #fff;
  border: 1px solid var(--line-dark);
  padding: 2px 12px;
  border-radius: 999px;
}
.shot__frame { background: #fff; }
.shot__frame img { width: 100%; height: auto; }
.shot figcaption { padding: 15px 18px 18px; font-size: 14px; color: var(--muted-dark); }
.shot figcaption strong { color: var(--ink-dark); }
.shot.img-fail .shot__frame {
  aspect-ratio: 16 / 9;
  background: linear-gradient(130deg, #dfe4ff, #efe4ff 55%, #e2f0ff);
  position: relative;
}
.shot.img-fail .shot__frame img { display: none; }
.shot.img-fail .shot__frame::after {
  content: 'minirez';
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: rgba(22, 18, 58, 0.24);
}

/* ---------------- features ---------------- */
.grid { display: grid; gap: 20px; }
.features { grid-template-columns: repeat(4, 1fr); }
/* modifier, not an inline style — inline would out-rank the mobile media query */
.features--3 { grid-template-columns: repeat(3, 1fr); }
.fcard {
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: transform 0.28s, border-color 0.28s, box-shadow 0.28s;
}
.fcard:hover {
  transform: translateY(-5px);
  border-color: rgba(31, 182, 221, 0.4);
  box-shadow: 0 26px 56px -30px rgba(22, 18, 58, 0.36);
}
.fcard__icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(31, 182, 221, 0.10);
  margin-bottom: 16px;
}
.fcard__icon svg {
  width: 21px; height: 21px;
  fill: none;
  stroke: var(--accent-ink);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.fcard h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.fcard p { font-size: 14.5px; color: var(--muted-dark); }
.fcard__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.fcard__tags span {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--accent-ink);
  background: rgba(31, 182, 221, 0.09);
  border-radius: 999px;
  padding: 4px 11px;
}

/* ---------------- spotlight (copy + set-piece) ---------------- */
.spotlight__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: center;
}
.spotlight__inner--flip .spotlight__copy { order: 2; }
.spotlight__copy h2 { font-size: clamp(28px, 3.6vw, 42px); font-weight: 800; margin-bottom: 18px; }
.spotlight__copy > p { font-size: 16.5px; color: var(--muted-dark); }
.spotlight__hint { margin-top: 20px; font-size: 14px; color: var(--muted-dark); }
.spotlight__hint kbd {
  font-family: var(--font-text);
  font-size: 12px;
  font-weight: 600;
  border: 1px solid var(--line-dark);
  border-bottom-width: 2px;
  border-radius: 6px;
  padding: 2px 7px;
  background: #fff;
  color: var(--ink-dark);
}
.ticklist { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 11px; }
.ticklist li { position: relative; padding-left: 30px; font-size: 15px; color: var(--muted-dark); }
.ticklist li strong { color: var(--ink-dark); }
.ticklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 17px; height: 17px;
  border-radius: 50%;
  background: rgba(31, 182, 221, 0.12);
}
.ticklist li::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 12px;
  width: 6px; height: 3px;
  border-left: 2px solid var(--accent-ink);
  border-bottom: 2px solid var(--accent-ink);
  transform: rotate(-45deg);
}
.spotlight__visual { position: relative; }

/* shared dark surface for set-pieces */
.piece {
  background: linear-gradient(160deg, var(--bg1), var(--bg0));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: var(--ink);
  padding: 18px;
}

/* ---------------- roomrack set-piece ---------------- */
.rack__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 12.5px;
  margin-bottom: 12px;
  font-family: var(--font-display);
}
.rack__legend { display: flex; flex-wrap: wrap; gap: 10px; font-size: 10.5px; color: var(--muted); font-family: var(--font-text); }
.rack__legend span { display: inline-flex; align-items: center; gap: 5px; }
.rack__legend i { width: 9px; height: 9px; border-radius: 3px; display: inline-block; }
.i-free { background: rgba(52, 211, 153, 0.7); }
.i-stay { background: rgba(31, 182, 221, 0.8); }
.i-clean { background: rgba(245, 184, 75, 0.8); }
.i-vip { background: rgba(30, 79, 184, 0.85); }

.rack__grid { display: grid; gap: 5px; }
.rack__row { display: grid; grid-template-columns: 52px repeat(12, minmax(0, 1fr)); gap: 4px; align-items: center; }
.rack__room {
  font-size: 10.5px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 5px;
}
.rack__room i { width: 7px; height: 7px; border-radius: 2px; flex: none; }
.rack__cell {
  height: 20px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}
.rack__book {
  position: absolute;
  inset: 0;
  border-radius: 5px;
  display: flex;
  align-items: center;
  padding-inline: 6px;
  font-size: 9px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.rack__book.is-in { transform: scaleX(1); }
.rack__book--stay { background: linear-gradient(100deg, #0e86c4, #1fb6dd); }
.rack__book--vip { background: linear-gradient(100deg, #0e86c4, #35e2d2); }
.rack__book--clean { background: linear-gradient(100deg, #f5b84b, #f59e0b); color: #3a2600; }
.rack__book--new { box-shadow: 0 0 0 2px rgba(47, 201, 232, 0.55); }
.rack__foot {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  color: var(--muted);
}
.rack__foot b { color: var(--ink); }
.rack__toast {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  color: var(--ok);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s, transform 0.3s;
}
.rack__toast.is-on { opacity: 1; transform: none; }

/* ---------------- channel fan-out set-piece ---------------- */
.chan { display: grid; gap: 14px; }
.chan__src {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 14px;
}
.chan__row { display: flex; justify-content: space-between; align-items: center; gap: 10px; font-size: 12.5px; }
.chan__row strong { font-family: var(--font-display); }
.chan__price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  margin: 8px 0 4px;
}
.chan__price small { font-size: 13px; font-weight: 600; color: var(--muted); }
.chan__prev { color: var(--muted); font-size: 11px; }
.chan__ctl { display: flex; gap: 8px; margin-top: 10px; }
.chan__note { font-size: 10.5px; color: var(--muted); margin-top: 8px; }
.chan__list { display: grid; gap: 7px; }
.chan__item {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 10px;
  align-items: center;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 9px 12px;
  font-size: 12px;
  transition: border-color 0.3s, background 0.3s;
}
.chan__item.is-synced { border-color: rgba(52, 211, 153, 0.4); background: rgba(52, 211, 153, 0.06); }
.chan__val { font-family: var(--font-display); font-weight: 700; font-size: 13px; color: var(--muted); transition: color 0.3s; }
.chan__item.is-synced .chan__val { color: var(--ink); }
.chan__state { font-size: 10px; color: var(--muted); display: inline-flex; align-items: center; gap: 5px; min-width: 82px; justify-content: flex-end; }
.chan__item.is-synced .chan__state { color: var(--ok); }
.chan__spin {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-top-color: var(--brand1);
  animation: spin 0.9s linear infinite;
}
.chan__item.is-synced .chan__spin { display: none; }
.chan__tick { display: none; }
.chan__item.is-synced .chan__tick { display: inline; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------------- online check-in set-piece ---------------- */
.checkin { display: grid; grid-template-columns: 214px minmax(0, 1fr); gap: 18px; align-items: center; }
.phone { display: grid; justify-items: center; gap: 10px; }
.phone__bezel {
  width: 200px;
  border-radius: 30px;
  padding: 12px 10px 16px;
  background: #05030f;
  border: 1px solid var(--line);
  box-shadow: 0 26px 60px -26px rgba(10, 6, 32, 0.85);
  position: relative;
}
.phone__cam {
  position: absolute;
  top: 7px; left: 50%;
  transform: translateX(-50%);
  width: 42px; height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}
.phone__screen {
  border-radius: 20px;
  background: linear-gradient(170deg, var(--bg1), var(--bg0));
  min-height: 286px;
  padding: 16px 13px;
  font-size: 11.5px;
  overflow: hidden;
}
.phone__dots { display: flex; gap: 6px; }
.phone__dots i { width: 6px; height: 6px; border-radius: 50%; background: rgba(255, 255, 255, 0.18); transition: background 0.3s; }
.phone__dots i.is-on { background: var(--brand2); }

.pstep { display: grid; gap: 10px; animation: fadeup 0.4s ease both; }
@keyframes fadeup {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}
.pstep__title { font-family: var(--font-display); font-weight: 700; font-size: 13px; }
.pstep__sub { font-size: 10.5px; color: var(--muted); }
.pstep__card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 10px;
  display: grid;
  gap: 5px;
}
.pstep__line { display: flex; justify-content: space-between; gap: 8px; font-size: 10.5px; color: var(--muted); }
.pstep__line b { color: var(--ink); font-weight: 600; }
.pstep__scan {
  height: 86px;
  border-radius: 11px;
  border: 1px dashed rgba(150, 190, 255, 0.4);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  font-size: 10px;
  color: var(--muted);
}
.pstep__scan::after {
  content: '';
  position: absolute;
  inset-inline: 6px;
  height: 2px;
  background: var(--grad);
  box-shadow: 0 0 14px rgba(31, 182, 221, 0.8);
  animation: scanline 1.8s ease-in-out infinite;
}
@keyframes scanline {
  0%, 100% { top: 10%; }
  50% { top: 86%; }
}
.pstep__sign {
  height: 56px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.05);
  display: grid;
  place-items: center;
}
.pstep__sign svg { width: 108px; height: 34px; }
.pstep__sign path { fill: none; stroke: var(--brand1); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.pstep__ok {
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 14px 0;
  text-align: center;
}
.pstep__ok span {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(52, 211, 153, 0.16);
  color: var(--ok);
  font-size: 20px;
}
.pstep__btn {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  border-radius: 999px;
  padding: 8px;
  background: var(--grad);
  color: #fff;
}

.deskq {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 13px;
}
.deskq__title { display: flex; align-items: center; gap: 8px; font-size: 12px; font-family: var(--font-display); margin-bottom: 10px; }
.deskq__live { width: 7px; height: 7px; border-radius: 50%; background: var(--ok); animation: pulse-ok 1.8s infinite; }
@keyframes pulse-ok {
  0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.6); }
  70% { box-shadow: 0 0 0 7px rgba(52, 211, 153, 0); }
  100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}
.deskq__item {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 9px 11px;
  margin-bottom: 7px;
  font-size: 11px;
  transition: border-color 0.3s, background 0.3s;
}
.deskq__item.is-muted { opacity: 0.55; }
.deskq__item p { color: var(--muted); font-size: 10.5px; }
.deskq__row { display: flex; justify-content: space-between; align-items: center; gap: 8px; margin-bottom: 3px; }
.qbadge {
  font-size: 9.5px;
  font-weight: 700;
  padding: 2px 9px;
  border-radius: 999px;
  background: rgba(245, 184, 75, 0.16);
  color: var(--gold);
  white-space: nowrap;
}
.qbadge--done { background: rgba(52, 211, 153, 0.16); color: var(--ok); }
.deskq__stat { display: flex; justify-content: space-between; font-size: 10.5px; color: var(--muted); padding-top: 9px; border-top: 1px solid var(--line); }
.deskq__stat b { color: var(--ink); }

/* ---------------- AI command chat ---------------- */
.chat { display: grid; grid-template-rows: auto 1fr auto auto; min-height: 400px; }
.chat__head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.chat__status { width: 8px; height: 8px; border-radius: 50%; background: var(--ok); }
.chat__live { font-size: 10px; color: var(--muted); font-weight: 500; }
.chat__badge {
  margin-left: auto;
  font-size: 9.5px;
  font-weight: 700;
  padding: 2px 9px;
  border-radius: 999px;
  background: var(--grad);
  color: #fff;
}
.chat__body { padding: 14px 0; display: grid; gap: 10px; align-content: start; }
.bubble {
  max-width: 88%;
  padding: 10px 13px;
  border-radius: 13px;
  font-size: 12.5px;
  line-height: 1.55;
  animation: fadeup 0.34s ease both;
}
.bubble--me {
  justify-self: end;
  background: var(--grad);
  color: #fff;
  border-bottom-right-radius: 4px;
}
.bubble--ai {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  border-bottom-left-radius: 4px;
  color: var(--ink);
}
.bubble--ai b { color: var(--brand1); }
.bubble__rows { display: grid; gap: 4px; margin-top: 8px; font-size: 11.5px; }
.bubble__rows div { display: flex; justify-content: space-between; gap: 12px; color: var(--muted); }
.bubble__rows b { color: var(--ink); font-weight: 600; }
.bubble__apply {
  margin-top: 9px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--ok);
}
.dots { display: inline-flex; gap: 4px; }
.dots i {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--muted);
  animation: blink 1.2s infinite;
}
.dots i:nth-child(2) { animation-delay: 0.18s; }
.dots i:nth-child(3) { animation-delay: 0.36s; }
@keyframes blink {
  0%, 60%, 100% { opacity: 0.25; }
  30% { opacity: 1; }
}
.chat__chips { display: flex; flex-wrap: wrap; gap: 7px; padding-top: 10px; border-top: 1px solid var(--line); }
.chat__chips button {
  font-size: 11px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.chat__chips button:hover { border-color: rgba(31, 182, 221, 0.6); color: var(--ink); background: rgba(31, 182, 221, 0.12); }
.chat__input {
  margin-top: 10px;
  font-size: 11.5px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 15px;
  display: flex;
  align-items: center;
  gap: 3px;
}
.chat__caret { width: 1.5px; height: 13px; background: var(--brand1); animation: caret 1s steps(1) infinite; }
@keyframes caret { 0%, 50% { opacity: 1; } 51%, 100% { opacity: 0; } }

/* ---------------- occupancy heatmap ---------------- */
.heatwrap { margin-top: 46px; max-width: 820px; margin-inline: auto; }
.heat {
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 24px;
}
.heat__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 18px;
}
.heat__head em { font-style: normal; color: var(--muted-dark); font-weight: 500; font-size: 13.5px; }
.heat__legend { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--muted-dark); font-family: var(--font-text); }
.heat__legend i { width: 16px; height: 12px; border-radius: 3px; display: inline-block; }
.heat__legend i:nth-of-type(1) { background: rgba(31, 182, 221, 0.14); }
.heat__legend i:nth-of-type(2) { background: rgba(31, 182, 221, 0.36); }
.heat__legend i:nth-of-type(3) { background: rgba(31, 182, 221, 0.62); }
.heat__legend i:nth-of-type(4) { background: rgba(31, 182, 221, 0.92); }
.heat__grid { display: grid; grid-template-columns: 44px repeat(12, minmax(0, 1fr)); gap: 4px; }
.heat__lbl { font-size: 11px; color: var(--muted-dark); display: flex; align-items: center; }
.heat__lbl--col { justify-content: center; font-size: 10.5px; }
.heat__cell {
  height: 14px;
  border-radius: 3px;
  background: rgba(31, 182, 221, var(--v, 0.1));
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.heat.is-in .heat__cell { opacity: 1; transform: none; }

/* ---------------- module cards (sub-page entries) ---------------- */
.modules { grid-template-columns: repeat(3, 1fr); }
.module {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.28s, border-color 0.28s, box-shadow 0.28s;
}
.module:hover {
  transform: translateY(-5px);
  border-color: rgba(31, 182, 221, 0.4);
  box-shadow: 0 26px 56px -30px rgba(22, 18, 58, 0.36);
}
.module__top {
  padding: 22px 22px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.module__icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(31, 182, 221, 0.10);
  flex: none;
}
.module__icon svg {
  width: 20px; height: 20px;
  fill: none;
  stroke: var(--accent-ink);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.module h3 { font-size: 16.5px; font-weight: 700; }
.module p { padding: 14px 22px 0; font-size: 14.5px; color: var(--muted-dark); flex: 1; }
.module__more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 18px 22px 22px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--accent-ink);
}
.module__more svg { width: 15px; height: 15px; transition: transform 0.22s; }
.module:hover .module__more svg { transform: translateX(4px); }

/* ---------------- pricing ---------------- */
.pricing {
  position: relative;
  padding: 108px 0;
  color: var(--ink);
  background:
    radial-gradient(ellipse 70% 60% at 50% -10%, rgba(31, 182, 221, 0.24), transparent 68%),
    radial-gradient(ellipse 50% 60% at 10% 100%, rgba(47, 201, 232, 0.14), transparent 70%),
    var(--bg0);
}
.pricing[id] { scroll-margin-top: 88px; }
.pricing h2, .pricing h3, .pricing h4 { color: var(--ink); }
.pricing .section__head p { color: var(--muted); }
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
.plan {
  position: relative;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.28s, border-color 0.28s, box-shadow 0.28s;
}
.plan:hover { transform: translateY(-5px); border-color: rgba(31, 182, 221, 0.55); }
.plan--hot {
  border-color: transparent;
  background:
    linear-gradient(rgba(18, 10, 46, 0.94), rgba(18, 10, 46, 0.94)) padding-box,
    var(--grad) border-box;
  border: 1px solid transparent;
  box-shadow: 0 30px 70px -30px rgba(31, 182, 221, 0.6);
}
.plan__flag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 5px 16px;
  border-radius: 999px;
  background: var(--grad);
  color: #fff;
  white-space: nowrap;
}
.plan__trial {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--ok);
  background: rgba(52, 211, 153, 0.12);
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 14px;
}
.plan h3 { font-size: 20px; font-weight: 700; margin-bottom: 6px; }
.plan__note { font-size: 13px; color: var(--muted); min-height: 40px; }
.plan__note b { color: var(--ink); }
.plan__was { font-size: 15px; color: var(--muted); text-decoration: line-through; margin-top: 14px; }
.plan__now { display: flex; align-items: baseline; gap: 8px; margin: 2px 0 4px; }
.plan__now b { font-family: var(--font-display); font-size: 34px; font-weight: 800; }
.plan__now span { font-size: 14px; color: var(--muted); }
.plan__year { font-size: 13px; color: var(--muted); }
.plan__rooms {
  margin: 16px 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  padding: 9px 0;
  border-block: 1px solid var(--line);
  text-align: center;
}
.plan__list { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 8px; }
.plan__list li { position: relative; padding-left: 24px; font-size: 13.5px; color: var(--muted); }
.plan__list li::before {
  content: '';
  position: absolute;
  left: 2px; top: 8px;
  width: 6px; height: 3px;
  border-left: 2px solid var(--brand1);
  border-bottom: 2px solid var(--brand1);
  transform: rotate(-45deg);
}
.plan__list li b { color: var(--ink); font-weight: 600; }
.plan__list li em {
  font-style: normal;
  font-size: 10px;
  font-weight: 700;
  color: var(--brand3);
  border: 1px solid rgba(30, 79, 184, 0.4);
  border-radius: 999px;
  padding: 1px 7px;
  margin-right: 5px;
}

.priceside { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 22px; }
.priceside--two { grid-template-columns: repeat(2, 1fr); max-width: 760px; margin-inline: auto; }
.pcard {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pcard h3 { font-size: 17px; font-weight: 700; }
.pcard p { font-size: 13.5px; color: var(--muted); flex: 1; }
.pcard__price { display: flex; align-items: baseline; gap: 10px; font-family: var(--font-display); }
.pcard__price s { color: var(--muted); font-size: 16px; }
.pcard__price b { font-size: 22px; font-weight: 800; color: var(--ok); }
.pcard__logo { height: 40px; width: auto; object-fit: contain; margin-bottom: 4px; }
.pcard .btn { align-self: flex-start; }

/* ---------------- integration logos ---------------- */
.logos { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.logogroup {
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 24px 26px 26px;
}
.logogroup h3 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin-bottom: 20px;
}
.logogroup__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 16px;
  align-items: center;
}
.logogroup__grid img {
  max-height: 34px;
  width: auto;
  max-width: 100%;
  margin-inline: auto;
  filter: grayscale(1);
  opacity: 0.66;
  transition: filter 0.25s, opacity 0.25s, transform 0.25s;
}
.logogroup__grid a:hover img, .logogroup__grid img:hover { filter: none; opacity: 1; transform: scale(1.05); }
.logogroup__grid .img-fail {
  display: grid;
  place-items: center;
  height: 34px;
  border-radius: 8px;
  background: linear-gradient(120deg, #e6e8ff, #f0e6ff);
  font-size: 11px;
  font-weight: 600;
  color: var(--muted-dark);
}
.logogroup__grid .img-fail img { display: none; }

/* ---------------- integration constellation ---------------- */
.constel {
  position: relative;
  height: 470px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: linear-gradient(160deg, #fff, var(--paper-tint));
  overflow: hidden;
}
.constel__svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.constel__lines line {
  stroke: rgba(31, 182, 221, 0.28);
  stroke-width: 1.4;
  stroke-dasharray: 5 7;
  animation: dash 2.4s linear infinite;
}
@keyframes dash { to { stroke-dashoffset: -24; } }
.constel__node {
  position: absolute;
  transform: translate(-50%, -50%);
  padding: 9px 15px;
  border-radius: 999px;
  border: 1px solid var(--line-dark);
  background: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12.5px;
  white-space: nowrap;
  box-shadow: 0 10px 26px -14px rgba(22, 18, 58, 0.35);
  z-index: 1;
}
.constel__node--hub {
  padding: 15px 28px;
  font-size: 17px;
  border-color: transparent;
  background: var(--grad);
  color: #fff;
  box-shadow: 0 20px 46px -18px rgba(31, 182, 221, 0.6);
}
.constel__note { text-align: center; margin-top: 24px; font-size: 15px; color: var(--muted-dark); }

/* ---------------- timeline ---------------- */
.timeline { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.tl {
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-sm);
  padding: 20px 18px;
  position: relative;
}
.tl::before {
  content: '';
  position: absolute;
  top: 0; left: 20px; right: 20px;
  height: 3px;
  border-radius: 0 0 3px 3px;
  background: var(--grad);
}
.tl__time { font-family: var(--font-display); font-size: 12px; font-weight: 700; color: var(--accent-ink); }
.tl h3 { font-size: 15px; font-weight: 700; margin: 6px 0 8px; }
.tl p { font-size: 13px; color: var(--muted-dark); }

/* ---------------- segments ---------------- */
.segs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.seg {
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 24px 22px;
  transition: transform 0.28s, border-color 0.28s;
}
.seg:hover { transform: translateY(-4px); border-color: rgba(31, 182, 221, 0.4); }
.seg__badge {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--accent-ink);
  background: rgba(31, 182, 221, 0.09);
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 12px;
}
.seg h3 { font-size: 17px; font-weight: 700; margin-bottom: 9px; }
.seg p { font-size: 14.5px; color: var(--muted-dark); }

/* ---------------- faq ---------------- */
.faq { display: flex; flex-direction: column; gap: 14px; }
.faq__item {
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-sm);
  padding: 0 26px;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.faq__item[open] { border-color: rgba(31, 182, 221, 0.45); box-shadow: 0 16px 38px -24px rgba(22, 18, 58, 0.28); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16.5px;
  color: var(--ink-dark);
  padding: 21px 36px 21px 0;
  position: relative;
  user-select: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 400;
  color: var(--accent-ink);
  transition: transform 0.25s;
}
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__item p { padding: 0 0 24px; font-size: 15px; color: var(--muted-dark); }
.faq__item p strong { color: var(--ink-dark); }

/* ---------------- demo CTA (dark anchor) ---------------- */
.demo {
  position: relative;
  padding: 118px 0;
  color: var(--ink);
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 70% at 50% 0%, rgba(31, 182, 221, 0.24), transparent 70%),
    var(--bg0);
}
.demo[id] { scroll-margin-top: 88px; }
.demo h2, .demo h3 { color: var(--ink); }
.demo .section__head p { color: var(--muted); }
.demo__glow {
  position: absolute;
  width: 720px; height: 460px;
  border-radius: 50%;
  filter: blur(110px);
  background: rgba(30, 79, 184, 0.2);
  bottom: -240px; left: 50%;
  transform: translateX(-50%);
}
.demo__mascot {
  position: absolute;
  left: 2%;
  bottom: -14px;
  width: 190px;
  height: auto;
  opacity: 0.9;
  pointer-events: none;
}
@media (max-width: 1320px) { .demo__mascot { display: none; } }
.how { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; position: relative; }
.how__step {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px;
}
.how__step b {
  display: grid;
  place-items: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  font-family: var(--font-display);
  font-size: 15px;
  margin-bottom: 14px;
}
.how__step h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.how__step p { font-size: 14px; color: var(--muted); }
.demo__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; position: relative; }
.demo__actions .btn--ghost { border-color: var(--line); color: var(--ink); background: rgba(255, 255, 255, 0.05); }
.demo__actions .btn--ghost:hover { border-color: rgba(31, 182, 221, 0.7); }
.demo__note { text-align: center; margin-top: 22px; font-size: 14px; color: var(--muted); position: relative; }

/* ---------------- partner teaser ---------------- */
.partner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 40px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 40px;
}
.partner h2 { font-size: clamp(26px, 3.2vw, 36px); font-weight: 800; margin-bottom: 16px; }
.partner p { font-size: 16px; color: var(--muted-dark); }
.partner__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.partner__figure {
  display: grid;
  place-items: center;
  gap: 6px;
  border-radius: var(--radius);
  padding: 30px;
  background: linear-gradient(150deg, rgba(47, 201, 232, 0.14), rgba(30, 79, 184, 0.16));
}
.partner__figure b {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 78px);
  font-weight: 800;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.partner__figure span { font-size: 14.5px; color: var(--muted-dark); text-align: center; }

/* ---------------- finale (dark anchor) ---------------- */
.finale {
  position: relative;
  text-align: center;
  padding: 126px 0;
  color: var(--ink);
  overflow: hidden;
  background:
    radial-gradient(ellipse 55% 65% at 50% 115%, rgba(31, 182, 221, 0.2), transparent 72%),
    radial-gradient(ellipse 45% 50% at 15% 0%, rgba(30, 79, 184, 0.14), transparent 70%),
    var(--bg0);
}
.finale h2 { font-size: clamp(30px, 4.4vw, 52px); font-weight: 800; color: var(--ink); margin-bottom: 18px; }
.finale p { color: var(--muted); font-size: 17px; }
.finale__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 32px; }
.finale__actions .btn--ghost { border-color: var(--line); color: var(--ink); background: rgba(255, 255, 255, 0.05); }
.finale__actions .btn--ghost:hover { border-color: rgba(31, 182, 221, 0.7); }

/* ---------------- footer ---------------- */
.footer {
  background: #07041a;
  color: var(--ink);
  border-top: 1px solid var(--line);
  padding: 72px 0 36px;
}
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 44px; }
.footer__brandcol p { font-size: 14px; color: var(--muted); margin-top: 18px; max-width: 34ch; }
.footer__brandcol p a { color: var(--brand1); font-weight: 600; }
.footer__social { display: flex; gap: 10px; margin-top: 22px; }
.footer__social a {
  width: 38px; height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 11px;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.footer__social a:hover { border-color: rgba(31, 182, 221, 0.55); background: rgba(31, 182, 221, 0.1); transform: translateY(-2px); }
.footer__social svg { width: 17px; height: 17px; fill: var(--muted); }
.footer__social a:hover svg { fill: var(--brand1); }
.footer__col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 20px;
}
.footer__col a, .footer__col p {
  display: block;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 11px;
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--brand1); }
.footer__addr { margin-bottom: 18px; }
.footer__addr strong { display: block; color: var(--ink); font-size: 13.5px; font-weight: 600; }
.footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  margin-top: 56px;
  padding-top: 26px;
  border-top: 1px solid rgba(150, 190, 255, 0.1);
  font-size: 12.5px;
  color: rgba(163, 177, 214, 0.7);
}

/* ---------------- floating WhatsApp ---------------- */
.wa {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 45;
  width: 54px; height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  box-shadow: 0 14px 34px -10px rgba(37, 211, 102, 0.65);
  transition: transform 0.22s;
}
.wa:hover { transform: scale(1.07); }
.wa svg { width: 27px; height: 27px; fill: #fff; }

/* ---------------- sub-page shell ---------------- */
.phero {
  position: relative;
  padding: 152px 0 68px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 80% at 50% -18%, #dfe0ff 0%, transparent 62%),
    linear-gradient(180deg, #eef0ff 0%, var(--paper) 78%);
}
.phero__inner { position: relative; max-width: 760px; }
.crumbs { display: flex; flex-wrap: wrap; gap: 8px; font-size: 13px; color: var(--muted-dark); margin-bottom: 18px; }
.crumbs a:hover { color: var(--accent-ink); }
.crumbs span { opacity: 0.5; }
.phero h1 { font-size: clamp(32px, 4.6vw, 54px); font-weight: 800; margin-bottom: 20px; }
.phero__lead { font-size: 18px; color: var(--muted-dark); max-width: 62ch; }
.phero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

.prose { max-width: 760px; }
.prose h2 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  margin: 52px 0 18px;
  scroll-margin-top: 96px;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 19px; font-weight: 700; margin: 34px 0 12px; }
.prose p { font-size: 16.5px; color: var(--muted-dark); margin-bottom: 16px; }
.prose p strong { color: var(--ink-dark); }
.prose ul { padding-left: 0; list-style: none; margin: 0 0 20px; display: grid; gap: 10px; }
.prose ul li { position: relative; padding-left: 28px; font-size: 16px; color: var(--muted-dark); }
.prose ul li::before {
  content: '';
  position: absolute;
  left: 4px; top: 10px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--brand2);
}
.prose ol { padding-left: 22px; margin: 0 0 20px; display: grid; gap: 10px; }
.prose ol li { font-size: 16px; color: var(--muted-dark); }
.prose ol li::marker { color: var(--accent-ink); font-weight: 700; }
.prose blockquote {
  margin: 26px 0;
  padding: 22px 26px;
  border-left: 3px solid var(--brand2);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--paper-tint);
  font-size: 16.5px;
  color: var(--ink-dark);
}
.prose blockquote cite { display: block; margin-top: 10px; font-style: normal; font-size: 14px; color: var(--muted-dark); }

.callout {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin: 24px 0;
  padding: 20px 22px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(31, 182, 221, 0.28);
  background: rgba(31, 182, 221, 0.06);
}
.callout__tag {
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-ink);
  flex: none;
  padding-top: 3px;
}
.callout p { font-size: 15.5px; color: var(--muted-dark); margin: 0; }
.callout p + p { margin-top: 10px; }
.callout strong { color: var(--ink-dark); }

.keypoints {
  margin: 30px 0;
  padding: 24px 26px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-dark);
  background: #fff;
}
.keypoints h3 { margin: 0 0 14px; font-size: 15px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent-ink); }
.keypoints ul { margin: 0; }

.statgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 30px 0; }
.statgrid div {
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-sm);
  padding: 22px 20px;
}
.statgrid b {
  display: block;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 10px;
}
.statgrid span { font-size: 14px; color: var(--muted-dark); }

.pagelayout { display: grid; grid-template-columns: minmax(0, 1fr) 260px; gap: 56px; align-items: start; }
.toc {
  position: sticky;
  top: 100px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-sm);
  background: #fff;
  padding: 20px 22px;
}
.toc h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin-bottom: 14px;
}
.toc a {
  display: block;
  font-size: 13.5px;
  color: var(--muted-dark);
  padding: 6px 0;
  border-left: 2px solid transparent;
  padding-left: 12px;
  margin-left: -14px;
  transition: color 0.2s, border-color 0.2s;
}
.toc a:hover, .toc a.is-current { color: var(--ink-dark); border-left-color: var(--brand2); }

.related { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.related a {
  display: block;
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-sm);
  padding: 20px;
  transition: transform 0.24s, border-color 0.24s;
}
.related a:hover { transform: translateY(-4px); border-color: rgba(31, 182, 221, 0.4); }
.related b { display: block; font-family: var(--font-display); font-size: 15.5px; margin-bottom: 7px; }
.related span { font-size: 13.5px; color: var(--muted-dark); }

/* form (partner application) */
.formcard {
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 30px;
}
.formgrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.field { display: grid; gap: 7px; }
.field--wide { grid-column: 1 / -1; }
.field label { font-size: 13.5px; font-weight: 600; color: var(--ink-dark); }
.field label em { font-style: normal; color: var(--brand3); }
.field input, .field select, .field textarea {
  font-family: var(--font-text);
  font-size: 14.5px;
  color: var(--ink-dark);
  background: var(--paper);
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  padding: 11px 14px;
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: rgba(31, 182, 221, 0.6);
  box-shadow: 0 0 0 3px rgba(31, 182, 221, 0.12);
}
.formnote { margin-top: 16px; font-size: 13px; color: var(--muted-dark); }

/* ---------------- reveal ---------------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.in { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: 0.06s; }
.reveal:nth-child(3) { transition-delay: 0.12s; }
.reveal:nth-child(4) { transition-delay: 0.18s; }
.reveal:nth-child(5) { transition-delay: 0.24s; }
.reveal:nth-child(6) { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .heat .heat__cell { opacity: 1; transform: none; }
  .rack__book { transform: scaleX(1); }
  .mock { transform: none; }
}

/* ---------------- responsive ---------------- */
@media (max-width: 1080px) {
  .features { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(3, 1fr); }
  .hero__inner, .spotlight__inner { grid-template-columns: 1fr; gap: 44px; }
  .spotlight__inner--flip .spotlight__copy { order: 0; }
  .mock { transform: none; }
  .float--booking { left: -10px; }
  .float--checkin { right: -6px; }
  .pagelayout { grid-template-columns: 1fr; gap: 34px; }
  .toc { position: static; }
  .modules, .segs, .related, .statgrid { grid-template-columns: repeat(2, 1fr); }
  .plans, .priceside { grid-template-columns: 1fr; }
  .plan__note { min-height: 0; }
  .partner { grid-template-columns: 1fr; padding: 32px; }
}

@media (max-width: 860px) {
  .shots__grid { grid-template-columns: 1fr; }
  .logos { grid-template-columns: 1fr; }
  .how { grid-template-columns: 1fr; }
  .checkin { grid-template-columns: 1fr; justify-items: center; }
  .constel { height: 560px; }
  .constel__node { font-size: 11px; padding: 7px 12px; }
  .constel__node--hub { font-size: 15px; padding: 12px 22px; }
  .formgrid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  html { scroll-padding-top: 66px; }
  .container, .container--narrow { width: calc(100% - 36px); max-width: var(--maxw); }

  .section, .pricing, .demo { padding: 72px 0; }
  .section[id], .statement[id], .demo[id], .pricing[id] { scroll-margin-top: 66px; }
  .section__head { margin-bottom: 36px; }
  .section__head p { font-size: 15.5px; line-height: 1.55; }

  .hero { padding: 124px 0 66px; }
  .hero__title { font-size: clamp(30px, 8.4vw, 40px); }
  .hero__sub { font-size: 15.5px; }
  .hero__actions .btn { flex: 1 1 100%; justify-content: center; }
  .hero__trust { font-size: 12.5px; gap: 8px 16px; }
  /* keep "Aylık 9'9€ 'dan başlar" on one line and drop the badge below it */
  .hero__price { flex-wrap: wrap; row-gap: 8px; }
  .hero__price b { font-size: 26px; }
  .hero__price em { flex-basis: 100%; }

  .mock__body { grid-template-columns: 1fr; min-height: 0; }
  .mock__side { display: none; }
  .mock__cards { grid-template-columns: repeat(2, 1fr); }
  .mock__row2 { grid-template-columns: 1fr; }
  .float--booking, .float--checkin, .float--kbs { display: none; }

  .features, .modules, .segs, .timeline, .related, .statgrid { grid-template-columns: 1fr; }
  .logogroup__grid { grid-template-columns: repeat(2, 1fr); }

  /* keep all 12 nights on screen — the colour blocks still read as an
     occupancy grid once the guest names no longer fit */
  .rack__row { grid-template-columns: 38px repeat(12, minmax(0, 1fr)); gap: 2px; }
  .rack__cell { height: 17px; }
  .rack__book { font-size: 0; padding-inline: 0; }
  .rack__room { font-size: 9.5px; gap: 3px; }
  .rack__room i { width: 5px; height: 5px; }
  .piece { padding: 14px; }
  .heat__grid { grid-template-columns: 34px repeat(12, minmax(0, 1fr)); gap: 2px; }
  .heat__lbl { font-size: 9.5px; }
  .heat__lbl--col { font-size: 8.5px; }
  .heat { padding: 18px 14px; }

  .phero { padding: 112px 0 52px; }
  .prose h2 { margin-top: 40px; }
  .prose p, .prose ul li, .prose ol li { font-size: 15.5px; }

  .demo__actions .btn, .finale__actions .btn, .partner__actions .btn { flex: 1 1 100%; justify-content: center; }
  .footer__grid { grid-template-columns: 1fr; gap: 34px; }
  .wa { right: 14px; bottom: 14px; width: 48px; height: 48px; }
  .wa svg { width: 24px; height: 24px; }
}

@media (max-width: 960px) and (min-width: 641px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
