:root {
  color-scheme: light;
  --ink: #071015;
  --ink-soft: #1c343f;
  --muted: #435763;
  --paper: #ffffff;
  --panel: rgba(255, 255, 255, 0.82);
  --panel-strong: #ffffff;
  --line: rgba(167, 204, 217, 0.48);
  --cyan: #35b0d5;
  --cyan-dark: #0a86ad;
  --cyan-soft: #e8f8fd;
  --green: #18a879;
  --amber: #f2b13f;
  --red: #f4333d;
  --shadow: 0 28px 90px rgba(7, 16, 21, 0.14);
  --soft-shadow: 0 18px 52px rgba(7, 16, 21, 0.08);
  --radius: 8px;
  --container: 1440px;
  --font-body:
    "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: var(--font-body);
}

@property --zone-percent {
  syntax: "<number>";
  inherits: false;
  initial-value: 0;
}

body[data-theme="dark"] {
  color-scheme: dark;
  --ink: #f5fbfd;
  --ink-soft: #d5e6ec;
  --muted: #9cb3bd;
  --paper: #071015;
  --panel: rgba(12, 27, 34, 0.78);
  --panel-strong: #0e2028;
  --line: rgba(117, 168, 186, 0.28);
  --cyan: #45c7ec;
  --cyan-dark: #73d7f2;
  --cyan-soft: rgba(69, 199, 236, 0.13);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  --soft-shadow: 0 18px 56px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(
      circle at 14% 12%,
      rgba(53, 176, 213, 0.18),
      transparent 27rem
    ),
    radial-gradient(
      circle at 86% 7%,
      rgba(24, 168, 121, 0.12),
      transparent 25rem
    ),
    linear-gradient(180deg, #f5fbfd 0%, #ffffff 43%, #f3fafc 100%);
  font-family: var(--font-body);
  letter-spacing: 0;
  overflow-x: hidden;
  transition:
    background 220ms ease,
    color 220ms ease;
}

body[data-theme="dark"] {
  background:
    radial-gradient(
      circle at 12% 10%,
      rgba(53, 176, 213, 0.19),
      transparent 30rem
    ),
    radial-gradient(
      circle at 86% 4%,
      rgba(24, 168, 121, 0.13),
      transparent 25rem
    ),
    linear-gradient(180deg, #071015 0%, #0a171d 46%, #061014 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}

body::before {
  background:
    radial-gradient(
      ellipse at 50% -12%,
      color-mix(in srgb, var(--cyan) 18%, transparent),
      transparent 54%
    ),
    radial-gradient(
      ellipse at 92% 18%,
      color-mix(in srgb, var(--green) 12%, transparent),
      transparent 42%
    ),
    radial-gradient(
      ellipse at 10% 78%,
      color-mix(in srgb, var(--cyan) 10%, transparent),
      transparent 46%
    );
  opacity: 0.86;
}

body::after {
  z-index: -1;
  background:
    radial-gradient(
      ellipse at 70% 24%,
      color-mix(in srgb, var(--cyan) 8%, transparent),
      transparent 34%
    ),
    radial-gradient(ellipse at 48% 100%, rgba(7, 16, 21, 0.08), transparent 54%);
  opacity: 0.92;
}

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

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
}

h1,
h2,
h3,
p,
figure {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-family: var(--font-display);
  font-size: clamp(46px, 6vw, 82px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: 0;
}

p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  width: min(var(--container), calc(100% - 32px));
  min-height: 78px;
  margin: 0 auto;
  padding: 16px 0;
  transition:
    width 180ms ease,
    padding 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.site-header.is-scrolled {
  width: min(var(--container), calc(100% - 24px));
  margin-top: 10px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: color-mix(in srgb, var(--panel-strong) 78%, transparent);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 145px;
}

.brand img,
.console-logo img,
.site-footer img {
  height: auto;
  object-fit: contain;
}

body[data-theme="dark"] .brand img,
body[data-theme="dark"] .console-logo img,
body[data-theme="dark"] .site-footer img {
  filter: brightness(0) invert(1);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.site-nav a {
  position: relative;
  padding: 10px 10px;
  border-radius: 999px;
  transition:
    background 160ms ease,
    color 160ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  background: var(--cyan-soft);
  color: var(--cyan-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.theme-toggle,
.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: var(--radius);
  font-weight: 820;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.theme-toggle {
  width: 46px;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--ink);
}

.theme-toggle svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.moon-icon,
body[data-theme="dark"] .sun-icon {
  display: none;
}

body[data-theme="dark"] .moon-icon {
  display: block;
}

.nav-cta {
  padding: 0 16px;
  background: var(--ink);
  color: var(--paper);
  font-size: 13px;
  box-shadow: 0 14px 34px rgba(6, 16, 20, 0.14);
}

body[data-theme="dark"] .nav-cta {
  background: #f5fbfd;
  color: #071015;
}

.button.primary {
  padding: 0 24px;
  background: linear-gradient(135deg, var(--cyan), #148fb5);
  color: #ffffff;
  box-shadow: 0 18px 42px rgba(53, 176, 213, 0.32);
}

.button.secondary {
  padding: 0 22px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--panel-strong) 78%, transparent);
  color: var(--ink);
  box-shadow: var(--soft-shadow);
}

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

.section-shell {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  padding: 108px 0;
}

.hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(540px, 1.1fr);
  gap: 48px;
  align-items: center;
  min-height: calc(100vh - 78px);
  padding-top: 42px;
  padding-bottom: 92px;
}

.hero-highlight {
  color: var(--cyan-dark);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--cyan-dark);
  font-size: 14px;
  font-weight: 880;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 54px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--cyan) 0 22%,
    transparent 22% 32%,
    var(--cyan) 32% 100%
  );
}

.hero-text {
  max-width: 660px;
  color: var(--ink-soft);
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-top: 34px;
}

.microline {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 760;
  line-height: 1.45;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 660px;
  margin-top: 32px;
}

.trust-strip span {
  min-height: 72px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(14px);
}

.trust-strip strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1;
}

.hero-visual {
  position: relative;
  min-height: 650px;
}

.hero-orb {
  position: absolute;
  right: -15%;
  top: 4%;
  width: 570px;
  height: 570px;
  border-radius: 50%;
  background:
    radial-gradient(
      circle at 38% 34%,
      rgba(255, 255, 255, 0.72),
      transparent 0 14%,
      rgba(255, 255, 255, 0) 15%
    ),
    conic-gradient(
      from 120deg,
      rgba(53, 176, 213, 0.96),
      rgba(24, 168, 121, 0.64),
      rgba(53, 176, 213, 0.78),
      rgba(53, 176, 213, 0.96)
    );
  opacity: 0.9;
  z-index: -1;
  filter: blur(0.1px);
  animation: pulseGlow 6s ease-in-out infinite alternate;
}

.live-console {
  position: absolute;
  inset: 34px -30px auto auto;
  width: min(740px, 100%);
  min-height: 548px;
  overflow: hidden;
  border: 10px solid #071016;
  border-radius: 18px;
  background: var(--panel-strong);
  box-shadow: var(--shadow);
  transform: perspective(1200px) rotateY(-7deg) rotateX(3deg) rotate(-1deg);
}

body[data-theme="dark"] .live-console {
  border-color: #142f3a;
}

.console-main {
  min-width: 0;
  min-height: 548px;
  padding: 18px;
  background:
    linear-gradient(90deg, rgba(53, 176, 213, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(53, 176, 213, 0.05) 1px, transparent 1px),
    linear-gradient(
      180deg,
      color-mix(in srgb, var(--panel-strong) 88%, #e7f8fd),
      var(--paper)
    );
  background-size:
    36px 36px,
    36px 36px,
    auto;
}

.console-brandbar,
.console-topbar,
.console-status-strip span,
.kpi-card,
.chart-panel,
.zones-panel,
.console-action-row,
.info-card,
.benefit-card,
.mini-card,
.product-frame,
.laptop-card,
.wayfinding-panel,
.demo-form {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(16px);
}

.console-brandbar {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 12px;
  padding: 10px 12px;
  border-radius: var(--radius);
}

.console-logo img {
  width: 112px;
}

.console-tabs {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.console-tabs span,
.live-badge,
.sync-pill,
.mini-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--cyan-soft);
  color: var(--cyan-dark);
  font-size: 11px;
  font-weight: 820;
  white-space: nowrap;
}

.console-tabs span:not(.is-active) {
  background: color-mix(in srgb, var(--panel) 82%, transparent);
  color: var(--muted);
}

.console-topbar,
.panel-head,
.zone-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.console-topbar {
  margin-bottom: 10px;
  padding: 10px 12px;
  border-radius: var(--radius);
  font-size: 13px;
}

.console-topbar div {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(31, 173, 135, 0.14);
}

.live-badge {
  background: rgba(24, 168, 121, 0.12);
  color: var(--green);
}

.console-status-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.console-status-strip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 32px;
  padding: 7px 9px;
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}

.console-status-strip svg,
.card-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 12px;
}

.kpi-card {
  position: relative;
  overflow: hidden;
  padding: 15px 15px 38px;
  border-radius: var(--radius);
}

.kpi-card::after {
  content: "";
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 14px;
  height: 12px;
  border-radius: 999px;
  background:
    linear-gradient(
      90deg,
      var(--cyan),
      rgba(31, 173, 135, 0.72) 68%,
      rgba(167, 204, 217, 0.34) 68%
    ),
    rgba(53, 176, 213, 0.08);
}

.kpi-card span,
.kpi-card small,
.panel-head span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 720;
}

.kpi-card strong {
  display: block;
  margin: 7px 0 5px;
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
}

.console-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(190px, 0.65fr);
  gap: 12px;
}

.chart-panel,
.zones-panel {
  padding: 16px;
  border-radius: var(--radius);
}

.panel-head {
  margin-bottom: 14px;
}

.line-chart {
  width: 100%;
  height: auto;
  min-height: 158px;
  padding-top: 6px;
  border-top: 1px solid var(--line);
  background: linear-gradient(var(--line) 1px, transparent 1px);
  background-size: 100% 42px;
}

.chart-fill {
  fill: rgba(53, 176, 213, 0.18);
}

.chart-line {
  fill: none;
  stroke: var(--cyan);
  stroke-dasharray: 690;
  stroke-dashoffset: 690;
  stroke-width: 7;
  stroke-linecap: round;
  animation: drawLine 1.7s ease forwards 360ms;
}

.zones-panel {
  display: flex;
  flex-direction: column;
}

.zone-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 58px 34px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
  font-size: 12px;
}

.zone-row span {
  color: var(--ink-soft);
  font-weight: 760;
}

meter {
  width: 58px;
  height: 8px;
}

.console-action-row {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 10px;
  align-items: center;
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: var(--radius);
}

.console-action-row span {
  color: var(--cyan-dark);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.console-action-row strong {
  color: var(--ink);
  font-size: 12px;
  line-height: 1.25;
}

.console-action-row small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 720;
  text-align: right;
}

.section-intro,
.analytics-copy,
.showcase-copy {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-body {
  margin-top: 16px;
}

.decision-list {
  display: grid;
  gap: 10px;
  margin-top: 26px;
  max-width: 520px;
}

.decision-list article {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  min-height: 64px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(
      90deg,
      color-mix(in srgb, var(--decision-color, var(--cyan)) 8%, transparent),
      color-mix(in srgb, var(--panel-strong) 78%, transparent)
    );
  box-shadow: 0 12px 32px rgba(7, 16, 21, 0.06);
}

.decision-list article:nth-child(1) {
  --decision-color: var(--red);
}

.decision-list article:nth-child(2) {
  --decision-color: var(--cyan);
}

.decision-list article:nth-child(3) {
  --decision-color: var(--green);
}

.decision-list article::after {
  content: "";
  position: absolute;
  inset: 10px auto 10px 0;
  width: 3px;
  border-radius: 999px;
  background: var(--decision-color, var(--cyan));
}

.decision-icon {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid color-mix(in srgb, var(--decision-color, var(--cyan)) 42%, var(--line));
  border-radius: 50%;
  background: color-mix(in srgb, var(--panel-strong) 82%, transparent);
  color: var(--decision-color, var(--cyan));
  box-shadow: inset 0 0 0 5px color-mix(in srgb, var(--decision-color, var(--cyan)) 10%, transparent);
}

.decision-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.decision-list strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.15;
}

.decision-list p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.35;
}

