:root {
  color-scheme: light;
  --canvas: #fafaf9;
  --focus: #8d6009;
  --stage-qualified: #42644b;
  --review: #806029;
  --surface: #fff;
  --sunken: #f2f3f4;
  --ink: #151c26;
  --muted: #57616e;
  --line: #e0e3e7;
  --accent: #6653bb;
  --accent-soft: #f0edf9;
  --header: rgb(250 250 249 / 94%);
  --shadow: 0 20px 65px rgb(19 30 47 / 7%);
  --sans:
    ui-sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    'Helvetica Neue', Arial, 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei',
    sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}
:root[data-theme='dark'] {
  color-scheme: dark;
  --canvas: #0c1118;
  --focus: #f4c988;
  --stage-qualified: #9fccae;
  --review: #dcb677;
  --surface: #121923;
  --sunken: #10161f;
  --ink: #eef1f6;
  --muted: #a6b0bf;
  --line: #28313d;
  --accent: #b7a3fa;
  --accent-soft: #252036;
  --header: rgb(12 17 24 / 94%);
  --shadow: 0 20px 65px rgb(0 0 0 / 16%);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}
body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button,
input {
  font: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  cursor: pointer;
}
img {
  display: block;
  max-width: 100%;
}
svg {
  flex-shrink: 0;
  vertical-align: middle;
}
button,
a,
summary {
  touch-action: manipulation;
}
p,
h1,
h2,
h3,
blockquote {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 560;
}
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
[hidden] {
  display: none !important;
}
:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 5px;
  border-radius: 3px;
}
::selection {
  background: #c9baff;
  color: #172130;
}
.container {
  width: min(100%, 1280px);
  margin-inline: auto;
  padding-inline: clamp(24px, 4vw, 56px);
}
.section {
  padding-block: 112px;
}
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--accent);
}
.micro-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.025em;
  font-weight: 500;
  color: var(--muted);
}
.micro-label svg {
  width: 14px;
  height: 14px;
}
.section h2,
.section-heading h2,
.closing-inner h2 {
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.04em;
}
.section-heading {
  display: flex;
  gap: 56px;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 48px;
}
.section-heading .eyebrow,
.faq-section .eyebrow {
  margin-bottom: 18px;
}
.section-heading > p {
  max-width: 420px;
  padding-bottom: 3px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}
