:root {
  --ink: #263a63;
  --ink-strong: #1d2d51;
  --muted: #687697;
  --paper: #f8faff;
  --paper-blue: #f1f6ff;
  --white: #ffffff;
  --line: rgba(63, 82, 137, 0.12);
  --line-strong: rgba(63, 82, 137, 0.2);
  --violet: #716de8;
  --violet-deep: #5d58d6;
  --cyan: #4fd6eb;
  --pink: #f18bd1;
  --peach: #ffaf8e;
  --green: #54b989;
  --shadow: 0 28px 70px rgba(82, 93, 154, 0.12), 0 8px 24px rgba(82, 93, 154, 0.06);
  --soft-shadow: 0 16px 38px rgba(82, 93, 154, 0.11), 0 3px 12px rgba(82, 93, 154, 0.06);
  --page: min(1180px, calc(100vw - 64px));
  --display: "DM Sans", "Manrope", Arial, sans-serif;
  --body: "Manrope", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: clip;
  background: var(--paper);
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: clip;
  background:
    radial-gradient(circle at 50% 8%, rgba(125, 151, 255, 0.06), transparent 28%),
    var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  z-index: 100;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.035'/%3E%3C/svg%3E");
}

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

button,
input {
  font: inherit;
}

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

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

::selection {
  background: rgba(112, 108, 232, 0.22);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 11px 16px;
  border-radius: 999px;
  background: var(--ink-strong);
  color: #fff;
  font-size: 12px;
  transform: translateY(-140%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 90;
  top: 18px;
  left: 50%;
  width: min(540px, calc(100vw - 36px));
  height: 62px;
  padding: 0 9px 0 21px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 30px rgba(75, 92, 151, 0.12), inset 0 0 0 1px rgba(88, 108, 167, 0.035);
  backdrop-filter: blur(20px) saturate(140%);
  transform: translateX(-50%);
  transition:
    width 240ms ease,
    box-shadow 240ms ease,
    background 240ms ease;
}

.site-header[data-elevated="true"] {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 42px rgba(67, 84, 142, 0.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #6570c8;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.055em;
}

.brand-mark {
  width: 24px;
  height: 25px;
  display: flex;
  align-items: flex-end;
  gap: 2px;
  transform: skewX(-18deg);
}

.brand-mark i {
  display: block;
  width: 6px;
  border-radius: 2px 2px 0 0;
  background: linear-gradient(180deg, var(--cyan), var(--violet));
}

.brand-mark i:nth-child(1) {
  height: 14px;
  opacity: 0.52;
}

.brand-mark i:nth-child(2) {
  height: 20px;
  opacity: 0.76;
}

.brand-mark i:nth-child(3) {
  height: 25px;
}

.site-nav {
  position: fixed;
  z-index: 89;
  top: 91px;
  left: 50%;
  width: min(540px, calc(100vw - 36px));
  padding: 12px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.94);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--soft-shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -10px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.site-header.menu-open + main,
.site-header.menu-open {
  --menu-open: 1;
}

.site-header.menu-open .site-nav,
.site-header.menu-open ~ .site-nav {
  opacity: 1;
}

.site-header.menu-open .site-nav {
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.site-nav a {
  min-height: 42px;
  padding: 0 13px;
  display: flex;
  align-items: center;
  border-radius: 11px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  transition:
    color 160ms ease,
    background 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: #f0f3ff;
  color: var(--violet-deep);
}

.header-actions {
  grid-column: 3;
  display: flex;
  align-items: center;
  gap: 8px;
}

.menu-button {
  width: 42px;
  height: 42px;
  padding: 12px;
  display: grid;
  grid-template-columns: repeat(3, 3px);
  grid-template-rows: repeat(3, 3px);
  align-content: center;
  justify-content: center;
  gap: 3px;
  border: 0;
  border-radius: 14px;
  background: #f5f7ff;
  cursor: pointer;
}

.menu-button span {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #6973c5;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.site-header.menu-open .menu-button span:nth-child(2),
.site-header.menu-open .menu-button span:nth-child(4),
.site-header.menu-open .menu-button span:nth-child(6),
.site-header.menu-open .menu-button span:nth-child(8) {
  opacity: 0;
}

.site-header.menu-open .menu-button span:nth-child(1) { transform: translate(6px, 6px); }
.site-header.menu-open .menu-button span:nth-child(3) { transform: translate(-6px, 6px); }
.site-header.menu-open .menu-button span:nth-child(7) { transform: translate(6px, -6px); }
.site-header.menu-open .menu-button span:nth-child(9) { transform: translate(-6px, -6px); }

.header-launch {
  width: 42px;
  height: 42px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  overflow: hidden;
  border-radius: 14px;
  background: linear-gradient(145deg, #7774ec, #625fdc);
  box-shadow: 0 9px 19px rgba(100, 96, 220, 0.28), inset 0 1px rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  transition: width 220ms ease;
}

.header-launch:hover,
.header-launch:focus-visible {
  width: 139px;
}

.launch-icon {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  border: 1.5px solid currentColor;
  border-radius: 4px;
  position: relative;
}

.launch-icon::after {
  content: "↗";
  position: absolute;
  top: -7px;
  right: -7px;
  width: 12px;
  height: 12px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--violet);
  font-size: 8px;
}

.launch-label {
  display: none;
  white-space: nowrap;
}

.header-launch:hover .launch-label,
.header-launch:focus-visible .launch-label {
  display: inline;
}

.hero {
  min-height: 1320px;
  position: relative;
  isolation: isolate;
  padding: 145px 0 0;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -3;
  inset: 0 0 auto;
  height: 1150px;
  background:
    linear-gradient(rgba(115, 126, 184, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(115, 126, 184, 0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 80%);
}

.hero-glow {
  position: absolute;
  z-index: -2;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.2;
}

.glow-left {
  top: 220px;
  left: -350px;
  background: var(--cyan);
}

.glow-right {
  top: 250px;
  right: -330px;
  background: var(--pink);
}

.hero-copy {
  width: var(--page);
  margin: 0 auto;
  text-align: center;
}

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

.status-pill {
  position: relative;
  isolation: isolate;
  --status-angle: 20deg;
  width: max-content;
  max-width: 100%;
  margin: 0 auto 28px;
  padding: 4px 14px 4px 4px;
  display: flex;
  align-items: center;
  gap: 10px;
  overflow: hidden;
  border: 1px solid rgba(94, 111, 190, 0.42);
  border-radius: 999px;
  color: #6873be;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(250, 251, 255, 0.94);
  box-shadow:
    0 2px 4px rgba(189, 200, 223, 0.1),
    0 7px 7px rgba(189, 200, 223, 0.09),
    0 15px 9px rgba(189, 200, 223, 0.05),
    inset 0 1px rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
}

.status-pill::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background:
    conic-gradient(
      from var(--status-angle),
      rgba(82, 99, 174, 0.3) 0deg 214deg,
      rgba(165, 178, 226, 0.68) 232deg,
      #ffffff 243deg,
      #c2f8ff 250deg,
      #69d8eb 257deg,
      #8583ed 266deg,
      rgba(64, 81, 157, 0.42) 280deg 360deg
    );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
  animation: status-edge-chase 3.8s linear infinite;
}

.status-pill::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 1px;
  border-radius: inherit;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.985) 0%,
      rgba(247, 249, 255, 0.955) 58%,
      rgba(241, 244, 252, 0.94) 100%
    );
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.96),
    inset 0 -1px rgba(95, 111, 184, 0.08);
}

.status-rocket {
  position: relative;
  z-index: 2;
  width: 29px;
  height: 29px;
  flex: 0 0 29px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid #7584d6;
  background: #7584d6;
  box-shadow:
    0 1px 1px rgba(136, 138, 227, 0.47),
    0 5px 8px rgba(136, 138, 227, 0.32),
    inset 0 0 0 1px rgba(255, 255, 255, 0.23),
    inset 0 0 2px rgba(30, 33, 115, 0.3);
}

.status-rocket img {
  width: 16px;
  height: 16px;
  display: block;
}

.status-pill strong {
  position: relative;
  z-index: 2;
  font-weight: 500;
}

.hero h1 {
  max-width: 1120px;
  margin: 0 auto;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(60px, 6.7vw, 104px);
  font-weight: 500;
  line-height: 1.01;
  letter-spacing: -0.067em;
}

.hero h1 em,
.section-heading h2 em,
.integration-heading h2 em,
.api-heading h2 em,
.company-intro h2 em,
.final-cta h2 em {
  background: linear-gradient(100deg, #48d5e8 0%, #6d7be2 48%, #7164de 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-style: normal;
}

.brand-inline {
  width: 70px;
  height: 70px;
  margin-right: 6px;
  display: inline-flex;
  align-items: flex-end;
  gap: 5px;
  transform: skewX(-20deg) translateY(4px);
}

.brand-inline i {
  width: 18px;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, #98a7d0, #51668e);
}

.brand-inline i:nth-child(1) { height: 42px; opacity: 0.45; }
.brand-inline i:nth-child(2) { height: 56px; opacity: 0.7; }
.brand-inline i:nth-child(3) { height: 68px; }

.hero-summary {
  max-width: 570px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 11px;
}

.button {
  min-height: 49px;
  padding: 0 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border: 1px solid transparent;
  border-radius: 15px;
  font-size: 11px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(145deg, #7774ec, #625ed7);
  box-shadow: 0 12px 26px rgba(103, 99, 219, 0.25), inset 0 1px rgba(255, 255, 255, 0.3);
  color: #fff;
}

.button-secondary {
  border-color: rgba(99, 113, 165, 0.12);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 24px rgba(91, 107, 161, 0.09);
  color: #7380bd;
}

.hero-stage {
  width: min(1100px, calc(100vw - 64px));
  height: 630px;
  position: relative;
  margin: 74px auto 0;
}

.hero-stage::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -10% 2% -5%;
  border-radius: 48%;
  background:
    radial-gradient(circle at 48% 25%, rgba(115, 120, 239, 0.22), transparent 33%),
    radial-gradient(circle at 10% 55%, rgba(80, 215, 234, 0.17), transparent 34%),
    radial-gradient(circle at 86% 60%, rgba(241, 139, 209, 0.16), transparent 33%);
  filter: blur(42px);
}

.dashboard-shell {
  width: 920px;
  height: 560px;
  position: absolute;
  left: 50%;
  bottom: 0;
  display: grid;
  grid-template-columns: 65px 1fr;
  overflow: hidden;
  border: 7px solid rgba(255, 255, 255, 0.92);
  border-radius: 24px 24px 12px 12px;
  background: rgba(246, 249, 255, 0.96);
  box-shadow: 0 38px 80px rgba(80, 92, 149, 0.17), 0 8px 25px rgba(80, 92, 149, 0.08);
  transform: translateX(-50%) perspective(1400px) rotateX(2deg);
}

.dashboard-sidebar {
  padding: 22px 12px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 14px;
  border-right: 1px solid rgba(76, 95, 151, 0.09);
  background: rgba(255, 255, 255, 0.72);
}

.mini-brand {
  width: 34px;
  height: 34px;
  margin-bottom: 20px;
  position: relative;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(145deg, #7976ec, #5d5acf);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
}

.mini-brand i {
  position: absolute;
  inset: -1px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: inherit;
}

.side-item {
  width: 33px;
  height: 33px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: #94a0c0;
  font-size: 12px;
}

.side-item.is-active {
  background: #eef1ff;
  color: var(--violet);
}

.side-bottom {
  margin-top: auto;
}

.dashboard-main {
  padding: 28px 30px;
}

.dashboard-top,
.card-heading,
.mini-dash-top,
.console-title,
.console-chart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.dashboard-top > div:first-child,
.card-heading > div,
.console-title > div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dashboard-top small,
.dashboard-metrics span,
.dashboard-metrics small,
.card-heading small,
.mini-dash-top small,
.mini-dash-metrics small,
.console-title small,
.console-stats small,
.console-stats span {
  color: #9aa6c3;
  font-size: 8px;
}

.dashboard-top strong {
  color: var(--ink-strong);
  font-size: 17px;
}

.dashboard-controls {
  display: flex;
  align-items: center;
  gap: 11px;
}

.dashboard-controls span {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: #8793b4;
  font-size: 7px;
}

.dashboard-controls i {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: linear-gradient(145deg, #7773eb, #615ed6);
}

.dashboard-metrics {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.dashboard-metrics article {
  min-height: 91px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1px solid rgba(81, 99, 157, 0.08);
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 6px 16px rgba(83, 98, 150, 0.04);
}

.dashboard-metrics strong {
  color: var(--ink-strong);
  font-size: 20px;
  letter-spacing: -0.04em;
}

.dashboard-metrics .positive,
.positive,
.console-stats .up {
  color: var(--green);
}

.dashboard-grid {
  margin-top: 13px;
  display: grid;
  grid-template-columns: 1fr 210px;
  gap: 12px;
}

.analytics-card,
.mix-card {
  min-height: 303px;
  padding: 18px;
  border: 1px solid rgba(81, 99, 157, 0.08);
  border-radius: 14px;
  background: #fff;
}

.card-heading strong {
  color: var(--ink-strong);
  font-size: 11px;
}

.card-heading > span {
  padding: 6px 9px;
  border-radius: 7px;
  background: #f1f2ff;
  color: var(--violet);
  font-size: 7px;
  font-weight: 700;
}

.chart-area {
  height: 220px;
  position: relative;
  margin-top: 10px;
  background:
    linear-gradient(rgba(94, 113, 169, 0.06) 1px, transparent 1px);
  background-size: 100% 44px;
}

.chart-area svg {
  width: 100%;
  height: 188px;
}

.chart-fill {
  fill: url("#fillGradient");
}

.chart-line {
  fill: none;
  stroke: url("#lineGradient");
  stroke-linecap: round;
  stroke-width: 5;
}

.chart-area circle {
  fill: #fff;
  stroke: #716de8;
  stroke-width: 4;
}

.chart-labels {
  display: flex;
  justify-content: space-between;
  color: #a0aac5;
  font-size: 7px;
}

.mix-card {
  display: flex;
  flex-direction: column;
}

.donut {
  width: 145px;
  height: 145px;
  margin: 21px auto 15px;
  position: relative;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--violet) 0 38%, var(--cyan) 38% 69%, var(--pink) 69% 100%);
  box-shadow: inset 0 0 20px rgba(99, 96, 219, 0.09);
}

.donut::before {
  content: "";
  position: absolute;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: #fff;
}

.donut span {
  position: relative;
  z-index: 1;
  color: var(--ink-strong);
  font-size: 16px;
  font-weight: 700;
  line-height: 0.9;
  text-align: center;
}

.donut small {
  color: #99a4c0;
  font-size: 6px;
  font-weight: 500;
}

.mix-card ul {
  margin: auto 0 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  list-style: none;
  color: #8c97b4;
  font-size: 6px;
}

.dot {
  width: 5px;
  height: 5px;
  margin-right: 3px;
  display: inline-block;
  border-radius: 50%;
}

.dot.violet { background: var(--violet); }
.dot.cyan { background: var(--cyan); }
.dot.pink { background: var(--pink); }

.hero-prompt,
.floating-card {
  position: absolute;
  z-index: 4;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(16px);
}

.hero-prompt {
  top: 32px;
  left: -10px;
  width: 265px;
  height: 55px;
  padding: 0 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 18px;
  color: #8794bc;
  font-size: 11px;
  transform: rotate(-2deg);
}

.hero-prompt i {
  color: var(--violet);
  font-size: 18px;
  font-style: normal;
}

.floating-card {
  padding: 13px 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 16px;
}

.floating-card > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.floating-card small {
  color: #9ca6c1;
  font-size: 7px;
}

.floating-card strong {
  color: var(--ink);
  font-size: 10px;
}

.floating-score {
  top: 53px;
  right: 5px;
  transform: rotate(2deg);
}

.score-ring {
  width: 45px;
  height: 45px;
  position: relative;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--violet) 0 82%, #edf0fb 82%);
}

.score-ring::before {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: inherit;
  background: #fff;
}

.score-ring span {
  position: relative;
  z-index: 1;
  font-size: 9px;
  font-weight: 700;
}

.floating-report {
  right: -16px;
  bottom: 87px;
  transform: rotate(-1.5deg);
}

.report-icon {
  width: 41px;
  height: 41px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(79, 214, 235, 0.2), rgba(113, 109, 232, 0.16));
  color: var(--violet);
  font-size: 15px;
}

.capability-band {
  width: min(1120px, calc(100vw - 64px));
  margin-right: auto;
  margin-left: auto;
  margin-top: 98px;
  padding: 0 28px 16px;
  overflow: hidden;
  border-radius: 28px;
  box-sizing: border-box;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.capability-band > p {
  margin: 0 0 30px;
  color: #9aa4bf;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-align: center;
  text-transform: uppercase;
}

.capability-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 37px;
  color: #8c97b8;
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
}

.capability-track i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--cyan), var(--violet));
  box-shadow: 0 0 0 7px rgba(112, 108, 232, 0.06);
}