.section-intro.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-intro.centered .eyebrow {
  justify-content: center;
}

.definition-section {
  display: block;
  width: 100vw;
  margin-top: -118px;
  margin-left: calc(50% - 50vw);
  padding-top: 192px;
  padding-bottom: 104px;
  padding-right: clamp(18px, 3vw, 42px);
  padding-left: clamp(18px, 3vw, 42px);
  text-align: center;
}

.definition-section::before {
  display: none;
}

.definition-section::after {
  display: none;
}

.definition-intro {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 820px;
  margin: 0 auto 56px;
}

.definition-intro p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.definition-intro .eyebrow {
  justify-content: center;
}

.definition-cards {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 62px);
  max-width: 1040px;
  margin: 0 auto;
  padding-top: 0;
}

.definition-cards::before {
  content: "";
  position: absolute;
  top: 38px;
  left: calc(16.666% + 38px);
  right: calc(16.666% + 38px);
  height: 2px;
  background: linear-gradient(
    90deg,
    color-mix(in srgb, var(--cyan) 20%, transparent),
    var(--cyan),
    var(--green),
    color-mix(in srgb, var(--green) 20%, transparent)
  );
  border-radius: 999px;
  opacity: 0.58;
  pointer-events: none;
}

.definition-card {
  position: relative;
  display: flex;
  min-height: 0;
  flex-direction: column;
  align-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  animation: definitionFloat 5.8s ease-in-out infinite;
  transition: transform 180ms ease;
}

.definition-card::before {
  display: none;
}

.definition-card::after {
  content: "";
  position: absolute;
  right: 50%;
  top: -10px;
  z-index: -1;
  width: 116px;
  height: 116px;
  border-radius: 50%;
  transform: translateX(50%);
  background: radial-gradient(
    circle,
    color-mix(in srgb, var(--cyan) 18%, transparent),
    transparent 66%
  );
  pointer-events: none;
}

.definition-card:nth-child(2) {
  animation-delay: 600ms;
}

.definition-card:nth-child(3) {
  animation-delay: 1200ms;
}

.definition-card:hover {
  transform: translateY(-6px);
}

.definition-card.is-featured {
  transform: translateY(-10px);
}

.definition-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  margin-bottom: 22px;
  border: 1px solid color-mix(in srgb, var(--cyan) 42%, var(--line));
  border-radius: 50%;
  background:
    radial-gradient(
      circle at 30% 22%,
      rgba(255, 255, 255, 0.72),
      transparent 28%
    ),
    var(--cyan-soft);
  color: var(--cyan-dark);
  box-shadow:
    0 0 0 10px color-mix(in srgb, var(--cyan) 8%, transparent),
    0 18px 34px color-mix(in srgb, var(--cyan) 18%, transparent);
}

.definition-icon::after {
  content: "";
  position: absolute;
  inset: -12px;
  z-index: -1;
  border: 2px dashed color-mix(in srgb, var(--cyan) 60%, transparent);
  border-radius: 50%;
  background: transparent;
  animation: definitionOrbit 11s linear infinite;
}
.definition-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.definition-step {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: fit-content;
  min-height: 24px;
  align-items: center;
  padding: 0 10px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--cyan-dark);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.definition-card h3 {
  position: relative;
  z-index: 1;
  margin-top: 14px;
  margin-bottom: 12px;
  font-size: 22px;
  text-align: center;
}

.definition-card p {
  position: relative;
  z-index: 1;
  max-width: 320px;
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.56;
  text-align: center;
  color: var(--ink-soft);
}

.definition-signal {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 36px;
}

.definition-signal span {
  width: 54px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--line));
}

.definition-signal span:last-child {
  background: linear-gradient(90deg, var(--line), transparent);
}

.definition-signal i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(24, 168, 121, 0.12);
}

.card-grid,
.mini-grid,
.laptop-grid {
  display: grid;
  gap: 18px;
}

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

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

.problem-section,
.product-section,
.analytics-section,
.final-section,
.laptop-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(540px, 1.14fr);
  gap: 42px;
  align-items: center;
}

.problem-section .section-intro {
  margin-bottom: 0;
}

.pressure-panel {
  display: grid;
  grid-template-columns: minmax(160px, 0.62fr) minmax(230px, 1fr);
  gap: 22px;
  align-items: center;
  max-width: 560px;
  margin-top: 28px;
  padding: 18px 20px;
  border: 1px solid color-mix(in srgb, var(--line) 72%, rgba(244, 51, 61, 0.2));
  border-radius: 14px;
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(244, 51, 61, 0.09),
      transparent 44%
    ),
    linear-gradient(
      135deg,
      color-mix(in srgb, var(--panel-strong) 82%, transparent),
      rgba(53, 176, 213, 0.05)
    ),
    var(--panel);
  box-shadow: var(--soft-shadow);
}

.pressure-copy {
  min-width: 0;
}

.pressure-panel span,
.wayfinding-head div > span,
.zone-type,
.wayfinding-action span,
.route-step span,
.update-grid p {
  display: block;
  color: var(--cyan-dark);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.35;
  text-transform: uppercase;
}

.pressure-panel span {
  color: var(--red);
}

.pressure-panel strong {
  display: block;
  margin: 8px 0 6px;
  color: var(--ink);
  font-size: 38px;
  line-height: 1;
}

.pressure-panel p,
.info-card p,
.benefit-card p,
.mini-card p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.62;
}

.pressure-time {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  color: var(--ink-soft);
  font-weight: 800;
}

.pressure-time svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pressure-time span {
  color: currentColor;
  font-size: 14px;
  line-height: 1;
  text-transform: none;
}

.sales-drop-visual {
  position: relative;
  min-width: 0;
  padding-left: 22px;
}

.sales-drop-visual::before {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 0;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(244, 51, 61, 0.28),
    transparent
  );
}

.sales-drop-head,
.sales-drop-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sales-drop-head span,
.sales-drop-foot span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.sales-drop-head strong {
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  line-height: 1;
  text-transform: uppercase;
}

.sales-pulse-chart {
  width: 100%;
  height: 92px;
  margin: 8px 0 5px;
  overflow: visible;
}

.pulse-grid,
.pulse-line,
.pulse-drop {
  fill: none;
  vector-effect: non-scaling-stroke;
}

.pulse-grid {
  stroke: color-mix(in srgb, var(--line) 72%, transparent);
  stroke-width: 1;
}

.pulse-line {
  stroke: color-mix(in srgb, var(--ink-soft) 64%, transparent);
  stroke-width: 2.4;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-dasharray: 310;
  stroke-dashoffset: 310;
}

.pulse-drop {
  stroke: var(--red);
  stroke-width: 3.2;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-dasharray: 120;
  stroke-dashoffset: 120;
}

.problem-section.is-animated .pressure-copy strong {
  animation: revenueDropPop 640ms cubic-bezier(0.2, 0.9, 0.24, 1.22) 180ms both;
}

.problem-section.is-animated .pressure-time {
  animation: timeTick 520ms ease 520ms both;
}

.problem-section.is-animated .pulse-line {
  animation: drawPulseLine 900ms ease-out 260ms forwards;
}

.problem-section.is-animated .pulse-drop {
  animation:
    drawPulseLine 540ms ease-out 960ms forwards,
    warningPulse 1500ms ease-in-out 1500ms 2;
}

.info-card,
.benefit-card,
.mini-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.info-card {
  min-height: 258px;
  padding: 24px;
}

.benefit-card {
  min-height: 238px;
  padding: 26px;
}

.mini-card {
  min-height: 196px;
  padding: 24px;
}

.info-card::before,
.benefit-card::before,
.mini-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--cyan),
    rgba(24, 168, 121, 0.52),
    transparent
  );
}

.info-card::after,
.benefit-card::after,
.mini-card::after {
  content: "";
  position: absolute;
  right: -42px;
  top: -50px;
  width: 148px;
  height: 148px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(53, 176, 213, 0.18),
    rgba(53, 176, 213, 0.03) 68%,
    transparent 69%
  );
}

.info-card:hover,
.benefit-card:hover,
.mini-card:hover {
  transform: translateY(-4px);
  border-color: rgba(53, 176, 213, 0.44);
  box-shadow: var(--shadow);
}

.info-card-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 30px;
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  margin-bottom: 28px;
  border-radius: var(--radius);
  background: var(--cyan-soft);
  color: var(--cyan-dark);
  box-shadow: inset 0 0 0 1px rgba(53, 176, 213, 0.14);
}

.info-card-head .card-icon {
  margin-bottom: 0;
}

.pain-metric {
  display: block;
  margin: 7px 0 0;
  color: var(--ink);
  font-size: 36px;
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0;
}

.card-icon svg {
  width: 27px;
  height: 27px;
}

.info-card h3,
.info-card p,
.benefit-card h3,
.benefit-card p,
.benefit-card .card-icon,
.mini-card > * {
  position: relative;
  z-index: 1;
}

.info-card h3,
.benefit-card h3 {
  max-width: 220px;
}

.product-frame {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 18px;
}

.control-dashboard-frame {
  isolation: isolate;
}

.product-frame::before,
.laptop-card::before {
  content: "";
  display: block;
  height: 34px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 20px 17px, #ff6b6b 0 5px, transparent 6px),
    radial-gradient(circle at 38px 17px, #f2b13f 0 5px, transparent 6px),
    radial-gradient(circle at 56px 17px, #18a879 0 5px, transparent 6px),
    color-mix(in srgb, var(--panel-strong) 84%, transparent);
}

.product-frame img,
.laptop-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.dashboard-feature-cloud,
.dashboard-action-card {
  position: absolute;
  z-index: 2;
  border: 1px solid color-mix(in srgb, var(--line) 78%, transparent);
  background: color-mix(in srgb, var(--panel-strong) 88%, transparent);
  box-shadow: 0 18px 44px rgba(7, 16, 21, 0.14);
  backdrop-filter: blur(18px);
}

.dashboard-feature-cloud {
  top: 48px;
  right: 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
  width: min(270px, calc(100% - 25px));
  padding: 9px;
  border-radius: 14px;
}

.dashboard-feature-cloud span {
  padding: 6px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--cyan-soft) 54%, transparent);
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 820;
  line-height: 1;
  white-space: nowrap;
}

.dashboard-feature-cloud span:last-child {
  border-color: color-mix(in srgb, var(--green) 48%, var(--line));
  background: color-mix(in srgb, var(--green) 14%, var(--panel-strong));
  color: var(--green);
}

.dashboard-action-card {
  right: 18px;
  bottom: 90px;
  width: min(280px, calc(100% - 36px));
  padding: 13px 14px;
  border-radius: 14px;
}

.dashboard-action-card span {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 5px 7px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--red) 11%, transparent);
  color: var(--red);
  font-size: 9px;
  font-weight: 850;
  line-height: 1;
  text-transform: uppercase;
}

.dashboard-action-card strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.15;
}

.dashboard-action-card p {
  margin: 8px 0 6px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 760;
  line-height: 1.35;
}

.dashboard-action-card small {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 720;
  line-height: 1.4;
}

@media (max-width: 760px) {
  .dashboard-feature-cloud,
  .dashboard-action-card {
    position: static;
    width: auto;
    margin: 14px 14px 0;
  }

  .dashboard-feature-cloud {
    justify-content: flex-start;
  }

  .dashboard-feature-cloud span {
    white-space: normal;
  }

  .dashboard-action-card strong {
    font-size: 19px;
  }
}

figcaption,
.caption {
  margin: 0;
  padding: 16px 18px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 760;
  line-height: 1.45;
}

.laptop-showcase {
  align-items: start;
}

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

.laptop-card {
  overflow: hidden;
  margin: 0;
  border-radius: 18px;
}

.laptop-card.large {
  grid-column: 1 / -1;
}

.map-section {
  display: grid;
  grid-template-columns: minmax(620px, 1.14fr) minmax(0, 0.86fr);
  gap: 56px;
  align-items: center;
  padding-top: 84px;
}

.map-section .section-intro {
  grid-column: 2;
  grid-row: 1;
  margin-bottom: 0;
}

.wayfinding-panel {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  display: grid;
  gap: 18px;
  max-width: none;
  overflow: hidden;
  padding: clamp(18px, 2.2vw, 26px);
  border-radius: 18px;
}

.wayfinding-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--cyan), var(--green));
}

.wayfinding-head,
.wayfinding-body,
.zone-list,
.route-board,
.update-grid {
  display: grid;
  gap: 16px;
}

