:root {
  --navy-950: #061a2a;
  --navy-900: #08243a;
  --navy-800: #0d3551;
  --navy-700: #174d6d;
  --gold-500: #c79b45;
  --gold-100: #f7efd9;
  --green-600: #08785f;
  --green-100: #def3eb;
  --red-100: #f9e3e3;
  --ink: #14212b;
  --muted: #5c6872;
  --line: #d8dee3;
  --surface: #ffffff;
  --surface-alt: #f3f5f6;
  --surface-blue: #eaf1f5;
  --shadow: 0 18px 44px rgba(6, 26, 42, 0.12);
  --container: 1180px;
  --header-height: 76px;
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

body,
button,
a {
  -webkit-font-smoothing: antialiased;
}

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

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

button,
summary {
  font: inherit;
}

button {
  color: inherit;
}

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

h1,
h2,
h3 {
  line-height: 1.15;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: 64px;
  font-weight: 750;
}

h2 {
  margin-bottom: 18px;
  font-size: 40px;
  font-weight: 730;
}

h3 {
  font-size: 20px;
}

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

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

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

:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(8, 36, 58, 0.1);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 26px;
}

.brand {
  display: flex;
  width: 132px;
  height: 58px;
  align-items: center;
  overflow: hidden;
}

.brand img {
  width: auto;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
}

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

.main-nav a {
  position: relative;
  color: #334552;
  font-size: 14px;
  font-weight: 650;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: #fff;
}

.nav-toggle svg {
  width: 22px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.button svg {
  width: 19px;
  height: 19px;
}

.button-header {
  min-height: 42px;
  color: #fff;
  background: var(--navy-900);
}

.button-header:hover {
  background: var(--navy-700);
}

.button-outline {
  border-color: var(--navy-900);
  color: var(--navy-900);
  background: transparent;
  cursor: pointer;
}

.button-outline:hover {
  color: #fff;
  background: var(--navy-900);
}

.button-primary {
  color: var(--navy-950);
  background: #d7ad5c;
}

.button-primary:hover {
  background: #e2bc72;
}

.button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(6, 26, 42, 0.26);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height) - 52px);
  max-height: 820px;
  overflow: hidden;
  color: #fff;
  background: var(--navy-950);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0;
  transition: opacity 900ms ease;
}

.hero-image.is-active {
  opacity: 1;
}

.hero-shade {
  background: rgba(4, 22, 35, 0.34);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: inherit;
  max-height: inherit;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-block: 72px 86px;
}

.eyebrow,
.section-kicker,
.showcase-label,
.module-category {
  display: block;
  margin-bottom: 10px;
  color: var(--navy-700);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.eyebrow {
  color: #e3bd73;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 22px;
  line-height: 1.55;
}

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

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero-points svg {
  width: 17px;
  color: #e3bd73;
}

.context-band {
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
  background: var(--surface-alt);
}

.context-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 64px;
}

.context-grid h2 {
  margin: 0;
  font-size: 28px;
}

.context-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.section {
  padding: 92px 0;
}

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

.segments-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: end;
  gap: 72px;
  margin-bottom: 46px;
}

.segments-intro h2 {
  max-width: 620px;
  margin-bottom: 0;
}

.segments-intro p {
  margin-bottom: 12px;
  color: var(--muted);
}

.segments-intro p:last-child {
  margin-bottom: 0;
}

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

