@font-face {
  font-family: "Magnetik";
  src: url("/assets/fonts/Magnetik-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Magnetik";
  src: url("/assets/fonts/Magnetik-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Magnetik";
  src: url("/assets/fonts/Magnetik-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --sg-bg: #111600;
  --sg-bg-rgb: 17 22 0;
  --sg-fg: #ffffff;
  --sg-paper: #eeeeee;
  --sg-muted: #c0c0c0;
  --sg-muted-dark: #656565;
  --sg-surface: #171d05;
  --sg-surface-2: #1d2508;
  --sg-surface-3: #242d0b;
  --sg-border: rgb(238 238 238 / 0.13);
  --sg-green: #8cff01;
  --sg-green-rgb: 140 255 1;
  --sg-blue: #03b2ff;
  --sg-blue-rgb: 3 178 255;
  --sg-accent: var(--sg-green);
  --sg-accent-rgb: var(--sg-green-rgb);
  --sg-radius-sm: 12px;
  --sg-radius: 16px;
  --sg-shadow: 0 28px 90px rgb(0 0 0 / 0.32);
  --sg-font: "Magnetik", Inter, Manrope, Montserrat, system-ui, -apple-system, "Segoe UI", sans-serif;
}

body[data-journey="buy"],
body[data-journey="cross-buy"],
[data-accent="buy"] {
  --sg-accent: var(--sg-blue);
  --sg-accent-rgb: var(--sg-blue-rgb);
}

body[data-journey="sell"],
body[data-journey="cross-sell"],
[data-accent="sell"] {
  --sg-accent: var(--sg-green);
  --sg-accent-rgb: var(--sg-green-rgb);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgb(238 238 238 / 0.035) 1px, transparent 1px) 0 0 / 64px 64px,
    linear-gradient(0deg, rgb(238 238 238 / 0.025) 1px, transparent 1px) 0 0 / 64px 64px,
    linear-gradient(180deg, #111600 0%, #0f1300 46%, #111600 100%);
  color: var(--sg-fg);
  font-family: var(--sg-font);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

::selection {
  background: var(--sg-accent);
  color: var(--sg-bg);
}

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--sg-accent);
  outline-offset: 4px;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--sg-border);
  background: rgb(var(--sg-bg-rgb) / 0.92);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.site-logo {
  display: inline-flex;
  width: 174px;
  align-items: center;
  flex: 0 0 auto;
}

.site-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.site-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
  margin-left: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: var(--sg-muted);
  font-size: 15px;
  font-weight: 600;
}

.site-nav-link,
.site-cta,
.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--sg-radius-sm);
  font-weight: 700;
  line-height: 1.1;
  white-space: nowrap;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.site-nav-link {
  border: 1px solid var(--sg-border);
  padding: 0 16px;
  background: rgb(255 255 255 / 0.035);
  color: var(--sg-fg);
  font-size: 14px;
}

.site-nav-link:hover {
  border-color: rgb(var(--sg-accent-rgb) / 0.74);
  color: var(--sg-accent);
}

.site-nav a {
  transition: color 180ms ease;
}

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

.site-cta,
.btn--accent {
  border: 1px solid var(--sg-accent);
  background: var(--sg-accent);
  color: var(--sg-bg);
}

.site-cta {
  padding: 0 18px;
  font-size: 14px;
}

.site-cta:hover,
.btn--accent:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgb(var(--sg-accent-rgb) / 0.18);
}

.btn {
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
}

.btn--ghost {
  border-color: var(--sg-border);
  background: rgb(255 255 255 / 0.025);
  color: var(--sg-fg);
}

.btn--ghost:hover {
  border-color: rgb(var(--sg-accent-rgb) / 0.74);
  color: var(--sg-accent);
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--sg-border);
  padding: 84px 0 92px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgb(var(--sg-accent-rgb) / 0.11) 0%, transparent 34%),
    linear-gradient(90deg, rgb(255 255 255 / 0.055) 0%, transparent 52%);
  pointer-events: none;
}

.hero > .container {
  position: relative;
  z-index: 1;
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: 52px;
  align-items: center;
}

.hero__visual-stack {
  display: grid;
  gap: 16px;
}

.hero__media {
  position: relative;
  min-width: 0;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--sg-border);
  border-radius: var(--sg-radius);
  margin: 0;
  background: var(--sg-surface-2);
  box-shadow: var(--sg-shadow);
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgb(255 255 255 / 0.08), transparent 34%),
    linear-gradient(90deg, rgb(var(--sg-bg-rgb) / 0.18), transparent 48%);
  pointer-events: none;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero__media--hub {
  aspect-ratio: 3 / 2;
}