.wayfinding-head {
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 8px 2px 18px;
  border-bottom: 1px solid var(--line);
}

.wayfinding-head strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.05;
}

.wayfinding-head-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.wayfinding-head .wayfinding-head-badges > span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 760;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.wayfinding-head .map-demo-badge {
  border: 1px solid #979797;
  background: rgb(255 255 255 / 8%);
  color: #717171;
}

.wayfinding-head .sync-pill {
  border-color: color-mix(in srgb, var(--green) 32%, var(--line));
  background: rgba(24, 168, 121, 0.13);
  color: var(--green);
}

.wayfinding-body {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  align-items: stretch;
}

.zone-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: stretch;
}

.zone-card,
.wayfinding-action,
.route-step,
.update-grid div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--panel-strong) 78%, transparent);
}

.zone-card {
  --zone-color: var(--cyan);
  --zone-percent: 0;
  --zone-target: 68;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "type value"
    "note note";
  column-gap: 14px;
  row-gap: 12px;
  align-items: start;
  min-height: 172px;
  padding: 18px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(6, 16, 20, 0.04);
}

.zone-card::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 0;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--cyan), rgba(53, 176, 213, 0.15));
}

.zone-card::before {
  --zone-percent: 0;
  content: "";
  grid-area: value;
  align-self: center;
  justify-self: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, var(--panel-strong) 0 46%, transparent 47%),
    conic-gradient(
      var(--zone-color) 0 calc(var(--zone-percent) * 1%),
      color-mix(in srgb, var(--line) 72%, transparent) calc(var(--zone-percent) * 1%) 100%
    );
  transition: --zone-percent 1100ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.zone-card.is-busy {
  --zone-color: var(--red);
  border-color: rgba(244, 51, 61, 0.34);
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--panel-strong) 82%, transparent),
    rgba(244, 51, 61, 0.08)
  );
}

.zone-card.is-busy::after {
  background: linear-gradient(90deg, var(--red), rgba(244, 51, 61, 0.15));
}

.zone-card.is-busy::before {
  background:
    radial-gradient(circle at 50% 50%, var(--panel-strong) 0 46%, transparent 47%),
    conic-gradient(
      var(--zone-color) 0 calc(var(--zone-percent) * 1%),
      color-mix(in srgb, var(--line) 72%, transparent) calc(var(--zone-percent) * 1%) 100%
    );
}

.wayfinding-panel.is-visible .zone-card::before {
  --zone-percent: var(--zone-target);
}

.zone-card strong {
  grid-area: value;
  z-index: 1;
  display: grid;
  place-items: center;
  align-self: center;
  justify-self: center;
  width: 44px;
  height: 44px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 820;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.zone-card p,
.wayfinding-action p,
.route-step p,
.update-grid p {
  margin-bottom: 0;
  font-size: 13px;
  line-height: 1.45;
}

.zone-type {
  grid-area: type;
  color: var(--ink);
  font-size: 16px;
  font-weight: 780;
  line-height: 1.22;
}

.zone-card p {
  grid-area: note;
  max-width: 36ch;
}

.wayfinding-action {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  padding: 20px;
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(53, 176, 213, 0.24),
      transparent 42%
    ),
    linear-gradient(180deg, #071015, #142833);
  color: #fff;
  box-shadow: 0 16px 40px rgba(6, 16, 20, 0.14);
}

.wayfinding-action span {
  color: rgba(255, 255, 255, 0.62);
}

.wayfinding-action strong {
  display: block;
  margin: 14px 0 10px;
  color: #fff;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.08;
}

.wayfinding-action p {
  color: rgba(255, 255, 255, 0.68);
}

.route-board {
  position: relative;
  grid-template-columns: repeat(3, 1fr);
  padding-top: 2px;
}

.route-board::before {
  content: "";
  position: absolute;
  left: 33px;
  right: calc((100% - 32px) / 3 - 33px);
  top: 33px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), rgba(53, 176, 213, 0.16));
}

.route-step {
  position: relative;
  z-index: 1;
  min-height: 132px;
  padding: 14px 16px 16px;
}

.route-step span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--cyan-soft);
  color: var(--cyan-dark);
  font-size: 11px;
}

.route-step.is-active span {
  background: var(--ink);
  color: var(--paper);
}

.route-step strong,
.update-grid strong {
  display: block;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.2;
}

.route-step p {
  margin-top: 8px;
}

.update-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.update-grid div {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 12px;
  align-items: center;
  min-height: 74px;
  padding: 14px 16px;
}

.update-grid p,
.update-grid strong {
  grid-column: 2;
}

.update-dot {
  grid-row: 1 / span 2;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 7px rgba(243, 181, 70, 0.16);
}

.update-dot.is-green {
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(31, 173, 135, 0.14);
}

.caption {
  grid-column: 1;
  grid-row: 2;
  max-width: 760px;
  padding-left: 0;
}

.audience-section {
  position: relative;
  text-align: center;
}

.audience-section::before {
  display: none;
}

.audience-section .section-intro {
  position: relative;
  max-width: 880px;
  z-index: 1;
}

.best-fit-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 14px;
  max-width: 1200px;
  margin: 0 auto;
}

.best-fit-grid article {
  --fit-accent: var(--cyan);
  --fit-accent-2: var(--cyan);
  position: relative;
  display: grid;
  grid-column: span 2;
  grid-template-rows: auto 1fr auto;
  align-content: start;
  min-height: 300px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--line) 72%, transparent);
  border-radius: var(--radius);
  background: var(--panel-strong);
  box-shadow:
    0 18px 46px rgba(7, 16, 21, 0.08),
    0 2px 10px rgba(7, 16, 21, 0.04);
  text-align: left;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.best-fit-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--cyan);
  opacity: 0.74;
  transform: scaleX(0.28);
  transform-origin: left;
  transition: transform 240ms ease;
}

.best-fit-grid article::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -48px;
  width: 124px;
  height: 124px;
  border: 1px solid color-mix(in srgb, var(--cyan) 18%, transparent);
  border-radius: 50%;
  background: color-mix(in srgb, var(--cyan-soft) 58%, transparent);
  opacity: 0.5;
  pointer-events: none;
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.best-fit-grid article:hover {
  transform: translateY(-7px);
  border-color: color-mix(in srgb, var(--cyan) 32%, var(--line));
  box-shadow:
    0 28px 70px rgba(7, 16, 21, 0.13),
    0 6px 18px rgba(7, 16, 21, 0.06);
}

.best-fit-grid article:hover::before {
  transform: scaleX(1);
}

.best-fit-grid article:hover::after {
  opacity: 0.8;
  transform: translate(-10px, -10px);
}

.best-fit-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 42px;
}

.best-fit-icon,
.best-fit-number {
  display: grid;
  place-items: center;
}

.best-fit-icon {
  width: 52px;
  height: 52px;
  border: 1px solid color-mix(in srgb, var(--cyan) 30%, var(--line));
  border-radius: 16px;
  background:
    linear-gradient(
      135deg,
      color-mix(in srgb, var(--cyan-soft) 92%, transparent),
      var(--panel-strong)
    );
  color: var(--cyan-dark);
  box-shadow: 0 10px 24px rgba(53, 176, 213, 0.12);
}

.best-fit-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.best-fit-number {
  width: 38px;
  height: 38px;
  border: 1px solid color-mix(in srgb, var(--cyan) 26%, var(--line));
  border-radius: 50%;
  background: color-mix(in srgb, var(--panel-strong) 88%, transparent);
  color: var(--cyan-dark);
  font-size: 11px;
  font-weight: 850;
  line-height: 1;
}

.best-fit-copy {
  position: relative;
  z-index: 1;
}

.best-fit-grid h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.14;
}

.best-fit-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.48;
}

.best-fit-signal {
  position: relative;
  z-index: 1;
  display: block;
  min-height: 64px;
  margin-top: 22px;
  padding-top: 14px;
  border-top: 1px solid color-mix(in srgb, var(--line) 82%, transparent);
  color: color-mix(in srgb, var(--ink-soft) 84%, var(--muted));
  font-size: 12px;
  font-weight: 780;
  line-height: 1.45;
}

.best-fit-signal::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--cyan) 10%, transparent);
  vertical-align: 1px;
}

.best-fit-note {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 34px auto 0;
  padding: 0;
  text-align: center;
}

.best-fit-note strong {
  display: block;
  color: var(--ink);
  font-size: clamp(24px, 2.4vw, 36px);
  font-weight: 850;
  line-height: 1.16;
}

.best-fit-note strong img {
  display: inline-block;
  width: clamp(118px, 12vw, 178px);
  height: auto;
  margin: 0 4px;
  vertical-align: -0.18em;
}

.best-fit-note span {
  display: block;
  max-width: 720px;
  margin: 10px auto 0;
  color: var(--muted);
  font-size: clamp(14px, 1.15vw, 17px);
  font-weight: 650;
  line-height: 1.55;
}

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

.mini-label {
  margin-bottom: 22px;
  text-transform: uppercase;
}

.mini-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 30px;
  line-height: 1;
}

.mini-insight {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.mini-insight span {
  color: var(--cyan-dark);
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
  text-transform: uppercase;
}

.mini-insight i {
  display: block;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: color-mix(in srgb, var(--line) 82%, transparent);
}

.mini-insight i::before {
  content: "";
  display: block;
  width: 68%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), #7bd0e3);
}

.mini-card:nth-child(2) .mini-insight i::before {
  width: 82%;
}

.mini-card:nth-child(3) .mini-insight i::before {
  width: 58%;
}

.mini-card:nth-child(4) .mini-insight i::before {
  width: 74%;
}

.final-section {
  align-items: start;
  padding-bottom: 110px;
}

.final-copy {
  position: sticky;
  top: 110px;
}

.demo-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 16px;
  padding: 24px 28px;
  border: 1px solid color-mix(in srgb, var(--line) 72%, var(--cyan));
  border-radius: 22px;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--panel-strong) 92%, transparent), color-mix(in srgb, var(--panel) 96%, transparent));
  box-shadow: 0 26px 80px rgba(12, 34, 47, 0.12);
}

.form-row {
  display: grid;
  align-content: start;
  gap: 8px;
}

.form-row.full,
.demo-form .full,
.privacy,
.form-message {
  grid-column: 1 / -1;
}

label {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 820;
  line-height: 1.3;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: color-mix(in srgb, var(--panel-strong) 90%, white);
  color: var(--ink);
  outline: none;
  padding: 11px 14px;
  min-height: 46px;
  transition:
    border 150ms ease,
    box-shadow 150ms ease,
    background 150ms ease;
}

textarea {
  min-height: 92px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--cyan);
  background: var(--panel-strong);
  box-shadow: 0 0 0 4px rgba(53, 176, 213, 0.14);
}

.form-row.has-error input,
.form-row.has-error textarea {
  border-color: #df4c4c;
  background: color-mix(in srgb, #df4c4c 6%, var(--panel-strong));
}

.form-row.has-error input:focus,
.form-row.has-error textarea:focus {
  box-shadow: 0 0 0 4px rgba(223, 76, 76, 0.13);
}

.field-error {
  color: #df4c4c;
  font-size: 12px;
  font-weight: 740;
  line-height: 1.35;
}

.field-error:empty {
  display: none;
}

.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
}

.form-submit svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.privacy {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.form-message {
  display: none;
  margin: 0;
  padding: 12px 14px;
  border-radius: var(--radius);
  background: rgba(24, 168, 121, 0.12);
  color: var(--green);
  font-size: 14px;
  font-weight: 760;
}

.form-message.is-visible {
  display: block;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.4fr);
  gap: 18px;
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  padding: 40px 0 48px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.site-footer img {
  width: 118px;
}

.footer-brand {
  display: grid;
  align-content: start;
  gap: 14px;
  max-width: 390px;
}

.footer-brand p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
}

.footer-contact,
.footer-links a,
.footer-links span {
  color: var(--muted);
  text-decoration: none;
  transition: color 160ms ease;
}

.footer-contact {
  width: fit-content;
  font-size: 14px;
  font-weight: 780;
}

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

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

.footer-links h2 {
  margin: 0 0 4px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 860;
  letter-spacing: 0;
}

.footer-links a,
.footer-links span {
  font-size: 14px;
  font-weight: 680;
  line-height: 1.35;
}

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

.copyright-bar {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 26px;
  border-top: 1px solid var(--line);
}