.segment-list article {
  min-width: 0;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.segment-list svg {
  width: 27px;
  height: 27px;
  margin-bottom: 26px;
  color: var(--gold-500);
}

.segment-list h3 {
  margin-bottom: 9px;
  font-size: 17px;
}

.segment-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.segments-note {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 40px;
}

.section-heading h2 {
  max-width: 720px;
  margin-bottom: 0;
}

.section-heading > p {
  margin-bottom: 4px;
  color: var(--muted);
}

.module-filters {
  display: flex;
  width: max-content;
  max-width: 100%;
  margin-bottom: 34px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 4px;
  scrollbar-width: thin;
}

.module-select-control {
  display: none;
}

.module-filter {
  display: inline-flex;
  min-width: max-content;
  min-height: 46px;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border: 0;
  border-right: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 650;
}

.module-filter:last-child {
  border-right: 0;
}

.module-filter:hover {
  background: var(--surface-alt);
}

.module-filter.is-active {
  color: #fff;
  background: var(--navy-800);
}

.module-filter svg {
  width: 18px;
  height: 18px;
}

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

.module-card {
  position: relative;
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.module-card:hover {
  border-color: #aebbc4;
  box-shadow: 0 10px 28px rgba(6, 26, 42, 0.08);
  transform: translateY(-2px);
}

.module-card::before {
  position: absolute;
  top: -1px;
  left: 24px;
  width: 44px;
  height: 3px;
  content: "";
  background: var(--gold-500);
}

.module-icon {
  display: flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--navy-800);
  background: var(--surface-blue);
}

.module-icon svg {
  width: 23px;
  height: 23px;
}

.module-category {
  margin-bottom: 5px;
  color: var(--green-600);
  font-size: 10px;
}

.module-meta {
  display: flex;
  min-height: 20px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.module-status {
  display: inline-flex;
  align-items: center;
  padding: 2px 7px;
  border: 1px solid #d7b66e;
  border-radius: 3px;
  color: #76561d;
  background: var(--gold-100);
  font-size: 10px;
  font-weight: 750;
  line-height: 1.4;
  white-space: nowrap;
}

.module-card h3 {
  margin-bottom: 10px;
}

.module-card > p {
  min-height: 76px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
}

.module-card ul,
.showcase-copy ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.module-card li,
.showcase-copy li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #3e4b54;
  font-size: 13px;
}

.module-card li svg,
.showcase-copy li svg {
  width: 15px;
  min-width: 15px;
  margin-top: 3px;
  color: var(--green-600);
}

.module-count {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
  text-align: right;
}

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

.module-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.module-more {
  margin-top: 0;
}

.module-future {
  margin-top: 18px;
  padding: 14px;
  border-left: 3px solid var(--gold-500);
  background: var(--gold-100);
}

.module-future strong {
  display: block;
  margin-bottom: 8px;
  color: #76561d;
  font-size: 12px;
  text-transform: uppercase;
}

.module-future ul {
  margin: 0;
}

.module-future li svg {
  color: #76561d;
}

.integration {
  color: #fff;
  background: var(--navy-900);
}

.section-heading-light > p {
  color: rgba(255, 255, 255, 0.7);
}

.section-kicker-gold {
  color: #e0b866;
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  list-style: none;
}

.flow-list li {
  position: relative;
  min-width: 0;
  padding: 36px 24px 8px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.flow-list li:first-child {
  padding-left: 0;
}

.flow-list li:last-child {
  padding-right: 0;
  border-right: 0;
}

.flow-list > li > svg {
  width: 34px;
  height: 34px;
  margin-bottom: 46px;
  color: #e3bd73;
}

.flow-number {
  position: absolute;
  top: 38px;
  right: 22px;
  color: rgba(255, 255, 255, 0.23);
  font-size: 32px;
  font-weight: 750;
}

.flow-list h3 {
  margin-bottom: 12px;
  font-size: 18px;
}

.flow-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.product {
  background: var(--surface-alt);
}

.product-tabs {
  display: flex;
  width: max-content;
  max-width: 100%;
  margin-bottom: 24px;
  overflow-x: auto;
  border-bottom: 1px solid var(--line);
}

.product-tabs button {
  display: inline-flex;
  min-width: max-content;
  align-items: center;
  gap: 9px;
  padding: 13px 20px;
  border: 0;
  border-bottom: 3px solid transparent;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-weight: 700;
}

.product-tabs button[aria-selected="true"] {
  color: var(--navy-900);
  border-bottom-color: var(--gold-500);
}

.product-tabs svg {
  width: 19px;
}

.showcase {
  display: grid;
  grid-template-columns: minmax(250px, 0.35fr) minmax(0, 0.65fr);
  align-items: center;
  gap: 54px;
}

.showcase-copy h3 {
  margin-bottom: 16px;
  font-size: 30px;
}

.showcase-copy > p {
  margin-bottom: 24px;
  color: var(--muted);
}

.showcase-copy li {
  font-size: 14px;
}

.screen-frame {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid #b7c1c8;
  border-radius: 6px;
  background: #fff;
  box-shadow: var(--shadow);
}

.screen-frame img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.screen-bar {
  display: flex;
  height: 30px;
  align-items: center;
  gap: 6px;
  padding: 0 10px;
  color: #73808a;
  background: #e7ebee;
  font-size: 10px;
}

.screen-bar span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #9ba7af;
}

.screen-bar strong {
  margin-left: 5px;
  font-weight: 600;
}

.screen-expand {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 4px;
  color: #fff;
  background: rgba(6, 26, 42, 0.88);
  cursor: pointer;
  font-weight: 700;
}

.screen-expand svg {
  width: 18px;
}

.media-dialog {
  width: min(1180px, calc(100% - 32px));
  max-width: none;
  max-height: calc(100vh - 32px);
  padding: 0;
  border: 0;
  border-radius: 4px;
  color: var(--ink);
  background: #fff;
  box-shadow: var(--shadow);
}

.media-dialog::backdrop {
  background: rgba(4, 22, 35, 0.86);
}

.media-dialog-header {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 14px 10px 20px;
  border-bottom: 1px solid var(--line);
}

.media-dialog-header button {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
}

.media-dialog-header svg {
  width: 20px;
}

.media-dialog > img {
  width: 100%;
  max-height: calc(100vh - 90px);
  object-fit: contain;
  background: var(--surface-alt);
}

.difference-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.4fr) minmax(0, 0.6fr);
  gap: 86px;
}