.section-head__eyebrow {
  color: var(--sg-accent);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: 64px;
  line-height: 1.04;
  font-weight: 700;
  letter-spacing: 0;
}

.hero h1 em {
  color: var(--sg-accent);
  font-style: normal;
}

.hero__lede {
  max-width: 820px;
  margin: 24px 0 0;
  color: rgb(255 255 255 / 0.78);
  font-size: 21px;
  line-height: 1.45;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero__panel,
.commercial-card {
  border: 1px solid var(--sg-border);
  border-radius: var(--sg-radius);
  box-shadow: var(--sg-shadow);
}

.hero__panel {
  position: relative;
  overflow: hidden;
  padding: 28px;
  background:
    linear-gradient(180deg, rgb(255 255 255 / 0.08), transparent 40%),
    var(--sg-surface-2);
}

.hero__panel::before {
  content: "";
  display: block;
  width: 76px;
  height: 8px;
  border-radius: 999px;
  margin-bottom: 24px;
  background:
    linear-gradient(90deg, var(--sg-accent) 0 38%, rgb(255 255 255 / 0.18) 38% 62%, rgb(255 255 255 / 0.08) 62% 100%);
}

.hero__panel-title {
  margin: 0 0 18px;
  color: var(--sg-fg);
  font-size: 18px;
  font-weight: 700;
}

.hero__panel ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero__panel li {
  position: relative;
  border-top: 1px solid var(--sg-border);
  padding: 14px 0 14px 32px;
  color: rgb(255 255 255 / 0.74);
}

.hero__panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 16px;
  height: 16px;
  border: 1px solid rgb(var(--sg-accent-rgb) / 0.7);
  border-radius: 50%;
  background: rgb(var(--sg-accent-rgb) / 0.13);
}

.hero__panel li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 23px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sg-accent);
}

.hero__panel strong {
  color: var(--sg-fg);
}

.hub-hero h1 {
  max-width: 980px;
}

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

.metric,
.partner-card,
.trust-list li,
.benefit,
.step {
  position: relative;
  border: 1px solid var(--sg-border);
  border-radius: var(--sg-radius-sm);
  background: rgb(255 255 255 / 0.045);
}

.metric {
  overflow: hidden;
  padding: 20px;
}

.metric::before,
.benefit::before,
.step::before,
.partner-card::before,
.trust-list li::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: var(--sg-accent);
}

.metric strong {
  display: block;
  color: var(--sg-accent);
  font-size: 30px;
  line-height: 1.05;
}

.metric span {
  display: block;
  margin-top: 8px;
  color: rgb(255 255 255 / 0.68);
  font-weight: 600;
}

.metric:nth-child(3),
.metric:nth-child(4) {
  --sg-accent: var(--sg-blue);
  --sg-accent-rgb: var(--sg-blue-rgb);
}

.section {
  position: relative;
  padding: 82px 0;
}

.section--bordered {
  border-top: 1px solid var(--sg-border);
  border-bottom: 1px solid var(--sg-border);
  background: rgb(255 255 255 / 0.018);
}

.section--shaded {
  background: var(--sg-paper);
  color: var(--sg-bg);
}