.copyright-bar p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 680;
  line-height: 1.5;
  text-align: left;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes backgroundDrift {
  from {
    transform: translate3d(-1%, -1%, 0);
  }

  to {
    transform: translate3d(1%, 1%, 0);
  }
}

@keyframes pulseGlow {
  from {
    transform: scale(0.98) rotate(0deg);
  }

  to {
    transform: scale(1.04) rotate(8deg);
  }
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes drawPulseLine {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes revenueDropPop {
  0% {
    opacity: 0;
    transform: translateY(8px) scale(0.94);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes timeTick {
  0% {
    opacity: 0;
    transform: translateX(-6px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes warningPulse {
  0%,
  100% {
    filter: drop-shadow(0 0 0 rgba(244, 51, 61, 0));
  }

  50% {
    filter: drop-shadow(0 0 8px rgba(244, 51, 61, 0.38));
  }
}

@keyframes bottleneckRowIn {
  0% {
    opacity: 0;
    transform: translateX(14px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes issueMetricPop {
  0% {
    opacity: 0;
    transform: scale(0.86);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes riskMeterFill {
  0% {
    transform: scaleX(0);
  }

  100% {
    transform: scaleX(1);
  }
}

@keyframes flowLineGrow {
  0% {
    transform: scaleX(0);
  }

  100% {
    transform: scaleX(1);
  }
}

@keyframes analyticsAura {
  from {
    opacity: 0.68;
    transform: translate3d(0, 0, 0) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translate3d(-16px, 14px, 0) scale(1.08);
  }
}

@keyframes analyticsCardIn {
  0% {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes analyticsActionIn {
  0% {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
    box-shadow: 0 0 0 rgba(53, 176, 213, 0);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    box-shadow: 0 18px 38px rgba(53, 176, 213, 0.16);
  }
}

@keyframes analyticsLineDraw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes analyticsMeterFill {
  to {
    transform: scaleX(1);
  }
}

@keyframes definitionFloat {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -8px;
  }
}

@keyframes definitionHalo {
  to {
    rotate: 1turn;
  }
}

@keyframes definitionOrbit {
  to {
    rotate: -1turn;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .ops-step {
    opacity: 1;
    transform: none;
  }

  .report-console .report-head,
  .report-console .report-hero,
  .report-console .report-grid article,
  .report-console .report-actions {
    opacity: 1;
    transform: none;
  }

  .report-hero svg path {
    stroke-dashoffset: 0;
  }

  .report-grid i span {
    transform: none;
  }
}

@media (max-width: 1080px) {
  .best-fit-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .site-header {
    grid-template-columns: auto auto;
  }

  .site-nav {
    display: none;
  }

  .hero,
  .definition-section,
  .problem-section,
  .product-section,
  .map-section,
  .analytics-section,
  .final-section,
  .laptop-showcase {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .definition-section {
    gap: 30px;
  }

  .definition-intro {
    max-width: 820px;
  }

  .definition-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-visual {
    min-height: 580px;
  }

  .live-console {
    inset: 20px auto auto 0;
    transform: perspective(1100px) rotateY(-4deg) rotateX(2deg);
  }

  .product-section .section-intro,
  .problem-section .section-intro,
  .map-section .section-intro,
  .analytics-copy,
  .final-copy,
  .showcase-copy {
    max-width: 760px;
  }

  .map-section .section-intro {
    grid-column: 1;
    grid-row: 1;
  }

  .wayfinding-panel {
    grid-column: 1;
    grid-row: 2;
  }

  .caption {
    grid-column: 1;
    grid-row: 3;
  }

  .final-copy {
    position: static;
  }

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

@media (max-width: 840px) {
  h1 {
    font-size: clamp(40px, 12vw, 58px);
  }

  h2 {
    font-size: clamp(31px, 9vw, 44px);
  }

  .section-shell {
    padding: 82px 0;
  }

  .hero {
    gap: 34px;
    padding-top: 28px;
  }

  .card-grid.three,
  .card-grid.four,
  .definition-cards,
  .mini-grid,
  .demo-form,
  .laptop-grid,
  .trust-strip {
    grid-template-columns: 1fr;
  }

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

  .best-fit-grid article {
    grid-column: span 1;
    min-height: 286px;
  }

  .hero-visual {
    min-height: 540px;
  }

  .definition-section {
    margin-top: -72px;
    padding-top: 128px;
    padding-bottom: 78px;
  }

  .definition-cards::before {
    display: none;
  }

  .definition-card {
    min-height: auto;
    animation: none;
  }

  .definition-intro {
    margin-bottom: 42px;
  }

  .definition-icon::after {
    animation: none;
  }

  .live-console {
    min-height: auto;
  }

  .console-brandbar {
    grid-template-columns: 1fr;
  }

  .console-tabs {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .console-grid,
  .kpi-grid {
    grid-template-columns: 1fr;
  }

  .console-action-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .console-action-row small {
    text-align: left;
  }

  .wayfinding-body,
  .route-board,
  .update-grid {
    grid-template-columns: 1fr;
  }

  .route-board::before {
    left: 31px;
    right: auto;
    top: 38px;
    bottom: 38px;
    width: 3px;
    height: auto;
    background: linear-gradient(180deg, var(--cyan), rgba(53, 176, 213, 0.16));
  }
}

@media (max-width: 620px) {
  p {
    font-size: 16px;
  }

  .site-header {
    width: min(100% - 24px, var(--container));
    min-height: 68px;
    gap: 14px;
  }

  .site-header.is-scrolled {
    padding-right: 10px;
    padding-left: 10px;
  }

  .brand,
  .brand img {
    width: 118px;
  }

  .header-actions {
    gap: 8px;
  }

  .theme-toggle {
    width: 42px;
    min-height: 42px;
  }

  .nav-cta {
    min-height: 42px;
    padding: 0 12px;
    font-size: 12px;
  }

  .section-shell {
    width: min(100% - 24px, var(--container));
    padding: 62px 0;
  }

  .hero {
    padding-bottom: 68px;
  }

  .eyebrow {
    font-size: 11px;
  }

  .eyebrow::before {
    width: 40px;
  }

  .hero-text {
    font-size: 17px;
  }

  .button.primary {
    width: 100%;
  }

  .best-fit-grid {
    grid-template-columns: 1fr;
  }

  .best-fit-grid article {
    grid-column: span 1;
    min-height: auto;
    padding: 18px;
  }

  .best-fit-top {
    margin-bottom: 28px;
  }

  .best-fit-icon {
    width: 46px;
    height: 46px;
    border-radius: 16px;
  }

  .best-fit-icon svg {
    width: 22px;
    height: 22px;
  }

  .best-fit-number {
    width: 34px;
    height: 34px;
  }

  .best-fit-note {
    text-align: left;
  }

  .best-fit-note span {
    margin-left: 0;
  }

  .hero-actions {
    align-items: stretch;
  }

  .microline {
    text-align: center;
  }

  .hero-visual {
    min-height: 470px;
  }

  .hero-orb {
    right: -42%;
    width: 380px;
    height: 380px;
  }

  .live-console {
    border-width: 7px;
    border-radius: 14px;
    transform: none;
  }

  .console-main {
    padding: 12px;
  }

  .console-topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .kpi-card strong {
    font-size: 26px;
  }

  .info-card,
  .benefit-card,
  .mini-card {
    min-height: auto;
    padding: 22px;
  }

  .wayfinding-panel {
    padding: 18px;
  }

  .wayfinding-head {
    grid-template-columns: 1fr;
  }

  .wayfinding-head-badges {
    justify-content: flex-start;
  }

  .wayfinding-head strong {
    font-size: 24px;
  }

  .zone-card {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "type value"
      "note note";
    gap: 10px 12px;
    min-height: auto;
  }

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

  .zone-card strong {
    font-size: 12px;
  }

  .wayfinding-action {
    min-height: 190px;
  }

  .demo-form {
    padding: 18px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}

/* Redesigned content sections */
.problem-section {
  grid-template-columns: minmax(0, 0.82fr) minmax(560px, 1.18fr);
  align-items: center;
}

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

.problem-label-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.problem-label-row .eyebrow {
  margin-bottom: 0;
}

.demo-data-badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 5px 9px;
  border: 1px solid #979797;
  border-radius: 999px;
  background: rgb(255 255 255 / 8%);
  color: #717171;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.problem-copy h2,
.analytics-copy h2 {
  font-size: clamp(38px, 5vw, 68px);
}

.bottleneck-board,
.report-console {
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(
      135deg,
      color-mix(in srgb, var(--panel-strong) 88%, transparent),
      color-mix(in srgb, var(--cyan-soft) 28%, transparent)
    ),
    var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.bottleneck-board {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border-color: rgba(244, 51, 61, 0.22);
}

.bottleneck-board::before {
  content: "";
  position: absolute;
  inset: -28% -18% auto auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 51, 61, 0.18), transparent 68%);
  pointer-events: none;
}

.report-console::before {
  content: "";
  position: absolute;
  inset: -28% -18% auto auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(53, 176, 213, 0.2), transparent 68%);
  pointer-events: none;
}

.report-console.is-visible::before {
  animation: analyticsAura 5.8s ease-in-out infinite alternate;
}

.board-topline,
.report-head,
.report-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.board-topline {
  margin-bottom: 20px;
  padding: 12px 14px;
  border: 1px solid rgba(244, 51, 61, 0.22);
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(244, 51, 61, 0.1), transparent 70%),
    color-mix(in srgb, var(--panel-strong) 72%, transparent);
}

.board-topline div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.board-topline strong,
.flow-lane strong,
.ops-step h3,
.report-head strong,
.report-hero strong,
.report-grid strong,
.report-actions strong {
  color: var(--ink);
}

.board-topline span:last-child,
.report-head span,
.report-hero span,
.report-grid span,
.report-actions span {
  color: var(--cyan-dark);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.2;
  text-transform: uppercase;
}

.bottleneck-board .board-topline > span:last-child {
  color: var(--red);
}

.flow-lanes {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.flow-lane {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  min-height: 110px;
  padding: 18px 0 18px 18px;
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.problem-section.is-animated .flow-lane {
  animation: bottleneckRowIn 560ms ease both;
}

.problem-section.is-animated .flow-lane:nth-child(1) {
  animation-delay: 180ms;
}

.problem-section.is-animated .flow-lane:nth-child(2) {
  animation-delay: 300ms;
}

.problem-section.is-animated .flow-lane:nth-child(3) {
  animation-delay: 420ms;
}

.problem-section.is-animated .flow-lane:nth-child(4) {
  animation-delay: 540ms;
}

.problem-section.is-animated .flow-lane b {
  animation: issueMetricPop 560ms cubic-bezier(0.2, 0.9, 0.24, 1.22) both;
}

.problem-section.is-animated .flow-lane:nth-child(1) b {
  animation-delay: 420ms;
}

.problem-section.is-animated .flow-lane:nth-child(2) b {
  animation-delay: 540ms;
}

.problem-section.is-animated .flow-lane:nth-child(3) b {
  animation-delay: 660ms;
}

.problem-section.is-animated .flow-lane:nth-child(4) b {
  animation-delay: 780ms;
}

.flow-lane::before {
  content: "";
  position: absolute;
  inset: 14px auto 14px 0;
  width: 4px;
  border-radius: 0 999px 999px 0;
  background: var(--amber);
}

.flow-lane.is-hot {
  border-color: rgba(244, 51, 61, 0.22);
  background: linear-gradient(90deg, rgba(244, 51, 61, 0.1), transparent 62%);
}

.flow-lane.is-hot::before {
  background: var(--red);
}

.flow-lane.is-hot .lane-icon {
  background: rgba(244, 51, 61, 0.12);
  color: var(--red);
}

.flow-lane:nth-child(3)::before {
  background: var(--cyan);
}

.flow-lane:nth-child(4)::before {
  background: var(--green);
}

.lane-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--cyan-soft);
  color: var(--cyan-dark);
}

.lane-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.flow-lane p {
  margin: 7px 0 0;
  font-size: 14px;
  line-height: 1.5;
}

.flow-lane b {
  color: var(--red);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 850;
  line-height: 1;
}

.loss-meter {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin-top: 0;
  padding: 18px 0 0;
  background: transparent;
}

.loss-meter div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.loss-meter span,
.loss-meter small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
}

.loss-meter strong {
  color: var(--red);
  font-size: 28px;
  line-height: 1;
}

.loss-meter i,
.report-grid i {
  display: block;
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: color-mix(in srgb, var(--line) 72%, transparent);
}

.loss-meter i span {
  display: block;
  width: 32%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--red), var(--amber));
  transform-origin: left center;
}

.problem-section.is-animated .loss-meter i span {
  animation: riskMeterFill 900ms ease-out 720ms both;
}

.problem-section.is-animated .loss-meter strong {
  animation: issueMetricPop 560ms cubic-bezier(0.2, 0.9, 0.24, 1.22) 820ms both;
}

.report-grid i span {
  display: block;
  width: 68%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), var(--green));
  transform: scaleX(0);
  transform-origin: left center;
}

.report-console.is-visible .report-grid i span {
  animation: analyticsMeterFill 760ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.report-console.is-visible .report-grid article:nth-child(1) i span {
  animation-delay: 680ms;
}

.report-console.is-visible .report-grid article:nth-child(2) i span {
  animation-delay: 780ms;
}

.report-console.is-visible .report-grid article:nth-child(3) i span {
  animation-delay: 880ms;
}

.report-console.is-visible .report-grid article:nth-child(4) i span {
  animation-delay: 980ms;
}

.solution-section {
  position: relative;
  display: block;
  overflow: visible;
}

.solution-section .section-intro {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.solution-section .section-intro .eyebrow {
  justify-content: center;
}

.how-it-works-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  width: min(100%, 1040px);
  margin: 38px auto 0;
  padding: 34px 0 4px;
  overflow: visible;
}

.how-it-works-flow::before {
  content: "How it works in 4 steps";
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 2;
  transform: translateX(-50%);
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.flow-line {
  position: absolute;
  left: 12.5%;
  right: 12.5%;
  top: 70px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    color-mix(in srgb, var(--cyan) 18%, transparent),
    color-mix(in srgb, var(--green) 18%, transparent),
    color-mix(in srgb, var(--red) 14%, transparent),
    color-mix(in srgb, var(--cyan) 18%, transparent)
  );
  overflow: hidden;
}

.flow-line span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--green), var(--cyan));
  transform: scaleX(0);
  transform-origin: left center;
}

.how-it-works-flow article {
  --step-color: var(--cyan);
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto auto auto;
  justify-items: center;
  gap: 9px;
  min-height: 122px;
  padding: 0 8px;
  text-align: center;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 560ms ease,
    transform 560ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.how-it-works-flow article:nth-of-type(2) {
  --step-color: var(--green);
}

.how-it-works-flow article:nth-of-type(3) {
  --step-color: #8f63ff;
}

.how-it-works-flow article:nth-of-type(4) {
  --step-color: var(--red);
}

.how-it-works-flow article::before {
  content: "";
  position: absolute;
  top: 24px;
  width: 14px;
  height: 14px;
  border: 3px solid var(--paper);
  border-radius: 50%;
  background: var(--step-color);
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--step-color) 42%, var(--line)),
    0 0 0 7px color-mix(in srgb, var(--step-color) 12%, transparent);
}

.how-it-works-flow article:hover .flow-icon {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px color-mix(in srgb, var(--step-color) 24%, transparent);
}

.flow-icon {
  position: relative;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 8px;
  border: 1px solid color-mix(in srgb, var(--step-color) 54%, var(--line));
  border-radius: 18px;
  background:
    radial-gradient(circle at 28% 20%, rgba(255, 255, 255, 0.88), transparent 28%),
    color-mix(in srgb, var(--step-color) 13%, var(--panel-strong));
  color: color-mix(in srgb, var(--step-color) 82%, var(--ink));
  box-shadow: 0 14px 30px color-mix(in srgb, var(--step-color) 16%, transparent);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.flow-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.flow-step {
  color: color-mix(in srgb, var(--step-color) 72%, var(--muted));
  font-size: 11px;
  font-weight: 850;
  line-height: 1;
  text-transform: uppercase;
}

.how-it-works-flow strong {
  color: var(--ink);
  font-size: clamp(16px, 1.25vw, 19px);
  font-weight: 850;
  line-height: 1.2;
}

.how-it-works-flow.is-visible .flow-line span {
  animation: flowLineGrow 920ms cubic-bezier(0.2, 0.8, 0.2, 1) 120ms both;
}

.how-it-works-flow.is-visible article {
  opacity: 1;
  transform: translateY(0);
}

.how-it-works-flow.is-visible article:nth-of-type(1) {
  transition-delay: 80ms;
}

.how-it-works-flow.is-visible article:nth-of-type(2) {
  transition-delay: 200ms;
}

.how-it-works-flow.is-visible article:nth-of-type(3) {
  transition-delay: 320ms;
}

.how-it-works-flow.is-visible article:nth-of-type(4) {
  transition-delay: 440ms;
}

.ops-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  overflow: visible;
  margin-top: 46px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.ops-flow::before {
  display: none;
}

.ops-flow::after {
  display: none;
}

.ops-step {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "index tag"
    "title title"
    "text text";
  column-gap: 12px;
  align-content: start;
  min-height: 286px;
  padding: 24px;
  border: 1px solid color-mix(in srgb, var(--line) 70%, transparent);
  border-radius: 14px;
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--panel-strong) 96%, transparent),
    color-mix(in srgb, var(--panel) 86%, transparent)
  );
  box-shadow: 0 16px 40px rgba(7, 16, 21, 0.055);
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 560ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 560ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.ops-step::before {
  display: none;
}

.ops-step.is-primary {
  border-color: color-mix(in srgb, var(--cyan) 42%, var(--line));
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--cyan-soft) 46%, var(--panel-strong)),
    color-mix(in srgb, var(--panel-strong) 88%, transparent)
  );
}

.ops-step:hover {
  border-color: color-mix(in srgb, var(--cyan) 46%, var(--line));
  box-shadow: 0 22px 54px rgba(7, 16, 21, 0.075);
  transform: translateY(-3px);
}

.ops-step:hover .ops-index,
.ops-step.is-primary .ops-index {
  border-color: var(--cyan);
  background: var(--cyan);
  color: #ffffff;
  box-shadow: none;
}

.ops-index {
  grid-area: index;
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  width: 42px;
  height: 32px;
  border: 1px solid color-mix(in srgb, var(--cyan) 58%, var(--line));
  border-radius: 999px;
  background: color-mix(in srgb, var(--panel-strong) 96%, var(--paper));
  color: var(--cyan-dark);
  font-size: 13px;
  font-weight: 850;
  transform: none;
  box-shadow: none;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.ops-tag {
  grid-area: tag;
  display: inline-flex;
  align-items: center;
  justify-self: start;
  align-self: center;
  min-height: 24px;
  margin-bottom: 0;
  color: var(--cyan-dark);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.ops-step h3 {
  grid-area: title;
  margin-top: 32px;
  font-size: clamp(21px, 1.55vw, 25px);
  line-height: 1.14;
}

.ops-step p {
  grid-area: text;
  max-width: 330px;
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.62;
  color: var(--ink-soft);
}

.ops-flow.is-visible .ops-step {
  opacity: 1;
  transform: translateY(0);
}

.ops-flow.is-visible .ops-step:nth-child(2) {
  transition-delay: 130ms;
}

.ops-flow.is-visible .ops-step:nth-child(3) {
  transition-delay: 260ms;
}

.ops-flow.is-visible .ops-step:nth-child(4) {
  transition-delay: 390ms;
}

.analytics-section {
  grid-template-columns: minmax(0, 0.76fr) minmax(570px, 1.24fr);
}

.report-console {
  position: relative;
  overflow: hidden;
  padding: 22px;
}

.report-head {
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.report-head strong {
  display: block;
  margin-top: 5px;
  font-size: 26px;
}

.report-head b {
  color: var(--ink);
  font-size: 44px;
  line-height: 1;
}

.report-head-badges {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.report-demo-badge {
  min-height: 34px;
  border-color: color-mix(in srgb, var(--line) 86%, #979797);
  background: color-mix(in srgb, var(--panel-strong) 56%, transparent);
  color: var(--muted);
}

.report-hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(220px, 1fr);
  gap: 18px;
  align-items: end;
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(53, 176, 213, 0.13), transparent 60%),
    color-mix(in srgb, var(--panel-strong) 70%, transparent);
}

.report-hero strong {
  display: block;
  margin: 12px 0 10px;
  font-size: clamp(48px, 6vw, 78px);
  line-height: 0.9;
}

.report-hero p {
  margin-bottom: 0;
  font-size: 15px;
}

.report-hero small,
.report-grid small {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 680;
  line-height: 1.45;
}

.report-hero > svg {
  width: 100%;
  min-height: 130px;
  fill: none;
  stroke: var(--cyan);
  stroke-width: 8;
  stroke-linecap: round;
  filter: drop-shadow(0 14px 18px rgba(53, 176, 213, 0.22));
}

.report-hero > svg path {
  stroke-dasharray: 410;
  stroke-dashoffset: 410;
}

.report-console.is-visible .report-hero > svg path {
  animation: analyticsLineDraw 1s cubic-bezier(0.2, 0.8, 0.2, 1) 520ms both;
}

.report-kicker,
.report-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.report-module-icon {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(53, 176, 213, 0.24);
  border-radius: 12px;
  background: rgba(53, 176, 213, 0.12);
  color: var(--cyan-dark);
}

.report-module-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.report-kicker .report-module-icon,
.report-card-top .report-module-icon {
  color: var(--cyan-dark);
}

.report-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.report-grid article {
  display: grid;
  gap: 10px;
  min-height: 214px;
  align-content: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: color-mix(in srgb, var(--panel-strong) 72%, transparent);
}

.report-console .report-head,
.report-console .report-hero,
.report-console .report-grid article,
.report-console .report-actions {
  opacity: 0;
  transform: translateY(14px);
}

.report-console.is-visible .report-head {
  animation: analyticsCardIn 560ms ease-out 120ms both;
}

.report-console.is-visible .report-hero {
  animation: analyticsCardIn 620ms ease-out 220ms both;
}

.report-console.is-visible .report-grid article {
  animation: analyticsCardIn 560ms ease-out both;
}

.report-console.is-visible .report-grid article:nth-child(1) {
  animation-delay: 360ms;
}

.report-console.is-visible .report-grid article:nth-child(2) {
  animation-delay: 460ms;
}

.report-console.is-visible .report-grid article:nth-child(3) {
  animation-delay: 560ms;
}

.report-console.is-visible .report-grid article:nth-child(4) {
  animation-delay: 660ms;
}

.report-grid strong {
  font-size: 28px;
  line-height: 1;
}

.report-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.report-grid i {
  align-self: end;
  margin-top: auto;
}

.report-grid article:nth-child(2) i span {
  width: 58%;
}

.report-grid article:nth-child(3) i span {
  width: 74%;
}

.report-grid article:nth-child(4) i span {
  width: 86%;
}

.report-actions {
  margin-top: 12px;
  padding: 18px;
  border: 1px solid rgba(53, 176, 213, 0.36);
  border-radius: 16px;
  background: linear-gradient(
    90deg,
    rgba(53, 176, 213, 0.13),
    rgba(24, 168, 121, 0.08)
  );
}

.report-actions {
  align-items: flex-start;
  flex-direction: column;
}

.report-actions strong {
  font-size: 17px;
  line-height: 1.45;
}

.report-actions p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.report-console.is-visible .report-actions {
  animation: analyticsActionIn 640ms ease-out 720ms both;
}

@media (max-width: 1080px) {
  .problem-section,
  .analytics-section {
    grid-template-columns: 1fr;
  }

  .ops-flow {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
    padding-top: 0;
  }

  .how-it-works-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 720px;
    row-gap: 30px;
  }

  .flow-line {
    display: none;
  }

  .ops-flow::before,
  .ops-flow::after {
    display: none;
  }

  .ops-index {
    position: relative;
    top: auto;
    left: auto;
    justify-self: start;
    margin-bottom: 0;
    transform: none;
  }

  .ops-step {
    min-height: 270px;
    padding: 28px 24px 26px;
  }

  .ops-step::before {
    display: none;
  }
}

@media (max-width: 760px) {
  .pressure-panel {
    grid-template-columns: 1fr;
  }

  .sales-drop-visual {
    max-width: 260px;
    padding-left: 0;
  }

  .sales-drop-visual::before {
    display: none;
  }

  .flow-lane,
  .report-hero,
  .report-grid,
  .ops-flow {
    grid-template-columns: 1fr;
  }

  .how-it-works-flow {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 28px;
    padding: 40px 0 0;
  }

  .how-it-works-flow::before {
    left: 0;
    top: 0;
    transform: none;
  }

  .how-it-works-flow article {
    grid-template-columns: auto 38px 1fr;
    grid-template-rows: auto;
    justify-items: start;
    align-items: center;
    min-height: 66px;
    padding: 0 0 0 6px;
    text-align: left;
  }

  .how-it-works-flow article::before {
    left: 22px;
    top: 52px;
    width: 8px;
    height: 8px;
    border-width: 2px;
    box-shadow: 0 0 0 5px color-mix(in srgb, var(--step-color) 12%, transparent);
  }

  .how-it-works-flow article:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 28px;
    top: 64px;
    bottom: -12px;
    width: 2px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--line) 82%, transparent);
  }

  .flow-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 0;
    border-radius: 16px;
  }

  .flow-icon svg {
    width: 23px;
    height: 23px;
  }

  .flow-step {
    justify-self: center;
  }

  .report-grid article {
    min-height: auto;
  }

  .flow-lane {
    align-items: start;
  }

  .ops-flow::before {
    display: none;
  }

  .ops-flow::after {
    display: none;
  }

  .ops-step,
  .ops-step:nth-child(2) {
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "index tag"
      "title title"
      "text text";
    column-gap: 12px;
    min-height: auto;
    padding: 24px 24px 26px;
    border: 1px solid color-mix(in srgb, var(--line) 70%, transparent);
  }

  .ops-index {
    grid-area: index;
    position: relative;
    top: auto;
    left: auto;
    z-index: 3;
    align-self: start;
    justify-self: start;
    margin-bottom: 0;
  }

  .ops-tag {
    margin-bottom: 0;
  }

  .ops-step:last-child {
    border-bottom: 1px solid color-mix(in srgb, var(--line) 70%, transparent);
  }

  .ops-step::before {
    display: none;
  }

  .board-topline,
  .loss-meter div,
  .report-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .report-head-badges {
    justify-content: flex-start;
  }

  .report-head b {
    font-size: 36px;
  }
}

/* Phone and dashboard product sections */
.phone-experience,
.dashboard-intelligence {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(560px, 1.16fr);
  gap: clamp(48px, 5vw, 76px);
  align-items: center;
}

.dashboard-intelligence {
  grid-template-columns: minmax(560px, 1fr) minmax(0, 0.9fr);
  padding-top: 64px;
  align-items: center;
}

.phone-copy,
.dashboard-copy {
  max-width: 680px;
}

.phone-copy h2,
.dashboard-copy h2 {
  font-size: clamp(38px, 5vw, 68px);
}

.progress-stack,
.dashboard-progress,
.experience-layers,
.phone-stage,
.dashboard-visual,
.insight-strip {
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(
      135deg,
      color-mix(in srgb, var(--panel-strong) 86%, transparent),
      color-mix(in srgb, var(--cyan-soft) 24%, transparent)
    ),
    var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.progress-stack {
  display: grid;
  gap: 14px;
  margin-top: 34px;
  padding: 18px;
}

.fan-access-pill {
  display: inline-grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 15px;
  align-items: center;
  max-width: 100%;
  margin-top: 12px;
  padding: 16px 18px;
  border: 1px solid color-mix(in srgb, var(--cyan) 62%, var(--line));
  border-radius: 18px;
  background:
    linear-gradient(
      135deg,
      color-mix(in srgb, var(--cyan-soft) 92%, transparent),
      color-mix(in srgb, var(--green) 16%, transparent)
    ),
    var(--panel);
  box-shadow:
    0 18px 48px color-mix(in srgb, var(--cyan) 18%, transparent),
    var(--soft-shadow);
}

.fan-access-pill strong,
.fan-access-pill span {
  display: block;
}

.fan-access-pill strong {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.1;
}

.fan-access-pill span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
  line-height: 1.35;
}

.qr-mark {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  padding: 8px;
  border-radius: 16px;
  background: var(--ink);
  color: var(--paper);
  box-shadow:
    inset 0 0 0 1px color-mix(in srgb, var(--paper) 18%, transparent),
    0 12px 24px color-mix(in srgb, var(--ink) 22%, transparent);
}

.qr-mark path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linejoin: round;
  stroke-linecap: round;
}

