:root {
  --blue: #0875e1;
  --blue-dark: #075eb4;
  --blue-soft: #eaf3ff;
  --blue-line: #bedcff;
  --ink: #162033;
  --text: #3f4b5e;
  --muted: #5f6b7d;
  --line: #dfe5ec;
  --line-strong: #cdd6e0;
  --surface: #ffffff;
  --surface-soft: #f5f7fa;
  --surface-blue: #f6faff;
  --success: #0f7049;
  --warning: #b8640b;
  --shadow: 0 10px 30px rgba(21, 39, 64, 0.07);
  --header-height: 72px;
  --content: 1180px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--text);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

button {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: #fff;
  background: var(--ink);
  border-radius: 6px;
  transform: translateY(-150%);
}

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

.container {
  width: min(calc(100% - 40px), var(--content));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(223, 229, 236, 0.9);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 760;
}

.brand img {
  width: 31px;
  height: 31px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-left: auto;
}

.nav-links a {
  color: #526074;
  font-size: 14px;
  font-weight: 650;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--blue);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

.language-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 38px;
  padding: 0 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.language-link i {
  width: 17px;
  height: 17px;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 17px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 720;
  line-height: 1.2;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
  border-color: #9eabba;
  transform: translateY(-1px);
}

.button:focus-visible,
.tab-button:focus-visible,
.menu-button:focus-visible,
.faq-question:focus-visible {
  outline: 3px solid rgba(8, 117, 225, 0.22);
  outline-offset: 2px;
}

.button-primary {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}

.button-primary:hover {
  color: #fff;
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}

.button-soft {
  color: var(--blue-dark);
  background: var(--blue-soft);
  border-color: transparent;
}