.section-head {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-head--spaced {
  margin-top: 34px;
}

.section-head h2,
.faq__grid h2,
.final-cta h2 {
  margin: 10px 0 0;
  font-size: 42px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0;
}

.section-head p {
  margin: 16px 0 0;
  color: rgb(255 255 255 / 0.72);
  font-size: 19px;
}

.section--shaded .section-head p {
  color: rgb(var(--sg-bg-rgb) / 0.66);
}

.section--shaded .btn--ghost,
.section--ecosystem .btn--ghost {
  border-color: rgb(var(--sg-bg-rgb) / 0.2);
  background: rgb(255 255 255 / 0.48);
  color: var(--sg-bg);
}

.section--shaded .btn--ghost:hover,
.section--ecosystem .btn--ghost:hover {
  border-color: rgb(var(--sg-accent-rgb) / 0.64);
  color: var(--sg-bg);
}

.partner-grid,
.benefits,
.trust-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.partner-card {
  min-height: 248px;
  overflow: hidden;
  padding: 26px 26px 76px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.partner-card:hover {
  transform: translateY(-4px);
  border-color: var(--card-accent);
  background: rgb(255 255 255 / 0.065);
}

.partner-card--green {
  --card-accent: var(--sg-green);
}

.partner-card--blue {
  --card-accent: var(--sg-blue);
}

.partner-card::before {
  background: var(--card-accent);
}

.partner-card strong {
  display: block;
  color: var(--card-accent);
  font-size: 14px;
  text-transform: uppercase;
}

.partner-card h3 {
  margin: 12px 0 0;
  color: var(--sg-fg);
  font-size: 25px;
  line-height: 1.12;
}

.partner-card p {
  margin: 14px 0 0;
  color: rgb(255 255 255 / 0.7);
}

.partner-card span:last-child {
  position: absolute;
  left: 26px;
  bottom: 24px;
  color: var(--card-accent);
  font-weight: 700;
}

.corner-mark {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 30px;
  height: 30px;
  border: 1px solid var(--sg-border);
  border-radius: 9px;
  overflow: hidden;
}

.corner-mark::before,
.corner-mark::after {
  content: "";
  position: absolute;
  inset: 0;
}

.corner-mark--sell::before {
  clip-path: polygon(0 0, 100% 0, 0 100%);
  background: var(--sg-green);
}

.corner-mark--sell::after {
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  background: var(--sg-blue);
}

.corner-mark--buy::before {
  clip-path: polygon(0 0, 100% 0, 0 100%);
  background: var(--sg-blue);
}

.corner-mark--buy::after {
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  background: var(--sg-green);
}

.benefit,
.step {
  overflow: hidden;
  padding: 24px;
}

.benefit__icon {
  width: 42px;
  height: 42px;
  border: 1px solid rgb(var(--sg-accent-rgb) / 0.32);
  border-radius: 12px;
  margin-bottom: 22px;
  padding: 8px;
  color: var(--sg-accent);
  background: rgb(var(--sg-accent-rgb) / 0.09);
}

.benefit h4,
.step h4 {
  margin: 0;
  color: var(--sg-fg);
  font-size: 19px;
  line-height: 1.25;
}

.benefit p,
.step p {
  margin: 10px 0 0;
  color: rgb(255 255 255 / 0.68);
}

.section--shaded .step {
  border-color: rgb(var(--sg-bg-rgb) / 0.12);
  background: #ffffff;
  box-shadow: 0 18px 50px rgb(var(--sg-bg-rgb) / 0.08);
}

.section--shaded .step h4 {
  color: var(--sg-bg);
}

.section--shaded .step p {
  color: rgb(var(--sg-bg-rgb) / 0.66);
}

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

.step__num {
  display: inline-flex;
  min-width: 42px;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  margin-bottom: 24px;
  background: var(--sg-accent);
  color: var(--sg-bg);
  font-size: 14px;
  font-weight: 700;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: 24px;
  align-items: start;
}

.commercial-card,
.requirements,
.table-scroll {
  border: 1px solid rgb(var(--sg-bg-rgb) / 0.1);
  background: var(--sg-paper);
  color: var(--sg-bg);
  box-shadow: 0 22px 70px rgb(0 0 0 / 0.18);
}

.commercial-card {
  overflow: hidden;
  padding: 28px;
}

.commercial-card h3,
.requirements h3 {
  margin: 0 0 18px;
  color: var(--sg-bg);
  font-size: 24px;
  line-height: 1.2;
}

.commercial-card table {
  width: 100%;
  border-collapse: collapse;
}

.commercial-card tr {
  border-top: 1px solid rgb(var(--sg-bg-rgb) / 0.12);
}

.commercial-card th,
.commercial-card td {
  padding: 15px 0;
  text-align: left;
  vertical-align: top;
}

.commercial-card th {
  width: 42%;
  color: rgb(var(--sg-bg-rgb) / 0.56);
  font-weight: 700;
}

.commercial-card td {
  color: var(--sg-bg);
}

.pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgb(var(--sg-accent-rgb) / 0.52);
  padding: 5px 10px;
  background: rgb(var(--sg-accent-rgb) / 0.12);
  color: var(--sg-bg);
  font-size: 13px;
  font-weight: 700;
}

.requirements {
  border-radius: var(--sg-radius);
  padding: 28px;
}

.requirements ul {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.requirements li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
}

.requirements li::before {
  content: "";
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--sg-accent);
}

.requirements strong,
.requirements span {
  display: block;
}

