:root {
  --ink: #0b1020;
  --ink-soft: #171d32;
  --paper: #f5f7fb;
  --paper-warm: #eceef3;
  --white: #ffffff;
  --muted: #60677a;
  --line: rgba(11, 16, 32, 0.13);
  --line-light: rgba(255, 255, 255, 0.17);
  --violet: #635bff;
  --violet-dark: #4b42ea;
  --aqua: #38d7c4;
  --coral: #ff6b6b;
  --yellow: #f3e85b;
  --radius-small: 16px;
  --radius: 28px;
  --radius-large: 44px;
  --shadow: 0 24px 80px rgba(23, 20, 75, 0.13);
  --shell: 1280px;
  --header-height: 84px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body,
button,
a {
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

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

button {
  font: inherit;
}

:focus-visible {
  border-radius: 6px;
  outline: 3px solid var(--aqua);
  outline-offset: 4px;
}

::selection {
  background: var(--yellow);
  color: var(--ink);
}

.skip-link {
  background: var(--white);
  border-radius: 0 0 12px 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  color: var(--ink);
  font-weight: 800;
  left: 20px;
  padding: 14px 18px;
  position: fixed;
  text-decoration: none;
  top: -90px;
  transition: top 180ms ease;
  z-index: 1000;
}

.skip-link:focus {
  top: 0;
}

.shell,
.nav-shell {
  margin-inline: auto;
  max-width: var(--shell);
  width: calc(100% - 64px);
}

.site-header {
  background: rgba(245, 247, 251, 0.86);
  border-bottom: 1px solid transparent;
  height: var(--header-height);
  position: fixed;
  top: 0;
  transition: background 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
  width: 100%;
  z-index: 100;
}

.site-header.is-scrolled,
.policy-header {
  backdrop-filter: blur(18px);
  border-color: var(--line);
  box-shadow: 0 10px 36px rgba(11, 16, 32, 0.05);
}

.nav-shell {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: space-between;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-size: 1.22rem;
  font-weight: 820;
  gap: 11px;
  letter-spacing: -0.035em;
  text-decoration: none;
}

.brand-mark {
  align-items: center;
  background: var(--violet);
  border-radius: 10px;
  color: var(--white);
  display: inline-flex;
  font-size: 0.88rem;
  font-weight: 900;
  height: 36px;
  justify-content: center;
  letter-spacing: -0.08em;
  transform: rotate(-3deg);
  width: 36px;
}

.primary-nav,
.policy-nav {
  align-items: center;
  display: flex;
  font-size: 0.9rem;
  font-weight: 700;
  gap: clamp(18px, 2.3vw, 34px);
}

.primary-nav > a:not(.button),
.policy-nav > a:not(.button) {
  position: relative;
  text-decoration: none;
}

.primary-nav > a:not(.button)::after,
.policy-nav > a:not(.button)::after {
  background: currentColor;
  bottom: -7px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
  width: 100%;
}

.primary-nav > a:hover::after,
.policy-nav > a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  align-items: center;
  background: var(--ink);
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  display: none;
  height: 46px;
  justify-content: center;
  padding: 0;
  width: 46px;
}

.nav-toggle span {
  background: var(--white);
  display: block;
  height: 2px;
  margin: 4px auto;
  transition: transform 180ms ease, opacity 180ms ease;
  width: 19px;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-size: 0.96rem;
  font-weight: 800;
  justify-content: center;
  min-height: 54px;
  padding: 0 25px;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.button-small {
  font-size: 0.84rem;
  min-height: 44px;
  padding-inline: 19px;
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-dark:hover {
  background: var(--violet);
}

.button-primary {
  background: var(--violet);
  box-shadow: 0 16px 40px rgba(99, 91, 255, 0.35);
  color: var(--white);
}

.button-primary:hover {
  background: #756fff;
}

.button-white {
  background: var(--white);
  color: var(--ink);
}

.button-white:hover {
  background: var(--yellow);
}

.text-link {
  align-items: center;
  display: inline-flex;
  font-size: 0.95rem;
  font-weight: 800;
  gap: 10px;
  text-decoration: none;
}

.text-link span {
  font-size: 1.25em;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translate(3px, 3px);
}

.text-link-light {
  color: var(--white);
}

.eyebrow {
  align-items: center;
  color: var(--violet-dark);
  display: flex;
  font-size: 0.73rem;
  font-weight: 850;
  gap: 10px;
  letter-spacing: 0.13em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.eyebrow::before {
  background: currentColor;
  border-radius: 50%;
  content: "";
  height: 7px;
  width: 7px;
}

.eyebrow-light {
  color: var(--aqua);
}

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

h1,
h2,
h3 {
  letter-spacing: -0.055em;
}

h1,
h2 {
  font-weight: 750;
}

h1 em,
h2 em {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.section-dark {
  background: var(--ink);
  color: var(--white);
}

.hero {
  border-radius: 0 0 var(--radius-large) var(--radius-large);
  min-height: 940px;
  overflow: hidden;
  padding: calc(var(--header-height) + 108px) 0 72px;
  position: relative;
}

.hero::before {
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 68px 68px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
  pointer-events: none;
  position: absolute;
}

.hero-glow {
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.8;
  pointer-events: none;
  position: absolute;
}

.hero-glow-one {
  background: rgba(99, 91, 255, 0.36);
  height: 580px;
  right: -140px;
  top: -180px;
  width: 580px;
}

.hero-glow-two {
  background: rgba(56, 215, 196, 0.13);
  bottom: 80px;
  height: 430px;
  left: -220px;
  width: 430px;
}

.hero-grid {
  align-items: center;
  display: grid;
  gap: clamp(36px, 5vw, 78px);
  grid-template-columns: minmax(0, 0.82fr) minmax(540px, 1.18fr);
  position: relative;
  z-index: 2;
}

.demo-pill {
  align-items: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line-light);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.76);
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 720;
  gap: 8px;
  margin-bottom: 36px;
  padding: 9px 12px;
}

.demo-pill span {
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(243, 232, 91, 0.12);
  height: 6px;
  width: 6px;
}

.hero h1 {
  font-size: clamp(4.1rem, 6.6vw, 7rem);
  line-height: 0.89;
  margin-bottom: 30px;
  max-width: 680px;
}

.hero h1 em {
  color: var(--aqua);
  display: block;
}

.hero-intro {
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1rem, 1.3vw, 1.17rem);
  line-height: 1.75;
  max-width: 600px;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 35px;
}

.hero-proof {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  margin: 58px 0 0;
  padding: 0;
}

.hero-proof li {
  border-left: 1px solid var(--line-light);
  display: grid;
  gap: 5px;
  padding-left: 14px;
}

.hero-proof strong {
  font-size: 0.77rem;
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.49);
  font-size: 0.68rem;
  line-height: 1.4;
}

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

.hero-texture {
  border-radius: 46% 54% 42% 58% / 48% 38% 62% 52%;
  filter: saturate(1.1) contrast(1.03);
  height: 650px;
  inset: 0 0 auto auto;
  opacity: 0.88;
  object-fit: cover;
  position: absolute;
  transform: rotate(8deg);
  width: 88%;
}

.product-window {
  backdrop-filter: blur(25px);
  background: rgba(248, 249, 254, 0.93);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 23px;
  box-shadow: 0 44px 100px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  color: var(--ink);
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 82px;
  transform: perspective(1200px) rotateY(-5deg) rotateX(2deg);
  width: 95%;
}

.window-bar {
  align-items: center;
  border-bottom: 1px solid rgba(11, 16, 32, 0.09);
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  min-height: 59px;
  padding: 0 18px;
}

.window-brand {
  align-items: center;
  display: flex;
  font-size: 0.7rem;
  font-weight: 850;
  gap: 7px;
}

.window-brand span {
  background: var(--violet);
  border-radius: 6px;
  color: var(--white);
  display: grid;
  height: 22px;
  place-items: center;
  width: 22px;
}

.window-search {
  background: #ebedf4;
  border-radius: 8px;
  color: #8b90a1;
  font-size: 0.54rem;
  padding: 8px 10px;
}

.window-search kbd {
  float: right;
  font-family: inherit;
  font-size: 0.48rem;
}

.avatar-stack {
  display: flex;
  justify-content: flex-end;
}

.avatar-stack i {
  background: var(--violet);
  border: 2px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  display: grid;
  font-size: 0.42rem;
  font-style: normal;
  font-weight: 800;
  height: 26px;
  margin-left: -6px;
  place-items: center;
  width: 26px;
}

.avatar-stack i:nth-child(2) { background: #fb897b; }
.avatar-stack i:nth-child(3) { background: var(--ink); }

.window-layout {
  display: grid;
  grid-template-columns: 58px 1fr;
  min-height: 390px;
}

.window-sidebar {
  align-items: center;
  border-right: 1px solid rgba(11, 16, 32, 0.08);
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding-top: 25px;
}

.window-sidebar span {
  color: #a6aabb;
  display: grid;
  font-size: 0.78rem;
  height: 28px;
  place-items: center;
  width: 28px;
}

.window-sidebar .side-active {
  background: var(--violet);
  border-radius: 7px;
  color: var(--white);
}

.window-main {
  padding: 26px;
}

.workspace-heading {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 19px;
}

.workspace-heading div {
  display: grid;
  gap: 5px;
}

.workspace-heading small,
.focus-card small,
.mini-card small {
  color: #969aab;
  font-size: 0.48rem;
  font-weight: 820;
  letter-spacing: 0.08em;
}

.workspace-heading strong {
  font-size: 0.95rem;
}

.status-chip {
  background: rgba(56, 215, 196, 0.18);
  border-radius: 999px;
  color: #087f72;
  font-size: 0.52rem;
  font-weight: 800;
  padding: 7px 10px;
}

.focus-card {
  align-items: center;
  background: var(--ink-soft);
  border-radius: 15px;
  color: var(--white);
  display: flex;
  justify-content: space-between;
  padding: 20px;
}

.focus-card > div:first-child {
  display: grid;
  gap: 8px;
}

.focus-card strong {
  font-size: 0.8rem;
}

.focus-card p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.53rem;
  margin: 0;
}

.progress-ring {
  background: conic-gradient(var(--aqua) 75%, rgba(255,255,255,.1) 0);
  border-radius: 50%;
  display: grid;
  height: 58px;
  place-items: center;
  position: relative;
  width: 58px;
}

.progress-ring::after {
  background: var(--ink-soft);
  border-radius: 50%;
  content: "";
  height: 43px;
  position: absolute;
  width: 43px;
}

.progress-ring span {
  font-size: 0.52rem;
  font-weight: 800;
  position: relative;
  z-index: 1;
}

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

.mini-card {
  background: var(--white);
  border: 1px solid rgba(11, 16, 32, 0.08);
  border-radius: 13px;
  display: grid;
  gap: 6px;
  padding: 15px;
}

.mini-card strong {
  font-size: 1.15rem;
}

.mini-card span {
  color: #8a8fa0;
  font-size: 0.48rem;
}

.mini-card .trend {
  color: #159485;
}

.wide-card {
  align-items: end;
  display: flex;
  grid-column: 1 / -1;
  justify-content: space-between;
}

.wide-card > div:first-child {
  display: grid;
  gap: 7px;
}

.wide-card strong {
  font-size: 0.7rem;
}

.bars {
  align-items: end;
  display: flex;
  gap: 5px;
  height: 36px;
}

.bars i {
  background: var(--violet);
  border-radius: 3px 3px 1px 1px;
  height: 40%;
  width: 7px;
}

.bars i:nth-child(2) { height: 55%; }
.bars i:nth-child(3) { height: 48%; }
.bars i:nth-child(4) { height: 80%; }
.bars i:nth-child(5) { height: 68%; }
.bars i:nth-child(6) { height: 92%; }
.bars i:nth-child(7) { background: var(--aqua); height: 76%; }

.floating-card {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(11, 16, 32, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 15px;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.34);
  display: flex;
  gap: 11px;
  padding: 12px 14px;
  position: absolute;
  z-index: 3;
}

.floating-card-top {
  right: -16px;
  top: 48px;
}

.floating-card-bottom {
  bottom: 44px;
  left: 38px;
}

.floating-card div {
  display: grid;
  gap: 3px;
}

.floating-card small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.48rem;
}

