﻿:root {
  --bg: #08111f;
  --bg-2: #0d1728;
  --surface: rgba(255, 255, 255, 0.075);
  --surface-strong: rgba(255, 255, 255, 0.13);
  --line: rgba(255, 255, 255, 0.14);
  --text: #eef7ff;
  --muted: #aab9c8;
  --cyan: #45ddec;
  --violet: #9b8cff;
  --green: #4be08d;
  --yellow: #ffd15a;
  --red: #ff5b6e;
  --orange: #ff9a3c;
  --warm: #f0c47a;
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.42);
  --display-font: "Sora", ui-sans-serif, system-ui, sans-serif;
  --body-font: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-family: var(--body-font);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 12%, rgba(69, 221, 236, 0.16), transparent 30rem),
    radial-gradient(circle at 86% 18%, rgba(155, 140, 255, 0.16), transparent 28rem),
    linear-gradient(180deg, #07101d 0%, #101421 52%, #f6f8fb 52%, #f6f8fb 100%);
  overflow-x: hidden;
}

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

button,
input,
select {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
  animation: pageEnter 760ms cubic-bezier(.2,.8,.2,1) both;
}

.nav {
  position: relative;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1180px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(8, 17, 31, 0.68);
  backdrop-filter: blur(22px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.26);
}

.nav.scrolled {
  background: rgba(8, 17, 31, 0.58);
}

.nav-minimal {
  justify-content: flex-end;
}

.nav-minimal .brand {
  display: none;
}

.nav-minimal .nav-links {
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  object-fit: cover;
  object-position: 18% 50%;
}

.nav-links {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 0.93rem;
}

.nav-links a:hover,
.footer a:hover {
  color: var(--cyan);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 750;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.nav-cta,
.button.primary {
  color: #06101d;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  box-shadow: 0 14px 42px rgba(69, 221, 236, 0.22);
}

.button.secondary {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.08);
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.section,
.section-grid {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 52px;
  align-items: center;
  min-height: calc(100vh - 110px);
  padding: 88px 0 70px;
}

.hero-copy,
.hero-system {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: var(--display-font);
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.55rem, 4.6vw, 4.75rem);
  line-height: 0.98;
  overflow-wrap: break-word;
}

h2 {
  margin: 0;
  color: inherit;
  font-size: clamp(2rem, 4vw, 4.5rem);
  line-height: 0.98;
}

h3 {
  margin: 0;
  font-size: 1.35rem;
}

.hero-lede,
.section-copy p,
.section-heading p,
.solution-grid p,
.price-card li,
.usage-note,
.footer p,
.footer span {
  color: var(--muted);
  line-height: 1.7;
}

.hero-lede {
  max-width: 640px;
  margin: 24px 0 0;
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 28px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-strip span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #dbe9f4;
  background: rgba(255, 255, 255, 0.07);
}

.hero-system {
  position: relative;
  min-height: 640px;
}

.home-hero {
  grid-template-columns: minmax(0, 1fr);
  min-height: auto;
  padding: 74px 0 82px;
  text-align: center;
}

.home-hero h1 {
  max-width: 980px;
  margin-inline: auto;
  font-size: clamp(3.15rem, 5.7vw, 6.6rem);
  line-height: 0.94;
  text-wrap: balance;
}

.home-hero .hero-lede {
  max-width: 790px;
  margin-inline: auto;
}

.home-hero .hero-actions,
.home-hero .trust-strip {
  justify-content: center;
}

.hero-logo-mark {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 116px;
  height: 116px;
  margin: 0 auto 28px;
  border: 1px solid rgba(69, 221, 236, 0.26);
  border-radius: 30px;
  background: rgba(255,255,255,0.07);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.04), 0 28px 80px rgba(69, 221, 236, 0.18);
  isolation: isolate;
  animation: logoFloat 5s ease-in-out infinite;
}

.hero-logo-mark::before,
.hero-logo-mark::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(69, 221, 236, 0.75), rgba(155, 140, 255, 0.75), rgba(75, 224, 141, 0.4));
  opacity: 0.65;
  z-index: -1;
  filter: blur(18px);
  animation: glowShift 6s linear infinite;
}

.hero-logo-mark::after {
  inset: 12px;
  opacity: 0.25;
  filter: blur(28px);
}

.hero-logo-mark img {
  width: 76px;
  height: 76px;
  border-radius: 20px;
  object-fit: cover;
}

.compact-hero-system {
  width: min(720px, 100%);
  min-height: 430px;
  margin: 34px auto 0;
}

.compact-hero-system .call-card {
  top: 4%;
  left: 4%;
}

.compact-hero-system .mini-dashboard {
  right: 0;
  bottom: 3%;
  left: auto;
}

.page-hero {
  padding: 94px 0 78px;
  color: var(--text);
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(2.45rem, 4.35vw, 4.45rem);
  line-height: 1.02;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.75;
}

.platform-hero {
  position: relative;
  isolation: isolate;
}

.platform-hero::before {
  content: "";
  position: absolute;
  right: max(0px, calc(50% - 610px));
  bottom: 32px;
  width: 284px;
  height: 284px;
  z-index: -1;
  border-radius: 50%;
  background:
    conic-gradient(from 0deg, transparent 0 18%, rgba(69, 221, 236, 0.42) 26%, transparent 34% 58%, rgba(155, 140, 255, 0.38) 67%, transparent 78% 100%);
  opacity: 0.72;
  filter: blur(0.4px);
  mask: radial-gradient(circle, transparent 58%, #000 60%, #000 68%, transparent 70%);
  animation: platformOrbHalo 4.8s ease-in-out infinite;
}

.platform-hero::after {
  content: "";
  position: absolute;
  right: max(16px, calc(50% - 580px));
  bottom: 58px;
  width: 220px;
  height: 220px;
  z-index: -1;
  border: 1px solid rgba(69, 221, 236, 0.18);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(69, 221, 236, 0.2), transparent 54%),
    conic-gradient(from 90deg, rgba(69, 221, 236, 0.08), rgba(155, 140, 255, 0.18), rgba(75, 224, 141, 0.08), rgba(69, 221, 236, 0.08));
  filter: blur(0.2px);
  box-shadow:
    0 0 54px rgba(69, 221, 236, 0.16),
    inset 0 0 46px rgba(155, 140, 255, 0.12);
  animation: platformOrbMotion 11s ease-in-out infinite;
}

.platform-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.platform-proof-row span {
  padding: 11px 14px;
  border: 1px solid rgba(69, 221, 236, 0.18);
  border-radius: 999px;
  color: rgba(238, 244, 251, 0.84);
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(14px);
  font-size: 0.9rem;
  font-weight: 800;
}

.glass {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255,255,255,0.13), rgba(255,255,255,0.055));
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}

.orbit-ring {
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(69, 221, 236, 0.2);
  border-radius: 50%;
  animation: rotate 18s linear infinite;
}

.ring-two {
  inset: 23%;
  border-color: rgba(240, 196, 122, 0.25);
  animation-duration: 11s;
  animation-direction: reverse;
}

.orbit-ring::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 28px var(--cyan);
}

.call-card {
  position: absolute;
  top: 14%;
  left: 2%;
  width: 320px;
  padding: 18px;
  border-radius: 18px;
  animation: floatA 5s ease-in-out infinite;
}

.call-header,
.dash-top,
.dash-toolbar,
.confirmation-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(75, 224, 141, 0.8);
  animation: pulse 1.4s infinite;
}

.voice-wave {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 80px;
  margin: 12px 0;
}

.voice-wave i {
  width: 8px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--cyan), var(--violet));
  animation: wave 900ms ease-in-out infinite alternate;
}

.voice-wave i:nth-child(1) { height: 22px; animation-delay: 0ms; }
.voice-wave i:nth-child(2) { height: 46px; animation-delay: 80ms; }
.voice-wave i:nth-child(3) { height: 62px; animation-delay: 160ms; }
.voice-wave i:nth-child(4) { height: 34px; animation-delay: 240ms; }
.voice-wave i:nth-child(5) { height: 70px; animation-delay: 320ms; }
.voice-wave i:nth-child(6) { height: 28px; animation-delay: 400ms; }
.voice-wave i:nth-child(7) { height: 52px; animation-delay: 480ms; }
.voice-wave i:nth-child(8) { height: 36px; animation-delay: 560ms; }

.reservation-flow {
  position: absolute;
  top: 43%;
  right: 0;
  display: grid;
  gap: 10px;
  width: 270px;
  padding: 16px;
  border-radius: 18px;
  animation: floatB 5.6s ease-in-out infinite;
}

.flow-node {
  padding: 12px 14px;
  border-radius: 12px;
  color: #dce8f3;
  background: rgba(255, 255, 255, 0.08);
}

.flow-node.active {
  color: #07101d;
  background: var(--cyan);
}

.flow-line {
  width: 2px;
  height: 20px;
  margin-left: 18px;
  background: linear-gradient(var(--cyan), transparent);
}

.mini-dashboard {
  position: absolute;
  bottom: 8%;
  left: 12%;
  width: 430px;
  padding: 18px;
  border-radius: 22px;
  animation: floatC 6.5s ease-in-out infinite;
}

.table-grid,
.floor-map {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 16px;
}