.button i,
.text-link i {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

.button-large {
  min-height: 50px;
  padding-inline: 20px;
  font-size: 15px;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.menu-button i {
  width: 22px;
  height: 22px;
}

.mobile-menu {
  display: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 15px;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 20px;
  height: 2px;
  content: "";
  background: var(--blue);
}

.hero {
  position: relative;
  display: grid;
  min-height: min(720px, calc(100vh - 72px));
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-product {
  position: absolute;
  z-index: 0;
  top: 58px;
  right: -126px;
  bottom: 36px;
  width: min(1000px, 69vw);
  overflow: hidden;
  background: #f7f9fb;
  border: 1px solid #d9e1e9;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-product::after {
  position: absolute;
  inset: 0 auto 0 0;
  width: 23%;
  content: "";
  background: rgba(255, 255, 255, 0.78);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(590px, 53%);
  padding: 68px 0 92px;
}

.hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 790;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-title-line {
  display: block;
  margin-top: 17px;
  color: #2b384b;
  font-size: clamp(27px, 3.1vw, 43px);
  font-weight: 690;
  line-height: 1.12;
}

.hero-lead {
  max-width: 560px;
  margin: 23px 0 0;
  color: #536074;
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 31px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

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

.hero-meta i {
  width: 16px;
  height: 16px;
  color: var(--success);
}

.mock-titlebar {
  display: flex;
  height: 43px;
  align-items: center;
  gap: 7px;
  padding: 0 15px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.window-dot {
  width: 9px;
  height: 9px;
  background: #cfd6df;
  border-radius: 50%;
}

.mock-url {
  width: 42%;
  height: 21px;
  margin-left: 14px;
  background: #f0f3f7;
  border-radius: 4px;
}

.mock-app {
  display: grid;
  height: calc(100% - 43px);
  grid-template-columns: 236px minmax(0, 1fr);
}

.mock-sidebar {
  padding: 21px 15px;
  background: #fbfcfd;
  border-right: 1px solid var(--line);
}

.mock-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  padding: 0 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 760;
}

.mock-brand img {
  width: 25px;
  height: 25px;
}

.mock-nav-item {
  display: flex;
  height: 36px;
  align-items: center;
  gap: 10px;
  margin-bottom: 3px;
  padding: 0 10px;
  color: #5d6878;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 620;
}

.mock-nav-item i {
  width: 15px;
  height: 15px;
}

.mock-nav-item.active {
  color: #086bd0;
  background: #eaf3ff;
}

.mock-sidebar-label {
  margin: 25px 10px 9px;
  color: #929baa;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mock-main {
  min-width: 0;
  padding: 30px 34px;
  background: #f8fafc;
}

.mock-topline {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.mock-kicker {
  color: #8a94a3;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mock-heading {
  margin-top: 4px;
  color: #243044;
  font-size: 22px;
  font-weight: 760;
}

.mock-action {
  min-width: 104px;
  padding: 9px 13px;
  color: #fff;
  background: var(--blue);
  border-radius: 5px;
  text-align: center;
  font-size: 11px;
  font-weight: 750;
}

.mock-stats {
  display: grid;
  margin-top: 24px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.mock-stat {
  min-width: 0;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.mock-stat-value {
  color: var(--ink);
  font-size: 24px;
  font-weight: 790;
}

.mock-stat-label {
  overflow: hidden;
  margin-top: 3px;
  color: #7a8493;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mock-board-title {
  margin: 23px 0 10px;
  color: #374457;
  font-size: 13px;
  font-weight: 760;
}

.mock-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(140px, 1fr));
  gap: 12px;
}

.mock-column {
  min-width: 0;
  padding: 12px;
  background: #f1f4f8;
  border: 1px solid #e5e9ef;
  border-radius: 6px;
}

.mock-column-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  color: #596577;
  font-size: 10px;
  font-weight: 750;
}

.mock-count {
  min-width: 19px;
  padding: 1px 5px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 9px;
  text-align: center;
}

.mock-task {
  margin-bottom: 8px;
  padding: 11px;
  background: #fff;
  border: 1px solid #dfe4ea;
  border-radius: 5px;
}

.mock-task:last-child {
  margin-bottom: 0;
}

.mock-task-label {
  color: #354155;
  font-size: 10px;
  font-weight: 680;
}

.mock-task-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}

.mock-tag {
  padding: 2px 6px;
  color: #086bd0;
  background: #eaf3ff;
  border-radius: 3px;
  font-size: 8px;
  font-weight: 750;
}

.mock-avatar {
  width: 18px;
  height: 18px;
  background: #b9c5d3;
  border: 2px solid #fff;
  border-radius: 50%;
}

.suite-strip {
  padding: 25px 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.suite-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.suite-strip-title {
  flex: 0 0 auto;
  color: var(--ink);
  font-size: 14px;
  font-weight: 730;
}

.suite-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 20px;
}

.suite-list span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #647084;
  font-size: 13px;
  font-weight: 620;
}

.suite-list i {
  width: 16px;
  height: 16px;
  color: var(--blue);
}

.section {
  padding: 104px 0;
}

.section-soft {
  background: var(--surface-soft);
}

.section-blue {
  background: var(--surface-blue);
}

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

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

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

.section-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 4.4vw, 54px);
  font-weight: 770;
  line-height: 1.08;
  letter-spacing: 0;
}

.section-heading p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.section-heading .eyebrow {
  color: var(--blue-dark);
}

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

