@font-face {
  font-family: "DM Sans";
  src: url("../fonts/dm-sans-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("../fonts/dm-sans-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("../fonts/dm-sans-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("../fonts/dm-sans-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --blue-950: #061638;
  --blue-900: #08265f;
  --blue-800: #0d3b9c;
  --blue-700: #175bdc;
  --blue-600: #1f6ff2;
  --blue-500: #2d7cf3;
  --blue-200: #cfe4ff;
  --blue-100: #eaf3ff;
  --cyan: #21d2f2;
  --lime: #b7ff4a;
  --ink: #102033;
  --muted: #64748b;
  --line: #d8e6f8;
  --paper: #ffffff;
  --soft: #f6fbff;
  --shadow: 0 20px 58px rgba(7, 31, 89, 0.13);
  --shadow-strong: 0 30px 84px rgba(4, 18, 46, 0.26);
  --radius: 8px;
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 8%, rgba(45, 124, 243, 0.14), transparent 31rem),
    linear-gradient(180deg, #fbfdff 0%, #f6fbff 42%, #ffffff 100%);
  font-family:
    "DM Sans", "Suisse Intl", "Helvetica Neue", "Segoe UI", ui-sans-serif, system-ui,
    sans-serif;
  font-size: 16px;
  line-height: 1.62;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(23, 91, 220, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 91, 220, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 70%);
}

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

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

p,
h1,
h2,
h3,
ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

p,
h1,
h2,
h3,
li,
a,
address {
  overflow-wrap: anywhere;
}

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

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

.hero-synox .shell {
  width: min(100% - 200px, 1320px);
  max-width: none;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  padding: 16px 0;
  transition:
    padding 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.site-header.is-scrolled {
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(216, 230, 248, 0.92);
  box-shadow: 0 16px 40px rgba(8, 38, 95, 0.11);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-900);
  font-size: 1.08rem;
  font-weight: 750;
  letter-spacing: 0;
}

.site-header:not(.is-scrolled) .brand {
  color: #fff;
}

.site-header:not(.is-scrolled) .site-nav {
  color: #d9e8ff;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.18);
}

.site-header:not(.is-scrolled) .site-nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.brand-mark {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px;
  color: #29405f;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(216, 230, 248, 0.9);
  border-radius: 999px;
}

.site-nav a {
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.site-nav a:hover {
  color: var(--blue-900);
  background: var(--blue-100);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--blue-900);
}

.section {
  padding: 96px 0;
}

.section-deep {
  position: relative;
  overflow: hidden;
}

.badge,
.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 6px 12px;
  margin-bottom: 17px;
  color: var(--blue-700);
  background: rgba(45, 124, 243, 0.12);
  border: 1px solid rgba(45, 124, 243, 0.18);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: var(--blue-950);
  font-family:
    "Suisse Intl", "DM Sans", "Helvetica Neue", "Segoe UI", ui-sans-serif, system-ui,
    sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 1200px;
  font-size: clamp(3.8rem, 5.35vw, 5.35rem);
  line-height: 1.12;
  font-weight: 700;
}

h2 {
  max-width: 780px;
  font-size: clamp(2rem, 3.45vw, 3.12rem);
  line-height: 1.2;
  font-weight: 700;
}

h3 {
  font-size: 1.12rem;
  line-height: 1.32;
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 21px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.btn svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  box-shadow: 0 18px 40px rgba(31, 111, 242, 0.34);
}

.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-2px);
}

.btn-secondary {
  color: var(--blue-900);
  background: #fff;
  border: 1px solid var(--line);
}

