:root {
  color-scheme: light;
  --ink: #102133;
  --ink-soft: #304355;
  --muted: #5c6b79;
  --line: #d6dee3;
  --line-strong: #b9c6ce;
  --white: #ffffff;
  --canvas: #f7f9fa;
  --canvas-strong: #edf2f3;
  --blue: #1768e5;
  --blue-dark: #104eaa;
  --green: #1d765f;
  --green-soft: #e5f1ed;
  --teal: #346f76;
  --teal-soft: #e5eff0;
  --plum: #715675;
  --plum-soft: #f0eaf1;
  --burgundy: #824756;
  --burgundy-soft: #f4e9ec;
  --rose: #98526d;
  --rose-soft: #f6e9ef;
  --amber: #a26a24;
  --amber-soft: #f6eddf;
  --shadow-sm: 0 8px 26px rgba(16, 33, 51, 0.08);
  --shadow-lg: 0 28px 72px rgba(16, 33, 51, 0.16);
  --shell: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--canvas);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

button,
input,
textarea,
select {
  font: inherit;
  letter-spacing: 0;
}

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

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

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

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

h1,
h2,
h3 {
  color: var(--ink);
  font-weight: 760;
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  font-size: 44px;
}

h3 {
  font-size: 22px;
}

:focus-visible {
  outline: 3px solid rgba(23, 104, 229, 0.45);
  outline-offset: 4px;
}

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

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

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(214, 222, 227, 0.8);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  transition: box-shadow 160ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(16, 33, 51, 0.07);
}

.site-header__inner {
  display: grid;
  grid-template-columns: 166px minmax(0, 1fr) auto;
  align-items: center;
  min-height: 72px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

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

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.mobile-nav-actions {
  display: none;
}

.primary-nav a,
.text-action {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 680;
}

.primary-nav a {
  position: relative;
  padding: 24px 0 22px;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 17px;
  left: 0;
  height: 2px;
  background: var(--blue);
  content: "";
  opacity: 0;
  transform: scaleX(0.55);
  transition: opacity 160ms ease, transform 160ms ease;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  color: var(--ink);
}

.primary-nav a:hover::after,
.primary-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  background: var(--ink);
  color: var(--white);
  font-size: 15px;
  font-weight: 730;
  text-align: center;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover {
  border-color: var(--blue-dark);
  background: var(--blue-dark);
  transform: translateY(-1px);
}

.button--secondary {
  border-color: var(--line-strong);
  background: var(--white);
  color: var(--ink);
}

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

.button--small {
  min-height: 40px;
  padding-inline: 16px;
  font-size: 13px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ink);
  font-weight: 730;
  text-decoration: underline;
  text-decoration-color: rgba(16, 33, 51, 0.28);
  text-underline-offset: 5px;
}

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

.eyebrow {
  margin-bottom: 16px;
  color: var(--green);
  font-size: 12px;
  font-weight: 820;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero {
  position: relative;
  height: calc(100svh - 112px);
  min-height: 600px;
  max-height: 760px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  background-image: url("/assets/sonix-pearl-architecture.png");
  background-position: center 42%;
  background-size: cover;
  opacity: 0.78;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.78fr);
  align-items: center;
  height: 100%;
  gap: 72px;
}

.hero__content {
  z-index: 2;
  max-width: 670px;
  padding: 48px 0 66px;
}

.hero h1 {
  margin-bottom: 18px;
  font-size: 82px;
  line-height: 0.94;
}

.hero__lead {
  max-width: 640px;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 34px;
  font-weight: 710;
  line-height: 1.18;
}

.hero__support {
  max-width: 620px;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  margin: 30px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 680;
  list-style: none;
}

.hero__proof li {
  position: relative;
  padding-left: 15px;
}