.module-card {
  min-height: 238px;
  padding: 25px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 7px;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.module-card:hover {
  border-color: #c5d5e8;
  box-shadow: 0 8px 20px rgba(25, 49, 80, 0.05);
  transform: translateY(-2px);
}

.icon-box {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 6px;
}

.icon-box i {
  width: 21px;
  height: 21px;
}

.module-card h3 {
  margin: 20px 0 9px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 750;
}

.module-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.audience-section {
  background: #fff;
}

.audience-grid {
  display: grid;
  margin-top: 48px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.audience-card {
  display: flex;
  min-width: 0;
  min-height: 370px;
  flex-direction: column;
  padding: 28px;
  background: #fff;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.audience-title {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 14px;
}

.audience-title > div {
  min-width: 0;
}

.audience-label {
  display: block;
  margin-bottom: 3px;
  color: var(--blue-dark);
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
}

.audience-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 19px;
  font-weight: 750;
  line-height: 1.25;
}

.audience-card > p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.audience-benefit {
  margin-top: 20px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.audience-benefit strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 12px;
}

.audience-benefit span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.audience-modules {
  display: flex;
  margin-top: auto;
  flex-wrap: wrap;
  gap: 6px;
}

.audience-modules span {
  padding: 5px 8px;
  color: #355b87;
  background: var(--blue-soft);
  border: 1px solid #d6e7fa;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 680;
}

.connection-band {
  padding: 76px 0;
  background: var(--ink);
  color: #fff;
}

.connection-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
}

.connection-band .eyebrow {
  color: #8fc7ff;
}

.connection-band .eyebrow::before {
  background: #55a9ff;
}

.connection-band h2 {
  margin: 0;
  font-size: clamp(31px, 3.6vw, 47px);
  line-height: 1.1;
}

.connection-band p {
  margin: 18px 0 0;
  color: #bcc6d3;
}

.flow-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.flow-list::before {
  position: absolute;
  z-index: 0;
  top: 19px;
  right: 10%;
  left: 10%;
  height: 1px;
  content: "";
  background: #4e5b6e;
}

.flow-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.flow-step-icon {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--blue);
  border: 4px solid var(--ink);
  border-radius: 50%;
}

.flow-step-icon i {
  width: 17px;
  height: 17px;
}

.flow-step strong {
  display: block;
  margin-top: 12px;
  color: #fff;
  font-size: 12px;
}

.flow-step small {
  display: block;
  margin-top: 3px;
  color: #98a6b7;
  font-size: 10px;
}

.product-tabs {
  margin-top: 48px;
}

.tab-list {
  display: inline-flex;
  max-width: 100%;
  gap: 3px;
  padding: 4px;
  overflow-x: auto;
  background: #e8edf3;
  border-radius: 7px;
}

.tab-button {
  display: inline-flex;
  min-height: 43px;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  padding: 0 17px;
  color: #566376;
  background: transparent;
  border: 0;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 720;
}

.tab-button i {
  width: 17px;
  height: 17px;
}

.tab-button[aria-selected="true"] {
  color: var(--ink);
  background: #fff;
  box-shadow: 0 1px 3px rgba(22, 32, 51, 0.08);
}

.product-panel {
  display: none;
  margin-top: 22px;
}

.product-panel.active {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(260px, 0.6fr);
  gap: 40px;
}

.product-stage {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  background: #edf2f7;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.product-copy {
  align-self: center;
}

.product-copy h3 {
  margin: 0;
  color: var(--ink);
  font-size: 27px;
  line-height: 1.2;
}

.product-copy > p {
  margin: 14px 0 0;
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #4e5a6c;
  font-size: 14px;
}

.check-list i {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--success);
}

.stage-web {
  padding: 26px;
}

.stage-window {
  height: 100%;
  min-height: 446px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #d7dfe8;
  border-radius: 7px;
  box-shadow: 0 14px 28px rgba(36, 54, 80, 0.09);
}

.stage-window-bar {
  display: flex;
  height: 37px;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  background: #f8fafc;
  border-bottom: 1px solid var(--line);
}

.stage-window-bar span {
  width: 8px;
  height: 8px;
  background: #bdc6d1;
  border-radius: 50%;
}

.stage-workspace {
  display: grid;
  height: 408px;
  grid-template-columns: 170px 1fr;
}

.stage-side {
  padding: 17px 12px;
  background: #f8fafc;
  border-right: 1px solid var(--line);
}

.stage-side .mock-brand {
  margin-bottom: 18px;
  padding-inline: 5px;
}