.table-grid span,
.table {
  display: grid;
  place-items: center;
  min-height: 64px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  color: #08111f;
  font-weight: 850;
}

.available { background: var(--green); }
.reserved { background: var(--yellow); }
.occupied { background: var(--red); color: #fff; }
.cleaning { background: var(--orange); }

.band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--line);
  transform: translateY(-34px);
}

.metrics div {
  min-height: 166px;
  padding: 28px;
  background: #0f1929;
}

.metrics strong {
  display: block;
  margin-bottom: 8px;
  font-size: 2.8rem;
  line-height: 1;
}

.metrics span {
  color: var(--muted);
  line-height: 1.5;
}

.section {
  padding: 100px 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: 56px;
  align-items: center;
}

.section-copy,
.section-heading {
  color: #111827;
}

.section-copy p,
.section-heading p {
  max-width: 680px;
}

.feature-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  color: #324050;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.64em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
}

.platform-logic {
  position: relative;
  isolation: isolate;
  width: min(100%, 100%);
  padding: 96px max(16px, calc((100vw - 1180px) / 2));
  color: var(--text);
}

.platform-logic::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 10% 22%, rgba(69, 221, 236, 0.14), transparent 22rem),
    radial-gradient(circle at 90% 28%, rgba(155, 140, 255, 0.12), transparent 24rem),
    linear-gradient(135deg, #07101d 0%, #0b1728 54%, #10182d 100%);
}

.platform-logic .section-copy,
.platform-logic .section-heading {
  color: var(--text);
}

.platform-logic h2 {
  color: var(--text);
}

.platform-logic .feature-list {
  color: rgba(238, 244, 251, 0.76);
}

.platform-logic .eyebrow {
  color: var(--cyan);
}

.platform-video-section {
  position: relative;
  color: #111827;
  padding-top: 118px;
  isolation: isolate;
}

.platform-video-section::before {
  content: "";
  position: absolute;
  inset: 0 calc(50% - 50vw);
  z-index: -1;
  background:
    radial-gradient(circle at 18% 8%, rgba(69, 221, 236, 0.18), transparent 24rem),
    radial-gradient(circle at 84% 18%, rgba(155, 140, 255, 0.14), transparent 22rem),
    linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%);
}

.platform-video-section .section-heading {
  max-width: 860px;
  padding: 30px 32px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 22px 58px rgba(17, 24, 39, 0.09);
  backdrop-filter: blur(18px);
}

.platform-video-section .eyebrow {
  color: #1376d8;
}

.platform-video-section .section-heading h2 {
  color: #07101d;
  opacity: 1;
}

.platform-video-section .section-heading p:not(.eyebrow) {
  color: #4b5563;
  opacity: 1;
}

.demo-video-card {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.75fr);
  gap: 24px;
  align-items: stretch;
  margin-top: 34px;
  padding: 18px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 12%, rgba(69, 221, 236, 0.14), transparent 18rem),
    #ffffff;
  box-shadow: 0 26px 74px rgba(17, 24, 39, 0.12);
}

.demo-video-frame {
  overflow: hidden;
  border-radius: 22px;
  background: #07101d;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.demo-video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.demo-video-notes {
  display: grid;
  align-content: center;
  padding: 26px;
  border-radius: 22px;
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(7, 16, 29, 0.96), rgba(16, 24, 45, 0.94)),
    #07101d;
}

.demo-video-notes span {
  margin-bottom: 14px;
  color: var(--cyan);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.demo-video-notes h3 {
  margin-bottom: 18px;
  color: var(--text);
  font-size: 1.55rem;
}

.demo-video-notes ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 18px;
  color: rgba(238, 244, 251, 0.76);
  line-height: 1.62;
}

.demo-video-notes li::marker {
  color: var(--cyan);
}

.phone-panel {
  overflow: hidden;
  min-height: 540px;
  padding: 22px;
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(8, 17, 31, 0.92), rgba(18, 28, 48, 0.94)),
    var(--bg);
}

.phone-screen {
  display: grid;
  align-content: space-between;
  min-height: 496px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #07101d;
}

.assistant-badge {
  width: max-content;
  padding: 10px 14px;
  border-radius: 999px;
  color: #06101d;
  background: var(--cyan);
  font-weight: 850;
}

.transcript {
  display: grid;
  gap: 14px;
}

.transcript p {
  margin: 0;
  padding: 14px;
  border-radius: 14px;
  color: #dbe8f4;
  background: rgba(255,255,255,0.08);
}

.transcript span {
  display: block;
  margin-bottom: 4px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
}

.confirmation-row {
  padding: 16px;
  border-radius: 16px;
  color: #07101d;
  background: linear-gradient(135deg, var(--green), var(--cyan));
}

.dashboard-section {
  width: 100%;
  padding-inline: max(16px, calc((100vw - 1180px) / 2));
  color: var(--text);
  background: linear-gradient(180deg, #101421, #08111f);
}

.dashboard-section .section-heading {
  color: var(--text);
}

.product-gallery {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 0.75fr);
  gap: 16px;
  margin-top: 42px;
}

.product-shot {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  margin: 0;
  border: 1px solid rgba(155, 140, 255, 0.22);
  border-radius: 22px;
  background: #050912;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
}

.product-shot img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  opacity: 0.9;
  transform: scale(1.01);
  transition: transform 700ms ease, opacity 700ms ease;
}

.product-shot:hover img {
  opacity: 1;
  transform: scale(1.05);
}

.featured-shot {
  min-height: 440px;
}

.featured-shot img {
  min-height: 440px;
}

.product-shot figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  color: var(--muted);
  background: rgba(5, 9, 18, 0.82);
  backdrop-filter: blur(16px);
  line-height: 1.45;
}

.product-shot figcaption strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
}

.dashboard-preview {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) 230px;
  gap: 14px;
  margin-top: 42px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255,255,255,0.06);
  box-shadow: var(--shadow);
}

.dash-sidebar,
.dash-main,
.dash-right {
  border-radius: 18px;
  background: rgba(4, 10, 20, 0.82);
}

.dash-sidebar {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 16px;
}

.dash-sidebar small {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.35;
  letter-spacing: 0.12em;
}

.app-logo {
  margin-bottom: 10px;
  font-size: 1.3rem;
  font-weight: 900;
}

.dash-sidebar button {
  min-height: 40px;
  border: 1px solid transparent;
  border-radius: 10px;
  color: var(--muted);
  background: transparent;
  text-align: left;
}

.dash-sidebar button.active {
  color: #07101d;
  background: var(--cyan);
}

.sidebar-health {
  margin-top: 16px;
  padding: 14px;
  border: 1px solid rgba(75, 224, 141, 0.25);
  border-radius: 12px;
  color: var(--green);
  background: rgba(75, 224, 141, 0.08);
  font-size: 0.82rem;
  font-weight: 800;
}

.dash-main {
  padding: 18px;
}

.dash-title-row,
.status-legend {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 0.85rem;
}

.dash-title-row {
  margin-bottom: 16px;
}

.dash-title-row div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dash-title-row strong {
  color: var(--text);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

.dash-title-row em {
  padding: 5px 8px;
  border-radius: 3px;
  color: #fff;
  background: #ef3340;
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 900;
}

.live-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #ff3344;
  box-shadow: 0 0 18px rgba(255, 51, 68, 0.8);
}

.dash-kpis {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}

.dash-kpis div {
  min-height: 76px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
}

.dash-kpis span {
  display: block;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dash-kpis strong {
  display: block;
  margin-top: 6px;
  font-size: 1.85rem;
}

.green-kpi strong { color: var(--green); }
.purple-kpi strong { color: var(--violet); }
.red-kpi strong { color: #ff3344; }
.orange-kpi strong { color: var(--orange); }

.status-legend i {
  width: 10px;
  height: 10px;
  margin-left: 4px;
  border-radius: 50%;
}

.zone-card {
  overflow: hidden;
  margin-top: 14px;
  border: 1px solid rgba(155, 140, 255, 0.22);
  border-radius: 20px;
  background: rgba(8, 12, 28, 0.82);
}

.zone-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  background: rgba(31, 36, 94, 0.56);
}

.main-hall .zone-header {
  background: rgba(60, 28, 12, 0.45);
}

.zone-header > div:first-child {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3px 12px;
  align-items: center;
}

.zone-icon {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  color: var(--cyan);
  background: rgba(255,255,255,0.08);
  font-size: 0.72rem;
  font-weight: 950;
}

.zone-header strong {
  font-size: 1.45rem;
  text-transform: uppercase;
}

.zone-header small {
  color: var(--muted);
}

.zone-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.zone-mini span {
  padding: 9px 10px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  color: var(--muted);
  background: rgba(4, 10, 20, 0.42);
  font-size: 0.74rem;
  font-weight: 850;
}

.floor-map {
  grid-template-columns: repeat(4, minmax(80px, 1fr));
  padding: 18px;
}

.table {
  align-content: center;
  gap: 7px;
  min-height: 130px;
  border: 0;
  box-shadow: inset 0 -10px 20px rgba(0, 0, 0, 0.16);
  transition: transform 160ms ease, filter 160ms ease;
}

.table strong {
  font-size: 1.8rem;
}

.table span {
  font-size: 0.82rem;
  opacity: 0.78;
}

.table small {
  width: min(140px, 100%);
  padding: 8px 10px;
  border-radius: 999px;
  color: #fff;
  background: rgba(0, 0, 0, 0.22);
  text-transform: uppercase;
  font-weight: 950;
}

.table:hover {
  transform: translateY(-4px) scale(1.02);
  filter: brightness(1.08);
}

.table.wide {
  grid-column: span 2;
}

.dash-right {
  display: grid;
  gap: 12px;
  padding: 14px;
}

.qr-card,
.alert-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,0.065);
}