.qr-mark path:nth-child(2) {
  fill: var(--cyan);
  stroke: var(--cyan);
}

.progress-row,
.dashboard-progress div,
.experience-layers article,
.insight-strip figcaption {
  display: grid;
  grid-template-columns: minmax(110px, 0.52fr) minmax(120px, 1fr) auto;
  gap: 14px;
  align-items: center;
}

.progress-row span,
.dashboard-progress span,
.experience-layers span,
.insight-strip figcaption span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 820;
}

.progress-row strong,
.dashboard-progress strong,
.experience-layers strong,
.insight-strip figcaption strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1;
}

.progress-row i,
.dashboard-progress i,
.experience-layers i,
.insight-strip figcaption i {
  display: block;
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: color-mix(in srgb, var(--line) 72%, transparent);
}

.progress-row i b,
.dashboard-progress i b,
.experience-layers i b,
.insight-strip figcaption i b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), var(--green));
}

.phone-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(270px, 0.82fr) minmax(250px, 0.64fr);
  grid-template-rows: auto 1fr;
  grid-template-areas:
    "head head"
    "phone notes";
  gap: 24px 36px;
  min-height: 660px;
  overflow: visible;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.phone-stage::before {
  content: none;
  position: absolute;
  inset: 24px 24px 24px auto;
  width: min(360px, 50%);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(53, 176, 213, 0.12), transparent),
    repeating-linear-gradient(
      90deg,
      rgba(53, 176, 213, 0.08) 0 1px,
      transparent 1px 28px
    );
  pointer-events: none;
}