.stage-side .mock-nav-item {
  height: 31px;
  font-size: 10px;
}

.stage-content {
  min-width: 0;
  padding: 25px;
}

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

.stage-view-heading {
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  font-weight: 750;
}

.stage-create {
  padding: 6px 9px;
  color: #fff;
  background: var(--blue);
  border-radius: 4px;
  font-size: 9px;
  font-weight: 700;
}

.stage-board {
  display: grid;
  margin-top: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.stage-board-col {
  min-width: 0;
  min-height: 295px;
  padding: 9px;
  background: #f3f5f8;
  border-radius: 5px;
}

.stage-board-label {
  margin: 2px 2px 9px;
  color: #667184;
  font-size: 9px;
  font-weight: 750;
}

.stage-ticket {
  margin-bottom: 7px;
  padding: 10px;
  background: #fff;
  border: 1px solid #e0e5eb;
  border-radius: 4px;
}

.stage-ticket strong {
  display: block;
  color: #39465a;
  font-size: 9px;
}

.stage-ticket span {
  display: block;
  margin-top: 8px;
  color: #5f6b7d;
  font-size: 8px;
}

.stage-drive {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  background: #f7f9fb;
}

.drive-rail {
  padding: 28px 14px;
  background: #eef2f5;
  border-right: 1px solid #dce3ea;
}

.drive-rail .mock-brand {
  margin-bottom: 28px;
}

.drive-nav {
  display: flex;
  height: 38px;
  align-items: center;
  gap: 9px;
  margin-bottom: 5px;
  padding: 0 10px;
  color: #536074;
  border-radius: 5px;
  font-size: 10px;
  font-weight: 680;
}

.drive-nav i {
  width: 15px;
  height: 15px;
}

.drive-nav.active {
  color: var(--blue);
  background: #fff;
}

.drive-body {
  min-width: 0;
  padding: 38px 30px;
}

.drive-heading {
  margin: 0;
  color: var(--ink);
  font-size: 21px;
  font-weight: 750;
}

.drive-sub {
  color: var(--muted);
  font-size: 11px;
}

.drive-kpis {
  display: grid;
  margin-top: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px;
}

.drive-kpi {
  padding: 16px;
  background: #fff;
  border: 1px solid #e3e8ee;
  border-radius: 6px;
}

.drive-kpi small {
  display: block;
  color: #7a8797;
  font-size: 8px;
  font-weight: 750;
  text-transform: uppercase;
}

.drive-kpi strong {
  display: block;
  margin-top: 5px;
  color: var(--ink);
  font-size: 12px;
}

.sync-panel {
  margin-top: 12px;
  padding: 18px;
  background: #fff;
  border: 1px solid #cfe1f5;
  border-radius: 6px;
}

.sync-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #5a677a;
  font-size: 9px;
  font-weight: 730;
}

.sync-row strong {
  color: var(--blue);
  font-size: 13px;
}

.sync-bar {
  height: 7px;
  margin-top: 12px;
  overflow: hidden;
  background: #e3e9f0;
  border-radius: 4px;
}

.sync-bar span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--blue);
}

.sync-status {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 11px;
  color: #6e7a8b;
  font-size: 9px;
}

.sync-status i {
  width: 14px;
  height: 14px;
  color: var(--success);
}

.stage-code {
  display: grid;
  grid-template-columns: 44px 172px minmax(0, 1fr);
  background: #181d25;
}

.code-activity {
  padding: 20px 11px;
  background: #232933;
  border-right: 1px solid #363e49;
}

.code-activity i {
  display: block;
  width: 21px;
  height: 21px;
  margin-bottom: 20px;
  color: #7e8998;
}

.code-activity i.active {
  color: #fff;
}

.code-tree {
  padding: 20px 13px;
  color: #bcc5d1;
  background: #1e242d;
  border-right: 1px solid #343c47;
  font-size: 9px;
}

.code-tree-title {
  margin-bottom: 17px;
  color: #fff;
  font-weight: 760;
}