.qr-card span,
.alert-card span {
  color: var(--cyan);
  font-weight: 850;
}

.alert-card ul {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 14px 0 0;
  list-style: none;
}

.alert-card li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
}

.alert-card i {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 8px;
  border-radius: 50%;
}

.purple-dot { background: var(--violet); }
.green-dot { background: var(--green); }
.orange-dot { background: var(--orange); }

.qr-grid {
  width: 120px;
  height: 120px;
  margin: 18px auto;
  border: 8px solid #fff;
  background:
    linear-gradient(90deg, #fff 10px, transparent 10px 20px, #fff 20px 30px, transparent 30px),
    linear-gradient(#07101d 10px, transparent 10px 20px, #07101d 20px 30px, transparent 30px),
    #fff;
  background-size: 30px 30px;
}

.solutions {
  color: #111827;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 38px;
}

.solution-grid article,
.price-card,
.page-card-grid a,
.process-list article,
.contact-card {
  padding: 26px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(17, 24, 39, 0.08);
}

.solution-grid span,
.process-list span,
.contact-card span {
  display: inline-block;
  margin-bottom: 48px;
  color: var(--violet);
  font-weight: 900;
}

.page-card-grid a {
  display: block;
  color: #111827;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.page-card-grid a:hover {
  transform: translateY(-4px);
  border-color: rgba(69, 221, 236, 0.35);
  box-shadow: 0 24px 60px rgba(17, 24, 39, 0.12);
}

.expanded-grid {
  grid-template-columns: repeat(3, 1fr);
}

.process-section,
.home-paths {
  position: relative;
  color: #111827;
}

.home-paths {
  margin-top: 18px;
  padding-top: 110px;
  scroll-margin-top: 120px;
}

.home-paths::before,
.operator-stories::before {
  content: "";
  position: absolute;
  inset: 0 calc(50% - 50vw);
  background: linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%);
  z-index: -1;
}

.home-paths .section-heading {
  max-width: 760px;
}

.page-card-grid a {
  position: relative;
  min-height: 280px;
  border-radius: 24px;
}

.page-card-grid a::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(69, 221, 236, 0.16), rgba(155, 140, 255, 0.22));
}

.page-card-grid a:nth-child(1)::after {
  background: linear-gradient(135deg, rgba(69, 221, 236, 0.92), rgba(128, 144, 255, 0.72));
  box-shadow: 0 16px 36px rgba(69, 221, 236, 0.28);
}

.page-card-grid a:nth-child(2)::after {
  background: linear-gradient(135deg, rgba(155, 140, 255, 0.96), rgba(83, 65, 210, 0.82));
  box-shadow: 0 16px 36px rgba(155, 140, 255, 0.3);
}

.page-card-grid a:nth-child(3)::after {
  background: linear-gradient(135deg, rgba(255, 154, 60, 0.95), rgba(255, 209, 90, 0.82));
  box-shadow: 0 16px 36px rgba(255, 154, 60, 0.26);
}

.page-card-grid a:nth-child(4)::after {
  background: linear-gradient(135deg, rgba(75, 224, 141, 0.95), rgba(69, 221, 236, 0.72));
  box-shadow: 0 16px 36px rgba(75, 224, 141, 0.26);
}

.page-card-grid a:nth-child(5)::after {
  background: linear-gradient(135deg, rgba(215, 172, 72, 0.95), rgba(155, 140, 255, 0.78));
  box-shadow: 0 16px 38px rgba(215, 172, 72, 0.26);
}

.page-card-grid a > span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 54px;
  border-radius: 50%;
  color: #07101d;
  background: rgba(69, 221, 236, 0.18);
}

.page-card-grid a:nth-child(1) > span { background: rgba(69, 221, 236, 0.22); }
.page-card-grid a:nth-child(2) > span { background: rgba(155, 140, 255, 0.24); color: #2d226d; }
.page-card-grid a:nth-child(3) > span { background: rgba(255, 154, 60, 0.2); color: #6c3510; }
.page-card-grid a:nth-child(4) > span { background: rgba(75, 224, 141, 0.2); color: #0f5130; }
.page-card-grid a:nth-child(5) > span { background: rgba(215, 172, 72, 0.22); color: #5c3b08; }

.vip-path-card {
  grid-column: 1 / -1;
}

.vip-path-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 8;
  margin: 0 0 22px;
  border-radius: 20px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.16);
}

.operator-stories {
  position: relative;
  color: #111827;
  scroll-margin-top: 120px;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 38px;
}

.story-grid article {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  padding: 0 24px 28px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 26px;
  background:
    radial-gradient(circle at 20% 0%, rgba(69, 221, 236, 0.16), transparent 12rem),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  box-shadow: 0 22px 62px rgba(17, 24, 39, 0.1);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.story-grid img {
  display: block;
  width: calc(100% + 48px);
  height: 210px;
  margin: 0 -24px 24px;
  object-fit: cover;
  object-position: center;
  border-bottom: 1px solid rgba(17, 24, 39, 0.1);
  filter: saturate(1.04) contrast(1.03);
  transition: transform 0.55s ease, filter 0.55s ease;
}

.story-grid article:nth-child(1) img {
  object-position: center 42%;
}

.story-grid article:nth-child(2) img {
  object-position: center 44%;
}

.story-grid article:nth-child(3) img {
  object-position: center 48%;
}

.story-grid article:nth-child(4) img {
  object-position: 68% 44%;
}

.story-grid article:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 76px rgba(17, 24, 39, 0.14);
}

.story-grid article:hover img {
  transform: scale(1.045);
  filter: saturate(1.1) contrast(1.04);
}

.story-role {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--violet);
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.story-grid h3 {
  margin-bottom: 16px;
  font-size: 1.26rem;
  line-height: 1.25;
}

.story-grid p {
  color: #5d6878;
  line-height: 1.72;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 38px;
}

.process-list p,
.contact-card p {
  color: #566273;
  line-height: 1.7;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  color: #111827;
}

.contact-card {
  display: grid;
  align-content: start;
  gap: 14px;
}

.contact-card span {
  margin-bottom: 14px;
}

.contact-card .button {
  width: max-content;
}

.standalone-dashboard {
  padding-top: 80px;
}

.restaurant-proof {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.92fr);
  gap: 46px;
  align-items: center;
  color: #111827;
}

.restaurant-image {
  overflow: hidden;
  min-height: 480px;
  border-radius: 26px;
  box-shadow: 0 24px 80px rgba(17, 24, 39, 0.18);
}

.restaurant-image img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

.about-hero h1 {
  max-width: 980px;
}

.about-story {
  position: relative;
}

.about-story .section-copy p:not(.eyebrow) {
  font-size: 1.04rem;
}

.about-visual-section {
  padding-top: 18px;
  padding-bottom: 42px;
}

.about-visual {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(69, 221, 236, 0.16);
  border-radius: 34px;
  background: #07101d;
  box-shadow:
    0 32px 110px rgba(7, 16, 29, 0.32),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.about-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(7, 16, 29, 0.02), rgba(7, 16, 29, 0.14)),
    radial-gradient(circle at 18% 18%, rgba(155, 140, 255, 0.12), transparent 16rem);
}

.about-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.about-story-panel {
  max-width: 940px;
  padding-top: 48px;
  color: var(--text);
}

.about-story-panel .section-copy {
  color: var(--text);
}

.about-story-panel .section-copy h2 {
  max-width: 920px;
  color: #f6fbff;
  text-shadow: 0 22px 80px rgba(69, 221, 236, 0.16);
}

.about-story-panel .section-copy p:not(.eyebrow) {
  color: rgba(230, 241, 251, 0.78);
}

.about-narrative {
  position: relative;
  color: #111827;
}

