:root {
  color-scheme: light;
  --ink: #172022;
  --ink-soft: #526063;
  --paper: #f7f9f4;
  --white: #ffffff;
  --teal: #007f82;
  --teal-deep: #06474b;
  --gold: #c49b44;
  --coral: #d86d52;
  --line: rgba(23, 32, 34, 0.13);
  --shadow: 0 22px 70px rgba(14, 27, 29, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  letter-spacing: 0;
}

button,
input,
textarea {
  font: inherit;
}

a {
  color: inherit;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(24px, 6vw, 72px);
  color: var(--white);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  backdrop-filter: blur(12px);
}

.brand-name {
  font-size: 1rem;
  font-weight: 800;
  white-space: nowrap;
}

.contact-pill,
.menu-trigger,
.primary-action,
.contact-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.contact-pill {
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.contact-pill:hover,
.menu-trigger:hover,
.primary-action:hover,
.contact-number:hover {
  transform: translateY(-2px);
}

.explore-menu {
  position: relative;
  z-index: 10;
  margin-left: auto;
}

.site-nav + .explore-menu {
  margin-left: 0;
}

.menu-trigger {
  gap: 12px;
  padding: 0 16px 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.11);
  color: var(--white);
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.menu-trigger:focus-visible,
.menu-link:focus-visible,
.menu-access-link:focus-visible {
  outline: 3px solid rgba(77, 219, 211, 0.58);
  outline-offset: 3px;
}

.menu-trigger-icon {
  display: grid;
  gap: 4px;
  width: 18px;
}

.menu-trigger-icon span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.explore-menu.is-open .menu-trigger {
  border-color: rgba(77, 219, 211, 0.58);
  background: rgba(6, 71, 75, 0.78);
}

.explore-menu.is-open .menu-trigger-icon span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.explore-menu.is-open .menu-trigger-icon span:nth-child(2) {
  opacity: 0;
}

.explore-menu.is-open .menu-trigger-icon span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.menu-panel {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  width: min(560px, calc(100vw - 36px));
  max-height: calc(100svh - 112px);
  overflow: auto;
  padding: 14px;
  border: 1px solid rgba(77, 219, 211, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(77, 219, 211, 0.13), transparent 42%),
    linear-gradient(180deg, rgba(8, 30, 32, 0.98), rgba(4, 17, 18, 0.98));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  color: var(--white);
  backdrop-filter: blur(18px);
}

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

.menu-panel-heading {
  padding: 10px 10px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.menu-panel-heading span {
  display: block;
  font-size: 1rem;
  font-weight: 900;
}

.menu-panel-heading p {
  max-width: 420px;
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
  line-height: 1.45;
}

.menu-link-group {
  display: grid;
  gap: 8px;
  padding: 12px 0;
}

.menu-link {
  position: relative;
  display: grid;
  gap: 5px;
  padding: 14px 42px 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  text-decoration: none;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.menu-link::before {
  content: "";
  position: absolute;
  top: 16px;
  right: 16px;
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  color: rgba(216, 179, 91, 0.94);
  transform: rotate(45deg);
}

.menu-link:hover,
.menu-link[aria-current="page"] {
  border-color: rgba(77, 219, 211, 0.38);
  background: rgba(77, 219, 211, 0.1);
  transform: translateY(-1px);
}

.menu-link-title {
  color: var(--white);
  font-size: 0.94rem;
  font-weight: 900;
  line-height: 1.2;
}

.menu-link-description {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.8rem;
  line-height: 1.4;
}

.menu-system-access {
  display: grid;
  gap: 10px;
  padding: 14px 10px 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.menu-section-label {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.menu-access-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.menu-access-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid rgba(216, 179, 91, 0.5);
  border-radius: 8px;
  background: rgba(216, 179, 91, 0.16);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.menu-access-link:hover {
  background: rgba(216, 179, 91, 0.26);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  display: grid;
  min-height: 74svh;
  max-height: 840px;
  overflow: hidden;
  padding: 112px clamp(24px, 6vw, 72px) 26px;
  color: var(--white);
  isolation: isolate;
}

.hero-image,
.hero-shade,
.signal-canvas {
  position: absolute;
  inset: 0;
}

.hero-image {
  z-index: -4;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(6, 13, 14, 0.88) 0%, rgba(6, 13, 14, 0.7) 42%, rgba(6, 13, 14, 0.18) 100%),
    linear-gradient(180deg, rgba(6, 13, 14, 0.32), rgba(6, 13, 14, 0.6));
}

.signal-canvas {
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0.58;
  mix-blend-mode: screen;
}

.hero-content {
  align-self: center;
  width: min(760px, 100%);
  padding: 22px 0 46px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 920px;
  margin: 0;
  font-size: 4.35rem;
  line-height: 1;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.18rem;
  line-height: 1.6;
}

.primary-action {
  margin-top: 32px;
  padding: 0 24px;
  background: var(--gold);
  color: #171104;
  box-shadow: 0 14px 38px rgba(196, 155, 68, 0.28);
}

.primary-action:hover {
  background: #d8b35b;
}

.hero-login-panel {
  align-self: end;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: min(900px, 100%);
  margin-top: 30px;
}

.login-button {
  position: relative;
  flex: 1 1 330px;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 24px 0 28px;
  border: 2px solid rgba(255, 255, 255, 0.36);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.06)),
    rgba(8, 24, 26, 0.78);
  color: var(--white);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.25;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    inset 0 -3px 0 rgba(0, 0, 0, 0.18),
    0 18px 42px rgba(0, 0, 0, 0.32);
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.login-button::after {
  width: 11px;
  height: 11px;
  flex: 0 0 auto;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.login-button span {
  flex: 1 1 auto;
}

.login-button-hotel {
  background:
    linear-gradient(180deg, #dcb960, #bd8f2e);
  color: #171104;
  border-color: rgba(255, 255, 255, 0.36);
}

.login-button-restaurant {
  background:
    linear-gradient(180deg, rgba(0, 127, 130, 0.92), rgba(6, 71, 75, 0.98));
  border-color: rgba(255, 255, 255, 0.3);
}

.login-button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.54);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    0 20px 42px rgba(0, 0, 0, 0.3);
}

.login-button:active {
  transform: translateY(1px);
  box-shadow:
    inset 0 2px 4px rgba(0, 0, 0, 0.18),
    0 10px 24px rgba(0, 0, 0, 0.22);
}

.login-button:focus-visible {
  outline: 3px solid rgba(216, 179, 91, 0.74);
  outline-offset: 4px;
}

.proof-band,
.product-band,
.systems-band,
.detail-band,
.detail-workflow-band,
.intelligence-band,
.contact-band {
  padding: 84px clamp(24px, 6vw, 72px);
}

.proof-band,
.product-band,
.detail-band {
  background: var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.6fr);
  gap: clamp(24px, 6vw, 80px);
  align-items: end;
  margin: 0 0 34px;
}

.section-heading h2,
.systems-copy h2,
.contact-content h2 {
  margin: 0;
  font-size: 2.5rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.proof-band .section-heading {
  grid-template-columns: auto minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.proof-band .section-heading h2 {
  font-size: clamp(1.35rem, 1.62vw, 1.72rem);
  line-height: 1.18;
  white-space: nowrap;
}

.section-heading .section-kicker {
  align-self: start;
  color: var(--teal);
}

.product-heading {
  display: block;
}

.product-heading h2 {
  max-width: none;
  font-size: clamp(1.7rem, 2.6vw, 2.5rem);
  white-space: nowrap;
}

.product-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.product-panel {
  position: relative;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 22px 64px rgba(27, 39, 40, 0.08);
}

.product-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
}

.product-panel-restaurant::before {
  background: linear-gradient(90deg, var(--teal), var(--coral));
}

.product-panel-topline {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-panel h3 {
  margin: 18px 0 0;
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.product-panel p {
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.65;
}

.mini-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 28px 0 0;
}

.mini-flow span,
.mini-flow strong {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 8px;
  text-align: center;
  font-size: 0.78rem;
  line-height: 1.25;
}

.mini-flow span {
  border: 1px solid rgba(0, 127, 130, 0.16);
  background: rgba(0, 127, 130, 0.07);
  color: var(--teal-deep);
  font-weight: 800;
}

.mini-flow strong {
  background: var(--teal-deep);
  color: var(--white);
  font-weight: 900;
}

.product-points {
  display: grid;
  gap: 13px;
  margin: 28px 0 0;
  padding: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.55;
  list-style: none;
}

.product-points li {
  position: relative;
  padding-left: 26px;
}

.product-points li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 10px;
  height: 10px;
  border: 3px solid rgba(0, 127, 130, 0.26);
  border-radius: 50%;
  background: var(--gold);
}

.example-link,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 56px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 900;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.example-link {
  width: 100%;
  margin-top: 28px;
  padding: 0 22px;
  border: 2px solid rgba(6, 71, 75, 0.12);
  background: #f2f7f4;
  color: var(--teal-deep);
}

.example-link::after,
.secondary-action::after {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.example-link-hotel {
  background: linear-gradient(180deg, #dcb960, #bd8f2e);
  color: #171104;
}

.example-link-restaurant {
  background: linear-gradient(180deg, rgba(0, 127, 130, 0.94), rgba(6, 71, 75, 1));
  color: var(--white);
}

.example-link:hover,
.secondary-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(14, 27, 29, 0.14);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.project-card {
  min-height: 285px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 20px 55px rgba(27, 39, 40, 0.06);
}

.project-card-dark {
  background: var(--teal-deep);
  color: var(--white);
}

.project-number {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(0, 127, 130, 0.11);
  color: var(--teal);
  font-weight: 900;
}

.project-card-dark .project-number {
  background: rgba(255, 255, 255, 0.12);
  color: var(--gold);
}

.project-card h3 {
  margin: 26px 0 14px;
  font-size: 1.45rem;
  line-height: 1.15;
  letter-spacing: 0;
}

.project-card p,
.systems-copy p,
.capability-list {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.65;
}

.project-card-dark p {
  color: rgba(255, 255, 255, 0.76);
}

.systems-band {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: center;
  background: #ffffff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.systems-copy {
  max-width: 610px;
}

.systems-copy .section-kicker {
  color: var(--coral);
}

.systems-copy p {
  margin: 20px 0 0;
}

.capability-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.capability-list li {
  position: relative;
  padding-left: 32px;
}

.capability-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 14px;
  height: 14px;
  border: 3px solid var(--teal);
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(0, 127, 130, 0.1);
}

.system-map {
  position: relative;
  min-height: 460px;
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid rgba(6, 71, 75, 0.18);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(0, 127, 130, 0.14), transparent 42%),
    radial-gradient(circle at 88% 12%, rgba(196, 155, 68, 0.28), transparent 28%),
    #f2f7f4;
  box-shadow: var(--shadow);
}

.system-map::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(0, 127, 130, 0.16);
  border-radius: 8px;
  pointer-events: none;
}

.map-node {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  min-height: 96px;
  padding: 22px;
  border: 1px solid rgba(23, 32, 34, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(12px);
}

.map-node span {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.map-node strong {
  margin-top: 8px;
  font-size: 1.35rem;
  line-height: 1.2;
}

.node-live {
  border-color: rgba(216, 109, 82, 0.36);
}

.map-rail {
  position: relative;
  z-index: 1;
  width: 4px;
  height: 38px;
  margin-left: 38px;
  border-radius: 99px;
  background: linear-gradient(var(--coral), var(--gold), var(--teal));
}

.map-signal {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(0, 127, 130, 0.3);
  pointer-events: none;
}

.map-signal-one {
  right: 18px;
  bottom: -58px;
  width: 230px;
  height: 230px;
}

.map-signal-two {
  right: 56px;
  bottom: 22px;
  width: 108px;
  height: 108px;
  border-color: rgba(196, 155, 68, 0.44);
}

.workflow-band {
  grid-template-columns: minmax(0, 0.76fr) minmax(460px, 1.24fr);
}

.workflow-stack {
  display: grid;
  gap: 18px;
}

.workflow-card {
  padding: 24px;
  border: 1px solid rgba(6, 71, 75, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 127, 130, 0.11), transparent 44%),
    #f4f8f5;
  box-shadow: var(--shadow);
}

.workflow-card-accent {
  background:
    linear-gradient(135deg, rgba(216, 109, 82, 0.13), transparent 42%),
    #fbfaf7;
}

.workflow-card-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.workflow-card-heading span {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.workflow-card-heading strong {
  font-size: 1.25rem;
}

.workflow-lane {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.workflow-lane span {
  position: relative;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border: 1px solid rgba(23, 32, 34, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 850;
  line-height: 1.25;
  text-align: center;
}

.post-call-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 20px;
  border-radius: 8px;
  background: var(--teal-deep);
  color: var(--white);
}

.post-call-strip span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  font-weight: 850;
}

.advantage-preview-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  padding: 54px clamp(24px, 6vw, 72px);
  border-top: 1px solid rgba(6, 71, 75, 0.12);
  border-bottom: 1px solid rgba(6, 71, 75, 0.12);
  background:
    radial-gradient(circle at 86% 22%, rgba(196, 155, 68, 0.18), transparent 26%),
    linear-gradient(135deg, rgba(0, 127, 130, 0.11), transparent 46%),
    var(--white);
}

.advantage-preview-copy {
  max-width: 900px;
}

.advantage-preview-copy .section-kicker {
  color: var(--teal);
}

.advantage-preview-copy h2 {
  margin: 0;
  color: var(--teal-deep);
  font-size: clamp(1.75rem, 3vw, 2.7rem);
  line-height: 1.06;
}

.advantage-preview-copy p {
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.65;
}

.advantage-preview-link {
  margin-top: 0;
}

.advantage-page {
  background: var(--paper);
}

.advantage-hero {
  position: relative;
  min-height: 78svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 148px clamp(24px, 6vw, 72px) 88px;
  color: var(--white);
  isolation: isolate;
}

.advantage-hero-image {
  object-position: center;
}

.advantage-hero-shade {
  background:
    linear-gradient(90deg, rgba(3, 13, 15, 0.93) 0%, rgba(4, 22, 24, 0.78) 43%, rgba(4, 22, 24, 0.18) 100%),
    linear-gradient(180deg, rgba(3, 13, 15, 0.16), rgba(3, 13, 15, 0.76));
}

.advantage-hero-content {
  width: min(900px, 100%);
}

.advantage-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(3.4rem, 7.6vw, 7.1rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.advantage-hero-lead {
  max-width: 760px;
  margin: 26px 0 0;
  color: var(--gold);
  font-size: clamp(1.24rem, 2.1vw, 1.78rem);
  font-weight: 850;
  line-height: 1.24;
}

.advantage-hero-copy {
  max-width: 740px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.1rem;
  line-height: 1.62;
}

.advantage-proof-band,
.advantage-band,
.advantage-dark-band,
.advantage-update-band,
.advantage-intelligence-band {
  padding: 82px clamp(24px, 6vw, 72px);
}

.advantage-proof-band {
  position: relative;
  z-index: 2;
  background: var(--white);
}

.advantage-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(6, 71, 75, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 127, 130, 0.1), transparent 42%),
    #fbfdf9;
  box-shadow: 0 22px 64px rgba(27, 39, 40, 0.08);
}

.advantage-proof-grid article {
  min-height: 230px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 28px 24px;
  border-right: 1px solid rgba(6, 71, 75, 0.12);
}

.advantage-proof-grid article:last-child {
  border-right: 0;
}

.advantage-proof-grid span,
.advantage-tool-card span,
.update-rail span,
.guardrail-node span,
.guardrail-path span,
.query-panel-header span,
.knowledge-layer span {
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.advantage-proof-grid strong {
  color: var(--teal-deep);
  font-size: 1.22rem;
  line-height: 1.18;
}

.advantage-proof-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.55;
}

.advantage-band,
.advantage-update-band {
  background: var(--paper);
}

.advantage-knowledge-band,
.advantage-update-band {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
}

.advantage-copy {
  max-width: 720px;
}

.advantage-copy .section-kicker {
  color: var(--coral);
}

.advantage-copy h2,
.advantage-heading h2 {
  margin: 0;
  font-size: clamp(2.25rem, 4.5vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.advantage-copy p {
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 1.04rem;
  line-height: 1.68;
}

.knowledge-stack {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid rgba(6, 71, 75, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 80% 10%, rgba(196, 155, 68, 0.22), transparent 28%),
    linear-gradient(135deg, rgba(0, 127, 130, 0.12), transparent 44%),
    var(--white);
  box-shadow: var(--shadow);
}

.knowledge-stack::before {
  content: "";
  position: absolute;
  left: 58px;
  top: 44px;
  bottom: 44px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(var(--gold), var(--teal), var(--coral));
}

.knowledge-layer {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  min-height: 98px;
  padding: 22px 22px 22px 66px;
  border: 1px solid rgba(23, 32, 34, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
}

.knowledge-layer::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 24px;
  width: 20px;
  height: 20px;
  border: 4px solid rgba(0, 127, 130, 0.22);
  border-radius: 50%;
  background: var(--gold);
}

.knowledge-layer strong {
  color: var(--ink);
  font-size: clamp(1.08rem, 1.7vw, 1.36rem);
  line-height: 1.22;
}

.knowledge-layer-top {
  background: var(--teal-deep);
  color: var(--white);
}

.knowledge-layer-top span,
.knowledge-layer-top strong {
  color: var(--white);
}

.knowledge-layer-base {
  background: #fbfaf7;
}

.advantage-dark-band,
.advantage-intelligence-band {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(430px, 1.22fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
  background: var(--teal-deep);
  color: var(--white);
}

.advantage-copy-light h2 {
  color: var(--white);
}

.advantage-copy-light p {
  color: rgba(255, 255, 255, 0.78);
}

.advantage-copy-light .section-kicker {
  color: var(--gold);
}

.advantage-dark-band .guardrail-node span,
.advantage-dark-band .guardrail-path span {
  color: var(--gold);
}

.guardrail-flow {
  display: grid;
  gap: 14px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    radial-gradient(circle at 84% 12%, rgba(196, 155, 68, 0.22), transparent 28%),
    rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 76px rgba(0, 0, 0, 0.2);
}

.guardrail-node,
.guardrail-path article,
.query-panel {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
}

.guardrail-node {
  display: grid;
  gap: 10px;
  min-height: 108px;
  align-content: center;
  padding: 22px;
}

.guardrail-node strong,
.guardrail-path strong {
  color: var(--white);
  font-size: 1.32rem;
  line-height: 1.18;
}

.guardrail-path {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.guardrail-path article {
  min-height: 210px;
  padding: 24px;
}

.guardrail-path p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.58;
}

.guardrail-node-source {
  background: rgba(255, 255, 255, 0.13);
}

.guardrail-node-result {
  border-color: rgba(196, 155, 68, 0.32);
  background: rgba(196, 155, 68, 0.14);
}

.advantage-heading {
  align-items: start;
}

.advantage-heading .section-kicker {
  font-size: 1.08rem;
}

.advantage-tool-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.advantage-tool-card {
  min-height: 380px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 20px 55px rgba(27, 39, 40, 0.06);
}

.advantage-tool-card-accent {
  background:
    linear-gradient(135deg, rgba(196, 155, 68, 0.16), transparent 44%),
    var(--white);
}

.advantage-tool-card-dark {
  background: var(--teal-deep);
  color: var(--white);
}

.advantage-tool-card-dark span {
  color: var(--gold);
}

.advantage-tool-card h3 {
  margin: 22px 0 0;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.12;
}

.advantage-tool-card p {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.65;
}

.advantage-tool-card-dark p {
  color: rgba(255, 255, 255, 0.76);
}

.update-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(6, 71, 75, 0.16);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.update-rail article {
  position: relative;
  min-height: 250px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 28px 22px;
  border-right: 1px solid rgba(6, 71, 75, 0.12);
}

.update-rail article:last-child {
  border-right: 0;
}

.update-rail article::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 42px;
  z-index: 2;
  width: 16px;
  height: 16px;
  border-top: 3px solid var(--gold);
  border-right: 3px solid var(--gold);
  transform: rotate(45deg);
}

.update-rail article:last-child::after {
  display: none;
}

.update-rail strong {
  color: var(--teal-deep);
  font-size: 1.25rem;
  line-height: 1.18;
}

.advantage-economics-band {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.economics-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.economics-grid article {
  min-height: 250px;
  padding: 30px;
  border: 1px solid rgba(6, 71, 75, 0.15);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 127, 130, 0.09), transparent 42%),
    #f8fbf7;
}

.economics-grid strong {
  color: var(--teal-deep);
  font-size: 1.42rem;
  line-height: 1.16;
}

.economics-grid p {
  margin: 18px 0 0;
  color: var(--ink-soft);
  line-height: 1.62;
}

.advantage-intelligence-band {
  background:
    radial-gradient(circle at 76% 12%, rgba(77, 219, 211, 0.18), transparent 26%),
    linear-gradient(135deg, #092629, #061719);
}

.query-panel {
  padding: 26px;
}

.query-panel-header {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
}

.query-panel-header strong {
  color: var(--white);
  font-size: 1.45rem;
  line-height: 1.16;
}

.query-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.query-grid span {
  min-height: 72px;
  display: grid;
  place-items: center;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
}

.query-panel p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.58;
}

.detail-hero {
  position: relative;
  min-height: 64svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 150px clamp(24px, 6vw, 72px) 82px;
  color: var(--white);
  isolation: isolate;
}

.detail-hero-content {
  width: min(840px, 100%);
}

.detail-hero h1 {
  margin: 0;
  font-size: clamp(3.1rem, 6vw, 5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.detail-hero-content p:not(.eyebrow) {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.18rem;
  line-height: 1.6;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.detail-actions .primary-action {
  margin-top: 0;
}

.secondary-action {
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.detail-band .section-heading h2 {
  max-width: 960px;
}

.agent-grid,
.flow-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.agent-grid-single {
  grid-template-columns: minmax(0, 1fr);
}

.agent-card,
.flow-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 20px 55px rgba(27, 39, 40, 0.06);
}

.agent-card-dark {
  background: var(--teal-deep);
  color: var(--white);
}

.agent-card-restaurant {
  background:
    linear-gradient(135deg, rgba(0, 127, 130, 0.1), transparent 45%),
    var(--white);
}

.agent-badge,
.flow-card span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 13px;
  border-radius: 8px;
  background: rgba(0, 127, 130, 0.1);
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.agent-card-dark .agent-badge {
  background: rgba(255, 255, 255, 0.12);
  color: var(--gold);
}

.agent-card h3,
.flow-card h3 {
  margin: 22px 0 0;
  font-size: 1.55rem;
  line-height: 1.14;
}

.agent-card p,
.flow-card p,
.detail-copy p,
.detail-list {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.65;
}

.agent-card-dark p,
.agent-card-dark .detail-list {
  color: rgba(255, 255, 255, 0.76);
}

.detail-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding-left: 20px;
}

.detail-workflow-band {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(430px, 1.28fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.detail-copy {
  max-width: 640px;
}

.detail-copy h2 {
  margin: 0;
  font-size: 2.5rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.detail-copy p {
  margin: 20px 0 0;
}

.flow-diagram {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 26px;
  border: 1px solid rgba(6, 71, 75, 0.18);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(0, 127, 130, 0.13), transparent 44%),
    #f3f8f4;
  box-shadow: var(--shadow);
}

.flow-diagram-restaurant {
  background:
    linear-gradient(135deg, rgba(216, 109, 82, 0.13), transparent 43%),
    #fbfaf7;
}

.flow-node {
  position: relative;
  display: grid;
  min-height: 70px;
  place-items: center;
  padding: 14px;
  border: 1px solid rgba(23, 32, 34, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
}

.flow-node-source {
  background: var(--ink);
  color: var(--white);
}

.flow-node-agent {
  background: var(--teal-deep);
  color: var(--white);
}

.flow-node-result {
  background: rgba(196, 155, 68, 0.16);
  color: #4f3a0d;
}

.flow-branch {
  display: grid;
  gap: 14px;
}

.flow-path-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.flow-card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.flow-card {
  min-height: 300px;
}

.flow-card p {
  margin: 16px 0 0;
}

.intelligence-band {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
  background: var(--teal-deep);
  color: var(--white);
}

.intelligence-band .section-kicker {
  color: var(--gold);
}

.intelligence-band .detail-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.intelligence-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.intelligence-grid span {
  min-height: 72px;
  display: flex;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 850;
  line-height: 1.25;
}

.contact-band {
  background: var(--teal-deep);
  color: var(--white);
}

.platform-contact-band {
  position: relative;
  min-height: 610px;
  overflow: hidden;
}

.contact-content {
  position: relative;
  z-index: 1;
  width: min(860px, 100%);
}

.contact-content .section-kicker {
  color: var(--gold);
}

.contact-content h2 {
  max-width: 760px;
}

address {
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-style: normal;
  line-height: 1.7;
}

.contact-number {
  margin-top: 28px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.contact-platform-lockup {
  position: absolute;
  right: clamp(24px, 5vw, 72px);
  bottom: clamp(64px, 7vw, 88px);
  display: flex;
  justify-content: flex-end;
  width: min(90vw, 1296px);
}

.contact-platform-graphic {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.site-footer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  padding: 24px clamp(24px, 6vw, 72px);
  background: #101718;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.site-footer a {
  color: inherit;
  font-weight: 800;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.legal-page {
  background: #f8faf7;
}

.legal-header {
  position: static;
  padding: 24px clamp(20px, 5vw, 72px);
  background: var(--teal-deep);
  color: var(--white);
}

.legal-nav {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.86rem;
  font-weight: 850;
}

.legal-nav a {
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: inherit;
  text-decoration: none;
}

.legal-nav a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.legal-main {
  padding: 0 clamp(18px, 5vw, 72px) 72px;
}

.legal-hero {
  max-width: 960px;
  padding: 72px 0 44px;
}

.legal-hero h1 {
  max-width: 780px;
  margin: 0;
  color: var(--teal-deep);
  font-size: clamp(2.6rem, 7vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.legal-hero p {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 1.15rem;
  line-height: 1.6;
}

.legal-hero > span {
  display: block;
  margin-top: 18px;
  color: var(--teal-deep);
  font-size: 0.88rem;
  font-weight: 850;
}

.legal-content {
  max-width: 920px;
  padding: clamp(26px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 22px 70px rgba(14, 27, 29, 0.08);
}

.legal-content h2 {
  margin: 34px 0 12px;
  color: var(--teal-deep);
  font-size: 1.45rem;
  line-height: 1.16;
  letter-spacing: 0;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.7;
}

.legal-content p {
  margin: 0 0 16px;
}

.legal-content ul {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
  padding-left: 22px;
}

.legal-content blockquote {
  margin: 0 0 24px;
  padding: 22px 24px;
  border-left: 5px solid var(--teal);
  border-radius: 8px;
  background: color-mix(in srgb, var(--teal) 8%, var(--white));
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 720;
  line-height: 1.65;
}

.legal-content a {
  color: var(--teal-deep);
  font-weight: 850;
}

.legal-footer {
  border-top: 1px solid var(--line);
  background: var(--white);
  color: var(--ink-soft);
}

.site-header-nav {
  align-items: center;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  font-weight: 850;
}

.site-nav a {
  text-decoration: none;
  transition: color 180ms ease;
}

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

.example-link-secondary {
  margin-top: 12px;
  border-color: rgba(6, 71, 75, 0.16);
  background: var(--white);
  color: var(--teal-deep);
}

.secondary-action-gold {
  border-color: rgba(196, 155, 68, 0.64);
  background: rgba(196, 155, 68, 0.18);
  color: var(--white);
}

.secondary-action-teal {
  border-color: rgba(77, 219, 211, 0.46);
  background: rgba(0, 127, 130, 0.22);
  color: var(--white);
}

.analytics-page {
  background: var(--white);
}

.analytics-hero {
  position: relative;
  min-height: 68svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 142px clamp(24px, 6vw, 72px) 86px;
  color: var(--white);
  isolation: isolate;
}

.analytics-hero-restaurant .hero-image {
  object-position: center right;
}

.analytics-hero-content {
  width: min(780px, 100%);
}

.analytics-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.4rem, 6vw, 5.45rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.analytics-hero-lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--gold);
  font-size: clamp(1.18rem, 2vw, 1.65rem);
  font-weight: 850;
  line-height: 1.25;
}

.analytics-slogan {
  max-width: 560px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.55;
}

.analytics-metrics-band,
.analytics-section,
.analytics-capability-band {
  padding: 72px clamp(24px, 6vw, 72px);
}

.analytics-metrics-band {
  margin-top: 0;
  padding-top: 58px;
  position: relative;
  z-index: 2;
  background: var(--white);
}

.analytics-label {
  display: flex;
  justify-content: center;
  padding: 16px 20px;
  border: 1px solid rgba(77, 219, 211, 0.32);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  background: var(--teal-deep);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
}

.analytics-kpi-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border: 1px solid rgba(77, 219, 211, 0.24);
  border-radius: 0 0 8px 8px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(0, 127, 130, 0.16), transparent 45%),
    #061719;
  color: var(--white);
  box-shadow: 0 24px 70px rgba(6, 18, 20, 0.24);
}

.analytics-kpi {
  min-height: 190px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 28px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.analytics-kpi:last-child {
  border-right: 0;
}

.analytics-kpi span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.analytics-kpi strong {
  color: #4ddbd3;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
}

.analytics-kpi-gold strong {
  color: var(--gold);
}

.analytics-kpi-coral strong {
  color: var(--coral);
}

.analytics-kpi p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.45;
}

.analytics-heading {
  margin: 0 0 28px;
}

.analytics-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 3.3vw, 3rem);
  line-height: 1.06;
}

.analytics-heading p {
  max-width: 760px;
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.6;
}

.analytics-cockpit {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(77, 219, 211, 0.22);
  border-radius: 8px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 8%, rgba(77, 219, 211, 0.16), transparent 24%),
    linear-gradient(135deg, rgba(0, 127, 130, 0.16), transparent 42%),
    #07181d;
  box-shadow: 0 26px 72px rgba(6, 18, 20, 0.24);
}

.chart-panel {
  min-height: 328px;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.chart-panel:nth-child(3n) {
  border-right: 0;
}

.chart-panel:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.chart-panel-wide {
  grid-column: span 1;
}

.chart-panel h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.25;
}

.chart-panel p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.82rem;
  line-height: 1.45;
}

.waterfall-chart {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  height: 220px;
  margin-top: 24px;
}

.waterfall-axis {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.72rem;
}

.waterfall-bars {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 13px;
  align-items: end;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.waterfall-bars span {
  position: relative;
  height: var(--h);
  min-height: 28px;
  border-radius: 5px 5px 0 0;
  background: var(--c);
  box-shadow: inset 0 18px 28px rgba(255, 255, 255, 0.18);
}

.waterfall-bars span::before {
  content: attr(data-label);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.68rem;
  font-weight: 850;
  white-space: nowrap;
  transform: translateX(-50%);
}

.waterfall-labels {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
  margin-top: -26px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.68rem;
  line-height: 1.2;
  text-align: center;
}

.line-chart,
.area-chart {
  width: 100%;
  height: 214px;
  margin-top: 20px;
  overflow: visible;
}

.line-chart polyline,
.area-chart polyline {
  fill: none;
  stroke: #4ddbd3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 5;
}

.line-chart .line-chart-alt {
  stroke: var(--gold);
  stroke-width: 4;
}

.line-chart circle {
  fill: #07181d;
  stroke: #4ddbd3;
  stroke-width: 5;
}

.area-chart path {
  fill: rgba(77, 219, 211, 0.2);
}

.donut-chart {
  width: 170px;
  height: 170px;
  display: grid;
  place-content: center;
  margin: 22px auto 18px;
  border-radius: 50%;
  text-align: center;
}

.hotel-donut {
  background:
    radial-gradient(circle, #07181d 0 39%, transparent 40%),
    conic-gradient(#4ddbd3 0 34%, #6ea6b3 34% 62%, var(--coral) 62% 76%, var(--gold) 76% 87%, #789047 87% 100%);
}

.restaurant-donut {
  background:
    radial-gradient(circle, #07181d 0 39%, transparent 40%),
    conic-gradient(#4ddbd3 0 64%, #2c6bed 64% 82%, var(--gold) 82% 91%, var(--coral) 91% 97%, #6ea6b3 97% 100%);
}

.leakage-donut {
  background:
    radial-gradient(circle, #07181d 0 39%, transparent 40%),
    conic-gradient(#4ddbd3 0 50%, var(--coral) 50% 88%, var(--gold) 88% 100%);
}

.donut-chart strong {
  font-size: 1.35rem;
  line-height: 1;
}

.donut-chart span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
}

.legend-list {
  display: grid;
  gap: 9px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
}

.legend-list span {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.heatmap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 140px;
  margin-top: 28px;
  overflow: hidden;
  border-radius: 6px;
}

.heatmap-grid span {
  border: 1px solid rgba(7, 24, 29, 0.32);
}

.heat-low {
  background: rgba(77, 219, 211, 0.52);
}

.heat-mid {
  background: rgba(196, 155, 68, 0.62);
}

.heat-high {
  background: rgba(216, 109, 82, 0.76);
}

.matrix-labels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.68rem;
  text-align: center;
}

.bar-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.bar-list span {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
}

.bar-list span::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 8px;
  border-radius: 99px;
  background:
    linear-gradient(90deg, var(--coral) var(--w), rgba(255, 255, 255, 0.11) var(--w));
}

.bar-list b,
.bar-list em {
  font-style: normal;
}

.funnel-chart {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.funnel-chart span {
  width: var(--w);
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-inline: auto;
  padding: 0 16px;
  border-radius: 5px;
  background: linear-gradient(90deg, rgba(77, 219, 211, 0.88), rgba(77, 219, 211, 0.36));
  color: #061719;
  font-size: 0.78rem;
  font-weight: 900;
}

.funnel-chart em {
  font-style: normal;
}

.daypart-chart {
  height: 220px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  align-items: end;
  margin-top: 22px;
}

.daypart-chart span {
  position: relative;
  height: var(--h);
  min-height: 30px;
  display: flex;
  align-items: end;
  justify-content: center;
  border-radius: 7px 7px 0 0;
  background: linear-gradient(180deg, #4ddbd3, var(--teal));
}

.daypart-chart b,
.daypart-chart em {
  position: absolute;
  left: 50%;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.66rem;
  font-style: normal;
  white-space: nowrap;
  transform: translateX(-50%);
}

.daypart-chart b {
  bottom: -22px;
}

.daypart-chart em {
  bottom: calc(100% + 6px);
  font-weight: 850;
}

.sentiment-gauge {
  display: grid;
  place-items: center;
  width: 210px;
  height: 126px;
  margin: 34px auto 22px;
  border-radius: 210px 210px 0 0;
  background:
    radial-gradient(circle at 50% 100%, #07181d 0 42%, transparent 43%),
    conic-gradient(from 270deg at 50% 100%, #4ddbd3 0 74%, var(--gold) 74% 88%, var(--coral) 88% 100%);
}

.sentiment-gauge span {
  width: 42px;
  height: 42px;
  margin-top: 38px;
  border-radius: 50%;
  background: rgba(196, 155, 68, 0.18);
}

.sentiment-gauge strong,
.sentiment-gauge em {
  display: block;
  margin-top: -8px;
  font-style: normal;
}

.sentiment-gauge strong {
  font-size: 1.8rem;
}

.sentiment-gauge em {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.8rem;
}

.analytics-insights-section {
  background: linear-gradient(180deg, #ffffff, #f6f8f5);
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.insight-row {
  position: relative;
  min-height: 118px;
  display: grid;
  gap: 8px;
  padding: 22px 112px 22px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.insight-row span {
  font-size: 1rem;
  font-weight: 900;
}

.insight-row p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.45;
}

.insight-row strong {
  position: absolute;
  top: 24px;
  right: 22px;
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 12px;
  border-radius: 6px;
  background: var(--teal);
  color: var(--white);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.analytics-restaurant-page .insight-row strong {
  background: var(--coral);
}

.device-section {
  background: var(--white);
}

.analytics-device-showcase {
  display: grid;
  gap: 24px;
}

.analytics-device-render {
  display: block;
  width: min(100%, 1180px);
  height: auto;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 34px 90px rgba(14, 27, 29, 0.2);
}

.analytics-device-captions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.analytics-device-captions article {
  min-height: 144px;
  padding: 24px;
  border: 1px solid rgba(0, 102, 103, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(77, 219, 211, 0.11), rgba(239, 248, 247, 0.28)),
    var(--white);
}

.analytics-device-captions h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.2;
}

.analytics-device-captions p {
  max-width: 420px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.55;
}

.device-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr 0.62fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: end;
}

.device-card {
  display: grid;
  gap: 18px;
  text-align: center;
}

.device-card h3 {
  margin: 0;
  font-size: 1.1rem;
}

.device-card p {
  max-width: 360px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.5;
}

.device {
  position: relative;
  margin: 0 auto;
  border: 10px solid #0b1215;
  background: #0b1215;
  box-shadow: 0 24px 52px rgba(14, 27, 29, 0.18);
}

.device-desktop {
  width: min(520px, 100%);
  aspect-ratio: 16 / 10;
  border-radius: 8px;
}

.device-desktop::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: -26px;
  height: 18px;
  border-radius: 0 0 8px 8px;
  background: linear-gradient(180deg, #30383a, #111719);
}

.device-tablet {
  width: min(340px, 100%);
  aspect-ratio: 4 / 3;
  border-radius: 22px;
}

.device-phone {
  width: min(170px, 100%);
  aspect-ratio: 9 / 19;
  border-radius: 26px;
}

.device-screen {
  width: 100%;
  height: 100%;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 16px;
  overflow: hidden;
  border-radius: inherit;
  background:
    radial-gradient(circle at 22% 18%, rgba(77, 219, 211, 0.24), transparent 32%),
    #07181d;
  color: var(--white);
}

.device-screen-light {
  background: #f8faf7;
  color: var(--ink);
}

.device-screen svg {
  width: 100%;
  align-self: end;
}

.device-screen polyline {
  fill: none;
  stroke: #4ddbd3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 5;
}

.screen-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.screen-grid span {
  min-height: 54px;
  border-radius: 6px;
  background:
    linear-gradient(90deg, rgba(77, 219, 211, 0.68), rgba(216, 109, 82, 0.78)),
    rgba(255, 255, 255, 0.08);
}

.restaurant-screen-grid span {
  background:
    linear-gradient(90deg, rgba(77, 219, 211, 0.72), rgba(196, 155, 68, 0.78)),
    rgba(255, 255, 255, 0.08);
}

.screen-alert,
.phone-alert {
  display: block;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 900;
  text-align: left;
}

.phone-alert {
  padding: 10px;
  font-size: 0.68rem;
}

.device-phone strong {
  font-size: 1.45rem;
  text-align: left;
}

.tablet-bars {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}

.tablet-bars span {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 22px;
  padding-left: 8px;
  border-radius: 99px;
  background:
    linear-gradient(90deg, var(--teal) var(--w), rgba(255, 255, 255, 0.12) var(--w));
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.74rem;
  font-weight: 850;
}

.analytics-capability-band {
  border-top: 1px solid var(--line);
  background: #f8faf7;
}

.analytics-capability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.analytics-capability-grid span {
  min-height: 118px;
  display: grid;
  place-items: center;
  padding: 20px;
  background: var(--white);
  color: var(--teal-deep);
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
}

@media (max-width: 980px) {
  .hero {
    max-height: none;
  }

  .hero h1 {
    font-size: 3.45rem;
  }

  .project-grid,
  .product-showcase,
  .agent-grid,
  .systems-band,
  .platform-contact-band,
  .detail-workflow-band,
  .intelligence-band,
  .section-heading,
  .advantage-preview-band,
  .advantage-knowledge-band,
  .advantage-update-band,
  .advantage-dark-band,
  .advantage-intelligence-band {
    grid-template-columns: 1fr;
  }

  .flow-card-grid,
  .advantage-proof-grid,
  .advantage-tool-grid,
  .economics-grid,
  .query-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .advantage-proof-grid article:nth-child(2n) {
    border-right: 0;
  }

  .advantage-proof-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(6, 71, 75, 0.12);
  }

  .proof-band .section-heading h2 {
    white-space: normal;
  }

  .product-heading h2 {
    white-space: normal;
  }

  .systems-band {
    gap: 42px;
  }

  .platform-contact-band {
    min-height: auto;
  }

  .contact-platform-lockup {
    position: static;
    width: min(100%, 720px);
    margin-top: 42px;
    justify-content: flex-start;
  }

  .system-map {
    min-height: 420px;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 18px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-name {
    font-size: 0.94rem;
  }

  .contact-pill,
  .menu-trigger {
    min-height: 40px;
    padding: 0 13px;
  }

  .menu-trigger {
    gap: 10px;
  }

  .menu-panel {
    position: fixed;
    top: 68px;
    right: 18px;
    left: 18px;
    width: auto;
    max-height: calc(100svh - 84px);
    padding: 12px;
  }

  .menu-panel-heading {
    padding: 8px 8px 12px;
  }

  .menu-link {
    padding: 13px 38px 13px 14px;
  }

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

  .hero {
    min-height: 86svh;
    padding: 96px 18px 22px;
  }

  .hero h1 {
    font-size: 2.55rem;
    line-height: 1.03;
  }

  .hero-copy {
    font-size: 1rem;
    line-height: 1.55;
  }

  .primary-action {
    width: 100%;
    max-width: 320px;
    min-height: 50px;
    padding: 0 18px;
  }

  .hero-login-panel {
    gap: 12px;
  }

  .login-button {
    flex-basis: 100%;
    min-height: 58px;
    padding: 0 18px;
    font-size: 0.84rem;
  }

  .proof-band,
  .product-band,
  .systems-band,
  .detail-band,
  .detail-workflow-band,
  .intelligence-band,
  .contact-band,
  .advantage-proof-band,
  .advantage-band,
  .advantage-dark-band,
  .advantage-update-band,
  .advantage-intelligence-band {
    padding: 58px 18px;
  }

  .section-heading h2,
  .systems-copy h2,
  .detail-copy h2,
  .contact-content h2,
  .advantage-copy h2,
  .advantage-heading h2 {
    font-size: 2rem;
  }

  .advantage-preview-band {
    padding: 44px 18px;
  }

  .advantage-hero {
    min-height: 84svh;
    padding: 108px 18px 58px;
  }

  .advantage-hero h1 {
    font-size: 3rem;
    line-height: 0.98;
  }

  .advantage-hero-lead {
    font-size: 1.16rem;
  }

  .advantage-hero-copy,
  .advantage-copy p {
    font-size: 1rem;
    line-height: 1.58;
  }

  .product-panel {
    min-height: auto;
    padding: 24px;
  }

  .product-panel h3 {
    font-size: 1.75rem;
  }

  .mini-flow,
  .flow-path-grid,
  .intelligence-grid {
    grid-template-columns: 1fr;
  }

  .example-link {
    min-height: 58px;
    padding: 0 18px;
    font-size: 0.9rem;
  }

  .project-card {
    min-height: 230px;
    padding: 22px;
  }

  .systems-band {
    grid-template-columns: 1fr;
  }

  .workflow-lane,
  .flow-card-grid,
  .advantage-proof-grid,
  .advantage-tool-grid,
  .economics-grid,
  .query-grid,
  .guardrail-path,
  .update-rail {
    grid-template-columns: 1fr;
  }

  .workflow-card,
  .agent-card,
  .flow-card,
  .flow-diagram,
  .knowledge-stack,
  .guardrail-flow,
  .advantage-tool-card,
  .query-panel,
  .economics-grid article {
    padding: 22px;
  }

  .advantage-proof-grid article,
  .advantage-proof-grid article:nth-child(-n + 2) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(6, 71, 75, 0.12);
  }

  .advantage-proof-grid article:last-child {
    border-bottom: 0;
  }

  .knowledge-layer {
    min-height: auto;
    padding: 20px 18px 20px 58px;
  }

  .knowledge-stack::before {
    left: 45px;
  }

  .knowledge-layer::before {
    left: 17px;
  }

  .guardrail-path article,
  .advantage-tool-card,
  .update-rail article,
  .economics-grid article {
    min-height: auto;
  }

  .update-rail article {
    border-right: 0;
    border-bottom: 1px solid rgba(6, 71, 75, 0.12);
  }

  .update-rail article:last-child {
    border-bottom: 0;
  }

  .update-rail article::after {
    top: auto;
    right: 28px;
    bottom: -8px;
    transform: rotate(135deg);
  }

  .workflow-card-heading {
    display: grid;
    gap: 8px;
  }

  .post-call-strip span {
    flex: 1 1 140px;
  }

  .detail-hero {
    min-height: 76svh;
    padding: 106px 18px 58px;
  }

  .detail-hero h1 {
    font-size: 2.7rem;
    line-height: 1.02;
  }

  .detail-hero-content p:not(.eyebrow) {
    font-size: 1rem;
    line-height: 1.55;
  }

  .detail-actions {
    width: 100%;
  }

  .detail-actions .primary-action,
  .secondary-action {
    width: 100%;
    max-width: 340px;
  }

  .system-map {
    min-height: 390px;
    padding: 18px;
  }

  .map-node {
    min-height: 88px;
    padding: 18px;
  }

  .map-node strong {
    font-size: 1.12rem;
  }

  .site-footer {
    flex-direction: column;
    padding: 22px 18px;
  }

  .contact-platform-lockup {
    justify-content: flex-start;
    width: 100%;
  }

  .legal-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    color: var(--white);
  }

  .legal-nav {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .legal-content {
    padding: 26px 20px;
  }
}

@media (max-width: 1180px) {
  .analytics-kpi-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .analytics-kpi:nth-child(3n) {
    border-right: 0;
  }

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

  .chart-panel:nth-child(3n) {
    border-right: 1px solid rgba(255, 255, 255, 0.14);
  }

  .chart-panel:nth-child(2n) {
    border-right: 0;
  }

  .chart-panel:nth-last-child(-n + 3) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .chart-panel:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

@media (max-width: 980px) {
  .site-nav {
    gap: 14px;
    font-size: 0.78rem;
  }

  .analytics-hero {
    min-height: 74svh;
  }

  .analytics-kpi {
    min-height: 164px;
  }

  .device-grid {
    grid-template-columns: 1fr;
    align-items: center;
  }

  .device-card {
    justify-items: center;
  }

  .analytics-device-captions {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .site-header-nav {
    align-items: flex-start;
  }

  .site-nav {
    display: none;
  }

  .analytics-hero {
    min-height: 82svh;
    padding: 104px 18px 62px;
  }

  .analytics-hero h1 {
    font-size: 2.72rem;
    line-height: 1.02;
  }

  .analytics-hero-lead {
    font-size: 1.12rem;
  }

  .analytics-slogan {
    font-size: 0.98rem;
  }

  .analytics-metrics-band,
  .analytics-section,
  .analytics-capability-band {
    padding: 54px 18px;
  }

  .analytics-metrics-band {
    margin-top: 0;
    padding-top: 38px;
  }

  .analytics-label {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }

  .analytics-kpi-grid,
  .analytics-cockpit,
  .insight-grid,
  .analytics-capability-grid {
    grid-template-columns: 1fr;
  }

  .analytics-kpi,
  .analytics-kpi:nth-child(3n),
  .chart-panel,
  .chart-panel:nth-child(2n),
  .chart-panel:nth-child(3n),
  .chart-panel:nth-last-child(-n + 2),
  .chart-panel:nth-last-child(-n + 3) {
    border-right: 0;
  }

  .analytics-kpi {
    min-height: auto;
    padding: 24px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .analytics-kpi:last-child {
    border-bottom: 0;
  }

  .analytics-device-showcase {
    gap: 18px;
  }

  .analytics-device-render {
    border-radius: 6px;
    box-shadow: 0 20px 52px rgba(14, 27, 29, 0.18);
  }

  .analytics-device-captions article {
    min-height: auto;
    padding: 22px 20px;
  }

  .chart-panel {
    min-height: auto;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .chart-panel:last-child {
    border-bottom: 0;
  }

  .waterfall-chart,
  .line-chart,
  .area-chart,
  .daypart-chart {
    height: 190px;
  }

  .insight-row {
    padding: 20px;
  }

  .insight-row strong {
    position: static;
    justify-self: start;
    margin-top: 4px;
  }

  .device-desktop {
    width: min(100%, 360px);
  }

  .device-tablet {
    width: min(100%, 290px);
  }

  .device-phone {
    width: 150px;
  }
}

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