@import url("https://fonts.googleapis.com/css2?family=Geist:wght@400;500;600;700;800;900&family=Geist+Mono:wght@400;500;600;700&display=swap");

:root {
  --font-sans: Geist, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "Geist Mono", ui-monospace, SFMono-Regular, "Cascadia Code", "Liberation Mono", Menlo, monospace;
  --font-display: Georgia, "Times New Roman", serif;
  --navy-950: #062033;
  --navy-900: #1d4965;
  --navy-800: #0c3957;
  --blue-600: #2f78e8;
  --blue-500: #4488f4;
  --blue-100: #eaf2ff;
  --slate-900: #11273a;
  --slate-700: #41566a;
  --slate-500: #657789;
  --line: #dce4ee;
  --line-strong: #c4d3e2;
  --surface: #ffffff;
  --surface-soft: #f5f8fc;
  --warm: #f4f0ea;
  --green-100: #e5f5ec;
  --green-700: #35795b;
  --shadow-soft: 0 24px 80px rgba(17, 39, 58, 0.14);
  --shadow-card: 0 14px 38px rgba(17, 39, 58, 0.13);
  --sidebar-width: 208px;
  --text-scale: 0.85;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--slate-900);
  background: var(--surface);
  font-family: var(--font-sans);
  font-size: calc(16px * var(--text-scale));
  line-height: 1.5;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

img,
svg {
  display: block;
}

[data-lucide] {
  display: block;
  flex: 0 0 auto;
}

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

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

code,
kbd,
pre,
samp {
  font-family: var(--font-mono);
}

.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;
}

.sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 30;
  width: var(--sidebar-width);
  color: #ffffff;
  background: #1d4965;
  box-shadow: 20px 0 70px rgba(6, 32, 51, 0.22);
  overflow-y: auto;
}

.sidebar__inner {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  gap: 0;
  padding: 38px 18px 28px;
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 30px;
}

.brand__logo {
  width: 150px;
  height: auto;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  font: inherit;
  font-weight: 500;
}

.nav {
  display: grid;
  gap: 5px;
  margin-top: 0;
}

.nav__link,
.login-link {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) auto;
  align-items: center;
  gap: 9px;
  min-height: 40px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-size: calc(15px * var(--text-scale));
  font-weight: 500;
  transition:
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.nav__link {
  padding: 0 6px;
}

.nav__link svg,
.nav__link [data-lucide],
.login-link svg,
.login-link [data-lucide] {
  width: 19px;
  height: 19px;
  stroke-width: 2;
  flex: 0 0 auto;
}

.nav__link span,
.login-link span {
  min-width: 0;
}

.nav__link::after,
.login-link::after {
  content: "";
  justify-self: end;
  width: 9px;
  height: 9px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  opacity: 0.48;
  transform: rotate(45deg);
}

.nav__link:hover,
.nav__link:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  outline: none;
}

.nav__link:hover,
.nav__link:focus-visible {
  transform: translateX(2px);
}

.nav__link.is-active {
  color: #ffffff;
}

.nav__link:hover::after,
.nav__link:focus-visible::after,
.nav__link.is-active::after,
.login-link:hover::after,
.login-link:focus-visible::after {
  opacity: 0.9;
}

.sidebar__actions {
  display: grid;
  gap: 5px;
  margin-top: 5px;
}

.login-link {
  padding: 0 6px;
}

.login-link:hover,
.login-link:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  transform: translateX(2px);
  outline: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: 100%;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid var(--blue-600);
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(180deg, var(--blue-500), var(--blue-600));
  box-shadow: 0 12px 24px rgba(47, 120, 232, 0.22);
  font-size: calc(15px * var(--text-scale));
  font-weight: 800;
  text-align: center;
  overflow-wrap: anywhere;
}

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

.button svg,
.button [data-lucide] {
  width: 17px;
  height: 17px;
}

.button--secondary {
  color: var(--blue-600);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: none;
}

.button--full {
  width: 100%;
  min-height: 46px;
  padding-inline: 10px;
}

.sidebar-demo {
  justify-content: space-between;
  min-height: 43px;
  padding-inline: 12px 10px;
  box-shadow: none;
  font-size: calc(15.4px * var(--text-scale));
}

.sidebar-demo span {
  flex: 1;
  text-align: left;
}

.sidebar-demo svg,
.sidebar-demo [data-lucide] {
  width: 17.6px;
  height: 17.6px;
}

.sidebar-demo.is-active {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.26);
}

.sidebar__footer {
  display: grid;
  gap: 54px;
  margin-top: clamp(54px, calc(50vh - 286px), 244px);
  padding: 22px 4px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.sidebar .button,
.sidebar .button--full {
  font-weight: 700;
}

.ownership {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  gap: 10px;
  color: rgba(255, 255, 255, 0.92);
  font-size: calc(13px * var(--text-scale));
  font-weight: 400;
  line-height: 1.35;
}

.ownership svg,
.ownership [data-lucide] {
  width: 26px;
  height: 26px;
  stroke-width: 2;
}

.site-main {
  min-height: 100vh;
  margin-left: var(--sidebar-width);
  background: #ffffff;
}

.section-panel,
.section {
  scroll-margin-top: 24px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(460px, 45%) minmax(0, 55%);
  grid-template-rows: minmax(650px, auto) auto;
  min-height: 88vh;
  overflow: hidden;
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 45%, var(--warm) 100%);
}

.hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 670px;
  padding: 72px 66px 64px;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--blue-600);
  font-size: calc(16.8px * var(--text-scale));
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.blog-hero h1,
.section__header h2,
.contact-section h2,
.workspace-map__header h2,
.content-panel h2,
.legal-section h2 {
  font-family: var(--font-display);
}

.hero h1 {
  max-width: 640px;
  margin: 0;
  color: #0b273d;
  font-family: var(--font-display);
  font-size: calc(67px * var(--text-scale));
  line-height: 0.95;
  font-weight: 700;
}

.hero h1 span {
  color: var(--blue-600);
}

.hero__lead {
  max-width: 560px;
  margin: 28px 0 0;
  color: var(--slate-700);
  font-size: calc(20px * var(--text-scale));
}

.hero__support {
  max-width: 585px;
  margin: 24px 0 0;
  color: var(--slate-700);
  font-size: calc(19px * var(--text-scale));
}

.hero__support a {
  color: var(--blue-600);
  font-weight: 800;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 34px;
}

.hero__actions .button {
  min-width: 185px;
}

.preview-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  min-height: 48px;
  color: var(--navy-950);
  font-size: calc(18px * var(--text-scale));
  font-weight: 800;
}

.preview-link__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(29, 73, 101, 0.18);
  border-radius: 50%;
  color: var(--navy-950);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 24px rgba(17, 39, 58, 0.12);
}

.preview-link__icon svg,
.preview-link__icon [data-lucide] {
  width: 19px;
  height: 19px;
  fill: currentColor;
  stroke-width: 2.4;
  transform: translateX(1px);
}

.hero__proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 0;
  max-width: 620px;
  margin-top: 34px;
}

.hero__proof div {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  padding-right: 22px;
}

.hero__proof div + div {
  padding-left: 22px;
  border-left: 1px solid var(--line);
}

.hero__proof svg,
.hero__proof [data-lucide] {
  width: 29px;
  height: 29px;
  color: #6f8aaa;
  stroke-width: 1.9;
}

.hero__proof span {
  color: #597087;
  font-size: calc(12px * var(--text-scale));
  font-weight: 800;
  line-height: 1.25;
}

.hero__visual {
  position: relative;
  min-height: 650px;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.55) 32%, rgba(244, 240, 234, 0.18) 100%),
    url("https://images.unsplash.com/photo-1604328698692-f76ea9498e76?auto=format&fit=crop&fm=jpg&q=78&w=1800") center / cover;
}

.hero__visual::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(17, 39, 58, 0.08));
}

.analysis-card,
.insight-card,
.feature-card,
.pricing-card,
.workflow-grid article,
.faq-list details {
  border: 1px solid rgba(196, 211, 226, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(18px);
}

.analysis-card {
  position: absolute;
  top: 22%;
  right: 8%;
  width: min(470px, 78%);
  padding: 24px;
}

.panel-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--slate-900);
  font-size: calc(14px * var(--text-scale));
}

.panel-heading__icon {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  color: var(--blue-600);
}

.panel-heading__icon svg {
  fill: currentColor;
  stroke-width: 1.7;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.75);
  overflow: hidden;
}

.metrics div {
  display: grid;
  gap: 6px;
  padding: 13px 12px;
  border-right: 1px solid var(--line);
}

.metrics div:last-child {
  border-right: 0;
}

.metrics span {
  color: var(--slate-500);
  font-size: calc(11px * var(--text-scale));
}

.metrics strong {
  color: #0b1d2c;
  font-size: calc(21px * var(--text-scale));
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 22px;
  padding: 0 11px;
  border-radius: 999px;
  font-size: calc(12px * var(--text-scale));
  font-weight: 800;
}

.badge--blue {
  color: var(--blue-600);
  background: var(--blue-100);
}

.badge--green {
  color: var(--green-700);
  background: var(--green-100);
}

.badge--amber {
  color: #7a5a19;
  background: #fff3d6;
}

.analysis-card h2 {
  margin: 26px 0 12px;
  font-size: calc(15px * var(--text-scale));
}

.amendment-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.amendment-list li {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--slate-900);
  font-size: calc(14px * var(--text-scale));
}

.amendment-list li:last-child {
  grid-template-columns: 1fr auto;
}

.amendment-list svg {
  width: 18px;
  height: 18px;
  color: var(--slate-500);
}

.insight-card {
  position: absolute;
  right: 6%;
  bottom: 20%;
  display: flex;
  align-items: center;
  gap: 20px;
  width: min(390px, 72%);
  padding: 22px 24px;
}

.insight-card > span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--blue-600);
  flex: 0 0 auto;
}

.insight-card svg {
  width: 28px;
  height: 28px;
}

.insight-card strong {
  display: block;
  margin-bottom: 4px;
  font-size: calc(18px * var(--text-scale));
}

.insight-card p {
  margin: 0;
  color: var(--slate-700);
}

.trusted-strip {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(178px, 1.15fr) repeat(5, minmax(132px, 1fr));
  align-items: center;
  gap: 0;
  min-height: 78px;
  margin: 34px 66px 40px;
  border: 1px solid rgba(196, 211, 226, 0.58);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 253, 255, 0.94)),
    rgba(255, 255, 255, 0.95);
  box-shadow: 0 22px 64px rgba(17, 39, 58, 0.09);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.trusted-strip p,
.trusted-strip span {
  display: flex;
  align-items: center;
  min-height: 78px;
  margin: 0;
  color: #0b273d;
  font-size: calc(15px * var(--text-scale));
  font-weight: 800;
  letter-spacing: 0;
}