.requirements strong {
  color: var(--sg-bg);
}

.requirements span {
  margin-top: 4px;
  color: rgb(var(--sg-bg-rgb) / 0.62);
}

.note-card {
  border: 1px solid rgb(var(--sg-accent-rgb) / 0.36);
  border-radius: var(--sg-radius-sm);
  margin-top: 22px;
  padding: 18px 20px;
  background: rgb(var(--sg-accent-rgb) / 0.08);
  color: rgb(255 255 255 / 0.76);
}

.note-card strong {
  color: var(--sg-accent);
}

.note-card .pill {
  background: rgb(var(--sg-accent-rgb) / 0.12);
  color: var(--sg-accent);
}

.table-scroll {
  overflow-x: auto;
  border-radius: var(--sg-radius);
}

.commission-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.commission-table th,
.commission-table td {
  padding: 18px;
  border-bottom: 1px solid rgb(var(--sg-bg-rgb) / 0.12);
  text-align: left;
}

.commission-table th {
  color: var(--sg-bg);
  font-size: 14px;
  text-transform: uppercase;
}

.commission-table td {
  color: rgb(var(--sg-bg-rgb) / 0.72);
}

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

.commission-table strong {
  color: var(--sg-bg);
}

.value-table {
  margin-top: 8px;
}

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

.value-summary article {
  border: 1px solid rgb(var(--sg-bg-rgb) / 0.12);
  border-radius: var(--sg-radius-sm);
  background: #ffffff;
  padding: 20px;
  box-shadow: 0 14px 34px rgb(var(--sg-bg-rgb) / 0.08);
}

.value-summary strong,
.value-summary span {
  display: block;
}

.value-summary strong {
  color: var(--sg-bg);
  font-size: 17px;
  line-height: 1.2;
}

.value-summary span {
  margin-top: 8px;
  color: rgb(var(--sg-bg-rgb) / 0.66);
  line-height: 1.42;
}

.proof-card {
  align-self: stretch;
}

.trust-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  overflow: hidden;
  padding: 22px;
  color: rgb(255 255 255 / 0.72);
}

.trust-list strong {
  display: block;
  margin-bottom: 8px;
  color: var(--sg-fg);
}

.section--ecosystem {
  overflow: hidden;
  border-top: 1px solid var(--sg-border);
  border-bottom: 1px solid var(--sg-border);
  background: var(--sg-paper);
  color: var(--sg-bg);
}

.section--ecosystem .section-head p {
  color: rgb(var(--sg-bg-rgb) / 0.68);
}

.ecosystem-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) repeat(2, minmax(0, 0.72fr));
  gap: 18px;
  margin-bottom: 46px;
}

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

.ecosystem-feature-grid--wide .ecosystem-feature-card--primary {
  grid-column: span 2;
}

.ecosystem-feature-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgb(var(--sg-bg-rgb) / 0.12);
  border-radius: var(--sg-radius);
  background: #ffffff;
  padding: 26px;
  color: var(--sg-bg);
  box-shadow: 0 18px 50px rgb(var(--sg-bg-rgb) / 0.08);
}

.ecosystem-feature-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: var(--sg-accent);
}

.ecosystem-feature-card--primary {
  background:
    linear-gradient(135deg, rgb(var(--sg-accent-rgb) / 0.16), transparent 42%),
    #ffffff;
}

.ecosystem-feature-card span {
  display: block;
  margin-bottom: 12px;
  color: #0579ad;
  font-size: 13px;
  line-height: 1.1;
  font-weight: 700;
  text-transform: uppercase;
}

.ecosystem-feature-card h3 {
  margin: 0;
  color: var(--sg-bg);
  font-size: 25px;
  line-height: 1.12;
}

.ecosystem-feature-card p {
  margin: 14px 0 0;
  color: rgb(var(--sg-bg-rgb) / 0.68);
}

.ecosystem-feature-card .btn {
  margin-top: 20px;
}

.alliance-benefits-header {
  margin-bottom: 18px;
  text-align: center;
}

.alliance-benefits-header h2 {
  margin: 0;
  color: var(--sg-bg);
  font-size: 34px;
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: 0;
}

.alliance-benefits-header p {
  max-width: 620px;
  margin: 10px auto 0;
  color: rgb(var(--sg-bg-rgb) / 0.72);
  font-size: 17px;
  line-height: 1.35;
  text-align: center;
}