.phone-visual-wrap {
  grid-area: phone;
  position: relative;
  z-index: 1;
  align-self: center;
  justify-self: center;
  width: min(350px, 100%);
}

.phone-cutout {
  position: relative;
  width: 100%;
  aspect-ratio: 0.53;
  margin: 0;
  overflow: hidden;
  border: 8px solid #071015;
  border-radius: 42px;
  background: #071015;
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.35);
}

.app-stage-head,
.phone-notes {
  position: relative;
  z-index: 1;
}

.app-stage-head {
  grid-area: head;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 560px;
  justify-self: center;
  width: 100%;
  padding: 0 0 14px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.app-stage-head span,
.phone-notes article > .note-kicker {
  color: var(--cyan-dark);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.app-stage-head strong {
  color: var(--ink);
  font-size: 17px;
}

/* .phone-cutout::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  z-index: 2;
  width: 74px;
  height: 20px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.5);
  transform: translateX(-50%);
} */

.phone-cutout img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.phone-download-chip {
  position: absolute;
  right: 10px;
  bottom: -12px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(7, 16, 21, 0.82);
  color: #ffffff;
  font-size: 10px;
  font-weight: 850;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}

.phone-notes {
  grid-area: notes;
  display: grid;
  align-content: center;
  gap: 16px;
}

.phone-notes article {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-areas:
    "mark title"
    "mark text";
  gap: 4px 16px;
  min-height: 108px;
  overflow: hidden;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--panel-strong) 82%, transparent),
    color-mix(in srgb, var(--cyan-soft) 14%, transparent)
  );
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(14px);
}

.phone-notes article:first-child {
  background:
    linear-gradient(135deg, rgba(53, 176, 213, 0.18), rgba(24, 168, 121, 0.08)),
    color-mix(in srgb, var(--panel-strong) 78%, transparent);
}

.phone-notes article > .note-kicker {
  grid-area: mark;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--cyan-soft);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--cyan) 18%, transparent);
}

.note-number {
  color: var(--cyan-dark);
  font-size: 15px;
  font-weight: 840;
  line-height: 1;
}

.note-kicker svg {
  position: absolute;
  top: -8px;
  right: -4px;
  z-index: 0;
  width: 92px;
  height: 92px;
  padding: 16px;
  border-radius: 28px;
  background: color-mix(in srgb, var(--cyan-soft) 78%, transparent);
  color: color-mix(in srgb, var(--cyan-dark) 78%, transparent);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.28;
  pointer-events: none;
  transform: rotate(-4deg);
  box-shadow: none;
}

.phone-notes strong {
  grid-area: title;
  position: relative;
  z-index: 1;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.18;
}

.phone-notes p {
  grid-area: text;
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.48;
}

.dashboard-visual {
  position: relative;
  display: grid;
  gap: 16px;
  overflow: hidden;
  padding: 18px;
}

.dashboard-cutout {
  position: relative;
  z-index: 1;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel-strong);
}

.dashboard-cutout::before,
.insight-strip::before {
  content: "";
  display: block;
  height: 34px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 20px 17px, #ff6b6b 0 5px, transparent 6px),
    radial-gradient(circle at 38px 17px, #f2b13f 0 5px, transparent 6px),
    radial-gradient(circle at 56px 17px, #18a879 0 5px, transparent 6px),
    color-mix(in srgb, var(--panel-strong) 84%, transparent);
}

.dashboard-cutout::before {
  display: none;
}

.dashboard-cutout img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.dashboard-progress {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  padding: 18px;
  box-shadow: var(--soft-shadow);
}

.dashboard-copy {
  justify-self: end;
}

.experience-layers {
  display: grid;
  gap: 12px;
  margin-top: 30px;
  padding: 14px;
  box-shadow: var(--soft-shadow);
}

.experience-layers article {
  grid-template-columns: auto minmax(0, 1fr) minmax(110px, 0.34fr);
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: color-mix(in srgb, var(--panel-strong) 74%, transparent);
}

.experience-layers article:nth-child(1) {
  background:
    linear-gradient(90deg, rgba(53, 176, 213, 0.15), transparent 70%),
    color-mix(in srgb, var(--panel-strong) 78%, transparent);
}

.experience-layers span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--cyan-soft);
  color: var(--cyan-dark);
  font-size: 12px;
  font-weight: 700;
}

.experience-layers strong {
  display: block;
  margin-bottom: 5px;
  font-size: 17px;
}

.experience-layers p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
}

.insight-strip {
  position: relative;
  overflow: hidden;
  margin: 32px 0 0;
  border-radius: 18px;
}

.insight-strip img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: 50% 50%;
}

.insight-strip figcaption {
  margin: 0;
  padding: 14px 16px;
  border-top: 1px solid var(--line);
}

@media (max-width: 1080px) {
  .phone-experience,
  .dashboard-intelligence {
    grid-template-columns: 1fr;
  }

  .dashboard-copy {
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .phone-stage {
    grid-template-columns: 1fr;
    grid-template-areas:
      "head"
      "phone"
      "notes";
    min-height: auto;
    padding: 22px;
  }

  .fan-access-pill {
    display: grid;
    width: 100%;
    margin-top: 20px;
  }

  .phone-visual-wrap {
    width: min(280px, 100%);
  }

  .phone-download-chip {
    right: 8px;
  }

  .progress-row,
  .dashboard-progress div,
  .experience-layers article,
  .insight-strip figcaption {
    grid-template-columns: 1fr;
  }

  .app-stage-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Mobile and POS app showcase sections */
.mobile-app-section,
.pos-app-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr);
  gap: clamp(34px, 5vw, 68px);
  align-items: center;
}

.pos-app-section {
  grid-template-columns: minmax(500px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
}

.app-copy {
  max-width: 690px;
}

.app-copy h2 {
  font-size: clamp(36px, 4.8vw, 66px);
  line-height: 1.02;
}

.app-copy p {
  max-width: 620px;
}

.app-benefit-list,
.staff-flow-list {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.app-benefit-list article,
.staff-flow-list article,
.mobile-device-panel {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--panel-strong) 84%, transparent),
    color-mix(in srgb, var(--cyan-soft) 18%, transparent)
  );
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(16px);
}

.app-benefit-list article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 82px;
  padding: 17px 18px;
}

.app-benefit-list article:first-child,
.staff-flow-list article:first-child {
  background:
    linear-gradient(135deg, rgba(53, 176, 213, 0.17), rgba(24, 168, 121, 0.08)),
    color-mix(in srgb, var(--panel-strong) 84%, transparent);
}

.app-benefit-list span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--cyan-soft);
  color: var(--cyan-dark);
  font-size: 12px;
  font-weight: 700;
}