.skip-link {
  position: fixed;
  z-index: 100;
  left: 16px;
  top: 12px;
  padding: 10px 18px;
  background: var(--ink);
  color: var(--canvas);
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: translateY(0);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--line);
  background: var(--header);
  backdrop-filter: blur(18px);
}
.header-inner {
  height: 72px;
  width: min(100%, 1536px);
  margin: auto;
  padding-inline: 32px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 650;
  letter-spacing: -0.035em;
  white-space: nowrap;
}
.brand img {
  width: 31px;
  height: 31px;
  object-fit: contain;
}
.brand-gradient {
  background: linear-gradient(100deg, #00a0e9 0%, #7b3ff2 55%, #f402fb 100%);
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
}
.desktop-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 26px;
}
.desktop-nav a,
.workspace-link,
.language-link {
  font-size: 14px;
  color: var(--muted);
  font-weight: 550;
}
.desktop-nav a:hover,
.workspace-link:hover,
.language-link:hover {
  color: var(--accent);
}
.header-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}
.language-link {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 40px;
  padding-inline: 6px;
}
.language-link svg {
  width: 16px;
  height: 16px;
}
.icon-button {
  display: grid;
  place-items: center;
  width: 38px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
}
.icon-button:hover {
  background: var(--sunken);
  color: var(--ink);
}
.icon-button svg {
  width: 19px;
  height: 19px;
}
.dark-icon,
:root[data-theme='dark'] .light-icon {
  display: none;
}
:root[data-theme='dark'] .dark-icon {
  display: block;
}
.workspace-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-inline: 10px;
}
.workspace-link svg {
  width: 15px;
  height: 15px;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  min-height: 50px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 600;
  transition:
    background 160ms,
    transform 160ms,
    border-color 160ms;
}
.button svg {
  width: 18px;
  height: 18px;
  transition: transform 160ms;
}
.button:hover svg {
  transform: translateX(3px);
}
.button:hover {
  transform: translateY(-1px);
}
.button-dark {
  background: var(--ink);
  color: var(--canvas);
}
.button-dark:hover {
  opacity: 0.88;
}
.button-light {
  background: #f9fafc;
  color: #192230;
}
.button-light:hover {
  background: #dfd8f5;
}
.button-ghost {
  border-color: #34414f;
  color: #e2e7ec;
  background: transparent;
}
.button-ghost:hover {
  background: #202c39;
  border-color: #67717e;
}
.button-outline {
  border-color: var(--line);
  color: var(--ink);
}
.button-outline:hover {
  background: var(--sunken);
}
.header-cta {
  min-height: 42px;
  padding: 10px 15px;
  gap: 13px;
  font-size: 13px;
}
.menu-toggle {
  display: none;
}
.menu-close-icon {
  display: none;
}
.menu-toggle[aria-expanded='true'] .menu-open-icon {
  display: none;
}
.menu-toggle[aria-expanded='true'] .menu-close-icon {
  display: block;
}
.mobile-nav {
  padding: 16px 24px 24px;
  background: var(--surface);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.mobile-nav a {
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 6px;
  color: var(--muted);
  font-size: 15px;
}
.mobile-nav a:hover {
  background: var(--sunken);
}
.hero {
  position: relative;
  overflow: hidden;
  background: #0d1722;
  color: #fff;
  isolation: isolate;
}
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgb(158 191 210 / 3.5%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(158 191 210 / 3.5%) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000, transparent);
}
.hero:after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(
    ellipse at 85% 42%,
    rgb(80 89 155 / 18%),
    transparent 54%
  );
}
.hero-layout {
  display: grid;
  grid-template-columns: 1.03fr 1fr;
  align-items: center;
  gap: 68px;
  padding-block: 78px 82px;
  min-height: 737px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid #35434f;
  border-radius: 30px;
  padding: 5px 12px 5px 9px;
  font-size: 12px;
  font-weight: 500;
  color: #bdcbd6;
  margin-bottom: 35px;
}
.hero-tag svg {
  width: 15px;
  height: 15px;
  color: #a7bdd4;
}
.hero .eyebrow {
  color: #baa9e4;
  font-size: 11px;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(44px, 5.1vw, 70px);
  font-weight: 550;
  line-height: 1.02;
  letter-spacing: -0.055em;
}
.hero h1 > span {
  color: #baa6f6;
}
.hero-intro {
  font-size: 17px;
  line-height: 1.75;
  color: #b7c1ce;
  max-width: 485px;
  margin-top: 25px;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 31px;
}
.hero-note {
  font-size: 13px;
  color: #8e9aaa;
  margin-top: 21px;
}
.hero-visual {
  position: relative;
  padding-block: 22px 65px;
}
.opportunity-card {
  border: 1px solid #34424f;
  border-radius: 18px;
  background: linear-gradient(135deg, #1a2634, #14202c);
  box-shadow: 0 35px 80px rgb(0 0 0 / 22%);
  transform: rotate(-1deg);
}
.card-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid #33404d;
  padding: 18px 22px;
  color: #b9c7d6;
}
.card-topline > span:first-child {
  display: flex;
  gap: 9px;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
}
.card-topline svg {
  width: 15px;
  height: 15px;
  color: #b3a5e5;
}
.sample-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  color: #8f9eaf;
}
.opportunity-body {
  padding: 27px 27px 24px;
}
.opportunity-heading {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 28px;
}
.account-symbol {
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  border: 1px solid #516178;
  background: #35435b;
  border-radius: 11px;
  color: #e7e4ff;
  font-family: var(--mono);
  font-size: 18px;
}
.opportunity-heading p {
  font-size: 14px;
  font-weight: 550;
}
.stage-pill {
  color: #acbbc7;
  font-size: 11px;
}
.quiet-icon {
  margin-left: auto;
  color: #7e8a9a;
}
.opportunity-card .micro-label {
  color: #91a1b2;
  font-size: 11px;
}
.opportunity-body h2 {
  font-size: 23px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.3;
  margin-top: 8px;
  max-width: 345px;
}
.journey-line {
  display: flex;
  justify-content: space-between;
  margin-block: 30px 24px;
}
.journey-stop {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.journey-stop:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background: #3b4959;
  top: 11px;
  left: 50%;
  z-index: 0;
}
.journey-stop:last-child:before {
  display: none;
}
.journey-stop > span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 23px;
  height: 23px;
  border: 1px solid #465267;
  border-radius: 50%;
  background: #1a2634;
  color: #738299;
}
.journey-stop i {
  font-style: normal;
  font-family: var(--mono);
  font-size: 10px;
}
.journey-stop small {
  font-size: 10px;
  color: #8595a6;
}
.journey-stop svg {
  width: 12px;
  height: 12px;
}
.journey-stop.complete > span {
  color: #b8adf0;
  border-color: #71638f;
  background: #3b3554;
}
.journey-stop.current > span {
  color: #f6f0ff;
  background: #7760ad;
  border-color: #b3a0db;
  box-shadow: 0 0 0 5px #a091c21a;
}
.journey-stop.current small {
  color: #d8c9f4;
}
.message-evidence {
  border: 1px solid #364554;
  border-radius: 9px;
  background: #111d29;
  padding: 16px 18px;
}
.message-evidence blockquote {
  color: #d1d9e1;
  font-size: 13px;
  line-height: 1.7;
  margin-top: 11px;
}
.message-source {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 10px;
  color: #90a0b2;
}
.message-source svg {
  width: 12px;
  height: 12px;
}
.signal-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  font-size: 10px;
  color: #a7b5c6;
}
.signal-row > span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.signal-row svg {
  width: 12px;
  height: 12px;
}
.signal-row > span:last-child {
  color: #92bbad;
}
.next-move-card {
  position: absolute;
  right: -18px;
  bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  width: 90%;
  background: #f5f2fc;
  border: 1px solid #e9e0ff;
  border-radius: 13px;
  padding: 21px 24px;
  color: #24233c;
  box-shadow: 0 18px 40px #0003;
  transform: rotate(1deg);
}
.sparkle-badge {
  background: #e8e0f7;
  border: 1px solid #d9ceef;
  border-radius: 9px;
  padding: 9px;
  color: #765da6;
  display: grid;
  place-items: center;
}
.sparkle-badge svg {
  width: 20px;
  height: 20px;
}
.next-move-card .micro-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  color: #75678e;
  margin-bottom: 7px;
}
.next-move-card p:not(.micro-label) {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 550;
}
.next-move-card div > span {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 10px;
  font-size: 11px;
  color: #81629e;
}
.next-move-card div > span svg {
  width: 13px;
  height: 13px;
}
.context-strip {
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}
.context-strip > .container {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding-block: 25px;
}
.context-strip span {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 13px;
  font-weight: 550;
  color: var(--muted);
}
.context-strip svg {
  width: 17px;
  height: 17px;
  color: #8b8e9b;
}
.product-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 26px;
  border-bottom: 1px solid var(--line);
}
.product-tabs button {
  display: flex;
  gap: 10px;
  align-items: center;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: var(--muted);
  padding: 14px 20px 17px;
  font-weight: 550;
  font-size: 14px;
  margin-bottom: -1px;
  white-space: nowrap;
}
.product-tabs button:hover {
  color: var(--ink);
}
.product-tabs button[aria-selected='true'] {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.product-tabs svg {
  width: 17px;
  height: 17px;
}
.product-preview {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 13px;
  box-shadow: var(--shadow);
  overflow: hidden;
  min-height: 370px;
}
.preview-chrome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 22px;
  border-bottom: 1px solid var(--line);
  background: var(--sunken);
  color: var(--muted);
  font-size: 11px;
}
.window-dots {
  display: flex;
  gap: 5px;
  width: 100px;
}
.window-dots i {
  width: 7px;
  height: 7px;
  background: var(--line);
  border: 1px solid #a8acb455;
  border-radius: 50%;
}
.preview-logo {
  display: flex;
  align-items: center;
  gap: 7px;
  justify-content: end;
  width: 100px;
  font-size: 11px;
  font-weight: 600;
}
.preview-logo svg {
  width: 13px;
  height: 13px;
}
.workspace-top {
  padding: 27px 32px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.workspace-top .micro-label {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 10px;
}
.workspace-top h3 {
  font-size: 22px;
  letter-spacing: -0.03em;
  margin-top: 5px;
}
.workspace-top p {
  font-size: 12px;
  color: var(--muted);
  margin-top: 5px;
}
.workspace-symbol {
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--accent);
}
.preview-table-scroll {
  overflow-x: auto;
  padding: 0 32px 24px;
}
.product-preview table {
  width: 100%;
  min-width: 750px;
  border-collapse: collapse;
  text-align: left;
}
.product-preview th {
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  border-bottom: 1px solid var(--line);
  padding: 11px 12px;
}
.product-preview th:first-child {
  padding-left: 0;
}
.product-preview td {
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  padding: 18px 12px;
  color: var(--muted);
  white-space: nowrap;
}
.product-preview tr:last-child td {
  border-bottom: 0;
}
.product-preview td:first-child {
  color: var(--ink);
  padding-left: 0;
  font-weight: 550;
}
.table-symbol {
  display: inline-grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border-radius: 7px;
  background: var(--accent-soft);
  color: var(--accent);
  margin-right: 10px;
  font-size: 11px;
}
.symbol-1 {
  background: #eef3f2;
  color: #477467;
}
.symbol-2 {
  background: #f5f0e9;
  color: #997856;
}
.table-stage {
  border: 1px solid #dad5e9;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 5px;
  padding: 4px 8px;
  font-size: 10px;
  white-space: nowrap;
}
.stage-1 {
  background: var(--sunken);
  border-color: var(--line);
  color: var(--muted);
}
.stage-2 {
  background: #dff0e71f;
  border-color: #829e8766;
  color: var(--stage-qualified);
}
.product-preview td:last-child svg {
  width: 12px;
  height: 12px;
  margin-left: 18px;
  color: var(--muted);
}
.preview-caption {
  display: flex;
  align-items: center;
  gap: 60px;
  justify-content: space-between;
  padding: 29px 2px 0;
}
.preview-caption h3 {
  font-size: 20px;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.preview-caption p {
  max-width: 710px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
}
.preview-caption > div:last-child {
  flex-shrink: 0;
  text-align: right;
}
.text-link {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  font-size: 14px;
  font-weight: 550;
  color: var(--accent);
}
.text-link svg {
  width: 15px;
  height: 15px;
}
.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.preview-caption small {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 8px;
}
.inbox-preview {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 335px;
}
.inbox-preview aside {
  border-right: 1px solid var(--line);
  padding: 29px 18px;
  background: var(--sunken);
}
.inbox-preview aside .micro-label {
  padding-inline: 12px;
  font-size: 11px;
  margin-bottom: 17px;
}
.inbox-account {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 13px 11px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 5px;
  border-radius: 6px;
}
.inbox-account.selected {
  color: var(--accent);
  background: var(--accent-soft);
}
.inbox-account svg {
  width: 16px;
  height: 16px;
}
.inbox-account i {
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
  margin-left: auto;
}
.inbox-thread {
  padding: 27px 32px;
}
.thread-header {
  padding-bottom: 21px;
  border-bottom: 1px solid var(--line);
}
.thread-header h3 {
  font-size: 21px;
  letter-spacing: -0.02em;
  margin: 3px 0 6px;
}
.thread-header > span:last-child {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 11px;
}
.thread-header > span svg {
  width: 12px;
  height: 12px;
}
.message-line {
  display: flex;
  gap: 14px;
  padding-top: 20px;
  font-size: 12px;
}
.avatar {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 50%;
  font-size: 11px;
}
.avatar-1 {
  background: #e6eef329;
  color: var(--muted);
}
.message-line strong {
  font-size: 12px;
  font-weight: 550;
}
.message-line p {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
  max-width: 650px;
}
.follow-preview {
  padding: 25px 32px;
  display: grid;
  grid-template-columns: 1fr 230px;
  gap: 35px;
  align-items: center;
  min-height: 335px;
}
.follow-heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
.follow-heading .micro-label {
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--accent);
}
.review-badge {
  font-size: 10px;
  color: var(--review);
  border: 1px solid #c3a57880;
  border-radius: 5px;
  padding: 3px 7px;
  white-space: nowrap;
}
.follow-document h3 {
  font-size: 20px;
  letter-spacing: -0.025em;
  margin-top: 16px;
}
.draft-body {
  font-size: 12px;
  line-height: 1.8;
  color: var(--muted);
  margin-top: 15px;
}
.follow-checks {
  display: grid;
  gap: 22px;
  border-left: 1px solid var(--line);
  padding-left: 27px;
}
.follow-checks span {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  color: var(--muted);
}
.follow-checks svg {
  color: var(--accent);
  width: 16px;
  height: 16px;
}
.feature-section {
  background: var(--sunken);
  border-block: 1px solid var(--line);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-card {
  position: relative;
  min-height: 320px;
  border-top: 1px solid var(--line);
  padding-top: 26px;
  padding-bottom: 38px;
}
.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 10px;
  color: var(--accent);
  margin-bottom: 27px;
}
.feature-card .micro-label {
  font-size: 12px;
  margin-bottom: 10px;
  color: var(--muted);
}
.feature-card h3 {
  font-size: 21px;
  line-height: 1.25;
  letter-spacing: -0.025em;
  max-width: 260px;
  margin-bottom: 17px;
}
.feature-card > p:last-of-type {
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
}
.feature-number {
  position: absolute;
  top: 33px;
  right: 0;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  opacity: 0.5;
}
.workflow-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 59px;
}
.step-index {
  display: flex;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 23px;
  gap: 13px;
  margin-bottom: 23px;
}
.step-index > span {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent);
}
.step-index p {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}
.step-index > svg {
  margin-left: auto;
  color: var(--muted);
  width: 17px;
  height: 17px;
}
.workflow-steps h3 {
  font-size: 23px;
  letter-spacing: -0.025em;
  line-height: 1.35;
  margin-bottom: 14px;
}
.workflow-steps li > p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}
.principle {
  display: flex;
  gap: 24px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--sunken);
  padding: 26px 30px;
  margin-top: 54px;
}
.principle > span {
  color: var(--accent);
  padding: 13px;
  border-radius: 50%;
  background: var(--surface);
  display: grid;
  place-items: center;
}
.principle svg {
  width: 25px;
  height: 25px;
}
.principle h3 {
  font-size: 18px;
  font-weight: 550;
  margin-bottom: 5px;
}
.principle p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}
.deployment-section {
  background: var(--sunken);
  border-block: 1px solid var(--line);
}
.deployment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}
.deployment-card {
  padding: 37px 40px 38px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.deployment-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  background: var(--sunken);
  border: 1px solid var(--line);
  border-radius: 11px;
  color: var(--accent);
  margin-bottom: 34px;
}
.deployment-card .eyebrow {
  font-size: 10px;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.deployment-card h3 {
  font-size: 29px;
  letter-spacing: -0.035em;
  line-height: 1.3;
  margin-bottom: 14px;
}
.deployment-card > p:not(.eyebrow) {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 440px;
}
.deployment-card ul {
  display: grid;
  gap: 15px;
  margin-top: 30px;
  margin-bottom: 36px;
  font-size: 14px;
}
.deployment-card li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.deployment-card li svg {
  color: var(--accent);
  width: 16px;
  height: 16px;
  margin-top: 3px;
}
.deployment-card .button {
  margin-top: auto;
}
.deployment-dedicated {
  background: #111f2d;
  color: #f2f4f8;
  border-color: #344451;
}
.deployment-dedicated .eyebrow {
  color: #b7a4e8;
}
.deployment-dedicated .deployment-icon {
  background: #253141;
  border-color: #495468;
  color: #bfa8ed;
}
.deployment-dedicated > p:not(.eyebrow) {
  color: #aab8c8;
}
.deployment-dedicated li {
  color: #d6dde5;
}
.deployment-dedicated li svg {
  color: #b7a4e8;
}
.deployment-note {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 9px;
  font-size: 12px;
  color: var(--muted);
  margin-top: 26px;
  text-align: center;
}
.deployment-note svg {
  width: 14px;
  height: 14px;
  margin-top: 3px;
}
.faq-section {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 80px;
}
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-list details {
  border-bottom: 1px solid var(--line);
  padding-block: 24px;
}
.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  list-style: none;
  font-size: 16px;
  font-weight: 550;
  line-height: 1.5;
  cursor: pointer;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary span {
  padding: 4px;
  display: flex;
  color: var(--muted);
}
.faq-list summary svg {
  width: 17px;
  height: 17px;
  transition: transform 150ms;
}
.faq-list details[open] summary svg {
  transform: rotate(180deg);
}
.faq-list details > p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.85;
  padding-top: 16px;
  padding-right: 36px;
}
.closing-section {
  position: relative;
  overflow: hidden;
  background: #101c29;
  color: #f3f4f8;
  isolation: isolate;
}
.closing-section:before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 120%, #60578535, transparent 60%);
  z-index: -1;
}
.closing-inner {
  padding-block: 90px 95px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.closing-inner .eyebrow {
  color: #ad99db;
  margin-bottom: 23px;
}
.closing-inner h2 {
  font-size: clamp(38px, 4.4vw, 61px);
  line-height: 1.12;
  font-weight: 550;
  letter-spacing: -0.04em;
}
.closing-inner > p:not(.eyebrow) {
  font-size: 17px;
  line-height: 1.8;
  color: #a9b7c6;
  max-width: 580px;
  margin: 23px auto 29px;
}
.closing-inner .button {
  min-width: 200px;
}
.email-link {
  display: block;
  margin-top: 20px;
  color: #a2aebb;
  font-size: 12px;
}
.email-link:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 5px;
}
.closing-word {
  position: absolute;
  bottom: -96px;
  right: -4px;
  font-size: 280px;
  font-weight: 650;
  letter-spacing: -0.07em;
  line-height: 1;
  color: #fff;
  opacity: 0.022;
  pointer-events: none;
  z-index: 0;
}
.site-footer {
  background: var(--canvas);
  padding-top: 65px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.1fr 1.1fr;
  gap: 44px;
  padding-bottom: 62px;
}
.footer-brand > p {
  font-size: 14px;
  color: var(--muted);
  max-width: 230px;
  line-height: 1.7;
  margin-top: 20px;
}
.footer-brand > span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 22px;
}
.footer-grid nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}
.footer-grid h2 {
  font-size: 13px;
  font-weight: 600;
  margin: 5px 0 6px;
}
.footer-grid nav a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
}
.footer-grid nav a svg {
  width: 12px;
  height: 12px;
}
.footer-grid nav a:hover,
.footer-bottom a:hover {
  color: var(--accent);
}
.footer-bottom {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  min-height: 83px;
  font-size: 11px;
  color: var(--muted);
}
.footer-bottom:before {
  content: '';
  position: absolute;
  top: 0;
  left: clamp(24px, 4vw, 56px);
  right: clamp(24px, 4vw, 56px);
  height: 1px;
  background: var(--line);
}
.footer-bottom nav {
  display: flex;
  gap: 21px;
  margin-left: auto;
}
.back-top {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border: 1px solid var(--line);
  border-radius: 6px;
}
.back-top svg {
  width: 16px;
  height: 16px;
}
.not-found {
  min-height: 55vh;
}
.not-found h1 {
  font-size: clamp(32px, 5vw, 60px);
  line-height: 1.15;
  max-width: 800px;
  letter-spacing: -0.04em;
  margin-block: 20px;
}
.not-found > p:not(.eyebrow) {
  color: var(--muted);
  margin-bottom: 25px;
}
html[lang='zh-CN'] h1 {
  line-height: 1.17;
  letter-spacing: -0.035em;
}
html[lang='zh-CN'] .hero h1 {
  font-size: clamp(43px, 4.8vw, 66px);
}
html[lang='zh-CN'] h2 {
  line-height: 1.25;
  letter-spacing: -0.025em;
}
html[lang='zh-CN'] h3 {
  line-height: 1.45;
}
html[lang='zh-CN'] .hero-intro {
  line-height: 1.95;
}
html[lang='zh-CN'] .opportunity-body h2 {
  font-size: 23px;
}
html[lang='zh-CN'] .feature-card h3 {
  font-size: 21px;
}
html[lang='zh-CN'] .hero .eyebrow {
  letter-spacing: 0.17em;
}
.no-js [role='tablist'],
.no-js .theme-toggle,
.no-js .menu-toggle {
  display: none;
}
.no-js [role='tabpanel'][hidden] {
  display: block !important;
  margin-top: 36px;
}
.no-js .mobile-nav[hidden] {
  display: flex !important;
  flex-wrap: wrap;
}
.no-js .mobile-nav a {
  padding: 6px 12px;
}
@media (min-width: 1440px) {
  .header-inner {
    gap: 44px;
  }
  .desktop-nav {
    gap: 30px;
  }
  .hero-layout {
    gap: 90px;
  }
  .hero h1 {
    font-size: 72px;
  }
  .hero-layout {
    padding-block: 92px 102px;
  }
  .hero-visual {
    padding-bottom: 80px;
  }
  .next-move-card {
    bottom: 30px;
  }
}
@media (max-width: 1199px) {
  .header-inner {
    gap: 22px;
    padding-inline: 24px;
  }
  .desktop-nav {
    gap: 19px;
  }
  .header-actions {
    gap: 5px;
  }
  .workspace-link {
    display: none;
  }
  .hero-layout {
    gap: 42px;
  }
  .hero h1 {
    font-size: clamp(43px, 5.1vw, 65px);
  }
  .hero .actions {
    gap: 10px;
  }
  .hero .button {
    padding-inline: 18px;
    font-size: 13px;
  }
  .opportunity-body {
    padding: 25px 22px;
  }
  .next-move-card {
    right: -5px;
    padding: 18px 20px;
    width: 94%;
  }
  .sample-label {
    font-size: 8px;
  }
  .feature-grid {
    gap: 24px;
  }
  .feature-card h3 {
    font-size: 20px;
  }
}
@media (max-width: 1099px) {
  .desktop-nav {
    display: none;
  }
  .header-actions {
    margin-left: auto;
  }
  .workspace-link {
    display: flex;
  }
  .menu-toggle {
    display: grid;
  }
  .hero-layout {
    gap: 33px;
    padding-block: 64px;
    min-height: 690px;
  }
  .hero h1 {
    font-size: 49px;
  }
  .hero-intro {
    font-size: 16px;
  }
  .hero .actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero .button {
    min-width: 205px;
  }
  .hero-tag {
    margin-bottom: 27px;
    font-size: 11px;
  }
  .opportunity-body h2 {
    font-size: 22px;
  }
  .opportunity-heading p {
    font-size: 12px;
  }
  .sample-label {
    font-size: 8px;
  }
  .opportunity-body {
    padding: 23px 18px;
  }
  .next-move-card {
    padding: 18px;
    gap: 13px;
    right: -8px;
    width: 98%;
  }
  .next-move-card p:not(.micro-label) {
    font-size: 13px;
  }
  .signal-row {
    font-size: 9px;
  }
  .section {
    padding-block: 85px;
  }
  .section-heading {
    gap: 40px;
  }
  .section-heading > p {
    max-width: 340px;
    font-size: 16px;
  }
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 50px;
    row-gap: 40px;
  }
  .feature-card {
    min-height: 260px;
    padding-bottom: 0;
  }
  .feature-card h3 {
    max-width: 320px;
    font-size: 24px;
  }
  .feature-card > p:last-of-type {
    max-width: 340px;
  }
  .workflow-steps {
    gap: 30px;
  }
  .deployment-card {
    padding: 30px;
  }
  .deployment-card h3 {
    font-size: 27px;
  }
  .faq-section {
    gap: 45px;
    grid-template-columns: 0.9fr 1.2fr;
  }
  .footer-grid {
    gap: 28px;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
  .footer-brand .brand {
    font-size: 16px;
  }
  .context-strip span {
    font-size: 12px;
  }
  .context-strip span svg {
    width: 15px;
    height: 15px;
  }
  .context-strip > .container {
    gap: 16px;
  }
  .preview-caption {
    gap: 30px;
  }
  .preview-caption > div:last-child {
    max-width: 185px;
  }
  .preview-caption .text-link {
    font-size: 12px;
  }
  .follow-preview {
    grid-template-columns: 1fr 190px;
    gap: 25px;
  }
  .follow-checks {
    padding-left: 20px;
  }
}
@media (max-width: 799px) {
  html {
    scroll-padding-top: 82px;
  }
  .header-inner {
    height: 66px;
    padding-inline: 22px;
    gap: 15px;
  }
  .brand {
    font-size: 17px;
    gap: 8px;
  }
  .brand img {
    width: 28px;
    height: 28px;
  }
  .header-cta,
  .workspace-link {
    display: none;
  }
  .header-actions {
    gap: 6px;
  }
  .language-link {
    font-size: 13px;
  }
  .language-link svg {
    display: none;
  }
  .icon-button {
    width: 34px;
  }
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-block: 48px 48px;
  }
  .hero-copy {
    max-width: 620px;
  }
  .hero h1 {
    font-size: clamp(45px, 8.2vw, 65px);
  }
  .hero h1 br:nth-child(2) {
    display: none;
  }
  .hero h1 > span {
    margin-left: 0;
  }
  .hero-intro {
    max-width: 550px;
    font-size: 16px;
    margin-top: 22px;
  }
  .hero-tag {
    font-size: 11px;
    margin-bottom: 27px;
  }
  .hero .eyebrow {
    margin-bottom: 14px;
  }
  .hero .actions {
    flex-direction: row;
    gap: 10px;
    margin-top: 25px;
  }
  .hero .button {
    min-width: 0;
    font-size: 13px;
    padding-inline: 17px;
  }
  .hero-note {
    font-size: 12px;
  }
  .hero-visual {
    width: min(100%, 540px);
    justify-self: center;
    padding: 15px 10px 61px;
    margin-top: 4px;
  }
  .opportunity-card {
    transform: none;
  }
  .opportunity-body {
    padding: 23px;
  }
  .opportunity-body h2 {
    font-size: 23px;
    max-width: none;
  }
  .opportunity-heading p {
    font-size: 13px;
  }
  .card-topline {
    padding: 15px 20px;
  }
  .sample-label {
    font-size: 9px;
  }
  .opportunity-heading {
    margin-bottom: 24px;
  }
  .journey-line {
    margin-block: 25px 24px;
  }
  .next-move-card {
    right: 0;
    bottom: 21px;
    width: 89%;
    padding: 18px 21px;
    gap: 15px;
  }
  .next-move-card p:not(.micro-label) {
    font-size: 14px;
  }
  .signal-row {
    font-size: 10px;
  }
  .hero .hero-layout {
    min-height: 0;
  }
  .context-strip > .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 15px;
    padding-block: 24px;
  }
  .context-strip span {
    font-size: 12px;
    gap: 9px;
  }
  .section {
    padding-block: 68px;
  }
  .section-heading {
    display: block;
    margin-bottom: 34px;
  }
  .section-heading > p {
    max-width: 600px;
    margin-top: 23px;
    font-size: 16px;
  }
  .section-heading h2,
  .section h2 {
    font-size: 35px;
  }
  .eyebrow {
    font-size: 10px;
  }
  .product-tabs {
    overflow-x: auto;
    overflow-y: hidden;
    gap: 0;
    margin-bottom: 20px;
    padding-top: 3px;
  }
  .product-tabs button {
    font-size: 12px;
    padding: 12px 13px 14px;
    gap: 7px;
  }
  .product-tabs svg {
    width: 15px;
    height: 15px;
  }
  .product-preview {
    min-height: 0;
  }
  .workspace-top {
    padding: 24px 22px 15px;
  }
  .workspace-top h3 {
    font-size: 20px;
  }
  .workspace-top .micro-label {
    font-size: 9px;
  }
  .preview-table-scroll {
    padding: 0 22px 20px;
  }
  .preview-caption {
    display: block;
    padding-top: 23px;
  }
  .preview-caption p {
    font-size: 14px;
  }
  .preview-caption > div:last-child {
    max-width: none;
    text-align: left;
    margin-top: 18px;
  }
  .preview-caption .text-link {
    font-size: 13px;
  }
  .preview-caption small {
    display: inline;
    margin-left: 9px;
    font-size: 11px;
  }
  .preview-chrome {
    padding: 12px 16px;
    font-size: 9px;
  }
  .preview-logo {
    width: auto;
    font-size: 10px;
  }
  .window-dots {
    width: auto;
  }
  .inbox-preview {
    grid-template-columns: 1fr;
  }
  .inbox-preview aside {
    padding: 15px 18px;
    display: flex;
    gap: 5px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    overflow-x: auto;
  }
  .inbox-preview aside > .micro-label {
    display: none;
  }
  .inbox-account {
    white-space: nowrap;
    padding: 8px;
    font-size: 10px;
    margin: 0;
    gap: 6px;
  }
  .inbox-account svg {
    width: 13px;
    height: 13px;
  }
  .inbox-account i {
    display: none;
  }
  .inbox-thread {
    padding: 22px;
  }
  .thread-header h3 {
    font-size: 21px;
  }
  .thread-header .micro-label {
    font-size: 11px;
  }
  .message-line p {
    font-size: 12px;
  }
  .follow-preview {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 22px;
  }
  .follow-checks {
    display: flex;
    flex-wrap: wrap;
    padding: 18px 0 0;
    border-left: 0;
    border-top: 1px solid var(--line);
    gap: 17px;
  }
  .follow-checks span {
    font-size: 11px;
  }
  .follow-heading {
    gap: 12px;
  }
  .follow-heading .micro-label {
    font-size: 9px;
  }
  .review-badge {
    font-size: 9px;
  }
  .follow-document h3 {
    font-size: 20px;
  }
  .feature-grid {
    gap: 38px 30px;
  }
  .feature-card h3 {
    font-size: 22px;
  }
  .feature-card > p:last-of-type {
    font-size: 14px;
  }
  .feature-icon {
    margin-bottom: 24px;
  }
  .workflow-steps {
    grid-template-columns: 1fr;
    margin-top: 34px;
    gap: 31px;
  }
  .step-index {
    margin-bottom: 16px;
    padding-top: 20px;
  }
  .workflow-steps h3 {
    font-size: 24px;
    margin-bottom: 11px;
  }
  .workflow-steps li > p {
    font-size: 15px;
    max-width: 540px;
  }
  .principle {
    align-items: flex-start;
    margin-top: 35px;
    padding: 23px;
    gap: 17px;
  }
  .principle > span {
    padding: 9px;
  }
  .principle svg {
    width: 20px;
    height: 20px;
  }
  .principle h3 {
    font-size: 17px;
    line-height: 1.5;
  }
  .principle p {
    font-size: 13px;
    margin-top: 5px;
  }
  .deployment-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .deployment-card {
    padding: 29px;
  }
  .deployment-icon {
    margin-bottom: 25px;
  }
  .deployment-card h3 {
    font-size: 28px;
  }
  .deployment-card > p:not(.eyebrow) {
    max-width: none;
  }
  .deployment-card ul {
    gap: 13px;
    margin-top: 26px;
    margin-bottom: 29px;
  }
  .deployment-note {
    text-align: left;
    justify-content: flex-start;
    font-size: 11px;
    line-height: 1.8;
    margin-top: 22px;
  }
  .faq-section {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .faq-list details {
    padding-block: 21px;
  }
  .faq-list summary {
    font-size: 15px;
    gap: 20px;
  }
  .faq-list details > p {
    font-size: 14px;
    padding-right: 20px;
  }
  .closing-inner {
    padding-block: 67px;
  }
  .closing-inner h2 {
    font-size: 38px;
  }
  .closing-inner > p:not(.eyebrow) {
    font-size: 15px;
    max-width: 490px;
    margin-block: 20px 27px;
  }
  .closing-inner .eyebrow {
    font-size: 9px;
  }
  .email-link {
    font-size: 11px;
  }
  .closing-word {
    font-size: 180px;
    bottom: -59px;
    right: 0;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px 25px;
    padding-bottom: 40px;
  }
  .footer-brand > p {
    font-size: 13px;
    max-width: 230px;
    margin-top: 15px;
  }
  .footer-brand > span {
    font-size: 11px;
    margin-top: 14px;
  }
  .footer-grid h2 {
    margin-top: 3px;
    font-size: 12px;
  }
  .footer-grid nav a {
    font-size: 12px;
  }
  .footer-bottom {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 15px;
    padding-block: 25px;
    font-size: 10px;
    min-height: 0;
  }
  .footer-bottom > span {
    width: 100%;
  }
  .footer-bottom nav {
    margin-left: 0;
    gap: 20px;
  }
  .back-top {
    margin-left: auto;
  }
  .site-footer {
    padding-top: 44px;
  }
  html[lang='zh-CN'] .hero h1 {
    font-size: clamp(42px, 8vw, 60px);
  }
  html[lang='zh-CN'] .hero h1 br:nth-child(2) {
    display: none;
  }
  html[lang='zh-CN'] .hero h1 > span {
    margin-left: 0;
  }
  html[lang='zh-CN'] .section h2 {
    font-size: 33px;
  }
}
@media (max-width: 399px) {
  .header-inner {
    padding-inline: 16px;
  }
  .header-actions {
    gap: 2px;
  }
  .brand {
    font-size: 16px;
    gap: 6px;
  }
  .brand img {
    width: 26px;
    height: 26px;
  }
  .hero h1 {
    font-size: 42px;
  }
  .hero .actions {
    flex-direction: column;
  }
  .hero .button {
    min-width: 195px;
  }
  .hero-layout {
    padding-top: 37px;
  }
  .hero-visual {
    padding-inline: 0;
  }
  .opportunity-body {
    padding: 21px 17px;
  }
  .opportunity-heading {
    gap: 9px;
  }
  .opportunity-heading p {
    font-size: 12px;
  }
  .account-symbol {
    width: 37px;
    height: 37px;
    font-size: 16px;
  }
  .card-topline {
    padding: 14px;
  }
  .sample-label {
    font-size: 8px;
  }
  .opportunity-body h2 {
    font-size: 21px;
  }
  .signal-row {
    flex-wrap: wrap;
    gap: 8px;
  }
  .next-move-card {
    width: 96%;
    right: -6px;
    padding: 17px 15px;
    gap: 12px;
  }
  .next-move-card p:not(.micro-label) {
    font-size: 12px;
  }
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 33px;
  }
  .feature-card {
    min-height: 0;
    padding-bottom: 0;
  }
  .feature-card h3 {
    font-size: 23px;
    max-width: none;
  }
  .feature-card > p:last-of-type {
    max-width: none;
  }
  .feature-icon {
    margin-bottom: 20px;
  }
  .product-tabs button {
    padding-inline: 10px;
    font-size: 11px;
  }
  .product-tabs svg {
    width: 13px;
    height: 13px;
  }
  .follow-heading {
    align-items: flex-start;
  }
  .follow-heading .micro-label {
    font-size: 8px;
  }
  .review-badge {
    font-size: 8px;
  }
  .footer-grid {
    gap: 31px 20px;
  }
  .footer-brand .brand {
    font-size: 15px;
  }
  .footer-brand .brand img {
    width: 25px;
    height: 25px;
  }
  .section h2 {
    font-size: 32px;
  }
  .closing-inner h2 {
    font-size: 34px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

.hero,
.closing-section,
.deployment-dedicated {
  --focus: #f4c988;
}

/* Shared multi-page navigation and editorial layouts. */
.desktop-nav a[aria-current='page'],
.mobile-nav a[aria-current='page'] {
  color: var(--accent);
}
.desktop-nav a[aria-current='page'] {
  text-decoration: underline;
  text-underline-offset: 9px;
  text-decoration-thickness: 2px;
}
.page-hero {
  background: var(--sunken);
  border-bottom: 1px solid var(--line);
  padding: 32px 0 72px;
}
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 58px;
}
.breadcrumbs a:hover {
  color: var(--accent);
}
.breadcrumbs svg {
  width: 12px;
  height: 12px;
}
.breadcrumbs [aria-current] {
  color: var(--ink);
}
.page-hero-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 65px;
  align-items: end;
}
.page-hero h1 {
  font-size: clamp(40px, 4.3vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.055em;
  max-width: 700px;
}
.page-hero .eyebrow {
  margin-bottom: 22px;
}
.page-hero-intro > p {
  font-size: 17px;
  line-height: 1.85;
  color: var(--muted);
  max-width: 515px;
}
.page-hero-intro .text-link {
  margin-top: 25px;
}
.explore-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.explore-card {
  display: flex;
  flex-direction: column;
  padding: 33px 36px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  transition:
    border-color 0.2s,
    transform 0.2s;
}
.explore-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}
.explore-card-top {
  display: flex;
  justify-content: space-between;
  align-items: start;
}
.explore-card-top > span:last-child {
  font: 11px var(--mono);
  color: var(--muted);
}
.explore-card .feature-icon {
  margin-bottom: 26px;
}
.explore-card .eyebrow {
  margin-bottom: 11px;
  font-size: 10px;
}
.explore-card h3 {
  font-size: 29px;
  line-height: 1.22;
  letter-spacing: -0.035em;
  max-width: 410px;
}
.explore-card > p:not(.eyebrow) {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin: 17px 0 24px;
}
.explore-card .text-link {
  margin-top: auto;
  font-size: 13px;
}
.topic-section {
  padding-top: 0;
}
.topic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.topic-grid.provider-grid {
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.topic-card {
  border-top: 1px solid var(--line);
  padding-top: 27px;
}
.provider-grid .topic-card {
  border: 1px solid var(--line);
  padding: 32px;
  border-radius: 10px;
  background: var(--surface);
}
.topic-number {
  display: block;
  font: 11px var(--mono);
  color: var(--muted);
  margin-bottom: 25px;
}
.topic-card .eyebrow {
  font-size: 10px;
  margin-bottom: 15px;
}
.section .topic-card h2 {
  font-size: 27px;
  line-height: 1.22;
  letter-spacing: -0.025em;
  margin-bottom: 17px;
}
.topic-card > p:not(.eyebrow) {
  font-size: 14px;
  line-height: 1.85;
  color: var(--muted);
}
.topic-card ul,
.contact-topics ul {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}
.topic-card li,
.contact-topics li {
  display: flex;
  align-items: start;
  gap: 9px;
  font-size: 13px;
  color: var(--muted);
}
.topic-card li svg,
.contact-topics li svg {
  color: var(--accent);
  width: 15px;
  height: 15px;
  margin-top: 3px;
}
.page-note {
  display: flex;
  gap: 14px;
  padding: 24px 28px;
  margin-top: 37px;
  background: var(--sunken);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.85;
}
.page-note svg {
  color: var(--accent);
  margin-top: 2px;
}
[data-page='deployment'] .topic-section {
  padding-top: 75px;
}
.page-next {
  background: #101b28;
  color: #f6f7fb;
  --focus: #f4c988;
}
.page-next-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding-block: 61px;
}
.page-next .eyebrow {
  color: #b9a8ed;
  margin-bottom: 15px;
}
.page-next h2 {
  max-width: 720px;
  font-size: 34px;
  letter-spacing: -0.035em;
  line-height: 1.22;
}
.page-next .button {
  flex-shrink: 0;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.85fr;
  gap: 76px;
  align-items: start;
}
.contact-desk {
  min-width: 0;
}
.contact-desk .eyebrow {
  margin: 0 0 17px;
}
.section .contact-desk h2 {
  font-size: 37px;
  line-height: 1.18;
  letter-spacing: -0.035em;
  margin-bottom: 22px;
}
.contact-desk > p:not(.eyebrow) {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.85;
}
.contact-address {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 20px;
  color: var(--accent);
  margin: 30px 0 18px;
}
.contact-address:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.contact-desk .contact-note {
  font-size: 12px !important;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.contact-form {
  --form-error: #a7393e;
  position: relative;
  margin-top: 26px;
  scroll-margin-top: 110px;
}
:root[data-theme='dark'] .contact-form {
  --form-error: #ffb4b4;
}
.no-js .contact-form {
  display: none;
}
.form-required,
.field-hint {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7;
}
.form-required {
  margin-bottom: 20px;
}
.contact-fields {
  border: 0;
  margin: 0;
  padding: 0;
  min-width: 0;
}
.form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 21px 18px;
}
.form-wide {
  grid-column: 1 / -1;
}
.form-field {
  min-width: 0;
}
.form-field > label {
  display: block;
  font-size: 12px;
  font-weight: 550;
  margin-bottom: 8px;
}
.field-optional {
  color: var(--muted);
  font-size: 10px;
  font-weight: 400;
}
.form-field input:not([type='hidden']),
.contact-select-trigger,
.form-field textarea {
  display: block;
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.5;
  padding: 12px 13px;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.form-field input:not([type='hidden']):hover,
.contact-select-trigger:hover,
.form-field textarea:hover {
  border-color: var(--muted);
}
.form-field input:not([type='hidden']):focus,
.contact-select-trigger:focus,
.form-field textarea:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 16%, transparent);
}
.contact-form :is(button, a, input[type='checkbox']):focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.contact-form .contact-select-trigger:focus-visible {
  outline: none;
}
.contact-form [aria-invalid='true'] {
  border-color: var(--form-error);
}
.field-error {
  margin-top: 8px;
  color: var(--form-error);
  font-size: 12px;
  line-height: 1.65;
}
.contact-select {
  position: relative;
}
.contact-select input[type='hidden'] {
  display: none;
}
.contact-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  min-height: 47px;
}
.contact-select-trigger[data-placeholder='true'] {
  color: var(--muted);
}
.contact-select-trigger > svg {
  width: 17px;
  height: 17px;
  color: var(--accent);
  transition: transform 0.18s;
}
.contact-select-trigger[aria-expanded='true'] > svg {
  transform: rotate(180deg);
}
.contact-select-options {
  position: absolute;
  z-index: 20;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  color: var(--ink);
  box-shadow: 0 12px 32px rgb(19 30 47 / 14%);
  max-height: 280px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
}
.contact-select[data-direction='up'] .contact-select-options {
  top: auto;
  bottom: calc(100% + 8px);
}
.contact-select-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  line-height: 1.5;
  min-height: 43px;
}
.contact-select-option[data-active='true'],
.contact-select-option:hover {
  background: var(--accent-soft);
  color: var(--accent);
}
.contact-select-option > svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  opacity: 0;
}
.contact-select-option[aria-selected='true'] > svg {
  opacity: 1;
}
.form-field textarea {
  resize: vertical;
  min-height: 132px;
}
.field-hint {
  margin-top: 8px;
}
.contact-trap {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.contact-consent {
  display: flex;
  align-items: start;
  gap: 11px;
  font-size: 12px;
  line-height: 1.8;
  cursor: pointer;
}
.contact-consent input {
  appearance: none;
  -webkit-appearance: none;
  display: grid;
  place-content: center;
  border: 1px solid var(--muted);
  border-radius: 5px;
  background: var(--surface);
  width: 19px;
  height: 19px;
  margin: 3px 0 0;
  flex-shrink: 0;
  cursor: pointer;
  transition:
    background 0.18s,
    border-color 0.18s;
}
.contact-consent input::after {
  content: '';
  width: 5px;
  height: 9px;
  border: solid var(--surface);
  border-width: 0 2px 2px 0;
  transform: translateY(-1px) rotate(45deg) scale(0);
}
.contact-consent input:checked {
  background: var(--accent);
  border-color: var(--accent);
}
.contact-consent input:checked::after {
  transform: translateY(-1px) rotate(45deg) scale(1);
}
.contact-consent input:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}
.contact-privacy {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.8;
  margin: 10px 0 0 28px;
}
.contact-privacy a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.contact-privacy svg,
.contact-fallback svg {
  width: 12px;
  height: 12px;
  margin-left: 3px;
}
.contact-status {
  margin-top: 22px;
  font-size: 12px;
  line-height: 1.8;
  color: var(--muted);
}
.contact-status[data-state='error'] {
  border-left: 3px solid var(--accent);
  padding: 11px 14px;
  background: var(--accent-soft);
  color: var(--ink);
  border-radius: 0 5px 5px 0;
}
.contact-form-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px 20px;
  margin-top: 17px;
}
.contact-form-actions .button {
  min-width: 175px;
}
.contact-form button:disabled {
  cursor: wait;
  opacity: 0.55;
}
.contact-reconnect,
.contact-another {
  border: 0;
  padding: 0;
  background: transparent;
  font: inherit;
  font-size: 13px;
}
.contact-fallback {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 12px !important;
}
.contact-fallback a {
  color: var(--accent);
  white-space: nowrap;
}
.contact-success {
  margin-top: 30px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 30px;
  background: var(--surface);
}
.contact-success .feature-icon {
  margin-bottom: 20px;
}
.contact-success h3 {
  font-size: 25px;
  line-height: 1.3;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}