.trusted-strip p {
  justify-content: flex-start;
  padding: 0 26px;
  color: var(--navy-800);
  font-size: calc(14px * var(--text-scale));
  font-weight: 900;
  text-transform: uppercase;
}

.trusted-strip span {
  position: relative;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  white-space: nowrap;
}

.trusted-strip span::before {
  position: absolute;
  top: 24%;
  bottom: 24%;
  left: 0;
  width: 1px;
  content: "";
  background: rgba(196, 211, 226, 0.85);
}

.trusted-strip svg,
.trusted-strip [data-lucide] {
  width: 25px;
  height: 25px;
  color: var(--blue-600);
  stroke-width: 2.1;
}

.section {
  padding: 88px 66px;
}

.page-hero {
  position: relative;
  display: grid;
  min-height: 460px;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.6fr);
  gap: 48px;
  align-items: center;
  padding: 86px 66px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.88) 47%, rgba(244, 240, 234, 0.32) 100%),
    var(--page-image, url("https://images.unsplash.com/photo-1497366811353-6870744d04b2?auto=format&fit=crop&q=82&w=1800")) center / cover;
}

.page-hero h1 {
  max-width: 780px;
  margin: 0;
  color: #0b273d;
  font-family: var(--font-display);
  font-size: calc(64px * var(--text-scale));
  line-height: 0.98;
}

.page-hero p:not(.eyebrow) {
  max-width: 680px;
  color: var(--slate-700);
  font-size: calc(20px * var(--text-scale));
}

.page-hero--features {
  min-height: 640px;
  grid-template-columns: minmax(300px, 0.72fr) minmax(520px, 1.04fr);
  gap: 64px;
  align-items: center;
}

.page-hero--features h1 {
  max-width: 620px;
}

.page-hero--features p:not(.eyebrow) {
  max-width: 560px;
}

.page-hero__panel {
  display: grid;
  gap: 14px;
  padding: 26px;
  border: 1px solid rgba(196, 211, 226, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(18px);
}

.page-hero__panel h2 {
  margin: 0;
  font-size: calc(22px * var(--text-scale));
}

.page-hero__panel p {
  margin: 0;
  color: var(--slate-700);
}

.page-hero__panel ul,
.check-list,
.article-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-hero__panel li,
.check-list li {
  display: flex;
  gap: 10px;
  color: var(--slate-700);
}

.page-hero__panel li svg,
.check-list li svg {
  width: 20px;
  height: 20px;
  color: var(--green-700);
  flex: 0 0 auto;
}

.features-video-frame {
  width: min(100%, 700px);
  aspect-ratio: 850 / 800;
  justify-self: end;
  padding: 10px;
  border: 1px solid rgba(196, 211, 226, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 26px 70px rgba(17, 39, 58, 0.2);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.features-video-frame video {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  background: #0b273d;
  object-fit: contain;
}

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

.section--intro {
  background: #ffffff;
}

.section__header {
  max-width: 790px;
}

.section__header h2,
.contact-section h2 {
  margin: 0;
  color: var(--slate-900);
  font-family: var(--font-display);
  font-size: calc(48px * var(--text-scale));
  line-height: 1.05;
}

.section__header p:not(.eyebrow),
.contact-section p,
.intro-grid p {
  color: var(--slate-700);
  font-size: calc(18px * var(--text-scale));
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 0.9fr);
  gap: 48px;
  align-items: start;
  margin-top: 30px;
}

.intro-grid > p {
  max-width: 720px;
  margin: 0;
}

.stat-line {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(17, 39, 58, 0.07);
  overflow: hidden;
}

.stat-line div {
  display: grid;
  gap: 5px;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.stat-line div:last-child {
  border-right: 0;
}

.stat-line strong {
  color: var(--blue-600);
  font-size: calc(25px * var(--text-scale));
  line-height: 1;
}

.stat-line span {
  color: var(--slate-500);
  font-size: calc(13px * var(--text-scale));
  font-weight: 700;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.feature-card {
  min-height: 230px;
  padding: 28px;
  box-shadow: 0 16px 42px rgba(17, 39, 58, 0.08);
}

.feature-card svg {
  width: 34px;
  height: 34px;
  margin-bottom: 28px;
  color: var(--blue-600);
}

.feature-card h3,
.workflow-grid h3,
.pricing-card h3 {
  margin: 0 0 12px;
  color: var(--slate-900);
  font-size: calc(21px * var(--text-scale));
  line-height: 1.15;
}

.feature-card p,
.workflow-grid p,
.pricing-card p,
.faq-list p {
  margin: 0;
  color: var(--slate-700);
}

.feature-card--link {
  display: block;
}

.feature-card--link:hover,
.feature-card--link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(47, 120, 232, 0.38);
  outline: none;
}

.workflow {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(245, 248, 252, 0.92)),
    url("https://images.unsplash.com/photo-1497366811353-6870744d04b2?auto=format&fit=crop&q=82&w=1800") center / cover;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.workflow-grid article {
  min-height: 236px;
  padding: 26px;
  box-shadow: 0 18px 44px rgba(17, 39, 58, 0.08);
}

.workflow-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 30px;
  border-radius: 50%;
  color: var(--blue-600);
  background: var(--blue-100);
  font-weight: 900;
}

.section--security {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(6, 32, 51, 0.96), rgba(12, 57, 87, 0.94)),
    url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&q=80&w=1800") center / cover;
}

.security-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.75fr);
  gap: 52px;
  align-items: start;
}

.section--security .eyebrow,
.section--security h2,
.section--security p {
  color: #ffffff;
}

.section--security .section__header p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.security-list {
  display: grid;
  gap: 12px;
}

.security-list div {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 74px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.security-list svg {
  width: 25px;
  height: 25px;
  color: #88b6ff;
  flex: 0 0 auto;
}

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

.pricing-card {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  padding: 30px;
  box-shadow: 0 16px 42px rgba(17, 39, 58, 0.08);
}

.pricing-card--featured {
  border-color: rgba(47, 120, 232, 0.5);
  box-shadow: 0 22px 58px rgba(47, 120, 232, 0.14);
}

.plan-label {
  width: fit-content;
  margin: 0 0 20px;
  padding: 6px 11px;
  border-radius: 999px;
  color: var(--blue-600);
  background: var(--blue-100);
  font-size: calc(14.4px * var(--text-scale));
  font-weight: 900;
  text-transform: uppercase;
}

.pricing-card ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  display: flex;
  gap: 10px;
  color: var(--slate-700);
}

.pricing-card li svg {
  width: 20px;
  height: 20px;
  color: var(--green-700);
  flex: 0 0 auto;
}

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

.faqs {
  background: #ffffff;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 940px;
  margin-top: 40px;
}

.faq-list details {
  padding: 0;
  box-shadow: 0 12px 30px rgba(17, 39, 58, 0.06);
}

.faq-list summary {
  cursor: pointer;
  padding: 22px 24px;
  color: var(--slate-900);
  font-size: calc(18px * var(--text-scale));
  font-weight: 800;
}

.faq-list summary:focus-visible {
  outline: 3px solid rgba(47, 120, 232, 0.28);
  outline-offset: 2px;
}

.faq-list p {
  padding: 0 24px 24px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.65fr);
  gap: 48px;
  align-items: center;
  color: #ffffff;
  background: var(--navy-900);
}

.contact-section .eyebrow,
.contact-section h2,
.contact-section p {
  color: #ffffff;
}

.contact-section p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
}

.contact-actions {
  display: grid;
  gap: 14px;
}

.product-overview {
  background: #ffffff;
}

.product-overview__layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
  margin-top: 42px;
}

.product-overview__image {
  min-height: 570px;
  margin: 0;
  border: 1px solid rgba(196, 211, 226, 0.72);
  border-radius: 8px;
  background: var(--surface-soft);
  box-shadow: 0 18px 52px rgba(17, 39, 58, 0.09);
  overflow: hidden;
}

.product-overview__image img {
  width: 100%;
  height: 100%;
  min-height: 570px;
  object-fit: cover;
  object-position: center;
}

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

.product-overview__cards article,
.team-overview__grid article {
  display: grid;
  align-content: start;
  min-height: 275px;
  padding: 26px;
  border: 1px solid rgba(196, 211, 226, 0.72);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(17, 39, 58, 0.08);
}

.product-overview__cards svg,
.product-overview__cards [data-lucide],
.team-overview__grid svg,
.team-overview__grid [data-lucide] {
  width: 31px;
  height: 31px;
  margin-bottom: 24px;
  color: var(--blue-600);
}

.product-overview__cards h3,
.home-workflow__grid h3,
.team-overview__grid h3 {
  margin: 0 0 10px;
  color: var(--slate-900);
  font-size: calc(21px * var(--text-scale));
  line-height: 1.16;
}

.product-overview__cards p,
.home-workflow__grid p,
.team-overview__grid p {
  margin: 0;
  color: var(--slate-700);
}

.home-workflow {
  overflow: hidden;
}

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

.home-workflow__grid article {
  min-height: 245px;
  padding: 24px;
  border: 1px solid rgba(196, 211, 226, 0.72);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 38px rgba(17, 39, 58, 0.07);
}

.home-workflow__grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, var(--navy-950), var(--blue-600));
  font-weight: 900;
}

.home-workflow__image {
  min-height: 430px;
  margin: 30px 0 0;
  border: 1px solid rgba(196, 211, 226, 0.72);
  border-radius: 8px;
  box-shadow: 0 20px 58px rgba(17, 39, 58, 0.12);
  overflow: hidden;
}

.home-workflow__image img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center;
}

.intelligence-section {
  display: grid;
  grid-template-columns: minmax(360px, 0.88fr) minmax(360px, 0.76fr);
  gap: 48px;
  align-items: center;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(6, 32, 51, 0.96), rgba(29, 73, 101, 0.9)),
    url("assets/blog-images/08-computer-chip.jpg") center / cover;
}

.intelligence-section .eyebrow,
.intelligence-section h2,
.intelligence-section p {
  color: #ffffff;
}

.intelligence-section h2 {
  max-width: 760px;
  font-family: var(--font-display);
  font-size: calc(58px * var(--text-scale));
  line-height: 1;
}

.intelligence-section__copy > p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: calc(19px * var(--text-scale));
}

.intelligence-points {
  display: grid;
  gap: 12px;
  margin: 28px 0 32px;
}

.intelligence-points div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 58px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
}

.intelligence-points svg,
.intelligence-points [data-lucide] {
  width: 23px;
  height: 23px;
  color: #88b6ff;
}

.button--on-dark {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.08);
}

.button--on-dark:hover,
.button--on-dark:focus-visible {
  background: rgba(255, 255, 255, 0.16);
}

.intelligence-console {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 28px 82px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.intelligence-console__bar {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-weight: 900;
}

.intelligence-console__bar svg,
.intelligence-console__bar [data-lucide] {
  width: 22px;
  height: 22px;
  color: #88b6ff;
}

.query-card,
.answer-card {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--slate-900);
}