.floating-card strong {
  color: var(--white);
  font-size: 0.6rem;
}

.float-icon {
  background: var(--aqua);
  border-radius: 9px;
  color: var(--ink);
  display: grid;
  font-size: 0.72rem;
  font-weight: 900;
  height: 32px;
  place-items: center;
  width: 32px;
}

.pulse-dot {
  background: var(--violet);
  border: 7px solid rgba(99, 91, 255, 0.22);
  background-clip: padding-box;
  border-radius: 50%;
  height: 32px;
  width: 32px;
}

.hero-marquee {
  align-items: center;
  color: rgba(255, 255, 255, 0.2);
  display: flex;
  font-size: clamp(1rem, 2vw, 1.6rem);
  font-weight: 800;
  gap: 30px;
  justify-content: center;
  letter-spacing: 0.12em;
  margin-top: 70px;
  overflow: hidden;
  white-space: nowrap;
}

.hero-marquee i {
  color: var(--violet);
  font-style: normal;
}

.intro-section {
  padding: 150px 0 130px;
}

.intro-grid {
  align-items: start;
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1fr);
}

.intro-grid h2,
.section-heading h2,
.metric-heading h2,
.about-copy h2,
.cta-card h2 {
  font-size: clamp(3.2rem, 6.5vw, 6.2rem);
  line-height: 0.94;
  margin-bottom: 34px;
}