.section {
  position: relative;
  padding: 145px max(32px, calc((100vw - 1180px) / 2));
}

.section-heading {
  max-width: 830px;
}

.section-heading.centered {
  margin: 0 auto;
  text-align: center;
}

.section-label {
  margin: 0 0 26px;
  color: #7580b1;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.31em;
  text-transform: uppercase;
}

.section-label::after {
  content: "";
  width: 28px;
  height: 1px;
  margin: 11px auto 0;
  display: block;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
}

.section-heading h2,
.integration-heading h2,
.api-heading h2,
.company-intro h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(48px, 5.1vw, 74px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.06em;
}

.section-heading > p:last-child,
.integration-heading > div > p:last-child,
.api-heading > p:last-child,
.company-intro > p:not(.section-label) {
  max-width: 610px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.features-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 50%, rgba(92, 220, 235, 0.09), transparent 25%),
    radial-gradient(circle at 84% 60%, rgba(239, 135, 207, 0.08), transparent 24%),
    var(--paper);
}

.feature-mosaic {
  margin-top: 72px;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 16px;
}

.feature-card {
  min-height: 500px;
  position: relative;
  padding: 27px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% -10%, rgba(255, 255, 255, 0.98), transparent 45%),
    rgba(245, 248, 255, 0.86);
  box-shadow: var(--soft-shadow);
}

.feature-card::before,
.process-card::before,
.integration-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(100, 116, 177, 0.13) 1px, transparent 1px);
  background-size: 14px 14px;
  mask-image: linear-gradient(145deg, black, transparent 55%);
  opacity: 0.35;
}

.feature-wide {
  min-height: 535px;
}

.feature-tall {
  grid-row: span 2;
  min-height: 1048px;
}

.feature-square {
  min-height: 497px;
}

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

.feature-number {
  width: 31px;
  height: 31px;
  margin-bottom: 14px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
  color: #8791b9;
  font-size: 8px;
}

.feature-copy h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.feature-copy p {
  max-width: 470px;
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}