.hero-synox {
  min-height: clamp(850px, 100vh, 920px);
  padding: 132px 0 0;
  color: #fff;
  background:
    radial-gradient(circle at 50% 59%, rgba(45, 124, 243, 0.43), transparent 30rem),
    radial-gradient(circle at 18% 28%, rgba(33, 210, 242, 0.14), transparent 23rem),
    linear-gradient(145deg, #061638 0%, #08265f 54%, #0b3b9a 100%);
  border-radius: 0 0 28px 28px;
}

.hero-synox h1 {
  margin-inline: auto;
  color: #fff;
  text-align: center;
}

.hero-title-mobile {
  display: none;
}

.hero-synox .badge {
  margin-inline: auto;
  margin-bottom: 20px;
  color: #d8e9ff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
}

.hero-title-wrap {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-stage {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(560px, 760px) minmax(300px, 1fr);
  gap: 0;
  align-items: end;
  width: 100%;
  margin-top: 56px;
  padding-inline: 100px;
}

.hero-side {
  display: grid;
  align-items: end;
  min-width: 0;
  padding-bottom: 132px;
  position: relative;
  z-index: 3;
}

.hero-side-inner {
  display: grid;
  gap: 22px;
  width: min(100%, 390px);
}

.hero-side-left {
  justify-items: start;
}

.hero-side-right {
  justify-items: end;
}

.hero-side p {
  color: rgba(255, 255, 255, 0.78);
  max-width: none;
  font-size: 1.18rem;
  font-weight: 500;
  line-height: 1.65;
}

.hero-hand {
  align-self: center;
  justify-self: center;
  position: relative;
  z-index: 2;
  width: min(100%, 760px);
}

.hero-hand img {
  width: 100%;
  max-width: 760px;
  transform: translateY(8px);
  margin-inline: auto;
  filter: drop-shadow(0 38px 48px rgba(0, 0, 0, 0.31));
  animation: floatHero 6.5s ease-in-out infinite;
}

.hero-stat-card,
.hero-highlight {
  width: 100%;
  padding: 22px 24px;
  color: #dbeafe;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
}

.hero-stat-card img {
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
}

.hero-stat-card span,
.hero-highlight span {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-stat-card strong,
.hero-highlight strong {
  display: block;
  margin-top: 5px;
  color: #fff;
  font-size: 1.18rem;
  line-height: 1.25;
  font-weight: 700;
}

.hero-pattern {
  position: absolute;
  z-index: 1;
  width: min(40vw, 560px);
  opacity: 0.12;
  pointer-events: none;
}

.hero-pattern-left {
  left: 0;
  bottom: 0;
}

.hero-pattern-right {
  right: 0;
  bottom: 0;
  top: auto;
}

.partner-network-strip,
.section-about,
.payment-methods,
.contact-process,
.architecture-section,
.roadmap-section,
.integrating-section,
.article-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 12%, rgba(45, 124, 243, 0.2), transparent 34rem),
    radial-gradient(circle at 88% 72%, rgba(33, 210, 242, 0.12), transparent 28rem),
    linear-gradient(180deg, #eaf4ff 0%, #f6fbff 58%, #edf6ff 100%);
}

.partner-network-strip::before,
.section-about::before,
.payment-methods::before,
.contact-process::before,
.architecture-section::before,
.roadmap-section::before,
.integrating-section::before,
.article-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(23, 91, 220, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 91, 220, 0.045) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.86), transparent 86%);
}

.partner-network-strip > *,
.section-about > *,
.payment-methods > *,
.contact-process > *,
.architecture-section > *,
.roadmap-section > *,
.integrating-section > *,
.article-section > * {
  position: relative;
  z-index: 1;
}

.partner-network-strip {
  padding: 38px 0;
  border-bottom: 1px solid var(--line);
}

.partner-network-strip .shell {
  display: grid;
  gap: 18px;
  justify-items: center;
}

.partner-marquee {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  width: 100%;
}

.partner-marquee span {
  padding: 12px 18px;
  color: #24415f;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #cfe4ff;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(8, 38, 95, 0.06);
}

.about-layout,
.split-panel,
.architecture-grid,
.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1fr);
  gap: 52px;
  align-items: center;
}

.section-intro,
.section-heading,
.about-copy,
.contact-card {
  min-width: 0;
}

.section-intro p:not(.eyebrow),
.section-heading p,
.about-copy p,
.regional-panel p,
.contact-panel p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.about-copy {
  display: grid;
  gap: 16px;
}

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

.statement-card,
.method-card,
.certificate-stack article,
.pricing-card,
.roadmap-item,
.article-card,
.policy-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 38px rgba(8, 38, 95, 0.075);
}

.statement-card {
  padding: 28px;
}

.statement-card span,
.certificate-stack span,
.roadmap-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 30px;
  color: var(--blue-700);
  background: var(--blue-100);
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 700;
}

.statement-card p,
.method-card p,
.certificate-stack p,
.pricing-card p,
.roadmap-item p,
.article-card p,
.policy-grid p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.68;
}

.section-heading {
  display: grid;
  justify-items: center;
  text-align: center;
  margin-bottom: 42px;
}

.section-heading p {
  max-width: 720px;
  margin-top: 16px;
}

.payment-methods {
  position: relative;
  overflow: hidden;
}

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

.method-card {
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  min-height: 100%;
  padding: 24px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 251, 255, 0.92)),
    #fff;
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease;
}