.query-card span,
.answer-card > span {
  display: block;
  margin-bottom: 9px;
  color: var(--blue-600);
  font-size: calc(14.4px * var(--text-scale));
  font-weight: 900;
  text-transform: uppercase;
}

.query-card p {
  color: var(--slate-900);
  font-size: calc(20px * var(--text-scale));
  font-weight: 850;
}

.answer-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.answer-card li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 48px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.answer-card strong {
  color: var(--slate-900);
}

.answer-card li span {
  color: var(--slate-700);
}

.team-overview {
  background: #ffffff;
}

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

.home-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.5fr);
  gap: 42px;
  align-items: center;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(6, 32, 51, 0.95), rgba(12, 57, 87, 0.88)),
    url("assets/blog-images/03-team-meeting.jpg") center / cover;
}

.home-cta .eyebrow,
.home-cta h2,
.home-cta p {
  color: #ffffff;
}

.home-cta h2 {
  max-width: 780px;
}

.home-cta p {
  max-width: 740px;
  color: rgba(255, 255, 255, 0.8);
}

.home-cta .button--secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.workspace-map {
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff 0%, rgba(245, 248, 252, 0.9) 100%);
}

.workspace-map__header {
  max-width: 920px;
}

.workspace-map__header .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.workspace-map__header .eyebrow::before {
  content: "";
  width: 2px;
  height: 20px;
  border-radius: 999px;
  background: var(--blue-600);
}

.workspace-map__header h2 {
  max-width: 820px;
  font-size: calc(60px * var(--text-scale));
  line-height: 0.98;
}

.workspace-map__header p:not(.eyebrow) {
  max-width: 760px;
}

.workspace-diagram {
  position: relative;
  display: grid;
  grid-template-columns: minmax(270px, 0.94fr) minmax(240px, 0.62fr) minmax(310px, 1fr);
  gap: 34px;
  align-items: center;
  margin-top: 44px;
  isolation: isolate;
}

.workspace-diagram::before,
.workspace-diagram::after {
  display: none;
}

.workspace-diagram__paths {
  position: absolute;
  inset: 54px 0 28px;
  z-index: 0;
  width: 100%;
  height: calc(100% - 82px);
  pointer-events: none;
}

.workspace-diagram__paths marker path {
  fill: var(--blue-600);
}

.workspace-path {
  fill: none;
  stroke: var(--blue-600);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  opacity: 0.86;
  marker-end: url("#workspace-arrow");
}

.workspace-path--before {
  stroke: rgba(65, 86, 106, 0.62);
  stroke-dasharray: 7 10;
  marker-end: none;
}

.workspace-cluster,
.workspace-core {
  position: relative;
  z-index: 1;
}

.workspace-cluster {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 14px;
}

.workspace-cluster h3 {
  grid-column: 1 / -1;
  margin: 0 0 8px;
  color: var(--navy-800);
  font-size: calc(19px * var(--text-scale));
  text-align: center;
}

.workspace-node {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 11px;
  min-height: 72px;
  padding: 14px;
  border: 1px solid rgba(196, 211, 226, 0.78);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 38px rgba(17, 39, 58, 0.09);
}

.workspace-node svg,
.workspace-node [data-lucide] {
  width: 28px;
  height: 28px;
  color: var(--blue-600);
  stroke-width: 1.8;
}

.workspace-node span {
  color: var(--slate-900);
  font-size: calc(14px * var(--text-scale));
  font-weight: 800;
  line-height: 1.22;
}

.workspace-cluster--before .workspace-node {
  border-color: rgba(196, 211, 226, 0.66);
}

.workspace-cluster--before .workspace-node:nth-of-type(2n) {
  transform: translateY(14px);
}

.workspace-cluster--before .workspace-node:nth-of-type(3n) {
  transform: translateY(-10px);
}

.workspace-cluster--after .workspace-node {
  border-color: rgba(47, 120, 232, 0.24);
  box-shadow: 0 18px 42px rgba(47, 120, 232, 0.09);
}

.workspace-core {
  display: grid;
  justify-items: center;
  min-height: 300px;
  padding: 32px 28px;
  border: 1px solid rgba(47, 120, 232, 0.55);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 70px rgba(17, 39, 58, 0.12);
}

.workspace-core::before,
.workspace-core::after {
  display: none;
}

.workspace-core__icon {
  display: grid;
  width: 116px;
  height: 92px;
  place-items: center;
  color: var(--blue-600);
}

.workspace-core__icon svg,
.workspace-core__icon [data-lucide] {
  width: 98px;
  height: 98px;
  stroke-width: 1.55;
}

.workspace-core h3 {
  margin: 8px 0 22px;
  color: #0b273d;
  font-size: calc(34px * var(--text-scale));
  line-height: 1.05;
  text-align: center;
}

.workspace-core__panel {
  display: grid;
  gap: 12px;
  width: 100%;
  padding: 20px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(245, 248, 252, 0.78);
}

.workspace-core__panel span {
  position: relative;
  display: block;
  height: 12px;
  border-radius: 999px;
  background: var(--line);
}

.workspace-core__panel span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--blue-600);
  transform: translateY(-50%);
}

.workspace-core__panel span::after {
  content: "";
  position: absolute;
  right: 8px;
  left: 32px;
  top: 50%;
  height: 6px;
  border-radius: 999px;
  background: #dce6f2;
  transform: translateY(-50%);
}

.workspace-core__panel span:nth-child(2)::before {
  opacity: 0.85;
}

.workspace-core__panel span:nth-child(3)::before {
  opacity: 0.72;
}

.workspace-showcase {
  display: grid;
  grid-template-columns: minmax(180px, 0.72fr) minmax(0, 1.2fr) minmax(180px, 0.72fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 44px;
}

.workspace-showcase__rail,
.workspace-preview {
  border: 1px solid rgba(196, 211, 226, 0.78);
  border-radius: 8px;
  box-shadow: 0 20px 58px rgba(17, 39, 58, 0.1);
}

.workspace-showcase__rail {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 390px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.96);
}

.workspace-showcase__rail > p {
  margin: 0 0 4px;
  color: var(--slate-500);
  font-size: calc(12px * var(--text-scale));
  font-weight: 900;
  text-transform: uppercase;
}

.workspace-channel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 74px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.workspace-channel svg,
.workspace-channel [data-lucide],
.workspace-actions svg,
.workspace-actions [data-lucide] {
  width: 24px;
  height: 24px;
  color: var(--blue-600);
  stroke-width: 1.8;
}

.workspace-channel span {
  min-width: 0;
  color: var(--slate-900);
  font-weight: 800;
  line-height: 1.25;
}

.workspace-channel strong {
  display: inline-flex;
  grid-column: 2;
  justify-self: start;
  min-width: 32px;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--blue-600);
  background: var(--blue-100);
  font-size: calc(13px * var(--text-scale));
}

.workspace-preview {
  overflow: hidden;
  background: #ffffff;
}

.workspace-preview__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px;
  color: #ffffff;
  background: #0b273d;
}

.workspace-preview__topbar span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.workspace-preview__topbar svg,
.workspace-preview__topbar [data-lucide] {
  width: 26px;
  height: 26px;
  color: #ffffff;
}

.workspace-preview__topbar strong {
  color: rgba(255, 255, 255, 0.76);
  font-size: calc(12px * var(--text-scale));
  text-transform: uppercase;
}

.workspace-preview__body {
  display: grid;
  grid-template-columns: minmax(0, 1.38fr) minmax(180px, 0.72fr);
  gap: 16px;
  min-height: 326px;
  padding: 20px;
  background: linear-gradient(180deg, #ffffff 0%, var(--surface-soft) 100%);
}

.workspace-review {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: #ffffff;
}

.workspace-review p {
  margin: 0 0 4px;
  color: var(--slate-500);
  font-size: calc(13px * var(--text-scale));
  font-weight: 800;
}

.workspace-review > div > strong {
  color: var(--slate-900);
  font-size: calc(25px * var(--text-scale));
  line-height: 1.1;
}

.workspace-review ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.workspace-review li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 54px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
}

.workspace-review li span {
  color: var(--slate-700);
  font-weight: 800;
}

.workspace-actions {
  display: grid;
  gap: 12px;
}

.workspace-actions div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 86px;
  padding: 16px;
  border: 1px solid rgba(47, 120, 232, 0.2);
  border-radius: 8px;
  background: rgba(234, 242, 255, 0.72);
}

.workspace-actions span {
  color: var(--slate-900);
  font-weight: 900;
  line-height: 1.24;
}

.workspace-showcase__rail--outcomes {
  border-color: rgba(11, 39, 61, 0.92);
  background: #0b273d;
}

.workspace-showcase__rail--outcomes > p {
  color: rgba(255, 255, 255, 0.76);
}

.workspace-outcome {
  display: grid;
  gap: 5px;
  min-height: 94px;
  align-content: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.workspace-outcome span {
  color: rgba(255, 255, 255, 0.7);
  font-size: calc(12px * var(--text-scale));
  font-weight: 800;
  text-transform: uppercase;
}

.workspace-outcome strong {
  color: #ffffff;
  font-size: calc(24px * var(--text-scale));
  line-height: 1.08;
}

.workspace-map__closing {
  margin: 38px 0 0;
  color: #0b273d;
  font-size: calc(22px * var(--text-scale));
  font-weight: 800;
  text-align: center;
}

.form-card {
  display: grid;
  gap: 16px;
  padding: 30px;
  border: 1px solid rgba(196, 211, 226, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-card);
}

.form-card label {
  display: grid;
  gap: 7px;
  color: var(--slate-700);
  font-weight: 800;
}

.form-card input,
.form-card textarea,
.form-card select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: var(--slate-900);
  background: #ffffff;
  font: inherit;
}

.form-card textarea {
  min-height: 126px;
  resize: vertical;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(380px, 0.55fr);
  gap: 44px;
  align-items: start;
}

.content-stack {
  display: grid;
  gap: 24px;
}

.content-panel {
  padding: 28px;
  border: 1px solid rgba(196, 211, 226, 0.72);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(17, 39, 58, 0.08);
}

.content-panel h2,
.content-panel h3 {
  margin-top: 0;
}

.legal-intro {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.legal-intro div,
.legal-note {
  padding: 22px;
  border: 1px solid rgba(196, 211, 226, 0.72);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(17, 39, 58, 0.08);
}

.legal-intro span,
.legal-note span {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-600);
  font-size: calc(14.4px * var(--text-scale));
  font-weight: 900;
  text-transform: uppercase;
}

.legal-intro strong {
  color: var(--slate-900);
  font-size: calc(19px * var(--text-scale));
}

.legal-document {
  display: grid;
  gap: 24px;
  max-width: 980px;
}

.security-document {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: none;
  margin-top: 40px;
}