.contact-success > p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}
.contact-receipt {
  margin-block: 20px;
}
.contact-receipt strong {
  display: block;
  font: 12px / 1.8 var(--mono);
  color: var(--ink);
  overflow-wrap: anywhere;
}
.contact-topics {
  display: grid;
  gap: 42px;
}
.contact-topics article {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.contact-topics .eyebrow {
  margin-bottom: 12px;
  font-size: 10px;
}
.section .contact-topics h2 {
  font-size: 28px;
  line-height: 1.25;
  margin-bottom: 15px;
}
.contact-topics article > p:not(.eyebrow) {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.85;
}
.contact-topics .text-link {
  margin-top: 23px;
  font-size: 13px;
}
[data-page='contact'] .faq-section {
  border-top: 1px solid var(--line);
}
@media (max-width: 1099px) {
  .page-hero-layout {
    gap: 36px;
  }
  .page-hero h1 {
    font-size: 46px;
  }
  .topic-grid {
    gap: 25px;
  }
  .contact-layout {
    gap: 45px;
  }
}
@media (max-width: 799px) {
  .page-hero {
    padding: 23px 0 43px;
  }
  .breadcrumbs {
    margin-bottom: 36px;
    font-size: 11px;
  }
  .page-hero-layout {
    grid-template-columns: 1fr;
    gap: 23px;
  }
  .page-hero h1 {
    font-size: clamp(37px, 7vw, 51px);
    letter-spacing: -0.04em;
  }
  .page-hero .eyebrow {
    margin-bottom: 17px;
  }
  .page-hero-intro > p {
    font-size: 15px;
  }
  .page-hero-intro .text-link {
    margin-top: 19px;
    font-size: 13px;
  }
  .explore-grid,
  .topic-grid,
  .topic-grid.provider-grid {
    grid-template-columns: 1fr;
  }
  .explore-card {
    padding: 27px;
  }
  .explore-card h3 {
    font-size: 26px;
  }
  .explore-card .feature-icon {
    margin-bottom: 21px;
  }
  .topic-grid {
    gap: 34px;
  }
  .topic-number {
    margin-bottom: 17px;
  }
  .section .topic-card h2 {
    font-size: 26px;
  }
  .provider-grid .topic-card {
    padding: 25px;
  }
  .page-note {
    padding: 20px;
    font-size: 12px;
  }
  [data-page='deployment'] .topic-section {
    padding-top: 45px;
  }
  .page-next-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 26px;
    padding-block: 43px;
  }
  .page-next h2 {
    font-size: 28px;
  }
  .page-next .button {
    min-width: 185px;
  }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 47px;
  }
  .contact-desk {
    position: static;
  }
  .section .contact-desk h2 {
    font-size: 32px;
    max-width: 440px;
  }
  .contact-address {
    font-size: 19px;
  }
  .contact-topics {
    gap: 32px;
  }
  .section .contact-topics h2 {
    font-size: 25px;
  }
  .contact-form {
    scroll-margin-top: 90px;
  }
  .form-field input:not([type='hidden']),
  .contact-select-trigger,
  .form-field textarea {
    font-size: 16px;
  }
}
@media (max-width: 479px) {
  .form-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .contact-success {
    padding: 24px;
  }
}