.hero__proof li::before {
  position: absolute;
  top: 0.64em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.hero__product {
  position: relative;
  align-self: end;
  justify-self: center;
  width: 320px;
  height: calc(100% - 36px);
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.92);
  border-bottom: 0;
  border-radius: 30px 30px 0 0;
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.hero__product img {
  width: 100%;
  height: auto;
}

.signal-band {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

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

.signal-grid > div {
  min-height: 116px;
  padding: 28px 30px;
  border-left: 1px solid var(--line);
}

.signal-grid > div:last-child {
  border-right: 1px solid var(--line);
}

.signal-grid strong,
.signal-grid span {
  display: block;
}

.signal-grid strong {
  margin-bottom: 6px;
  font-size: 16px;
}

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

.section {
  padding: 104px 0;
}

.section--plain {
  background: var(--white);
}

.section--product {
  border-block: 1px solid var(--line);
  background: var(--canvas-strong);
}

.section--sectors {
  background: #f8faf9;
}

.section--roles {
  border-block: 1px solid var(--line);
  background: #f0f4f2;
}

.section--platform {
  background: var(--white);
}

.section--pricing {
  background: #f7f8fa;
}

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

.section-heading {
  max-width: 780px;
  margin-bottom: 56px;
  text-align: center;
}

.section-heading--wide {
  max-width: 900px;
}

.section-heading--left {
  max-width: 560px;
  margin: 0;
  text-align: left;
}

.section-heading h2 {
  margin-bottom: 22px;
}

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

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
}

.outcome-grid article {
  min-height: 250px;
  padding: 32px 28px 12px 0;
  border-right: 1px solid var(--line);
}

.outcome-grid article + article {
  padding-left: 28px;
}

.outcome-grid article:last-child {
  border-right: 0;
}

.outcome-grid span,
.module-grid article > span,
.security-grid article > span,
.contact-options article > span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--green);
  font-size: 13px;
  font-weight: 820;
}

.outcome-grid h3 {
  margin-bottom: 14px;
}

.outcome-grid p,
.module-grid p,
.security-grid p,
.three-columns p {
  margin-bottom: 0;
  color: var(--muted);
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: 94px;
}

.product-copy h2 {
  margin-bottom: 22px;
}

.product-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 18px;
}

.product-tabs {
  display: inline-grid;
  grid-template-columns: repeat(3, minmax(100px, 1fr));
  margin-bottom: 24px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: var(--white);
}

.product-tabs button {
  min-height: 42px;
  padding: 0 18px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 730;
  cursor: pointer;
}

.product-tabs button:last-child {
  border-right: 0;
}

.product-tabs button[aria-selected="true"] {
  background: var(--ink);
  color: var(--white);
}

.product-caption {
  min-height: 94px;
  margin-bottom: 22px;
  padding-left: 18px;
  border-left: 3px solid var(--green);
}

.product-caption strong,
.product-caption span {
  display: block;
}

.product-caption strong {
  margin-bottom: 7px;
  font-size: 18px;
}

.product-caption span {
  max-width: 480px;
  color: var(--muted);
}