.legal-section {
  padding: 34px;
  border: 1px solid rgba(196, 211, 226, 0.72);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(17, 39, 58, 0.08);
}

.legal-section h2 {
  margin: 0 0 16px;
  color: var(--slate-900);
  font-size: calc(30px * var(--text-scale));
  line-height: 1.12;
}

.legal-section h3 {
  margin: 24px 0 10px;
  color: var(--slate-900);
  font-size: calc(20px * var(--text-scale));
}

.legal-section p,
.legal-section li,
.legal-table,
.definition-table {
  color: var(--slate-700);
}

.legal-section p {
  margin: 0 0 12px;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-list {
  display: grid;
  gap: 9px;
  margin: 12px 0 18px;
  padding-left: 22px;
}

.legal-list:last-child {
  margin-bottom: 0;
}

.legal-table,
.definition-table {
  width: 100%;
  margin: 18px 0;
  border-collapse: collapse;
  font-size: calc(15px * var(--text-scale));
}

.legal-table th,
.legal-table td,
.definition-table th,
.definition-table td {
  padding: 13px 14px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.legal-table th,
.definition-table th {
  color: var(--slate-900);
  background: var(--surface-soft);
  font-weight: 900;
}

.definition-table th:first-child,
.definition-table td:first-child {
  width: 30%;
}

.legal-note {
  margin-top: 20px;
}

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

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

.blog-page .site-main {
  background: #ffffff;
}

.blog-hero {
  position: relative;
  display: grid;
  min-height: 720px;
  grid-template-columns: minmax(0, 0.96fr) minmax(420px, 0.74fr);
  gap: 54px;
  align-items: center;
  padding: 78px 66px 54px;
  overflow: hidden;
  background:
    linear-gradient(118deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 248, 252, 0.96) 54%, rgba(234, 242, 255, 0.72) 100%),
    url("https://images.unsplash.com/photo-1497366811353-6870744d04b2?auto=format&fit=crop&q=82&w=1800") center / cover;
}

.blog-hero__copy {
  max-width: 700px;
}

.blog-hero h1 {
  margin: 0;
  color: #0b273d;
  font-size: calc(72px * var(--text-scale));
  line-height: 0.98;
}

.blog-hero__byline {
  max-width: 610px;
  margin: 18px 0 0;
  color: var(--blue-600);
  font-size: calc(17px * var(--text-scale));
  font-weight: 900;
}

.blog-hero__copy > p:not(.eyebrow):not(.blog-hero__byline) {
  max-width: 610px;
  margin: 24px 0 0;
  color: var(--slate-700);
  font-size: calc(21px * var(--text-scale));
  line-height: 1.7;
}

.blog-search {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  max-width: 560px;
  min-height: 64px;
  margin-top: 34px;
  padding: 6px 7px 6px 18px;
  border: 1px solid rgba(196, 211, 226, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 46px rgba(17, 39, 58, 0.12);
}

.blog-search svg {
  width: 21px;
  height: 21px;
  color: var(--slate-500);
}

.blog-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: none;
  color: var(--slate-900);
  background: transparent;
  font: inherit;
}

.blog-search button {
  min-height: 50px;
  padding: 0 24px;
  border: 0;
  border-radius: 8px;
  color: #ffffff;
  background: #1d4965;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.blog-topic-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
}

.blog-topic-strip > span {
  margin-right: 4px;
  color: var(--slate-700);
  font-size: calc(12px * var(--text-scale));
  font-weight: 900;
  text-transform: uppercase;
}

.topic-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--slate-700);
  background: rgba(255, 255, 255, 0.9);
  font: inherit;
  font-size: calc(13px * var(--text-scale));
  font-weight: 700;
  cursor: pointer;
}

.topic-chip:hover,
.topic-chip:focus-visible,
.topic-chip.is-active {
  border-color: rgba(47, 120, 232, 0.52);
  color: var(--blue-600);
  background: var(--blue-100);
  outline: none;
}

.blog-hero__visual {
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid rgba(196, 211, 226, 0.86);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.blog-device {
  position: relative;
  overflow: hidden;
  min-height: 0;
  aspect-ratio: 16 / 9;
  border: 10px solid #0b273d;
  border-radius: 8px;
  background: #0b273d;
  box-shadow: 0 26px 54px rgba(17, 39, 58, 0.18);
}

.blog-device img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.blog-device__bar {
  position: absolute;
  top: 16px;
  right: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 13px;
  border-radius: 8px;
  color: #0b273d;
  background: rgba(255, 255, 255, 0.86);
  font-size: calc(13px * var(--text-scale));
  font-weight: 800;
}

.blog-device__bar strong {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue-600);
}

.blog-hero__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.blog-hero__metrics div {
  display: grid;
  gap: 4px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(17, 39, 58, 0.08);
}

.blog-hero__metrics span {
  color: var(--slate-500);
  font-size: calc(11px * var(--text-scale));
  font-weight: 800;
  text-transform: uppercase;
}

.blog-hero__metrics strong {
  color: #0b273d;
  font-size: calc(28px * var(--text-scale));
  line-height: 1;
}

.blog-featured-section .section__header {
  max-width: 850px;
}

.blog-featured-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.72fr);
  gap: 20px;
  margin-top: 40px;
}

.blog-featured-stack {
  display: grid;
  gap: 20px;
}

.article-card {
  display: grid;
  gap: 16px;
  min-height: 300px;
  padding: 28px;
  border: 1px solid rgba(196, 211, 226, 0.72);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(17, 39, 58, 0.08);
}

.article-card .plan-label {
  margin: 0;
}

.article-card h3 {
  margin: 0;
  color: var(--slate-900);
  font-size: calc(24px * var(--text-scale));
  line-height: 1.12;
}

.article-card p {
  margin: 0;
  color: var(--slate-700);
}

.post-meta {
  align-self: end;
  color: var(--slate-500);
  font-size: calc(13px * var(--text-scale));
  font-weight: 600;
}

.article-card a {
  align-self: end;
  color: var(--blue-600);
  font-weight: 900;
}

.article-card--featured {
  min-height: 520px;
  align-content: end;
  padding: 38px;
  border-color: rgba(29, 73, 101, 0.4);
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(11, 39, 61, 0.16) 0%, rgba(11, 39, 61, 0.94) 62%),
    var(--article-image, url("assets/blog-images/01-financial-advisor.jpg")) center / cover;
  box-shadow: 0 26px 70px rgba(17, 39, 58, 0.22);
}

.article-card--featured .plan-label {
  color: #ffffff;
  background: rgba(68, 136, 244, 0.74);
}

.article-card--featured h3 {
  max-width: 760px;
  color: #ffffff;
  font-size: calc(34px * var(--text-scale));
  line-height: 1.08;
}

.article-card--featured p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.86);
}

.article-card--featured .post-meta {
  color: rgba(255, 255, 255, 0.78);
}

.article-card--compact {
  grid-template-columns: minmax(176px, 0.42fr) minmax(0, 1fr);
  grid-template-rows: auto 1fr auto;
  gap: 14px 20px;
  min-height: 0;
  align-content: start;
}

.article-card--compact .article-card__image {
  grid-row: 1 / 4;
  width: 100%;
  min-height: 178px;
  height: 100%;
  background-position: center;
}

.article-card--compact .plan-label,
.article-card--compact h3,
.article-card--compact .post-meta {
  grid-column: 2;
}

.article-card--compact h3 {
  font-size: calc(25px * var(--text-scale));
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
}

.post-meta span + span::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin: 0 12px 2px 0;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.5;
}

.blog-index-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 46px;
  align-items: start;
}

.blog-results {
  margin: 18px 0 0;
  color: var(--slate-500);
  font-weight: 700;
}

.blog-list {
  display: grid;
  margin-top: 28px;
  border-top: 1px solid var(--line);
}

.blog-list-item {
  display: grid;
  grid-template-columns: 218px minmax(0, 1fr);
  gap: 24px;
  padding: 24px;
  border-bottom: 1px solid var(--line);
  transition: background 160ms ease, transform 160ms ease;
}

.blog-list-item:hover {
  background: var(--surface-soft);
  transform: translateY(-1px);
}

.blog-list-item[hidden] {
  display: none;
}

.blog-list-item__thumb {
  display: grid;
  min-height: 154px;
  align-content: space-between;
  padding: 18px;
  border: 1px solid rgba(196, 211, 226, 0.72);
  border-radius: 8px;
  color: #ffffff;
  background:
    linear-gradient(145deg, rgba(29, 73, 101, 0.92), rgba(47, 120, 232, 0.82)),
    var(--surface-soft);
  box-shadow: 0 14px 30px rgba(17, 39, 58, 0.11);
}

.blog-list-item__thumb svg {
  width: 30px;
  height: 30px;
  stroke-width: 1.8;
}

.blog-list-item__thumb span {
  font-size: calc(12px * var(--text-scale));
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.blog-list-item h3 {
  margin: 0;
  color: var(--slate-900);
  font-size: calc(26px * var(--text-scale));
  line-height: 1.13;
}

.blog-list-item p:not(.plan-label):not(.post-meta) {
  margin: 12px 0 0;
  color: var(--slate-700);
}

.blog-list-item .post-meta {
  margin-top: 16px;
}

.blog-sidebar-panel {
  position: sticky;
  top: 28px;
  display: grid;
  gap: 20px;
}

.blog-sidebar-card {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid rgba(196, 211, 226, 0.78);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(17, 39, 58, 0.08);
}

.blog-sidebar-card h2 {
  margin: 0;
  color: var(--slate-900);
  font-size: calc(24px * var(--text-scale));
}

.blog-sidebar-card .topic-chip {
  justify-content: center;
  width: 100%;
}

.blog-sidebar-card--dark {
  color: #ffffff;
  background: #0b273d;
}

.blog-sidebar-card--dark h2,
.blog-sidebar-card--dark p {
  color: #ffffff;
}

.blog-sidebar-card--dark p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.blog-sidebar-card--dark .button {
  margin-top: 8px;
}

.blog-empty {
  display: none;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--slate-700);
  background: var(--surface-soft);
}

.blog-empty.is-visible {
  display: block;
}

.contact-actions .button--secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
}

.phone-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
}

.phone-link svg {
  width: 20px;
  height: 20px;
}

.footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  padding: 38px 66px;
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.footer__brand {
  color: var(--slate-900);
  font-size: calc(22px * var(--text-scale));
  font-weight: 900;
}

.footer p {
  margin: 7px 0 0;
  color: var(--slate-500);
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px 24px;
  color: var(--slate-700);
  font-weight: 800;
}

.footer__links a:hover,
.footer__links a:focus-visible {
  color: var(--blue-600);
  outline: none;
}

.copyright {
  grid-column: 1 / -1;
  font-size: calc(13px * var(--text-scale));
}