/* Campaign landing pages: focused, shareable invitations that retain the
   Tracka family system without appearing in the primary product navigation. */
.campaign-hero {
  --campaign-accent: #b9a4ff;
  --campaign-accent-strong: #8066ec;
  --campaign-glow: #6b4dd6;
  --campaign-panel: rgb(16 29 45 / 86%);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 78% 18%, rgb(105 70 211 / 25%), transparent 33%),
    radial-gradient(circle at 4% 95%, rgb(0 160 233 / 12%), transparent 38%),
    #07121e;
  color: #f5f7fb;
  --focus: #f4c988;
}
.campaign-hero.campaign-spark {
  --campaign-accent: #ffd09b;
  --campaign-accent-strong: #ee9853;
  --campaign-glow: #d96e56;
  --campaign-panel: rgb(24 27 43 / 88%);
  background:
    radial-gradient(circle at 79% 16%, rgb(214 100 73 / 24%), transparent 35%),
    radial-gradient(circle at 8% 88%, rgb(107 77 214 / 16%), transparent 41%),
    #101321;
}
.campaign-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgb(255 255 255 / 8%);
  border-radius: 50%;
  pointer-events: none;
}
.campaign-orbit-one {
  width: 680px;
  height: 680px;
  right: -210px;
  top: -310px;
}
.campaign-orbit-two {
  width: 430px;
  height: 430px;
  right: 150px;
  top: -190px;
  border-color: color-mix(in srgb, var(--campaign-accent) 22%, transparent);
}
.campaign-hero-layout {
  min-height: 720px;
  padding-block: 78px 86px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, 0.82fr);
  gap: clamp(48px, 7vw, 104px);
  align-items: center;
}
.campaign-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}
.campaign-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  margin-bottom: 34px;
  border: 1px solid color-mix(in srgb, var(--campaign-accent) 32%, transparent);
  border-radius: 99px;
  background: color-mix(in srgb, var(--campaign-accent) 8%, transparent);
  color: var(--campaign-accent);
  font: 600 10px/1.45 var(--mono);
  letter-spacing: 0.075em;
}
.campaign-badge svg {
  width: 14px;
  height: 14px;
}
.campaign-copy > .eyebrow {
  color: var(--campaign-accent);
  margin-bottom: 18px;
}
.campaign-copy h1 {
  max-width: 760px;
  font-size: clamp(50px, 5vw, 72px);
  line-height: 1.03;
  letter-spacing: -0.055em;
  font-weight: 560;
}
.campaign-copy h1 span {
  color: var(--campaign-accent);
}
.campaign-intro {
  max-width: 690px;
  margin-top: 28px;
  color: #b7c2d0;
  font-size: 17px;
  line-height: 1.85;
}
.campaign-copy .actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 31px;
}
.campaign-copy .button-light {
  background: #f5f7fb;
  color: #101827;
}
.campaign-button-ghost {
  border-color: rgb(255 255 255 / 20%);
  color: #eef2f7;
  background: rgb(255 255 255 / 3%);
}
.campaign-button-ghost:hover {
  border-color: var(--campaign-accent);
  background: color-mix(in srgb, var(--campaign-accent) 9%, transparent);
}
.campaign-button-ghost:hover svg {
  transform: translateY(2px);
}
.campaign-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 21px;
  color: #8f9ead;
  font-size: 11px;
}
.campaign-note svg {
  width: 14px;
  height: 14px;
  color: var(--campaign-accent);
}
.campaign-visual {
  position: relative;
  width: 100%;
  min-width: 0;
  perspective: 1200px;
}
.campaign-visual:before,
.campaign-visual:after {
  content: '';
  position: absolute;
  border-radius: 20px;
  pointer-events: none;
}
.campaign-visual:before {
  inset: 8% -8% -8% 8%;
  z-index: -1;
  background: color-mix(in srgb, var(--campaign-glow) 16%, transparent);
  filter: blur(35px);
}
.campaign-visual:after {
  width: 130px;
  height: 130px;
  right: -34px;
  bottom: -36px;
  border: 1px solid color-mix(in srgb, var(--campaign-accent) 35%, transparent);
  background: linear-gradient(
    145deg,
    color-mix(in srgb, var(--campaign-accent) 12%, transparent),
    transparent
  );
  transform: rotate(18deg);
}
.campaign-window {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 13%);
  border-radius: 16px;
  background: var(--campaign-panel);
  box-shadow: 0 32px 85px rgb(0 0 0 / 34%);
  backdrop-filter: blur(18px);
  transform: rotateY(-3deg) rotateX(1.5deg);
}
.campaign-window-bar {
  min-height: 49px;
  padding: 13px 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgb(255 255 255 / 9%);
  color: #8493a4;
  font: 600 8px/1.5 var(--mono);
  letter-spacing: 0.09em;
}
.campaign-window-bar > span:first-child {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}
.campaign-window-bar > span:last-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.campaign-window-bar i {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgb(255 255 255 / 15%);
}
.campaign-window-bar i:first-child {
  background: var(--campaign-accent-strong);
}
.campaign-window-body {
  padding: clamp(24px, 3vw, 36px);
}
.campaign-visual-heading {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.campaign-visual-heading > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 10px;
  color: var(--campaign-accent);
  background: color-mix(in srgb, var(--campaign-accent) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--campaign-accent) 25%, transparent);
}
.campaign-visual-heading h2 {
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: -0.035em;
  font-weight: 540;
}
.campaign-brief {
  padding: 20px 0 22px;
  margin-top: 23px;
  border-block: 1px solid rgb(255 255 255 / 9%);
}
.campaign-window .micro-label {
  color: #8292a3;
  font: 600 9px/1.5 var(--mono);
  letter-spacing: 0.08em;
}
.campaign-brief > p:last-child {
  margin-top: 8px;
  color: #d8dee7;
  font-size: 14px;
  line-height: 1.7;
}
.campaign-stage-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  padding: 26px 0 27px;
}
.campaign-stage-list:before {
  content: '';
  position: absolute;
  top: 37px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: rgb(255 255 255 / 12%);
}
.campaign-stage-list li {
  position: relative;
  z-index: 1;
  text-align: center;
}
.campaign-stage-list li > span {
  width: 23px;
  height: 23px;
  margin: auto;
  display: grid;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 50%;
  background: #162335;
  color: #9eabb9;
  font: 9px var(--mono);
}
.campaign-stage-list li.active > span {
  border-color: var(--campaign-accent-strong);
  background: var(--campaign-accent-strong);
  color: #fff;
  box-shadow: 0 0 0 6px
    color-mix(in srgb, var(--campaign-accent) 9%, transparent);
}
.campaign-stage-list li p {
  margin-top: 9px;
  color: #8c9aaa;
  font-size: 10px;
}
.campaign-stage-list li.active p {
  color: var(--campaign-accent);
}
.campaign-outcome {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border: 1px solid color-mix(in srgb, var(--campaign-accent) 21%, transparent);
  border-radius: 10px;
  background: color-mix(in srgb, var(--campaign-accent) 7%, transparent);
}
.campaign-outcome > svg {
  width: 19px;
  height: 19px;
  margin-top: 2px;
  color: var(--campaign-accent);
}
.campaign-outcome > div > p:last-child {
  margin-top: 5px;
  color: #e2e7ee;
  font-size: 13px;
  line-height: 1.65;
}
.campaign-control {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  color: #8e9dad;
  font-size: 10px;
}
.campaign-control svg {
  width: 13px;
  height: 13px;
  color: var(--campaign-accent);
}
.campaign-facts {
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}
.campaign-facts > .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-block: 24px;
}
.campaign-facts > .container > div {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  min-width: 0;
  padding-inline: 18px;
  border-right: 1px solid var(--line);
}
.campaign-facts > .container > div:last-child {
  border-right: 0;
}
.campaign-facts strong {
  color: var(--accent);
  font-size: 14px;
}
.campaign-facts span {
  color: var(--muted);
  font-size: 11px;
}
.campaign-promise .section-heading h2,
.campaign-process .section-heading h2 {
  max-width: 680px;
}
.campaign-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.campaign-card-grid article {
  position: relative;
  min-height: 300px;
  padding: 31px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--surface);
}
.campaign-card-grid article:after {
  content: '';
  position: absolute;
  right: -48px;
  bottom: -70px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: var(--accent-soft);
  opacity: 0.72;
}
.campaign-card-icon {
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  margin-bottom: 54px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--accent);
  background: var(--sunken);
}
.campaign-card-number {
  position: absolute;
  top: 33px;
  right: 32px;
  font: 10px var(--mono);
  color: var(--muted);
}
.campaign-card-grid h3 {
  position: relative;
  z-index: 1;
  max-width: 300px;
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: -0.025em;
}
.campaign-card-grid article > p {
  position: relative;
  z-index: 1;
  max-width: 330px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}