.alliance-logo-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 10px 0 4px;
}

.alliance-logo-marquee::before,
.alliance-logo-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: min(11vw, 150px);
  pointer-events: none;
}

.alliance-logo-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--sg-paper), rgb(238 238 238 / 0));
}

.alliance-logo-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--sg-paper), rgb(238 238 238 / 0));
}

.alliance-logo-track {
  display: flex;
  width: max-content;
  animation: alliance-logo-loop 42s linear infinite;
}

.alliance-logo-set {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-right: 18px;
}

.alliance-logo-set figure {
  display: flex;
  width: 232px;
  height: 118px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(var(--sg-bg-rgb) / 0.12);
  border-radius: var(--sg-radius);
  margin: 0;
  background: #f7f7f7;
  padding: 22px 24px;
}

.alliance-logo-set img {
  width: 100%;
  max-width: 178px;
  max-height: 70px;
  height: auto;
  object-fit: contain;
}

@keyframes alliance-logo-loop {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.faq__grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.82fr);
  gap: 48px;
  align-items: start;
}

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

details {
  border: 1px solid rgb(var(--sg-bg-rgb) / 0.12);
  border-radius: var(--sg-radius-sm);
  background: var(--sg-paper);
  color: var(--sg-bg);
  padding: 0 20px;
}

summary {
  cursor: pointer;
  padding: 19px 0;
  color: var(--sg-bg);
  font-weight: 700;
}

summary::marker {
  color: var(--sg-accent);
}

details p {
  margin: 0;
  padding: 0 0 20px;
  color: rgb(var(--sg-bg-rgb) / 0.68);
}

.final-cta {
  border-top: 1px solid rgb(var(--sg-accent-rgb) / 0.52);
  padding: 78px 0;
  background:
    linear-gradient(135deg, rgb(var(--sg-accent-rgb) / 0.95), rgb(var(--sg-accent-rgb) / 0.72)),
    var(--sg-accent);
  color: var(--sg-bg);
}

.final-cta__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.final-cta h2 {
  color: var(--sg-bg);
}

.final-cta p {
  margin: 16px auto 0;
  color: rgb(var(--sg-bg-rgb) / 0.72);
  font-size: 19px;
}

.final-cta .hero__ctas {
  justify-content: center;
}

.final-cta .btn--accent {
  border-color: var(--sg-bg);
  background: var(--sg-bg);
  color: var(--sg-fg);
}

.final-cta .btn--ghost {
  border-color: rgb(var(--sg-bg-rgb) / 0.24);
  background: rgb(255 255 255 / 0.25);
  color: var(--sg-bg);
}

.demo-section {
  scroll-margin-top: 92px;
  border-top: 1px solid var(--sg-border);
  background:
    linear-gradient(90deg, rgb(var(--sg-accent-rgb) / 0.08), transparent 38%),
    rgb(255 255 255 / 0.025);
}

.demo-section__inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.86fr);
  gap: 36px;
  align-items: start;
}

.demo-section .section-head {
  margin-bottom: 0;
}

.demo-calendar {
  min-width: 0;
  min-height: 780px;
  border: 1px solid var(--sg-border);
  border-radius: var(--sg-radius);
  background: #ffffff;
  overflow: visible;
  box-shadow: var(--sg-shadow);
}

.demo-calendar iframe {
  display: block;
  width: 100%;
  height: 780px;
  min-height: 780px;
  border: 0;
  border-radius: var(--sg-radius);
  background: #ffffff;
  overflow: hidden;
  touch-action: pan-y;
}

.demo-calendar iframe,
.demo-calendar .ep-iFrame,
.demo-calendar .ep-wrapper,
.demo-calendar .ep-iFrameContainer {
  display: block !important;
  width: 100% !important;
  min-height: 780px !important;
}

.demo-calendar iframe,
.demo-calendar .ep-iFrame {
  left: 0 !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  position: relative !important;
  visibility: visible !important;
}

.demo-calendar .ep-iFrameContainer {
  background: #ffffff !important;
  border-radius: var(--sg-radius) !important;
  left: auto !important;
  opacity: 1 !important;
  overflow: visible !important;
  pointer-events: auto !important;
  position: relative !important;
  visibility: visible !important;
}

.demo-fallback {
  border-top: 1px solid rgb(var(--sg-bg-rgb) / 0.10);
  padding: 14px 16px 16px;
  background: #ffffff;
  color: var(--sg-bg);
  font-size: 14px;
  line-height: 1.35;
}