.mini-dashboard {
  width: 90%;
  min-height: 305px;
  position: relative;
  z-index: 2;
  margin: 10px auto 0;
  padding: 22px;
  border: 1px solid rgba(94, 111, 167, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 40px rgba(77, 93, 149, 0.11);
  transform: perspective(900px) rotateX(3deg);
}

.mini-dash-top span {
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
}

.mini-dash-metrics {
  margin-top: 19px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.mini-dash-metrics > div {
  padding: 11px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-radius: 9px;
  background: #f7f9ff;
}

.mini-dash-metrics strong {
  color: var(--ink);
  font-size: 13px;
}

.mini-bars {
  height: 145px;
  margin-top: 17px;
  padding: 11px 9px 0;
  display: flex;
  align-items: flex-end;
  gap: 9px;
  border-bottom: 1px solid var(--line);
  background: repeating-linear-gradient(to bottom, transparent 0 34px, rgba(100, 117, 174, 0.07) 35px);
}

.mini-bars i {
  flex: 1;
  height: var(--h);
  border-radius: 5px 5px 0 0;
  background: linear-gradient(180deg, var(--violet), #9c99ee);
}

.mini-bars i:nth-child(3n) {
  background: linear-gradient(180deg, var(--cyan), #89e4ef);
}

.creative-card {
  background:
    radial-gradient(circle at 48% 33%, rgba(103, 215, 235, 0.2), transparent 22%),
    radial-gradient(circle at 50% 40%, rgba(123, 117, 237, 0.12), transparent 34%),
    rgba(245, 248, 255, 0.88);
}

.creative-orbit {
  width: 340px;
  height: 340px;
  position: relative;
  z-index: 2;
  margin: 90px auto 0;
  border: 1px solid rgba(105, 115, 198, 0.18);
  border-radius: 50%;
}

.creative-orbit::before,
.creative-orbit::after {
  content: "";
  position: absolute;
  inset: 53px;
  border: 1px dashed rgba(105, 115, 198, 0.2);
  border-radius: inherit;
}

.creative-orbit::after {
  inset: 103px;
  border-style: solid;
}

.orbit-center,
.orbit-item {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--soft-shadow);
  color: #737dc0;
  font-style: normal;
  font-weight: 700;
}

.orbit-center {
  top: 50%;
  left: 50%;
  width: 82px;
  height: 82px;
  border-radius: 24px;
  background: linear-gradient(145deg, #6fd9ea, #716de8);
  color: #fff;
  font-size: 18px;
  transform: translate(-50%, -50%) rotate(8deg);
}

.orbit-item {
  min-width: 76px;
  height: 38px;
  padding: 0 11px;
  border-radius: 12px;
  font-size: 8px;
}

.item-one { top: -4px; left: 126px; }
.item-two { top: 129px; right: -38px; }
.item-three { bottom: -4px; left: 124px; }
.item-four { top: 129px; left: -38px; }

.measure-gauge {
  position: relative;
  z-index: 2;
  margin: 30px auto 20px;
}

.gauge-ring {
  width: 205px;
  height: 205px;
  position: relative;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--cyan) 0 22%, var(--violet) 22% 52%, var(--pink) 52% 71%, #e8ecfa 71%);
  box-shadow: 0 15px 35px rgba(89, 106, 165, 0.11);
}

.gauge-ring::before {
  content: "";
  position: absolute;
  inset: 25px;
  border-radius: inherit;
  background: #fbfcff;
}

.gauge-ring span {
  position: relative;
  z-index: 1;
  color: var(--ink);
  font-size: 52px;
  font-weight: 500;
  letter-spacing: -0.06em;
}

.gauge-legend {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: #8995b7;
  font-size: 8px;
}

.gauge-legend i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--violet);
}

.workflow-mini {
  width: 88%;
  position: relative;
  z-index: 2;
  margin: 36px auto;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.workflow-mini > div {
  min-height: 58px;
  padding: 0 14px;
  display: grid;
  grid-template-columns: 28px 1fr 28px;
  align-items: center;
  border: 1px solid rgba(83, 104, 164, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 7px 17px rgba(75, 92, 148, 0.06);
}

.workflow-mini span,
.workflow-mini i {
  color: #99a3bf;
  font-size: 8px;
  font-style: normal;
}

.workflow-mini strong {
  font-size: 10px;
}

.workflow-mini i {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: #f1f3ff;
  color: var(--violet);
}

.process-section {
  background:
    radial-gradient(circle at 50% 65%, rgba(75, 213, 234, 0.1), transparent 33%),
    linear-gradient(180deg, #fbfcff, #f3f8ff);
}

.process-grid {
  margin: 70px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
  list-style: none;
}

.process-card {
  min-height: 450px;
  position: relative;
  padding: 22px;
  display: flex;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 16px 40px rgba(89, 104, 157, 0.08);
  text-align: center;
}

.step-pill {
  position: relative;
  z-index: 1;
  margin-bottom: 47px;
  padding: 8px 14px;
  border: 1px solid rgba(94, 111, 174, 0.08);
  border-radius: 999px;
  background: rgba(247, 248, 255, 0.94);
  color: #6874b8;
  font-size: 11px;
}

.step-visual {
  width: 130px;
  height: 110px;
  position: relative;
  z-index: 1;
  margin-bottom: 37px;
}

.process-card h3 {
  position: relative;
  z-index: 1;
  margin: auto 0 9px;
  font-family: var(--display);
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.process-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.65;
}

.authorize-visual i {
  position: absolute;
  width: 65px;
  height: 55px;
  border: 2px solid #7179d6;
  background: rgba(255, 255, 255, 0.66);
  transform: skewY(-28deg);
}

.authorize-visual i:nth-child(1) { top: 12px; left: 6px; }
.authorize-visual i:nth-child(2) { top: 38px; left: 34px; border-color: #55d2e7; }
.authorize-visual i:nth-child(3) { top: 18px; right: 3px; width: 33px; height: 73px; }

.unify-visual i {
  position: absolute;
  width: 65px;
  height: 65px;
  border: 2px solid #7179d6;
  background: rgba(255, 255, 255, 0.62);
  transform: rotate(30deg) skewY(-30deg) scaleY(0.86);
}

.unify-visual i:nth-child(1) { top: 5px; left: 34px; }
.unify-visual i:nth-child(2) { top: 34px; left: 11px; border-color: #55d2e7; }
.unify-visual i:nth-child(3) { top: 34px; right: 11px; }
.unify-visual i:nth-child(4) { top: 47px; left: 34px; border-color: #8d8aea; }

.measure-visual {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
}

.measure-visual i {
  width: 13px;
  height: 52px;
  border: 2px solid #7179d6;
  border-radius: 10px;
  position: relative;
}

.measure-visual i:nth-child(2),
.measure-visual i:nth-child(4) {
  height: 77px;
}

.measure-visual i::after {
  content: "";
  position: absolute;
  left: 2px;
  bottom: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #55d2e7;
}

.optimize-visual i {
  position: absolute;
  width: 47px;
  height: 47px;
  border: 2px solid #7179d6;
  transform: rotate(30deg) skewY(-30deg) scaleY(0.86);
}

.optimize-visual i:nth-child(1) { top: 6px; left: 41px; }
.optimize-visual i:nth-child(2) { top: 44px; left: 15px; border-color: #55d2e7; }
.optimize-visual i:nth-child(3) { top: 44px; right: 15px; }

.integration-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 65% 40%, rgba(102, 209, 233, 0.13), transparent 29%),
    radial-gradient(circle at 84% 70%, rgba(233, 142, 212, 0.09), transparent 23%),
    #f7faff;
}

.integration-section::before {
  content: "";
  position: absolute;
  inset: 15% -20% -15% 15%;
  border: 1px solid rgba(83, 112, 181, 0.06);
  border-radius: 48%;
  transform: rotate(-15deg);
}

.integration-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 70px;
}

.integration-heading .section-label::after {
  margin-left: 0;
}

.integration-heading > div > p:last-child {
  margin-left: 0;
}

.integration-board {
  min-height: 760px;
  position: relative;
  z-index: 1;
  margin-top: 70px;
  display: grid;
  grid-template-columns: 1.05fr 0.78fr 0.9fr;
  grid-template-rows: 360px 310px;
  gap: 15px;
}

.integration-card {
  position: relative;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.96);
  border-radius: 21px;
  background: rgba(255, 255, 255, 0.73);
  box-shadow: var(--soft-shadow);
}

.integration-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.integration-card p,
.integration-card small {
  color: var(--muted);
  font-size: 9px;
  line-height: 1.65;
}

.architecture-card {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
}

.architecture-card > small {
  position: relative;
  z-index: 1;
  color: #7984b5;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.architecture-card h3 {
  position: relative;
  z-index: 1;
  margin-top: auto;
  font-size: 35px;
}

.architecture-card p {
  position: relative;
  z-index: 1;
  max-width: 290px;
  margin: 12px 0 0;
}

.architecture-mark {
  width: 250px;
  height: 250px;
  position: relative;
  margin: 90px auto 0;
  transform: rotate(30deg) skewY(-30deg) scaleY(0.86);
}

.architecture-mark i {
  position: absolute;
  width: 92px;
  height: 92px;
  border: 3px solid #6f77d4;
  background: rgba(255, 255, 255, 0.2);
}

.architecture-mark i:nth-child(1) { top: 0; left: 79px; border-color: #55d5e9; }
.architecture-mark i:nth-child(2) { top: 79px; left: 0; }
.architecture-mark i:nth-child(3) { top: 79px; right: 0; }
.architecture-mark i:nth-child(4) { bottom: 0; left: 79px; border-color: #55d5e9; }
.architecture-mark i:nth-child(5) { top: 79px; left: 79px; border-color: #8b82e9; }
.architecture-mark i:nth-child(6) { top: 115px; left: 115px; width: 20px; height: 20px; background: var(--violet); }

.source-card,
.template-card {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.source-orb {
  width: 165px;
  height: 165px;
  margin-bottom: 23px;
  position: relative;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle at center, transparent 0 6px, rgba(255, 255, 255, 0.35) 7px 8px),
    radial-gradient(circle, #ffc4eb 0, #8d79ee 48%, #69dfec 100%);
  box-shadow: 0 23px 50px rgba(110, 104, 223, 0.2);
}

.source-orb::before {
  content: "";
  position: absolute;
  inset: 28px;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.18));
}

.source-orb span {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(66, 61, 161, 0.3);
}

.source-card p,
.template-card p,
.regions-card p {
  margin: 8px 0 0;
}

.template-icons {
  width: 215px;
  margin-bottom: 45px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.template-icons i {
  width: 53px;
  height: 53px;
  border: 3px solid #737bd4;
  border-radius: 10px;
  position: relative;
}

.template-icons i::before,
.template-icons i::after {
  content: "";
  position: absolute;
  background: currentColor;
}

.template-icons i::before {
  width: 3px;
  top: 0;
  bottom: 0;
  left: 19px;
}

.template-icons i::after {
  height: 3px;
  top: 19px;
  left: 0;
  right: 0;
}

.template-icons .active {
  width: 69px;
  height: 69px;
  border-color: var(--cyan);
  box-shadow: 0 0 0 8px rgba(84, 214, 233, 0.08);
}

.flow-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.flow-rows {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.flow-rows div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.flow-rows span {
  color: #7d89ae;
  font-size: 8px;
}

.flow-rows i {
  width: var(--w);
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
  box-shadow: 0 4px 12px rgba(98, 111, 220, 0.15);
}

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

.regions-card {
  display: flex;
  align-items: center;
  gap: 22px;
}

.regions-card > span {
  font-family: var(--display);
  font-size: 96px;
  font-weight: 500;
  letter-spacing: -0.08em;
  background: linear-gradient(180deg, var(--cyan), var(--violet));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.integration-note {
  position: relative;
  z-index: 1;
  margin-top: 35px;
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-top: 1px solid var(--line);
}

.integration-note p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.integration-note a,
.text-link {
  display: inline-flex;
  gap: 25px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--line-strong);
  color: var(--ink);
  font-size: 10px;
  font-weight: 700;
}

.performance-section {
  background: #f1f5ff;
}

.metric-cards {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
}

.metric-card {
  min-height: 250px;
  position: relative;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.98);
  border-radius: 20px;
  background:
    radial-gradient(circle at 85% 0, rgba(87, 216, 235, 0.15), transparent 35%),
    rgba(255, 255, 255, 0.72);
  box-shadow: var(--soft-shadow);
}

.metric-card:nth-child(even) {
  background:
    radial-gradient(circle at 85% 0, rgba(234, 142, 211, 0.14), transparent 35%),
    rgba(255, 255, 255, 0.72);
}

.metric-card > span {
  color: #7b86b3;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.metric-card strong {
  align-self: flex-end;
  font-family: var(--display);
  font-size: 88px;
  font-weight: 500;
  letter-spacing: -0.08em;
  line-height: 0.8;
  background: linear-gradient(180deg, #696ed0, rgba(101, 110, 208, 0.18));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.metric-card small {
  color: var(--muted);
  font-size: 9px;
}

.performance-disclaimer {
  margin: 29px 0 0;
  color: #8d98b6;
  font-size: 9px;
  text-align: center;
}

.product-section {
  min-height: 980px;
  position: relative;
  isolation: isolate;
  padding: 145px max(32px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 70px;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 45%, rgba(91, 218, 236, 0.13), transparent 25%),
    radial-gradient(circle at 95% 25%, rgba(240, 140, 210, 0.12), transparent 24%),
    #2c3265;
  color: #fff;
}

.product-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.3;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
}

.product-glow {
  position: absolute;
  z-index: -1;
  width: 500px;
  height: 500px;
  top: 25%;
  left: -260px;
  border-radius: 50%;
  background: #6878e8;
  filter: blur(130px);
  opacity: 0.22;
}

.section-label.light {
  color: rgba(224, 228, 255, 0.67);
}

.section-label.light::after {
  margin-left: 0;
}

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

.growth-logo {
  margin-bottom: 29px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
}

.growth-logo span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--cyan), #7c74ea);
  box-shadow: 0 10px 25px rgba(63, 213, 235, 0.18);
}

.product-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(49px, 5.5vw, 76px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.product-copy > p:not(.section-label) {
  margin: 25px 0 0;
  color: rgba(226, 231, 255, 0.69);
  font-size: 12px;
  line-height: 1.75;
}

.product-copy ul {
  margin: 35px 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.product-copy li {
  min-height: 50px;
  display: flex;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(239, 242, 255, 0.8);
  font-size: 10px;
}

.product-copy li span {
  color: var(--cyan);
  font-size: 8px;
}

.button-light {
  background: #fff;
  box-shadow: 0 13px 30px rgba(9, 19, 58, 0.18);
  color: #5e64bf;
}

.product-console {
  width: 760px;
  min-height: 590px;
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 7px solid rgba(255, 255, 255, 0.86);
  border-radius: 21px;
  background: #f7f9ff;
  box-shadow: 0 45px 90px rgba(10, 17, 53, 0.29);
  transform: perspective(1500px) rotateY(-5deg) rotateX(2deg);
}

.console-bar {
  min-height: 57px;
  padding: 0 18px;
  display: grid;
  grid-template-columns: 150px 1fr auto;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid rgba(74, 91, 146, 0.09);
  background: #fff;
  color: var(--ink);
}

.console-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
}

.console-logo i {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: linear-gradient(145deg, var(--cyan), var(--violet));
}

.console-search {
  padding: 9px 12px;
  border-radius: 8px;
  background: #f4f6fc;
  color: #a0a8c0;
  font-size: 7px;
}

.console-bar > span {
  color: #8f99b7;
  font-size: 7px;
}

.console-body {
  min-height: 526px;
  display: grid;
  grid-template-columns: 117px 1fr;
  color: var(--ink);
}

.console-body > .console-sidebar {
  padding: 23px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-right: 1px solid rgba(74, 91, 146, 0.08);
  background: rgba(255, 255, 255, 0.5);
}

.console-body > .console-sidebar span {
  min-height: 31px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  border-radius: 7px;
  color: #919bb8;
  font-size: 7px;
}

.console-body > .console-sidebar .is-active {
  background: #ecefff;
  color: var(--violet);
  font-weight: 700;
}

.console-content {
  padding: 24px;
}

.console-title strong {
  font-size: 16px;
}

.console-title > span {
  padding: 8px 11px;
  border-radius: 8px;
  background: linear-gradient(145deg, #7774ec, #625fd8);
  color: #fff;
  font-size: 7px;
}

.console-tabs {
  margin-top: 23px;
  display: flex;
  gap: 6px;
  border-bottom: 1px solid var(--line);
}

.console-tab {
  padding: 0 12px 11px;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: #9ca6c0;
  cursor: pointer;
  font-size: 7px;
}

.console-tab.is-active {
  border-color: var(--violet);
  color: var(--violet);
  font-weight: 700;
}

.console-panel {
  padding-top: 17px;
}

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

.console-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.console-stats article {
  min-height: 81px;
  padding: 13px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  border: 1px solid rgba(76, 94, 151, 0.08);
  border-radius: 10px;
  background: #fff;
}

.console-stats strong {
  font-size: 16px;
}

.console-chart {
  min-height: 242px;
  margin-top: 9px;
  padding: 17px;
  border: 1px solid rgba(76, 94, 151, 0.08);
  border-radius: 10px;
  background: #fff;
}

.console-chart-head {
  font-size: 8px;
}

.console-chart-head small {
  color: #a0aac3;
  font-size: 7px;
}

.console-bars {
  height: 170px;
  margin-top: 20px;
  padding-top: 10px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  border-bottom: 1px solid var(--line);
  background: repeating-linear-gradient(to bottom, transparent 0 39px, rgba(91, 109, 165, 0.07) 40px);
}

.console-bars i {
  flex: 1;
  height: var(--bar);
  transform-origin: bottom;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, var(--violet), #a4a1f0);
  animation: bars-in 800ms cubic-bezier(0.22, 0.8, 0.2, 1) both;
}

.console-bars i:nth-child(3n) {
  background: linear-gradient(180deg, var(--cyan), #99e8f0);
}

.creative-list,
.operation-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.creative-list article,
.operation-list article {
  min-height: 82px;
  padding: 11px;
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: center;
  gap: 13px;
  border: 1px solid rgba(76, 94, 151, 0.08);
  border-radius: 11px;
  background: #fff;
}

.creative-thumb {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: #fff;
  font-size: 8px;
}

.thumb-a { background: linear-gradient(145deg, #715ee1, #f08ccb); }
.thumb-b { background: linear-gradient(145deg, #42cfe5, #6e73e3); }
.thumb-c { background: linear-gradient(145deg, #ffae8a, #ef7fc1); }

.creative-list article > div,
.operation-list article > div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.creative-list strong,
.operation-list strong {
  font-size: 9px;
}

.creative-list small,
.operation-list small,
.operation-list time {
  color: #9da7c0;
  font-size: 7px;
}

.creative-list b {
  color: var(--violet);
  font-size: 10px;
}

.state {
  width: 52px;
  padding: 6px;
  border-radius: 7px;
  font-size: 7px;
  text-align: center;
}

.state.done { background: #e9f7f0; color: #43a376; }
.state.review { background: #fff1eb; color: #d8825b; }
.state.active { background: #ecefff; color: var(--violet); }

.api-section {
  background:
    radial-gradient(circle at 15% 30%, rgba(87, 215, 234, 0.08), transparent 24%),
    #fbfcff;
}

.api-heading {
  display: grid;
  grid-template-columns: 1fr 0.58fr;
  gap: 70px;
  align-items: end;
}

.api-heading .section-label {
  grid-column: 1 / -1;
  margin-bottom: -35px;
}

.api-heading .section-label::after {
  margin-left: 0;
}

.api-heading > p:last-child {
  margin: 0;
}

.api-layout {
  margin-top: 70px;
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 14px;
}

.api-flow-card {
  min-height: 570px;
  padding: 31px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.96);
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0, rgba(93, 216, 235, 0.15), transparent 35%),
    #f2f6ff;
  box-shadow: var(--soft-shadow);
}

.api-flow-card > small {
  color: #7e89b5;
  font-size: 8px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.api-flow {
  margin: auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.api-flow span {
  padding: 10px 12px;
  border: 1px solid rgba(96, 112, 170, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  color: #717caf;
  font-size: 8px;
  box-shadow: 0 7px 17px rgba(82, 98, 151, 0.06);
}

.api-flow i {
  color: var(--violet);
  font-style: normal;
}

.api-flow-card > p {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.75;
}

.api-rule {
  margin-top: 23px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 13px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.76);
}

.api-rule span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: #e5f7ef;
  color: var(--green);
}

.api-rule strong {
  font-size: 10px;
}

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

.api-principles article {
  min-height: 278px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.96);
  border-radius: 20px;
  background: rgba(244, 247, 255, 0.74);
  box-shadow: 0 14px 35px rgba(82, 99, 151, 0.07);
}

.api-principles article > span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(94, 112, 171, 0.1);
  border-radius: 10px;
  background: #fff;
  color: var(--violet);
  font-size: 8px;
}

.api-principles h3 {
  margin: 0 0 9px;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.api-principles p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.7;
}

.metric-dictionary {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 7px;
}

.metric-dictionary span {
  min-height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.96);
  border-radius: 11px;
  background: #f2f5ff;
  color: #7884b0;
  font-size: 8px;
  font-weight: 700;
  box-shadow: 0 7px 18px rgba(82, 98, 151, 0.05);
}

.company-section {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 90px;
  background:
    radial-gradient(circle at 0 100%, rgba(80, 213, 233, 0.14), transparent 28%),
    radial-gradient(circle at 100% 0, rgba(236, 140, 211, 0.1), transparent 26%),
    #eef4ff;
}

.company-intro .section-label::after {
  margin-left: 0;
}

.company-intro > p:not(.section-label) {
  margin-left: 0;
}

.text-link {
  margin-top: 30px;
}

.company-facts {
  margin: 0;
  border-top: 1px solid var(--line-strong);
}

.company-facts div {
  min-height: 94px;
  padding: 19px 0;
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 25px;
  align-items: center;
  border-bottom: 1px solid var(--line-strong);
}

.company-facts dt {
  color: #8995b8;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.company-facts dd {
  margin: 0;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.faq-section {
  background: #fafbff;
}

.faq-list {
  max-width: 900px;
  margin: 70px auto 0;
  border-top: 1px solid var(--line-strong);
}

.faq-list details {
  border-bottom: 1px solid var(--line-strong);
}

.faq-list summary {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  cursor: pointer;
  list-style: none;
  color: var(--ink);
  font-family: var(--display);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  position: relative;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #f3f5ff;
}

.faq-list summary span::before,
.faq-list summary span::after {
  content: "";
  position: absolute;
  top: 16px;
  left: 10px;
  width: 12px;
  height: 1px;
  background: var(--violet);
  transition: transform 180ms ease;
}

.faq-list summary span::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: rotate(0deg);
}

.faq-list details p {
  max-width: 750px;
  margin: -5px 0 29px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

.final-cta {
  min-height: 760px;
  position: relative;
  isolation: isolate;
  padding: 120px 32px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 55%, rgba(78, 214, 234, 0.18), transparent 23%),
    radial-gradient(circle at 75% 30%, rgba(237, 141, 210, 0.16), transparent 23%),
    #2b3163;
  color: #fff;
  text-align: center;
}

.final-cta::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 760px;
  height: 760px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  box-shadow:
    0 0 0 110px rgba(255, 255, 255, 0.02),
    0 0 0 220px rgba(255, 255, 255, 0.015);
}

.final-cta .section-label::after {
  margin-left: auto;
}

.final-cta h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(55px, 7.3vw, 100px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.065em;
}

.final-cta > p:not(.section-label) {
  max-width: 620px;
  margin: 26px 0 0;
  color: rgba(230, 235, 255, 0.67);
  font-size: 13px;
  line-height: 1.75;
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.site-footer {
  overflow: hidden;
  background: #252b58;
  color: #fff;
}

.footer-marquee {
  width: max-content;
  min-height: 79px;
  padding: 0 30px;
  display: flex;
  align-items: center;
  gap: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(227, 231, 255, 0.65);
  font-size: 12px;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}

.footer-marquee i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
}

.footer-main {
  padding: 75px max(32px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: 1.5fr 0.55fr 0.55fr;
  gap: 60px;
}

.brand-footer {
  color: #fff;
}

.footer-main > div > p {
  max-width: 380px;
  margin: 24px 0 0;
  color: rgba(222, 227, 253, 0.56);
  font-size: 12px;
  line-height: 1.7;
}

.footer-main nav {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 13px;
}

.footer-main nav strong {
  margin-bottom: 8px;
  color: rgba(228, 233, 255, 0.89);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-main nav a {
  color: rgba(220, 225, 251, 0.58);
  font-size: 10px;
}

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

.footer-bottom {
  min-height: 67px;
  padding: 0 max(32px, calc((100vw - 1180px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(213, 219, 248, 0.42);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.motion-ready .reveal {
  opacity: 0;
  filter: blur(7px);
  transform: translateY(36px) scale(0.985);
  transition:
    opacity 780ms cubic-bezier(0.22, 0.75, 0.2, 1),
    filter 780ms cubic-bezier(0.22, 0.75, 0.2, 1),
    transform 920ms cubic-bezier(0.16, 0.8, 0.18, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

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

.scroll-progress {
  position: fixed;
  z-index: 120;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  pointer-events: none;
}

.scroll-progress span {
  width: 100%;
  height: 100%;
  display: block;
  background: linear-gradient(90deg, var(--cyan), var(--violet), var(--pink));
  box-shadow: 0 0 12px rgba(93, 215, 234, 0.48);
  transform: scaleX(var(--page-progress, 0));
  transform-origin: left center;
  will-change: transform;
}

[data-parallax] {
  translate: 0 var(--parallax-y, 0);
  will-change: translate;
}

[data-motion-section] {
  --section-shift: 0px;
  scroll-margin-top: 90px;
}

.site-header {
  transition:
    width 240ms ease,
    box-shadow 240ms ease,
    background 320ms ease,
    border-color 320ms ease,
    color 320ms ease,
    transform 700ms cubic-bezier(0.16, 0.8, 0.18, 1),
    opacity 500ms ease;
}

.motion-ready:not(.page-ready) .site-header {
  opacity: 0;
  transform: translate(-50%, -24px) scale(0.96);
}

.site-header[data-theme="dark"] {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(39, 45, 92, 0.78);
  box-shadow: 0 18px 44px rgba(10, 16, 49, 0.22);
}

.site-header[data-theme="dark"] .brand {
  color: #f2f4ff;
}

.site-header[data-theme="dark"] .menu-button {
  background: rgba(255, 255, 255, 0.08);
}

.site-header[data-theme="dark"] .menu-button span {
  background: #dfe4ff;
}

.site-header[data-theme="dark"] .site-nav a {
  color: rgba(237, 240, 255, 0.82);
}

.site-header[data-theme="dark"] .site-nav a:hover,
.site-header[data-theme="dark"] .site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.menu-button:focus-visible,
.header-launch:focus-visible,
.button:focus-visible {
  outline: 2px solid rgba(79, 214, 235, 0.82);
  outline-offset: 3px;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    circle 240px at var(--pointer-x, 50%) var(--pointer-y, 30%),
    rgba(117, 126, 231, 0.075),
    transparent 72%
  );
  transition: background-position 160ms ease;
}

.hero-line {
  display: block;
  overflow: hidden;
}

.hero-line > span {
  display: inline-block;
  transform-origin: center bottom;
}

.motion-ready:not(.page-ready) .status-pill {
  opacity: 0;
  transform: translateY(16px) scale(0.92);
}

.motion-ready:not(.page-ready) .hero-line > span {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(110%) rotate(1.8deg);
}

.motion-ready:not(.page-ready) .hero-summary,
.motion-ready:not(.page-ready) .hero-copy .hero-actions {
  opacity: 0;
  transform: translateY(24px);
}

.motion-ready .status-pill,
.motion-ready .hero-line > span,
.motion-ready .hero-summary,
.motion-ready .hero-copy .hero-actions {
  transition:
    opacity 800ms cubic-bezier(0.16, 0.8, 0.18, 1),
    filter 900ms cubic-bezier(0.16, 0.8, 0.18, 1),
    transform 1000ms cubic-bezier(0.16, 0.8, 0.18, 1);
}

.motion-ready .hero-line:nth-child(2) > span {
  transition-delay: 90ms;
}

.motion-ready .hero-summary {
  transition-delay: 190ms;
}

.motion-ready .hero-copy .hero-actions {
  transition-delay: 270ms;
}

.motion-ready .hero-stage {
  transition-delay: 260ms;
}

.chart-line {
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
}

.page-ready .chart-line {
  animation: draw-line 1700ms 520ms cubic-bezier(0.2, 0.75, 0.2, 1) forwards;
}

.page-ready .chart-fill {
  animation: chart-fill-in 1300ms 760ms ease both;
}

.page-ready .dashboard-metrics article {
  animation: metric-pop 650ms cubic-bezier(0.17, 0.86, 0.25, 1) both;
}

.page-ready .dashboard-metrics article:nth-child(1) { animation-delay: 520ms; }
.page-ready .dashboard-metrics article:nth-child(2) { animation-delay: 610ms; }
.page-ready .dashboard-metrics article:nth-child(3) { animation-delay: 700ms; }

.capability-track,
.footer-marquee {
  will-change: transform;
}

.capability-band:hover .capability-track,
.footer-marquee:hover {
  animation-play-state: paused;
}

.feature-card.reveal,
.process-card.reveal,
.metric-card.reveal,
.api-principles article.reveal {
  transform: translateY(42px) scale(0.955);
}

.feature-card.reveal.is-visible,
.process-card.reveal.is-visible,
.metric-card.reveal.is-visible,
.api-principles article.reveal.is-visible {
  transform: translateY(0) scale(1);
}

.feature-card,
.process-card,
.integration-card,
.metric-card {
  transition:
    border-color 260ms ease,
    box-shadow 360ms ease,
    translate 360ms cubic-bezier(0.16, 0.8, 0.18, 1);
}

.feature-card:hover,
.process-card:hover,
.integration-card:hover,
.metric-card:hover {
  border-color: rgba(117, 124, 217, 0.2);
  box-shadow: 0 28px 68px rgba(82, 95, 153, 0.15);
  translate: 0 -7px;
}

.mini-bars i,
.console-bars i {
  transform: scaleY(0);
  transform-origin: bottom;
}

.feature-card.is-visible .mini-bars i,
.product-console.is-visible .console-bars i {
  animation: bars-in 800ms cubic-bezier(0.22, 0.8, 0.2, 1) forwards;
  animation-delay: calc(320ms + var(--bar-index, 0) * 55ms);
}

.creative-orbit {
  animation: orbit-breathe 7s ease-in-out infinite;
}

.creative-orbit::before {
  animation: orbit-spin 24s linear infinite;
}

.source-orb {
  animation: orb-float 6s ease-in-out infinite;
}

.architecture-mark {
  animation: architecture-float 8s ease-in-out infinite;
}

.gauge-ring,
.donut {
  animation: ring-float 6.5s ease-in-out infinite;
}

.features-section::after,
.process-section::after,
.integration-section::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: 720px;
  height: 330px;
  pointer-events: none;
  border-radius: 46% 54% 64% 36% / 45% 43% 57% 55%;
  background:
    radial-gradient(circle at 30% 45%, rgba(80, 216, 234, 0.17), transparent 52%),
    radial-gradient(circle at 70% 55%, rgba(117, 108, 233, 0.12), transparent 54%);
  filter: blur(26px);
  opacity: 0.78;
  translate: 0 var(--section-shift);
  transform: rotate(-12deg);
  will-change: translate;
}

.features-section::after {
  top: 18%;
  right: -340px;
}

.process-section::after {
  top: 35%;
  left: -380px;
  transform: rotate(24deg);
}

.integration-section::after {
  bottom: 8%;
  right: -290px;
  transform: rotate(-28deg);
}

.features-section > *,
.process-section > *,
.integration-section > * {
  position: relative;
  z-index: 1;
}

.performance-progress {
  width: min(540px, 68vw);
  height: 2px;
  margin: 24px auto 0;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(93, 111, 170, 0.12);
}

.performance-progress span {
  width: 100%;
  height: 100%;
  display: block;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
  transform: scaleX(var(--track-progress, 0));
  transform-origin: left center;
  will-change: transform;
}

.product-console,
.product-copy,
.api-flow-card,
.company-facts,
.faq-list {
  will-change: transform, opacity;
}

.final-cta .cta-glow {
  position: absolute;
  z-index: -1;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79, 215, 235, 0.23), rgba(116, 108, 232, 0.1) 42%, transparent 72%);
  filter: blur(30px);
}

@media (min-width: 901px) {
  .performance-section {
    min-height: 245vh;
    padding: 0;
  }

  .performance-sticky {
    min-height: 100vh;
    position: sticky;
    top: 0;
    padding: 94px max(32px, calc((100vw - 1180px) / 2)) 45px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
  }

  .performance-sticky .section-heading h2 {
    font-size: clamp(42px, 4.3vw, 64px);
  }

  .performance-sticky .section-heading > p:last-child {
    margin-top: 16px;
  }

  .metric-viewport {
    width: 100%;
    margin-top: 42px;
    overflow: visible;
  }

  .metric-cards {
    width: max-content;
    margin-top: 0;
    display: flex;
    gap: 14px;
    transform: translate3d(var(--track-x, 0), 0, 0);
    will-change: transform;
  }

  .metric-card {
    width: clamp(270px, 25vw, 340px);
    min-height: 228px;
    flex: 0 0 auto;
  }

  .performance-disclaimer {
    margin-top: 17px;
  }
}

@keyframes draw-line {
  to { stroke-dashoffset: 0; }
}

@keyframes chart-fill-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes metric-pop {
  from { opacity: 0; transform: translateY(16px) scale(0.94); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes orbit-breathe {
  0%, 100% { transform: scale(0.98) rotate(-1deg); }
  50% { transform: scale(1.025) rotate(1deg); }
}

@keyframes orbit-spin {
  to { rotate: 360deg; }
}

@keyframes orb-float {
  0%, 100% { transform: translateY(-5px) scale(0.98); }
  50% { transform: translateY(8px) scale(1.025); }
}

@keyframes architecture-float {
  0%, 100% { translate: 0 -5px; }
  50% { translate: 0 9px; }
}

@keyframes ring-float {
  0%, 100% { translate: 0 -4px; }
  50% { translate: 0 6px; }
}

.legal-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 85% 0, rgba(98, 213, 233, 0.11), transparent 23%),
    #f5f8ff;
}

.legal-header {
  position: relative;
  top: auto;
  margin-top: 18px;
}

.legal-header .header-cta {
  grid-column: 3;
  padding: 10px 13px;
  border-radius: 11px;
  background: linear-gradient(145deg, #7774ec, #625ed7);
  color: #fff;
  font-size: 8px;
  white-space: nowrap;
}

.legal-header .brand-mark {
  width: 20px;
  height: 20px;
}

.legal-header .brand-mark i:only-child {
  width: 18px;
  height: 20px;
  transform: skewX(-12deg);
}

.legal-header .brand-name {
  letter-spacing: -0.04em;
}

.legal-main {
  width: var(--page);
  margin: 0 auto;
  padding: 80px 0 120px;
}

.legal-document {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(32px, 6vw, 74px);
  border: 1px solid rgba(255, 255, 255, 0.96);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.legal-document h1 {
  margin: 0 0 18px;
  font-family: var(--display);
  font-size: clamp(47px, 6vw, 76px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.06em;
}

.legal-document .eyebrow {
  color: #7681b2;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.legal-updated {
  margin-bottom: 52px !important;
  color: var(--violet) !important;
  font-size: 9px !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-document h2 {
  margin: 46px 0 14px;
  color: var(--ink-strong);
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.legal-document p,
.legal-document li {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.legal-document li {
  margin-bottom: 8px;
}

.legal-document a {
  color: var(--violet-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-back {
  margin-bottom: 42px;
  display: inline-flex;
  color: #8792b4;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none !important;
  text-transform: uppercase;
}

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

@keyframes status-edge-chase {
  to { --status-angle: 380deg; }
}

@keyframes bars-in {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}

@media (min-width: 900px) {
  .site-header.menu-open {
    width: min(760px, calc(100vw - 36px));
  }

  .site-header.menu-open .site-nav {
    position: static;
    width: auto;
    padding: 0;
    display: flex;
    gap: 2px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-header.menu-open .site-nav a {
    min-height: 38px;
    padding: 0 8px;
    font-size: 9px;
  }
}

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

  .hero-stage {
    width: min(940px, calc(100vw - 40px));
  }

  .dashboard-shell {
    width: min(880px, calc(100vw - 70px));
  }

  .hero-prompt {
    left: 0;
  }

  .floating-score {
    right: 0;
  }

  .floating-report {
    right: 0;
  }

  .product-section {
    grid-template-columns: 1fr;
    gap: 80px;
  }

  .product-copy {
    max-width: 680px;
  }

  .product-console {
    width: min(900px, calc(100vw - 64px));
    justify-self: center;
    transform: none;
  }
}

@media (max-width: 900px) {
  :root {
    --page: calc(100vw - 40px);
  }

  .site-header {
    width: min(500px, calc(100vw - 28px));
  }

  .site-header .site-nav {
    position: fixed;
    top: 91px;
    left: 50%;
    width: min(500px, calc(100vw - 28px));
    padding: 12px;
    display: grid;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -10px);
  }

  .site-header.menu-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }

  .header-launch:hover,
  .header-launch:focus-visible {
    width: 42px;
  }

  .header-launch:hover .launch-label,
  .header-launch:focus-visible .launch-label {
    display: none;
  }

  .hero {
    min-height: 1110px;
    padding-top: 132px;
  }

  .hero h1 {
    font-size: clamp(53px, 10vw, 76px);
  }

  .brand-inline {
    width: 48px;
    height: 50px;
  }

  .brand-inline i {
    width: 12px;
  }

  .brand-inline i:nth-child(1) { height: 30px; }
  .brand-inline i:nth-child(2) { height: 40px; }
  .brand-inline i:nth-child(3) { height: 49px; }

  .hero-stage {
    height: 570px;
  }

  .dashboard-shell {
    height: 510px;
    grid-template-columns: 50px 1fr;
  }

  .dashboard-sidebar {
    padding-left: 7px;
    padding-right: 7px;
  }

  .dashboard-main {
    padding: 20px;
  }

  .hero-prompt,
  .floating-card {
    display: none;
  }

  .feature-mosaic {
    grid-template-columns: 1fr;
  }

  .feature-tall {
    grid-row: auto;
    min-height: 650px;
  }

  .creative-orbit {
    margin-top: 40px;
  }

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

  .integration-heading,
  .api-heading,
  .company-section {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .integration-board {
    min-height: auto;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .architecture-card {
    grid-row: span 2;
    min-height: 650px;
  }

  .integration-card {
    min-height: 310px;
  }

  .regions-card {
    grid-column: 2;
  }

  .api-heading .section-label {
    margin-bottom: 0;
  }

  .api-layout {
    grid-template-columns: 1fr;
  }

  .api-flow-card {
    min-height: 460px;
  }

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

@media (max-width: 680px) {
  :root {
    --page: calc(100vw - 30px);
  }

  .site-header {
    top: 10px;
    height: 58px;
    padding-left: 15px;
    border-radius: 17px;
  }

  .brand {
    font-size: 18px;
  }

  .brand-mark {
    width: 20px;
    height: 21px;
  }

  .brand-mark i {
    width: 5px;
  }

  .brand-mark i:nth-child(1) { height: 12px; }
  .brand-mark i:nth-child(2) { height: 17px; }
  .brand-mark i:nth-child(3) { height: 21px; }

  .site-header .site-nav {
    top: 77px;
  }

  .hero {
    min-height: 960px;
    padding-top: 112px;
  }

  .status-pill {
    margin-bottom: 22px;
    font-size: 7px;
  }

  .status-pill > span {
    width: 25px;
    height: 25px;
  }

  .hero h1 {
    font-size: clamp(44px, 12.8vw, 62px);
    line-height: 1.05;
    letter-spacing: -0.06em;
  }

  .brand-inline {
    width: 36px;
    height: 37px;
    gap: 3px;
  }

  .brand-inline i {
    width: 9px;
  }

  .brand-inline i:nth-child(1) { height: 22px; }
  .brand-inline i:nth-child(2) { height: 30px; }
  .brand-inline i:nth-child(3) { height: 37px; }

  .hero-summary {
    padding: 0 6px;
    font-size: 12px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
    justify-content: space-between;
  }

  .hero-stage {
    width: calc(100vw - 20px);
    height: 430px;
    margin-top: 52px;
  }

  .dashboard-shell {
    width: calc(100vw - 30px);
    height: 420px;
    grid-template-columns: 38px 1fr;
    border-width: 5px;
    border-radius: 16px 16px 9px 9px;
    transform: translateX(-50%);
  }

  .dashboard-sidebar {
    padding: 13px 4px;
    gap: 7px;
  }

  .mini-brand {
    width: 26px;
    height: 26px;
    margin-bottom: 8px;
    font-size: 8px;
  }

  .side-item {
    width: 27px;
    height: 27px;
    font-size: 9px;
  }

  .dashboard-main {
    padding: 14px;
    overflow: hidden;
  }

  .dashboard-top strong {
    font-size: 12px;
  }

  .dashboard-controls span {
    display: none;
  }

  .dashboard-metrics {
    margin-top: 14px;
    gap: 5px;
  }

  .dashboard-metrics article {
    min-height: 70px;
    padding: 9px 7px;
    gap: 5px;
  }

  .dashboard-metrics strong {
    font-size: 12px;
  }

  .dashboard-metrics small,
  .dashboard-metrics span {
    font-size: 6px;
  }

  .dashboard-grid {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .analytics-card {
    min-height: 240px;
    padding: 12px;
  }

  .mix-card {
    display: none;
  }

  .chart-area {
    height: 180px;
  }

  .chart-area svg {
    height: 155px;
  }

  .capability-band {
    margin-top: 62px;
  }

  .capability-band > p {
    padding: 0 20px;
    line-height: 1.7;
  }

  .section,
  .product-section {
    padding: 95px 15px;
  }

  .section-heading h2,
  .integration-heading h2,
  .api-heading h2,
  .company-intro h2 {
    font-size: clamp(41px, 12vw, 56px);
    line-height: 1.06;
  }

  .section-heading > p:last-child,
  .integration-heading > div > p:last-child,
  .api-heading > p:last-child,
  .company-intro > p:not(.section-label) {
    font-size: 12px;
  }

  .feature-mosaic,
  .process-grid,
  .metric-cards {
    margin-top: 52px;
  }

  .feature-card,
  .feature-wide,
  .feature-square {
    min-height: 455px;
    padding: 21px;
  }

  .feature-tall {
    min-height: 570px;
  }

  .mini-dashboard {
    width: 100%;
    min-height: 270px;
    padding: 15px;
  }

  .mini-bars {
    height: 130px;
    gap: 5px;
  }

  .creative-orbit {
    width: 260px;
    height: 260px;
  }

  .creative-orbit::before { inset: 40px; }
  .creative-orbit::after { inset: 78px; }
  .item-one { top: -4px; left: 92px; }
  .item-two { top: 103px; right: -25px; }
  .item-three { bottom: -4px; left: 91px; }
  .item-four { top: 103px; left: -25px; }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-card {
    min-height: 400px;
  }

  .integration-heading {
    gap: 20px;
  }

  .integration-board {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .architecture-card {
    grid-row: auto;
    min-height: 560px;
  }

  .architecture-mark {
    width: 210px;
    height: 210px;
    margin-top: 70px;
  }

  .architecture-mark i {
    width: 76px;
    height: 76px;
  }

  .architecture-mark i:nth-child(1) { left: 67px; }
  .architecture-mark i:nth-child(2) { top: 67px; }
  .architecture-mark i:nth-child(3) { top: 67px; }
  .architecture-mark i:nth-child(4) { left: 67px; }
  .architecture-mark i:nth-child(5) { top: 67px; left: 67px; }
  .architecture-mark i:nth-child(6) { top: 95px; left: 95px; }

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

  .regions-card {
    grid-column: auto;
  }

  .integration-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .metric-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 9px;
  }

  .metric-card {
    min-height: 200px;
    padding: 19px;
  }

  .metric-card strong {
    font-size: 64px;
  }

  .product-section {
    min-height: auto;
    gap: 65px;
  }

  .product-copy h2 {
    font-size: clamp(46px, 13vw, 61px);
    line-height: 1.04;
  }

  .product-console {
    width: calc(100vw - 30px);
    min-height: 500px;
    border-width: 5px;
    border-radius: 15px;
  }

  .console-bar {
    grid-template-columns: 100px 1fr;
    gap: 8px;
  }

  .console-bar > span {
    display: none;
  }

  .console-body {
    min-height: 445px;
    grid-template-columns: 42px 1fr;
  }

  .console-body > .console-sidebar {
    padding: 13px 5px;
  }

  .console-body > .console-sidebar span {
    min-height: 31px;
    padding: 0;
    overflow: hidden;
    color: transparent;
    font-size: 0;
  }

  .console-body > .console-sidebar span::before {
    content: "";
    width: 20px;
    height: 20px;
    margin: auto;
    border-radius: 6px;
    background: currentColor;
  }

  .console-body > .console-sidebar .is-active::before {
    background: var(--violet);
  }

  .console-content {
    padding: 14px 11px;
  }

  .console-title > span {
    display: none;
  }

  .console-tabs {
    overflow-x: auto;
  }

  .console-stats {
    gap: 4px;
  }

  .console-stats article {
    min-height: 72px;
    padding: 9px 7px;
  }

  .console-stats strong {
    font-size: 11px;
  }

  .console-chart {
    min-height: 230px;
    padding: 12px;
  }

  .console-bars {
    gap: 4px;
  }

  .creative-list article,
  .operation-list article {
    min-height: 74px;
    grid-template-columns: 46px 1fr auto;
  }

  .creative-thumb {
    width: 45px;
    height: 52px;
  }

  .api-principles {
    grid-template-columns: 1fr;
  }

  .api-flow-card {
    min-height: 510px;
    padding: 23px;
  }

  .api-flow {
    align-items: stretch;
    flex-direction: column;
  }

  .api-flow i {
    text-align: center;
    transform: rotate(90deg);
  }

  .api-flow span {
    text-align: center;
  }

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

  .company-facts div {
    min-height: 105px;
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .faq-list {
    margin-top: 50px;
  }

  .faq-list summary {
    min-height: 82px;
    padding: 16px 0;
    font-size: 14px;
  }

  .final-cta {
    min-height: 680px;
    padding: 100px 15px;
  }

  .final-cta h2 {
    font-size: clamp(47px, 13vw, 65px);
    line-height: 1.04;
  }

  .footer-main {
    padding: 65px 15px;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 25px;
  }

  .footer-main > div {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    min-height: 105px;
    padding: 25px 15px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .legal-header {
    width: calc(100vw - 28px);
  }

  .legal-header .header-cta {
    padding: 9px;
    font-size: 0;
  }

  .legal-header .header-cta span {
    font-size: 10px;
  }

  .legal-main {
    padding: 65px 0 95px;
  }

  .legal-document {
    padding: 29px 21px;
    border-radius: 18px;
  }
}

/* Pixel-matched hero spotlight and compact feature bento */
.hero {
  min-height: 1811px;
  background:
    radial-gradient(ellipse 52% 32% at 46% 28%, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0) 72%),
    radial-gradient(ellipse 72% 58% at 76% 34%, rgba(69, 185, 248, 0.26), rgba(69, 185, 248, 0) 68%),
    radial-gradient(ellipse 62% 54% at 28% 40%, rgba(210, 151, 255, 0.3), rgba(210, 151, 255, 0) 66%),
    radial-gradient(ellipse 54% 52% at 52% 58%, rgba(77, 132, 248, 0.38), rgba(77, 132, 248, 0) 67%),
    #f6f9ff;
}

.hero::before {
  height: 1811px;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -2;
  width: 980px;
  height: 620px;
  top: 480px;
  left: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 58% 42% 63% 37% / 48% 59% 41% 52%;
  background:
    radial-gradient(circle at 36% 38%, rgba(233, 183, 255, 0.64), transparent 45%),
    radial-gradient(circle at 74% 52%, rgba(67, 173, 249, 0.65), transparent 52%),
    linear-gradient(132deg, rgba(255, 255, 255, 0.38), rgba(106, 131, 242, 0.25));
  filter: blur(9px);
  opacity: 0.72;
  transform: translateX(-50%) rotate(17deg);
  pointer-events: none;
}

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

.hero .capability-band {
  position: relative;
  z-index: 5;
  margin-top: 70px;
}

.hero-stage {
  width: 100%;
  height: 876px;
  position: absolute;
  z-index: 3;
  top: 735px;
  left: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow: visible;
}

.hero-stage::before {
  inset: -18% 0 -8%;
  border-radius: 0;
  background:
    radial-gradient(ellipse 36% 44% at 24% 49%, rgba(96, 217, 238, 0.18), transparent 66%),
    radial-gradient(ellipse 34% 40% at 82% 36%, rgba(230, 147, 230, 0.18), transparent 64%);
  filter: blur(36px);
}

.dashboard-shell {
  --spotlight-scale: 0.8;
  --spotlight-tilt: 25deg;
  width: min(1185px, calc(100vw - 80px));
  height: 796px;
  position: relative;
  top: 40px;
  left: auto;
  bottom: auto;
  grid-template-columns: 105px 1fr;
  grid-template-rows: 74px 1fr;
  border-width: 8px;
  border-radius: 30px;
  background: rgba(248, 250, 255, 0.98);
  box-shadow:
    0 54px 110px rgba(55, 71, 134, 0.2),
    0 12px 32px rgba(66, 88, 155, 0.1),
    inset 0 1px rgba(255, 255, 255, 0.95);
  transform: perspective(1200px) scale(var(--spotlight-scale)) rotateX(var(--spotlight-tilt));
  transform-origin: 50% 50%;
  will-change: transform;
}

.dashboard-toolbar {
  grid-column: 1 / -1;
  padding: 0 35px;
  display: grid;
  grid-template-columns: 230px minmax(280px, 1fr) auto;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid rgba(81, 99, 157, 0.07);
  background: rgba(255, 255, 255, 0.72);
}

.toolbar-brand,
.toolbar-search,
.toolbar-actions {
  display: flex;
  align-items: center;
}

.toolbar-brand {
  gap: 9px;
  color: #6170bf;
  font-size: 17px;
  letter-spacing: -0.04em;
}

.toolbar-brand .brand-mark {
  width: 28px;
  height: 25px;
}

.toolbar-brand .brand-mark i {
  width: 6px;
}

.toolbar-search {
  gap: 12px;
  color: #7f8aaf;
  font-size: 10px;
}

.toolbar-search i {
  width: 12px;
  height: 12px;
  position: relative;
  border: 1.5px solid #7886d0;
  border-radius: 50%;
}

.toolbar-search i::after {
  content: "";
  width: 5px;
  height: 1.5px;
  position: absolute;
  right: -4px;
  bottom: -2px;
  background: #7886d0;
  transform: rotate(45deg);
}

.toolbar-actions {
  justify-content: flex-end;
  gap: 22px;
}

.toolbar-actions span {
  padding: 11px 24px;
  border-radius: 999px;
  background: linear-gradient(145deg, #7478df, #626ad0);
  box-shadow: 0 9px 20px rgba(98, 106, 205, 0.18);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
}

.toolbar-actions > i {
  width: 28px;
  height: 28px;
  position: relative;
  border: 1px solid rgba(102, 115, 188, 0.18);
  border-radius: 50%;
}

.toolbar-actions > i::after {
  content: "";
  width: 7px;
  height: 7px;
  position: absolute;
  top: -1px;
  right: 0;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #ff9f83;
}

.dashboard-sidebar {
  grid-column: 1;
  grid-row: 2;
  padding: 28px 11px 22px;
  align-items: stretch;
  gap: 13px;
}

.side-item {
  width: auto;
  height: 38px;
  padding: 0 10px;
  display: flex;
  justify-content: flex-start;
  gap: 9px;
  border-radius: 10px;
  color: #6673a5;
  font-size: 9px;
  font-weight: 600;
  white-space: nowrap;
}

.side-item i {
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
  border: 1.5px solid #7b84dc;
  border-radius: 4px;
}

.dashboard-main {
  grid-column: 2;
  grid-row: 2;
  padding: 30px 36px 28px;
  overflow: hidden;
}

.dashboard-top strong {
  font-size: 22px;
}

.dashboard-metrics {
  margin-top: 22px;
  gap: 15px;
}

.dashboard-metrics article {
  min-height: 112px;
  padding: 18px 20px;
  gap: 9px;
  border-radius: 15px;
  opacity: var(--spotlight-content-opacity, 1);
  transform: translateY(var(--spotlight-content-y, 0px));
  transition: transform 140ms linear, opacity 140ms linear;
}

.dashboard-metrics strong {
  font-size: 26px;
}

.dashboard-grid {
  margin-top: 18px;
  grid-template-columns: minmax(0, 1fr) 290px;
  gap: 15px;
}

.analytics-card,
.mix-card {
  min-height: 404px;
  padding: 21px;
  border-radius: 16px;
}

.card-heading strong {
  font-size: 13px;
}

.chart-area {
  height: 312px;
  margin-top: 13px;
  background-size: 100% 46px;
}

.chart-legend {
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 17px;
  color: #7783a9;
  font-size: 8px;
}

.chart-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.chart-legend span i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7378dd;
}

.chart-legend span:nth-child(2) i {
  background: #ff9b7f;
}

.chart-legend small {
  padding: 6px 10px;
  border: 1px solid rgba(102, 118, 176, 0.12);
  border-radius: 999px;
}

.mirror-bars {
  height: 222px;
  padding: 0 9px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(92, 109, 165, 0.08);
}

.mirror-bars > i {
  width: 13px;
  height: 100%;
  position: relative;
  display: block;
}

.mirror-bars > i::before,
.mirror-bars > i::after {
  content: "";
  width: 100%;
  position: absolute;
  left: 0;
  border-radius: 999px;
  transform: scaleY(var(--spotlight-bars-progress, 1));
  transition: transform 160ms linear;
}

.mirror-bars > i::before {
  height: calc(var(--up) / 2);
  bottom: 50%;
  background: linear-gradient(180deg, #7479df, #8a8ee7);
  transform-origin: bottom;
}

.mirror-bars > i::after {
  height: calc(var(--down) / 2);
  top: 50%;
  background: linear-gradient(180deg, #ff9b7f, #ffb097);
  transform-origin: top;
}

.chart-labels {
  margin-top: 8px;
}

.donut {
  width: 190px;
  height: 190px;
  margin-top: 54px;
}

.donut::before {
  width: 95px;
  height: 95px;
}

.donut-callout {
  width: 88px;
  height: 92px;
  position: absolute;
  top: -8px;
  right: -12px;
  display: grid;
  place-items: center;
  border-radius: 15px 52px 15px 52px;
  background: linear-gradient(145deg, #817def, #6567cc);
  box-shadow: 0 15px 28px rgba(86, 87, 184, 0.28);
  color: #fff;
  font-size: 9px;
  font-style: normal;
  line-height: 1.25;
  text-align: center;
}

.hero-prompt {
  top: 362px;
  left: 2.5%;
  width: 225px;
  filter: blur(0.2px);
}

.floating-score {
  top: 82px;
  right: 2.5%;
}

.floating-report {
  right: 2%;
  bottom: 110px;
}

.features-section {
  min-height: 664px;
  padding: 0 max(32px, calc((100% - 1120px) / 2));
  background:
    radial-gradient(circle at 52% 56%, rgba(88, 173, 247, 0.2), transparent 32%),
    radial-gradient(circle at 39% 42%, rgba(220, 156, 244, 0.2), transparent 30%),
    #f7faff;
}

.features-section > .section-heading {
  width: 1px;
  height: 1px;
  position: absolute;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.feature-mosaic {
  height: 664px;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(2, 320px);
  gap: 24px;
}

.feature-card,
.feature-wide,
.feature-tall,
.feature-square {
  min-height: 0;
  padding: 21px;
  grid-row: auto;
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% -15%, rgba(255, 255, 255, 1), transparent 48%),
    rgba(248, 250, 255, 0.82);
  box-shadow: 0 18px 48px rgba(84, 99, 151, 0.07);
}

.feature-wide {
  padding: 0;
  display: grid;
  grid-template-rows: 150px 150px;
  gap: 20px;
  overflow: visible;
  border: 0;
  background: none;
  box-shadow: none;
}

.feature-query,
.feature-wide .mini-dashboard {
  width: 100%;
  min-height: 0;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  background:
    radial-gradient(circle at 60% 20%, rgba(98, 219, 240, 0.12), transparent 38%),
    rgba(249, 251, 255, 0.92);
  box-shadow: 0 15px 34px rgba(83, 99, 151, 0.07);
}

.feature-query {
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-query span {
  width: 230px;
  height: 52px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 23px rgba(73, 87, 148, 0.13);
  color: #6875b6;
  font-size: 13px;
  white-space: nowrap;
}

.feature-query i {
  margin-left: -34px;
  color: #7580df;
  font-size: 18px;
  font-style: normal;
  animation: query-spark 2.8s ease-in-out infinite;
}

.feature-wide .mini-dashboard {
  padding: 13px 15px;
  transform: none;
}

.feature-wide .feature-copy {
  width: 1px;
  height: 1px;
  position: absolute;
  overflow: hidden;
  clip-path: inset(50%);
}

.feature-wide .mini-dash-metrics {
  margin-top: 12px;
}

.feature-wide .mini-dash-metrics > div {
  padding: 8px;
}

.feature-wide .compact-bars {
  height: 44px;
  margin-top: 8px;
  padding-top: 4px;
}

.feature-copy h3 {
  font-size: 20px;
}

.feature-copy p {
  margin-top: 7px;
  font-size: 9px;
  line-height: 1.55;
}

.feature-number {
  width: 26px;
  height: 26px;
  margin-bottom: 10px;
}

.creative-orbit {
  width: 178px;
  height: 178px;
  margin: 14px auto 0;
}

.orbit-center {
  width: 62px;
  height: 62px;
  font-size: 17px;
}

.orbit-item {
  padding: 6px 8px;
  font-size: 7px;
}

.measure-gauge {
  width: 100%;
  margin-top: 0;
  position: relative;
}

.triple-rings {
  width: 178px;
  height: 178px;
  position: relative;
  margin: 0 auto;
  animation: rings-breathe 5.5s ease-in-out infinite;
}

.triple-rings i {
  position: absolute;
  border-radius: 50%;
}

.triple-rings i::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: #f8faff;
}

.triple-rings i:nth-child(1) {
  inset: 0;
  background: conic-gradient(#ff9ed5 0 73%, #eef0f9 73%);
}

.triple-rings i:nth-child(2) {
  inset: 18px;
  background: conic-gradient(#a2a0f2 0 67%, #eef0f9 67%);
}

.triple-rings i:nth-child(3) {
  inset: 36px;
  background: conic-gradient(#73dff0 0 54%, #eef0f9 54%);
}

.ring-values {
  margin-top: 6px;
  display: flex;
  justify-content: center;
  gap: 24px;
  color: #59659f;
}

.ring-values span {
  display: flex;
  align-items: baseline;
  font-size: 12px;
}

.ring-values b {
  font-size: 23px;
  font-weight: 600;
  letter-spacing: -0.05em;
}

.ring-values small {
  margin-left: 4px;
  color: #97a0bd;
  font-size: 7px;
}

.workflow-mini {
  margin-top: 12px;
  gap: 8px;
}

.workflow-mini > div {
  min-height: 43px;
}

.source-map {
  width: 170px;
  height: 170px;
  position: relative;
  margin: 2px auto 0;
  border: 1px solid rgba(107, 119, 191, 0.16);
  border-radius: 50%;
  animation: source-map-spin 22s linear infinite;
}

.source-map::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px dashed rgba(107, 119, 191, 0.18);
  border-radius: 50%;
}

.source-map-center,
.source-map > i {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid rgba(111, 123, 198, 0.15);
  background: rgba(255, 255, 255, 0.94);
  color: #6874bf;
  font-size: 8px;
  font-style: normal;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(74, 88, 145, 0.09);
}

.source-map-center {
  width: 54px;
  height: 54px;
  top: 50%;
  left: 50%;
  border-radius: 17px;
  background: linear-gradient(145deg, #64dcea, #7772e6);
  color: #fff;
  transform: translate(-50%, -50%);
}

.source-map > i {
  width: 42px;
  height: 42px;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-83px) rotate(calc(-1 * var(--angle)));
}

.optimization-sliders {
  height: 178px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.optimization-sliders i {
  width: 28px;
  height: 126px;
  position: relative;
  border: 2px solid #8184de;
  border-radius: 999px;
}

.optimization-sliders i::before {
  content: "";
  width: 14px;
  height: 14px;
  position: absolute;
  left: 5px;
  bottom: var(--level);
  border-radius: 50%;
  background: #6edceb;
  box-shadow: 0 0 0 5px rgba(110, 220, 235, 0.13);
  animation: slider-travel 4s var(--delay) ease-in-out infinite alternate;
}

@keyframes query-spark {
  0%, 100% { transform: scale(0.84) rotate(-12deg); opacity: 0.55; }
  50% { transform: scale(1.18) rotate(10deg); opacity: 1; }
}

@keyframes rings-breathe {
  0%, 100% { transform: scale(0.97) rotate(-3deg); }
  50% { transform: scale(1.025) rotate(3deg); }
}

@keyframes source-map-spin {
  to { transform: rotate(360deg); }
}

@keyframes slider-travel {
  from { translate: 0 14px; }
  to { translate: 0 -18px; }
}

/* Structured spotlight signals, Ultron BI project data, and source motion */
.spotlight-signal-rail {
  width: min(760px, calc(100vw - 72px));
  height: 62px;
  position: absolute;
  z-index: 7;
  top: 5px;
  left: 50%;
  display: grid;
  grid-template-columns: 1.35fr 1fr 1.08fr;
  gap: 10px;
  transform: translateX(-50%);
}

.spotlight-signal-rail .hero-prompt,
.spotlight-signal-rail .floating-card {
  width: auto;
  height: 62px;
  position: static;
  inset: auto;
  margin: 0;
  padding: 0 17px;
  border-color: rgba(255, 255, 255, 0.96);
  border-radius: 17px;
  box-shadow: 0 15px 32px rgba(72, 87, 145, 0.11);
  filter: none;
  transform: none;
}

.spotlight-signal-rail .hero-prompt {
  gap: 14px;
}

.spotlight-signal-rail .hero-prompt span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.spotlight-signal-rail .floating-card {
  justify-content: flex-start;
}

.spotlight-signal-rail .floating-card small {
  font-size: 7px;
  letter-spacing: 0.025em;
}

.spotlight-signal-rail .floating-card strong {
  font-size: 9px;
  white-space: nowrap;
}

.spotlight-signal-rail .score-ring {
  width: 39px;
  height: 39px;
  flex: 0 0 auto;
}

.spotlight-signal-rail .report-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
}

.source-meta {
  --source-color: #2374e1;
  --source-soft: rgba(35, 116, 225, 0.12);
}

.source-google {
  --source-color: #4285f4;
  --source-soft: rgba(66, 133, 244, 0.12);
}

.source-tiktok {
  --source-color: #161823;
  --source-soft: rgba(22, 24, 35, 0.09);
}

.source-appsflyer {
  --source-color: #7367f0;
  --source-soft: rgba(115, 103, 240, 0.12);
}

.source-adjust {
  --source-color: #ff5a5f;
  --source-soft: rgba(255, 90, 95, 0.12);
}

.platform-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #69759e;
}

.platform-logo b,
.source-pill b,
.source-mark,
.source-map-rotor > i span {
  display: grid;
  place-items: center;
  border: 1px solid rgba(97, 111, 174, 0.11);
  background: #fff;
  box-shadow: 0 7px 18px rgba(75, 91, 151, 0.09);
  color: var(--source-color);
  font-weight: 800;
  line-height: 1;
}

.platform-logo b {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  font-size: 11px;
}

.platform-logo em {
  color: #6d789c;
  font-size: 14px;
  font-style: normal;
  font-weight: 650;
}

.capability-track {
  gap: 54px;
}

.dashboard-source-filter {
  margin-top: 17px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.source-pill {
  height: 27px;
  padding: 0 9px 0 5px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 1px solid rgba(91, 108, 168, 0.09);
  border-radius: 999px;
  background: #f8f9fd;
  color: #7b86aa;
  font-size: 7px;
  font-weight: 700;
  white-space: nowrap;
}

.source-pill b {
  width: 18px;
  height: 18px;
  border: 0;
  border-radius: 50%;
  box-shadow: none;
  font-size: 6px;
}

.project-performance-table {
  margin-top: 14px;
  overflow: hidden;
  border: 1px solid rgba(87, 104, 164, 0.08);
  border-radius: 12px;
  background: rgba(252, 253, 255, 0.86);
}

.project-table-head,
.project-table-row {
  display: grid;
  grid-template-columns: minmax(140px, 1.55fr) repeat(3, minmax(48px, 0.62fr)) minmax(72px, 0.8fr);
  align-items: center;
  gap: 9px;
}

.project-table-head {
  min-height: 29px;
  padding: 0 12px;
  background: rgba(241, 244, 251, 0.75);
  color: #99a3be;
  font-size: 6px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.project-table-row {
  min-height: 47px;
  padding: 0 12px;
  border-top: 1px solid rgba(87, 104, 164, 0.065);
  color: #65709b;
}

.project-table-row > span {
  min-width: 0;
  display: grid;
  grid-template-columns: 7px minmax(0, 1fr);
  align-items: center;
  column-gap: 7px;
}

.project-table-row > span b {
  overflow: hidden;
  color: #4f5c8d;
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.project-table-row > span small {
  grid-column: 2;
  color: #a0a9c1;
  font-size: 6px;
}

.project-table-row > strong {
  color: #66719d;
  font-size: 8px;
  font-weight: 650;
}

.project-dot {
  width: 7px;
  height: 7px;
  grid-row: 1 / 3;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(112, 111, 224, 0.07);
}

.project-violet { background: #7775df; }
.project-cyan { background: #67d9eb; }
.project-pink { background: #f490c8; }
.project-blue { background: #70a7f3; }

.health-bar {
  width: 100%;
  height: 5px;
  position: relative;
  overflow: hidden;
  border-radius: 999px;
  background: #edf0f7;
}

.health-bar::after {
  content: "";
  width: var(--health);
  position: absolute;
  inset: 0 auto 0 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #68dce9, #7475df);
  transform: scaleX(var(--spotlight-bars-progress, 1));
  transform-origin: left;
}

.source-sync-summary {
  margin: 18px 0 13px;
  padding: 12px 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(88, 105, 166, 0.08);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(108, 220, 236, 0.1), rgba(119, 114, 225, 0.1));
}

.source-sync-summary > span {
  display: flex;
  align-items: baseline;
  gap: 7px;
}

.source-sync-summary b {
  color: #56639a;
  font-size: 22px;
}

.source-sync-summary small {
  color: #8f99b7;
  font-size: 7px;
}

.source-sync-summary > i {
  width: 9px;
  height: 9px;
  position: relative;
  border-radius: 50%;
  background: #55d4af;
  box-shadow: 0 0 0 5px rgba(85, 212, 175, 0.12);
}

.source-sync-summary > i::after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(85, 212, 175, 0.4);
  border-radius: 50%;
  animation: source-sync-pulse 2.2s ease-out infinite;
}

.channel-contribution {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.channel-contribution > div {
  display: grid;
  grid-template-columns: 91px 1fr 22px;
  align-items: center;
  gap: 7px;
}

.channel-contribution > div > span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #7782a7;
  font-size: 7px;
  font-weight: 650;
  white-space: nowrap;
}

.source-mark {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  border: 0;
  border-radius: 7px;
  background: var(--source-soft);
  box-shadow: none;
  font-size: 6px;
}

.channel-contribution > div > i {
  height: 5px;
  position: relative;
  overflow: hidden;
  border-radius: 999px;
  background: #eff1f7;
}

.channel-contribution > div > i::after {
  content: "";
  width: var(--share);
  position: absolute;
  inset: 0 auto 0 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #78ddeb, #7a77df);
  transform: scaleX(var(--spotlight-bars-progress, 1));
  transform-origin: left;
}

.channel-contribution > div > small {
  color: #8791b0;
  font-size: 7px;
  text-align: right;
}

.feature-query-shell {
  width: 255px;
  height: 52px;
  padding: 0 12px 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 23px rgba(73, 87, 148, 0.13);
}

.feature-query .feature-query-shell > span {
  width: auto;
  height: auto;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  background: none;
  box-shadow: none;
  text-overflow: ellipsis;
}

.feature-query .feature-query-shell > i {
  width: 29px;
  height: 29px;
  margin: 0;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #7375df, #646bd2);
  color: #fff;
  font-size: 13px;
  box-shadow: 0 7px 15px rgba(90, 99, 194, 0.2);
}

.source-map {
  animation: none;
}

.source-map-center {
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 1px;
  font-size: 12px;
  line-height: 1;
}

.source-map-center small {
  font-size: 6px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.source-map-rotor {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  animation: source-map-spin 22s linear infinite;
}

.source-map-rotor > i {
  width: 46px;
  height: 46px;
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(111, 123, 198, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 18px rgba(74, 88, 145, 0.1);
  color: #7b85a7;
  font-style: normal;
  transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-83px) rotate(calc(-1 * var(--angle)));
}

.source-map-rotor > i span {
  width: 27px;
  height: 27px;
  border: 0;
  border-radius: 9px;
  background: var(--source-soft);
  box-shadow: none;
  font-size: 7px;
  animation: source-map-counterspin 22s linear infinite;
}

.source-map-rotor > i b {
  position: absolute;
  top: calc(100% + 3px);
  color: #8791ae;
  font-size: 5px;
  font-weight: 700;
  white-space: nowrap;
  animation: source-map-counterspin 22s linear infinite;
}

.optimization-equalizer {
  height: 178px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
}

.eq-channel {
  width: 38px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 8px;
}

.eq-channel > i {
  width: 20px;
  height: 126px;
  position: relative;
  display: block;
  border: 2px solid #9b98ef;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 0 0 3px rgba(247, 248, 253, 0.96);
}

.eq-channel > i::before {
  content: "";
  width: 2px;
  position: absolute;
  top: 11px;
  bottom: 11px;
  left: 50%;
  border-radius: 999px;
  background: rgba(120, 126, 215, 0.13);
  transform: translateX(-50%);
}

.eq-stop {
  width: 9px;
  height: 2px;
  position: absolute;
  z-index: 2;
  left: 50%;
  border-radius: 999px;
  background: #a29ff0;
  opacity: 0.5;
  transform: translate(-50%, 50%);
}

.eq-start { bottom: var(--start); }
.eq-end { bottom: var(--end); }

.eq-level {
  width: 4px;
  height: var(--start);
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 50%;
  border-radius: 999px;
  background: linear-gradient(0deg, rgba(103, 219, 235, 0.12), rgba(103, 219, 235, 0.62));
  transform: translateX(-50%);
  animation: equalizer-level 4.4s var(--delay) cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

.eq-handle {
  width: 11px;
  height: 11px;
  position: absolute;
  z-index: 3;
  bottom: var(--start);
  left: 50%;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #6eddeb;
  box-shadow: 0 0 0 3px rgba(110, 221, 235, 0.14);
  transform: translate(-50%, 50%);
  animation: equalizer-handle 4.4s var(--delay) cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

.eq-channel > small {
  color: #8a94b2;
  font-size: 6px;
  font-weight: 650;
}

@keyframes source-sync-pulse {
  from { opacity: 0.75; transform: scale(0.65); }
  to { opacity: 0; transform: scale(1.45); }
}

@keyframes source-map-counterspin {
  to { transform: rotate(-360deg); }
}

@keyframes equalizer-handle {
  0%, 12%, 100% { bottom: var(--start); }
  45%, 62% { bottom: var(--end); }
}

@keyframes equalizer-level {
  0%, 12%, 100% { height: var(--start); }
  45%, 62% { height: var(--end); }
}

@media (min-width: 901px) {
  .hero .capability-band {
    width: 100%;
    position: absolute;
    top: 590px;
    left: 0;
    margin-top: 0;
  }

  .spotlight-signal-rail {
    top: -38px;
  }
}

@media (max-width: 1100px) and (min-width: 901px) {
  .dashboard-shell {
    width: calc(100vw - 46px);
  }

  .spotlight-signal-rail {
    width: min(760px, calc(100vw - 64px));
  }

  .feature-mosaic {
    gap: 16px;
  }
}

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

  .hero::before {
    height: 1420px;
  }

  .hero::after {
    width: 620px;
    height: 490px;
    top: 500px;
  }

  .hero .capability-band {
    margin-top: 54px;
  }

  .hero-stage {
    height: 590px;
    top: 810px;
  }

  .dashboard-shell {
    width: calc(100vw - 30px);
    height: 540px;
    top: 20px;
    grid-template-columns: 52px 1fr;
    grid-template-rows: 52px 1fr;
    border-width: 5px;
    border-radius: 18px;
    transform: none;
  }

  .dashboard-toolbar {
    padding: 0 14px;
    grid-template-columns: 110px 1fr auto;
    gap: 8px;
  }

  .toolbar-brand {
    font-size: 12px;
  }

  .toolbar-brand .brand-mark {
    width: 20px;
    height: 18px;
  }

  .toolbar-search span,
  .toolbar-actions > i {
    display: none;
  }

  .toolbar-actions span {
    padding: 8px 11px;
    font-size: 7px;
  }

  .dashboard-sidebar {
    padding: 14px 6px;
  }

  .side-item {
    width: 34px;
    padding: 0 9px;
    font-size: 0;
  }

  .dashboard-main {
    padding: 18px 15px;
  }

  .dashboard-top strong {
    font-size: 14px;
  }

  .dashboard-controls {
    display: none;
  }

  .dashboard-metrics {
    gap: 6px;
  }

  .dashboard-metrics article {
    min-height: 77px;
    padding: 10px;
  }

  .dashboard-metrics strong {
    font-size: 14px;
  }

  .dashboard-grid {
    grid-template-columns: 1fr 112px;
    gap: 6px;
  }

  .analytics-card,
  .mix-card {
    min-height: 270px;
    padding: 10px;
  }

  .mix-card {
    display: flex;
  }

  .chart-area {
    height: 202px;
  }

  .chart-legend {
    gap: 7px;
    font-size: 6px;
  }

  .chart-legend small {
    display: none;
  }

  .mirror-bars {
    height: 145px;
    padding: 0 3px;
  }

  .mirror-bars > i {
    width: 5px;
  }

  .donut {
    width: 88px;
    height: 88px;
    margin-top: 48px;
  }

  .donut::before {
    width: 44px;
    height: 44px;
  }

  .donut-callout {
    width: 47px;
    height: 50px;
    right: -5px;
    font-size: 6px;
  }

  .hero-prompt,
  .floating-card {
    display: none;
  }

  .spotlight-signal-rail {
    display: none;
  }

  .dashboard-source-filter {
    gap: 4px;
  }

  .source-pill {
    padding-right: 6px;
    font-size: 6px;
  }

  .project-table-head,
  .project-table-row {
    grid-template-columns: minmax(104px, 1.45fr) repeat(3, minmax(36px, 0.6fr)) minmax(54px, 0.75fr);
    gap: 5px;
    padding-right: 8px;
    padding-left: 8px;
  }

  .channel-contribution > div {
    grid-template-columns: 1fr 18px;
  }

  .channel-contribution > div > i {
    display: none;
  }

  .features-section {
    min-height: auto;
    padding: 18px 15px 80px;
  }

  .feature-mosaic {
    height: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
    gap: 12px;
  }

  .feature-card,
  .feature-wide,
  .feature-tall,
  .feature-square {
    min-height: 300px;
  }

  .feature-wide {
    grid-template-rows: 140px 140px;
  }
}

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

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

  .dashboard-grid .mix-card {
    display: none;
  }

  .dashboard-source-filter {
    justify-content: space-between;
  }

  .source-pill {
    width: 25px;
    padding: 0;
    justify-content: center;
    overflow: hidden;
    color: transparent;
    font-size: 0;
  }

  .source-pill b {
    flex: 0 0 auto;
    font-size: 6px;
  }

  .project-table-head,
  .project-table-row {
    grid-template-columns: minmax(96px, 1.3fr) 0.65fr 0.55fr;
  }

  .project-table-head > :nth-child(4),
  .project-table-head > :nth-child(5),
  .project-table-row > strong:nth-of-type(3),
  .project-table-row > .health-bar {
    display: none;
  }

  .feature-mosaic {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .feature-wide,
  .feature-tall,
  .feature-square {
    min-height: 320px;
  }
}

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

  .motion-ready .reveal {
    opacity: 1;
    filter: none;
    transform: none;
  }

  [data-parallax],
  .feature-card:hover,
  .process-card:hover,
  .integration-card:hover,
  .metric-card:hover {
    translate: none !important;
  }

  .performance-section {
    min-height: auto;
    padding: 95px max(15px, calc((100vw - 1180px) / 2));
  }

  .performance-sticky {
    min-height: auto;
    position: relative;
    padding: 0;
  }

  .metric-cards {
    transform: none !important;
  }
}

/* Continuous hero-to-features scene */
#main-content {
  position: relative;
  isolation: isolate;
  overflow: clip;
  background: #f9fafb;
}

#main-content::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 50%;
  width: 100%;
  height: 1900px;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(249, 250, 251, 0) 0%, rgba(249, 250, 251, 0) 76%, #f9fafb 100%),
    url("./assets/funzplay-continuum-v1.webp") center top / auto 1840px no-repeat;
  filter: saturate(1.04);
  opacity: 0.98;
  transform: translateX(-50%) scale(1.018);
  transform-origin: 50% 18%;
  animation: continuum-drift 18s ease-in-out infinite alternate;
}

#main-content > section {
  position: relative;
  z-index: 1;
}

.hero {
  background: transparent;
}

.hero::after {
  display: none;
}

.dashboard-shell {
  height: 812px;
  border-color: rgba(255, 255, 255, 0.96);
  background: rgba(249, 250, 253, 0.94);
  box-shadow:
    0 58px 120px rgba(51, 66, 126, 0.2),
    0 14px 36px rgba(71, 88, 150, 0.1),
    inset 0 1px rgba(255, 255, 255, 0.98);
}

.dashboard-raster {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 20;
  inset: 0;
  border-radius: 21px;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  user-select: none;
}

.features-section {
  overflow: clip;
  background: transparent;
}

.features-section::after {
  width: min(1160px, 94vw);
  height: 620px;
  top: -250px;
  right: auto;
  left: 50%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 48% 48%, rgba(110, 169, 242, 0.16), transparent 42%),
    radial-gradient(circle at 36% 46%, rgba(214, 168, 243, 0.14), transparent 37%),
    radial-gradient(circle at 70% 52%, rgba(92, 218, 232, 0.1), transparent 32%);
  filter: blur(68px);
  opacity: 0.64;
  translate: -50% var(--section-shift);
  transform: none;
}

.feature-card,
.feature-wide .mini-dashboard,
.feature-query {
  border-color: rgba(255, 255, 255, 0.9);
  background:
    radial-gradient(circle at 48% -18%, rgba(255, 255, 255, 0.98), transparent 52%),
    rgba(249, 250, 253, 0.7);
  box-shadow:
    0 28px 72px rgba(76, 92, 147, 0.08),
    0 5px 18px rgba(76, 92, 147, 0.04),
    inset 0 1px rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(20px) saturate(118%);
}

.feature-wide {
  background: none;
  box-shadow: none;
  backdrop-filter: none;
}

.process-section {
  background:
    radial-gradient(circle at 50% 62%, rgba(75, 213, 234, 0.09), transparent 33%),
    linear-gradient(180deg, rgba(249, 250, 251, 0) 0%, rgba(246, 249, 255, 0.72) 18%, #f3f8ff 72%);
}

@keyframes continuum-drift {
  from {
    transform: translateX(-50%) scale(1.018) translate3d(-0.35%, 0, 0);
  }
  to {
    transform: translateX(-50%) scale(1.035) translate3d(0.35%, -0.35%, 0);
  }
}

@media (max-width: 900px) {
  #main-content::before {
    height: 1500px;
    background:
      linear-gradient(180deg, rgba(249, 250, 251, 0) 0%, rgba(249, 250, 251, 0) 76%, #f9fafb 100%),
      url("./assets/funzplay-continuum-v1.webp") center top / auto 1460px no-repeat;
  }

  .dashboard-shell {
    height: 540px;
  }

  .dashboard-raster {
    display: none;
  }
}

@media (max-width: 580px) {
  #main-content::before {
    background-position: center top;
  }
}

/* Official platform artwork and collision-safe hero flow */
.brand-icon {
  display: block;
  flex: 0 0 auto;
  object-fit: contain;
}

.platform-logo .brand-icon {
  width: 32px;
  height: 32px;
  padding: 5px;
  border: 1px solid rgba(97, 111, 174, 0.11);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 7px 18px rgba(75, 91, 151, 0.09);
}

.source-pill .brand-icon {
  width: 18px;
  height: 18px;
  padding: 2px;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 3px 8px rgba(75, 91, 151, 0.08);
}

.source-mark.brand-icon {
  width: 20px;
  height: 20px;
  padding: 3px;
  border-radius: 7px;
  background: #fff;
  object-fit: contain;
}

.source-map-rotor > i .brand-icon {
  width: 28px;
  height: 28px;
  padding: 3px;
  border-radius: 8px;
  background: #fff;
  object-fit: contain;
  animation: source-map-counterspin 22s linear infinite;
}

@media (min-width: 901px) {
  .hero .capability-band {
    width: min(1120px, calc(100vw - 64px));
    position: relative;
    top: auto;
    left: auto;
    margin-right: auto;
    margin-left: auto;
    margin-top: 54px;
  }

  .hero-stage {
    position: relative;
    top: auto;
    left: auto;
    margin: 30px auto 0;
  }

  .dashboard-shell {
    top: 20px;
  }

  .dashboard-shell > .dashboard-toolbar,
  .dashboard-shell > .dashboard-sidebar,
  .dashboard-shell > .dashboard-main {
    visibility: hidden;
    pointer-events: none;
  }
}

@media (min-width: 1600px) {
  .hero-copy {
    width: min(1500px, calc(100vw - 160px));
  }

  .hero h1 {
    max-width: min(1500px, calc(100vw - 160px));
    font-size: clamp(96px, 5.4vw, 108px);
  }
}

@media (max-width: 900px) {
  .hero-stage {
    position: relative;
    top: auto;
    left: auto;
    margin: 42px auto 0;
  }

  .dashboard-shell > .dashboard-toolbar,
  .dashboard-shell > .dashboard-sidebar,
  .dashboard-shell > .dashboard-main {
    visibility: visible;
  }
}

@media (max-width: 580px) {
  .source-pill .brand-icon {
    width: 19px;
    height: 19px;
    padding: 2px;
  }
}

/* The reference uses a fixed looping desktop video for its liquid background,
   then swaps to static artwork below the desktop breakpoint. */
.hero-water-motion {
  display: none;
}

@media (min-width: 1200px) and (min-height: 700px) {
  .hero-water-motion {
    position: fixed;
    z-index: 0;
    inset: 0;
    width: 100%;
    height: 100vh;
    display: block;
    overflow: hidden;
    pointer-events: none;
    background: #f9fafb url("./assets/rescale-backgrounds/hero.png") center / cover no-repeat;
    opacity: var(--hero-water-opacity, 1);
    transition: opacity 420ms ease-out;
  }

  .hero-water-motion::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at var(--pointer-x, 50%) var(--pointer-y, 42%), rgba(255, 255, 255, 0.08), transparent 28%),
      linear-gradient(180deg, rgba(249, 250, 251, 0.04), rgba(249, 250, 251, 0.12));
    mix-blend-mode: soft-light;
  }

  .hero-water-motion video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: 50% 50%;
    filter: hue-rotate(-20deg) saturate(1.14);
  }

}

@media (prefers-reduced-motion: reduce) {
  .hero-water-motion video {
    display: none;
  }
}

/* Rescale-inspired layered continuum using the original background artwork. */
#main-content {
  background: #f9fafb;
}

#main-content::before {
  display: none;
}

.hero,
.features-section,
.process-section,
.integration-section,
.performance-section,
.api-section,
.company-section,
.faq-section {
  background-color: #f9fafb;
  background-image: none;
}

[data-atmosphere-section] {
  --atmosphere-opacity: 1;
  --atmosphere-scale: 1;
  --atmosphere-blur: 0px;
  --atmosphere-y: 0px;
  isolation: isolate;
}

.section-atmosphere {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: var(--atmosphere-opacity);
  filter: blur(var(--atmosphere-blur)) saturate(1.08);
  transform: translate3d(0, var(--atmosphere-y), 0) scale(var(--atmosphere-scale));
  transform-origin: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: max(100vw, 1680px) auto;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 16%, #000 84%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 16%, #000 84%, transparent 100%);
  will-change: opacity, filter, transform;
}

.hero-glow {
  z-index: 0;
}

.hero-copy,
.capability-band,
.hero-stage,
.section-heading,
.feature-mosaic,
.process-grid,
.integration-heading,
.integration-board,
.integration-note,
.api-heading,
.api-layout,
.metric-dictionary,
.company-intro,
.company-story,
.faq-list {
  position: relative;
  z-index: 1;
}

.performance-sticky {
  z-index: 1;
}

.hero .section-atmosphere {
  background-image: url("./assets/rescale-backgrounds/hero.png");
  background-position: center top;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 82%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 82%, transparent 100%);
}

@media (min-width: 1200px) and (min-height: 700px) {
  .hero {
    background-color: transparent;
  }

  .hero .section-atmosphere {
    display: none;
  }
}

.features-section .section-atmosphere {
  background-image: url("./assets/rescale-backgrounds/features.png");
}

.process-section .section-atmosphere {
  background-image: url("./assets/rescale-backgrounds/process.png");
}

.integration-section .section-atmosphere {
  background-image: url("./assets/rescale-backgrounds/integration.png");
}

.performance-section .section-atmosphere {
  background-image: url("./assets/rescale-backgrounds/performance.png");
  background-position: center 38%;
  background-size: cover;
}

.api-section .section-atmosphere {
  background-image: url("./assets/rescale-backgrounds/features.png");
  background-position: center 28%;
}

.company-section .section-atmosphere {
  background-image: url("./assets/rescale-backgrounds/process.png");
  background-position: center 46%;
}

.faq-section .section-atmosphere {
  background-image: url("./assets/rescale-backgrounds/hero.png");
  background-position: center bottom;
}

.feature-mosaic {
  position: relative;
  isolation: isolate;
}

.feature-mosaic::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 49%;
  left: 50%;
  width: min(760px, 72vw);
  aspect-ratio: 2 / 1;
  border-radius: 50%;
  background: url("./assets/rescale-backgrounds/accent.jpg") center / cover no-repeat;
  filter: blur(18px) saturate(1.08);
  opacity: 0.3;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.feature-mosaic > * {
  position: relative;
  z-index: 1;
}

.feature-card:not(.feature-wide) .feature-copy {
  width: 100%;
  text-align: center;
}

.feature-card:not(.feature-wide) .feature-copy h3 {
  width: 100%;
  text-align: center;
}

@media (max-width: 900px) {
  .section-atmosphere {
    background-size: auto 100%;
  }

  .hero .section-atmosphere {
    background-size: auto 1320px;
  }

  .feature-mosaic::before {
    width: min(680px, 110vw);
    opacity: 0.24;
  }
}

@media (max-width: 580px) {
  .capability-band {
    width: calc(100vw - 28px);
    padding-right: 18px;
    padding-left: 18px;
  }

  .status-pill {
    padding-right: 12px;
    gap: 8px;
  }

  .status-rocket {
    width: 25px;
    height: 25px;
    flex-basis: 25px;
  }
}

/* Balanced type scale and more editorial company storytelling. */
:root {
  --type-label: 10px;
  --type-caption: 12px;
  --type-body: 15px;
  --type-card-title: 19px;
}

.hero h1 {
  max-width: min(1380px, calc(100vw - 96px));
  font-size: clamp(58px, 5.25vw, 88px);
  line-height: 1.015;
}

.hero-summary {
  max-width: 720px;
  font-size: 16px;
  line-height: 1.65;
}

.status-pill,
.button {
  font-size: 12px;
}

.capability-band > p,
.section-label {
  font-size: var(--type-label);
}

.section-heading h2,
.integration-heading h2,
.api-heading h2,
.company-intro h2 {
  font-size: clamp(42px, 3.95vw, 62px);
  line-height: 1.06;
}

.performance-sticky .section-heading h2 {
  font-size: clamp(40px, 3.75vw, 58px);
}

.section-heading > p:last-child,
.integration-heading > div > p:last-child,
.api-heading > p:last-child,
.company-intro > p:not(.section-label) {
  max-width: 660px;
  font-size: var(--type-body);
  line-height: 1.68;
}

.feature-copy h3,
.process-card h3,
.integration-card h3,
.api-principles h3 {
  font-size: var(--type-card-title);
}

.process-card p,
.integration-card p,
.api-flow-card p,
.api-principles p,
.integration-note p,
.product-copy > p,
.faq-list details p {
  font-size: 13px;
  line-height: 1.65;
}

.metric-card > span {
  font-size: 11px;
}

.metric-card strong {
  align-self: flex-start;
  font-size: clamp(48px, 4.15vw, 62px);
  line-height: 0.95;
  letter-spacing: -0.065em;
  white-space: nowrap;
}

.metric-card small {
  max-width: 250px;
  color: #687697;
  font-size: 12px;
  line-height: 1.5;
}

.performance-disclaimer {
  font-size: 11px;
  line-height: 1.5;
}

.product-copy h2 {
  font-size: clamp(40px, 4vw, 58px);
}

.final-cta h2 {
  font-size: clamp(48px, 5.3vw, 78px);
}

.company-section {
  align-items: center;
}

.company-story {
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 28px;
  background:
    radial-gradient(circle at 92% 4%, rgba(83, 213, 234, 0.13), transparent 32%),
    rgba(255, 255, 255, 0.68);
  box-shadow:
    0 26px 68px rgba(75, 92, 151, 0.09),
    inset 0 1px rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(22px) saturate(115%);
}

.company-kicker {
  margin: 0 0 25px;
  color: #7580b1;
  font-size: var(--type-label);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.company-story blockquote {
  max-width: 720px;
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(27px, 2.35vw, 38px);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.045em;
}

.company-pillars {
  margin-top: 38px;
  padding-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  border-top: 1px solid var(--line);
}

.company-pillars h3 {
  margin: 0 0 9px;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.company-pillars p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.company-markets {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.company-markets span {
  padding: 9px 13px;
  border: 1px solid rgba(97, 112, 177, 0.11);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  color: #6d78a4;
  font-size: 11px;
  font-weight: 600;
}

@media (max-width: 900px) {
  .hero h1 {
    max-width: calc(100vw - 48px);
    font-size: clamp(48px, 9.2vw, 70px);
  }

  .section-heading h2,
  .integration-heading h2,
  .api-heading h2,
  .company-intro h2,
  .performance-sticky .section-heading h2 {
    font-size: clamp(38px, 8vw, 54px);
  }

  .company-story {
    padding: 30px;
  }
}

@media (max-width: 580px) {
  .hero h1 {
    max-width: calc(100vw - 32px);
    font-size: clamp(40px, 11.2vw, 52px);
  }

  .hero-summary {
    font-size: 15px;
  }

  .section-heading h2,
  .integration-heading h2,
  .api-heading h2,
  .company-intro h2,
  .performance-sticky .section-heading h2 {
    font-size: clamp(34px, 10.4vw, 45px);
  }

  .section-heading > p:last-child,
  .integration-heading > div > p:last-child,
  .api-heading > p:last-child,
  .company-intro > p:not(.section-label) {
    font-size: 14px;
  }

  .metric-card strong {
    font-size: clamp(46px, 15vw, 58px);
  }

  .company-pillars {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .company-story blockquote {
    font-size: clamp(25px, 8vw, 32px);
  }
}

/* Shared information-page system: About, Contact, Privacy, Terms, and deletion. */
.info-body,
.legal-body {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(249, 250, 251, 0.12), #f5f8ff 840px),
    url("./assets/rescale-backgrounds/hero.png") center top / max(100vw, 1680px) auto no-repeat,
    #f5f8ff;
}

.legal-header {
  width: min(620px, calc(100vw - 36px));
}

.legal-header .header-cta {
  padding: 11px 15px;
  font-size: 10px;
}

.legal-header .brand-mark i {
  width: 5px;
}

.legal-header .brand-mark i:nth-child(1) {
  height: 11px;
}

.legal-header .brand-mark i:nth-child(2) {
  height: 16px;
}

.legal-header .brand-mark i:nth-child(3) {
  height: 20px;
}

.subpage-nav {
  width: min(760px, calc(100vw - 36px));
  margin: 18px auto 0;
  padding: 7px;
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 12px 30px rgba(75, 92, 151, 0.08);
  backdrop-filter: blur(18px) saturate(125%);
}

.subpage-nav a {
  min-height: 36px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  color: #6f7da4;
  font-size: 11px;
  font-weight: 600;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.subpage-nav a:hover,
.subpage-nav a:focus-visible,
.subpage-nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  box-shadow: 0 7px 18px rgba(75, 92, 151, 0.08);
}

.info-main {
  width: var(--page);
  margin: 0 auto;
  padding: 72px 0 110px;
}

.info-hero {
  min-height: 430px;
  padding: clamp(34px, 6vw, 76px);
  display: grid;
  grid-template-columns: 1.08fr 0.72fr;
  gap: clamp(42px, 7vw, 100px);
  align-items: end;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 30px;
  background:
    radial-gradient(circle at 76% 22%, rgba(78, 213, 235, 0.16), transparent 28%),
    radial-gradient(circle at 18% 78%, rgba(116, 108, 232, 0.16), transparent 31%),
    rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px) saturate(118%);
}

.info-hero .legal-back {
  margin-bottom: 44px;
}

.info-hero .eyebrow {
  margin: 0 0 20px;
  color: #7681b2;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.info-hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(48px, 5.2vw, 72px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.info-hero h1 em {
  background: linear-gradient(90deg, var(--cyan), var(--violet));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-style: normal;
}

.info-hero-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.info-hero-copy .button {
  margin-top: 30px;
}

.info-markets {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.info-markets span {
  padding: 9px 12px;
  border: 1px solid rgba(91, 108, 175, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: #6f7ca6;
  font-size: 11px;
  font-weight: 600;
}

.about-grid,
.contact-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.about-grid > article,
.contact-card,
.about-statement,
.contact-note,
.info-cta {
  border: 1px solid rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 18px 48px rgba(75, 92, 151, 0.08);
  backdrop-filter: blur(18px) saturate(112%);
}

.about-grid > article {
  min-height: 320px;
  padding: clamp(30px, 4vw, 52px);
  border-radius: 24px;
}

.about-grid > article:nth-child(2) {
  background:
    radial-gradient(circle at 90% 8%, rgba(239, 139, 209, 0.13), transparent 30%),
    rgba(255, 255, 255, 0.68);
}

.info-card-label {
  margin: 0 0 20px;
  color: #7681b2;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.about-grid h2,
.contact-card h2,
.contact-note h2,
.info-cta h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(27px, 2.7vw, 38px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.about-grid article > p:last-child,
.contact-card p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

.about-statement,
.contact-note {
  margin-top: 22px;
  padding: clamp(34px, 5vw, 64px);
  border-radius: 28px;
}

.about-statement blockquote {
  max-width: 900px;
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.055em;
}

.about-principles {
  margin-top: 48px;
  padding-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  border-top: 1px solid var(--line);
}

.about-principles article {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
}

.about-principles article > span {
  color: var(--violet);
  font-size: 11px;
  font-weight: 700;
}

.about-principles h3 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 600;
}

.about-principles p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.info-cta {
  margin-top: 22px;
  padding: 34px clamp(30px, 5vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-radius: 24px;
}

.info-cta h2 {
  max-width: 650px;
}

.contact-hero {
  background:
    radial-gradient(circle at 78% 22%, rgba(78, 213, 235, 0.18), transparent 30%),
    radial-gradient(circle at 18% 82%, rgba(240, 139, 210, 0.14), transparent 33%),
    rgba(255, 255, 255, 0.68);
}

.contact-card {
  min-height: 280px;
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.contact-card:hover,
.contact-card:focus-visible {
  transform: translateY(-5px);
  box-shadow: 0 26px 62px rgba(75, 92, 151, 0.13);
}

.contact-card > span {
  margin-bottom: 22px;
  color: #7681b2;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-card strong {
  margin-top: auto;
  padding-top: 28px;
  color: var(--violet-deep);
  font-size: 12px;
}

.contact-card-primary {
  background:
    radial-gradient(circle at 90% 5%, rgba(79, 215, 235, 0.19), transparent 32%),
    rgba(255, 255, 255, 0.74);
}

.contact-note h2 {
  max-width: 650px;
}

.contact-note > div {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.contact-note > div span {
  min-height: 50px;
  padding: 14px 17px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(91, 108, 175, 0.09);
  border-radius: 13px;
  background: rgba(245, 248, 255, 0.76);
  color: #6c789e;
  font-size: 12px;
}

.subpage-footer {
  width: min(1180px, calc(100vw - 64px));
  min-height: 110px;
  margin: 0 auto;
  padding: 28px 0 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
}

.subpage-footer p {
  margin: 0;
  color: #8390b1;
  font-size: 11px;
}

.legal-main {
  padding-top: 54px;
}

.legal-document h1 {
  font-size: clamp(44px, 5vw, 64px);
}

.legal-document .eyebrow {
  font-size: 10px;
}

.legal-updated {
  font-size: 10px !important;
}

.legal-document p,
.legal-document li {
  font-size: 14px;
  line-height: 1.78;
}

.legal-back {
  font-size: 10px;
}

@media (max-width: 760px) {
  .subpage-nav {
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .subpage-nav::-webkit-scrollbar {
    display: none;
  }

  .subpage-nav a {
    flex: 0 0 auto;
    padding: 0 12px;
  }

  .info-main {
    padding-top: 46px;
  }

  .info-hero {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .info-hero h1 {
    font-size: clamp(42px, 11vw, 58px);
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

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

  .contact-note > div {
    grid-template-columns: 1fr;
  }

  .subpage-footer {
    width: calc(100vw - 40px);
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .legal-header {
    width: calc(100vw - 24px);
  }

  .subpage-nav {
    width: calc(100vw - 24px);
  }

  .info-main {
    width: calc(100vw - 24px);
  }

  .info-hero,
  .about-grid > article,
  .about-statement,
  .contact-card,
  .contact-note {
    border-radius: 20px;
  }

  .info-hero {
    padding: 28px 24px 34px;
  }

  .about-statement blockquote {
    font-size: clamp(29px, 9vw, 38px);
  }
}