.product-stage {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 650px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.product-stage > img {
  width: 310px;
  height: auto;
  transition: opacity 140ms ease;
}

.product-stage > img.is-changing {
  opacity: 0.36;
}

.product-stage__detail {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
}

.product-stage__detail span {
  padding: 10px;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 730;
  text-align: center;
}

.product-stage__detail span:last-child {
  border-right: 0;
}

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

.sector-card {
  --sector-accent: var(--blue);
  --sector-soft: #e9f1fe;
  position: relative;
  display: flex;
  min-height: 320px;
  flex-direction: column;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-top: 4px solid var(--sector-accent);
  border-radius: 6px;
  background: var(--white);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.sector-card:hover {
  border-color: var(--sector-accent);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.sector-card::after {
  position: absolute;
  right: -32px;
  bottom: -32px;
  width: 120px;
  height: 120px;
  border: 18px solid var(--sector-soft);
  border-radius: 50%;
  content: "";
}

.sector-card--green,
.sector-hero--green,
.sector-phone-stage--green {
  --sector-accent: var(--green);
  --sector-soft: var(--green-soft);
}

.sector-card--teal,
.sector-hero--teal,
.sector-phone-stage--teal {
  --sector-accent: var(--teal);
  --sector-soft: var(--teal-soft);
}

.sector-card--plum,
.sector-hero--plum,
.sector-phone-stage--plum {
  --sector-accent: var(--plum);
  --sector-soft: var(--plum-soft);
}

.sector-card--burgundy,
.sector-hero--burgundy,
.sector-phone-stage--burgundy {
  --sector-accent: var(--burgundy);
  --sector-soft: var(--burgundy-soft);
}

.sector-card--rose,
.sector-hero--rose,
.sector-phone-stage--rose {
  --sector-accent: var(--rose);
  --sector-soft: var(--rose-soft);
}

.sector-card--amber,
.sector-hero--amber,
.sector-phone-stage--amber {
  --sector-accent: var(--amber);
  --sector-soft: var(--amber-soft);
}

.sector-card--blue,
.sector-hero--blue,
.sector-phone-stage--blue {
  --sector-accent: var(--blue);
  --sector-soft: #e9f1fe;
}

.sector-card__code {
  margin-bottom: 42px;
  color: var(--sector-accent);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.sector-card h3 {
  margin-bottom: 14px;
}

.sector-card p {
  margin-bottom: 32px;
  color: var(--muted);
}

.sector-card__link {
  z-index: 1;
  margin-top: auto;
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
}

.role-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.32fr);
  align-items: center;
  gap: 82px;
}

.role-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: var(--white);
}

.role-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}

.role-table th,
.role-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

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

.role-table th {
  background: #eef2f1;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.role-table td {
  color: var(--muted);
  font-size: 14px;
}

.role-table td:first-child {
  color: var(--ink);
  font-weight: 730;
}

.platform-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.72fr);
  align-items: center;
  gap: 72px;
}

.platform-visual {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--canvas);
  box-shadow: var(--shadow-lg);
}

.platform-visual img {
  width: 100%;
  height: auto;
}

.check-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 12px 0 12px 26px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-weight: 650;
}

.check-list li::before {
  position: absolute;
  top: 15px;
  left: 0;
  color: var(--green);
  content: "✓";
  font-weight: 850;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 16px;
}

.plan-card {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.plan-card--featured {
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-sm);
}

.plan-card__label {
  margin-bottom: 40px;
  color: var(--green);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.plan-card h2,
.plan-card h3 {
  margin-bottom: 14px;
}

.plan-card > p:not(.plan-card__label) {
  min-height: 74px;
  margin-bottom: 24px;
  color: var(--muted);
}

.plan-card ul {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.plan-card li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 14px;
}

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

.pricing-link {
  margin-top: 28px;
  text-align: center;
}

.package-note {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  margin-top: 36px;
  padding: 24px 28px;
  border-left: 4px solid var(--amber);
  background: var(--amber-soft);
}

.package-note p {
  margin: 0;
  color: var(--ink-soft);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.5fr) minmax(0, 1fr);
  gap: 96px;
}

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

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

.faq-list summary {
  position: relative;
  padding: 22px 42px 22px 0;
  color: var(--ink);
  font-weight: 730;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 19px;
  right: 4px;
  width: 28px;
  height: 28px;
  content: "+";
  color: var(--green);
  font-size: 22px;
  line-height: 28px;
  text-align: center;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 720px;
  margin: -4px 0 24px;
  color: var(--muted);
}

.closing-cta {
  padding: 82px 0;
  border-top: 1px solid var(--line);
  background: #e8efed;
}

.closing-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 64px;
}

.closing-cta h2 {
  margin-bottom: 12px;
}

.closing-cta p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.closing-cta__actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-footer {
  padding: 70px 0 24px;
  border-top: 1px solid #cad3d8;
  background: #f7f9fa;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr repeat(3, 1fr);
  gap: 54px;
}