.code-tree div {
  margin-bottom: 9px;
  white-space: nowrap;
}

.code-tree .selected {
  color: #71b7ff;
}

.code-editor {
  min-width: 0;
  padding: 0 0 22px;
}

.editor-tab {
  width: 135px;
  padding: 12px 14px;
  color: #d7dce3;
  background: #202630;
  border-top: 2px solid var(--blue);
  font-size: 9px;
}

.code-lines {
  padding: 22px 18px;
  counter-reset: line;
}

.code-line {
  display: grid;
  min-width: 0;
  margin-bottom: 8px;
  grid-template-columns: 22px 1fr;
  color: #c4ccd6;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 8px;
  white-space: nowrap;
}

.code-line::before {
  color: #657080;
  content: counter(line);
  counter-increment: line;
}

.code-blue {
  color: #74b7ff;
}

.code-green {
  color: #76d39b;
}

.code-gold {
  color: #e8c476;
}

.commit-panel {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 238px;
  padding: 14px;
  color: #dbe3ec;
  background: #252c36;
  border: 1px solid #3c4653;
  border-radius: 6px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.commit-panel strong {
  display: block;
  font-size: 10px;
}

.commit-panel span {
  display: block;
  margin-top: 5px;
  color: #929dab;
  font-size: 8px;
}

.commit-progress {
  height: 5px;
  margin-top: 11px;
  overflow: hidden;
  background: #414b58;
  border-radius: 3px;
}

.commit-progress::after {
  display: block;
  width: 72%;
  height: 100%;
  content: "";
  background: var(--blue);
}

.stage-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  padding: 32px;
  background: #eef3f8;
}

.phone-frame {
  width: 214px;
  height: 427px;
  padding: 8px;
  background: #1d2530;
  border-radius: 30px;
  box-shadow: 0 18px 30px rgba(30, 46, 68, 0.18);
}

.phone-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  padding: 26px 15px 18px;
  background: #f8fafc;
  border-radius: 23px;
}

.phone-brand {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 770;
}

.phone-brand img {
  width: 20px;
  height: 20px;
}

.phone-title {
  margin-top: 22px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 760;
}

.phone-card {
  margin-top: 10px;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.phone-card strong {
  display: block;
  color: #39465a;
  font-size: 10px;
}

.phone-card span {
  display: block;
  margin-top: 5px;
  color: #8993a2;
  font-size: 8px;
}

.phone-tabs {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  height: 50px;
  align-items: center;
  justify-content: space-around;
  background: #fff;
  border-top: 1px solid var(--line);
}

.phone-tabs i {
  width: 16px;
  height: 16px;
  color: #8a95a4;
}

.phone-tabs i.active {
  color: var(--blue);
}

.mobile-callout {
  max-width: 230px;
}

.mobile-callout strong {
  display: block;
  color: var(--ink);
  font-size: 20px;
}

.mobile-callout p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
}

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

.download-card {
  display: flex;
  min-height: 285px;
  flex-direction: column;
  padding: 25px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 7px;
}

.download-card.featured {
  border-color: var(--blue-line);
  box-shadow: 0 8px 24px rgba(8, 117, 225, 0.08);
}

.download-platform {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.download-platform .icon-box {
  color: #3a4658;
  background: #f0f3f7;
}

.availability {
  padding: 4px 7px;
  color: var(--success);
  background: #eaf8f2;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 780;
  text-transform: uppercase;
}

.availability.pilot {
  color: var(--warning);
  background: #fff3e7;
}

.download-card h3 {
  margin: 20px 0 8px;
  color: var(--ink);
  font-size: 19px;
}

.download-card p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 13px;
}

.download-card .button,
.download-card .text-link {
  margin-top: auto;
}

.download-actions {
  display: grid;
  gap: 8px;
  margin-top: auto;
}

.download-actions .button {
  margin-top: 0;
}