.difference-intro {
  align-self: start;
  position: sticky;
  top: 120px;
}

.difference-intro p {
  color: var(--muted);
}

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

.difference-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.difference-list article > svg {
  width: 28px;
  color: var(--gold-500);
}

.difference-list h3 {
  margin-bottom: 8px;
  font-size: 17px;
}

.difference-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.getting-started {
  border-bottom: 1px solid var(--line);
  background: var(--surface-alt);
}

.start-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  list-style: none;
}

.start-steps li {
  position: relative;
  min-width: 0;
  padding: 28px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.start-steps li > span {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #aebbc4;
  font-size: 26px;
  font-weight: 750;
}

.start-steps li > svg {
  width: 30px;
  height: 30px;
  margin-bottom: 34px;
  color: var(--gold-500);
}

.start-steps h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.start-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.start-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
}

.start-action p {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.about-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 8px;
  color: var(--navy-800);
  font-size: 14px;
  font-weight: 750;
}

.about-link svg {
  width: 18px;
  transition: transform 180ms ease;
}

.about-link:hover svg {
  transform: translateX(3px);
}

.company-trust {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: 64px;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}

.company-trust-copy h3 {
  margin-bottom: 12px;
  font-size: 24px;
}

.company-trust-copy p {
  margin-bottom: 12px;
  color: var(--muted);
}

.company-trust-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #bac8d1;
  border-left: 1px solid #bac8d1;
}

.company-trust-facts > div {
  display: grid;
  min-width: 0;
  min-height: 132px;
  align-content: start;
  gap: 14px;
  padding: 22px;
  border-right: 1px solid #bac8d1;
  border-bottom: 1px solid #bac8d1;
}

.company-trust-facts svg {
  width: 26px;
  height: 26px;
  color: var(--gold-500);
}

.company-trust-facts span {
  display: grid;
  gap: 2px;
}

.company-trust-facts small {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.company-trust-facts strong {
  color: var(--navy-900);
  font-size: 14px;
}

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

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.38fr) minmax(0, 0.62fr);
  gap: 80px;
}

.faq-layout > div:first-child p {
  color: var(--muted);
}

.faq-list {
  border-top: 1px solid #c9d0d5;
}

.faq-list details {
  border-bottom: 1px solid #c9d0d5;
}

.faq-list summary {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

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

.faq-list summary svg {
  width: 20px;
  min-width: 20px;
  transition: transform 180ms ease;
}

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

.faq-list details p {
  max-width: 680px;
  padding: 0 40px 22px 0;
  color: var(--muted);
}

.contact {
  padding: 72px 0;
  color: #fff;
  background: var(--navy-800);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(480px, 1.22fr);
  align-items: start;
  gap: 76px;
}

.contact-layout h2 {
  max-width: 720px;
  margin-bottom: 14px;
}

.contact-copy > p {
  max-width: 690px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.74);
}

.contact-copy .contact-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 420px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

.contact-note svg {
  width: 20px;
  min-width: 20px;
  color: #e0b866;
}

.contact-options {
  display: grid;
  gap: 12px;
}

.contact-option {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.9);
}

.contact-option > svg {
  width: 24px;
  height: 24px;
  color: #e0b866;
}

.contact-option span {
  display: grid;
}

.contact-option strong {
  color: #fff;
  font-size: 14px;
}

.contact-option small {
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
}

.contact-form {
  position: relative;
  padding: 30px;
  border-radius: 6px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 20px 44px rgba(3, 18, 29, 0.22);
}