.campaign-process {
  border-block: 1px solid var(--line);
  background: var(--sunken);
}
.campaign-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--line);
}
.campaign-process-grid li {
  min-height: 330px;
  padding: 28px;
  background: var(--surface);
}
.campaign-process-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 61px;
  color: var(--muted);
  font: 11px var(--mono);
}
.campaign-process-top svg {
  width: 17px;
  height: 17px;
  color: var(--accent);
}
.campaign-process-grid .eyebrow {
  margin-bottom: 14px;
  font-size: 9px;
}
.campaign-process-grid h3 {
  font-size: 22px;
  line-height: 1.35;
  letter-spacing: -0.025em;
}
.campaign-process-grid li > p:last-child {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}
.campaign-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.8fr);
  gap: clamp(54px, 8vw, 110px);
  align-items: center;
}
.campaign-spotlight-copy > .eyebrow {
  margin-bottom: 18px;
}
.campaign-spotlight-copy h2 {
  max-width: 670px;
}
.campaign-spotlight-copy > p:not(.eyebrow) {
  max-width: 660px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}
.campaign-spotlight blockquote {
  position: relative;
  max-width: 680px;
  margin: 30px 0 0;
  padding: 24px 26px 24px 61px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: 0 10px 10px 0;
  background: var(--sunken);
}
.campaign-spotlight blockquote > svg {
  position: absolute;
  left: 26px;
  top: 27px;
  width: 18px;
  height: 18px;
  color: var(--accent);
}
.campaign-spotlight blockquote p {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.85;
  font-weight: 520;
}
.campaign-example-card {
  padding: 31px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.campaign-example-card > div {
  display: flex;
  align-items: center;
  gap: 11px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.campaign-example-card > div > span {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  flex-shrink: 0;
  border-radius: 9px;
  background: var(--accent-soft);
  color: var(--accent);
}
.campaign-example-card > div p {
  font-size: 15px;
  font-weight: 600;
}
.campaign-example-card ul {
  display: grid;
  gap: 15px;
  margin-top: 23px;
}
.campaign-example-card li {
  display: flex;
  gap: 11px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}
.campaign-example-card li svg {
  width: 15px;
  height: 15px;
  margin-top: 4px;
  color: var(--accent);
}
.campaign-support {
  position: relative;
  overflow: hidden;
  background: #0d1926;
  color: #f4f6fa;
  --focus: #f4c988;
}
.campaign-support:after {
  content: '';
  position: absolute;
  width: 520px;
  height: 520px;
  right: -160px;
  top: -300px;
  border-radius: 50%;
  background: #7557d626;
  filter: blur(8px);
}
.campaign-support-spark:after {
  background: #d67b5726;
}
.campaign-support > .container {
  position: relative;
  z-index: 1;
  padding-block: 74px;
  display: grid;
  grid-template-columns: 110px minmax(0, 800px);
  justify-content: center;
  gap: 48px;
}
.campaign-support-mark {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border: 1px solid #7265a0;
  border-radius: 24px;
  background: linear-gradient(145deg, #3c3455, #172337);
  color: #cbbcf7;
  transform: rotate(-5deg);
}
.campaign-support-spark .campaign-support-mark {
  border-color: #9a604d;
  background: linear-gradient(145deg, #57352f, #212335);
  color: #ffd09b;
}
.campaign-support-mark svg {
  width: 38px;
  height: 38px;
}
.campaign-support .eyebrow {
  margin-bottom: 15px;
  color: #baa9ee;
}
.campaign-support-spark .eyebrow {
  color: #efb481;
}
.campaign-support h2 {
  max-width: 760px;
  font-size: clamp(34px, 3.6vw, 48px);
  line-height: 1.16;
  letter-spacing: -0.04em;
}
.campaign-support h2 + p {
  max-width: 750px;
  margin-top: 20px;
  color: #aebbc9;
  font-size: 15px;
  line-height: 1.85;
}
.campaign-support-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 27px;
}
.campaign-support-chips span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  border: 1px solid #354657;
  border-radius: 99px;
  color: #cdd6df;
  font-size: 11px;
}
.campaign-support-chips svg {
  width: 13px;
  height: 13px;
  color: #bca9ef;
}
.campaign-support-spark .campaign-support-chips svg {
  color: #efb481;
}
.campaign-support .text-link {
  margin-top: 24px;
  color: #f1f4f8;
}
.campaign-cross-promo {
  --cross-promo-accent: #765bd7;
  --cross-promo-soft: #765bd714;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}
.campaign-cross-promo-spark {
  --cross-promo-accent: #bd6a43;
  --cross-promo-soft: #bd6a4314;
}
.campaign-cross-promo > .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 42px;
  padding-block: 34px;
}
.campaign-cross-promo-copy {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
}
.campaign-cross-promo-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid
    color-mix(in srgb, var(--cross-promo-accent) 24%, var(--line));
  border-radius: 12px;
  background: var(--cross-promo-soft);
  color: var(--cross-promo-accent);
}
.campaign-cross-promo-icon svg {
  width: 20px;
  height: 20px;
}
.campaign-cross-promo .eyebrow {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 10px;
}
.campaign-cross-promo h2 {
  font-size: 19px;
  line-height: 1.35;
  letter-spacing: -0.02em;
}
.campaign-cross-promo h2 + p {
  max-width: 760px;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}
.campaign-cross-promo-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease;
}
.campaign-cross-promo-link:hover {
  border-color: var(--cross-promo-accent);
  background: var(--cross-promo-soft);
  color: var(--ink);
}
.campaign-cross-promo-link svg {
  width: 15px;
  height: 15px;
  transition: transform 160ms ease;
}
.campaign-cross-promo-link:hover svg {
  transform: translateX(2px);
}
.campaign-application {
  scroll-margin-top: 72px;
  padding-block: 108px;
  border-bottom: 1px solid var(--line);
  background: var(--sunken);
}
.campaign-application-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(48px, 7vw, 90px);
  align-items: start;
}
.campaign-form-intro {
  position: sticky;
  top: 108px;
}
.campaign-form-intro > .eyebrow {
  margin-bottom: 18px;
}
.campaign-form-intro h2 {
  font-size: clamp(35px, 4vw, 51px);
  line-height: 1.13;
  letter-spacing: -0.045em;
}
.campaign-form-intro > p:not(.eyebrow) {
  margin-top: 23px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}