@media (max-width: 1380px) {
  :root {
    --sidebar-width: 182px;
  }

  .sidebar__inner {
    padding: 32px 16px 26px;
  }

  .brand {
    font-size: calc(21px * var(--text-scale));
  }

  .hero {
    grid-template-columns: minmax(430px, 48%) minmax(410px, 52%);
  }

  .hero__copy,
  .blog-hero,
  .page-hero,
  .section,
  .trusted-strip,
  .footer {
    padding-inline: 44px;
  }

  .trusted-strip {
    grid-template-columns: minmax(152px, 0.95fr) repeat(5, minmax(108px, 1fr));
    margin-inline: 44px;
    padding-inline: 0;
  }

  .trusted-strip p {
    padding-inline: 22px;
  }

  .trusted-strip span {
    gap: 9px;
    padding-inline: 14px;
    font-size: calc(13px * var(--text-scale));
  }

  .hero h1 {
    font-size: calc(54px * var(--text-scale));
  }

  .blog-hero {
    grid-template-columns: minmax(310px, 0.95fr) minmax(340px, 0.72fr);
    gap: 34px;
  }

  .blog-hero h1 {
    font-size: calc(62px * var(--text-scale));
  }

  .analysis-card {
    right: 5%;
    width: min(450px, 86%);
  }

  .hero__actions {
    gap: 12px;
  }

  .hero__actions .button {
    min-width: 162px;
  }

  .feature-grid,
  .pricing-grid,
  .blog-featured-grid,
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-height: 760px) and (min-width: 981px) {
  .sidebar__inner {
    padding: 18px 18px 16px;
  }

  .brand {
    margin-bottom: 16px;
  }

  .brand__logo {
    width: 145px;
  }

  .nav {
    gap: 2px;
  }

  .nav__link,
  .login-link {
    min-height: 38px;
    font-size: calc(15px * var(--text-scale));
  }

  .sidebar__actions {
    gap: 2px;
    margin-top: 2px;
  }

  .sidebar-demo {
    min-height: 42px;
  }

  .sidebar__footer {
    gap: 48px;
    padding-top: 14px;
  }

  .ownership {
    font-size: calc(12px * var(--text-scale));
  }

  .ownership svg,
  .ownership [data-lucide] {
    width: 22px;
    height: 22px;
  }

  .hero {
    grid-template-rows: minmax(650px, auto) auto;
  }

  .hero__copy {
    padding-block: 48px 38px;
  }

  .hero h1 {
    font-size: calc(54px * var(--text-scale));
  }

  .hero__lead {
    margin-top: 18px;
    font-size: calc(19px * var(--text-scale));
  }

  .hero__support {
    margin-top: 14px;
    font-size: calc(18px * var(--text-scale));
  }

  .hero__actions {
    margin-top: 22px;
  }

  .hero__proof {
    margin-top: 24px;
  }

  .hero__visual {
    min-height: 650px;
  }

  .analysis-card {
    top: 9%;
    padding: 20px;
  }

  .insight-card {
    bottom: 2%;
    padding: 18px;
  }

  .trusted-strip {
    min-height: 72px;
    margin-block: 28px 28px;
    padding-block: 0;
  }

  .trusted-strip p,
  .trusted-strip span {
    min-height: 72px;
  }
}

@media (max-width: 1200px) and (min-width: 981px) {
  .blog-index-layout {
    grid-template-columns: 1fr;
  }

  .blog-sidebar-panel {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .workspace-preview {
    order: -1;
  }

  .workspace-showcase__rail {
    min-height: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .workspace-showcase__rail > p {
    grid-column: 1 / -1;
  }
}

@media (max-width: 980px) {
  body.nav-open {
    overflow: hidden;
  }

  .sidebar {
    width: 100%;
    height: auto;
    min-height: 76px;
    right: 0;
    bottom: auto;
  }

  .sidebar__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    min-height: 0;
    gap: 14px;
    padding: 16px 22px;
  }

  .brand {
    justify-content: flex-start;
    width: fit-content;
    margin-bottom: 0;
  }

  .brand__logo {
    width: 159px;
  }

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

  .nav,
  .sidebar__actions,
  .sidebar__footer {
    display: none;
  }

  body.nav-open .nav,
  body.nav-open .sidebar__actions,
  body.nav-open .sidebar__footer {
    display: grid;
    grid-column: 1 / -1;
  }

  body.nav-open .nav {
    margin-top: 4px;
  }

  body.nav-open .sidebar__footer {
    margin-top: 4px;
    padding-top: 20px;
  }

  .site-main {
    margin-left: 0;
    padding-top: 76px;
  }

  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    min-height: 0;
  }

  .hero__copy {
    max-width: none;
    padding-block: 62px 42px;
  }

  .hero h1 {
    max-width: 680px;
    font-size: calc(46px * var(--text-scale));
  }

  .hero__visual {
    min-height: 540px;
    background-position: center;
  }

  .trusted-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 0;
    margin: 30px 44px 34px;
    padding: 0;
  }

  .trusted-strip p {
    grid-column: 1 / -1;
    justify-content: center;
    min-height: 54px;
    padding-inline: 24px;
  }

  .trusted-strip span {
    justify-content: flex-start;
    min-height: 58px;
    padding: 0 24px;
    border-top: 1px solid var(--line);
    white-space: normal;
  }

  .trusted-strip span::before {
    display: none;
  }

  .trusted-strip span:nth-of-type(even)::before {
    display: block;
    top: 24%;
    bottom: 24%;
    background: rgba(196, 211, 226, 0.85);
  }

  .intro-grid,
  .security-layout,
  .contact-section,
  .legal-intro,
  .blog-hero,
  .blog-featured-grid,
  .blog-index-layout,
  .workspace-diagram,
  .page-hero,
  .split-layout {
    grid-template-columns: 1fr;
  }

  .blog-hero {
    min-height: 0;
  }

  .blog-sidebar-panel {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-grid,
  .pricing-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

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

  .workspace-core {
    order: 0;
    max-width: none;
  }

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

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

  .workspace-preview {
    order: -1;
  }

  .workspace-showcase__rail {
    min-height: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .workspace-showcase__rail > p {
    grid-column: 1 / -1;
  }

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

  .footer__links {
    justify-content: flex-start;
  }

  .page-hero--features {
    min-height: 0;
    gap: 40px;
  }

  .features-video-frame {
    width: min(100%, 680px);
    justify-self: start;
  }
}

@media (max-width: 680px) {
  .site-main,
  .hero,
  .hero__copy,
  .hero__visual,
  .blog-hero,
  .page-hero,
  .section,
  .trusted-strip,
  .footer {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .hero,
  .blog-hero,
  .page-hero,
  .section,
  .footer {
    overflow-x: hidden;
  }

  .hero__copy,
  .blog-hero,
  .page-hero,
  .section,
  .trusted-strip,
  .footer {
    padding-inline: 22px;
  }

  .section {
    padding-block: 66px;
  }

  .page-hero {
    padding-block: 58px;
    gap: 28px;
  }

  .features-video-frame {
    width: 100%;
  }

  .workspace-showcase {
    gap: 16px;
    margin-top: 30px;
  }

  .workspace-showcase__rail,
  .workspace-preview__body {
    grid-template-columns: 1fr;
  }

  .workspace-preview__topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .workspace-review,
  .workspace-preview__body,
  .workspace-showcase__rail {
    padding: 18px;
  }

  .blog-hero {
    padding-block: 58px;
    gap: 34px;
  }

  .hero h1 {
    font-size: calc(34px * var(--text-scale));
    line-height: 1;
  }

  .blog-hero h1,
  .page-hero h1 {
    font-size: calc(42px * var(--text-scale));
  }

  .hero__lead,
  .hero__support,
  .blog-hero__copy > p:not(.eyebrow):not(.blog-hero__byline),
  .page-hero p:not(.eyebrow),
  .section__header p:not(.eyebrow),
  .contact-section p,
  .intro-grid p {
    font-size: calc(17px * var(--text-scale));
  }

  .section__header h2,
  .contact-section h2 {
    font-size: calc(36px * var(--text-scale));
  }

  .workspace-map__header h2 {
    font-size: calc(38px * var(--text-scale));
  }

  .workspace-diagram {
    gap: 28px;
  }

  .workspace-diagram__paths {
    display: none;
  }

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

  .workspace-cluster--before .workspace-node,
  .workspace-cluster--before .workspace-node:nth-of-type(2n),
  .workspace-cluster--before .workspace-node:nth-of-type(3n) {
    transform: none;
  }

  .workspace-node {
    min-height: 68px;
  }

  .workspace-core {
    padding: 26px;
  }

  .blog-search {
    grid-template-columns: auto 1fr;
  }

  .blog-search button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .blog-hero__visual {
    padding: 18px;
  }

  .blog-device,
  .blog-device img {
    min-height: 270px;
    height: 270px;
  }

  .blog-hero__metrics,
  .blog-sidebar-panel {
    grid-template-columns: 1fr;
  }

  .blog-featured-grid {
    gap: 14px;
  }

  .article-card--featured {
    min-height: 440px;
    padding: 26px;
  }

  .article-card--compact {
    grid-template-columns: 1fr;
  }

  .article-card--compact .article-card__image,
  .article-card--compact .plan-label,
  .article-card--compact h3,
  .article-card--compact .post-meta {
    grid-column: 1;
  }

  .article-card--compact .article-card__image {
    grid-row: auto;
    width: 100%;
    min-height: 190px;
  }

  .blog-list-item {
    grid-template-columns: 1fr;
    padding: 22px 0;
  }

  .blog-list-item__thumb {
    min-height: 112px;
  }

  .hero__actions {
    display: grid;
    gap: 12px;
  }

  .hero__actions .button {
    width: 100%;
    min-width: 0;
  }

  .hero__actions .preview-link {
    justify-self: start;
  }

  .hero__proof {
    grid-template-columns: 1fr;
    margin-top: 26px;
  }

  .hero__proof div {
    min-height: 0;
    padding: 0 0 14px;
  }

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

  .hero__visual {
    min-height: 610px;
  }

  .analysis-card {
    top: 50px;
    right: 22px;
    left: 22px;
    width: auto;
    padding: 18px;
  }

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

  .metrics div:nth-child(2) {
    border-right: 0;
  }

  .metrics div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .insight-card {
    right: 22px;
    left: 22px;
    bottom: 40px;
    width: auto;
    padding: 18px;
  }

  .trusted-strip {
    grid-template-columns: 1fr;
    gap: 0;
    margin: 28px 22px 28px;
    padding: 0;
  }

  .trusted-strip p {
    justify-content: flex-start;
    min-height: 50px;
    padding: 0 18px;
  }

  .trusted-strip span {
    min-height: 54px;
    padding: 0 18px;
  }

  .trusted-strip span:nth-of-type(even)::before {
    display: none;
  }

  .stat-line,
  .workflow-grid {
    grid-template-columns: 1fr;
  }

  .stat-line div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stat-line div:last-child {
    border-bottom: 0;
  }

  .security-layout {
    gap: 30px;
  }

  .security-list div {
    align-items: flex-start;
  }

  .legal-section {
    padding: 24px;
  }

  .legal-table,
  .definition-table {
    display: block;
    overflow-x: auto;
    white-space: normal;
  }
}

a.article-card,
a.blog-list-item {
  color: inherit;
  text-decoration: none;
}

a.article-card:hover,
a.article-card:focus-visible,
a.blog-list-item:hover,
a.blog-list-item:focus-visible {
  border-color: rgba(47, 120, 232, 0.42);
  outline: none;
}

.article-card--featured {
  background:
    linear-gradient(180deg, rgba(11, 39, 61, 0.16) 0%, rgba(11, 39, 61, 0.94) 62%),
    var(--article-image, url("assets/blog-images/01-financial-advisor.jpg")) center / cover;
}

.article-card__image {
  display: block;
  min-height: 154px;
  border-radius: 8px;
  background: var(--article-image) center / cover;
}

.article-card--featured .article-card__image {
  display: none;
}

.article-card--compact {
  gap: 14px 20px;
}

.article-card--compact .article-card__image {
  min-height: 178px;
  height: auto;
  aspect-ratio: 16 / 10;
  align-self: start;
}

.blog-list-item__thumb--image {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(6, 32, 51, 0.08), rgba(6, 32, 51, 0.74)),
    var(--blog-image) center / cover;
}

.blog-list-item__thumb--image span {
  position: relative;
  align-self: end;
  width: fit-content;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(6, 32, 51, 0.76);
}

.blog-article-section {
  background: linear-gradient(180deg, var(--surface-soft), #ffffff 22%);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
  color: var(--blue-600);
  font-weight: 900;
}

.back-link svg,
.back-link [data-lucide] {
  width: 18px;
  height: 18px;
}

.blog-article {
  max-width: 940px;
}

.blog-article__header {
  display: grid;
  gap: 16px;
  margin-bottom: 30px;
}

.blog-article__header h1 {
  max-width: 920px;
  margin: 0;
  color: var(--slate-900);
  font-family: var(--font-display);
  font-size: calc(58px * var(--text-scale));
  line-height: 1.02;
}

.blog-article__header .post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 0;
}

.blog-article__image {
  width: 100%;
  max-height: 520px;
  border-radius: 8px;
  box-shadow: var(--shadow-card);
  object-fit: cover;
}

.blog-article__body {
  display: grid;
  gap: 22px;
  max-width: 780px;
  margin-top: 36px;
}

.blog-article__body p {
  margin: 0;
  color: var(--slate-700);
  font-size: calc(20px * var(--text-scale));
  line-height: 1.72;
}

.blog-article__body h2,
.blog-article__body h3,
.blog-article__body h4 {
  max-width: 760px;
  margin: 18px 0 -4px;
  color: var(--slate-900);
  font-family: var(--font-display);
  line-height: 1.15;
}

.blog-article__body h2 {
  font-size: calc(34px * var(--text-scale));
}

.blog-article__body h3 {
  font-size: calc(26px * var(--text-scale));
}

.blog-article__body h4 {
  font-size: calc(22px * var(--text-scale));
}

.blog-article__body ul,
.blog-article__body ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 28px;
  color: var(--slate-700);
  font-size: calc(20px * var(--text-scale));
  line-height: 1.65;
}