.intro-grid h2 em,
.section-heading h2 em,
.about-copy h2 em {
  color: var(--violet);
}

.lead-copy {
  color: #3b4255;
  font-size: clamp(1.12rem, 1.8vw, 1.45rem);
  line-height: 1.62;
  max-width: 850px;
}

.features-section {
  background: var(--paper-warm);
  border-radius: var(--radius-large);
  padding: 130px 0;
}

.section-heading {
  align-items: end;
  display: grid;
  gap: 60px;
  grid-template-columns: 1fr minmax(280px, 0.36fr);
  margin-bottom: 70px;
}

.section-heading h2 {
  font-size: clamp(3.2rem, 5.7vw, 5.6rem);
  margin: 0;
}

.section-heading > p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 6px;
}

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

.feature-card {
  border-radius: var(--radius);
  min-height: 500px;
  overflow: hidden;
  padding: clamp(28px, 4vw, 48px);
  position: relative;
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.feature-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.feature-card-large {
  align-items: center;
  display: grid;
  gap: 45px;
  grid-column: 1 / -1;
  grid-template-columns: 0.7fr 1.3fr;
  min-height: 520px;
}

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

.feature-number {
  align-items: center;
  border: 1px solid currentColor;
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.68rem;
  font-weight: 850;
  height: 34px;
  justify-content: center;
  margin-bottom: 65px;
  opacity: 0.68;
  width: 48px;
}

.feature-card h3 {
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  line-height: 0.95;
  margin-bottom: 20px;
}

.feature-card p {
  line-height: 1.65;
  max-width: 480px;
}

.feature-violet {
  background: var(--violet);
  color: var(--white);
}

.feature-cyan {
  background: var(--aqua);
  color: var(--ink);
}

.feature-night {
  background: var(--ink);
  color: var(--white);
}

.feature-paper {
  background: #ffffff;
  color: var(--ink);
}

.feature-coral {
  background: var(--coral);
  color: var(--ink);
}

.concept-label {
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  opacity: 0.67;
  text-transform: uppercase;
}

.command-visual {
  background: rgba(255, 255, 255, 0.97);
  border-radius: 20px;
  box-shadow: 0 35px 80px rgba(30, 17, 105, 0.29);
  color: var(--ink);
  padding: 28px;
  transform: rotate(2deg);
}

.command-top,
.command-row {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.command-top {
  border-bottom: 1px solid var(--line);
  font-size: 0.82rem;
  font-weight: 850;
  margin-bottom: 25px;
  padding-bottom: 18px;
}

.command-top i {
  background: rgba(56, 215, 196, 0.2);
  border-radius: 999px;
  color: #087f72;
  font-size: 0.6rem;
  font-style: normal;
  padding: 6px 9px;
}

.command-row {
  font-size: 0.7rem;
  margin-bottom: 7px;
}

.command-row b {
  font-size: 0.66rem;
}

.command-track {
  background: #e9eaf1;
  border-radius: 999px;
  height: 7px;
  margin-bottom: 23px;
  overflow: hidden;
}

.command-track i {
  background: var(--violet);
  border-radius: inherit;
  display: block;
  height: 100%;
}

.flow-visual {
  align-items: center;
  bottom: 45px;
  display: flex;
  gap: 8px;
  left: 40px;
  position: absolute;
  right: 40px;
}

.flow-visual span {
  align-items: center;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(11, 16, 32, 0.12);
  border-radius: 13px;
  display: flex;
  flex: 1;
  font-size: 0.65rem;
  font-weight: 800;
  gap: 7px;
  min-width: 0;
  padding: 12px;
}

.flow-visual span i {
  background: var(--ink);
  border-radius: 7px;
  color: var(--white);
  display: grid;
  flex: 0 0 auto;
  font-size: 0.48rem;
  font-style: normal;
  height: 26px;
  place-items: center;
  width: 26px;
}

.flow-visual b {
  font-size: 0.7rem;
}

.intelligence-visual {
  background: linear-gradient(145deg, rgba(99, 91, 255, .34), rgba(56, 215, 196, .13));
  border: 1px solid var(--line-light);
  border-radius: 18px;
  bottom: 42px;
  left: 42px;
  padding: 24px;
  position: absolute;
  right: 42px;
}

.intelligence-visual .spark {
  color: var(--aqua);
  display: block;
  font-size: 1.3rem;
  margin-bottom: 14px;
}

.intelligence-visual p {
  font-size: 0.8rem;
  font-weight: 720;
  margin-bottom: 18px;
}

.intelligence-visual div {
  display: grid;
  gap: 7px;
}

.intelligence-visual i {
  background: rgba(255, 255, 255, .18);
  border-radius: 99px;
  display: block;
  height: 5px;
  width: 90%;
}

.intelligence-visual i:nth-child(2) { width: 72%; }
.intelligence-visual i:nth-child(3) { width: 48%; }

.knowledge-visual {
  bottom: -25px;
  height: 210px;
  left: 0;
  position: absolute;
  right: 0;
}

.doc-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 20px 48px rgba(11, 16, 32, .1);
  display: grid;
  gap: 9px;
  padding: 24px;
  position: absolute;
  width: 65%;
}

.doc-card small {
  color: var(--violet);
  font-size: 0.55rem;
  font-weight: 900;
  letter-spacing: .1em;
}

.doc-card strong { font-size: .86rem; }
.doc-card span { color: var(--muted); font-size: .62rem; }
.doc-one { left: 8%; transform: rotate(-4deg); }
.doc-two { background: var(--white); right: -4%; top: 28px; transform: rotate(5deg); }

.analytics-visual {
  align-items: end;
  bottom: 42px;
  display: flex;
  justify-content: space-between;
  left: 42px;
  position: absolute;
  right: 42px;
}

.metric {
  display: grid;
  gap: 6px;
}

.metric small { font-size: .6rem; font-weight: 800; }
.metric strong { font-size: 2.7rem; letter-spacing: -.07em; line-height: 1; }
.metric span { font-size: .62rem; font-weight: 800; }

.line-chart {
  align-items: end;
  display: flex;
  gap: 8px;
  height: 100px;
}

.line-chart i {
  background: rgba(11, 16, 32, .18);
  border-radius: 6px 6px 2px 2px;
  height: 32%;
  width: 22px;
}

.line-chart i:nth-child(2) { height: 48%; }
.line-chart i:nth-child(3) { height: 40%; }
.line-chart i:nth-child(4) { height: 68%; }
.line-chart i:nth-child(5) { height: 78%; }
.line-chart i:nth-child(6) { background: var(--ink); height: 100%; }

.feature-image {
  min-height: 500px;
  padding: 0;
}

.feature-image::after {
  background: linear-gradient(to top, rgba(11,16,32,.92) 0%, rgba(11,16,32,.18) 70%);
  content: "";
  inset: 0;
  position: absolute;
}

.feature-image > img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.feature-image-overlay {
  bottom: 0;
  color: var(--white);
  left: 0;
  padding: clamp(28px, 4vw, 48px);
  position: absolute;
  right: 0;
  z-index: 2;
}

.feature-image-overlay .feature-number { margin-bottom: 30px; }
.feature-image-overlay p:last-child { color: rgba(255,255,255,.72); margin-bottom: 0; }

.metrics-section {
  margin-top: 120px;
  padding: 135px 0;
}

.metric-heading h2 {
  margin-bottom: 80px;
}

.metric-heading h2 em,
.cta-card h2 em {
  color: var(--aqua);
}

.metrics-grid {
  border-top: 1px solid var(--line-light);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.metrics-grid > div {
  border-right: 1px solid var(--line-light);
  display: grid;
  gap: 13px;
  padding: 35px 30px 20px 0;
}

.metrics-grid > div:not(:first-child) { padding-left: 30px; }
.metrics-grid > div:last-child { border-right: 0; }
.metrics-grid strong { font-size: clamp(2.7rem, 4vw, 4.8rem); letter-spacing: -.07em; }
.metrics-grid span { color: rgba(255,255,255,.55); font-size: .82rem; line-height: 1.5; }
.metric-note { color: rgba(255,255,255,.38); font-size: .72rem; margin: 36px 0 0; }

.about-section {
  padding: 150px 0;
}

.about-grid {
  align-items: center;
  display: grid;
  gap: clamp(50px, 8vw, 120px);
  grid-template-columns: 1.05fr .95fr;
}

.about-photo {
  min-height: 650px;
  position: relative;
}

.about-photo::before {
  background: var(--aqua);
  border-radius: 50%;
  content: "";
  height: 180px;
  left: -45px;
  position: absolute;
  top: -45px;
  width: 180px;
}

.about-photo img {
  border-radius: var(--radius-large);
  height: 650px;
  object-fit: cover;
  position: relative;
  width: 100%;
}

.photo-label {
  background: var(--white);
  border-radius: 17px;
  bottom: 24px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 4px;
  left: 24px;
  padding: 18px 22px;
  position: absolute;
}

.photo-label span { color: var(--violet); font-size: .62rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.photo-label strong { font-size: .86rem; }

.about-copy h2 {
  margin-bottom: 32px;
}

.about-copy > p:not(.eyebrow):not(.lead-copy) {
  color: var(--muted);
  line-height: 1.75;
}

.about-copy .text-link { margin-top: 24px; }

.milestones-section {
  background: var(--white);
  border-radius: var(--radius-large);
  padding: 130px 0;
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.timeline::before {
  background: var(--line);
  content: "";
  left: calc(22% + 7px);
  position: absolute;
  top: 12px;
  bottom: 12px;
  width: 1px;
}

.timeline li {
  align-items: start;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 32px;
  grid-template-columns: 22% 16px 1fr;
  padding: 38px 0;
}

.timeline-year {
  color: var(--violet);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 750;
  letter-spacing: -.06em;
}

.timeline-dot {
  background: var(--white);
  border: 4px solid var(--violet);
  border-radius: 50%;
  height: 15px;
  margin-top: 16px;
  position: relative;
  width: 15px;
  z-index: 1;
}

.timeline h3 {
  font-size: clamp(1.7rem, 2.7vw, 2.8rem);
  margin: 0 0 14px;
}

.timeline p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
  max-width: 620px;
}

.trust-section {
  padding: 125px 0;
}

.logo-rail {
  align-items: center;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  color: #7c8190;
  display: grid;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(.9rem, 1.4vw, 1.2rem);
  font-weight: 700;
  gap: 24px;
  grid-template-columns: repeat(5, 1fr);
  justify-items: center;
  padding: 30px 0;
}

.logo-rail span:nth-child(1),
.logo-rail span:nth-child(3),
.logo-rail span:nth-child(5) { font-family: Inter, ui-sans-serif, sans-serif; font-size: .83em; letter-spacing: .08em; }

.testimonial {
  margin: 110px auto 0;
  max-width: 1000px;
  text-align: center;
}

.testimonial blockquote {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.5vw, 4.5rem);
  letter-spacing: -.045em;
  line-height: 1.13;
  margin: 0 0 48px;
}

.testimonial figcaption {
  align-items: center;
  display: flex;
  gap: 14px;
  justify-content: center;
  text-align: left;
}

.testimonial-avatar {
  background: var(--violet);
  border-radius: 50%;
  color: var(--white);
  display: grid;
  font-size: .65rem;
  font-weight: 850;
  height: 48px;
  place-items: center;
  width: 48px;
}

.testimonial figcaption div { display: grid; gap: 2px; }
.testimonial figcaption strong { font-size: .76rem; }
.testimonial figcaption span { color: var(--muted); font-size: .7rem; }
.testimonial figcaption small { color: #9297a5; font-size: .56rem; margin-top: 5px; }

.cta-section {
  padding: 0 0 80px;
}

.cta-card {
  background: var(--violet);
  border-radius: var(--radius-large);
  color: var(--white);
  overflow: hidden;
  padding: clamp(55px, 9vw, 120px);
  position: relative;
}

.cta-card > *:not(.cta-orb) { position: relative; z-index: 2; }
.cta-card h2 { font-size: clamp(3.4rem, 7.5vw, 7.5rem); max-width: 1050px; }
.cta-card > p:not(.eyebrow) { color: rgba(255,255,255,.72); font-size: 1.08rem; line-height: 1.7; max-width: 560px; }
.cta-actions { align-items: center; display: flex; flex-wrap: wrap; gap: 30px; margin-top: 38px; }

.cta-orb {
  background: radial-gradient(circle at 30% 30%, var(--aqua), rgba(56,215,196,.2) 42%, transparent 66%);
  border-radius: 50%;
  height: 700px;
  position: absolute;
  right: -210px;
  top: -210px;
  width: 700px;
}

.site-footer {
  background: var(--ink);
  color: var(--white);
  padding: 90px 0 34px;
}

.footer-top {
  display: grid;
  gap: 70px;
  grid-template-columns: .8fr 1.2fr;
}

.brand-footer { font-size: 1.55rem; }
.footer-brand > p { color: rgba(255,255,255,.55); line-height: 1.65; margin: 24px 0; max-width: 280px; }
.footer-demo { border: 1px solid var(--line-light); border-radius: 999px; color: rgba(255,255,255,.65); display: inline-block; font-size: .64rem; font-weight: 750; padding: 8px 11px; }

.footer-links {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(4, 1fr);
}

.footer-links div { display: flex; flex-direction: column; gap: 13px; }
.footer-links h3 { color: rgba(255,255,255,.42); font-size: .65rem; letter-spacing: .08em; margin: 0 0 9px; text-transform: uppercase; }
.footer-links a { color: rgba(255,255,255,.76); font-size: .76rem; text-decoration: none; }
.footer-links a:hover { color: var(--aqua); }

.footer-bottom {
  border-top: 1px solid var(--line-light);
  color: rgba(255,255,255,.36);
  display: grid;
  font-size: .64rem;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
  line-height: 1.6;
  margin-top: 80px;
  padding-top: 28px;
}

.footer-bottom p { margin: 0; }
.photo-credits { text-align: right; }
.photo-credits a { color: rgba(255,255,255,.55); }

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

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.7,.2,1);
}

.js .reveal-delay { transition-delay: 130ms; }
.js .reveal.is-visible { opacity: 1; transform: none; }

/* Privacy statement */
.policy-page { background: var(--paper); }
.policy-header { position: fixed; }
.policy-main { padding: calc(var(--header-height) + 90px) 0 120px; }
.policy-layout { align-items: start; display: grid; gap: clamp(60px, 9vw, 130px); grid-template-columns: minmax(260px, .7fr) minmax(0, 1.3fr); }
.policy-aside { position: sticky; top: calc(var(--header-height) + 48px); }
.policy-aside h1 { font-size: clamp(3rem, 5vw, 5.2rem); line-height: .95; margin: 0 0 25px; }
.policy-aside > p:last-of-type { color: var(--muted); font-size: .83rem; }
.policy-demo-note { background: #e7e5ff; border: 1px solid rgba(99,91,255,.22); border-radius: var(--radius-small); display: grid; gap: 7px; margin-top: 35px; padding: 20px; }
.policy-demo-note strong { color: var(--violet-dark); font-size: .75rem; }
.policy-demo-note span { color: #555c70; font-size: .72rem; line-height: 1.55; }
.policy-article { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 20px 70px rgba(11,16,32,.06); padding: clamp(30px, 5vw, 72px); }
.policy-lead { color: var(--ink); font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.55rem, 2.8vw, 2.25rem); line-height: 1.4; }
.policy-article section { border-top: 1px solid var(--line); padding-top: 30px; margin-top: 34px; }
.policy-article h2 { font-size: clamp(1.4rem, 2vw, 1.85rem); letter-spacing: -.04em; margin-bottom: 15px; }
.policy-article p,
.policy-article li { color: var(--muted); line-height: 1.75; }
.policy-article ul { display: grid; gap: 8px; padding-left: 22px; }
.policy-article strong { color: var(--ink); }
.policy-article a { color: var(--violet-dark); font-weight: 750; }
.policy-review { background: var(--ink); border-radius: var(--radius-small); color: var(--white); margin-top: 45px; padding: 26px; }
.policy-review strong { color: var(--aqua); display: block; font-size: .78rem; letter-spacing: .08em; margin-bottom: 8px; text-transform: uppercase; }
.policy-review p { color: rgba(255,255,255,.67); margin: 0; }
.policy-footer { background: var(--ink); color: rgba(255,255,255,.55); padding: 28px 0; }
.policy-footer .shell { align-items: center; display: flex; font-size: .7rem; gap: 30px; justify-content: space-between; }
.policy-footer p { margin: 0; }
.policy-footer div div { display: flex; gap: 20px; }
.policy-footer a { color: rgba(255,255,255,.75); text-decoration: none; }

@media (max-width: 1120px) {
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 780px; }
  .hero h1 { font-size: clamp(4.3rem, 10vw, 7.2rem); }
  .hero-visual { margin: 0 auto; max-width: 800px; min-height: 630px; width: 100%; }
  .product-window { left: 4%; width: 90%; }
  .feature-card-large { grid-template-columns: .8fr 1.2fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { max-width: 420px; }
}

@media (max-width: 900px) {
  :root { --header-height: 74px; }
  .shell, .nav-shell { width: calc(100% - 40px); }
  .js .nav-toggle { display: block; }
  .primary-nav { align-items: stretch; background: rgba(245,247,251,.98); border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow); display: none; flex-direction: column; gap: 5px; left: 20px; padding: 14px; position: absolute; right: 20px; top: calc(100% + 8px); }
  .primary-nav.is-open { display: flex; }
  .primary-nav > a:not(.button) { border-radius: 10px; min-height: 46px; padding: 13px 12px; }
  .primary-nav > a:not(.button):hover { background: #eceef5; }
  .primary-nav .button { margin-top: 4px; width: 100%; }
  .intro-grid { grid-template-columns: 1fr; }
  .section-heading { align-items: start; gap: 30px; grid-template-columns: 1fr; }
  .section-heading > p { max-width: 520px; }
  .feature-card-large { grid-template-columns: 1fr; }
  .feature-number { margin-bottom: 42px; }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .metrics-grid > div:nth-child(2) { border-right: 0; }
  .metrics-grid > div:nth-child(3), .metrics-grid > div:nth-child(4) { border-top: 1px solid var(--line-light); }
  .metrics-grid > div:nth-child(3) { padding-left: 0; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo, .about-photo img { min-height: 520px; height: 520px; }
  .about-copy { max-width: 700px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { grid-template-columns: 1fr; }
  .photo-credits { text-align: left; }
  .policy-layout { grid-template-columns: 1fr; }
  .policy-aside { position: static; }
}

@media (max-width: 680px) {
  .shell, .nav-shell { width: calc(100% - 30px); }
  .brand { font-size: 1.08rem; }
  .brand-mark { height: 32px; width: 32px; }
  .policy-nav > a:not(.button) { display: none; }
  .hero { border-radius: 0 0 28px 28px; padding-top: calc(var(--header-height) + 62px); }
  .hero h1 { font-size: clamp(3.65rem, 18vw, 5rem); }
  .hero-intro { font-size: 1rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 22px; }
  .hero-proof { grid-template-columns: 1fr; }
  .hero-visual { min-height: 490px; }
  .hero-texture { height: 470px; width: 100%; }
  .product-window { left: 0; top: 72px; transform: none; width: 100%; }
  .window-bar { grid-template-columns: 1fr 1.7fr; }
  .avatar-stack { display: none; }
  .window-layout { grid-template-columns: 42px 1fr; min-height: 310px; }
  .window-main { padding: 15px; }
  .window-sidebar { gap: 15px; padding-top: 18px; }
  .focus-card { padding: 14px; }
  .focus-card strong { max-width: 150px; }
  .mini-card { padding: 10px; }
  .floating-card-top { right: -5px; top: 32px; }
  .floating-card-bottom { bottom: 0; left: 14px; }
  .hero-marquee { gap: 16px; margin-top: 45px; }
  .intro-section, .about-section { padding: 95px 0; }
  .features-section, .milestones-section { border-radius: 28px; padding: 90px 0; }
  .intro-grid h2, .section-heading h2, .metric-heading h2, .about-copy h2, .cta-card h2 { font-size: clamp(3rem, 14vw, 4.4rem); }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card, .feature-image { min-height: 470px; }
  .feature-card-large { grid-column: auto; }
  .command-visual { padding: 20px; transform: none; }
  .flow-visual { left: 24px; right: 24px; }
  .flow-visual b { display: none; }
  .flow-visual span { flex-direction: column; padding: 9px 5px; text-align: center; }
  .intelligence-visual, .analytics-visual { bottom: 26px; left: 26px; right: 26px; }
  .line-chart { gap: 5px; }
  .line-chart i { width: 13px; }
  .metrics-section { margin-top: 70px; padding: 90px 0; }
  .metric-heading h2 { margin-bottom: 55px; }
  .metrics-grid { grid-template-columns: 1fr; }
  .metrics-grid > div, .metrics-grid > div:not(:first-child) { border-right: 0; border-top: 1px solid var(--line-light); padding: 25px 0; }
  .metrics-grid > div:first-child { border-top: 0; }
  .about-photo, .about-photo img { height: 420px; min-height: 420px; }
  .about-photo::before { height: 120px; left: -20px; top: -25px; width: 120px; }
  .timeline::before { left: 7px; }
  .timeline li { gap: 18px; grid-template-columns: 16px 1fr; padding: 28px 0; }
  .timeline-year { grid-column: 2; grid-row: 1; }
  .timeline-dot { grid-column: 1; grid-row: 1; margin-top: 12px; }
  .timeline li > div:last-child { grid-column: 2; grid-row: 2; }
  .trust-section { padding: 85px 0; }
  .logo-rail { grid-template-columns: repeat(2, 1fr); }
  .logo-rail span:last-child { grid-column: 1 / -1; }
  .testimonial { margin-top: 75px; }
  .testimonial figcaption { align-items: flex-start; }
  .testimonial figcaption small { max-width: 240px; }
  .cta-section { padding-bottom: 30px; }
  .cta-card { border-radius: 28px; }
  .cta-actions { align-items: flex-start; flex-direction: column; }
  .site-footer { padding-top: 70px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .policy-main { padding: calc(var(--header-height) + 55px) 0 75px; }
  .policy-aside h1 { font-size: 3.2rem; }
  .policy-article { border-radius: 20px; }
  .policy-footer .shell { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .reveal, .js .reveal { opacity: 1; transform: none; }
}

@media (forced-colors: active) {
  .button, .brand-mark, .feature-card, .product-window, .cta-card { border: 1px solid ButtonText; }
}