.about-narrative::before {
  content: "";
  position: absolute;
  inset: 26px calc(50% - 50vw);
  z-index: -1;
  background:
    radial-gradient(circle at 14% 20%, rgba(69, 221, 236, 0.12), transparent 20rem),
    radial-gradient(circle at 82% 18%, rgba(155, 140, 255, 0.12), transparent 18rem),
    linear-gradient(180deg, #f8fbff, #eef4fb);
}

.about-proof-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.about-proof-list span {
  position: relative;
  overflow: hidden;
  min-height: 112px;
  display: grid;
  align-items: end;
  padding: 58px 20px 20px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 22px;
  color: #111827;
  background:
    radial-gradient(circle at 82% 18%, rgba(69, 221, 236, 0.16), transparent 7rem),
    #ffffff;
  box-shadow: 0 18px 46px rgba(17, 24, 39, 0.07);
  font-weight: 900;
}

.about-proof-list span::before {
  position: absolute;
  top: 18px;
  left: 20px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(69, 221, 236, 0.22);
  border-radius: 14px;
  color: #07101d;
  background: linear-gradient(135deg, rgba(69, 221, 236, 0.9), rgba(155, 140, 255, 0.72));
  box-shadow: 0 16px 34px rgba(69, 221, 236, 0.18);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.about-proof-list span::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 22px;
  width: 82px;
  height: 34px;
  opacity: 0.42;
  background:
    linear-gradient(90deg, rgba(69, 221, 236, 0.22) 0 8px, transparent 8px 14px),
    linear-gradient(90deg, rgba(155, 140, 255, 0.18) 0 10px, transparent 10px 18px);
  background-size: 18px 100%, 24px 100%;
  mask-image: linear-gradient(90deg, transparent, #000 30%, #000 70%, transparent);
  animation: signalGrid 6s linear infinite;
}

.about-proof-list span:nth-child(1)::before { content: "CALL"; }
.about-proof-list span:nth-child(2)::before { content: "LIVE"; }
.about-proof-list span:nth-child(3)::before { content: "VIP"; }
.about-proof-list span:nth-child(4)::before { content: "RISK"; }

.about-principles {
  color: #111827;
}

.about-global {
  margin-top: 10px;
}

.home-signal-band {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 34px;
  align-items: center;
  margin-top: 92px;
  padding: 42px;
  overflow: hidden;
  border: 1px solid rgba(69, 221, 236, 0.2);
  border-radius: 30px;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 20%, rgba(69, 221, 236, 0.28), transparent 18rem),
    radial-gradient(circle at 92% 20%, rgba(155, 140, 255, 0.24), transparent 16rem),
    linear-gradient(135deg, #07101d 0%, #0c1d31 52%, #10182d 100%);
  box-shadow: 0 34px 90px rgba(7, 16, 29, 0.24);
}

.home-signal-band::before,
.home-signal-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.home-signal-band::before {
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  animation: signalGrid 18s linear infinite;
}

.home-signal-band::after {
  opacity: 0.72;
  background:
    linear-gradient(115deg, transparent 0 18%, rgba(69, 221, 236, 0.22) 18.4%, transparent 19% 54%, rgba(155, 140, 255, 0.24) 54.3%, transparent 55%),
    radial-gradient(circle at 78% 72%, rgba(75, 224, 141, 0.22), transparent 10rem);
  animation: signalSweep 8s ease-in-out infinite alternate;
}

.home-signal-band h2 {
  max-width: 760px;
  margin-bottom: 16px;
  color: var(--text);
}

.home-signal-band p {
  max-width: 740px;
  color: rgba(238, 244, 251, 0.78);
  line-height: 1.72;
}

.signal-actions {
  display: grid;
  justify-items: start;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.065);
  backdrop-filter: blur(18px);
}

.signal-actions .button {
  width: 100%;
}

.signal-phone {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid rgba(69, 221, 236, 0.26);
  border-radius: 16px;
  color: var(--text);
  font-size: 1.22rem;
  font-weight: 900;
  text-align: center;
  background: rgba(7, 16, 29, 0.55);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.signal-actions div {
  display: grid;
  gap: 8px;
}

.signal-actions div a {
  color: rgba(238, 244, 251, 0.78);
}

.product-story {
  color: #111827;
}

.workflow-hero-shot {
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.58fr 1fr;
  gap: 22px;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 22px 64px rgba(17, 24, 39, 0.1);
}

.workflow-hero-shot img,
.workflow-grid img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
  object-position: left center;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}

.workflow-hero-shot img {
  max-height: 520px;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 22px;
}

.workflow-grid article {
  overflow: hidden;
  display: grid;
  grid-template-rows: 260px auto;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(17, 24, 39, 0.08);
}

.workflow-grid img {
  height: 100%;
  border-radius: 0;
}

.workflow-grid div {
  padding: 24px;
}

.workflow-grid span,
.integration-chip,
.placeholder-label {
  color: var(--violet);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.integrations-section,
.roi-section,
.placeholder-grid,
.faq-list {
  color: #111827;
}

.integration-grid,
.placeholder-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.integration-grid div,
.placeholder-grid article,
.roi-result,
.faq-list details {
  padding: 26px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(17, 24, 39, 0.08);
}

.integration-grid strong {
  display: block;
  margin: 14px 0 8px;
  font-family: var(--display-font);
  font-size: 1.3rem;
}

.integration-orbit-stage {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  min-height: 520px;
  margin-top: 36px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 50%, rgba(69, 221, 236, 0.18), transparent 20rem),
    radial-gradient(circle at 18% 18%, rgba(155, 140, 255, 0.15), transparent 18rem),
    linear-gradient(135deg, #ffffff 0%, #f5f9ff 48%, #eef4fb 100%);
  box-shadow: 0 28px 78px rgba(17, 24, 39, 0.11);
  isolation: isolate;
}

.integration-orbit-stage::before,
.integration-orbit-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.integration-orbit-stage::before {
  background: linear-gradient(90deg, #f8fbff 0%, rgba(248, 251, 255, 0) 16%, rgba(248, 251, 255, 0) 84%, #f8fbff 100%);
}

.integration-orbit-stage::after {
  background:
    linear-gradient(180deg, rgba(248, 251, 255, 0.82), transparent 22%, transparent 78%, rgba(248, 251, 255, 0.78)),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.38), transparent 18rem);
}

.integration-ribbon {
  position: absolute;
  left: 50%;
  width: 150%;
  padding: 14px 0;
  transform: translateX(-50%) rotate(var(--ribbon-tilt));
  border-block: 1px solid rgba(17, 24, 39, 0.06);
  background: rgba(255, 255, 255, 0.52);
  backdrop-filter: blur(16px);
  z-index: 1;
}

.integration-ribbon-one {
  --ribbon-tilt: -6deg;
  top: 28%;
}

.integration-ribbon-two {
  --ribbon-tilt: 5deg;
  top: 47%;
  background: rgba(7, 16, 29, 0.86);
  border-color: rgba(69, 221, 236, 0.12);
}

.integration-ribbon-three {
  --ribbon-tilt: -2deg;
  top: 66%;
}

.integration-ribbon-track {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: integrationMarquee 28s linear infinite;
}

.integration-ribbon-two .integration-ribbon-track {
  animation-name: integrationMarqueeReverse;
  animation-duration: 34s;
}

.integration-ribbon-three .integration-ribbon-track {
  animation-duration: 40s;
}

.integration-ribbon span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: max-content;
  padding: 12px 18px;
  border: 1px solid rgba(17, 24, 39, 0.09);
  border-radius: 999px;
  color: #111827;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 14px 30px rgba(17, 24, 39, 0.08);
  font-weight: 900;
  white-space: nowrap;
}

.integration-ribbon-two span {
  border-color: rgba(69, 221, 236, 0.16);
  color: rgba(238, 244, 251, 0.92);
  background: rgba(255, 255, 255, 0.08);
}

.integration-core {
  position: relative;
  z-index: 4;
  display: grid;
  justify-items: center;
  width: min(360px, calc(100% - 38px));
  padding: 40px 30px 34px;
  border: 1px solid rgba(69, 221, 236, 0.18);
  border-radius: 32px;
  color: var(--text);
  text-align: center;
  background:
    radial-gradient(circle at 50% 4%, rgba(69, 221, 236, 0.24), transparent 13rem),
    linear-gradient(145deg, rgba(7, 16, 29, 0.96), rgba(16, 24, 45, 0.94));
  box-shadow:
    0 30px 90px rgba(7, 16, 29, 0.35),
    0 0 72px rgba(69, 221, 236, 0.14);
  animation: integrationCoreFloat 5.8s ease-in-out infinite;
}

.integration-core-ring {
  position: absolute;
  inset: 18px;
  border-radius: 26px;
  background: conic-gradient(from var(--spin), transparent, rgba(69, 221, 236, 0.78), rgba(155, 140, 255, 0.64), transparent 62%);
  opacity: 0.72;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  padding: 1px;
  animation: borderSpin 7s linear infinite;
}

.integration-core img {
  position: relative;
  width: 88px;
  height: 88px;
  margin-bottom: 18px;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 0 54px rgba(69, 221, 236, 0.28);
}

.integration-core strong {
  position: relative;
  font-family: var(--display-font);
  font-size: 2rem;
}

.integration-core p {
  position: relative;
  margin-top: 12px;
  color: rgba(238, 244, 251, 0.76);
  line-height: 1.55;
}

.integration-summary {
  position: absolute;
  right: 28px;
  bottom: 26px;
  z-index: 4;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  max-width: 520px;
}

.integration-summary span {
  padding: 10px 13px;
  border: 1px solid rgba(69, 221, 236, 0.16);
  border-radius: 999px;
  color: #243142;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.07);
  font-size: 0.82rem;
  font-weight: 900;
}

.blog-hero {
  position: relative;
}

.blog-hero::after {
  content: "";
  position: absolute;
  right: max(10px, calc(50% - 580px));
  bottom: 44px;
  width: 260px;
  height: 260px;
  z-index: -1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(69, 221, 236, 0.18), transparent 58%),
    conic-gradient(from 120deg, rgba(69, 221, 236, 0.08), rgba(155, 140, 255, 0.18), rgba(75, 224, 141, 0.08), rgba(69, 221, 236, 0.08));
  filter: blur(0.3px);
  animation: platformOrbMotion 12s ease-in-out infinite;
}