.blog-article__body li::marker {
  color: var(--blue-600);
  font-weight: 900;
}

.blog-article__body a {
  color: var(--blue-600);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.blog-article__body strong {
  color: var(--slate-900);
  font-weight: 900;
}

.blog-article-table-wrap {
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(17, 39, 58, 0.06);
}

.blog-article-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  color: var(--slate-700);
  font-size: calc(16px * var(--text-scale));
  line-height: 1.55;
}

.blog-article-table th,
.blog-article-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.blog-article-table th {
  background: var(--surface-soft);
  color: var(--slate-900);
  font-size: calc(13px * var(--text-scale));
  font-weight: 900;
  text-transform: uppercase;
}

.blog-article-table tr:last-child td {
  border-bottom: 0;
}

.related-posts {
  max-width: 840px;
  margin-top: 52px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.related-posts h2 {
  margin: 0 0 18px;
  color: var(--slate-900);
  font-size: calc(24px * var(--text-scale));
}

.related-posts > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.related-posts a {
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(17, 39, 58, 0.06);
}

.related-posts span {
  color: var(--blue-600);
  font-size: calc(14.4px * var(--text-scale));
  font-weight: 900;
  text-transform: uppercase;
}

.related-posts strong {
  color: var(--slate-900);
  line-height: 1.2;
}

@media (max-width: 980px) {
  .related-posts > div {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .blog-article__header h1 {
    font-size: calc(40px * var(--text-scale));
  }

  .blog-article__body p {
    font-size: calc(18px * var(--text-scale));
  }

  .blog-article__body h2 {
    font-size: calc(28px * var(--text-scale));
  }

  .blog-article__body h3 {
    font-size: calc(23px * var(--text-scale));
  }

  .blog-article__body ul,
  .blog-article__body ol {
    font-size: calc(18px * var(--text-scale));
  }
}

@media (max-width: 420px) {
  .sidebar__inner {
    padding-inline: 16px;
  }

  .brand__logo {
    width: 152px;
  }

  .menu-toggle {
    width: 44px;
    padding: 0;
  }

  .menu-toggle span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .hero__copy,
  .blog-hero,
  .page-hero,
  .section,
  .trusted-strip,
  .footer {
    padding-inline: 18px;
  }

  .trusted-strip {
    margin-inline: 18px;
    padding-inline: 0;
  }

  .hero h1 {
    font-size: calc(31px * var(--text-scale));
  }

  .workspace-map__header h2 {
    font-size: calc(34px * var(--text-scale));
  }

  .analysis-card,
  .insight-card {
    left: 14px;
    right: 14px;
  }

  .amendment-list li {
    grid-template-columns: 1fr auto;
  }

  .amendment-list .badge {
    display: none;
  }

  .legal-section {
    padding: 20px;
  }
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  padding: 0 66px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.trust-strip span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 76px;
  padding: 0 18px;
  border-right: 1px solid var(--line);
  color: var(--slate-700);
  font-weight: 800;
}

.trust-strip span:first-child {
  border-left: 1px solid var(--line);
}

.trust-strip svg,
.trust-strip [data-lucide] {
  width: 22px;
  height: 22px;
  color: var(--blue-600);
}

.anchor-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.anchor-pills a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--slate-700);
  background: #ffffff;
  font-weight: 900;
}

.anchor-pills a:hover,
.anchor-pills a:focus-visible {
  color: var(--blue-600);
  border-color: rgba(47, 120, 232, 0.4);
  outline: none;
}

.video-card {
  display: grid;
  gap: 16px;
  width: min(100%, 760px);
  justify-self: end;
  padding: 18px;
  border: 1px solid rgba(196, 211, 226, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(18px);
}

.video-card__header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--navy-950), var(--navy-900));
  color: #ffffff;
}

.video-card__header > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.video-card__header svg {
  width: 22px;
  height: 22px;
  color: #ffffff;
}

.video-card__header .eyebrow,
.video-card__header p {
  margin: 0;
  color: #ffffff;
}

.video-card__header p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
  font-size: calc(14px * var(--text-scale));
}

.video-card .features-video-frame {
  width: 100%;
  aspect-ratio: 16 / 10;
  justify-self: stretch;
  padding: 8px;
  box-shadow: none;
}

.video-transcript {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
}

.video-transcript summary {
  cursor: pointer;
  padding: 12px 14px;
  color: var(--slate-900);
  font-weight: 900;
}

.video-transcript p {
  margin: 0;
  padding: 0 14px 14px;
  color: var(--slate-700);
}

.feature-category {
  scroll-margin-top: 28px;
}

.feature-grid--tight {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.feature-card--highlight {
  min-height: 300px;
}

.feature-overview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.46fr);
  gap: 34px;
  align-items: center;
  padding-block: 70px;
}

.feature-overview .section__header {
  max-width: 980px;
}

.feature-overview__panel,
.problem-card,
.capability-card,
.record-card,
.ask-panel,
.query-grid div,
.feature-flow-grid article,
.team-grid article,
.record-summary {
  border: 1px solid rgba(196, 211, 226, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 42px rgba(17, 39, 58, 0.08);
}

.feature-overview__panel {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.feature-overview__panel h3 {
  margin: 0;
  color: var(--slate-900);
  font-size: calc(25px * var(--text-scale));
}

.feature-proof-list,
.capability-card ul,
.ask-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-proof-list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  color: var(--slate-700);
  font-weight: 700;
}

.feature-proof-list svg,
.feature-proof-list [data-lucide] {
  width: 23px;
  height: 23px;
  color: var(--blue-600);
}

.feature-image {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0;
  border: 1px solid rgba(196, 211, 226, 0.72);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(17, 39, 58, 0.11);
  overflow: hidden;
}

.feature-image::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(6, 32, 51, 0.08));
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-image--banner {
  height: clamp(320px, 34vw, 420px);
  margin-top: 28px;
}

.feature-image--banner img {
  object-position: center top;
}

.feature-image--wide {
  height: clamp(240px, 28vw, 330px);
  margin-top: 28px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.problem-card {
  min-height: 270px;
  padding: 28px;
}

.problem-card svg,
.problem-card [data-lucide],
.record-card svg,
.record-card [data-lucide],
.ask-panel svg,
.ask-panel [data-lucide],
.team-grid svg,
.team-grid [data-lucide] {
  width: 32px;
  height: 32px;
  margin-bottom: 24px;
  color: var(--blue-600);
  stroke-width: 1.9;
}

.problem-card h3,
.record-card h3,
.ask-panel h3,
.feature-flow-grid h3,
.team-grid h3 {
  margin: 0 0 12px;
  color: var(--slate-900);
  font-size: calc(21px * var(--text-scale));
  line-height: 1.15;
}

.problem-card p,
.record-card p,
.ask-panel p,
.feature-flow-grid p,
.team-grid p {
  margin: 0;
  color: var(--slate-700);
}

.feature-deep-dive {
  background:
    linear-gradient(90deg, rgba(245, 248, 252, 0.98), rgba(255, 255, 255, 0.88)),
    url("assets/blog-images/17-boardroom-with-people-in-a-corporate-setting.jpg") center / cover;
}

.feature-deep-dive .section__header {
  max-width: 900px;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 44px;
}

.capability-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 20px;
  min-height: 360px;
  padding: 28px;
}

.capability-card__icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(47, 120, 232, 0.22);
  border-radius: 8px;
  background: var(--blue-100);
}

.capability-card__icon svg,
.capability-card__icon [data-lucide] {
  width: 28px;
  height: 28px;
  color: var(--blue-600);
}