.app-benefit-list strong,
.staff-flow-list strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.25;
}

.mobile-device-stage,
.pos-device-stage {
  position: relative;
  display: grid;
  align-items: center;
  justify-items: center;
  min-height: 650px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--panel-strong) 88%, transparent),
    color-mix(in srgb, var(--cyan-soft) 24%, transparent)
  );
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.mobile-device-stage::before,
.pos-device-stage::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(53, 176, 213, 0.18);
  filter: blur(0.1px);
}

.mobile-device-stage::before {
  right: -120px;
  bottom: -110px;
}

.pos-device-stage::before {
  right: -80px;
  bottom: 48px;
  width: 520px;
  height: 520px;
}

.mobile-device-cutout,
.pos-device-cutout {
  position: relative;
  z-index: 1;
  margin: 0;
}

.mobile-device-cutout {
  width: min(330px, 72%);
  max-height: 590px;
  overflow: hidden;
  border-radius: 42px;
  box-shadow: 0 34px 90px rgba(7, 16, 21, 0.24);
}

.mobile-device-cutout img {
  width: 100%;
  display: block;
}

.mobile-device-panel {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  width: min(310px, calc(100% - 48px));
  padding: 18px;
}

.mobile-device-panel span,
.staff-flow-list span {
  display: block;
  margin-bottom: 8px;
  color: var(--cyan-dark);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.mobile-device-panel strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.25;
}

.mobile-device-panel div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
}

.mobile-device-panel i {
  display: block;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: color-mix(in srgb, var(--line) 78%, transparent);
}

.mobile-device-panel i b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), var(--green));
}

.mobile-device-panel small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 820;
}

.pos-device-stage {
  min-height: clamp(460px, 48vw, 570px);
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  align-items: center;
  justify-items: center;
}

.pos-device-stage::before {
  display: none;
}

.pos-device-cutout {
  width: min(520px, 94%);
}

.pos-device-cutout img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 34px 34px rgba(7, 16, 21, 0.22))
    drop-shadow(0 0 44px rgba(53, 176, 213, 0.12));
}

.pos-copy {
  max-width: 620px;
}

.pos-copy h2 {
  max-width: 590px;
}

.staff-flow-list {
  grid-template-columns: 1fr;
  counter-reset: staff-flow;
  gap: 0;
  margin-top: 30px;
  border-top: 1px solid var(--line);
}

.staff-flow-list article {
  counter-increment: staff-flow;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  column-gap: 18px;
  row-gap: 3px;
  align-items: start;
  min-height: auto;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent !important;
  box-shadow: none;
  backdrop-filter: none;
}

.staff-flow-list article::before {
  content: counter(staff-flow, decimal-leading-zero);
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid color-mix(in srgb, var(--cyan) 36%, var(--line));
  border-radius: 50%;
  background: color-mix(in srgb, var(--cyan-soft) 76%, transparent);
  color: var(--cyan-dark);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.staff-flow-list span {
  display: block;
  grid-column: 2;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--cyan-dark);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: normal;
}

.staff-flow-list strong {
  display: block;
  grid-column: 2;
  max-width: 560px;
  color: color-mix(in srgb, var(--ink) 88%, var(--muted));
  font-size: clamp(17px, 1.22vw, 20px);
  font-weight: 650;
  line-height: 1.22;
}

@media (max-width: 1080px) {
  .mobile-app-section,
  .pos-app-section {
    grid-template-columns: 1fr;
  }

  .pos-device-stage {
    order: 2;
  }

  .pos-copy {
    order: 1;
  }
}

@media (max-width: 680px) {
  .mobile-device-stage,
  .pos-device-stage {
    min-height: auto;
  }

  .mobile-device-stage {
    padding: 22px;
  }

  .mobile-device-cutout {
    width: min(280px, 100%);
    max-height: 520px;
  }

  .mobile-device-panel {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 16px;
  }

  .app-benefit-list article {
    grid-template-columns: 1fr;
  }

  .staff-flow-list article {
    grid-template-columns: 36px minmax(0, 1fr);
    column-gap: 12px;
    row-gap: 3px;
    padding: 16px 0;
  }

  .staff-flow-list article::before {
    width: 36px;
    height: 36px;
    font-size: 11px;
  }

  .staff-flow-list strong {
    font-size: 16px;
  }

  .pos-device-cutout {
    width: min(340px, 92vw);
  }

  .pos-device-cutout img {
    height: auto;
    object-fit: contain;
  }
}

/* Dashboard-first section polish */
.dashboard-intelligence {
  grid-template-columns: minmax(680px, 1.24fr) minmax(370px, 0.76fr);
  gap: clamp(30px, 4vw, 58px);
  align-items: stretch;
  padding-top: clamp(64px, 7vw, 96px);
}

.dashboard-visual {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  align-self: stretch;
  min-height: clamp(560px, 56vw, 690px);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

body[data-theme="dark"] .dashboard-visual {
  box-shadow: none;
}

.dashboard-visual::before {
  display: none;
}

.dashboard-prebar,
.dashboard-visual-foot {
  position: relative;
  z-index: 1;
}

.dashboard-prebar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.dashboard-prebar span {
  min-height: 58px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: color-mix(in srgb, var(--panel-strong) 82%, transparent);
  box-shadow: var(--soft-shadow);
  color: var(--muted);
  font-size: 12px;
  font-weight: 820;
  line-height: 1.25;
}

.dashboard-prebar strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
}

.dashboard-cutout {
  align-self: center;
  border-radius: 20px;
  box-shadow: 0 30px 90px rgba(7, 16, 21, 0.14);
}

.safari-window {
  display: grid;
  align-self: center;
  overflow: hidden;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--panel-strong) 86%, transparent);
  box-shadow: 0 28px 80px rgba(7, 16, 21, 0.12);
}

.safari-bar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--panel-strong) 84%, transparent);
}

.safari-dots {
  display: flex;
  gap: 7px;
}

.safari-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.safari-dots span:nth-child(1) {
  background: #ff6b6b;
}

.safari-dots span:nth-child(2) {
  background: #f2b13f;
}

.safari-dots span:nth-child(3) {
  background: #18a879;
}

.safari-address {
  min-width: 0;
  padding: 8px 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--paper) 68%, transparent);
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.safari-status {
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.dashboard-cutout img {
  width: 100%;
  display: block;
}

.dashboard-visual-foot {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.dashboard-visual-foot article {
  min-height: 92px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: color-mix(in srgb, var(--panel-strong) 74%, transparent);
}

.dashboard-visual-foot article:first-child {
  background:
    linear-gradient(135deg, rgba(53, 176, 213, 0.18), rgba(24, 168, 121, 0.08)),
    color-mix(in srgb, var(--panel-strong) 78%, transparent);
}

.dashboard-visual-foot span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.dashboard-visual-foot strong {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.2;
}

.dashboard-copy {
  align-self: center;
  justify-self: stretch;
  max-width: 520px;
}

.dashboard-copy h2 {
  font-size: clamp(36px, 4.7vw, 64px);
  line-height: 1;
}

.dashboard-copy p {
  max-width: 580px;
}

.experience-layers {
  gap: 12px;
  margin-top: 22px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.experience-layers article {
  grid-template-columns: auto minmax(0, 1fr);
  position: relative;
  gap: 14px;
  padding: 18px;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--panel-strong) 82%, transparent),
    color-mix(in srgb, var(--cyan-soft) 18%, transparent)
  );
  box-shadow: var(--soft-shadow);
}

.experience-layers article > i {
  grid-column: 1 / -1;
  height: 7px;
  margin-left: 52px;
}

.experience-layers span {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
}

.experience-layers strong {
  font-size: 16px;
}

.experience-layers p {
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 1180px) {
  .dashboard-intelligence {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
  }

  .dashboard-copy {
    max-width: 760px;
    justify-self: start;
  }
}

@media (max-width: 820px) {
  .dashboard-visual {
    min-height: auto;
    border-radius: 20px;
  }

  .dashboard-cutout {
    border-radius: 16px;
  }

  .dashboard-prebar,
  .dashboard-visual-foot {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .dashboard-intelligence {
    width: min(100% - 24px, var(--container));
    padding-top: 56px;
  }

  .dashboard-visual {
    padding: 10px;
  }

  .dashboard-visual-foot {
    margin-top: 10px;
  }

  .safari-bar {
    grid-template-columns: auto 1fr;
  }

  .safari-status {
    display: none;
  }

  .dashboard-copy h2 {
    font-size: clamp(32px, 11vw, 44px);
  }

  .experience-layers article {
    grid-template-columns: 1fr;
  }

  .experience-layers article > i {
    margin-left: 0;
  }
}

/* New hero and dashboard composition */
.hero {
  grid-template-columns: minmax(0, 0.92fr) minmax(560px, 1.08fr);
  gap: 56px;
  align-items: center;
  padding-top: 64px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  max-width: 760px;
  font-size: clamp(44px, 5.2vw, 62px);
  line-height: 1.02;
}

.hero-highlight {
  display: block;
  color: #76def7;
}

body[data-theme="light"] .hero-highlight {
  color: var(--cyan-dark);
}

.hero-text {
  max-width: 690px;
  font-size: 18px;
}

.hero-actions {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}

.trust-strip svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  max-width: 760px;
  gap: 9px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid color-mix(in srgb, var(--line) 70%, transparent);
}

.trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 7px 11px 7px 9px;
  border: 1px solid color-mix(in srgb, var(--line) 72%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--panel-strong) 52%, transparent);
  color: color-mix(in srgb, var(--ink-soft) 82%, var(--muted));
  font-size: 12px;
  font-weight: 650;
  line-height: 1.25;
  box-shadow: none;
  backdrop-filter: blur(12px);
}

.trust-strip svg {
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  color: color-mix(in srgb, var(--cyan-dark) 72%, var(--muted));
  stroke-width: 1.8;
}

.trust-strip strong {
  font-size: 25px;
}

.hero-visual {
  min-height: 690px;
  perspective: 1400px;
}

.hero-orb {
  right: -8%;
  top: 8%;
  width: 520px;
  height: 520px;
  opacity: 0.72;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 44px 2% auto auto;
  width: 78%;
  height: 78%;
  border: 1px solid rgba(53, 176, 213, 0.18);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(53, 176, 213, 0.1), transparent 42%),
    color-mix(in srgb, var(--panel-strong) 38%, transparent);
  transform: rotate(-3deg);
}

.dashboard-float {
  position: absolute;
  z-index: 4;
  min-width: 156px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: color-mix(in srgb, var(--panel-strong) 84%, transparent);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.dashboard-note {
  position: absolute;
  z-index: 5;
  right: 186px;
  top: 58px;
  margin: 0;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--panel-strong) 86%, transparent);
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(16px);
}

.dashboard-float.top {
  right: 7%;
  top: 34px;
}

.dashboard-float.bottom {
  left: 0;
  bottom: 92px;
}

.dashboard-float span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.dashboard-float strong {
  display: block;
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
}

.live-console {
  inset: 90px 0 auto auto;
  width: min(800px, 100%);
  min-height: 530px;
  border: 1px solid rgba(53, 176, 213, 0.24);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(53, 176, 213, 0.18), transparent 38%),
    color-mix(in srgb, var(--panel-strong) 90%, transparent);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.34);
  transform: rotate(-1.5deg);
}

.live-console::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 0;
  border: 1px solid var(--line);
  border-radius: 22px;
  pointer-events: none;
}

.console-main {
  position: relative;
  z-index: 1;
  min-height: 530px;
  padding: 20px;
  background:
    radial-gradient(
      circle at 86% 0%,
      rgba(53, 176, 213, 0.15),
      transparent 30%
    ),
    linear-gradient(90deg, rgba(53, 176, 213, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(53, 176, 213, 0.04) 1px, transparent 1px), transparent;
  background-size:
    auto,
    38px 38px,
    38px 38px,
    auto;
}

.console-brandbar {
  grid-template-columns: 1fr auto;
  margin-bottom: 14px;
  padding: 12px 14px;
  border-radius: 16px;
  background: color-mix(in srgb, var(--panel-strong) 76%, transparent);
}

.console-logo img {
  width: 126px;
}

.console-tabs {
  gap: 6px;
}

.console-tabs span {
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
}

.console-topbar {
  margin-bottom: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  background: color-mix(in srgb, var(--panel-strong) 72%, transparent);
}

.console-status-strip {
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}

.console-status-strip span {
  min-height: 38px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--panel-strong) 72%, transparent);
}