.blog-featured {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  padding: 30px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 34px;
  color: #111827;
  background:
    radial-gradient(circle at 10% 12%, rgba(69, 221, 236, 0.18), transparent 18rem),
    linear-gradient(135deg, #ffffff 0%, #f6faff 100%);
  box-shadow: 0 28px 78px rgba(17, 24, 39, 0.11);
}

.blog-featured h2 {
  margin: 12px 0 14px;
  color: #07101d;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.02;
}

.blog-featured p {
  max-width: 760px;
  color: #526071;
  font-size: 1.04rem;
  line-height: 1.75;
}

.blog-meta {
  color: #1376d8;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.74rem;
}

.blog-image-placeholder {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  min-height: 330px;
  border: 1px solid rgba(69, 221, 236, 0.18);
  border-radius: 28px;
  color: rgba(238, 244, 251, 0.78);
  background:
    linear-gradient(120deg, rgba(69, 221, 236, 0.12), transparent 24%, rgba(155, 140, 255, 0.16) 52%, transparent 78%),
    radial-gradient(circle at 28% 26%, rgba(69, 221, 236, 0.24), transparent 12rem),
    linear-gradient(145deg, #07101d, #10182d);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.blog-image-placeholder::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 72px);
  transform: rotate(14deg);
  animation: signalSweep 5s ease-in-out infinite alternate;
}

.blog-image-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(7, 16, 29, 0.04), rgba(7, 16, 29, 0.14)),
    radial-gradient(circle at 82% 12%, rgba(69, 221, 236, 0.18), transparent 14rem);
}

.blog-image-placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
}

.blog-featured .blog-image-placeholder img {
  object-position: center;
}

.blog-image-placeholder:has(img)::before {
  opacity: 0.24;
}

.blog-image-placeholder span {
  position: relative;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-image-placeholder.small {
  min-height: 0;
  aspect-ratio: 4 / 3;
  margin: 24px 0 28px;
  border-color: rgba(69, 221, 236, 0.24);
  background: #07101d;
  box-shadow:
    0 22px 70px rgba(17, 24, 39, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.blog-article .blog-image-placeholder.small img {
  object-fit: contain;
  object-position: center;
  transform: none;
}

.blog-index-section,
.blog-article-stack {
  color: #111827;
}

.blog-index-section .section-heading {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(69, 221, 236, 0.16);
  border-radius: 28px;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 12%, rgba(69, 221, 236, 0.14), transparent 16rem),
    radial-gradient(circle at 92% 26%, rgba(155, 140, 255, 0.12), transparent 16rem),
    rgba(7, 16, 29, 0.52);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.blog-index-section .section-heading h2 {
  color: #f5fbff !important;
  opacity: 1;
  text-shadow: 0 20px 70px rgba(69, 221, 236, 0.12);
}

.blog-index-section .section-heading p:not(.eyebrow) {
  color: rgba(230, 241, 251, 0.72);
}

.blog-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.blog-card {
  position: relative;
  overflow: hidden;
  min-height: 356px;
  padding: 14px 14px 22px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 24px;
  color: #111827;
  background: #fff;
  box-shadow: 0 18px 50px rgba(17, 24, 39, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.blog-card::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(69, 221, 236, 0.22), rgba(155, 140, 255, 0.1), transparent 68%);
}

.blog-card-thumb {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
  margin-bottom: 18px;
  box-shadow: 0 14px 36px rgba(17, 24, 39, 0.12);
  transition: transform 260ms ease, filter 260ms ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(69, 221, 236, 0.24);
  box-shadow: 0 26px 70px rgba(17, 24, 39, 0.12);
}

.blog-card:hover .blog-card-thumb {
  transform: scale(1.025);
  filter: saturate(1.08) contrast(1.04);
}

.blog-card span {
  position: relative;
  z-index: 1;
  color: var(--violet);
  font-weight: 950;
  letter-spacing: 0.08em;
}

.blog-card h3 {
  position: relative;
  z-index: 1;
  margin: 12px 0 12px;
  font-size: 1.24rem;
  line-height: 1.18;
}

.blog-card p {
  position: relative;
  z-index: 1;
  color: #617083;
  line-height: 1.6;
}

.blog-article-stack {
  display: grid;
  gap: 34px;
}

.blog-article {
  scroll-margin-top: 120px;
  padding: clamp(26px, 4vw, 52px);
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 32px;
  background:
    radial-gradient(circle at 96% 4%, rgba(69, 221, 236, 0.12), transparent 18rem),
    #ffffff;
  box-shadow: 0 24px 70px rgba(17, 24, 39, 0.09);
}

.blog-article-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
}

.blog-number {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  color: #07101d;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  box-shadow: 0 16px 38px rgba(69, 221, 236, 0.25);
  font-weight: 950;
}

.blog-article h2 {
  max-width: 980px;
  color: #07101d;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.05;
}

.blog-article p,
.blog-article li {
  max-width: 940px;
  color: #3f4c5c;
  font-size: 1.03rem;
  line-height: 1.82;
}

.blog-article ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 22px;
  padding-left: 22px;
}

.blog-article li::marker {
  color: #1376d8;
}

.blog-callout {
  max-width: 920px;
  margin: 26px 0;
  padding: 24px;
  border: 1px solid rgba(69, 221, 236, 0.2);
  border-radius: 22px;
  color: #07101d;
  background:
    radial-gradient(circle at 10% 20%, rgba(69, 221, 236, 0.18), transparent 14rem),
    linear-gradient(135deg, #f4fbff, #ffffff);
  box-shadow: 0 18px 46px rgba(17, 24, 39, 0.08);
  font-weight: 850;
  line-height: 1.65;
}

.blog-roi-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(69, 221, 236, 0.16);
  border-radius: 30px;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 10%, rgba(69, 221, 236, 0.22), transparent 16rem),
    radial-gradient(circle at 92% 10%, rgba(155, 140, 255, 0.18), transparent 14rem),
    linear-gradient(135deg, #07101d, #10182d);
  box-shadow: 0 28px 80px rgba(7, 16, 29, 0.24);
}

.blog-roi-cta h2 {
  max-width: 820px;
  color: var(--text);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.02;
}

.blog-roi-cta p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 12px;
  color: rgba(238, 244, 251, 0.72);
  line-height: 1.7;
}

.roi-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: 34px;
  align-items: center;
}

.roi-hero-panel {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border-radius: 28px;
  color: var(--text);
}

.roi-hero-panel::before {
  content: "";
  position: absolute;
  inset: -45%;
  background: conic-gradient(from var(--spin), transparent, rgba(69, 221, 236, 0.28), rgba(155, 140, 255, 0.24), transparent 64%);
  animation: borderSpin 9s linear infinite;
}

.roi-hero-panel > * {
  position: relative;
}

.roi-hero-panel span {
  color: var(--cyan);
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.74rem;
}

.roi-hero-panel strong {
  display: block;
  margin: 18px 0 10px;
  font-family: var(--display-font);
  font-size: clamp(3rem, 6vw, 5.2rem);
  line-height: 0.9;
}

.roi-hero-panel p {
  color: rgba(238, 244, 251, 0.72);
  line-height: 1.65;
}

.roi-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 24px;
  align-items: start;
}

.roi-modern-section {
  position: relative;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.72fr);
  padding: 34px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 34px;
  background:
    radial-gradient(circle at 10% 0%, rgba(69, 221, 236, 0.18), transparent 20rem),
    radial-gradient(circle at 90% 10%, rgba(155, 140, 255, 0.14), transparent 18rem),
    linear-gradient(135deg, #f8fbff, #eef4fb);
  box-shadow: 0 28px 78px rgba(17, 24, 39, 0.1);
}

.roi-card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 24px;
  border-radius: 22px;
  background: #0c1728;
}

.roi-modern-card {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 28px;
  border: 1px solid rgba(69, 221, 236, 0.14);
  border-radius: 28px;
  background:
    radial-gradient(circle at 16% 10%, rgba(69, 221, 236, 0.16), transparent 18rem),
    linear-gradient(145deg, #07101d, #10182d);
  box-shadow: 0 26px 76px rgba(7, 16, 29, 0.18);
}

.roi-form-header {
  grid-column: 1 / -1;
  margin-bottom: 6px;
}

.roi-form-header h2 {
  color: var(--text);
  font-size: clamp(1.8rem, 3vw, 2.55rem);
}

.roi-form-header p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 8px;
  color: rgba(238, 244, 251, 0.68);
  line-height: 1.65;
}

.roi-card label {
  display: grid;
  gap: 8px;
  color: #dce9f4;
  font-weight: 750;
}

.roi-card label span {
  color: rgba(238, 244, 251, 0.78);
  font-size: 0.88rem;
}

.roi-card input {
  min-height: 48px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 12px;
  padding: 0 12px;
  color: var(--text);
  background: rgba(255,255,255,0.08);
}

.roi-modern-card input {
  min-height: 54px;
  border-radius: 16px;
  color: #f8fbff;
  background: rgba(255, 255, 255, 0.075);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.roi-modern-card input:focus {
  outline: none;
  border-color: rgba(69, 221, 236, 0.52);
  box-shadow: 0 0 0 4px rgba(69, 221, 236, 0.12);
}

.roi-result {
  display: grid;
  gap: 16px;
}

.roi-modern-result {
  position: sticky;
  top: 110px;
  overflow: hidden;
  padding: 30px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 16% 8%, rgba(69, 221, 236, 0.22), transparent 15rem),
    linear-gradient(180deg, #ffffff, #f8fbff);
}

.roi-modern-result::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(69, 221, 236, 0.22), rgba(155, 140, 255, 0.12), transparent 68%);
}