.capability-label {
  margin: 0 0 9px;
  color: var(--blue-600);
  font-size: calc(14.4px * var(--text-scale));
  font-weight: 900;
  text-transform: uppercase;
}

.capability-card h3 {
  margin: 0 0 12px;
  color: var(--slate-900);
  font-size: calc(25px * var(--text-scale));
  line-height: 1.1;
}

.capability-card p:not(.capability-label) {
  margin: 0;
  color: var(--slate-700);
}

.capability-card ul {
  margin-top: 20px;
}

.capability-card li,
.ask-panel li {
  position: relative;
  padding-left: 18px;
  color: var(--slate-700);
}

.capability-card li::before,
.ask-panel li::before {
  position: absolute;
  top: 0.64em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: var(--blue-600);
}

.feature-records__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.55fr);
  gap: 34px;
  align-items: start;
}

.record-summary {
  display: grid;
  overflow: hidden;
}

.record-summary div {
  display: grid;
  gap: 7px;
  min-height: 116px;
  align-content: center;
  padding: 22px;
  border-bottom: 1px solid var(--line);
}

.record-summary div:last-child {
  border-bottom: 0;
}

.record-summary span,
.query-grid span {
  color: var(--blue-600);
  font-size: calc(14.4px * var(--text-scale));
  font-weight: 900;
  text-transform: uppercase;
}

.record-summary strong,
.query-grid strong {
  color: var(--slate-900);
  font-size: calc(17px * var(--text-scale));
  line-height: 1.28;
}

.record-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.record-card {
  min-height: 290px;
  padding: 26px;
}

.ask-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.58fr) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
  margin-top: 42px;
}

.ask-panel {
  min-height: 420px;
  padding: 30px;
}

.ask-panel ul {
  margin-top: 22px;
}

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

.query-grid div {
  display: grid;
  gap: 9px;
  min-height: 132px;
  align-content: center;
  padding: 22px;
}

.query-grid div:nth-child(2),
.query-grid div:nth-child(5) {
  border-color: rgba(53, 121, 91, 0.3);
  background: rgba(229, 245, 236, 0.65);
}

.query-grid div:nth-child(3),
.query-grid div:nth-child(6) {
  border-color: rgba(122, 90, 25, 0.22);
  background: rgba(255, 243, 214, 0.54);
}

.feature-flow {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(245, 248, 252, 0.9)),
    url("https://images.unsplash.com/photo-1497366811353-6870744d04b2?auto=format&fit=crop&q=82&w=1800") center / cover;
}

.feature-flow-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px;
}

.feature-flow-grid article {
  min-height: 300px;
  padding: 24px;
}

.feature-flow-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 28px;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, var(--navy-950), var(--blue-600));
  font-weight: 900;
}

.team-workflows {
  scroll-margin-top: 28px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.team-grid article {
  min-height: 250px;
  padding: 28px;
}

@media (max-width: 1380px) {
  .record-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-flow-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .feature-overview,
  .feature-records__layout,
  .ask-layout {
    grid-template-columns: 1fr;
  }

  .problem-grid,
  .capability-grid,
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .ask-panel {
    min-height: 0;
  }
}

@media (max-width: 680px) {
  .problem-grid,
  .capability-grid,
  .record-grid,
  .query-grid,
  .feature-flow-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .feature-image--banner,
  .feature-image--wide {
    height: 220px;
  }

  .feature-overview__panel,
  .problem-card,
  .capability-card,
  .record-card,
  .ask-panel,
  .team-grid article {
    min-height: 0;
    padding: 22px;
  }

  .capability-card {
    grid-template-columns: 1fr;
  }

  .record-summary div,
  .query-grid div,
  .feature-flow-grid article {
    min-height: 0;
    padding: 20px;
  }
}

.split-layout--center {
  align-items: center;
}

.security-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--navy-950), var(--navy-900));
}

.security-callout .eyebrow,
.security-callout h2,
.security-callout p {
  color: #ffffff;
}

.security-callout p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
}

.page-hero--pricing {
  min-height: 650px;
  grid-template-columns: minmax(340px, 0.74fr) minmax(500px, 0.66fr);
  gap: clamp(34px, 4vw, 64px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 48%, rgba(234, 242, 255, 0.46) 100%),
    var(--page-image) center / cover;
}

.pricing-hero-panel {
  position: relative;
  isolation: isolate;
  gap: 20px;
  overflow: hidden;
  padding: clamp(24px, 2.4vw, 34px);
  border-color: rgba(47, 120, 232, 0.2);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 252, 255, 0.96) 58%, rgba(235, 244, 255, 0.92) 100%);
  box-shadow: 0 24px 72px rgba(17, 39, 58, 0.17);
}

.pricing-hero-panel::before {
  position: absolute;
  z-index: -1;
  top: -44px;
  right: -74px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  content: "";
  background: rgba(47, 120, 232, 0.11);
}

.pricing-hero-panel__top {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(190px, 0.55fr);
  gap: 18px;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(196, 211, 226, 0.86);
}

.pricing-hero-panel__price {
  display: grid;
  gap: 10px;
}

.hero-price {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  color: var(--slate-900);
  line-height: 0.85;
}

.hero-price span {
  margin-top: 8px;
  font-size: calc(28px * var(--text-scale));
  font-weight: 900;
}

.hero-price strong {
  font-size: calc(96px * var(--text-scale));
  letter-spacing: 0;
}

.pricing-hero-panel__price > p:not(.plan-label) {
  margin: -4px 0 0;
  color: var(--slate-700);
  font-size: calc(18px * var(--text-scale));
  font-weight: 800;
}

.pricing-hero-panel__note {
  display: grid;
  align-content: center;
  gap: 8px;
  min-height: 132px;
  padding: 18px;
  border: 1px solid rgba(196, 211, 226, 0.78);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.pricing-hero-panel__note span {
  color: var(--blue-600);
  font-size: calc(14.4px * var(--text-scale));
  font-weight: 900;
  text-transform: uppercase;
}

.pricing-hero-panel__note p {
  margin: 0;
  color: var(--slate-700);
  font-size: calc(15px * var(--text-scale));
  font-weight: 800;
  line-height: 1.35;
}

.pricing-hero-panel__included {
  display: grid;
  gap: 14px;
}

.pricing-hero-panel__included-header {
  display: grid;
  gap: 4px;
}

.pricing-hero-panel__included-header > span {
  color: var(--blue-600);
  font-size: calc(14.4px * var(--text-scale));
  font-weight: 900;
  text-transform: uppercase;
}

.pricing-hero-panel__included-header strong {
  color: var(--slate-900);
  font-size: calc(16px * var(--text-scale));
  line-height: 1.35;
}

.pricing-hero-panel__included ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-hero-panel__included li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 50px;
  padding: 11px 12px;
  border: 1px solid rgba(196, 211, 226, 0.72);
  border-radius: 8px;
  color: var(--slate-900);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 24px rgba(17, 39, 58, 0.06);
  font-size: calc(13px * var(--text-scale));
  font-weight: 850;
  line-height: 1.22;
}

.pricing-hero-panel__included li svg,
.pricing-hero-panel__included li [data-lucide] {
  width: 28px;
  height: 28px;
  padding: 6px;
  border-radius: 8px;
  color: var(--blue-600);
  background: var(--blue-100);
  stroke-width: 2.2;
}

.pricing-hero-panel__included li span {
  display: inline;
  color: var(--slate-900);
  font-weight: 850;
}

.pricing-hero-panel__totals {
  display: grid;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.pricing-hero-panel__totals div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

.pricing-hero-panel__totals span {
  color: var(--slate-500);
  font-size: calc(12px * var(--text-scale));
  font-weight: 900;
  text-transform: uppercase;
}

.pricing-hero-panel__totals strong {
  color: var(--slate-900);
  font-size: calc(15px * var(--text-scale));
  text-align: right;
}

.pricing-hero-panel strong,
.pricing-hero-panel span {
  display: block;
}

.pricing-hero-panel .hero-price span {
  display: block;
  margin-top: 8px;
  color: var(--blue-600);
  font-size: calc(28px * var(--text-scale));
  line-height: 1;
}

.pricing-hero-panel .hero-price strong {
  display: block;
  color: var(--slate-900);
  font-size: calc(96px * var(--text-scale));
  line-height: 0.82;
}

.pricing-hero-panel__totals span {
  color: var(--slate-500);
  font-size: calc(12px * var(--text-scale));
  text-transform: uppercase;
}

.pricing-hero-panel__totals strong {
  color: var(--slate-900);
  font-size: calc(15px * var(--text-scale));
  line-height: 1.2;
}

.pricing-decision {
  display: grid;
  grid-template-columns: minmax(360px, 0.56fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}

@media (max-width: 1180px) and (min-width: 981px) {
  .page-hero--pricing {
    grid-template-columns: 1fr;
  }

  .pricing-hero-panel {
    width: min(760px, 100%);
    justify-self: start;
  }
}

.pilot-panel {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 0;
  padding: 30px;
  border: 1px solid rgba(196, 211, 226, 0.72);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 52px rgba(17, 39, 58, 0.09);
}

.pilot-panel .plan-label--pilot {
  font-size: calc(17.28px * var(--text-scale));
}

.pilot-panel h2 {
  margin: 0;
  color: var(--slate-900);
  font-family: var(--font-display);
  font-size: calc(38px * var(--text-scale));
  line-height: 1.06;
}

.pilot-panel > p:not(.plan-label) {
  margin: 0;
  color: var(--slate-700);
  font-size: calc(17px * var(--text-scale));
}

.pilot-panel__steps {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.pilot-panel__steps div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 68px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
}

.pilot-panel__steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--blue-600);
  background: var(--blue-100);
  font-size: calc(12px * var(--text-scale));
  font-weight: 900;
}

.pilot-panel__steps strong {
  color: var(--slate-900);
  line-height: 1.25;
}

.pricing-card__actions,
.content-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.pricing-value-panel {
  display: grid;
  align-content: center;
  gap: 20px;
  padding: 34px;
  border: 1px solid rgba(11, 39, 61, 0.18);
  border-radius: 8px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(6, 32, 51, 0.96), rgba(29, 73, 101, 0.94)),
    url("assets/blog-images/blog-hero-ai-contract-review.png") center / cover;
  box-shadow: 0 22px 60px rgba(17, 39, 58, 0.18);
}

.pricing-value-panel .eyebrow,
.pricing-value-panel h2 {
  color: #ffffff;
}

.pricing-value-panel h2 {
  max-width: 680px;
  margin: 0;
  font-family: var(--font-display);
  font-size: calc(42px * var(--text-scale));
  line-height: 1.08;
}

.pricing-value-list {
  display: grid;
  gap: 12px;
}

.pricing-value-list div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 58px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.pricing-value-list svg,
.pricing-value-list [data-lucide] {
  width: 24px;
  height: 24px;
  color: #88b6ff;
}