.kpi-grid {
  gap: 10px;
  margin-bottom: 12px;
}

.kpi-card {
  min-height: 132px;
  padding: 18px 18px 42px;
  border-radius: 18px;
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(53, 176, 213, 0.12),
      transparent 42%
    ),
    color-mix(in srgb, var(--panel-strong) 70%, transparent);
}

.kpi-card strong {
  font-size: 30px;
}

.console-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(210px, 0.72fr);
  gap: 12px;
}

.chart-panel,
.zones-panel {
  border-radius: 18px;
  background: color-mix(in srgb, var(--panel-strong) 70%, transparent);
}

.line-chart {
  min-height: 170px;
}

.zone-row {
  grid-template-columns: minmax(0, 1fr) 64px 36px;
  min-height: 54px;
}

.console-action-row {
  margin-top: 12px;
  min-height: 46px;
  border-radius: 16px;
  background: linear-gradient(
    90deg,
    rgba(53, 176, 213, 0.14),
    rgba(24, 168, 121, 0.08)
  );
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 640px;
  }

  .live-console {
    inset: 84px auto auto 0;
    transform: none;
  }

  .dashboard-float.top {
    right: 12px;
  }
}

@media (max-width: 760px) {
  .hero-copy h1 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .hero-visual {
    min-height: 760px;
  }

  .dashboard-float {
    position: relative;
    display: inline-block;
    min-width: 0;
  }

  .dashboard-note {
    position: relative;
    display: inline-flex;
    right: auto;
    top: auto;
    margin: 0 8px 12px 0;
  }

  .dashboard-float.top,
  .dashboard-float.bottom {
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    margin: 0 8px 12px 0;
  }

  .live-console {
    position: relative;
    inset: auto;
    width: 100%;
    border-radius: 22px;
  }

  .console-brandbar,
  .console-grid,
  .kpi-grid,
  .console-status-strip {
    grid-template-columns: 1fr;
  }
}

/* Refined hero background concept */
.hero-visual {
  isolation: isolate;
}

body[data-theme="dark"] .hero-visual {
  --ink: #071015;
  --ink-soft: #1c343f;
  --muted: #66777f;
  --paper: #ffffff;
  --panel: rgba(255, 255, 255, 0.82);
  --panel-strong: #ffffff;
  --line: rgba(167, 204, 217, 0.48);
  --cyan: #35b0d5;
  --cyan-dark: #0a86ad;
  --cyan-soft: #e8f8fd;
  --green: #18a879;
  --shadow: 0 28px 90px rgba(7, 16, 21, 0.18);
  --soft-shadow: 0 18px 52px rgba(7, 16, 21, 0.1);
}

body[data-theme="dark"] .hero-visual .console-logo img {
  filter: none;
}

body[data-theme="dark"] .hero-visual .live-console {
  border-color: rgba(53, 176, 213, 0.24);
}

.hero-orb {
  display: none;
}

.hero-visual::before {
  inset: 42px 0 auto auto;
  width: min(760px, 100%);
  height: 560px;
  border-radius: 34px;
  border: 1px solid color-mix(in srgb, var(--cyan) 22%, transparent);
  background:
    linear-gradient(
      135deg,
      color-mix(in srgb, var(--cyan) 12%, transparent),
      transparent 44%
    ),
    linear-gradient(
      90deg,
      color-mix(in srgb, var(--panel-strong) 58%, transparent),
      color-mix(in srgb, var(--cyan-soft) 20%, transparent)
    );
  box-shadow: inset 0 0 0 1px
    color-mix(in srgb, var(--panel-strong) 34%, transparent);
  transform: skewY(-3deg) rotate(-1deg);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 64px 0 auto auto;
  z-index: -1;
  width: min(760px, 100%);
  height: 500px;
  border-radius: 34px;
  background:
    conic-gradient(
      from 224deg at 78% 30%,
      color-mix(in srgb, var(--green) 18%, transparent),
      transparent 24%,
      color-mix(in srgb, var(--cyan) 16%, transparent) 42%,
      transparent 64%
    ),
    radial-gradient(
      ellipse at 62% 28%,
      color-mix(in srgb, var(--cyan) 18%, transparent),
      transparent 58%
    ),
    radial-gradient(
      ellipse at 30% 74%,
      color-mix(in srgb, var(--green) 14%, transparent),
      transparent 56%
    ),
    linear-gradient(
      180deg,
      color-mix(in srgb, var(--panel-strong) 20%, transparent),
      transparent 72%
    );
  opacity: 0.82;
  transform: rotate(-1deg) scale(1.02);
  filter: saturate(1.12);
  pointer-events: none;
}

.live-console {
  inset: 54px 0 auto auto;
  --console-rotate: -1deg;
  transform: rotate(var(--console-rotate)) translate3d(0, 0, 0);
  animation: heroConsoleFloat 5.8s ease-in-out infinite;
}

@keyframes heroConsoleFloat {
  0%,
  100% {
    transform: rotate(var(--console-rotate)) translate3d(0, 0, 0);
  }

  50% {
    transform: rotate(var(--console-rotate)) translate3d(0, -10px, 0);
  }
}

.hero-visual .console-topbar strong,
.hero-visual .panel-head strong,
.hero-visual .zone-row strong {
  color: var(--ink);
}

.hero-visual .console-topbar strong,
.hero-visual .zone-row span,
.hero-visual .console-action-row strong {
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.34);
}

.hero-visual .console-topbar,
.hero-visual .console-status-strip span,
.hero-visual .kpi-card,
.hero-visual .chart-panel,
.hero-visual .zones-panel {
  color: var(--ink-soft);
}

.dashboard-float.top {
  right: -22px;
  top: 22px;
}

.dashboard-float.bottom {
  left: -18px;
  bottom: 112px;
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr);
    gap: 40px;
  }

  .live-console {
    right: 0;
  }

  .hero-visual::before {
    right: -18px;
  }
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-top: 42px;
  }

  .hero-copy h1,
  .hero-text,
  .trust-strip {
    max-width: 820px;
  }

  .hero-visual::before,
  .hero-visual::after {
    width: 100%;
    right: 0;
  }

  .live-console {
    inset: 84px auto auto 0;
    --console-rotate: 0deg;
  }

  .dashboard-float.top {
    right: 14px;
    top: 44px;
  }

  .dashboard-float.bottom {
    left: 10px;
    bottom: 74px;
  }
}

@media (max-width: 840px) {
  .hero-visual {
    min-height: 840px;
  }

  .live-console {
    max-height: 720px;
  }

  .console-main {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .hero {
    gap: 28px;
    padding-top: 24px;
    padding-bottom: 56px;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(34px, 9.8vw, 46px);
    line-height: 1.05;
  }

  .hero-text {
    max-width: 100%;
    font-size: 16.5px;
    line-height: 1.62;
  }

  .hero-actions {
    width: 100%;
    align-items: stretch;
  }

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

  .trust-strip {
    width: 100%;
    gap: 8px;
  }

  .trust-strip span {
    flex: 1 1 calc(50% - 4px);
  }

  .hero-visual::before,
  .hero-visual::after {
    display: none;
  }

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

  .dashboard-float {
    display: none;
  }

  .live-console {
    inset: auto;
    width: 100%;
    min-height: auto;
    max-height: none;
    --console-rotate: 0deg;
  }

  .console-main {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .definition-section {
    width: min(100% - 24px, var(--container));
    margin-top: 0;
    margin-left: auto;
    padding: 68px 0 64px;
    text-align: left;
  }

  .definition-intro {
    align-items: flex-start;
    max-width: none;
    margin-bottom: 30px;
  }

  .definition-intro .eyebrow {
    justify-content: flex-start;
    margin-bottom: 14px;
  }

  .definition-intro h2 {
    max-width: 12ch;
    margin-bottom: 14px;
    font-size: clamp(32px, 9vw, 40px);
    line-height: 1.08;
  }

  .definition-intro p:last-child {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.6;
  }

  .definition-cards {
    gap: 14px;
    max-width: none;
  }

  .definition-card,
  .definition-card.is-featured,
  .definition-card:hover {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    column-gap: 14px;
    align-items: start;
    padding: 16px;
    border: 1px solid color-mix(in srgb, var(--line) 76%, transparent);
    border-radius: var(--radius);
    background: color-mix(in srgb, var(--panel-strong) 78%, transparent);
    box-shadow: var(--soft-shadow);
    text-align: left;
    transform: none;
  }

  .definition-card::after {
    display: none;
  }

  .definition-icon {
    grid-row: span 3;
    width: 52px;
    height: 52px;
    margin-bottom: 0;
    box-shadow:
      0 0 0 6px color-mix(in srgb, var(--cyan) 8%, transparent),
      0 10px 22px color-mix(in srgb, var(--cyan) 14%, transparent);
  }

  .definition-icon::after {
    display: none;
  }

  .definition-icon svg {
    width: 24px;
    height: 24px;
  }

  .definition-step {
    justify-self: start;
    padding: 0;
  }

  .definition-card h3 {
    margin: 7px 0 7px;
    font-size: 18px;
    text-align: left;
  }

  .definition-card p {
    max-width: none;
    font-size: 14px;
    line-height: 1.48;
    text-align: left;
  }

  .definition-signal {
    display: none;
  }
}

@media (max-width: 420px) {
  .definition-intro h2 {
    max-width: 11ch;
    font-size: clamp(30px, 9.5vw, 36px);
  }

  .definition-card,
  .definition-card.is-featured,
  .definition-card:hover {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 10px 12px;
    padding: 14px;
  }

  .definition-icon {
    width: 46px;
    height: 46px;
  }
}

@media (max-width: 760px) {
  .solution-section {
    padding-top: 54px;
    padding-bottom: 64px;
  }

  .solution-section .section-intro {
    max-width: none;
    margin-bottom: 0;
    text-align: center;
  }

  .solution-section .section-intro .eyebrow {
    justify-content: center;
    margin-bottom: 14px;
  }

  .solution-section .section-intro h2 {
    max-width: 13ch;
    margin-right: auto;
    margin-bottom: 14px;
    margin-left: auto;
    font-size: clamp(31px, 8.8vw, 40px);
    line-height: 1.08;
  }

  .solution-section .section-intro p {
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
    font-size: 16px;
    line-height: 1.58;
  }

  .how-it-works-flow {
    width: min(100%, 350px);
    gap: 16px;
    margin-top: 28px;
    margin-right: auto;
    margin-left: auto;
    padding-top: 32px;
  }

  .how-it-works-flow::before {
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    letter-spacing: 0.06em;
  }

  .how-it-works-flow article {
    grid-template-columns: 46px 36px minmax(0, 1fr);
    min-height: 70px;
    padding-left: 0;
  }

  .how-it-works-flow article::before {
    left: 19px;
    top: 50px;
  }

  .how-it-works-flow article:not(:last-child)::after {
    left: 24px;
    top: 62px;
    bottom: -22px;
    background: color-mix(in srgb, var(--step-color) 42%, var(--line));
  }

  .flow-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .flow-icon svg {
    width: 21px;
    height: 21px;
  }

  .how-it-works-flow strong {
    min-width: 0;
    font-size: 15px;
    line-height: 1.2;
  }

  .flow-step {
    font-size: 10px;
  }

  .ops-flow {
    gap: 12px;
    margin-top: 24px;
  }

  .ops-step,
  .ops-step:nth-child(2) {
    padding: 18px;
    border-radius: var(--radius);
  }

  .ops-tag {
    min-width: 0;
    font-size: 10px;
    line-height: 1.25;
  }

  .ops-step h3 {
    margin-top: 22px;
    font-size: 19px;
    line-height: 1.18;
  }

  .ops-step p {
    max-width: none;
    font-size: 14px;
    line-height: 1.5;
  }
}

@media (max-width: 420px) {
  .solution-section .section-intro h2 {
    max-width: 12ch;
    font-size: clamp(29px, 8.8vw, 36px);
  }

  .how-it-works-flow article {
    grid-template-columns: 44px 30px minmax(0, 1fr);
    column-gap: 10px;
  }

  .how-it-works-flow article::before {
    left: 18px;
  }

  .how-it-works-flow article:not(:last-child)::after {
    left: 23px;
  }

  .flow-icon {
    width: 44px;
    height: 44px;
  }

  .ops-index {
    width: 38px;
    height: 30px;
    font-size: 12px;
  }
}