.method-card:hover {
  transform: translateY(-7px);
  border-color: rgba(45, 124, 243, 0.42);
  box-shadow: var(--shadow);
}

.method-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 21px;
  padding: 13px;
  background:
    linear-gradient(135deg, rgba(234, 243, 255, 0.96), rgba(207, 228, 255, 0.78));
  border-radius: 8px;
}

.method-card h3 {
  font-size: 1.42rem;
  line-height: 1.22;
}

.method-card ul {
  display: grid;
  gap: 7px;
  margin-top: 17px;
}

.method-card li {
  position: relative;
  padding-left: 18px;
  color: #33465f;
  font-size: 0.93rem;
  line-height: 1.52;
}

.method-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-700), var(--cyan));
}

.section-compliance {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(6, 22, 56, 0.94), rgba(23, 91, 220, 0.9)),
    var(--blue-900);
}

.section-compliance h2,
.section-compliance h3,
.section-compliance .eyebrow {
  color: #fff;
}

.section-compliance .section-intro p {
  color: rgba(255, 255, 255, 0.76);
}

.certificate-stack {
  display: grid;
  gap: 13px;
}

.certificate-stack article {
  padding: 22px;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: none;
  backdrop-filter: blur(12px);
}

.certificate-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.certificate-heading img {
  width: 36px;
  height: 36px;
  padding: 6px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 8px;
}

.certificate-stack span {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
}

.certificate-stack p {
  color: rgba(255, 255, 255, 0.73);
}

.contact-process {
  position: relative;
  overflow: hidden;
}

.process-panel {
  position: relative;
  padding: 48px 50px 44px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.94)),
    url("../images/brand-panel-pattern.svg");
  background-size: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.process-logo {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  margin: 0 auto 22px;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  border-radius: 50%;
  box-shadow: 0 18px 42px rgba(31, 111, 242, 0.24);
}

.process-logo img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.process-line-art {
  width: min(720px, 100%);
  margin: 0 auto -10px;
}

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

.process-steps article {
  display: grid;
  justify-items: center;
  gap: 9px;
  text-align: center;
}

.process-steps span {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  color: #fff;
  background: var(--blue-900);
  border-radius: 50%;
  font-size: 1.02rem;
  font-weight: 700;
}

.process-steps p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.58;
}

.dark-band {
  background:
    radial-gradient(circle at 78% 18%, rgba(33, 210, 242, 0.1), transparent 26rem),
    linear-gradient(180deg, #061638 0%, #08265f 52%, #061638 100%);
}

.dark-band h2,
.dark-band h3 {
  color: #fff;
}

.dark-band .section-heading p {
  color: rgba(255, 255, 255, 0.68);
}

.industry-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.8fr);
  gap: 54px;
  align-items: center;
}

.industry-copy .badge,
.policy-panel .badge,
.pricing-section .badge {
  color: #d8e9ff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
}

.industry-list {
  display: grid;
  gap: 13px;
  margin-top: 30px;
}

.industry-list article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 15px;
  padding: 17px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
}