.pricing-inclusions .section__header {
  max-width: 940px;
}

.pricing-feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.pricing-feature-list article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  min-height: 150px;
  padding: 22px;
  border: 1px solid rgba(196, 211, 226, 0.72);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(17, 39, 58, 0.08);
}

.pricing-feature-list svg,
.pricing-feature-list [data-lucide] {
  width: 29px;
  height: 29px;
  color: var(--blue-600);
}

.pricing-feature-list h3 {
  margin: 0 0 8px;
  color: var(--slate-900);
  font-size: calc(19px * var(--text-scale));
  line-height: 1.2;
}

.pricing-feature-list p {
  margin: 0;
  color: var(--slate-700);
}

.pricing-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.pricing-steps article {
  min-height: 230px;
  padding: 26px;
  border: 1px solid rgba(196, 211, 226, 0.72);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(17, 39, 58, 0.08);
}

.pricing-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, var(--navy-950), var(--blue-600));
  font-weight: 900;
}

.pricing-steps h3 {
  margin: 0 0 10px;
  color: var(--slate-900);
  font-size: calc(21px * var(--text-scale));
  line-height: 1.15;
}

.pricing-steps p {
  margin: 0;
  color: var(--slate-700);
}

.enterprise-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(196, 211, 226, 0.72);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.enterprise-panel h2 {
  margin: 0;
  color: var(--slate-900);
  font-family: var(--font-display);
  font-size: calc(40px * var(--text-scale));
  line-height: 1.05;
}

.enterprise-panel p:not(.eyebrow) {
  max-width: 780px;
  color: var(--slate-700);
}

.enterprise-panel--pricing {
  border-color: rgba(47, 120, 232, 0.25);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(234, 242, 255, 0.78));
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.48fr);
  gap: 34px;
  align-items: start;
}

.faq-layout .section__header {
  max-width: 860px;
}

.faq-layout .faq-list {
  max-width: none;
}

.faq-image {
  position: sticky;
  top: 26px;
  min-height: 640px;
  margin: 0;
  border: 1px solid rgba(196, 211, 226, 0.72);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 22px 60px rgba(17, 39, 58, 0.12);
  overflow: hidden;
}

.faq-image::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(6, 32, 51, 0.16));
}

.faq-image img {
  width: 100%;
  height: 100%;
  min-height: 640px;
  object-fit: cover;
  object-position: center;
}

.story-panel p:last-child,
.mission-panel h2 {
  margin-bottom: 0;
}

.mission-panel h2 {
  font-family: var(--font-display);
  font-size: calc(38px * var(--text-scale));
  line-height: 1.08;
}

.founder-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.founder-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  min-height: 260px;
  padding: 28px;
  border: 1px solid rgba(196, 211, 226, 0.72);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.founder-card--pending {
  border-style: dashed;
}

.founder-avatar {
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, var(--navy-950), var(--blue-600));
  font-weight: 900;
}

.founder-headshot {
  width: 118px;
  height: 118px;
  border: 1px solid rgba(196, 211, 226, 0.72);
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(17, 39, 58, 0.12);
  object-fit: cover;
  object-position: center;
}

.founder-card h3 {
  margin: 0;
  color: var(--slate-900);
  font-size: calc(24px * var(--text-scale));
}

.founder-role {
  margin: 6px 0 14px;
  color: var(--blue-600);
  font-weight: 900;
}

.founder-card p {
  color: var(--slate-700);
}

.founder-card p:last-child {
  margin-bottom: 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.55fr);
  gap: 36px;
  align-items: start;
}

.contact-form {
  gap: 20px;
}

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

.field-full {
  grid-column: 1 / -1;
}

.consent-row {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  font-weight: 700;
}

.consent-row input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
}

.privacy-notice,
.form-status {
  margin: 0;
  color: var(--slate-700);
  font-size: calc(13px * var(--text-scale));
}

.privacy-notice a {
  color: var(--blue-600);
  font-weight: 900;
}

.form-status {
  padding: 14px;
  border: 1px solid rgba(53, 121, 91, 0.28);
  border-radius: 8px;
  color: var(--green-700);
  background: var(--green-100);
  font-weight: 800;
}

.honeypot {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-detail-card a,
.contact-detail-card p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--slate-700);
  font-weight: 800;
}

.contact-detail-card svg,
.contact-detail-card [data-lucide] {
  width: 20px;
  height: 20px;
  color: var(--blue-600);
  flex: 0 0 auto;
}

.contact-detail-card .contact-social-link {
  width: fit-content;
  min-width: 42px;
  min-height: 42px;
  justify-content: center;
  padding: 8px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: var(--blue-600);
  background: #ffffff;
}

.contact-detail-card .contact-social-link svg,
.contact-detail-card .contact-social-link [data-lucide] {
  width: 24px;
  height: 24px;
}

.contact-detail-card .linkedin-icon {
  fill: currentColor;
  stroke: none;
}

.content-panel a {
  color: var(--blue-600);
  font-weight: 900;
}

.content-panel a.button:not(.button--secondary) {
  color: #ffffff;
}

.redirect-page {
  display: grid;
  min-height: 100vh;
  place-content: center;
  padding: 32px;
  color: var(--slate-900);
  background: var(--surface-soft);
  text-align: center;
}

.redirect-page a {
  color: var(--blue-600);
  font-weight: 900;
}

.footer--mega {
  grid-template-columns: minmax(240px, 0.52fr) minmax(0, 1fr);
  align-items: start;
}

.footer__columns {
  display: grid;
  grid-template-columns: repeat(5, minmax(120px, 1fr));
  gap: 24px;
}

.footer__columns div {
  display: grid;
  gap: 9px;
  align-content: start;
  min-width: 0;
}

.footer__columns h2 {
  margin: 0 0 4px;
  color: var(--slate-900);
  font-size: calc(13px * var(--text-scale));
  font-weight: 900;
  text-transform: uppercase;
}

.footer__columns a {
  color: var(--slate-700);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.footer__columns a:hover,
.footer__columns a:focus-visible {
  color: var(--blue-600);
  outline: none;
}

@media (max-width: 1380px) {
  .trust-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-inline: 44px;
  }

  .trust-strip span:nth-child(4) {
    border-left: 1px solid var(--line);
  }

  .feature-grid--tight,
  .pricing-feature-list,
  .home-workflow__grid,
  .team-overview__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-hero-panel__top {
    grid-template-columns: minmax(220px, 0.8fr) minmax(190px, 0.55fr);
  }

  .footer__columns {
    grid-template-columns: repeat(3, minmax(140px, 1fr));
  }
}

@media (max-width: 980px) {
  .page-hero--pricing {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
  }

  .page-hero--pricing .page-hero__panel,
  .pricing-hero-panel {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    justify-self: stretch;
  }

  .trust-strip,
  .pricing-decision,
  .product-overview__layout,
  .intelligence-section,
  .home-cta,
  .faq-layout,
  .pricing-steps,
  .enterprise-panel,
  .founder-grid,
  .contact-layout,
  .security-callout,
  .footer--mega {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    padding-inline: 44px;
  }

  .trust-strip span,
  .trust-strip span:first-child,
  .trust-strip span:nth-child(4) {
    border-left: 1px solid var(--line);
  }

  .video-card {
    justify-self: start;
  }

  .feature-grid--two,
  .feature-grid--tight,
  .pricing-feature-list,
  .product-overview__cards,
  .home-workflow__grid,
  .team-overview__grid {
    grid-template-columns: 1fr;
  }

  .product-overview__image,
  .product-overview__image img {
    min-height: 360px;
  }

  .home-workflow__image,
  .home-workflow__image img {
    min-height: 340px;
  }

  .intelligence-section {
    gap: 34px;
  }

  .pricing-value-panel {
    min-height: 360px;
  }

  .pricing-hero-panel__top {
    grid-template-columns: minmax(220px, 0.8fr) minmax(190px, 0.55fr);
  }

  .blog-hero__visual {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    justify-self: stretch;
    overflow: hidden;
  }

  .blog-device {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .blog-device img {
    max-width: 100%;
    object-position: center 40%;
  }

  .article-card__image,
  .blog-list-item__thumb--image {
    background-position: center 38%;
  }

  .blog-list-item {
    grid-template-columns: 1fr;
    padding: 22px 0;
  }

  .blog-list-item__thumb,
  .blog-list-item__thumb--image {
    width: 100%;
    min-height: 0;
  }

  .blog-list-item__thumb--image {
    aspect-ratio: 16 / 9;
  }

  .faq-image {
    position: relative;
    top: auto;
    min-height: 320px;
  }

  .faq-image img {
    min-height: 320px;
  }

  .enterprise-panel .button,
  .security-callout .button {
    justify-self: start;
  }
}

@media (max-width: 680px) {
  .trust-strip {
    padding-inline: 22px;
  }

  .trust-strip span {
    min-height: 58px;
    padding-inline: 14px;
  }

  .video-card {
    padding: 12px;
  }

  .video-card__header,
  .founder-card,
  .form-grid,
  .footer__columns {
    grid-template-columns: 1fr;
  }

  .hero-price strong {
    font-size: calc(70px * var(--text-scale));
  }

  .pricing-hero-panel__totals div,
  .pricing-feature-list article {
    grid-template-columns: 1fr;
  }

  .pricing-hero-panel__top {
    grid-template-columns: 1fr;
  }

  .pricing-hero-panel__note {
    min-height: 0;
  }

  .pricing-hero-panel__included ul {
    grid-template-columns: 1fr;
  }

  .blog-device {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
    border-width: 8px;
  }

  .blog-device img {
    height: 100%;
    min-height: 0;
  }

  .article-card--featured {
    min-height: 360px;
    background-position: center 38%;
  }

  .article-card__image,
  .article-card--compact .article-card__image,
  .blog-list-item__thumb--image {
    min-height: 0;
    aspect-ratio: 16 / 9;
    background-position: center 38%;
  }

  .pricing-value-panel {
    min-height: 0;
    padding: 24px;
  }

  .pricing-value-panel h2 {
    font-size: calc(32px * var(--text-scale));
  }

  .pilot-panel {
    padding: 22px;
  }

  .pilot-panel h2 {
    font-size: calc(31px * var(--text-scale));
  }

  .pilot-panel__steps div {
    grid-template-columns: 1fr;
  }

  .faq-image,
  .faq-image img {
    min-height: 240px;
  }

  .pricing-card__actions,
  .content-panel__actions {
    display: grid;
  }

  .pricing-card__actions .button,
  .content-panel__actions .button,
  .enterprise-panel .button,
  .security-callout .button {
    width: 100%;
  }

  .intelligence-section h2 {
    font-size: calc(38px * var(--text-scale));
  }

  .intelligence-console,
  .query-card,
  .answer-card {
    padding: 18px;
  }

  .answer-card li {
    grid-template-columns: 1fr;
  }
}