.download-version {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 11px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--blue-dark);
  font-size: 14px;
  font-weight: 730;
}

.text-link:hover {
  color: var(--blue);
}

.secondary-tools {
  display: grid;
  margin-top: 18px;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.secondary-tool {
  display: flex;
  gap: 13px;
}

.secondary-tool i {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  color: var(--blue);
}

.secondary-tool strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
}

.secondary-tool span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.pricing-grid {
  display: grid;
  max-width: 980px;
  margin: 50px auto 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.pricing-card {
  position: relative;
  display: flex;
  min-height: 590px;
  flex-direction: column;
  padding: 34px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.pricing-card.pro {
  border: 2px solid var(--blue);
}

.plan-label {
  display: inline-flex;
  align-self: flex-start;
  padding: 5px 8px;
  color: #536074;
  background: #edf1f5;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.pricing-card.pro .plan-label {
  color: #fff;
  background: var(--blue);
}

.pricing-card h3 {
  margin: 22px 0 5px;
  color: var(--ink);
  font-size: 25px;
}

.pricing-intro {
  min-height: 48px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin: 25px 0;
  color: var(--ink);
}

.price strong {
  font-size: 44px;
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-size: 13px;
}

.price.checkout strong {
  font-size: 28px;
}

.plan-list {
  display: grid;
  gap: 12px;
  margin: 0 0 28px;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.plan-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #485568;
  font-size: 14px;
}

.plan-list i {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--success);
}

.pricing-card .button {
  width: 100%;
  margin-top: auto;
}

.pricing-note {
  max-width: 980px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.addon-strip {
  display: grid;
  max-width: 980px;
  margin: 20px auto 0;
  padding: 22px 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 7px;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 20px;
}

.addon-strip strong {
  color: var(--ink);
  font-size: 14px;
}

.addon-strip span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.security-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
}

.security-grid h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.08;
}

.security-grid > div > p {
  color: var(--muted);
}

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

.security-item {
  display: flex;
  min-height: 110px;
  gap: 14px;
  padding: 19px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 7px;
}

.security-item i {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  color: var(--blue);
}

.security-item strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
}

.security-item span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}

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

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

.faq-question {
  display: flex;
  width: 100%;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 2px;
  color: var(--ink);
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-weight: 720;
}

.faq-question i {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  transition: transform 160ms ease;
}

.faq-question[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 42px 22px 2px;
  color: var(--muted);
  font-size: 14px;
}

.faq-answer.open {
  display: block;
}

.cta-band {
  padding: 80px 0;
  color: #fff;
  background: var(--blue);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
}

.cta-band h2 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(31px, 4vw, 50px);
  line-height: 1.08;
}

.cta-band p {
  margin: 13px 0 0;
  color: #fff;
}

.cta-band .button {
  flex: 0 0 auto;
  color: var(--blue-dark);
  background: #fff;
  border-color: #fff;
}

.legal {
  padding: 76px 0;
  background: #f5f7fa;
  border-top: 1px solid var(--line);
}

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

.legal h2 {
  margin: 0 0 21px;
  color: var(--ink);
  font-size: 25px;
}

.legal h3 {
  margin: 25px 0 8px;
  color: var(--ink);
  font-size: 14px;
}