.industry-list img {
  width: 50px;
  height: 50px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.industry-list p {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.95rem;
  line-height: 1.55;
}

.industry-image img {
  width: min(500px, 100%);
  margin-inline: auto;
  filter: drop-shadow(0 25px 40px rgba(0, 0, 0, 0.32));
  animation: floatVisual 7s ease-in-out infinite;
}

.policy-section {
  padding-bottom: 86px;
}

.policy-panel {
  padding: 42px;
  background: linear-gradient(135deg, rgba(45, 124, 243, 0.22), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
}

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

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

.policy-grid article {
  padding: 22px 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.policy-grid img {
  width: 56px;
  height: 56px;
  margin: 0 auto 17px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.policy-grid p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.94rem;
  line-height: 1.55;
}

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

.pricing-card {
  display: grid;
  align-content: start;
  gap: 17px;
  min-height: 286px;
  padding: 30px;
  background:
    linear-gradient(135deg, #fff, #eaf3ff);
}

.pricing-card-blue {
  color: #fff;
  background: linear-gradient(135deg, var(--blue-800), var(--blue-500));
  border-color: rgba(255, 255, 255, 0.15);
}

.pricing-card strong {
  width: fit-content;
  padding: 9px 13px;
  color: var(--blue-900);
  background: #fff;
  border-radius: 999px;
  font-size: 1.08rem;
}

.pricing-card-blue p {
  color: rgba(255, 255, 255, 0.75);
}

.architecture-card {
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.compliance-note {
  margin-top: 16px;
  color: #415977;
  font-size: 0.93rem;
  font-style: italic;
}

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

.roadmap-item {
  padding: 22px;
}

.roadmap-item span {
  color: #fff;
  background: var(--blue-900);
}

.integration-image {
  position: relative;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.integration-image img {
  width: min(900px, 100%);
  margin-inline: auto;
}

.integration-capabilities {
  position: absolute;
  right: 30px;
  bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  width: min(430px, calc(100% - 60px));
}

.integration-capabilities span {
  padding: 11px 15px;
  color: var(--blue-900);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #9fc5fb;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
}

.regional-section {
  padding: 74px 0;
  background: #fff;
}

.regional-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  padding: 40px;
  color: #fff;
  background: linear-gradient(135deg, rgba(6, 22, 56, 0.94), rgba(23, 91, 220, 0.9));
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
}

.regional-panel h2 {
  color: #fff;
}

.regional-panel p {
  color: rgba(255, 255, 255, 0.78);
}

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

.article-card {
  overflow: hidden;
}

.article-card img {
  width: 100%;
  aspect-ratio: 16 / 10.2;
  object-fit: cover;
}

.article-card div {
  padding: 22px;
}

.article-card span {
  color: var(--blue-700);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-card h3 {
  margin-top: 12px;
}

.contact-section {
  background:
    radial-gradient(circle at 18% 22%, rgba(45, 124, 243, 0.16), transparent 28rem),
    #fff;
}

.contact-panel {
  align-items: stretch;
  padding: 42px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-panel p {
  margin-top: 16px;
}

.contact-card {
  display: grid;
  align-content: start;
  gap: 15px;
  padding: 28px;
  background: var(--blue-100);
  border-radius: var(--radius);
}

.contact-card a:not(.btn) {
  color: var(--blue-900);
  font-size: 1.06rem;
  font-weight: 700;
}

address {
  color: #4f6481;
  font-style: normal;
}

.contact-card .btn {
  margin-top: 10px;
}

.site-footer {
  padding: 34px 0;
  color: #c8d8ef;
  background: var(--blue-950);
}

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

.footer-legal {
  display: grid;
  justify-items: end;
  gap: 8px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.footer-links button {
  padding: 0;
  color: #d8e9ff;
  background: transparent;
  border: 0;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
}

.footer-links button:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-footer .brand {
  color: #fff;
}

.site-footer .brand-mark {
  width: 36px;
  height: 36px;
}

.policy-dialog {
  width: min(620px, calc(100% - 32px));
  padding: 0;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
}

.policy-dialog::backdrop {
  background: rgba(6, 22, 56, 0.66);
  backdrop-filter: blur(4px);
}

.policy-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--blue-900);
  background: var(--blue-100);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}

.policy-close svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
}

.policy-dialog-body {
  display: grid;
  gap: 18px;
  padding: 34px;
  padding-right: 70px;
}

.policy-dialog-body .badge {
  margin-bottom: 0;
}

.policy-dialog-body h2 {
  font-size: clamp(1.7rem, 4vw, 2.35rem);
}

.policy-dialog-body p {
  color: var(--muted);
}

.policy-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  color: #29405f;
  background: var(--blue-100);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 700;
}

.policy-check input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--blue-700);
  flex: 0 0 auto;
}

.backtotop {
  position: fixed;
  right: 18px;
  bottom: 66px;
  z-index: 80;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--blue-900);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(216, 230, 248, 0.95);
  border-radius: 50%;
  box-shadow: 0 18px 34px rgba(8, 38, 95, 0.18);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    background 0.22s ease;
}

.backtotop.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.backtotop:hover {
  color: #fff;
  background: var(--blue-700);
}

.backtotop svg {
  display: block;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.72s ease,
    transform 0.72s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatVisual {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-16px);
  }
}