.roi-modern-result > * {
  position: relative;
}

.roi-result strong {
  font-family: var(--display-font);
  font-size: clamp(3rem, 6vw, 5rem);
  color: #111827;
}

.roi-modern-result > p {
  color: #526071;
  line-height: 1.72;
}

.roi-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 8px 0;
}

.roi-mini-grid div {
  padding: 16px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.roi-mini-grid span {
  display: block;
  color: #6b7685;
  font-size: 0.78rem;
}

.roi-mini-grid strong {
  margin-top: 4px;
  color: #07101d;
  font-family: var(--body-font);
  font-size: 1rem;
}

.roi-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list summary {
  cursor: pointer;
  font-family: var(--display-font);
  font-size: 1.15rem;
}

.faq-list p {
  color: #566273;
  line-height: 1.7;
}

.compliance {
  color: #111827;
}

.control-stack {
  display: grid;
  gap: 12px;
}

.control-stack div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 20px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(17, 24, 39, 0.07);
}

.control-stack span {
  color: #566273;
  text-align: right;
}

.vip-loyalty-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: min(100%, 100%);
  padding: 104px max(16px, calc((100vw - 1180px) / 2));
  color: var(--text);
}

.vip-loyalty-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 14% 12%, rgba(69, 221, 236, 0.16), transparent 24rem),
    radial-gradient(circle at 84% 22%, rgba(215, 172, 72, 0.2), transparent 22rem),
    linear-gradient(135deg, #07101d 0%, #0c1424 48%, #130f12 100%);
}

.vip-loyalty-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.34;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 82px 82px;
  mask-image: radial-gradient(circle at 50% 34%, #000, transparent 72%);
  -webkit-mask-image: radial-gradient(circle at 50% 34%, #000, transparent 72%);
  animation: signalGrid 18s linear infinite;
}

.vip-loyalty-copy {
  max-width: 860px;
}

.vip-loyalty-copy h2 {
  margin: 12px 0 18px;
  color: #f6fbff;
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.vip-loyalty-copy p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(230, 241, 251, 0.75);
  font-size: 1.04rem;
  line-height: 1.75;
}

.vip-program-overview {
  position: relative;
  overflow: hidden;
  margin: 40px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow:
    0 32px 96px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.vip-program-overview img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 8.7;
  object-fit: cover;
  object-position: center;
}

.vip-program-overview figcaption {
  position: absolute;
  left: 22px;
  bottom: 22px;
  display: grid;
  gap: 6px;
  max-width: min(440px, calc(100% - 44px));
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: rgba(2, 4, 11, 0.68);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.26);
}

.vip-program-overview span {
  color: #d7ac48;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vip-program-overview strong {
  color: #f6fbff;
  font-size: clamp(1.05rem, 2vw, 1.45rem);
}

.vip-card-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px;
}

.vip-tier-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 20px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 0%, rgba(69, 221, 236, 0.12), transparent 16rem),
    rgba(255, 255, 255, 0.055);
  box-shadow:
    0 28px 88px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.vip-tier-card::after {
  content: "";
  position: absolute;
  inset: -40%;
  opacity: 0;
  background: linear-gradient(115deg, transparent 28%, rgba(255, 255, 255, 0.16), transparent 58%);
  transform: translateX(-24%) rotate(8deg);
  transition: opacity 260ms ease;
}

.vip-tier-card:hover {
  transform: translateY(-8px);
  border-color: rgba(69, 221, 236, 0.28);
  box-shadow:
    0 36px 110px rgba(0, 0, 0, 0.34),
    0 0 42px rgba(69, 221, 236, 0.08);
}

.vip-tier-card:hover::after {
  opacity: 1;
  animation: signalSweep 1.6s ease forwards;
}

.vip-tier-card.featured {
  border-color: rgba(215, 172, 72, 0.42);
  background:
    radial-gradient(circle at 42% 0%, rgba(215, 172, 72, 0.2), transparent 16rem),
    radial-gradient(circle at 82% 18%, rgba(69, 221, 236, 0.12), transparent 14rem),
    rgba(255, 255, 255, 0.07);
}

.vip-tier-card img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.34);
}

.vip-tier-card div {
  position: relative;
  z-index: 1;
  padding: 0 4px 4px;
}

.vip-tier-card span,
.vip-automation-grid span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vip-tier-card.gold span {
  color: #d7ac48;
}

.vip-tier-card h3,
.vip-loyalty-cta h3,
.vip-automation-grid h3 {
  margin: 0 0 10px;
  color: #f6fbff;
}

.vip-tier-card p,
.vip-automation-grid p,
.vip-loyalty-cta p:not(.eyebrow) {
  margin: 0;
  color: rgba(230, 241, 251, 0.72);
  line-height: 1.64;
}

.vip-journey {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.vip-journey::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 44px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), #d7ac48, var(--violet));
  opacity: 0.42;
}

.vip-journey div {
  position: relative;
  padding: 52px 18px 18px;
  border-radius: 20px;
  background: rgba(7, 16, 29, 0.58);
}

.vip-journey span {
  position: absolute;
  top: 14px;
  left: 18px;
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  color: #07101d;
  background: linear-gradient(135deg, var(--cyan), #d7ac48);
  font-weight: 950;
}

.vip-journey strong {
  display: block;
  margin-bottom: 8px;
  color: #f6fbff;
  font-size: 1.05rem;
}

.vip-journey p {
  margin: 0;
  color: rgba(230, 241, 251, 0.68);
  line-height: 1.6;
}

.vip-automation-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.vip-automation-grid article,
.vip-loyalty-cta {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background:
    radial-gradient(circle at 90% 8%, rgba(69, 221, 236, 0.1), transparent 12rem),
    rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.vip-loyalty-cta {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  background:
    radial-gradient(circle at 10% 20%, rgba(215, 172, 72, 0.14), transparent 16rem),
    radial-gradient(circle at 88% 26%, rgba(69, 221, 236, 0.14), transparent 16rem),
    rgba(255, 255, 255, 0.07);
}

.vip-loyalty-cta > div {
  max-width: 720px;
}

.pricing-hero h1 {
  max-width: 1050px;
}

.pricing-enterprise {
  position: relative;
  margin-top: -18px;
  padding-top: 70px;
  padding-bottom: 86px;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 12%, rgba(6, 182, 212, 0.16), transparent 24rem),
    radial-gradient(circle at 82% 20%, rgba(168, 85, 247, 0.18), transparent 26rem),
    linear-gradient(180deg, #02040b 0%, #07101d 72%, #02040b 100%);
  overflow: hidden;
}

.pricing-enterprise::before,
.pricing-enterprise::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
}

.pricing-enterprise::before {
  width: 520px;
  height: 520px;
  top: -220px;
  right: 8%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: radial-gradient(circle, rgba(69, 221, 236, 0.15), transparent 62%);
  filter: blur(4px);
  animation: pricingOrb 9s ease-in-out infinite alternate;
}

.pricing-enterprise::after {
  inset: 32px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  opacity: 0.7;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
  margin-top: 42px;
}

.enterprise-pricing-grid {
  position: relative;
  z-index: 1;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.enterprise-price-card {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  color: #f8fbff;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.045);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  overflow: hidden;
}

.enterprise-price-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 0%, rgba(69, 221, 236, 0.12), transparent 14rem),
    radial-gradient(circle at 86% 12%, rgba(168, 85, 247, 0.12), transparent 15rem);
  opacity: 0.85;
}

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

.enterprise-price-card h3 {
  margin: 10px 0 12px;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(1.55rem, 2vw, 2.05rem);
  letter-spacing: 0;
}

.plan-kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  color: #67e8f9;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.plan-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #06b6d4, #a855f7);
  box-shadow: 0 0 18px rgba(69, 221, 236, 0.8);
}

.plan-copy {
  min-height: 78px;
  margin: 0;
  color: rgba(226, 232, 240, 0.74);
  line-height: 1.7;
}

.price {
  margin: 24px 0 16px;
  color: #fff;
  font-size: clamp(3.4rem, 5.4vw, 5.4rem);
  font-weight: 900;
  line-height: 0.9;
}

.price span {
  margin-right: 4px;
  color: #67e8f9;
  font-size: 1.25rem;
  vertical-align: top;
}

.price small {
  margin-left: 6px;
  color: rgba(226, 232, 240, 0.72);
  font-size: 1rem;
  font-weight: 800;
}

.plan-meta {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
}

.plan-meta span {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  color: rgba(226, 232, 240, 0.68);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.9rem;
}

.plan-meta strong {
  color: #fff;
  text-align: right;
}

.price-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 30px;
  list-style: none;
}

.enterprise-price-card li {
  display: flex;
  gap: 10px;
  color: rgba(248, 251, 255, 0.86);
  line-height: 1.55;
}

.enterprise-price-card li::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-top: 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, #06b6d4, #a855f7);
  box-shadow: 0 0 14px rgba(69, 221, 236, 0.55);
}