.legal p,
.legal address {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

.legal a {
  color: var(--blue-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer {
  padding: 34px 0;
  background: #fff;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 760;
}

.footer-brand img {
  width: 25px;
  height: 25px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: var(--muted);
  font-size: 12px;
}

.footer-links a:hover {
  color: var(--blue);
}

[data-reveal] {
  opacity: 1;
  transform: none;
  transition: opacity 300ms ease, transform 300ms ease;
}

[data-reveal].visible {
  opacity: 1;
  transform: none;
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1050px) {
  .nav-links {
    gap: 17px;
  }

  .nav-links a {
    font-size: 13px;
  }

  .hero-product {
    right: -280px;
    width: 920px;
  }

  .hero-content {
    width: 58%;
  }

  .module-grid,
  .download-grid,
  .audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .connection-grid {
    gap: 45px;
  }

  .product-panel.active {
    gap: 28px;
  }

  .security-grid {
    gap: 40px;
  }
}

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

  .container {
    width: min(calc(100% - 32px), var(--content));
  }

  .site-header {
    height: var(--header-height);
  }

  .nav-links,
  .nav-actions .language-link,
  .nav-actions > .button {
    display: none;
  }

  .nav-actions {
    margin-left: auto;
  }

  .menu-button {
    display: inline-flex;
  }

  .mobile-menu {
    position: fixed;
    z-index: 99;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    padding: 24px 20px;
    background: #fff;
  }

  .mobile-menu.open {
    display: block;
  }

  .mobile-menu nav {
    display: grid;
    gap: 2px;
  }

  .mobile-menu nav a {
    display: flex;
    min-height: 50px;
    align-items: center;
    padding: 0 12px;
    color: var(--ink);
    border-bottom: 1px solid var(--line);
    font-weight: 680;
  }

  .mobile-actions {
    display: grid;
    margin-top: 24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .hero {
    min-height: 810px;
    align-items: start;
  }

  .hero-product {
    top: auto;
    right: -205px;
    bottom: 28px;
    width: 930px;
    height: 430px;
  }

  .hero-product::after {
    display: none;
  }

  .hero-content {
    width: 100%;
    padding: 64px 0 440px;
  }

  .hero h1 {
    font-size: 58px;
  }

  .hero-title-line {
    font-size: 30px;
  }

  .hero-lead {
    max-width: 620px;
    font-size: 17px;
  }

  .suite-strip-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .suite-list {
    justify-content: flex-start;
  }

  .section {
    padding: 80px 0;
  }

  .connection-grid,
  .security-grid {
    grid-template-columns: 1fr;
  }

  .product-panel.active {
    grid-template-columns: 1fr;
  }

  .product-copy {
    order: -1;
  }

  .product-stage {
    min-height: 460px;
  }

  .pricing-card {
    min-height: 0;
  }

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

  .addon-strip > div:first-child {
    grid-column: 1 / -1;
  }

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-grid {
    gap: 50px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 28px), var(--content));
  }

  .brand {
    font-size: 18px;
  }

  .hero {
    min-height: 800px;
  }

  .hero-content {
    padding-top: 51px;
  }

  .hero h1 {
    font-size: 50px;
  }

  .hero-title-line {
    margin-top: 13px;
    font-size: 27px;
  }

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

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .hero-meta {
    display: grid;
    gap: 8px;
  }

  .hero-product {
    right: -396px;
    bottom: 24px;
    height: 380px;
  }

  .suite-list {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section {
    padding: 67px 0;
  }

  .section-heading h2 {
    font-size: 34px;
  }

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

  .module-grid,
  .download-grid,
  .audience-grid,
  .pricing-grid,
  .security-list,
  .legal-grid,
  .secondary-tools {
    grid-template-columns: 1fr;
  }

  .module-card {
    min-height: 0;
  }

  .audience-card {
    min-height: 0;
  }

  .connection-grid {
    gap: 38px;
  }

  .flow-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 10px;
  }

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

  .tab-list {
    display: flex;
    width: 100%;
  }

  .tab-button {
    min-width: 110px;
    flex: 1 0 auto;
    justify-content: center;
  }

  .product-stage {
    min-height: 410px;
  }

  .stage-web {
    padding: 13px;
  }

  .stage-workspace {
    grid-template-columns: 115px minmax(0, 1fr);
  }

  .stage-side {
    padding-inline: 6px;
  }

  .stage-side .mock-nav-item {
    gap: 5px;
    padding-inline: 5px;
  }

  .stage-content {
    padding: 16px 10px;
  }

  .stage-board {
    grid-template-columns: repeat(3, 110px);
    overflow: hidden;
  }

  .stage-drive {
    grid-template-columns: 116px minmax(0, 1fr);
  }

  .drive-rail {
    padding-inline: 6px;
  }

  .drive-body {
    padding: 28px 12px;
  }

  .drive-kpis {
    grid-template-columns: 1fr;
  }

  .stage-code {
    grid-template-columns: 38px 104px minmax(0, 1fr);
  }

  .code-tree {
    padding-inline: 8px;
    overflow: hidden;
  }

  .code-lines {
    padding-inline: 9px;
  }

  .commit-panel {
    right: 12px;
    width: 210px;
  }

  .stage-mobile {
    gap: 0;
    justify-content: center;
    padding: 20px;
  }

  .mobile-callout {
    display: none;
  }

  .pricing-card {
    min-height: 0;
    padding: 27px;
  }

  .addon-strip {
    grid-template-columns: 1fr;
  }

  .addon-strip > div:first-child {
    grid-column: auto;
  }

  .cta-band {
    padding: 65px 0;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}

.privacy-page-head {
  padding: 74px 0 58px;
  background: var(--surface-blue);
  border-bottom: 1px solid var(--line);
}

.privacy-kicker {
  margin: 0 0 14px;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.privacy-page-head h1 {
  max-width: 860px;
  margin: 0;
  color: var(--ink);
  font-size: 46px;
  line-height: 1.12;
  letter-spacing: 0;
}

.privacy-lead {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.privacy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.privacy-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.privacy-meta svg {
  width: 17px;
  height: 17px;
  color: var(--blue);
}

.privacy-layout {
  display: grid;
  align-items: start;
  grid-template-columns: 230px minmax(0, 790px);
  justify-content: space-between;
  gap: 80px;
  padding-top: 64px;
  padding-bottom: 92px;
}

.privacy-toc {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  padding-left: 18px;
  border-left: 2px solid var(--line);
}

.privacy-toc-title {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.privacy-toc nav {
  display: grid;
  gap: 2px;
}

.privacy-toc a {
  padding: 4px 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.privacy-toc a:hover,
.privacy-toc a:focus-visible {
  color: var(--blue-dark);
}

.privacy-content section {
  padding: 38px 0;
  border-top: 1px solid var(--line);
  scroll-margin-top: calc(var(--header-height) + 20px);
}

.privacy-content section:first-child {
  padding-top: 0;
  border-top: 0;
}

.privacy-content h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 27px;
  line-height: 1.25;
  letter-spacing: 0;
}

.privacy-content h3 {
  margin: 30px 0 10px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.35;
  letter-spacing: 0;
}

.privacy-content p,
.privacy-content li,
.privacy-content address {
  color: var(--text);
  font-size: 15px;
  line-height: 1.72;
}

.privacy-content p,
.privacy-content address {
  margin: 0 0 15px;
}

.privacy-content address {
  padding-left: 17px;
  border-left: 3px solid var(--blue-line);
  font-style: normal;
}

.privacy-content ul {
  margin: 0 0 18px;
  padding-left: 22px;
}

.privacy-content li + li {
  margin-top: 5px;
}

.privacy-content a {
  color: var(--blue-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-content strong {
  color: var(--ink);
}

.privacy-content .privacy-contact {
  padding-bottom: 0;
  border-top-color: var(--blue-line);
}

@media (max-width: 900px) {
  .privacy-layout {
    display: block;
  }

  .privacy-toc {
    display: none;
  }
}

@media (max-width: 620px) {
  .privacy-page-head {
    padding: 52px 0 42px;
  }

  .privacy-page-head h1 {
    font-size: 36px;
  }

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

  .privacy-meta {
    display: grid;
  }

  .privacy-layout {
    padding-top: 44px;
    padding-bottom: 68px;
  }

  .privacy-content section {
    padding: 31px 0;
  }

  .privacy-content h2 {
    font-size: 23px;
  }
}