.campaign-form-note,
.campaign-form-safe {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}
.campaign-form-note > svg,
.campaign-form-safe > span {
  color: var(--accent);
  flex-shrink: 0;
}
.campaign-form-note > svg {
  width: 17px;
  height: 17px;
  margin-top: 3px;
}
.campaign-form-safe {
  margin-top: 17px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--surface);
}
.campaign-form-safe > span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--accent-soft);
}
.campaign-form-safe svg {
  width: 17px;
  height: 17px;
}
.campaign-form-safe strong {
  display: block;
  color: var(--ink);
  font-size: 12px;
}
.campaign-form-safe p {
  margin-top: 2px;
}
.campaign-form-card {
  min-width: 0;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: 0 24px 70px rgb(19 30 47 / 8%);
}
.campaign-form-card .contact-form {
  margin-top: 0;
}
.campaign-form-card .contact-fallback {
  margin-bottom: 0;
}
.campaign-faq {
  border-bottom: 1px solid var(--line);
}

@media (max-width: 1099px) {
  .campaign-hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.78fr);
    gap: 44px;
    min-height: 670px;
    padding-block: 66px 73px;
  }
  .campaign-copy h1 {
    font-size: clamp(46px, 5.3vw, 62px);
  }
  .campaign-intro {
    font-size: 15px;
  }
  .campaign-window-body {
    padding: 25px;
  }
  .campaign-visual-heading h2 {
    font-size: 21px;
  }
  .campaign-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .campaign-process-grid li {
    min-height: 285px;
  }
  .campaign-process-top {
    margin-bottom: 40px;
  }
  .campaign-application-grid {
    grid-template-columns: 0.64fr 1.15fr;
    gap: 45px;
  }
}