.price-card .button {
  margin-top: auto;
}

.enterprise-featured-plan {
  transform: scale(1.035);
  border: 2px solid transparent;
  background:
    linear-gradient(145deg, rgba(9, 18, 32, 0.94), rgba(18, 14, 34, 0.94)) padding-box,
    linear-gradient(135deg, #06b6d4, #a855f7) border-box;
  box-shadow:
    0 34px 110px rgba(6, 182, 212, 0.22),
    0 34px 110px rgba(168, 85, 247, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.enterprise-featured-plan::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.22), rgba(168, 85, 247, 0.2));
  filter: blur(28px);
  opacity: 0.4;
  z-index: 0;
}

.popular-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  padding: 9px 12px;
  border-radius: 999px;
  color: #02040b;
  background: linear-gradient(135deg, #67e8f9, #a78bfa);
  box-shadow: 0 12px 34px rgba(69, 221, 236, 0.28);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.telecom-transparency {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 34px;
  align-items: center;
  margin-top: 44px;
  padding: 34px;
  border: 1px solid rgba(103, 232, 249, 0.22);
  border-radius: 30px;
  color: #f8fbff;
  background:
    radial-gradient(circle at 4% 12%, rgba(6, 182, 212, 0.2), transparent 18rem),
    radial-gradient(circle at 95% 50%, rgba(168, 85, 247, 0.17), transparent 18rem),
    rgba(255, 255, 255, 0.055);
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.telecom-transparency h2 {
  margin: 10px 0 0;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(2rem, 3.4vw, 3.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.telecom-transparency p {
  margin: 0;
  color: rgba(226, 232, 240, 0.8);
  font-size: 1.02rem;
  line-height: 1.85;
}

.locked-feature {
  display: inline;
  padding: 0;
  border: 0;
  color: inherit;
  background: none;
  cursor: pointer;
  text-align: left;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@keyframes pricingOrb {
  from { transform: translate3d(0, 0, 0) scale(1); opacity: 0.72; }
  to { transform: translate3d(-34px, 28px, 0) scale(1.08); opacity: 1; }
}

.demo-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1fr);
  gap: 56px;
  align-items: start;
  color: #111827;
}

.calendar-section {
  position: relative;
  align-items: stretch;
  margin-top: -26px;
  padding: 56px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 34px;
  color: var(--text);
  background:
    radial-gradient(circle at 3% 18%, rgba(69, 221, 236, 0.18), transparent 23rem),
    radial-gradient(circle at 72% 4%, rgba(155, 140, 255, 0.2), transparent 25rem),
    linear-gradient(135deg, rgba(7, 16, 29, 0.94), rgba(10, 17, 31, 0.88));
  box-shadow:
    0 30px 110px rgba(7, 16, 29, 0.32),
    0 0 0 1px rgba(69, 221, 236, 0.05) inset;
  overflow: hidden;
}

.calendar-section::before,
.calendar-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
}

.calendar-section::before {
  width: 280px;
  height: 280px;
  left: -92px;
  bottom: 32px;
  border: 1px solid rgba(69, 221, 236, 0.18);
  background:
    radial-gradient(circle at 50% 50%, rgba(69, 221, 236, 0.18), transparent 38%),
    radial-gradient(circle at 50% 50%, transparent 52%, rgba(155, 140, 255, 0.16) 53%, transparent 55%);
  filter: blur(0.2px);
  animation: calendarOrb 11s ease-in-out infinite alternate;
}

.calendar-section::after {
  width: 520px;
  height: 2px;
  right: 38%;
  top: 66px;
  background: linear-gradient(90deg, transparent, rgba(69, 221, 236, 0.5), rgba(155, 140, 255, 0.42), transparent);
  opacity: 0.72;
}

.calendar-section .section-copy {
  position: relative;
  z-index: 1;
  color: var(--text);
  align-self: center;
}

.calendar-section .section-copy h2 {
  max-width: 620px;
  color: #f5fbff;
  text-shadow: 0 18px 56px rgba(69, 221, 236, 0.16);
}

.calendar-section .section-copy p:not(.eyebrow):not(.mini-eyebrow) {
  color: rgba(230, 241, 251, 0.78);
  font-size: 1.04rem;
}

.calendar-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 18px;
}

.calendar-proof-grid div,
.calendar-brief {
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.calendar-proof-grid div {
  min-height: 106px;
  padding: 18px;
  border-radius: 20px;
}

.calendar-proof-grid span {
  display: block;
  margin-bottom: 10px;
  color: rgba(170, 185, 200, 0.86);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.calendar-proof-grid strong {
  display: block;
  color: #ffffff;
  line-height: 1.22;
}

.calendar-brief {
  padding: 22px;
  border-radius: 24px;
}

.mini-eyebrow {
  margin: 0 0 12px;
  color: var(--cyan) !important;
  font-size: 0.76rem !important;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.calendar-brief ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.calendar-brief li {
  position: relative;
  padding-left: 24px;
  color: rgba(238, 247, 255, 0.8);
  line-height: 1.55;
}

.calendar-brief li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.64em;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  box-shadow: 0 0 22px rgba(69, 221, 236, 0.5);
}

.calendar-card {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 16px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 8%, rgba(69, 221, 236, 0.14), transparent 16rem),
    linear-gradient(145deg, rgba(7, 16, 29, 0.95), rgba(16, 24, 45, 0.92));
  box-shadow: 0 28px 86px rgba(7, 16, 29, 0.22);
}

.calendar-card iframe {
  display: block;
  width: 100%;
  min-height: 780px;
  border-radius: 20px;
  background: #ffffff;
}

.calendar-direct-link {
  width: max-content;
  margin-top: 22px;
}

@keyframes calendarOrb {
  from {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.72;
  }
  to {
    transform: translate3d(18px, -18px, 0) scale(1.08);
    opacity: 0.96;
  }
}

.demo-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 24px;
  border-radius: 22px;
  background: #0c1728;
}

.demo-form label {
  display: grid;
  gap: 8px;
  color: #dce9f4;
  font-weight: 750;
}

.demo-form input,
.demo-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 12px;
  padding: 0 12px;
  color: var(--text);
  background: rgba(255,255,255,0.08);
}

.demo-form button,
.form-status {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
}

.footer {
  display: grid;
  grid-template-columns: minmax(220px, 1.35fr) repeat(4, minmax(135px, 1fr));
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0;
  color: var(--text);
}

.footer div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer strong {
  color: #111827;
}

.footer a {
  color: #566273;
  overflow-wrap: anywhere;
}

.footer {
  color: #111827;
}

.footer p,
.footer span {
  color: #566273;
}

.footer-brand img {
  object-position: 18% 50%;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 18px;
  background: rgba(3, 7, 14, 0.74);
  backdrop-filter: blur(12px);
}

.modal[aria-hidden="false"] {
  display: grid;
}

.modal-panel {
  position: relative;
  width: min(520px, 100%);
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  color: var(--text);
  background: #101a2c;
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text);
  background: transparent;
  cursor: pointer;
}

.legal-page {
  position: relative;
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0 96px;
  color: #111827;
}

.button.legal-back,
.legal-back {
  position: fixed;
  top: 22px;
  left: 22px;
  z-index: 20;
  width: max-content;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(69, 221, 236, 0.72);
  border-radius: 999px;
  color: #ffffff;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.22), transparent 8rem),
    linear-gradient(135deg, #1f6fff 0%, #45ddec 100%) !important;
  box-shadow:
    0 18px 46px rgba(31, 111, 255, 0.32),
    0 0 0 1px rgba(255, 255, 255, 0.26) inset;
  backdrop-filter: blur(18px);
  font-weight: 950;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.legal-back::before {
  content: "<";
  margin-right: 8px;
  font-weight: 900;
}

.button.legal-back:hover,
.legal-back:hover {
  transform: translateY(-2px);
  box-shadow:
    0 22px 58px rgba(31, 111, 255, 0.38),
    0 0 0 1px rgba(255, 255, 255, 0.34) inset;
}

.legal-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 20% 0%, rgba(69, 221, 236, 0.16), transparent 24rem),
    radial-gradient(circle at 86% 14%, rgba(155, 140, 255, 0.13), transparent 22rem),
    linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%);
}

.legal-page h1 {
  margin-top: 28px;
  margin-bottom: 10px;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 0.98;
}

.legal-page h2 {
  margin-bottom: 14px;
  font-size: 1.5rem;
}

.legal-page section {
  margin-top: 22px;
  padding: 26px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 52px rgba(17, 24, 39, 0.08);
}

.legal-page p {
  color: #3f4b5b;
  line-height: 1.75;
}

.legal-page ul {
  display: grid;
  gap: 12px;
  margin: 14px 0 0;
  padding-left: 20px;
  color: #3f4b5b;
  line-height: 1.72;
}

.legal-page li::marker {
  color: var(--cyan);
}

.legal-page a:not(.button) {
  color: #3458d4;
  font-weight: 800;
}

.legal-updated {
  margin-bottom: 26px;
  color: #667085;
  font-weight: 800;
}