.form-heading {
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.form-heading h3 {
  margin-bottom: 6px;
  font-size: 22px;
}

.form-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

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

.form-grid label,
.form-field-wide {
  display: grid;
  gap: 6px;
}

.form-grid label > span {
  color: #344653;
  font-size: 12px;
  font-weight: 700;
}

.form-grid label > span small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  min-height: 44px;
  padding: 9px 11px;
  border: 1px solid #b9c3ca;
  border-radius: 3px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-size: 14px;
}

.form-grid textarea {
  min-height: 108px;
  resize: vertical;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: var(--navy-700);
  outline: 2px solid rgba(23, 77, 109, 0.16);
}

.form-field-wide {
  grid-column: 1 / -1;
}

.form-consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 9px;
  margin: 18px 0;
  color: var(--muted);
  font-size: 12px;
  cursor: pointer;
}

.form-consent input {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
}

.form-consent a {
  color: var(--navy-700);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-submit {
  min-width: 180px;
  border: 0;
  cursor: pointer;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-submit .lucide-loader-circle {
  animation: form-loader 900ms linear infinite;
}

.captcha-area {
  display: grid;
  justify-items: start;
  gap: 7px;
  margin: 0 0 18px;
}

.captcha-area[hidden] {
  display: none;
}

.captcha-label {
  color: #344653;
  font-size: 12px;
  font-weight: 700;
}

.captcha-area small {
  color: var(--muted);
  font-size: 11px;
}

#turnstile-widget {
  width: min(100%, 300px);
  min-height: 65px;
}

#turnstile-widget iframe {
  max-width: 100%;
}

.form-success {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 20px;
  padding: 11px 12px;
  border: 1px solid #8bcbb4;
  border-radius: 3px;
  color: #075c49;
  background: var(--green-100);
  font-size: 13px;
}

.form-success[hidden] {
  display: none;
}

.form-success svg {
  width: 18px;
  min-width: 18px;
}

.form-error {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 20px;
  padding: 11px 12px;
  border: 1px solid #dfa0a0;
  border-radius: 3px;
  color: #8a1f1f;
  background: #fff0f0;
  font-size: 13px;
}

.form-error[hidden] {
  display: none;
}

.form-error svg {
  width: 18px;
  min-width: 18px;
}

.form-feedback-dialog {
  width: min(440px, calc(100% - 32px));
  padding: 0;
  border: 0;
  border-radius: 6px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 24px 64px rgba(3, 18, 29, 0.3);
}

.form-feedback-dialog::backdrop {
  background: rgba(4, 22, 35, 0.72);
}

.form-feedback-content {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: start;
  gap: 16px;
  padding: 28px 28px 20px;
}

.form-feedback-icon {
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #075c49;
  background: var(--green-100);
}

.form-feedback-dialog.is-error .form-feedback-icon {
  color: #8a1f1f;
  background: #fff0f0;
}

.form-feedback-icon svg {
  width: 26px;
  height: 26px;
}

.form-feedback-content h2 {
  margin: 2px 0 8px;
  font-size: 21px;
}

.form-feedback-content p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.form-feedback-actions {
  display: flex;
  justify-content: flex-end;
  padding: 0 28px 24px;
}

.form-feedback-actions .button {
  min-width: 90px;
  border: 0;
}

@keyframes form-loader {
  to {
    transform: rotate(360deg);
  }
}

.form-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: var(--navy-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.8fr;
  gap: 70px;
  padding-block: 58px;
}

.footer-brand img {
  width: 118px;
  height: 70px;
  margin-bottom: 16px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  max-width: 300px;
  margin: 0;
}

.footer-grid nav,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-grid strong {
  margin-bottom: 5px;
  color: #fff;
  font-size: 14px;
}

.footer-grid a {
  font-size: 14px;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
}

.legal-main {
  min-height: calc(100vh - var(--header-height));
  padding: 72px 0 90px;
  background: var(--surface-alt);
}

.legal-content {
  max-width: 860px;
}