.footer-brand img {
  width: 142px;
  height: auto;
  margin-bottom: 18px;
}

.footer-brand p {
  max-width: 340px;
  color: var(--muted);
  font-size: 14px;
}

.footer-grid h2 {
  margin-bottom: 16px;
  font-size: 13px;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand) a {
  display: block;
  width: fit-content;
  margin: 10px 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-grid a:hover {
  color: var(--ink);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 52px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.page-hero,
.sector-hero {
  min-height: 650px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background-color: var(--white);
  background-image: url("/assets/sonix-pearl-architecture.png");
  background-position: center;
  background-size: cover;
}

.page-hero__inner,
.sector-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
  align-items: center;
  min-height: 650px;
  gap: 84px;
  padding-block: 72px;
}

.page-hero h1,
.sector-hero h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: 62px;
}

.page-hero__inner > div > p:not(.eyebrow),
.sector-hero__inner > div > p:not(.eyebrow):not(.sector-audience) {
  max-width: 700px;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: 20px;
}

.page-hero__inner > img {
  justify-self: center;
  width: 290px;
  max-height: 550px;
  object-fit: contain;
  object-position: top;
  border: 7px solid var(--white);
  border-radius: 26px;
  box-shadow: var(--shadow-lg);
}

.page-hero__inner > img.security-symbol,
.page-hero__inner > img.contact-symbol {
  width: 240px;
  height: 240px;
  border: 0;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
}

.module-grid article {
  min-height: 280px;
  padding: 30px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.module-grid article:nth-child(4n) {
  border-right: 0;
}

.module-grid article > span {
  margin-bottom: 42px;
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.7fr);
  align-items: center;
  gap: 88px;
}

.split-feature h2 {
  margin-bottom: 34px;
}

.flow-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-strong);
  list-style: none;
}

.flow-list li {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-strong);
}

.flow-list span {
  color: var(--muted);
}

.dual-screen {
  position: relative;
  min-height: 650px;
}

.dual-screen img {
  position: absolute;
  top: 0;
  width: 270px;
  border: 6px solid var(--white);
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
}

.dual-screen img:first-child {
  left: 0;
}

.dual-screen img:last-child {
  top: 70px;
  right: 0;
}

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

.three-columns article {
  min-height: 270px;
  padding: 0 44px;
  border-right: 1px solid var(--line-strong);
}

.three-columns article:first-child {
  padding-left: 0;
}

.three-columns article:last-child {
  padding-right: 0;
  border-right: 0;
}

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

.security-grid article {
  min-height: 270px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.security-grid article:nth-child(3n) {
  border-right: 0;
}

.comparison {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 84px;
}

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

.contact-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 88px;
}

.contact-primary {
  position: sticky;
  top: 110px;
  align-self: start;
}

.contact-primary h2 {
  overflow-wrap: anywhere;
  font-size: 34px;
}

.contact-primary > p:not(.eyebrow) {
  margin-bottom: 26px;
  color: var(--muted);
}

.contact-options {
  border-top: 1px solid var(--line-strong);
}

.contact-options article {
  padding: 30px 0;
  border-bottom: 1px solid var(--line-strong);
}

.contact-options article > span {
  margin-bottom: 22px;
}

.contact-options p {
  max-width: 620px;
  color: var(--muted);
}

.contact-process {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  gap: 88px;
}

.contact-process ol {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-strong);
  list-style: none;
}

.contact-process li {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-strong);
}

.contact-process span {
  color: var(--muted);
}

.sector-hero {
  --sector-accent: var(--blue);
  --sector-soft: #e9f1fe;
}

.sector-hero__lead {
  color: var(--sector-accent) !important;
  font-weight: 760;
}

.sector-hero__screen {
  position: relative;
  justify-self: center;
  width: 340px;
  padding: 26px 26px 0;
  border: 1px solid var(--line);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  background: var(--sector-soft);
  box-shadow: var(--shadow-lg);
}