[data-animate] {
  opacity: 1;
  transform: translateY(0);
  transition: transform 700ms ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@property --spin {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

@keyframes borderSpin {
  to { --spin: 360deg; }
}

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

@keyframes pulse {
  70% { box-shadow: 0 0 0 14px rgba(75, 224, 141, 0); }
  100% { box-shadow: 0 0 0 0 rgba(75, 224, 141, 0); }
}

@keyframes wave {
  to { transform: scaleY(0.48); opacity: 0.72; }
}

@keyframes floatA {
  50% { transform: translate3d(18px, -18px, 0) rotate(-1deg); }
}

@keyframes floatB {
  50% { transform: translate3d(-16px, 16px, 0) rotate(1deg); }
}

@keyframes floatC {
  50% { transform: translate3d(14px, 12px, 0) rotate(-0.8deg); }
}

@keyframes logoFloat {
  50% { transform: translateY(-8px) scale(1.025); }
}

@keyframes glowShift {
  50% { opacity: 0.9; transform: rotate(180deg) scale(1.04); }
  100% { transform: rotate(360deg); }
}

@keyframes platformOrbMotion {
  0% { transform: translate3d(0, 0, 0) rotate(0deg) scale(1); }
  42% { transform: translate3d(-12px, -18px, 0) rotate(132deg) scale(1.045); }
  72% { transform: translate3d(10px, 8px, 0) rotate(248deg) scale(0.985); }
  100% { transform: translate3d(0, 0, 0) rotate(360deg) scale(1); }
}

@keyframes platformOrbHalo {
  0% { transform: rotate(0deg) scale(0.96); opacity: 0.38; }
  50% { transform: rotate(180deg) scale(1.05); opacity: 0.9; }
  100% { transform: rotate(360deg) scale(0.96); opacity: 0.38; }
}

@keyframes integrationMarquee {
  to { transform: translateX(-50%); }
}

@keyframes integrationMarqueeReverse {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

@keyframes integrationCoreFloat {
  50% { transform: translateY(-10px) scale(1.015); }
}

@keyframes pageEnter {
  from { opacity: 0; transform: translateY(12px); filter: blur(6px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes signalGrid {
  to { background-position: 92px 46px; }
}

@keyframes signalSweep {
  to { transform: translate3d(24px, -10px, 0) scale(1.03); opacity: 0.9; }
}

@media (max-width: 1100px) {
  .enterprise-pricing-grid {
    grid-template-columns: 1fr;
  }

  .enterprise-featured-plan {
    transform: none;
  }

  .telecom-transparency {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links.open {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: grid;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(8, 17, 31, 0.96);
  }

  .hero,
  .home-hero,
  .split,
  .demo-section {
    grid-template-columns: 1fr;
  }

  .calendar-section {
    padding: 36px 22px;
  }

  .calendar-proof-grid {
    grid-template-columns: 1fr;
  }

  .calendar-card iframe {
    min-height: 720px;
  }

  .hero-system {
    min-height: 600px;
  }

  .band,
  .pricing-grid,
  .solution-grid,
  .footer,
  .expanded-grid,
  .process-list,
  .contact-grid,
  .integration-grid,
  .placeholder-grid,
  .workflow-grid,
  .about-proof-list,
  .restaurant-proof,
  .home-signal-band,
  .demo-video-card,
  .workflow-hero-shot,
  .roi-section {
    grid-template-columns: 1fr 1fr;
  }

  .vip-card-showcase {
    grid-template-columns: 1fr 1fr;
  }

  .vip-program-overview figcaption {
    position: static;
    max-width: none;
    margin: 14px;
  }

  .vip-tier-card.featured,
  .vip-journey,
  .vip-automation-grid {
    grid-column: 1 / -1;
  }

  .vip-journey,
  .vip-automation-grid {
    grid-template-columns: 1fr;
  }

  .product-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .dashboard-preview {
    grid-template-columns: 1fr;
  }

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

  .app-logo {
    grid-column: 1 / -1;
  }

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

@media (max-width: 640px) {
  body {
    background:
      radial-gradient(circle at 22% 6%, rgba(69, 221, 236, 0.16), transparent 20rem),
      linear-gradient(180deg, #07101d 0%, #101421 48%, #f6f8fb 48%, #f6f8fb 100%);
  }

  .nav,
  .section,
  .section-grid,
  .footer {
    width: min(360px, calc(100vw - 32px));
  }

  .home-signal-band {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 62px;
    padding: 26px;
    border-radius: 24px;
  }

  .signal-actions {
    padding: 18px;
  }

  .signal-phone {
    font-size: 1rem;
  }

  .hero {
    padding-top: 64px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(1.95rem, 9vw, 2.35rem);
    line-height: 1.04;
  }

  .home-hero h1,
  .page-hero h1 {
    font-size: clamp(2.05rem, 9.5vw, 2.7rem);
    line-height: 1.04;
  }

  .page-hero {
    padding: 72px 0 56px;
  }

  .platform-hero::before,
  .platform-hero::after {
    right: 10px;
    bottom: 12px;
    width: 150px;
    height: 150px;
    opacity: 0.42;
  }

  .platform-video-section {
    padding-top: 84px;
  }

  .platform-video-section .section-heading {
    padding: 22px;
    border-radius: 22px;
  }

  .integration-orbit-stage {
    min-height: 560px;
    border-radius: 26px;
  }

  .integration-ribbon {
    width: 230%;
  }

  .integration-ribbon span {
    padding: 10px 14px;
    font-size: 0.84rem;
  }

  .integration-core {
    width: min(310px, calc(100% - 28px));
    padding: 34px 22px 28px;
  }

  .integration-summary {
    right: 16px;
    bottom: 16px;
    left: 16px;
    justify-content: center;
  }

  .about-proof-list {
    grid-template-columns: 1fr;
  }

  .vip-card-showcase,
  .vip-journey,
  .vip-automation-grid {
    grid-template-columns: 1fr;
  }

  .vip-path-card img,
  .vip-program-overview img {
    aspect-ratio: 16 / 10;
  }

  .vip-loyalty-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .blog-featured,
  .blog-card-grid,
  .blog-roi-cta,
  .roi-hero,
  .roi-modern-section,
  .roi-modern-card {
    grid-template-columns: 1fr;
  }

  .blog-featured {
    padding: 18px;
    border-radius: 26px;
  }

  .blog-image-placeholder {
    min-height: 250px;
  }

  .blog-card {
    min-height: 220px;
  }

  .blog-article-header {
    grid-template-columns: 1fr;
  }

  .blog-roi-cta {
    padding: 24px;
    border-radius: 24px;
  }

  .blog-roi-cta .button {
    width: 100%;
  }

  .roi-modern-section {
    padding: 16px;
    border-radius: 26px;
  }

  .roi-modern-card,
  .roi-modern-result,
  .roi-hero-panel {
    padding: 22px;
    border-radius: 24px;
  }

  .roi-modern-result {
    position: relative;
    top: auto;
  }

  .roi-mini-grid {
    grid-template-columns: 1fr;
  }

  .roi-actions .button {
    width: 100%;
  }

  .legal-back {
    top: 12px;
    left: 12px;
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.86rem;
  }

  .legal-page {
    padding-top: 86px;
  }

  .blog-number {
    width: 52px;
    height: 52px;
  }

  .hero-lede {
    font-size: 0.98rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-system {
    width: min(100%, 340px);
    max-width: 340px;
    margin-inline: auto;
  }

  .hero-lede {
    width: min(100%, 340px);
    max-width: 340px;
  }

  .eyebrow {
    font-size: 0.68rem;
    line-height: 1.45;
  }

  .hero-system {
    min-height: auto;
  }

  .call-card,
  .reservation-flow,
  .mini-dashboard {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: 100%;
    margin-bottom: 14px;
  }

  .compact-hero-system .call-card,
  .compact-hero-system .mini-dashboard {
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }

  .orbit-ring {
    display: none;
  }

  .band,
  .pricing-grid,
  .solution-grid,
  .story-grid,
  .expanded-grid,
  .process-list,
  .contact-grid,
  .integration-grid,
  .placeholder-grid,
  .workflow-grid,
  .restaurant-proof,
  .demo-video-card,
  .workflow-hero-shot,
  .roi-section,
  .footer,
  .demo-form,
  .product-gallery {
    grid-template-columns: 1fr;
  }

  .roi-card {
    grid-template-columns: 1fr;
  }

  .workflow-grid {
    max-width: 100%;
  }

  .platform-logic {
    width: 100%;
    padding: 72px 16px;
  }

  .demo-video-card {
    padding: 12px;
  }

  .demo-video-frame video {
    min-height: 280px;
  }

  .product-shot,
  .product-shot img,
  .featured-shot,
  .featured-shot img {
    min-height: 280px;
  }

  .section {
    padding: 72px 0;
  }

  .pricing-enterprise {
    padding-top: 48px;
    padding-bottom: 58px;
  }

  .enterprise-price-card {
    padding: 22px;
    border-radius: 22px;
  }

  .plan-copy {
    min-height: auto;
  }

  .plan-meta span {
    align-items: flex-start;
    flex-direction: column;
  }

  .plan-meta strong {
    text-align: left;
  }

  .price {
    font-size: clamp(3rem, 16vw, 4rem);
  }

  .telecom-transparency {
    padding: 24px;
    border-radius: 24px;
  }

  .dash-kpis {
    grid-template-columns: 1fr;
  }

  .zone-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .floor-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .table.wide {
    grid-column: span 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