.legal-content header {
  margin-bottom: 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.legal-content h1 {
  margin-bottom: 14px;
  font-size: 44px;
}

.legal-content article {
  padding: 36px;
  border: 1px solid var(--line);
  background: #fff;
}

.legal-content h2 {
  margin: 34px 0 12px;
  font-size: 24px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: #3e4b54;
}

.legal-content a {
  color: var(--navy-700);
  text-decoration: underline;
}

@media (max-width: 980px) {
  h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 34px;
  }

  .button-header {
    display: none;
  }

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

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

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

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

  .flow-list li,
  .flow-list li:first-child,
  .flow-list li:last-child {
    padding: 30px 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .flow-list li:nth-child(2n) {
    border-right: 0;
  }

  .flow-list > li > svg {
    margin-bottom: 30px;
  }

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

  .showcase-copy {
    max-width: 680px;
  }

  .difference-layout,
  .faq-layout {
    gap: 48px;
  }

  .company-trust {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

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

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 66px;
  }

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

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 30px;
  }

  .section {
    padding: 66px 0;
  }

  .brand {
    width: 112px;
    height: 50px;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .main-nav {
    position: absolute;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 8px 14px 16px;
    border-bottom: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 14px 24px rgba(6, 26, 42, 0.12);
  }

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

  .main-nav a {
    padding: 13px 8px;
    border-bottom: 1px solid #edf0f2;
  }

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

  .hero {
    min-height: 690px;
    max-height: none;
  }

  .hero-image {
    object-position: 68% center;
  }

  .hero-shade {
    background: rgba(4, 22, 35, 0.68);
  }

  .hero-content {
    min-height: 690px;
    justify-content: flex-end;
    padding-block: 80px 68px;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
    font-size: 18px;
  }

  .hero-actions {
    width: 100%;
  }

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

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

  .context-grid,
  .section-heading,
  .segments-intro,
  .difference-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .context-grid h2 {
    font-size: 25px;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .module-filters {
    display: none;
  }

  .module-select-control {
    display: grid;
    gap: 7px;
    margin-bottom: 26px;
  }

  .module-select-control span {
    color: #344653;
    font-size: 12px;
    font-weight: 700;
  }

  .module-select-control select {
    width: 100%;
    min-height: 46px;
    padding: 9px 38px 9px 12px;
    border: 1px solid #bcc6ce;
    border-radius: 4px;
    color: var(--ink);
    background: #fff;
    font: inherit;
    font-size: 14px;
  }

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

  .module-footer {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

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

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

  .module-count {
    order: 2;
    margin-top: 0;
    text-align: left;
  }

  .module-more {
    width: 100%;
  }

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

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

  .flow-list li,
  .flow-list li:first-child,
  .flow-list li:last-child,
  .flow-list li:nth-child(2n) {
    padding: 26px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .flow-list > li > svg {
    margin-bottom: 22px;
  }

  .flow-number {
    right: 0;
  }

  .product-tabs {
    width: 100%;
  }

  .product-tabs button {
    flex: 1;
    justify-content: center;
    padding-inline: 14px;
  }

  .showcase {
    gap: 30px;
  }

  .showcase-copy h3 {
    font-size: 25px;
  }

  .difference-intro {
    position: static;
  }

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

  .start-steps {
    grid-template-columns: 1fr;
  }

  .start-action {
    align-items: stretch;
    flex-direction: column;
  }

  .start-action .button {
    width: 100%;
  }

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

  .segment-list article {
    padding: 18px 16px;
  }

  .segment-list svg {
    width: 23px;
    height: 23px;
    margin-bottom: 14px;
  }

  .segment-list h3 {
    margin-bottom: 0;
    font-size: 15px;
  }

  .segment-list p {
    display: none;
  }

  .company-trust {
    margin-top: 44px;
    padding-top: 36px;
  }

  .company-trust-facts {
    grid-template-columns: 1fr;
    border-left: 0;
  }

  .company-trust-facts > div {
    min-height: 0;
    grid-template-columns: 34px 1fr;
    align-items: center;
    padding: 16px 0;
    border-right: 0;
  }

  .contact {
    padding: 58px 0;
  }

  .contact-form {
    padding: 24px 18px;
  }

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

  .form-field-wide {
    grid-column: auto;
  }

  .form-submit {
    width: 100%;
  }

  .legal-main {
    padding: 50px 0 66px;
  }

  .legal-content h1 {
    font-size: 34px;
  }

  .legal-content article {
    padding: 26px 20px;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    gap: 6px;
  }

}

@media (max-width: 440px) {
  h1 {
    font-size: 39px;
  }

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

  .product-tabs svg {
    display: none;
  }

  .difference-list article {
    grid-template-columns: 34px 1fr;
    padding: 22px 18px;
  }

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

  .footer-brand {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

}