.sector-hero__screen img {
  width: 100%;
  height: auto;
}

.sector-audience {
  margin: 28px 0 0 !important;
  color: var(--muted) !important;
  font-size: 13px !important;
  font-weight: 680;
}

.workflow-band {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

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

.workflow-list span {
  display: flex;
  min-height: 92px;
  align-items: center;
  gap: 10px;
  padding: 16px;
  border-left: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}

.workflow-list span:last-child {
  border-right: 1px solid var(--line);
}

.workflow-list b {
  color: var(--sector-accent, var(--green));
  font-size: 11px;
}

.sector-detail-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: 88px;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
}

.capability-grid > div {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  min-height: 110px;
  align-items: start;
  padding: 24px 22px 20px 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.capability-grid > div:nth-child(2n) {
  padding-left: 22px;
  border-right: 0;
}

.capability-grid span {
  color: var(--sector-accent, var(--green));
  font-weight: 850;
}

.capability-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-weight: 660;
}

.outcome-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.62fr);
  align-items: center;
  gap: 96px;
}

.outcome-layout h2 {
  margin-bottom: 30px;
}

.outcome-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-strong);
  list-style: none;
}

.outcome-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-strong);
}

.outcome-list span {
  color: var(--sector-accent, var(--green));
  font-size: 12px;
  font-weight: 850;
}

.outcome-list p {
  margin: 0;
  color: var(--ink-soft);
  font-weight: 650;
}

.sector-phone-stage {
  --sector-accent: var(--blue);
  --sector-soft: #e9f1fe;
  display: flex;
  min-height: 650px;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--sector-accent);
  border-radius: 8px;
  background: var(--sector-soft);
}

.sector-phone-stage img {
  width: 310px;
  height: auto;
}

.metrics-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: start;
  gap: 84px;
}

.metric-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
}