@keyframes floatHero {
  0%,
  100% {
    transform: translateY(8px);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 1100px) {
  .industry-layout,
  .about-layout,
  .split-panel,
  .architecture-grid,
  .contact-panel,
  .regional-panel {
    grid-template-columns: 1fr;
  }

  .hero-synox .shell {
    width: min(100% - 64px, 980px);
  }

  .hero-stage {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-inline: 48px;
  }

  .hero-hand {
    width: min(100%, 760px);
  }

  .hero-side {
    padding-bottom: 0;
  }

  .hero-side-right {
    justify-items: stretch;
  }

  .hero-side-inner {
    width: 100%;
  }

  .hero-side-right .hero-side-inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

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

@media (max-width: 860px) {
  .site-header {
    padding: 12px 0;
    background: rgba(6, 22, 56, 0.78);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
  }

  .nav-toggle {
    display: block;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
  }

  .nav-toggle span:not(.sr-only) {
    background: #fff;
  }

  .site-header .brand,
  .site-header:not(.is-scrolled) .brand {
    color: #fff;
  }

  .site-header.is-scrolled {
    background: rgba(6, 22, 56, 0.9);
    border-bottom-color: rgba(255, 255, 255, 0.14);
  }

  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    color: #d9e8ff;
    background: rgba(8, 38, 95, 0.96);
    border-color: rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    box-shadow: 0 22px 44px rgba(4, 18, 46, 0.28);
  }

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

  .site-nav a {
    color: #d9e8ff;
    border-radius: 8px;
  }

  .site-nav a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
  }

  .hero-synox {
    min-height: 1040px;
    padding: 116px 0 0;
    border-radius: 0 0 22px 22px;
  }

  .hero-synox + .partner-network-strip {
    margin-top: 0;
  }

  .process-steps,
  .mission-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .process-line-art {
    display: none;
  }
}

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

  .hero-synox .shell {
    width: min(100% - 28px, 560px);
  }

  .section {
    padding: 66px 0;
  }

  h1 {
    font-size: clamp(2.55rem, 11.4vw, 3.25rem);
    line-height: 1.08;
  }

  h2 {
    font-size: clamp(1.72rem, 7.7vw, 2.08rem);
    line-height: 1.18;
  }

  h3 {
    font-size: 1.04rem;
  }

  .badge,
  .eyebrow {
    min-height: 26px;
    padding: 5px 10px;
    margin-bottom: 14px;
    font-size: 0.68rem;
  }

  .btn {
    width: fit-content;
    max-width: 100%;
    min-height: 48px;
    padding: 0 18px;
    font-size: 0.92rem;
  }

  .hero-title-wrap {
    text-align: left;
  }

  .hero-title-desktop {
    display: none;
  }

  .hero-title-mobile {
    display: block;
  }

  .hero-synox .hero-title-mobile,
  .hero-synox .badge {
    margin-inline: 0;
    text-align: left;
  }

  .hero-stage {
    margin-top: 38px;
    gap: 24px;
    padding-inline: 0;
  }

  .hero-side-right,
  .method-grid,
  .policy-grid,
  .roadmap,
  .article-grid {
    grid-template-columns: 1fr;
  }

  .hero-side-right .hero-side-inner {
    grid-template-columns: 1fr;
  }

  .hero-hand img {
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
  }

  .hero-side p {
    max-width: 34ch;
    font-size: 1rem;
    line-height: 1.62;
  }

  .hero-stat-card,
  .hero-highlight {
    width: 100%;
    padding: 16px;
  }

  .hero-highlight strong {
    max-width: 26ch;
    font-size: 1.06rem;
  }

  .backtotop {
    right: 14px;
    bottom: 22px;
  }

  .partner-network-strip {
    padding: 30px 0;
  }

  .partner-marquee {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .partner-marquee span {
    width: 100%;
    padding: 10px 13px;
    font-size: 0.84rem;
    text-align: center;
  }

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

  .section-heading p,
  .section-intro p:not(.eyebrow),
  .about-copy p,
  .regional-panel p,
  .contact-panel p {
    font-size: 0.96rem;
    line-height: 1.66;
  }

  .mission-grid {
    gap: 14px;
    margin-top: 30px;
  }

  .statement-card,
  .method-card,
  .pricing-card,
  .roadmap-item,
  .article-card div {
    padding: 20px;
  }

  .method-card h3 {
    font-size: 1.22rem;
  }

  .method-card img {
    width: 58px;
    height: 58px;
    margin-bottom: 18px;
  }

  .process-panel,
  .policy-panel,
  .contact-panel,
  .regional-panel {
    padding: 22px;
  }

  .industry-layout {
    gap: 34px;
  }

  .industry-list article {
    grid-template-columns: 46px 1fr;
    gap: 13px;
    padding: 15px;
  }

  .industry-list img {
    width: 46px;
    height: 46px;
    padding: 9px;
  }

  .policy-section {
    padding-bottom: 66px;
  }

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

  .regional-section {
    padding: 58px 0;
  }

  .integration-capabilities {
    position: static;
    width: 100%;
    margin: 16px auto 0;
    justify-content: center;
  }

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

  .footer-legal {
    justify-items: start;
  }

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

  .policy-dialog-body {
    padding: 24px;
    padding-right: 62px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