@media (max-width: 799px) {
  .campaign-hero-layout {
    grid-template-columns: 1fr;
    gap: 54px;
    min-height: 0;
    padding-block: 52px 66px;
  }
  .campaign-badge {
    margin-bottom: 28px;
  }
  .campaign-copy h1 {
    font-size: clamp(43px, 9vw, 61px);
  }
  .campaign-intro {
    max-width: 620px;
    margin-top: 23px;
    font-size: 16px;
  }
  .campaign-visual {
    width: min(100%, 590px);
    justify-self: center;
  }
  .campaign-window {
    transform: none;
  }
  .campaign-visual:after {
    display: none;
  }
  .campaign-facts > .container {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 18px;
  }
  .campaign-facts > .container > div:nth-child(2) {
    border-right: 0;
  }
  .campaign-facts > .container > div:nth-child(n + 3) {
    padding-top: 18px;
    border-top: 1px solid var(--line);
  }
  .campaign-card-grid {
    grid-template-columns: 1fr;
  }
  .campaign-card-grid article {
    min-height: 250px;
  }
  .campaign-card-icon {
    margin-bottom: 36px;
  }
  .campaign-spotlight {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .campaign-example-card {
    width: min(100%, 560px);
  }
  .campaign-support > .container {
    grid-template-columns: 70px 1fr;
    gap: 28px;
    padding-block: 60px;
  }
  .campaign-support-mark {
    width: 66px;
    height: 66px;
    border-radius: 17px;
  }
  .campaign-support-mark svg {
    width: 29px;
    height: 29px;
  }
  .campaign-support h2 {
    font-size: 35px;
  }
  .campaign-cross-promo > .container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .campaign-cross-promo-link {
    width: fit-content;
    margin-left: 62px;
  }
  .campaign-application {
    padding-block: 70px;
  }
  .campaign-application-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .campaign-form-intro {
    position: static;
  }
  .campaign-form-intro h2 {
    max-width: 590px;
  }
}

@media (max-width: 559px) {
  .campaign-copy .actions {
    align-items: stretch;
    flex-direction: column;
    max-width: 285px;
  }
  .campaign-copy .button {
    width: 100%;
  }
  .campaign-copy h1 {
    max-width: 100%;
    font-size: clamp(40px, 11.2vw, 53px);
    overflow-wrap: break-word;
  }
  .campaign-window-body {
    padding: 21px 17px;
  }
  .campaign-visual-heading h2 {
    font-size: 19px;
  }
  .campaign-stage-list p {
    font-size: 9px !important;
  }
  .campaign-facts > .container > div {
    display: block;
    text-align: center;
  }
  .campaign-facts strong,
  .campaign-facts span {
    display: block;
  }
  .campaign-facts span {
    margin-top: 2px;
  }
  .campaign-process-grid {
    grid-template-columns: 1fr;
  }
  .campaign-process-grid li {
    min-height: 0;
    padding: 26px;
  }
  .campaign-process-top {
    margin-bottom: 32px;
  }
  .campaign-spotlight blockquote {
    padding: 55px 20px 21px;
  }
  .campaign-spotlight blockquote > svg {
    top: 21px;
    left: 20px;
  }
  .campaign-support > .container {
    display: block;
  }
  .campaign-support-mark {
    margin-bottom: 29px;
  }
  .campaign-support h2 {
    font-size: 31px;
  }
  .campaign-cross-promo-copy {
    grid-template-columns: 36px minmax(0, 1fr);
    align-items: start;
    gap: 13px;
  }
  .campaign-cross-promo-icon {
    width: 36px;
    height: 36px;
  }
  .campaign-cross-promo h2 {
    font-size: 17px;
  }
  .campaign-cross-promo-link {
    width: 100%;
    justify-content: center;
    margin-left: 0;
  }
  .campaign-form-card {
    margin-inline: -8px;
    padding: 25px 20px;
    border-radius: 12px;
  }
}