.demo-fallback a {
  color: #036cff;
  font-weight: 700;
  text-decoration: underline;
}

.site-footer {
  border-top: 1px solid var(--sg-border);
  padding: 54px 0 24px;
  background: rgb(0 0 0 / 0.12);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.4fr) repeat(3, minmax(160px, 1fr));
  gap: 28px;
}

.site-footer p,
.site-footer a {
  color: rgb(255 255 255 / 0.68);
}

.site-footer a:hover {
  color: var(--sg-accent);
}

.site-footer__title {
  margin: 0 0 14px;
  color: var(--sg-fg);
  font-size: 16px;
  font-weight: 700;
}

.site-footer .site-logo {
  width: 188px;
}

.site-footer ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--sg-border);
  margin-top: 38px;
  padding-top: 22px;
  color: rgb(255 255 255 / 0.55);
  font-size: 14px;
}

@media (max-width: 1020px) {
  .hero__inner,
  .two-col,
  .faq__grid,
  .demo-section__inner {
    grid-template-columns: 1fr;
  }

  .metrics-band,
  .partner-grid,
  .benefits,
  .trust-list,
  .ecosystem-feature-grid,
  .value-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ecosystem-feature-card--primary,
  .ecosystem-feature-grid--wide .ecosystem-feature-card--primary {
    grid-column: 1 / -1;
  }

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

@media (max-width: 768px) {
  .container {
    width: min(100% - 32px, 1280px);
  }

  .site-header__inner {
    min-height: auto;
    padding: 16px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-logo {
    width: 158px;
  }

  .site-actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .site-nav-link,
  .site-actions .site-cta {
    flex: 1;
    min-width: 116px;
    width: auto;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    padding: 48px 0 64px;
  }

  .hero__inner,
  .two-col,
  .faq__grid,
  .demo-section__inner {
    gap: 28px;
  }

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

  .hero__media {
    aspect-ratio: 16 / 11;
  }

  .hero__media--hub {
    aspect-ratio: 16 / 12;
  }

  .hero__lede {
    font-size: 18px;
  }

  .hero__ctas,
  .btn {
    width: 100%;
  }

  .metrics-band,
  .partner-grid,
  .benefits,
  .steps,
  .trust-list,
  .ecosystem-feature-grid,
  .value-summary,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .ecosystem-feature-card--primary,
  .ecosystem-feature-grid--wide .ecosystem-feature-card--primary {
    grid-column: auto;
  }

  .alliance-benefits-header h2 {
    font-size: 25px;
  }

  .alliance-benefits-header p {
    font-size: 14px;
  }

  .alliance-logo-marquee {
    padding-top: 6px;
  }

  .alliance-logo-marquee::before,
  .alliance-logo-marquee::after {
    width: 46px;
  }

  .alliance-logo-track {
    animation-duration: 34s;
  }

  .alliance-logo-set {
    gap: 12px;
    padding-right: 12px;
  }

  .alliance-logo-set figure {
    width: 172px;
    height: 92px;
    border-radius: 14px;
    padding: 18px;
  }

  .alliance-logo-set img {
    max-width: 132px;
    max-height: 54px;
  }

  .partner-card {
    min-height: auto;
    padding-bottom: 72px;
  }

  .section {
    padding: 58px 0;
  }

  .section-head h2,
  .faq__grid h2,
  .final-cta h2 {
    font-size: 32px;
  }

  .commercial-card th,
  .commercial-card td {
    display: block;
    width: 100%;
  }

  .commercial-card th {
    padding-bottom: 2px;
  }

  .commercial-card td {
    padding-top: 0;
  }

  .commission-table th:first-child,
  .commission-table td:first-child {
    position: sticky;
    left: 0;
    background: var(--sg-paper);
  }

  .demo-calendar,
  .demo-calendar iframe {
    min-height: 940px;
  }

  .demo-calendar iframe {
    height: 940px;
  }

  .demo-calendar iframe,
  .demo-calendar .ep-iFrame,
  .demo-calendar .ep-wrapper,
  .demo-calendar .ep-iFrameContainer {
    min-height: 940px !important;
  }

  .site-footer__bottom {
    flex-direction: column;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .alliance-logo-track {
    animation: none;
    transform: none;
  }

  .alliance-logo-marquee {
    overflow-x: auto;
  }

  .alliance-logo-set[aria-hidden="true"] {
    display: none;
  }
}