.metric-list > div {
  min-height: 130px;
  padding: 24px 20px 20px 0;
  border-right: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.metric-list > div:nth-child(2n) {
  padding-left: 20px;
  border-right: 0;
}

.metric-list strong,
.metric-list span {
  display: block;
}

.metric-list strong {
  margin-bottom: 12px;
  font-size: 18px;
}

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

.not-found {
  display: grid;
  min-height: 70vh;
  place-items: center;
  padding: 80px 0;
  background: var(--white);
  text-align: center;
}

.not-found img {
  width: 130px;
  margin: 0 auto 30px;
}

.not-found h1 {
  margin-bottom: 16px;
  font-size: 52px;
}

.not-found p:not(.eyebrow) {
  margin-bottom: 28px;
  color: var(--muted);
}

@media (max-width: 1080px) {
  .site-header__inner {
    grid-template-columns: 150px 1fr auto;
    gap: 18px;
  }

  .primary-nav {
    gap: 18px;
  }

  .header-actions .text-action {
    display: none;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 36px;
  }

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

  .hero__lead {
    font-size: 30px;
  }

  .hero__product {
    width: 285px;
  }

  .product-layout,
  .platform-layout,
  .split-feature,
  .outcome-layout {
    gap: 54px;
  }

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

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

  .module-grid article:nth-child(2n) {
    border-right: 0;
  }

  .module-grid article:nth-child(4n + 1),
  .module-grid article:nth-child(4n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 860px) {
  .shell {
    width: min(calc(100% - 36px), var(--shell));
  }

  .site-header__inner {
    grid-template-columns: 1fr auto;
    min-height: 64px;
  }

  .brand img {
    width: 128px;
  }

  .nav-toggle {
    display: block;
  }

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

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

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

  .primary-nav {
    position: fixed;
    inset: 64px 0 auto;
    display: none;
    max-height: calc(100svh - 64px);
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    overflow-y: auto;
    border-bottom: 1px solid var(--line);
    background: var(--white);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    padding: 20px 24px;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
  }

  .primary-nav a::after {
    display: none;
  }

  .primary-nav .mobile-nav-actions {
    display: grid;
    gap: 10px;
    padding: 20px 24px 24px;
  }

  .primary-nav .mobile-nav-actions a {
    min-height: 46px;
    padding: 0 16px;
    border: 1px solid var(--line-strong);
    border-radius: 6px;
    font-size: 14px;
    text-align: center;
  }

  .primary-nav .mobile-nav-actions .mobile-nav-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--ink);
  }

  .primary-nav .mobile-nav-actions .button {
    border-color: var(--ink);
    background: var(--ink);
    color: var(--white);
  }

  .header-actions {
    display: none;
  }

  .hero {
    height: calc(100svh - 94px);
    min-height: 620px;
    max-height: 760px;
  }

  .hero__backdrop {
    background-position: 44% center;
    opacity: 0.56;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 1fr) 240px;
    gap: 16px;
  }

  .hero__content {
    padding-bottom: 52px;
  }

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

  .hero__lead {
    font-size: 26px;
  }

  .hero__support {
    font-size: 16px;
  }

  .hero__product {
    width: 230px;
  }

  h2 {
    font-size: 36px;
  }

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

  .signal-grid > div:nth-child(3) {
    border-top: 1px solid var(--line);
  }

  .signal-grid > div:nth-child(4) {
    border-top: 1px solid var(--line);
    border-right: 1px solid var(--line);
  }

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

  .outcome-grid article:nth-child(2) {
    border-right: 0;
  }

  .outcome-grid article:nth-child(3),
  .outcome-grid article:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .product-layout,
  .platform-layout,
  .role-layout,
  .faq-layout,
  .split-feature,
  .comparison,
  .contact-layout,
  .contact-process,
  .sector-detail-layout,
  .outcome-layout,
  .metrics-layout {
    grid-template-columns: 1fr;
  }

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

  .product-stage > img {
    width: 285px;
  }

  .role-layout,
  .platform-layout,
  .faq-layout,
  .comparison,
  .contact-layout,
  .contact-process,
  .sector-detail-layout,
  .outcome-layout,
  .metrics-layout {
    gap: 48px;
  }

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

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

  .plan-card > p:not(.plan-card__label) {
    min-height: 0;
  }

  .plan-card__label {
    margin-bottom: 24px;
  }

  .closing-cta__inner {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 28px;
  }

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

  .page-hero__inner,
  .sector-hero__inner {
    grid-template-columns: minmax(0, 1fr) 260px;
    min-height: 600px;
    gap: 34px;
  }

  .page-hero,
  .sector-hero {
    min-height: 600px;
  }

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

  .page-hero__inner > img {
    width: 240px;
  }

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

  .workflow-list span:nth-child(3) {
    border-right: 1px solid var(--line);
  }

  .workflow-list span:nth-child(n + 4) {
    border-top: 1px solid var(--line);
  }

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

  .security-grid article:nth-child(3n) {
    border-right: 1px solid var(--line);
  }

  .security-grid article:nth-child(2n) {
    border-right: 0;
  }

  .contact-primary {
    position: static;
  }
}

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

  .hero {
    height: calc(100svh - 84px);
    min-height: 590px;
    max-height: 700px;
  }

  .hero__backdrop {
    background-position: 52% center;
    opacity: 0.42;
  }

  .hero__inner {
    display: block;
  }

  .hero__content {
    position: relative;
    z-index: 3;
    max-width: 100%;
    padding: 52px 0 0;
  }

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

  .hero__lead {
    max-width: 520px;
    font-size: 25px;
  }

  .hero__support {
    max-width: 520px;
    margin-bottom: 22px;
    font-size: 15px;
  }

  .hero__proof {
    display: none;
  }

  .hero__product {
    position: absolute;
    right: -24px;
    bottom: -244px;
    width: 210px;
    height: 420px;
    opacity: 0.36;
  }

  .hero__actions {
    max-width: 310px;
    flex-direction: column;
  }

  .hero__actions .button {
    width: 100%;
  }

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

  .signal-grid > div {
    min-height: 88px;
    padding: 20px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .signal-grid > div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 78px 0;
  }

  h2 {
    font-size: 32px;
  }

  .section-heading {
    margin-bottom: 40px;
    text-align: left;
  }

  .section-heading p:not(.eyebrow) {
    font-size: 16px;
  }

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

  .outcome-grid article,
  .outcome-grid article + article {
    min-height: 0;
    padding: 26px 0;
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .outcome-grid article:first-child {
    border-top: 0;
  }

  .outcome-grid span,
  .module-grid article > span,
  .security-grid article > span {
    margin-bottom: 22px;
  }

  .product-tabs {
    display: grid;
    width: 100%;
  }

  .product-tabs button {
    padding-inline: 8px;
  }

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

  .product-stage > img {
    width: 265px;
  }

  .sector-grid,
  .module-grid,
  .security-grid,
  .capability-grid,
  .metric-list {
    grid-template-columns: 1fr;
  }

  .sector-card {
    min-height: 280px;
  }

  .module-grid article,
  .module-grid article:nth-child(2n),
  .security-grid article,
  .security-grid article:nth-child(2n),
  .security-grid article:nth-child(3n) {
    min-height: 0;
    padding: 26px 0;
    border-right: 0;
  }

  .platform-visual {
    margin-inline: -6px;
  }

  .role-table-wrap {
    margin-inline: -14px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .closing-cta {
    padding: 64px 0;
  }

  .closing-cta__actions {
    align-items: stretch;
    flex-direction: column;
  }

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

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

  .page-hero,
  .sector-hero,
  .page-hero__inner,
  .sector-hero__inner {
    min-height: 0;
  }

  .page-hero__inner,
  .sector-hero__inner {
    grid-template-columns: 1fr;
    padding-block: 64px 0;
  }

  .page-hero h1,
  .sector-hero h1 {
    font-size: 42px;
  }

  .page-hero__inner > div > p:not(.eyebrow),
  .sector-hero__inner > div > p:not(.eyebrow):not(.sector-audience) {
    font-size: 17px;
  }

  .page-hero__inner > img {
    width: 230px;
    max-height: 430px;
  }

  .page-hero__inner > img.security-symbol,
  .page-hero__inner > img.contact-symbol {
    width: 170px;
    height: 170px;
    margin-bottom: 58px;
  }

  .sector-hero__screen {
    width: 280px;
  }

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

  .workflow-list span:nth-child(3) {
    border-right: 0;
  }

  .workflow-list span:nth-child(2n) {
    border-right: 1px solid var(--line);
  }

  .workflow-list span:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .capability-grid > div,
  .capability-grid > div:nth-child(2n) {
    min-height: 0;
    padding: 20px 0;
    border-right: 0;
  }

  .sector-phone-stage {
    min-height: 560px;
  }

  .sector-phone-stage img {
    width: 270px;
  }

  .metric-list > div,
  .metric-list > div:nth-child(2n) {
    min-height: 0;
    padding: 20px 0;
    border-right: 0;
  }

  .dual-screen {
    min-height: 540px;
  }

  .dual-screen img {
    width: 220px;
  }

  .flow-list li,
  .contact-process li {
    grid-template-columns: 1fr;
    gap: 5px;
  }

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

  .three-columns article,
  .three-columns article:first-child,
  .three-columns article:last-child {
    min-height: 0;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-strong);
  }

  .three-columns article:last-child {
    border-bottom: 0;
  }

  .check-list--columns {
    grid-template-columns: 1fr;
  }

  .package-note {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .not-found h1 {
    font-size: 40px;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: 44px;
  }

  .hero__lead {
    font-size: 22px;
  }

  .hero__support {
    font-size: 14px;
  }

  .button {
    padding-inline: 16px;
  }

  .product-tabs button {
    font-size: 12px;
  }

  .dual-screen img {
    width: 195px;
  }
}

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

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