:root {
  --brand: #005cd6;
  --brand-strong: #064fb6;
  --brand-dark: #063b84;
  --sky: #25bdff;
  --ink: #0f172a;
  --ink-soft: #334155;
  --muted: #64748b;
  --line: #e2e8f0;
  --surface: #ffffff;
  --surface-soft: #f8fafc;
  --surface-blue: #eff6ff;
  --success: #16a66b;
  --warning: #e89a00;
  --danger: #dc2626;
  --violet: #7c4ed8;
  --radius-control: 11px;
  --radius-panel: 22px;
  --shadow-soft: 0 16px 45px rgba(15, 23, 42, 0.08);
  --shadow-product: 0 36px 90px rgba(0, 45, 111, 0.24);
  --header-height: 72px;
  --page-width: 1240px;
  color-scheme: light;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

html,
body {
  max-width: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: "Quicksand", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

@supports not (overflow: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}

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

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid rgba(37, 189, 255, 0.72);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 2000;
  padding: 10px 16px;
  border-radius: 9px;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.section-shell,
.header-inner {
  width: min(calc(100% - 48px), var(--page-width));
  margin-inline: auto;
}

.button {
  display: inline-flex;
  max-width: 100%;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: var(--radius-control);
  padding: 11px 18px;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  overflow-wrap: anywhere;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

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

.button svg,
.audience-pane > a svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-primary {
  background: var(--brand);
  box-shadow: 0 10px 24px rgba(0, 92, 214, 0.2);
  color: #fff;
}

.button-primary:hover {
  background: var(--brand-strong);
  box-shadow: 0 13px 28px rgba(0, 92, 214, 0.26);
}

.button-secondary {
  border-color: rgba(0, 92, 214, 0.24);
  background: rgba(255, 255, 255, 0.82);
  color: var(--brand);
  backdrop-filter: blur(12px);
}

.button-secondary:hover {
  border-color: var(--brand);
  background: #fff;
}

.button-ghost {
  border-color: var(--line);
  background: #fff;
  color: var(--ink-soft);
}

.button-white {
  background: #fff;
  box-shadow: 0 14px 30px rgba(1, 33, 82, 0.2);
  color: var(--brand);
}

.button-white:hover {
  box-shadow: 0 18px 38px rgba(1, 33, 82, 0.28);
}

.button-outline-white {
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.button-outline-white:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.button-large {
  min-height: 52px;
  padding: 14px 22px;
  font-size: 16px;
}

.button-small {
  min-height: 40px;
  padding: 9px 14px;
  font-size: 14px;
}

.section-kicker,
.eyebrow,
.interface-label {
  margin: 0;
  color: var(--brand);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-title {
  max-width: 830px;
  margin: 12px 0 0;
  color: var(--ink);
  font-size: clamp(36px, 4.2vw, 60px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.section-lead {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.7;
}

/* Cookie preferences */

.cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1500;
  display: none;
  width: min(680px, calc(100% - 40px));
  align-items: center;
  gap: 22px;
  justify-content: space-between;
  padding: 18px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 70px rgba(15, 23, 42, 0.22);
  backdrop-filter: blur(18px);
}

.cookie-banner.is-visible {
  display: flex;
  animation: cookie-in 260ms ease both;
}

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

.cookie-copy strong {
  display: block;
  margin-bottom: 2px;
  font-size: 14px;
}

.cookie-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.cookie-copy a {
  color: var(--brand);
  font-weight: 700;
}

.cookie-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
}

@keyframes cookie-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  border-bottom: 1px solid rgba(226, 232, 240, 0.84);
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  transition:
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
}

.header-inner {
  display: flex;
  min-width: 0;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  min-width: 0;
  flex: 0 0 auto;
  align-items: center;
}

.brand img {
  width: 152px;
  height: auto;
}

.site-navigation {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 27px;
}

.site-navigation > a:not(.button) {
  position: relative;
  color: #3d4b61;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.site-navigation > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--brand);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-navigation > a:not(.button):hover {
  color: var(--brand);
}

.site-navigation > a:not(.button):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-navigation .nav-login {
  color: var(--brand);
}

.nav-demo {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 14px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

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

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

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

/* Hero */

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: calc(100svh - var(--header-height));
  background:
    radial-gradient(circle at 77% 43%, rgba(37, 189, 255, 0.19), transparent 28%),
    radial-gradient(circle at 58% 90%, rgba(0, 92, 214, 0.09), transparent 34%),
    linear-gradient(116deg, #f8fbff 0%, #f4f9ff 52%, #eaf5ff 100%);
}

.hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 92, 214, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 92, 214, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  mask-image: linear-gradient(90deg, transparent, #000 44%, #000 100%);
}

.hero-grid {
  display: grid;
  width: min(calc(100% - 48px), 1400px);
  min-height: calc(100svh - var(--header-height));
  align-items: center;
  gap: clamp(28px, 5vw, 86px);
  grid-template-columns: minmax(380px, 0.84fr) minmax(610px, 1.16fr);
  margin-inline: auto;
  padding: clamp(28px, 5.5svh, 44px) 0 clamp(36px, 7svh, 58px);
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 610px;
}

.hero-copy h1 {
  margin: 18px 0 0;
  color: var(--ink);
  font-size: clamp(48px, 5.3vw, 76px);
  font-weight: 700;
  letter-spacing: -0.058em;
  line-height: 0.98;
}

.hero-copy h1 span {
  display: block;
  margin-top: 9px;
  color: var(--brand);
}

.hero-lead {
  max-width: 590px;
  margin: 26px 0 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.45vw, 20px);
  font-weight: 500;
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.mailto-note {
  max-width: 520px;
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.hero-assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 24px;
  color: #3d4b61;
  font-size: 13px;
  font-weight: 700;
}

.hero-assurances span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-assurances svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--success);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.hero-visual {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 820px;
  min-width: 0;
  justify-self: end;
  perspective: 1600px;
}

.product-window {
  position: relative;
  z-index: 2;
  overflow: hidden;
  width: 100%;
  min-height: clamp(480px, 72svh, 585px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-product);
  transform: rotateY(-4deg) rotateX(1deg);
  transform-origin: center left;
}

.visual-glow {
  position: absolute;
  z-index: 1;
  right: -100px;
  bottom: -90px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(37, 189, 255, 0.24);
  filter: blur(70px);
}

.product-topbar {
  display: flex;
  height: 42px;
  align-items: center;
  border-bottom: 1px solid #e9eef5;
  background: #f8fafc;
  color: #8795a9;
  font-size: 10px;
}

.window-dots {
  display: flex;
  width: 100px;
  gap: 6px;
  padding-left: 16px;
}

.window-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d4dbe5;
}

.window-dots span:nth-child(1) {
  background: #f3a5a5;
}

.window-dots span:nth-child(2) {
  background: #f3ce76;
}

.window-dots span:nth-child(3) {
  background: #8ed5b5;
}

.product-url {
  flex: 1;
  text-align: center;
}

.window-secure {
  display: flex;
  width: 100px;
  justify-content: flex-end;
  padding-right: 16px;
}

.window-secure svg {
  width: 13px;
  fill: none;
  stroke: #8aa0ba;
  stroke-width: 1.7;
}

.product-app {
  display: grid;
  min-height: clamp(437px, calc(72svh - 43px), 542px);
  grid-template-columns: 64px 1fr;
  background: #f5f7fb;
}

.product-sidebar {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 12px;
  border-right: 1px solid #e5eaf1;
  padding: 17px 10px;
  background: #fff;
}

.sidebar-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  margin-bottom: 11px;
  background: var(--brand);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

.sidebar-item {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 10px;
  color: #8291a7;
}

.sidebar-item.active {
  background: #eaf3ff;
  color: var(--brand);
}

.sidebar-item svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.workspace-preview {
  min-width: 0;
  padding: 30px 30px 24px;
}

.workspace-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.workspace-heading .workspace-title {
  display: block;
  margin: 4px 0 0;
  color: #111827;
  font-size: 23px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.workspace-heading p {
  margin: 5px 0 0;
  color: #7b899c;
  font-size: 11px;
}

.status-badge {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 7px;
  border: 1px solid #c7dcff;
  border-radius: 999px;
  padding: 7px 11px;
  background: #edf5ff;
  color: var(--brand);
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
}

.status-badge::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
  content: "";
}

.workflow {
  display: grid;
  align-items: start;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
  margin-top: 29px;
}

.workflow-step {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 5px;
  color: #9aa7b9;
  font-size: 8px;
  font-weight: 700;
  white-space: nowrap;
}

.workflow-step span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 2px solid #dce3ec;
  border-radius: 50%;
  background: #fff;
  font-size: 9px;
}

.workflow-step.complete,
.workflow-step.active {
  color: var(--brand);
}

.workflow-step.complete span {
  border-color: var(--success);
  background: var(--success);
  color: #fff;
}

.workflow-step.active span {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px #e5f0ff;
  color: var(--brand);
}

.workflow-line {
  height: 2px;
  margin-top: 11px;
  background: #dce3ec;
}

.workflow-line.complete {
  background: var(--success);
}

.workflow-line.active {
  background: linear-gradient(90deg, var(--success), var(--brand));
}

.workspace-summary {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
  margin-top: 28px;
}

.progress-block {
  border: 1px solid #e4e9f0;
  border-radius: 15px;
  padding: 15px;
  background: #fff;
}

.progress-title {
  display: grid;
  align-items: center;
  gap: 8px;
  grid-template-columns: auto 1fr auto;
  color: #57677c;
  font-size: 10px;
  font-weight: 700;
}

.progress-title strong {
  color: #1c2c42;
  font-size: 12px;
}

.progress-icon {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 8px;
  background: #edf5ff;
  color: var(--brand);
}

.progress-icon.success {
  background: #ebf8f2;
  color: var(--success);
}

.progress-icon svg {
  width: 14px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.progress-track {
  overflow: hidden;
  height: 5px;
  border-radius: 999px;
  margin-top: 13px;
  background: #ecf0f4;
}

.progress-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--success);
}

.progress-track.documents span {
  background: var(--brand);
}

.workspace-table {
  overflow: hidden;
  border: 1px solid #e4e9f0;
  border-radius: 15px;
  margin-top: 14px;
  background: #fff;
}

.table-head,
.table-row {
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr auto;
}

.table-head {
  grid-template-columns: 1fr auto;
  border-bottom: 1px solid #edf0f5;
  padding: 12px 14px;
  color: #23334b;
  font-size: 11px;
  font-weight: 700;
}

.table-head button {
  border: 0;
  background: transparent;
  color: var(--brand);
  font-size: 9px;
  font-weight: 700;
}

.table-row {
  gap: 10px;
  padding: 12px 14px;
}

.table-row + .table-row {
  border-top: 1px solid #f0f2f6;
}

.table-row > span:nth-child(2) {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.table-row strong {
  color: #26354a;
  font-size: 10px;
}

.table-row small {
  overflow: hidden;
  color: #8b98aa;
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.table-row em {
  border-radius: 999px;
  padding: 5px 8px;
  background: #eaf8f2;
  color: var(--success);
  font-size: 8px;
  font-style: normal;
  font-weight: 700;
}

.table-row em.pending {
  background: #fff6e5;
  color: #b87300;
}

.row-check {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 8px;
  background: #fff6e5;
  color: #d38d10;
}

.row-check.checked {
  background: #eaf8f2;
  color: var(--success);
}

.row-check svg {
  width: 14px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

/* Press */

.press-strip {
  border-top: 1px solid #edf1f6;
  border-bottom: 1px solid #edf1f6;
  background: #fff;
}

.press-inner {
  display: flex;
  min-height: 110px;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.press-inner > p {
  flex: 0 0 auto;
  margin: 0;
  color: #64748b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.press-logos {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(32px, 6vw, 90px);
}

.press-logos a {
  display: inline-flex;
  align-items: center;
  opacity: 0.62;
  filter: grayscale(1);
  transition:
    opacity 180ms ease,
    filter 180ms ease,
    transform 180ms ease;
}

.press-logos a:hover {
  opacity: 1;
  filter: grayscale(0);
  transform: translateY(-1px);
}

.press-logos img {
  width: auto;
  max-width: 155px;
  max-height: 34px;
  object-fit: contain;
}

/* Problem */

.problem-section {
  padding: 128px 0;
}

.problem-grid {
  display: grid;
  align-items: start;
  gap: 34px 64px;
  grid-template-columns: 0.28fr 1fr;
}

.problem-grid > .section-kicker {
  padding-top: 10px;
}

.problem-outcomes {
  display: grid;
  grid-column: 2;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.problem-outcomes > div {
  padding: 30px 28px 0 0;
}

.problem-outcomes > div + div {
  border-left: 1px solid var(--line);
  padding-left: 28px;
}

.problem-outcomes span {
  color: var(--brand);
  font-size: 12px;
  font-weight: 700;
}

.problem-outcomes p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.problem-outcomes strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 17px;
}

/* Solution index */

.solutions-section {
  padding: 0 0 128px;
}

.solutions-section .section-title {
  max-width: 760px;
}

.solution-links {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 48px;
}

.solution-link {
  display: flex;
  min-width: 0;
  min-height: 286px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.035);
  color: inherit;
  text-decoration: none;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.solution-link:hover {
  border-color: rgba(0, 92, 214, 0.32);
  box-shadow: 0 20px 46px rgba(0, 66, 153, 0.1);
  transform: translateY(-3px);
}

.solution-link > span {
  color: var(--brand);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.solution-link h3 {
  margin: 20px 0 0;
  font-size: clamp(20px, 1.7vw, 25px);
  letter-spacing: -0.03em;
  line-height: 1.22;
}

.solution-link p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.solution-link em {
  margin-top: auto;
  padding-top: 22px;
  color: var(--brand);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
}

/* Story */

.story-section {
  position: relative;
  padding: 124px 0 148px;
  background:
    radial-gradient(circle at 85% 20%, rgba(37, 189, 255, 0.08), transparent 20%),
    #071a38;
  color: #fff;
}

.story-section .section-kicker {
  color: #70d5ff;
}

.story-section .section-title {
  color: #fff;
}

.story-section .section-lead {
  color: #aebbd0;
}

.story-heading {
  margin-bottom: 82px;
}

.story-layout {
  display: grid;
  align-items: start;
  gap: clamp(46px, 7vw, 100px);
  grid-template-columns: minmax(330px, 0.72fr) minmax(540px, 1.28fr);
}

.story-steps {
  min-width: 0;
}

.story-step {
  display: grid;
  min-height: 250px;
  align-content: center;
  gap: 20px;
  grid-template-columns: 38px 1fr;
  border-left: 2px solid rgba(255, 255, 255, 0.11);
  padding: 28px 0 28px 30px;
  opacity: 0.48;
  cursor: pointer;
  transition:
    border-color 220ms ease,
    opacity 220ms ease,
    transform 220ms ease;
}

.story-step:hover,
.story-step:focus-visible,
.story-step.is-active {
  border-left-color: var(--sky);
  opacity: 1;
}

.story-step.is-active {
  transform: translateX(4px);
}

.story-number {
  color: #70d5ff;
  font-size: 12px;
  font-weight: 700;
}

.story-step h3 {
  margin: -4px 0 0;
  color: #fff;
  font-size: clamp(23px, 2.2vw, 30px);
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.story-step p {
  max-width: 500px;
  margin: 13px 0 0;
  color: #aebbd0;
  font-size: 15px;
  line-height: 1.7;
}

.story-stage {
  position: sticky;
  top: calc(var(--header-height) + 32px);
  overflow: hidden;
  min-height: 610px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 26px;
  background: #f7f9fc;
  box-shadow: 0 36px 80px rgba(0, 0, 0, 0.28);
  color: var(--ink);
}

.story-stage::before {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  left: 0;
  height: 42px;
  border-bottom: 1px solid #e4e9f0;
  background: #fff;
  content: "";
}

.story-stage::after {
  position: absolute;
  z-index: 2;
  top: 17px;
  left: 20px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f3a5a5;
  box-shadow: 13px 0 #f3ce76, 26px 0 #8ed5b5;
  content: "";
}

.story-panel {
  position: absolute;
  z-index: 3;
  inset: 42px 0 0;
  visibility: hidden;
  overflow: hidden;
  padding: 45px clamp(28px, 4vw, 48px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition:
    opacity 260ms ease,
    transform 260ms ease;
}

.story-panel.is-active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.panel-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.panel-topline > div:first-child > span {
  display: block;
  color: var(--brand);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.panel-topline h3 {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: clamp(24px, 2.5vw, 34px);
  letter-spacing: -0.035em;
  line-height: 1.16;
}

.profile-chip {
  border: 1px solid #d3e3fa;
  border-radius: 999px;
  padding: 7px 11px;
  background: #eaf3ff;
  color: var(--brand);
  font-size: 9px;
  font-weight: 700;
  white-space: nowrap;
}

.recommendation-list {
  overflow: hidden;
  border: 1px solid #e2e7ee;
  border-radius: 17px;
  margin-top: 38px;
  background: #fff;
}

.recommendation-row {
  display: grid;
  align-items: center;
  gap: 14px;
  grid-template-columns: auto 1fr auto;
  padding: 20px;
}

.recommendation-row + .recommendation-row {
  border-top: 1px solid #edf0f4;
}

.entity-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 11px;
  font-size: 11px;
  font-weight: 700;
}

.entity-mark.blue {
  background: #eaf3ff;
  color: var(--brand);
}

.entity-mark.green {
  background: #eaf8f2;
  color: var(--success);
}

.entity-mark.violet {
  background: #f1ebff;
  color: var(--violet);
}

.recommendation-main,
.score {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.recommendation-main strong {
  color: #23334a;
  font-size: 13px;
}

.recommendation-main small {
  overflow: hidden;
  margin-top: 2px;
  color: #8390a3;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.score {
  align-items: flex-end;
  color: var(--brand);
}

.score strong {
  font-size: 15px;
}

.score small {
  color: #64748b;
  font-size: 8px;
}

.panel-caption {
  margin: 13px 0 0;
  color: #929fb1;
  font-size: 9px;
  text-align: right;
}

.completion-ring {
  display: grid;
  width: 60px;
  height: 60px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--success) var(--progress), #e4e9f0 0);
}

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

.completion-ring span {
  position: relative;
  z-index: 1;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
}

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

.requirement-list,
.document-list {
  overflow: hidden;
  border: 1px solid #e2e7ee;
  border-radius: 17px;
  margin-top: 38px;
  background: #fff;
}

.requirement-list > div,
.document-list > div {
  display: grid;
  align-items: center;
  gap: 13px;
  grid-template-columns: auto 1fr auto;
  padding: 18px;
}

.requirement-list > div + div,
.document-list > div + div {
  border-top: 1px solid #edf0f4;
}

.requirement-list > div > span:nth-child(2),
.document-list > div > span:nth-child(2) {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.requirement-list strong,
.document-list strong {
  color: #23334a;
  font-size: 12px;
}

.requirement-list small,
.document-list small {
  margin-top: 2px;
  color: #8491a3;
  font-size: 9px;
}

.requirement-list em,
.document-list em {
  border-radius: 999px;
  padding: 5px 8px;
  background: #eaf8f2;
  color: var(--success);
  font-size: 8px;
  font-style: normal;
  font-weight: 700;
}

.requirement-list em.open-label,
.document-list em.missing-label {
  background: #fff1f1;
  color: var(--danger);
}

.requirement-check,
.file-icon {
  display: grid;
  width: 33px;
  height: 33px;
  place-items: center;
  border-radius: 9px;
}

.requirement-check.checked {
  background: #eaf8f2;
  color: var(--success);
}

.requirement-check.open {
  background: #fff1f1;
  color: var(--danger);
}

.requirement-check svg,
.file-icon svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.stage-workflow {
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
  margin-top: 54px;
}

.stage-step {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 8px;
  color: #94a0b1;
}

.stage-step span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 2px solid #dce2eb;
  border-radius: 50%;
  background: #fff;
  font-size: 10px;
  font-weight: 700;
}

.stage-step strong {
  font-size: 9px;
  white-space: nowrap;
}

.stage-step.done {
  color: var(--success);
}

.stage-step.done span {
  border-color: var(--success);
  background: var(--success);
  color: #fff;
}

.stage-step.active {
  color: var(--brand);
}

.stage-step.active span {
  border-color: var(--brand);
  box-shadow: 0 0 0 5px #e7f1ff;
}

.stage-line {
  height: 2px;
  margin-top: -17px;
  background: #dce2eb;
}

.stage-line.done {
  background: var(--success);
}

.workspace-metrics {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr 1fr;
  margin-top: 40px;
}

.workspace-metrics > div {
  display: flex;
  flex-direction: column;
  border: 1px solid #e2e7ee;
  border-radius: 15px;
  padding: 18px;
  background: #fff;
}

.workspace-metrics span {
  color: var(--brand);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.workspace-metrics strong {
  margin-top: 8px;
  color: #23334a;
  font-size: 13px;
}

.workspace-metrics small {
  margin-top: 3px;
  color: #8b97a9;
  font-size: 9px;
}

.import-line {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #c7dcff;
  border-radius: 14px;
  margin-top: 14px;
  padding: 14px;
  background: #edf5ff;
  color: #45607f;
  font-size: 10px;
}

.import-line svg {
  width: 19px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--brand);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.import-line strong {
  color: var(--brand);
}

.document-total {
  border: 1px solid #d3e3fa;
  border-radius: 999px;
  padding: 7px 11px;
  background: #eaf3ff;
  color: var(--brand);
  font-size: 9px;
  font-weight: 700;
}

.document-progress {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
}

.document-progress > span {
  overflow: hidden;
  height: 7px;
  flex: 1;
  border-radius: 999px;
  background: #e2e7ee;
}

.document-progress i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--brand);
}

.document-progress strong {
  color: var(--brand);
  font-size: 10px;
}

.document-list {
  margin-top: 20px;
}

.file-icon {
  background: #eaf3ff;
  color: var(--brand);
}

.file-icon.missing {
  background: #fff1f1;
  color: var(--danger);
}

/* AI */

.ai-section {
  padding: 140px 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(37, 189, 255, 0.09), transparent 24%),
    #f7fbff;
}

.ai-grid {
  display: grid;
  align-items: center;
  gap: clamp(54px, 8vw, 120px);
  grid-template-columns: minmax(340px, 0.86fr) minmax(520px, 1.14fr);
}

.feature-lines {
  display: grid;
  gap: 13px;
  margin: 28px 0 0;
  padding: 0;
  color: #44556c;
  font-size: 14px;
  font-weight: 700;
  list-style: none;
}

.feature-lines li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-lines svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--success);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.chat-preview {
  overflow: hidden;
  border: 1px solid #dfe6ef;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #edf0f4;
  padding: 16px 18px;
}

.ai-avatar {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  background: #eaf3ff;
  color: var(--brand);
}

.ai-avatar svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.chat-header > span:nth-child(2) {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.chat-header strong {
  color: #1a2a40;
  font-size: 13px;
}

.chat-header small {
  color: #8a97a9;
  font-size: 9px;
}

.online-dot {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--success);
  font-size: 9px;
  font-weight: 700;
}

.online-dot::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  content: "";
}

.chat-body {
  display: flex;
  min-height: 380px;
  align-items: flex-end;
  flex-direction: column;
  justify-content: flex-end;
  gap: 22px;
  padding: 26px 26px 20px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.94)),
    radial-gradient(circle at 20% 0%, rgba(37, 189, 255, 0.15), transparent 38%);
}

.user-message {
  max-width: 76%;
  border-radius: 16px 16px 4px 16px;
  padding: 13px 15px;
  background: var(--brand);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}

.ai-message {
  display: flex;
  width: 100%;
  align-items: flex-start;
  gap: 10px;
}

.mini-avatar {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid #d7e6fa;
  border-radius: 50%;
  background: #fff;
  color: var(--brand);
  font-size: 8px;
  font-weight: 700;
}

.ai-message > div {
  max-width: calc(100% - 40px);
  border: 1px solid #e2e7ee;
  border-radius: 4px 16px 16px;
  padding: 15px;
  background: #fff;
}

.ai-message p {
  margin: 0;
  color: #46566d;
  font-size: 11px;
  line-height: 1.7;
}

.ai-message button {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 1px solid #d9e7fa;
  border-radius: 999px;
  margin: 12px 5px 0 0;
  padding: 6px 8px;
  background: #f6faff;
  color: var(--brand);
  font-size: 8px;
  font-weight: 700;
}

.ai-message button svg {
  width: 11px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.chat-composer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #edf0f4;
  padding: 14px 16px;
  color: #9aa5b5;
  font-size: 10px;
}

.chat-composer button {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 0;
  border-radius: 10px;
  background: var(--brand);
  color: #fff;
}

.chat-composer svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

/* Audiences */

.audience-section {
  padding: 136px 0;
}

.audience-heading {
  display: grid;
  align-items: end;
  gap: 30px;
  grid-template-columns: 0.34fr 1fr;
  margin-bottom: 66px;
}

.audience-heading .section-title {
  margin-top: 0;
}

.audience-grid {
  display: grid;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: 1fr 1fr;
}

.audience-pane {
  padding: 54px clamp(30px, 5vw, 72px) 56px 0;
}

.audience-pane + .audience-pane {
  border-left: 1px solid var(--line);
  padding-right: 0;
  padding-left: clamp(30px, 5vw, 72px);
}

.audience-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 14px;
  background: #eaf3ff;
  color: var(--brand);
}

.audience-icon svg {
  width: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.audience-pane > p {
  margin: 28px 0 0;
  color: var(--brand);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.audience-pane h3 {
  max-width: 530px;
  margin: 13px 0 0;
  color: var(--ink);
  font-size: clamp(25px, 2.6vw, 35px);
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.audience-pane ul {
  display: grid;
  gap: 11px;
  margin: 30px 0 0;
  padding: 0;
  color: #526177;
  font-size: 14px;
  list-style: none;
}

.audience-pane li {
  position: relative;
  padding-left: 22px;
}

.audience-pane li::before {
  position: absolute;
  top: 0.66em;
  left: 0;
  width: 8px;
  height: 8px;
  border: 2px solid var(--brand);
  border-radius: 50%;
  content: "";
}

.audience-pane > a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 34px;
  color: var(--brand);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.audience-pane > a:hover svg {
  transform: translateX(3px);
}

.audience-pane > a svg {
  transition: transform 180ms ease;
}

.audience-pane-beta {
  position: relative;
}

.audience-status {
  display: inline-flex;
  margin-top: 22px;
  border: 1px solid rgba(0, 92, 214, 0.18);
  border-radius: 999px;
  padding: 6px 10px;
  background: #eff6ff;
  color: var(--brand);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.11em;
}

.audience-pane-beta > p {
  margin-top: 15px;
}

/* Stories */

.stories-section {
  padding: 136px 0;
  background: var(--surface-soft);
}

.stories-heading {
  display: grid;
  align-items: end;
  gap: 50px;
  grid-template-columns: 1.2fr 0.8fr;
  margin-bottom: 56px;
}

.stories-heading .section-lead {
  margin: 0;
  font-size: 17px;
}

.video-stories {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.12fr 0.94fr 0.94fr;
}

.video-story {
  overflow: hidden;
  border: 1px solid #e1e7ef;
  border-radius: 19px;
  margin: 0;
  background: #fff;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.06);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.video-story:hover {
  border-color: #bed8fb;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.1);
  transform: translateY(-2px);
}

.video-story video {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #0b1830;
  object-fit: cover;
}

.video-story figcaption {
  display: flex;
  flex-direction: column;
  padding: 15px 17px 17px;
}

.video-story figcaption strong {
  color: #1e2d42;
  font-size: 14px;
}

.video-story figcaption span {
  margin-top: 1px;
  color: #64748b;
  font-size: 10px;
}

/* Pricing */

.pricing-section {
  position: relative;
  overflow: hidden;
  padding: 142px 0 130px;
  background:
    radial-gradient(circle at 50% -20%, rgba(37, 189, 255, 0.17), transparent 38%),
    #071a35;
  color: #fff;
}

.pricing-section::after {
  position: absolute;
  right: -280px;
  bottom: -390px;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.pricing-heading {
  display: block;
}

.pricing-section .section-kicker {
  color: #75d8ff;
}

.pricing-section .section-title {
  max-width: 870px;
  color: #fff;
}

.pricing-section .section-lead {
  margin: 0;
  color: rgba(226, 238, 255, 0.72);
  font-size: 17px;
}

.pricing-plans {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: stretch;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 68px;
}

.pricing-plan {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  border: 1px solid rgba(173, 205, 244, 0.2);
  border-radius: 22px;
  padding: 34px 30px 30px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 22px 54px rgba(0, 8, 25, 0.16);
}

.pricing-plan.reveal {
  transition:
    opacity 560ms cubic-bezier(0.2, 0.68, 0.2, 1),
    transform 560ms cubic-bezier(0.2, 0.68, 0.2, 1),
    border-color 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease;
}

.pricing-plan-featured {
  border-color: #fff;
  background: #fff;
  box-shadow: 0 28px 70px rgba(0, 8, 25, 0.34);
  color: var(--ink);
}

.pricing-plan:hover {
  border-color: rgba(117, 216, 255, 0.62);
  box-shadow: 0 30px 72px rgba(0, 8, 25, 0.28);
  transform: translateY(-4px);
}

.pricing-plan-featured:hover {
  border-color: #fff;
  box-shadow: 0 34px 78px rgba(0, 8, 25, 0.38);
}

.plan-popular {
  position: absolute;
  top: 18px;
  right: 20px;
  border-radius: 999px;
  padding: 6px 9px;
  background: #dff6ff;
  color: var(--brand);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.plan-heading {
  display: flex;
  min-height: 132px;
  justify-content: space-between;
  flex-direction: column;
  gap: 24px;
}

.plan-label {
  margin: 0;
  color: #76d9ff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.pricing-plan-featured .plan-label {
  color: var(--brand);
}

.plan-heading h3 {
  max-width: 310px;
  margin: 7px 0 0;
  color: inherit;
  font-size: 21px;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin: 0;
}

.plan-price strong {
  font-size: clamp(42px, 4vw, 54px);
  letter-spacing: -0.06em;
  line-height: 1;
}

.plan-price span {
  color: rgba(226, 238, 255, 0.62);
  font-size: 12px;
  font-weight: 600;
}

.pricing-plan-featured .plan-price span {
  color: var(--muted);
}

.plan-description {
  min-height: 78px;
  margin: 24px 0 0;
  color: rgba(226, 238, 255, 0.72);
  font-size: 14px;
  line-height: 1.65;
}

.pricing-plan-featured .plan-description {
  color: var(--muted);
}

.plan-usage {
  display: grid;
  gap: 0;
  margin: 25px 0 0;
  border-top: 1px solid rgba(173, 205, 244, 0.18);
  border-bottom: 1px solid rgba(173, 205, 244, 0.18);
}

.pricing-plan-featured .plan-usage {
  border-color: var(--line);
}

.plan-usage > div {
  display: flex;
  min-height: 55px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.plan-usage > div + div {
  border-top: 1px solid rgba(173, 205, 244, 0.12);
}

.pricing-plan-featured .plan-usage > div + div {
  border-color: #edf1f6;
}

.plan-usage dt {
  color: rgba(226, 238, 255, 0.65);
  font-size: 11px;
}

.pricing-plan-featured .plan-usage dt {
  color: var(--muted);
}

.plan-usage dd {
  margin: 0;
  color: inherit;
  font-size: 12px;
  font-weight: 700;
  text-align: right;
}

.plan-features {
  display: grid;
  gap: 12px;
  margin: 26px 0 30px;
  padding: 0;
  color: rgba(239, 246, 255, 0.84);
  font-size: 13px;
  list-style: none;
}

.pricing-plan-featured .plan-features {
  color: #40516a;
}

.plan-features li {
  position: relative;
  padding-left: 22px;
}

.plan-features li::before {
  position: absolute;
  top: 0.3em;
  left: 0;
  width: 13px;
  height: 7px;
  border-bottom: 2px solid #65d3ff;
  border-left: 2px solid #65d3ff;
  content: "";
  transform: rotate(-45deg);
}

.pricing-plan-featured .plan-features li::before {
  border-color: var(--brand);
}

.pricing-plan .plan-button {
  width: 100%;
  margin-top: auto;
  border-color: rgba(255, 255, 255, 0.4);
  background: #fff;
  color: var(--brand);
}

.pricing-plan .plan-button:hover {
  border-color: #fff;
  background: #f4f9ff;
  box-shadow: 0 12px 28px rgba(0, 8, 25, 0.2);
}

.pricing-plan-featured .plan-button {
  border-color: transparent;
  background: var(--brand);
  color: #fff;
}

.pricing-plan-featured .plan-button:hover {
  background: var(--brand-strong);
}

.plan-annual {
  min-height: 34px;
  margin: 13px 0 0;
  color: rgba(226, 238, 255, 0.58);
  font-size: 10px;
  text-align: center;
}

.pricing-plan-featured .plan-annual {
  color: var(--muted);
}

.pricing-scope {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 28px;
  border-top: 1px solid rgba(173, 205, 244, 0.22);
  border-bottom: 1px solid rgba(173, 205, 244, 0.22);
  padding: 24px 0;
}

.pricing-scope p {
  margin: 0;
  color: rgba(226, 238, 255, 0.72);
  font-size: 14px;
}

.pricing-scope strong {
  color: #fff;
}

.pricing-scope a {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 9px;
  color: #78dbff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.pricing-scope a:hover {
  color: #fff;
}

.pricing-scope svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transition: transform 180ms ease;
}

.pricing-scope a:hover svg {
  transform: translateX(3px);
}

.pricing-note {
  max-width: 900px;
  margin: 18px 0 0;
  color: rgba(226, 238, 255, 0.48);
  font-size: 10px;
  line-height: 1.65;
}

/* FAQ */

.faq-section {
  padding: 136px 0 150px;
}

.faq-grid {
  display: grid;
  align-items: start;
  gap: clamp(58px, 9vw, 130px);
  grid-template-columns: minmax(300px, 0.72fr) minmax(500px, 1.28fr);
}

.faq-heading {
  position: sticky;
  top: calc(var(--header-height) + 42px);
}

.faq-heading .section-title {
  font-size: clamp(36px, 3.7vw, 52px);
}

.faq-heading .section-lead {
  font-size: 16px;
}

.faq-heading a {
  color: var(--brand);
  font-weight: 700;
}

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

.faq-list details {
  position: relative;
  overflow: clip;
  border-bottom: 1px solid var(--line);
  transition:
    border-color 220ms ease,
    background-color 220ms ease;
}

.faq-list details::before {
  position: absolute;
  top: 19px;
  bottom: 19px;
  left: 0;
  width: 2px;
  border-radius: 999px;
  background: var(--brand);
  content: "";
  opacity: 0;
  transform: scaleY(0.35);
  transform-origin: center;
  transition:
    opacity 220ms ease,
    transform 260ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.faq-list details[open] {
  border-bottom-color: rgba(0, 102, 230, 0.2);
  background: linear-gradient(90deg, rgba(0, 102, 230, 0.045), transparent 72%);
}

.faq-list details[open]::before {
  opacity: 1;
  transform: scaleY(1);
}

.faq-list summary {
  position: relative;
  padding: 26px 48px 26px 0;
  color: #1b2a40;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  transition:
    color 200ms ease,
    padding-left 240ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 16px;
  height: 2px;
  background: var(--brand);
  content: "";
  transition: transform 180ms ease;
}

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

.faq-list summary:hover {
  color: var(--brand);
}

.faq-list details[open] summary {
  padding-left: 14px;
}

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

.faq-list details[open] summary {
  color: var(--brand);
}

.faq-list details p {
  max-width: 690px;
  margin: -4px 0 25px;
  padding-right: 40px;
  padding-left: 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
  opacity: 0;
  transform: translateY(-7px);
  transition:
    opacity 200ms ease 40ms,
    transform 240ms cubic-bezier(0.2, 0.7, 0.2, 1) 40ms;
}

.faq-list details[open]:not(.is-closing) p {
  opacity: 1;
  transform: translateY(0);
}

/* Final CTA */

.final-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 112px 0;
  background:
    radial-gradient(circle at 15% 120%, rgba(37, 189, 255, 0.48), transparent 34%),
    linear-gradient(130deg, #004ead, #0069e7 65%, #008fe8);
  color: #fff;
  text-align: center;
}

.final-cta-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.orbit-one {
  top: -320px;
  right: -190px;
  width: 680px;
  height: 680px;
}

.orbit-two {
  bottom: -420px;
  left: -210px;
  width: 760px;
  height: 760px;
}

.final-cta-inner {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.final-cta .section-kicker {
  color: #aeeaff;
}

.final-cta h2 {
  max-width: 900px;
  margin: 15px 0 0;
  color: #fff;
  font-size: clamp(38px, 5.2vw, 66px);
  letter-spacing: -0.05em;
  line-height: 1.06;
}

.final-cta-inner > p:not(.section-kicker):not(.final-note) {
  max-width: 690px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.final-note {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.final-note a {
  color: #fff;
  font-weight: 700;
}

/* Footer */

.site-footer {
  padding: 66px 0 24px;
  background: #06152d;
  color: #fff;
}

.footer-grid {
  display: grid;
  gap: 44px;
  grid-template-columns: 1.5fr 0.7fr 1fr 0.8fr;
}

.footer-brand img {
  width: 185px;
  height: auto;
  border-radius: 9px;
  padding: 7px;
  background: #fff;
}

.footer-brand p {
  max-width: 320px;
  margin: 18px 0 0;
  color: #99a8bd;
  font-size: 13px;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
}

.footer-grid strong {
  margin-bottom: 6px;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-grid a,
.footer-grid button {
  border: 0;
  padding: 0;
  background: transparent;
  color: #aebbd0;
  font-size: 12px;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.footer-grid a:hover,
.footer-grid button:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 52px;
  padding-top: 21px;
  color: #7f8fa6;
  font-size: 10px;
}

.footer-bottom a {
  color: inherit;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #fff;
}

/* Reveal motion */

.reveal-ready .reveal:not(.is-visible) {
  opacity: 0;
  transform: translateY(18px);
}

.reveal {
  transition:
    opacity 560ms cubic-bezier(0.2, 0.68, 0.2, 1),
    transform 560ms cubic-bezier(0.2, 0.68, 0.2, 1);
}

.reveal-delay-1 {
  transition-delay: 80ms;
}

.reveal-delay-2 {
  transition-delay: 160ms;
}

.reveal-delay-3 {
  transition-delay: 240ms;
}

/* Responsive */

@media (max-width: 1220px) {
  .site-navigation {
    gap: 20px;
  }

  .hero-grid {
    gap: 35px;
    grid-template-columns: minmax(360px, 0.82fr) minmax(540px, 1.18fr);
  }

  .product-window {
    min-height: clamp(480px, 72svh, 545px);
    transform: rotateY(-3deg);
  }

  .product-app {
    min-height: clamp(437px, calc(72svh - 43px), 502px);
  }

  .workspace-preview {
    padding: 25px 25px 20px;
  }

  .story-layout {
    grid-template-columns: minmax(300px, 0.68fr) minmax(500px, 1.32fr);
  }

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

@media (max-width: 1100px) {
  :root {
    --header-height: 70px;
  }

  .brand img {
    width: 140px;
  }

  .section-shell,
  .header-inner,
  .hero-grid {
    width: min(calc(100% - 40px), var(--page-width));
  }

  .menu-toggle {
    display: flex;
  }

  .site-navigation {
    position: fixed;
    z-index: 1001;
    top: var(--header-height);
    right: 0;
    left: 0;
    visibility: hidden;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 12px 20px 20px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
    opacity: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateY(-12px);
    height: calc(100vh - var(--header-height));
    height: calc(100dvh - var(--header-height));
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 180ms ease;
  }

  .site-navigation.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-navigation > a:not(.button) {
    padding: 13px 3px;
    font-size: 15px;
  }

  .site-navigation > a:not(.button)::after {
    display: none;
  }

  .nav-demo {
    margin-top: 9px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 72px 0 90px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-copy h1 {
    max-width: 720px;
  }

  .hero-lead {
    max-width: 680px;
  }

  .hero-visual {
    width: min(850px, 100%);
    margin: 30px auto 0;
  }

  .product-window {
    width: 100%;
    margin: 0;
    transform: none;
  }

  .problem-section,
  .solutions-section,
  .ai-section,
  .audience-section,
  .stories-section,
  .pricing-section,
  .faq-section {
    padding: 104px 0;
  }

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

  .problem-grid > .section-kicker {
    padding-top: 0;
  }

  .solutions-section {
    padding-top: 0;
  }

  .problem-outcomes {
    grid-column: 1;
  }

  .story-section {
    padding: 104px 0 116px;
  }

  .story-heading {
    margin-bottom: 58px;
  }

  .story-layout {
    gap: 36px;
    grid-template-columns: 0.72fr 1.28fr;
  }

  .story-step {
    min-height: 220px;
    grid-template-columns: 30px 1fr;
    padding-left: 20px;
  }

  .story-stage {
    min-height: 570px;
  }

  .story-panel {
    padding: 40px 28px;
  }

  .ai-grid {
    gap: 54px;
    grid-template-columns: 1fr;
  }

  .ai-copy {
    max-width: 760px;
  }

  .chat-preview {
    width: min(760px, 100%);
    margin-inline: auto;
  }

  .audience-heading {
    grid-template-columns: 1fr;
  }

  .stories-heading {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .stories-heading .section-lead {
    max-width: 680px;
  }

  .pricing-heading {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .pricing-heading .section-lead {
    max-width: 720px;
  }

  .pricing-plans {
    gap: 18px;
    grid-template-columns: 1fr;
  }

  .pricing-plan {
    padding: 36px;
  }

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

  .plan-heading,
  .plan-description {
    min-height: 0;
  }

  .faq-grid {
    gap: 54px;
    grid-template-columns: 1fr;
  }

  .faq-heading {
    position: static;
  }

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

  .footer-grid > div:last-child {
    grid-column: 2;
  }
}

@media (max-width: 780px) {
  :root {
    --header-height: 64px;
  }

  .section-shell,
  .header-inner,
  .hero-grid {
    width: min(calc(100% - 32px), var(--page-width));
  }

  .header-inner {
    gap: 16px;
  }

  .brand img {
    width: 132px;
  }

  .hero-grid {
    padding: 54px 0 68px;
  }

  .hero-copy h1 {
    font-size: clamp(38px, 12vw, 54px);
  }

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

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

  .hero-assurances {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-visual {
    margin-top: 10px;
  }

  .product-window {
    min-height: 490px;
    border-radius: 17px;
  }

  .product-app {
    min-height: 447px;
    grid-template-columns: 48px 1fr;
  }

  .product-sidebar {
    padding-inline: 6px;
  }

  .sidebar-mark,
  .sidebar-item {
    width: 31px;
    height: 31px;
  }

  .workspace-preview {
    padding: 21px 18px 18px;
  }

  .workspace-heading .workspace-title {
    max-width: 280px;
    font-size: 18px;
  }

  .workspace-heading .status-badge {
    display: none;
  }

  .workflow-step small {
    display: none;
  }

  .workspace-summary {
    grid-template-columns: 1fr;
  }

  .progress-block:nth-child(2) {
    display: none;
  }

  .table-row em {
    display: none;
  }

  .table-row {
    grid-template-columns: auto 1fr;
  }

  .press-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
    padding: 28px 0;
  }

  .press-logos {
    width: 100%;
    justify-content: space-between;
    gap: 20px;
  }

  .press-logos img {
    max-width: 105px;
    max-height: 28px;
  }

  .problem-outcomes {
    grid-template-columns: 1fr;
  }

  .problem-outcomes > div {
    padding: 24px 0;
  }

  .problem-outcomes > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
    padding-left: 0;
  }

  .story-heading {
    margin-bottom: 42px;
  }

  .story-layout {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

  .story-stage {
    position: relative;
    z-index: 1;
    top: auto;
    width: 100%;
    min-height: 520px;
  }

  .story-steps {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
  }

  .story-step {
    min-height: 0;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    padding: 17px 4px;
    transform: none;
  }

  .story-step:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .story-step.is-active {
    border-color: var(--sky);
    transform: none;
  }

  .story-step h3 {
    margin-top: 0;
    font-size: 17px;
  }

  .story-step p {
    display: none;
  }

  .story-panel {
    padding: 32px 20px;
  }

  .recommendation-row {
    gap: 10px;
    padding: 15px 13px;
  }

  .entity-mark {
    width: 34px;
    height: 34px;
  }

  .recommendation-main small,
  .requirement-list small,
  .document-list small {
    display: none;
  }

  .stage-step strong {
    display: none;
  }

  .stage-line {
    margin-top: 0;
  }

  .workspace-metrics {
    grid-template-columns: 1fr;
  }

  .workspace-metrics > div:nth-child(2) {
    display: none;
  }

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

  .audience-pane {
    padding: 44px 0;
  }

  .audience-pane + .audience-pane {
    border-top: 1px solid var(--line);
    border-left: 0;
    padding-left: 0;
  }

  .video-stories {
    grid-template-columns: 1fr;
  }

  .video-story video {
    aspect-ratio: 16 / 9;
  }

  .pricing-plan {
    padding: 32px;
  }

  .pricing-scope {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .pricing-scope a {
    max-width: 100%;
    align-items: flex-start;
    flex: 0 1 auto;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .pricing-scope a svg {
    flex: 0 0 18px;
    margin-top: 2px;
  }

  .final-cta {
    padding: 88px 0;
  }

  .final-actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

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

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-grid > div:last-child {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .header-inner {
    gap: 12px;
  }

  .brand img {
    width: clamp(118px, 38vw, 128px);
  }

  .cookie-banner {
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

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

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

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

  .press-logos a {
    min-width: 0;
    justify-content: center;
  }

  .press-logos img {
    max-width: 100%;
  }

  .hero::before {
    mask-image: linear-gradient(180deg, transparent, #000 30%, #000 100%);
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero .mailto-note,
  .hero .hero-assurances {
    display: none;
  }

  .product-window {
    min-height: 430px;
  }

  .product-topbar {
    height: 36px;
  }

  .window-dots,
  .window-secure {
    width: 65px;
  }

  .product-app {
    min-height: 394px;
    grid-template-columns: 42px 1fr;
  }

  .product-sidebar {
    gap: 9px;
  }

  .sidebar-mark,
  .sidebar-item {
    width: 28px;
    height: 28px;
  }

  .workspace-preview {
    padding: 18px 12px 13px;
  }

  .workspace-heading .workspace-title {
    font-size: 15px;
  }

  .workspace-heading p {
    font-size: 8px;
  }

  .interface-label {
    font-size: 8px;
  }

  .workflow {
    margin-top: 22px;
  }

  .progress-block {
    padding: 12px;
  }

  .workspace-table {
    margin-top: 10px;
  }

  .table-row {
    padding: 10px;
  }

  .section-title {
    font-size: clamp(34px, 10.5vw, 48px);
  }

  .problem-section,
  .solutions-section,
  .ai-section,
  .audience-section,
  .stories-section,
  .pricing-section,
  .faq-section {
    padding: 84px 0;
  }

  .solutions-section {
    padding-top: 0;
  }

  .pricing-plan {
    border-radius: 18px;
    padding: 28px 20px 24px;
  }

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

  .solution-link {
    min-height: 0;
  }

  .plan-popular {
    top: 16px;
    right: 16px;
  }

  .plan-price {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .plan-usage > div {
    gap: 14px;
  }

  .story-section {
    padding: 84px 0 96px;
  }

  .story-stage {
    min-height: 520px;
    border-radius: 18px;
  }

  .story-panel {
    padding: 27px 14px;
  }

  .panel-topline h3 {
    font-size: 22px;
  }

  .profile-chip,
  .document-total {
    display: none;
  }

  .recommendation-list,
  .requirement-list {
    margin-top: 25px;
  }

  .recommendation-row {
    grid-template-columns: auto 1fr;
  }

  .recommendation-row .score {
    display: none;
  }

  .requirement-list > div,
  .document-list > div {
    grid-template-columns: auto 1fr;
    padding: 15px 12px;
  }

  .requirement-list em,
  .document-list em {
    display: none;
  }

  .stage-workflow {
    margin-top: 42px;
  }

  .workspace-metrics {
    margin-top: 32px;
  }

  .chat-body {
    min-height: 340px;
    padding: 20px 15px 16px;
  }

  .user-message {
    max-width: 88%;
  }

  .ai-message button:nth-of-type(2) {
    display: none;
  }

  .faq-list summary {
    padding-right: 40px;
    font-size: 16px;
  }

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

  .footer-brand,
  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (min-width: 1101px) and (max-height: 700px) {
  :root {
    --header-height: 64px;
  }

  .brand img {
    width: 140px;
  }

  .hero-grid {
    gap: clamp(28px, 4vw, 60px);
    padding: 22px 0 26px;
  }

  .hero-copy h1 {
    margin-top: 12px;
    font-size: clamp(46px, 4.6vw, 62px);
  }

  .hero-lead {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.5;
  }

  .hero-actions {
    margin-top: 20px;
  }

  .mailto-note {
    margin-top: 8px;
    font-size: 11px;
    line-height: 1.35;
  }

  .hero-assurances {
    margin-top: 14px;
    font-size: 12px;
  }

  .product-window {
    min-height: clamp(430px, 70svh, 500px);
  }

  .product-app {
    min-height: clamp(387px, calc(70svh - 43px), 457px);
  }

  .workspace-preview {
    padding: 20px 22px 16px;
  }

  .workflow,
  .workspace-summary {
    margin-top: 18px;
  }

  .progress-block {
    padding: 12px;
  }

  .workspace-table {
    margin-top: 10px;
  }

  .table-head,
  .table-row {
    padding: 8px 12px;
  }
}

@media (min-width: 781px) and (max-width: 1100px) and (max-height: 620px) {
  :root {
    --header-height: 64px;
  }

  .header-inner {
    gap: 16px;
  }

  .brand img {
    width: 128px;
  }
}

@media (max-width: 1100px) and (max-height: 720px) {
  .story-heading {
    margin-bottom: 42px;
  }

  .story-layout {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

  .story-steps {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
  }

  .story-step {
    min-height: 0;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    padding: 17px 4px;
    transform: none;
  }

  .story-step:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .story-step.is-active {
    border-color: var(--sky);
    transform: none;
  }

  .story-step h3 {
    margin-top: 0;
    font-size: 17px;
  }

  .story-step p {
    display: none;
  }

  .story-stage {
    position: relative;
    z-index: 1;
    top: auto;
    width: 100%;
    min-height: 520px;
  }
}

@media (min-width: 1101px) and (max-height: 720px) {
  .story-step {
    min-height: 145px;
  }

  .story-step p {
    display: none;
  }

  .story-stage {
    position: relative;
    top: auto;
  }
}

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

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

  .product-window {
    transform: none;
  }

  .reveal-ready .reveal:not(.is-visible) {
    opacity: 1;
    transform: none;
  }
}
