/**
 * PaidYET marketing site — main stylesheet
 * Layout: Bootstrap-style breakpoints + grid (container / row / col-*).
 */

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

:root {
  /* Bootstrap 5–aligned breakpoints (use in @media only; values in px) */
  --bs-breakpoint-sm: 576px;
  --bs-breakpoint-md: 768px;
  --bs-breakpoint-lg: 992px;
  --bs-breakpoint-xl: 1200px;
  --bs-breakpoint-xxl: 1400px;

  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  /* Fluid horizontal padding for nav, sections, hero */
  --page-gutter: clamp(1rem, 4vw, 3rem);

  --teal: #40c4ff;
  --teal-mid: #9FE1CB;
  --teal-light: rgba(64, 196, 255, 0.12);
  --teal-border: rgba(64, 196, 255, 0.28);
  --teal-dark: #085041;
  --teal-hover: #6DD0FD;
  --amber: #EF9F27;
  --amber-light: rgba(239, 159, 39, 0.1);
  --amber-border: rgba(239, 159, 39, 0.22);
  --amber-dim: #BA7517;
  --blue: #378ADD;
  --blue-light: rgba(55, 138, 221, 0.1);
  --blue-border: rgba(55, 138, 221, 0.22);
  --coral: #D85A30;
  --coral-light: rgba(216, 90, 48, 0.1);
  --coral-border: rgba(216, 90, 48, 0.22);
  --purple: #7F77DD;
  --purple-light: rgba(127, 119, 221, 0.1);
  --purple-border: rgba(127, 119, 221, 0.22);
  --slate: #1A1A18;
  --slate-mid: #222220;
  --slate-soft: #3D3D3A;
  --slate-card: #2A2A28;
  --slate-lift: #323230;
  --slate-muted: #888780;
  --slate-subtle: #5F5E5A;
  --slate-line: rgba(255, 255, 255, 0.07);
  --line: rgba(255, 255, 255, 0.1);
  --line-md: rgba(255, 255, 255, 0.11);
  --muted: rgba(248, 246, 240, 0.42);
  --subtle: rgba(248, 246, 240, 0.18);
  --cream: #F8F6F0;
  --white: #FFFFFF;
  --font: 'DM Sans', sans-serif;
  --mono: 'DM Mono', monospace;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--slate);
  color: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* —— Bootstrap-style grid —— */
.container,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
  --bs-gutter-x: 1.5rem;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}
.container { max-width: 100%; }
@media (min-width: 576px) {
  .container-sm, .container { max-width: 540px; }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container { max-width: 720px; }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container { max-width: 960px; }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container { max-width: 1140px; }
}
@media (min-width: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container { max-width: 1320px; }
}

.container-fluid {
  --bs-gutter-x: 1.5rem;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.col { flex: 1 0 0; }
.col-auto { flex: 0 0 auto; width: auto; }
.col-12 { flex: 0 0 auto; width: 100%; }
.col-11 { flex: 0 0 auto; width: 91.66666667%; }
.col-10 { flex: 0 0 auto; width: 83.33333333%; }
.col-9 { flex: 0 0 auto; width: 75%; }
.col-8 { flex: 0 0 auto; width: 66.66666667%; }
.col-7 { flex: 0 0 auto; width: 58.33333333%; }
.col-6 { flex: 0 0 auto; width: 50%; }
.col-5 { flex: 0 0 auto; width: 41.66666667%; }
.col-4 { flex: 0 0 auto; width: 33.33333333%; }
.col-3 { flex: 0 0 auto; width: 25%; }
.col-2 { flex: 0 0 auto; width: 16.66666667%; }
.col-1 { flex: 0 0 auto; width: 8.33333333%; }

@media (min-width: 576px) {
  .col-sm-12 { flex: 0 0 auto; width: 100%; }
  .col-sm-6 { flex: 0 0 auto; width: 50%; }
  .col-sm-4 { flex: 0 0 auto; width: 33.33333333%; }
  .col-sm-3 { flex: 0 0 auto; width: 25%; }
}
@media (min-width: 768px) {
  .col-md-12 { flex: 0 0 auto; width: 100%; }
  .col-md-8 { flex: 0 0 auto; width: 66.66666667%; }
  .col-md-6 { flex: 0 0 auto; width: 50%; }
  .col-md-4 { flex: 0 0 auto; width: 33.33333333%; }
  .col-md-3 { flex: 0 0 auto; width: 25%; }
}
@media (min-width: 992px) {
  .col-lg-12 { flex: 0 0 auto; width: 100%; }
  .col-lg-8 { flex: 0 0 auto; width: 66.66666667%; }
  .col-lg-6 { flex: 0 0 auto; width: 50%; }
  .col-lg-4 { flex: 0 0 auto; width: 33.33333333%; }
  .col-lg-3 { flex: 0 0 auto; width: 25%; }
}

/* Display helpers (mobile-first) */
.d-none { display: none !important; }
.d-block { display: block !important; }
.d-flex { display: flex !important; }
@media (min-width: 768px) {
  .d-md-none { display: none !important; }
  .d-md-block { display: block !important; }
  .d-md-flex { display: flex !important; }
}
@media (min-width: 992px) {
  .d-lg-none { display: none !important; }
  .d-lg-flex { display: flex !important; }
}

/* NAV (shared — all pages use partials/nav.html) */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; flex-wrap: nowrap; align-items: center; justify-content: space-between;
  gap: clamp(6px, 1.5vw, 20px);
  padding: 0 var(--page-gutter); min-height: 64px;
  background: rgba(26,26,24,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 0.5px solid var(--line);
}
.nav-logo {
  display: flex; align-items: center; gap: clamp(6px, 1vw, 10px);
  flex-shrink: 1;
  min-width: 0;
  font-size: clamp(14px, 1.6vw + 0.65rem, 17px); font-weight: 500; color: var(--white); text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-logo img {
  max-width: min(130px, 26vw);
  width: auto;
  height: auto;
}
.nav-logo-mark {
  width: 28px; height: 28px; border-radius: 7px;
  background: var(--teal);
  display: flex; align-items: center; justify-content: center;
}
.nav-logo-mark svg { width: 14px; height: 14px; }
.nav-badge {
  font-size: 11px; font-weight: 500; letter-spacing: 0.06em;
  color: var(--teal); background: rgba(64,196,255,0.15);
  border: 0.5px solid rgba(64,196,255,0.3);
  padding: 4px 10px; border-radius: 20px;
  text-transform: uppercase;
}
.nav-links {
  display: flex; flex-wrap: nowrap; align-items: center; justify-content: center;
  gap: clamp(6px, 1.6vw, 32px);
  list-style: none;
  min-width: 0;
  flex: 1 1 auto;
}
.nav-links li { flex-shrink: 0; }
.nav-links a {
  font-size: clamp(10px, 1.15vw + 0.45rem, 14px);
  white-space: nowrap;
  color: rgba(248, 246, 240, 0.65);
  text-decoration: none; transition: color 0.15s;
}
.nav-links a:hover { color: var(--cream); }
.nav-links a.active {
  color: var(--white);
  font-weight: 500;
}
.nav-links a.active:hover { color: var(--white); cursor: default; }
.nav-actions {
  display: flex; flex-shrink: 0; gap: clamp(6px, 1.2vw, 12px); align-items: center;
}
nav .btn-ghost {
  font-size: clamp(12px, 0.85vw + 0.45rem, 13px);
}
nav .btn-primary {
  font-size: clamp(12px, 0.85vw + 0.45rem, 13px);
  padding: clamp(10px, 1vw, 8px) clamp(8px, 1.5vw, 18px);
}
.btn-ghost {
  font-family: var(--font); font-size: 13px; font-weight: 500;
  color: rgba(248,246,240,0.65); background: none; border: none;
  cursor: pointer; padding: 6px 0; text-decoration: none;
  transition: color 0.15s;
}
.btn-ghost:hover { color: var(--cream); }
.btn-primary {
  font-family: var(--font); font-size: 13px; font-weight: 500;
  color: var(--slate); background: var(--teal);
  border: none; border-radius: 8px; cursor: pointer;
  padding: 8px 18px; text-decoration: none;
  transition: background 0.15s, transform 0.1s;
}
.btn-primary:hover { background: var(--teal-hover); transform: translateY(-1px); }

/* HERO */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 120px var(--page-gutter) 80px;
  position: relative; overflow: hidden;
}
.hero-stacked {
  padding: 130px var(--page-gutter) 64px;
  text-align: center;
  position: relative;
}
/* Stacked marketing heroes need .hero for responsive padding/min-height; override row flex */
.hero.hero-stacked {
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: auto;
}
.hero--compact { min-height: 72vh; }
.hero-grid {
  position: absolute; inset: 0; opacity: 0.03;
  background-image:
    linear-gradient(rgba(64,196,255,1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(64,196,255,1) 1px, transparent 1px);
  background-size: 64px 64px;
}
.glow-tl { position: absolute; top: -100px; left: -80px; width: 600px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(64,196,255,0.09) 0%, transparent 65%); pointer-events: none; }
.glow-br { position: absolute; bottom: -80px; right: 0; width: 500px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(239,159,39,0.06) 0%, transparent 65%); pointer-events: none; }
.hero-glow {
  position: absolute; top: -200px; right: -100px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(64,196,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute; bottom: -100px; left: 10%;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,151,0,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative; max-width: 1140px; margin: 0 auto; width: 100%;
}
.hero-inner--split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
/* Any split hero column (incl. company page: div + .hero-values) */
.hero-inner--split > * {
  min-width: 0;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 22px;
}
.hero-eyebrow-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--teal); }
.hero-h1 {
  font-size: clamp(44px, 5.5vw, 65px); font-weight: 300;
  line-height: 1.06; letter-spacing: -0.035em;
  color: var(--white); margin-bottom: 24px; max-width: 760px;
}
.hero-h1 em { font-style: italic; color: var(--teal); font-weight: 300; }
.hero-h1 .accent { color: var(--amber); font-style: normal; }
.hero-sub {
  font-size: 17px; font-weight: 300; line-height: 1.7;
  color: rgba(248,246,240,0.6); max-width: 540px; margin-bottom: 40px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-inner > .hero-ctas { margin-bottom: 64px; }
.hero-left .hero-ctas { margin-bottom: 44px; }
.btn-lg {
  font-family: var(--font); font-size: 15px; font-weight: 500;
  color: var(--slate); background: var(--teal);
  border: none; border-radius: 10px; cursor: pointer;
  padding: 14px 28px; text-decoration: none;
  transition: background 0.15s, transform 0.1s;
  display: inline-block;
}
.btn-lg:hover { background: var(--teal-hover); transform: translateY(-1px); }
.btn-lg-outline {
  font-family: var(--font); font-size: 15px; font-weight: 400;
  color: rgba(248,246,240,0.7); background: none;
  border: 0.5px solid var(--subtle); border-radius: 10px; cursor: pointer;
  padding: 14px 28px; text-decoration: none;
  transition: border-color 0.15s, color 0.15s;
  display: inline-block;
}
.btn-lg-outline:hover { border-color: var(--line-md); color: var(--cream); }
.btn-outline {
  font-family: var(--font); font-size: 14px; font-weight: 400;
  color: rgba(248,246,240,0.7); background: none;
  border: 0.5px solid var(--subtle); border-radius: 10px; cursor: pointer;
  padding: 13px 26px; text-decoration: none;
  transition: border-color 0.15s, color 0.15s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--line-md); color: var(--cream); }
.btn-lg-ghost {
  font-family: var(--font); font-size: 15px; font-weight: 400;
  color: rgba(248,246,240,0.7); background: none;
  border: 1px solid rgba(248,246,240,0.4); border-radius: 10px; cursor: pointer;
  padding: 14px 28px; text-decoration: none;
  transition: border-color 0.15s, color 0.15s;
  display: inline-block;
}
.btn-lg-ghost:hover { border-color: rgba(248,246,240,0.4); color: var(--cream); }
.hero-trust {
  margin-top: 48px; display: flex; gap: 24px; align-items: center;
  flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 12px; color: rgba(248,246,240,0.6); letter-spacing: 0.02em;
}
.trust-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--teal); opacity: 0.6; }
.hero-pillars.hero-pillars--3 { grid-template-columns: repeat(3, 1fr); }
.hero-inner--split .hero-trust { margin-top: 16px; }

/* Platform — multi-tool hero visual (hv-*) */
.hv-master {
  background: var(--slate-card);
  border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 52px 100px rgba(0,0,0,0.5);
  animation: floatMain 7s ease-in-out infinite;
}
.hv-topbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.hv-title { font-size: 12px; font-weight: 500; color: rgba(248,246,240,0.45); }
.hv-live { display: flex; align-items: center; gap: 6px; font-size: 11px; color: var(--teal); font-family: var(--mono); }
.hv-tabs { display: flex; gap: 4px; margin-bottom: 18px; flex-wrap: wrap; }
.hv-tab {
  font-size: 10px; font-family: var(--mono); padding: 5px 10px; border-radius: 6px;
  border: 0.5px solid var(--line); color: rgba(248,246,240,0.3); white-space: nowrap;
}
.hv-tab.on { color: var(--teal); border-color: var(--teal-border); background: var(--teal-light); }
.hv-tab.on-a { color: var(--amber); border-color: var(--amber-border); background: var(--amber-light); }
.hv-tab.on-b { color: var(--blue); border-color: var(--blue-border); background: var(--blue-light); }
.hv-metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; margin-bottom: 16px; }
.hv-metric { background: rgba(255,255,255,0.04); border-radius: 9px; padding: 12px 10px; }
.hvm-label { font-size: 9px; color: rgba(248,246,240,0.28); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 5px; }
.hvm-val { font-size: 18px; font-weight: 500; color: var(--white); letter-spacing: -0.02em; }
.hvm-chg { font-size: 10px; margin-top: 2px; }
.hvm-chg.am { color: var(--amber); }
.hv-body { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px; }
.hv-stack { display: flex; flex-direction: column; gap: 8px; }
.hv-chart-wrap { background: rgba(255,255,255,0.02); border: 0.5px solid var(--line); border-radius: 11px; padding: 14px; }
.hvc-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.hvc-label { font-size: 10px; color: rgba(248,246,240,0.28); font-family: var(--mono); }
.hvc-legend { display: flex; gap: 10px; }
.leg { display: flex; align-items: center; gap: 4px; font-size: 9px; color: rgba(248,246,240,0.28); }
.leg-dot { width: 5px; height: 5px; border-radius: 50%; }
.hv-chart-wrap .bars { display: flex; align-items: flex-end; gap: 4px; height: 60px; margin-bottom: 10px; }
.hv-chart-wrap .b { flex: 1; border-radius: 2px 2px 0 0; }
.hv-chart-wrap .b-t { background: rgba(64,196,255,0.3); }
.hv-chart-wrap .b-t.hi { background: var(--teal); }
.hv-chart-wrap .b-a { background: rgba(239,159,39,0.25); }
.hv-chart-wrap .b-a.hi { background: var(--amber); }
.hv-gw { background: rgba(255,255,255,0.02); border: 0.5px solid var(--line); border-radius: 11px; padding: 14px; }
.gw-title { font-size: 10px; color: rgba(248,246,240,0.28); font-family: var(--mono); margin-bottom: 10px; }
.gw-row { display: flex; align-items: center; gap: 8px; margin-bottom: 7px; }
.gw-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.gw-name { font-size: 11px; color: rgba(248,246,240,0.5); flex: 1; }
.gw-pct { font-size: 10px; font-family: var(--mono); color: var(--cream); }
.gw-bar-wrap { height: 3px; background: rgba(255,255,255,0.07); border-radius: 2px; margin-top: 3px; }
.gw-bar-fill { height: 3px; border-radius: 2px; }
.hv-tools { display: flex; flex-direction: column; gap: 7px; }
.tool-card {
  background: rgba(255,255,255,0.03); border: 0.5px solid var(--line); border-radius: 10px;
  padding: 11px 13px; display: flex; align-items: center; gap: 11px; transition: border-color 0.2s;
}
.tool-card:hover { border-color: var(--line-md); }
.tool-icon { width: 30px; height: 30px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.tool-icon svg { width: 13px; height: 13px; fill: none; stroke-width: 1.5; }
.ti-teal { background: var(--teal-light); border: 0.5px solid var(--teal-border); }
.ti-teal svg { stroke: var(--teal); }
.ti-amber { background: var(--amber-light); border: 0.5px solid var(--amber-border); }
.ti-amber svg { stroke: var(--amber); }
.ti-blue { background: var(--blue-light); border: 0.5px solid var(--blue-border); }
.ti-blue svg { stroke: var(--blue); }
.ti-coral { background: var(--coral-light); border: 0.5px solid var(--coral-border); }
.ti-coral svg { stroke: var(--coral); }
.tool-info { flex: 1; }
.tool-name { font-size: 11px; font-weight: 500; color: var(--white); margin-bottom: 1px; }
.tool-status { font-size: 10px; color: rgba(248,246,240,0.35); font-family: var(--mono); }
.tool-val { font-size: 12px; font-weight: 500; font-family: var(--mono); }
.hv-payouts { background: rgba(255,255,255,0.02); border: 0.5px solid var(--line); border-radius: 10px; padding: 12px 14px; }
.payout-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.payout-label { font-size: 10px; color: rgba(248,246,240,0.28); font-family: var(--mono); }
.payout-live { font-size: 10px; color: var(--teal); font-family: var(--mono); }
.payout-rows { display: flex; flex-direction: column; gap: 6px; }
.payout-row { display: flex; align-items: center; gap: 10px; }
.payout-avatar { width: 24px; height: 24px; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 9px; font-weight: 500; font-family: var(--mono); flex-shrink: 0; }
.pa-t { background: rgba(64,196,255,0.15); color: var(--teal); }
.pa-a { background: rgba(239,159,39,0.15); color: var(--amber); }
.pa-b { background: rgba(55,138,221,0.15); color: var(--blue); }
.payout-merchant { font-size: 11px; color: rgba(248,246,240,0.6); flex: 1; }
.payout-time { font-size: 10px; color: rgba(248,246,240,0.25); font-family: var(--mono); }
.payout-amount { font-size: 12px; font-weight: 500; color: var(--white); font-family: var(--mono); }
.payout-badge { font-size: 9px; font-family: var(--mono); padding: 2px 6px; border-radius: 8px; }
.pb-ok { background: var(--teal-light); color: var(--teal); }
.pb-sch { background: var(--amber-light); color: var(--amber); }
.float-a {
  position: absolute; top: -26px; left: -36px;
  background: var(--slate-card); border: 0.5px solid rgba(239,159,39,0.3);
  border-radius: 14px; padding: 13px 17px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.4);
  animation: floatA 5.5s ease-in-out infinite; z-index: 2;
}
@keyframes floatA { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.float-b {
  position: absolute; bottom: -22px; right: -30px;
  background: var(--slate-card); border: 0.5px solid rgba(55,138,221,0.3);
  border-radius: 14px; padding: 13px 17px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.4);
  animation: floatB 6s ease-in-out infinite; z-index: 2;
}
@keyframes floatB { 0%,100%{transform:translateY(0)} 50%{transform:translateY(7px)} }
.float-c {
  position: absolute; top: 42%; right: -38px;
  background: var(--slate-card); border: 0.5px solid var(--teal-border);
  border-radius: 12px; padding: 11px 15px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  animation: floatC 8s ease-in-out infinite; z-index: 2; min-width: 140px;
}
@keyframes floatC { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }
.fa-label { font-size: 9px; color: rgba(248,246,240,0.3); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 4px; }
.fa-val { font-size: 20px; font-weight: 500; letter-spacing: -0.02em; }
.fa-sub { font-size: 10px; margin-top: 3px; }
.sec-pill { display: flex; align-items: center; gap: 8px; }
.sec-icon-wrap { width: 28px; height: 28px; border-radius: 7px; background: var(--teal-light); border: 0.5px solid var(--teal-border); display: flex; align-items: center; justify-content: center; }
.sec-icon-wrap svg { width: 12px; height: 12px; stroke: var(--teal); fill: none; stroke-width: 1.5; }
.sec-text { font-size: 11px; font-weight: 500; color: var(--white); }
.sec-sub { font-size: 10px; color: rgba(248,246,240,0.42); font-family: var(--mono); margin-top: 1px; }

/* HERO DASHBOARD CARD */
.hero-visual { position: relative; }
.dashboard-card {
  background: var(--slate-mid);
  border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 24px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
  animation: floatCard 6s ease-in-out infinite;
}
@keyframes floatCard { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.dash-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px;
}
.dash-title { font-size: 13px; font-weight: 500; color: rgba(248,246,240,0.6); }
.dash-live {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; color: var(--teal);
  font-family: var(--mono);
}
.live-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--teal);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }
.dash-metric-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; margin-bottom: 20px; }
.dash-metric { background: rgba(255,255,255,0.04); border-radius: 10px; padding: 14px; }
.dm-label { font-size: 10px; color: rgba(248,246,240,0.35); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 6px; }
.dm-value { font-size: 22px; font-weight: 500; color: var(--white); letter-spacing: -0.02em; }
.dm-change { font-size: 11px; margin-top: 3px; }
.up { color: var(--teal); }
.dash-chart { height: 80px; display: flex; align-items: flex-end; gap: 4px; margin-bottom: 20px; }
.bar {
  flex: 1; border-radius: 4px 4px 0 0;
  background: #40c4ff63;
  transition: background 0.2s;
  cursor: pointer;
}
.bar:hover { background: #40c4ffba; }
.bar.highlight { background: var(--teal); }

/* Chart bar heights (decorative mock data) */
.dash-chart .bar:nth-child(1) { height: 35%; }
.dash-chart .bar:nth-child(2) { height: 48%; }
.dash-chart .bar:nth-child(3) { height: 42%; }
.dash-chart .bar:nth-child(4) { height: 60%; }
.dash-chart .bar:nth-child(5) { height: 55%; }
.dash-chart .bar:nth-child(6) { height: 70%; }
.dash-chart .bar:nth-child(7) { height: 65%; }
.dash-chart .bar:nth-child(8) { height: 88%; }
.dash-chart .bar:nth-child(9) { height: 75%; }
.dash-chart .bar:nth-child(10) { height: 80%; }
.dash-chart .bar:nth-child(11) { height: 72%; }
.dash-chart .bar:nth-child(12) { height: 95%; }

.dash-txn { display: flex; flex-direction: column; gap: 8px; }
.txn-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 10px; border-radius: 8px;
  background: rgba(255,255,255,0.03);
}
.txn-left { display: flex; align-items: center; gap: 10px; }
.txn-icon {
  width: 28px; height: 28px; border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
}
.txn-icon.t { background: rgba(64,196,255,0.15); color: var(--teal); font-family: var(--mono); font-weight:500; }
.txn-icon.s { background: rgba(239,159,39,0.15); color: var(--amber); font-family: var(--mono); font-weight:500; }
.txn-name { font-size: 12px; color: rgba(248,246,240,0.7); }
.txn-sub { font-size: 10px; color: rgba(248,246,240,0.3); margin-top: 1px; font-family: var(--mono); }
.txn-amount { font-size: 13px; font-weight: 500; color: var(--white); font-family: var(--mono); }

/* FLOATING BADGE */
.float-badge {
  position: absolute; top: -20px; right: -20px;
  background: var(--slate-mid);
  border: 0.5px solid rgba(239,159,39,0.3);
  border-radius: 12px; padding: 12px 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  animation: floatBadge 5s ease-in-out infinite;
}
@keyframes floatBadge { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }
.fb-label { font-size: 10px; color: rgba(248,246,240,0.4); text-transform: uppercase; letter-spacing: 0.07em; }
.fb-value { font-size: 18px; font-weight: 500; color: var(--amber); margin-top: 2px; }

/* LOGOS */
.logos-bar {
  background: var(--slate-mid); border-top: 0.5px solid var(--line); border-bottom: 0.5px solid var(--line); padding: 48px 80px; 
}
.logos-label {
  font-size: 11px; text-align: center; color: rgba(248,246,240,0.6);
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 28px;
}
.logos-row {
  display: flex; justify-content: center; align-items: center;
  gap: 48px; flex-wrap: wrap;
}
.logo-pill {
  font-size: 14px; font-weight: 500; color: rgba(248,246,240,0.6);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.logo-pill:hover { color: rgba(248,246,240,0.6); }

/* SECTIONS */
section { padding: 96px var(--page-gutter); }
.section-inner { max-width: 1140px; margin: 0 auto; }
.section-eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 14px;
}
.section-h2 {
  font-size: clamp(30px, 3.5vw, 46px); font-weight: 300;
  letter-spacing: -0.025em; line-height: 1.12; color: var(--white);
  margin-bottom: 14px;
}
.section-h2 em { font-style: italic; color: var(--teal); }
.section-sub {
  font-size: 17px; font-weight: 300; color: rgba(248,246,240,0.6);
  line-height: 1.65; max-width: 520px; margin-bottom: 52px;
}

/* Modifiers — stack sections without double padding where needed */
.section--tight-top { padding-top: 0; }
.section--mid { background: var(--slate-mid); }

/* Home — intro tiles (post-hero) */
.home-intro-section { padding-top: 72px; padding-bottom: 88px; }
.home-intro-section .section-sub.home-intro-sub { max-width: 640px; margin-bottom: 40px; }
.home-intro-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: stretch;
}
.home-intro-tile {
  background: var(--slate-mid);
  border: 0.5px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 32px 28px;
  transition: border-color 0.2s, transform 0.15s;
}
.home-intro-tile:hover {
  border-color: rgba(64, 196, 255, 0.28);
  transform: translateY(-2px);
}
.home-intro-tile-title {
  font-size: clamp(20px, 2.2vw, 24px);
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 12px;
}
.home-intro-tagline {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}
.home-intro-tagline-sep { color: var(--subtle); margin: 0 0.35em; font-weight: 400; }
.home-intro-tile-lead {
  font-size: 15px;
  font-weight: 300;
  color: rgba(248, 246, 240, 0.55);
  line-height: 1.65;
}
.home-intro-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.home-intro-list li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
}
.home-intro-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 3px rgba(64, 196, 255, 0.15);
}
.home-intro-list li em { font-style: normal; color: var(--cream); font-weight: 500; }

/* Home — intro variant B (stacked rows + channel strip) */
.home-intro-b-section { padding-top: 80px; padding-bottom: 88px; border-top: 0.5px solid var(--line); }
.home-intro-b-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 36px;
}
.home-intro-b-header .section-h2 { margin-left: auto; margin-right: auto; }
.home-intro-b-sub {
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}
.home-intro-b-channels {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 24px;
  margin-bottom: 36px;
}
.home-intro-b-channel-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.home-intro-b-channel-group--pay {
  border-left: 0.5px solid var(--line);
  padding-left: 24px;
  margin-left: 4px;
}
.home-intro-b-channel {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  border: 0.5px solid var(--line);
  color: rgba(248, 246, 240, 0.62);
  background: rgba(255, 255, 255, 0.04);
}
.home-intro-b-channel--accent {
  border-color: var(--teal-border);
  color: var(--teal);
  background: var(--teal-light);
}
.home-intro-b-channel-note {
  text-align: center;
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.65;
}
.home-intro-b-rows {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 16px 20px;
  align-items: stretch;
  max-width: 980px;
  margin: 0 auto;
}
.home-intro-b-or {
  align-self: center;
  font-family: var(--mono);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #ffffff;
  line-height: 1;
  user-select: none;
  padding: 0 6px;
}
.home-intro-b-row {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 8px 28px;
  padding: 28px 32px;
  align-items: center;
  border: 0.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: var(--slate-card);
}
.home-intro-b-row + .home-intro-b-row {
  border-top: none;
}
.home-intro-b-icon {
  font-family: var(--mono);
  font-size: 17px;
  font-weight: 500;
  color: var(--teal);
  width: 65px;
  height: 65px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-light);
  border: 0.5px solid var(--teal-border);
}
.home-intro-b-row-title {
  font-size: clamp(18px, 2vw, 21px);
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 2px;
}
.home-intro-b-row-kicker {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}
.home-intro-b-row-text {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
}

/* PRODUCT PILLARS */
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.07); border-radius: 16px; overflow: hidden; }
.pillar-card {
  background: var(--slate-mid); padding: 36px 32px;
  transition: background 0.2s;
  cursor: default;
}
.pillar-card:hover { background: var(--slate-soft); }
.pillar-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(64,196,255,0.12);
  border: 0.5px solid rgba(64,196,255,0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.pillar-icon svg { width: 18px; height: 18px; stroke: var(--teal); fill: none; stroke-width: 1.5; }
.pillar-name { font-size: 16px; font-weight: 500; color: var(--white); margin-bottom: 8px; margin-top: 20px; }
.pillar-desc { font-size: 14px; font-weight: 300; color: rgba(248,246,240,0.6); line-height: 1.65; margin-bottom: 16px; }
.pillar-tag {
  display: inline-block; font-family: var(--mono); font-size: 10px;
  color: var(--teal); background: rgba(64,196,255,0.12);
  border: 0.5px solid rgba(64,196,255,0.2);
  padding: 3px 9px; border-radius: 20px;
}

/* YET FAMILY */
.yet-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.yet-card {
  background: var(--slate-mid);
  border: 0.5px solid rgba(255,255,255,0.07);
  border-radius: 12px; padding: 20px 18px;
  transition: border-color 0.2s, transform 0.15s;
}
.yet-card:hover { border-color: rgba(64,196,255,0.3); transform: translateY(-2px); }
.yet-name { font-size: 14px; font-weight: 500; color: var(--white); margin-bottom: 6px; }
.yet-name span { color: var(--teal); }
.yet-desc { font-size: 12px; color: rgba(248,246,240,0.4); line-height: 1.55; }

/* STATS */
/* .stats-section { background: var(--slate-mid); } */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,0.07); border-radius: 16px; overflow: hidden; }
.stat-cell { background: var(--slate-mid); padding: 40px 32px; }
.stat-number {
  font-size: 48px; font-weight: 300; letter-spacing: -0.04em;
  color: var(--white); line-height: 1;
  margin-bottom: 8px;
}
.stat-number span { color: var(--teal); }
.stat-label { font-size: 14px; color: rgba(248,246,240,0.4); line-height: 1.5; }

/* INTEGRATION */
.integration-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.code-block {
  background: var(--slate-mid); border: 0.5px solid rgba(255,255,255,0.08);
  border-radius: 14px; overflow: hidden;
}
.code-header {
  display: flex; align-items: center; gap: 8px; padding: 14px 20px;
  border-bottom: 0.5px solid rgba(255,255,255,0.06);
}
.code-dot { width: 10px; height: 10px; border-radius: 50%; }
.code-header .code-dot:nth-child(1) { background: #E24B4A; }
.code-header .code-dot:nth-child(2) { background: #EF9F27; }
.code-header .code-dot:nth-child(3) { background: var(--teal); }
.code-title { font-size: 12px; color: rgba(248,246,240,0.3); font-family: var(--mono); margin-left: 4px; }
.code-body { padding: 24px; font-family: var(--mono); font-size: 13px; line-height: 1.8; }
.c-comment { color: rgba(248,246,240,0.2); }
.c-key { color: var(--teal-mid); }
.c-val { color: var(--amber); }
.c-str { color: rgba(248,246,240,0.7); }
.c-fn { color: var(--teal); }
.integration-points { display: flex; flex-direction: column; gap: 20px; }
.int-point { display: flex; gap: 16px; align-items: flex-start; }
.int-num {
  width: 28px; height: 28px; border-radius: 50%;
  border: 0.5px solid rgba(64,196,255,0.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 500; color: var(--teal); flex-shrink: 0;
}
.int-content h4 { font-size: 15px; font-weight: 500; color: var(--white); margin-bottom: 4px; }
.int-content p { font-size: 14px; color: rgba(248,246,240,0.6); line-height: 1.6; }

/* CTA */
.cta-section { text-align: center; padding: 120px var(--page-gutter); position: relative; overflow: hidden; }
.cta-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 600px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(64,196,255,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-h2 {
  font-size: clamp(36px, 5vw, 56px); font-weight: 300;
  letter-spacing: -0.03em; color: var(--white); line-height: 1.1;
  margin-bottom: 20px; position: relative;
}
.cta-h2 em { font-style: italic; color: var(--teal); }
.cta-sub {
  font-size: 17px; font-weight: 300; color: rgba(248,246,240,0.6);
  max-width: 480px; margin: 0 auto 40px; line-height: 1.65; position: relative;
}
.cta-actions { display: flex; gap: 12px; justify-content: center; position: relative; }
.cta-btns { display: flex; gap: 12px; justify-content: center; position: relative; flex-wrap: wrap; }
.cta-section--slate { background: var(--slate-mid); }

.centered {
  margin-left: auto;
  margin-right: auto;
}
/* FOOTER (shared — all pages use partials/footer.html) */
footer {
  border-top: 0.5px solid var(--line);
  padding: var(--page-gutter); display: flex; justify-content: space-between; align-items: center;
}
footer img {
  width: 50px;
}
.footer-left { display: flex; align-items: center; gap: 10px; }
.footer-copy { font-size: 13px; color: rgba(248,246,240,0.6); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 13px; color: rgba(248,246,240,0.6); text-decoration: none; transition: color 0.15s; }
.footer-links a:hover { color: var(--cream); }
.footer-links a.active { color: var(--cream); font-weight: 500; }
.footer-links a.active:hover { color: var(--cream); cursor: default; }

/* ANIMATIONS */
.fade-up {
  opacity: 0; transform: translateY(24px);
  animation: fadeUp 0.7s ease forwards;
}
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.35s; }
.delay-4 { animation-delay: 0.5s; }
.delay-5 { animation-delay: 0.65s; }
.d1 { animation-delay: 0.08s; }
.d2 { animation-delay: 0.18s; }
.d3 { animation-delay: 0.28s; }
.d4 { animation-delay: 0.4s; }
.d5 { animation-delay: 0.52s; }

/* —— Responsive: tablet & down (< lg / 992px) —— */
@media (max-width: 991.98px) {
  .hero-inner--split {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-left { order: 1; }
  .hero-visual { order: 2; }
  .integration-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .yet-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-cell { padding: 32px 24px; }
  .stat-number { font-size: 40px; }
  section { padding: 72px var(--page-gutter); }
  .cta-section { padding: 80px var(--page-gutter); }
  footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .footer-links { flex-wrap: wrap; gap: 16px 20px; }
}

/* Nav: hide badge below lg to keep one row with fluid type */
@media (max-width: 991.98px) {
  .nav-badge { display: none; }
}

/* —— Responsive: mobile landscape & down (< md / 768px) —— */
@media (max-width: 767.98px) {
  nav {
    flex-wrap: wrap;
    row-gap: 12px;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .nav-links {
    order: 3;
    width: 100%;
    flex: none;
    min-width: 0;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px 24px;
    padding-top: 4px;
    border-top: 0.5px solid rgba(255, 255, 255, 0.06);
  }
  .nav-actions { margin-left: auto; }
  .hero {
    min-height: auto;
    padding: 150px var(--page-gutter) 56px;
  }
  .hero-h1 { font-size: clamp(32px, 11vw, 48px); }
  .hero-sub { font-size: 16px; max-width: none; }
  .pillars-grid { grid-template-columns: 1fr; }
  .yet-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  .stats-grid { grid-template-columns: 1fr; }
  .code-body {
    padding: 18px;
    font-size: 12px;
    line-height: 1.75;
    overflow-x: auto;
  }
  .cta-actions,
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .cta-actions .btn-lg,
  .cta-actions .btn-lg-ghost,
  .hero-ctas .btn-lg,
  .hero-ctas .btn-lg-ghost {
    text-align: center;
  }
  .float-badge {
    top: -12px;
    right: 0;
  }
}

/* —— Responsive: small phones (< sm / 576px) —— */
@media (max-width: 575.98px) {
  .logos-row { gap: 20px 28px; }
  .dash-metric-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .dash-chart { height: 64px; gap: 2px; }
  .dashboard-card { padding: 18px; }
  .txn-row { flex-wrap: wrap; gap: 8px; }
  .txn-amount { width: 100%; text-align: right; }
  .pillar-card { padding: 28px 22px; }
  .section-sub { margin-bottom: 40px; }
}
/* ===== Marketing sections (shared class names; no route-specific wrappers) ===== */

/* HERO PILLARS ROW */
.hero-pillars { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1px; background: var(--line); border-radius: 14px; overflow: hidden; }
.hp-cell { padding: 20px 18px; }
.hp-label { font-size: 10px; font-weight: 500; letter-spacing: 0.07em; text-transform: uppercase; color: rgba(248,246,240,0.6); margin-bottom: 8px; }
.hp-val { font-size: 15px; font-weight: 500; color: var(--white); }
.hp-val span { color: var(--teal); }

.divider { border: none; border-top: 0.5px solid var(--line); }

/* PLATFORM OVERVIEW - bento grid */
.bento { display: grid; grid-template-columns: repeat(12, 1fr); grid-template-rows: auto; gap: 10px; }
.bento-cell {
  background: var(--slate-card); border: 0.5px solid var(--line);
  border-radius: 16px; padding: 32px;
  transition: border-color 0.2s;
}
.bento-cell:hover { border-color: var(--line-md); }
.bc-1 { grid-column: span 7; }
.bc-2 { grid-column: span 5; }
.bc-3 { grid-column: span 4; }
.bc-4 { grid-column: span 4; }
.bc-5 { grid-column: span 4; }
.bc-6 { grid-column: span 5; }
.bc-7 { grid-column: span 7; }
.bento-icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.bento-icon svg { width: 18px; height: 18px; fill: none; stroke-width: 1.5; }
.i-teal { background: var(--teal-light); border: 0.5px solid var(--teal-border); }
.i-teal svg { stroke: var(--teal); }
.i-amber { background: var(--amber-light); border: 0.5px solid var(--amber-border); }
.i-amber svg { stroke: var(--amber); }
.i-blue { background: var(--blue-light); border: 0.5px solid var(--blue-border); }
.i-blue svg { stroke: var(--blue); }
.i-coral { background: var(--coral-light); border: 0.5px solid var(--coral-border); }
.i-coral svg { stroke: var(--coral); }
.bento-name { font-size: 18px; font-weight: 500; color: var(--white); margin-bottom: 8px; letter-spacing: -0.01em; }
.bento-desc { font-size: 14px; font-weight: 300; color: rgba(248,246,240,0.6); line-height: 1.65; margin-bottom: 20px; }
.bento-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag { display: inline-block; font-size: 11px; font-family: var(--mono); padding: 3px 9px; border-radius: 20px; }
.tag-teal { background: var(--teal-light); color: var(--teal); border: 0.5px solid var(--teal-border); }
.tag-amber { background: var(--amber-light); color: var(--amber); border: 0.5px solid var(--amber-border); }
.tag-blue { background: var(--blue-light); color: var(--blue); border: 0.5px solid var(--blue-border); }
.tag-coral { background: var(--coral-light); color: var(--coral); border: 0.5px solid var(--coral-border); }
.tag-purple { background: var(--purple-light); color: var(--purple); border: 0.5px solid var(--purple-border); }
.tag-muted { background: rgba(255,255,255,0.05); color: rgba(248,246,240,0.4); border: 0.5px solid var(--line); }

/* large bento visual areas */
.bento-visual { margin-top: 24px; }
.mini-dash { background: rgba(255,255,255,0.03); border: 0.5px solid var(--line); border-radius: 10px; padding: 16px; }
.mini-dash-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.md-label { font-size: 11px; color: rgba(248,246,240,0.35); }
.md-val { font-size: 13px; font-weight: 500; color: var(--white); font-family: var(--mono); }
.md-bar-wrap { height: 4px; background: rgba(255,255,255,0.07); border-radius: 2px; margin-bottom: 8px; }
.md-bar { height: 4px; border-radius: 2px; }
.spark-row { display: flex; align-items: flex-end; gap: 3px; height: 40px; }
.spark-bar { flex: 1; border-radius: 2px 2px 0 0; background: rgba(64,196,255,0.25); }
.spark-bar.hi { background: var(--teal); }
.orch-flow { display: flex; flex-direction: column; gap: 6px; margin-top: 16px; }
.orch-row { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.03); border: 0.5px solid var(--line); border-radius: 8px; padding: 10px 12px; }
.orch-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.orch-name { font-size: 12px; color: rgba(248,246,240,0.55); flex: 1; }
.orch-pct { font-size: 11px; font-family: var(--mono); color: var(--cream); }
.orch-bar { height: 3px; border-radius: 2px; margin-top: 4px; }

/* FEATURE GRID */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border-radius: 16px; overflow: hidden; }
.feat-cell { background: var(--slate-card); padding: 24px 22px; transition: background 0.18s; }
.feat-cell:hover { background: var(--slate-lift); }
.feat-icon-wrap { width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.feat-icon-wrap svg { width: 14px; height: 14px; fill: none; stroke-width: 1.5; }
.feat-name { font-size: 13px; font-weight: 500; color: var(--white); margin-bottom: 4px; }
.feat-desc { font-size: 12px; color: rgba(248,246,240,0.6); line-height: 1.55; }

/* PRODUCT SUITE */
.suite-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.suite-card { background: var(--slate-card); border: 0.5px solid var(--line); border-radius: 16px; padding: 32px; display: flex; gap: 24px; align-items: flex-start; transition: border-color 0.2s, transform 0.15s; }
.suite-card:hover { border-color: var(--line-md); transform: translateY(-2px); }
.suite-num { font-size: 11px; font-family: var(--mono); color: rgba(248,246,240,0.35); padding-top: 2px; min-width: 20px; }
.suite-body { flex: 1; }
.suite-name { font-size: 17px; font-weight: 500; color: var(--white); margin-bottom: 6px; letter-spacing: -0.01em; }
.suite-name span { color: var(--teal); }
.suite-desc { font-size: 14px; color: rgba(248,246,240,0.6); line-height: 1.65; margin-bottom: 14px; }
.suite-features { display: flex; flex-wrap: wrap; gap: 6px; }

/* DEVICES */
.devices-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.device-card { background: var(--slate-card); border: 0.5px solid var(--line); border-radius: 16px; padding: 32px 28px; text-align: center; transition: border-color 0.2s; }
.device-card:hover { border-color: var(--teal-border); }
.device-visual { height: 100px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.device-screen { background: var(--slate-lift); border: 0.5px solid var(--line-md); border-radius: 12px; }
.device-name { font-size: 16px; font-weight: 500; color: var(--white); margin-bottom: 6px; }
.device-desc { font-size: 13px; color: rgba(248,246,240,0.6); line-height: 1.6; margin-bottom: 16px; }
.device-badges { display: flex; gap: 6px; justify-content: center; flex-wrap: wrap; }

/* PARTNERS */
.partner-bar { background: var(--slate-mid); border-top: 0.5px solid var(--line); border-bottom: 0.5px solid var(--line); padding: 48px 80px; }
.partner-bar-inner { max-width: 1140px; margin: 0 auto; }
.partner-label { font-size: 11px; text-align: center; color: rgba(248,246,240,0.6); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 28px; }
.partner-logos { display: flex; justify-content: center; align-items: center; gap: 56px; flex-wrap: wrap; }
.partner-logo { opacity: 0.5; max-width: 50px; height: auto; }
.partner-pill { font-size: 15px; font-weight: 500; color: rgba(248,246,240,0.6); transition: color 0.2s; cursor: default; }
.partner-pill:hover { color: rgba(248,246,240,0.5); }

.partner-label.blue { font-size: 14px; color: var(--teal); font-weight: 500;}

/* TESTIMONIAL */
.testimonial-section { padding: 80px;}
.testimonial-inner { max-width: 1140px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.quote-mark { font-size: 80px; font-weight: 300; color: var(--teal); line-height: 0.6; margin-bottom: 24px; opacity: 0.6; }
.quote-text { font-size: 22px; font-weight: 300; line-height: 1.6; color: var(--white); letter-spacing: -0.01em; margin-bottom: 24px; font-style: italic; }
.quote-attr { font-size: 13px; color: rgba(248,246,240,0.6); }
.outcome-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.outcome-cell { background: var(--slate-card); border: 0.5px solid var(--line); border-radius: 12px; padding: 24px; }
.outcome-val { font-size: 32px; font-weight: 300; letter-spacing: -0.03em; color: var(--white); margin-bottom: 4px; }
.outcome-val span { color: var(--teal); }
.outcome-label { font-size: 13px; color: rgba(248,246,240,0.6); line-height: 1.5; }

  /* ── SIDEBAR LAYOUT — developers ── */
.page-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    min-height: 100vh;
    padding-top: 64px;
  }

  /* ── SIDEBAR ── */
.sidebar {
    position: sticky; top: 64px; height: calc(100vh - 64px);
    overflow-y: auto; overflow-x: hidden;
    border-right: 0.5px solid var(--slate-line);
    padding: 32px 0;
    background: var(--slate-mid);
  }
.sidebar::-webkit-scrollbar { width: 0; }
.sidebar-section { margin-bottom: 28px; }
.sidebar-label {
    font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
    color: rgba(248,246,240,0.25); padding: 0 24px; margin-bottom: 8px;
  }
.sidebar-link {
    display: block; padding: 9px 24px; font-size: 13px; color: var(--slate-muted);
    text-decoration: none; transition: color 0.15s, background 0.15s;
    cursor: pointer; border: none; background: none; width: 100%; text-align: left;
    font-family: var(--font);
  }
.sidebar-link:hover { color: var(--cream); background: rgba(255,255,255,0.03); }
.sidebar-link.active { color: var(--teal); background: rgba(64,196,255,0.08); border-right: 2px solid var(--teal); }
.sidebar-tag {
    display: inline-block; font-size: 9px; font-weight: 500;
    padding: 1px 6px; border-radius: 10px; margin-left: 6px; vertical-align: middle;
    font-family: var(--mono);
  }
.tag-new { background: rgba(64,196,255,0.15); color: var(--teal); }
.tag-beta { background: rgba(239,159,39,0.15); color: var(--amber); }

  /* ── MAIN CONTENT ── */
.main-content { padding: 48px 64px; max-width: 900px; }

/* =============================================================================
   Developer hub (pages/developers.content.html, body.developers-doc-page)
   @scope keeps doc tokens from leaking to nav/footer/legal.
   ============================================================================= */
@scope (.developers-doc-page) {
/* Sidebar CTA (was above PAGE LAYOUT in standalone) */
.btn-ghost-nav { font-family: var(--font); font-size: 13px; color: var(--muted); background: none; border: none; cursor: pointer; text-decoration: none; }
.btn-ghost-nav:hover { color: var(--cream); }
.btn-primary-nav { font-family: var(--font); font-size: 13px; font-weight: 500; color: var(--slate); background: var(--teal); border: none; border-radius: 8px; cursor: pointer; padding: 8px 18px; text-decoration: none; display: inline-block; }
.btn-primary-nav:hover { background: var(--teal-hover); }
.sidebar a.btn-primary-nav {
  display: block; text-align: center; font-size: 15px; font-weight: 600;
  max-width: 100%; box-sizing: border-box; overflow-wrap: anywhere;
}

/* PAGE LAYOUT */
.page-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
  padding-top: 64px;
  min-width: 0;
}

/* SIDEBAR */
.sidebar { position: sticky; top: 64px; height: calc(100vh - 64px); overflow-y: auto; border-right: 0.5px solid var(--line); background: var(--slate-mid); padding: 24px 0; }
.sidebar::-webkit-scrollbar { width: 0; }
.sb-search { margin: 0 16px 20px; position: relative; }
.sb-search input { width: 100%; background: var(--slate-card); border: 0.5px solid var(--line-md); border-radius: 8px; padding: 8px 12px 8px 34px; font-family: var(--font); font-size: 13px; color: var(--cream); outline: none; transition: border-color 0.15s; }
.sb-search input::placeholder { color: rgba(248,246,240,0.25); }
.sb-search input:focus { border-color: var(--teal-border); }
.sb-search svg { position: absolute; left: 10px; top: 50%; transform: translateY(-50%); width: 14px; height: 14px; stroke: rgba(248,246,240,0.25); fill: none; stroke-width: 1.5; }
.sb-section-label { font-size: 10px; font-weight: 500; letter-spacing: 0.09em; text-transform: uppercase; color: rgba(248,246,240,0.25); padding: 0 16px; margin: 16px 0 6px; font-family: var(--mono); }
.sb-link {
  display: flex; align-items: center; gap: 8px; padding: 7px 16px; font-size: 13px; color: var(--muted);
  cursor: pointer; border: none; background: none; width: 100%; max-width: 100%; box-sizing: border-box;
  text-align: left; font-family: var(--font); transition: color 0.15s, background 0.15s; border-right: 2px solid transparent;
  text-decoration: none; overflow-wrap: anywhere;
}
.sb-link:hover { color: var(--cream); background: rgba(255,255,255,0.03); }
.sb-link.active { color: var(--teal); background: rgba(64, 196, 255,0.07); border-right-color: var(--teal); }
.sb-link.sub { padding-left: 28px; font-size: 12px; }
.sb-tag { font-size: 9px; font-family: var(--mono); padding: 1px 6px; border-radius: 8px; margin-left: auto; }
.tag-new { background: var(--teal-light); color: var(--teal); }
.tag-v3 { background: var(--amber-light); color: var(--amber); }
.sb-ver { padding: 0 16px; margin-bottom: 16px; }
.ver-pill { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-family: var(--mono);     color: var(--teal);
    background: var(--teal-light);
    border: 0.5px solid var(--teal-border); padding: 3px 10px; border-radius: 20px; }

/* MAIN */
.main-content { padding: 48px 64px; max-width: 860px; min-width: 0; }

/* DOC PANEL */
.doc-panel { display: none; }
.doc-panel.active { display: block; }
.doc-lead a { color: var(--teal); }

/* SECTION STYLES */
.doc-eyebrow { font-size: 11px; font-weight: 500; letter-spacing: 0.09em; text-transform: uppercase; color: var(--teal); margin-bottom: 12px; font-family: var(--mono); }
.doc-h1 { font-size: clamp(28px, 3.5vw, 40px); font-weight: 300; letter-spacing: -0.025em; color: var(--white); line-height: 1.15; margin-bottom: 14px; }
.doc-h1 em { font-style: italic; color: var(--teal); }
.doc-lead {
  font-size: 16px; font-weight: 300; color: var(--muted); line-height: 1.72; margin-bottom: 36px;
  padding-bottom: 36px; border-bottom: 0.5px solid var(--line); overflow-wrap: anywhere;
}
.doc-h2 { font-size: 22px; font-weight: 500; color: var(--white); margin: 40px 0 12px; letter-spacing: -0.01em; padding-top: 40px; border-top: 0.5px solid var(--line); }
.doc-h2:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }
.doc-h3 { font-size: 16px; font-weight: 500; color: var(--white); margin: 24px 0 8px; }
.doc-p { font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 14px; }
.doc-p:last-child { margin-bottom: 0; }
.doc-p strong { color: var(--cream); font-weight: 500; }
.doc-p a { color: var(--teal); text-decoration: none; }
.doc-p a:hover { text-decoration: underline; }
code { font-family: var(--mono); font-size: 13px; background: var(--slate-card); border: 0.5px solid var(--line-md); border-radius: 5px; padding: 2px 7px; color: var(--teal); }

/* CALLOUT BOX */
.callout { border-radius: 10px; padding: 16px 20px; margin: 20px 0; display: flex; gap: 12px; align-items: flex-start; }
.callout-info { background: var(--teal-light); border: 0.5px solid var(--teal-border); }
.callout-tip { background: var(--teal-light); border: 0.5px solid var(--teal-border); }
.callout-warn { background: var(--amber-light); border: 0.5px solid var(--amber-border); }
.callout-icon { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; }
.callout-info .callout-icon { stroke: var(--blue); fill: none; stroke-width: 1.5; }
.callout-tip .callout-icon { stroke: var(--teal); fill: none; stroke-width: 1.5; }
.callout-warn .callout-icon { stroke: var(--amber); fill: none; stroke-width: 1.5; }
.callout-body { font-size: 14px; line-height: 1.65; }
.callout-info .callout-body { color: var(--teal); }
.callout-tip .callout-body { color: rgba(64, 196, 255,0.9); }
.callout-warn .callout-body { color: rgba(239,159,39,0.9); }
.callout-body strong { font-weight: 500; }
.callout-body a { color: inherit; text-decoration: underline; }

/* CODE BLOCKS */
.code-wrap { background: #1E1E1C; border: 0.5px solid rgba(255,255,255,0.1); border-radius: 12px; overflow: hidden; margin: 16px 0; }
.code-header { display: flex; align-items: center; justify-content: space-between; padding: 10px 18px; border-bottom: 0.5px solid rgba(255,255,255,0.07); }
.code-lang { font-size: 11px; font-family: var(--mono); color: rgba(248,246,240,0.3); display: flex; align-items: center; gap: 8px; }
.lang-dot { width: 8px; height: 8px; border-radius: 50%; }
.code-copy { font-family: var(--mono); font-size: 11px; color: rgba(248,246,240,0.3); background: none; border: 0.5px solid rgba(255,255,255,0.1); border-radius: 5px; padding: 3px 9px; cursor: pointer; transition: color 0.15s; }
.code-copy:hover { color: var(--cream); }
.code-body { padding: 22px; font-family: var(--mono); font-size: 13px; line-height: 1.85; overflow-x: auto; color: rgba(248,246,240,0.75); }
.ck { color: #9FE1CB; } .cv { color: #EF9F27; } .cs { color: rgba(248,246,240,0.75); } .cc { color: rgba(248,246,240,0.28); } .cf { color: var(--teal); } .cn { color: var(--teal); }

/* NUMBERED STEPS */
.steps { display: flex; flex-direction: column; gap: 0; margin: 20px 0; }
.step { display: grid; grid-template-columns: 36px 1fr; gap: 0; }
.step-num-col { display: flex; flex-direction: column; align-items: center; }
.step-circle { width: 28px; height: 28px; border-radius: 50%; background: var(--teal); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 500; color: var(--slate); font-family: var(--mono); flex-shrink: 0; }
.step-line { width: 1px; background: var(--line-md); flex: 1; margin: 5px 0; min-height: 12px; }
.step:last-child .step-line { display: none; }
.step-body { padding: 2px 0 28px 16px; font-size: 14px; color: var(--muted); line-height: 1.7; }
.step-body strong { color: var(--cream); font-weight: 500; display: block; margin-bottom: 4px; font-size: 15px; }

/* TABLES */
.doc-table-wrap { overflow-x: auto; margin: 16px 0; border-radius: 12px; border: 0.5px solid var(--line); }
.doc-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.doc-table th { font-size: 11px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(248,246,240,0.3); background: var(--slate-card); padding: 11px 14px; text-align: left; border-bottom: 0.5px solid var(--line); }
.doc-table td { padding: 11px 14px; border-bottom: 0.5px solid var(--line); color: var(--muted); vertical-align: top; line-height: 1.6; }
.doc-table tr:last-child td { border-bottom: none; }
.doc-table tr:hover td { background: rgba(255,255,255,0.02); }
.doc-table td:first-child { color: var(--cream); font-family: var(--mono); font-size: 12px; }
.doc-table td strong { color: var(--cream); font-weight: 500; }
.status-approved { color: var(--teal); font-weight: 500; }
.status-declined { color: var(--coral); font-weight: 500; }
.req-yes { color: var(--teal); font-weight: 500; }
.req-no { color: var(--muted); }

/* METHOD BADGES */
.method { display: inline-block; font-size: 10px; font-weight: 500; font-family: var(--mono); padding: 2px 7px; border-radius: 5px; margin-right: 6px; }
.m-post { background: var(--teal-light); color: var(--teal); border: 0.5px solid var(--teal-border); }
.m-get { background: var(--blue-light); color: var(--blue); border: 0.5px solid var(--blue-border); }
.m-put { background: var(--amber-light); color: var(--amber); border: 0.5px solid var(--amber-border); }
.m-patch { background: var(--coral-light); color: var(--coral); border: 0.5px solid var(--coral-border); }

/* ENDPOINT ROWS */
.endpoint-list { display: flex; flex-direction: column; gap: 8px; margin: 16px 0; }
.endpoint-row {
  background: var(--slate-card); border: 0.5px solid var(--line); border-radius: 10px; padding: 14px 18px;
  display: flex; align-items: center; flex-wrap: wrap; gap: 10px 12px;
  transition: border-color 0.15s; cursor: default;
}
.endpoint-row:hover { border-color: var(--line-md); }
.ep-path {
  font-family: var(--mono); font-size: 13px; color: var(--cream); flex: 1;
  min-width: 0; overflow-wrap: anywhere;
}
.ep-desc { font-size: 12px; color: var(--muted); text-align: right; min-width: 0; }

/* INTEGRATION CARDS */
.int-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 20px 0; }
.int-card { background: var(--slate-card); border: 0.5px solid var(--line); border-radius: 13px; padding: 22px; transition: border-color 0.2s, transform 0.15s; cursor: default; }
.int-card:hover { border-color: var(--line-md); transform: translateY(-1px); }
.int-card-icon { width: 36px; height: 36px; border-radius: 9px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.int-card-icon svg { width: 16px; height: 16px; fill: none; stroke-width: 1.5; }
.int-card-name { font-size: 14px; font-weight: 500; color: var(--white); margin-bottom: 5px; }
.int-card-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* KEY TYPE CARDS */
.key-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 20px 0; }
.key-card { background: var(--slate-card); border: 0.5px solid var(--line); border-radius: 13px; padding: 22px; }
.key-card-label { font-size: 10px; font-family: var(--mono); letter-spacing: 0.07em; text-transform: uppercase; color: var(--teal); margin-bottom: 8px; }
.key-card-name { font-size: 15px; font-weight: 500; color: var(--white); margin-bottom: 8px; }
.key-card-desc { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* NEXT/PREV NAV */
.doc-nav {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  margin-top: 52px; padding-top: 32px; border-top: 0.5px solid var(--line);
}
.doc-nav-card {
  background: var(--slate-card); border: 0.5px solid var(--line); border-radius: 12px; padding: 16px 20px;
  text-decoration: none; display: block; flex: 1 1 200px; min-width: 0; transition: border-color 0.15s;
}
.doc-nav-card:hover { border-color: var(--line-md); }
.doc-nav-label { font-size: 10px; font-family: var(--mono); color: rgba(248,246,240,0.25); letter-spacing: 0.07em; text-transform: uppercase; margin-bottom: 6px; }
.doc-nav-title { font-size: 14px; font-weight: 500; color: var(--white); }
.doc-nav-card.next { text-align: right; }

/* BADGE */
.inline-badge { font-size: 10px; font-family: var(--mono); padding: 2px 8px; border-radius: 10px; }
.badge-required { background: var(--coral-light); color: var(--coral); border: 0.5px solid var(--coral-border); }
.badge-optional { background: rgba(255,255,255,0.05); color: var(--muted); border: 0.5px solid var(--line); }

/* HERO GRID */
.hero-grid-section { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 24px 0; }
.hero-section-card { background: var(--slate-card); border: 0.5px solid var(--line); border-radius: 13px; padding: 22px; text-decoration: none; display: block; transition: border-color 0.2s, transform 0.15s; }
.hero-section-card:hover { border-color: var(--teal-border); transform: translateY(-2px); }
.hsc-icon { font-size: 24px; margin-bottom: 12px; display: block; }
.hsc-name { font-size: 14px; font-weight: 500; color: var(--white); margin-bottom: 4px; }
.hsc-desc { font-size: 12px; color: var(--muted); line-height: 1.55; }
}

/* HERO — partners (glow accents only) */
.glow-hero { position: absolute; top: -60px; right: -60px; width: 700px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(64,196,255,0.08) 0%, transparent 65%); pointer-events: none; }
.glow-hero-2 { position: absolute; bottom: -80px; left: 5%; width: 500px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(239,159,39,0.05) 0%, transparent 65%); pointer-events: none; }
.hero-stats { display: flex; gap: 32px; }
.hstat { }
.hstat-val { font-size: 24px; font-weight: 400; color: var(--white); letter-spacing: -0.02em; margin-bottom: 3px; }
.hstat-val span { color: var(--teal); }
.hstat-label { font-size: 12px; color: rgba(248,246,240,0.6); }

/* HERO VISUAL - partner mosaic */
.hero-mosaic { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
.mosaic-card { background: var(--slate-mid); border: 0.5px solid var(--line); border-radius: 12px; padding: 16px; display: flex; flex-direction: column; gap: 8px; transition: border-color 0.2s; }
.mosaic-card:hover { border-color: var(--line-md); }
/* .mosaic-card.featured { border-color: var(--teal-border); background: rgba(64,196,255,0.05); } */
.mc-logo { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 500; font-family: var(--mono); color: var(--cream); flex-shrink: 0; }
.mc-name { font-size: 12px; font-weight: 500; color: var(--white); }
.mc-cat { font-size: 10px; color: rgba(248,246,240,0.35); }
.mc-badge { display: inline-block; font-size: 9px; font-weight: 500; font-family: var(--mono); padding: 2px 7px; border-radius: 10px; }

/* MARKETPLACE */
.marketplace { padding: 80px; background: var(--slate-mid); }
.marketplace-inner { max-width: 1140px; margin: 0 auto; }

/* FILTER BAR */
.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; align-items: center; }
.filter-search { flex: 1; min-width: 200px; max-width: 280px; background: var(--slate-card); border: 0.5px solid var(--line-md); border-radius: 9px; padding: 10px 14px; font-family: var(--font); font-size: 13px; color: var(--cream); outline: none; transition: border-color 0.15s; }
.filter-search::placeholder { color: rgba(248,246,240,0.25); }
.filter-search:focus { border-color: var(--teal-border); }
.filter-divider { width: 0.5px; height: 28px; background: var(--line-md); margin: 0 4px; }
.filter-btn { font-family: var(--font); font-size: 12px; font-weight: 500; padding: 8px 14px; border-radius: 8px; border: 0.5px solid var(--line); background: var(--slate-card); color: rgba(248,246,240,0.55); cursor: pointer; transition: all 0.15s; white-space: nowrap; }
.filter-btn:hover { color: var(--cream); border-color: var(--line-md); }
.filter-btn.active { color: var(--teal); border-color: var(--teal-border); background: var(--teal-light); }
.results-count { font-size: 12px; color: rgba(248,246,240,0.25); font-family: var(--mono); margin-left: auto; align-self: center; white-space: nowrap; }

/* PARTNER GRID */
.partner-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.partner-card {
  background: var(--slate-card); border: 0.5px solid var(--line);
  border-radius: 14px; padding: 24px; cursor: pointer;
  transition: border-color 0.2s, transform 0.15s;
  display: flex; flex-direction: column; gap: 0;
}
.partner-card:hover { border-color: var(--line-md); transform: translateY(-2px); }
.partner-card.hidden { display: none; }
.pc-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 14px; }
.pc-logo { width: 48px; height: 48px; border-radius: 11px; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 500; font-family: var(--mono); color: var(--white); flex-shrink: 0; border: 0.5px solid rgba(255,255,255,0.08); }
.pc-tier { font-size: 9px; font-weight: 500; font-family: var(--mono); padding: 3px 8px; border-radius: 10px; }
.tier-featured { background: var(--teal-light); color: var(--teal); border: 0.5px solid var(--teal-border); }
.tier-partner { background: var(--amber-light); color: var(--amber); border: 0.5px solid var(--amber-border); }
.tier-certified { background: var(--blue-light); color: var(--blue); border: 0.5px solid var(--blue-border); }
.tier-community { background: var(--purple-light); color: var(--purple); border: 0.5px solid var(--purple-border); }
.pc-name { font-size: 16px; font-weight: 500; color: var(--white); margin-bottom: 4px; letter-spacing: -0.01em; }
.pc-tagline { font-size: 13px; color: rgba(248,246,240,0.6); line-height: 1.55; margin-bottom: 16px; flex: 1; }
.pc-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 14px; border-top: 0.5px solid var(--line); }
.pc-cat-tag { font-size: 11px; font-family: var(--mono); padding: 3px 9px; border-radius: 20px; }
.pc-link { font-size: 12px; color: var(--teal); text-decoration: none; font-family: var(--mono); transition: opacity 0.15s; }
.pc-link:hover { opacity: 0.7; }

/* Partners — “Get info” request modal */
.partner-info-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.partner-info-modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.partner-info-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 18, 0.72);
  backdrop-filter: blur(4px);
}
.partner-info-modal__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 440px;
  padding: 32px 28px 28px;
  border-radius: 16px;
  border: 0.5px solid var(--line);
  background: var(--slate-card);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}
.partner-info-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.partner-info-modal__close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--cream);
}
.partner-info-modal__heading {
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.02em;
  margin: 0 36px 16px 0;
  line-height: 1.25;
}
.partner-info-modal__lead {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 20px;
}
.partner-info-modal__partner-line {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0 0 24px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 0.5px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}
.partner-info-modal__partner-label {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
}
.partner-info-modal__partner-name {
  font-size: 17px;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.partner-info-modal__form { margin: 0; }
.partner-info-modal__label {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(248, 246, 240, 0.55);
  margin-bottom: 8px;
}
.partner-info-modal__input {
  width: 100%;
  box-sizing: border-box;
  padding: 14px 16px;
  margin-bottom: 20px;
  font-size: 15px;
  color: var(--cream);
  background: var(--slate);
  border: 0.5px solid var(--line);
  border-radius: 10px;
  outline: none;
  transition: border-color 0.15s;
}
.partner-info-modal__input:focus {
  border-color: var(--teal-border);
}
.partner-info-modal__input::placeholder {
  color: rgba(248, 246, 240, 0.35);
}
.partner-info-modal__submit {
  width: 100%;
  display: block;
  text-align: center;
  border: none;
  cursor: pointer;
}
.partner-info-modal__thanks {
  text-align: center;
  padding: 8px 0 4px;
}
.partner-info-modal__thanks p {
  font-size: 16px;
  font-weight: 500;
  color: #1D9E75;
  line-height: 1.2;
  margin: 0 0 20px;
}
.partner-info-modal__thanks .btn-lg-outline {
  width: 100%;
  display: block;
  text-align: center;
  box-sizing: border-box;
}
.no-results { display: none; text-align: center; padding: 64px 0; color: rgba(248,246,240,0.45); font-size: 15px; grid-column: 1 / -1; }
.no-results.show { display: block; }

/* INDUSTRIES */
.industries-section { padding: 80px; }
.industries-inner { max-width: 1140px; margin: 0 auto; }
.industry-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; }
.industry-card { background: var(--slate-card); border: 0.5px solid var(--line); border-radius: 12px; padding: 20px 16px; text-align: center; transition: border-color 0.2s, background 0.2s; }
.ind-icon { font-size: 22px; margin-bottom: 10px; display: block; }
.ind-name { font-size: 13px; font-weight: 500; color: var(--white); margin-bottom: 3px; }
.ind-count { font-size: 11px; color: rgba(248,246,240,0.35); font-family: var(--mono); }

/* HOW IT WORKS */
.how-section { padding: 80px; }
.how-inner { max-width: 1140px; margin: 0 auto; }
.how-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border-radius: 16px; overflow: hidden; }
.how-step { background: var(--slate-card); padding: 36px 32px; }
.step-num { font-size: 11px; font-family: var(--mono); color: var(--teal); margin-bottom: 16px; letter-spacing: 0.06em; }
.step-title { font-size: 18px; font-weight: 500; color: var(--white); margin-bottom: 10px; letter-spacing: -0.01em; }
.step-title span { color: var(--teal); }
.step-desc { font-size: 14px; color: rgba(248,246,240,0.6); line-height: 1.65; margin-bottom: 18px; }
.step-features { display: flex; flex-direction: column; gap: 6px; }
.sf { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(248,246,240,0.55); }
.sf-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--teal); opacity: 0.7; flex-shrink: 0; }

/* BENEFITS */
.benefits-section { padding: 80px; background: var(--slate-mid)}
.benefits-inner { max-width: 1140px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.benefit-card { background: var(--slate-card); border: 0.5px solid var(--line); border-radius: 14px; padding: 24px; transition: border-color 0.2s; }
.benefit-card:hover { border-color: var(--line-md); }
.benefit-icon { width: 34px; height: 34px; border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.benefit-icon svg { width: 16px; height: 16px; fill: none; stroke-width: 1.5; }
.benefit-name { font-size: 14px; font-weight: 500; color: var(--white); margin-bottom: 5px; }
.benefit-desc { font-size: 13px; color: rgba(248,246,240,0.6); line-height: 1.6; }

/* SIGNUP FORM */
.signup-section { padding: 80px; }
.signup-inner { max-width: 1140px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.signup-left { }
.signup-proof { display: flex; flex-direction: column; gap: 16px; margin-top: 40px; }
.proof-row { display: flex; gap: 14px; align-items: flex-start; }
.proof-icon { width: 32px; height: 32px; border-radius: 8px; background: var(--teal-light); border: 0.5px solid var(--teal-border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.proof-icon svg { width: 14px; height: 14px; stroke: var(--teal); fill: none; stroke-width: 1.5; }
.proof-text h4 { font-size: 14px; font-weight: 500; color: var(--white); margin-bottom: 3px; }
.proof-text p { font-size: 13px; color: rgba(248,246,240,0.6); line-height: 1.6; }

/* FORM */
.partner-form { background: var(--slate-card); border: 0.5px solid var(--line); border-radius: 18px; padding: 40px; }
.form-title { font-size: 20px; font-weight: 500; color: var(--white); margin-bottom: 6px; letter-spacing: -0.01em; }
.form-sub { font-size: 14px; color: rgba(248,246,240,0.6); line-height: 1.6; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
#merchant-form-content .form-row, #developer-form-content .form-row, #partner-form-content .form-row {grid-template-columns: 1fr 1fr 1fr;}
.form-row.full { grid-template-columns: 1fr; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 12px; font-weight: 500; color: rgba(248,246,240,0.55); letter-spacing: 0.02em; }
.form-input,
.form-select,
.form-textarea {
  font-family: var(--font); font-size: 14px; color: var(--cream);
  background: var(--slate); border: 0.5px solid var(--line-md);
  border-radius: 9px; padding: 11px 14px; outline: none;
  transition: border-color 0.15s; width: 100%;
}
.form-input::placeholder,
.form-textarea::placeholder { color: rgba(248,246,240,0.2); }
.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--teal-border); }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2 4l4 4 4-4' stroke='rgba(248,246,240,0.3)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; cursor: pointer; }
.form-select option { background: var(--slate-card); }
.form-textarea { min-height: 90px; resize: vertical; line-height: 1.6; }
.form-check-row { display: flex; align-items: flex-start; gap: 10px; margin: 16px 0; }
.form-check { width: 16px; height: 16px; border: 0.5px solid var(--line-md); border-radius: 4px; background: var(--slate); cursor: pointer; flex-shrink: 0; margin-top: 1px; accent-color: var(--teal); }
.form-check-label { font-size: 13px; color: rgba(248,246,240,0.55); line-height: 1.55; }
.form-check-label a { color: var(--teal); text-decoration: none; }
.form-submit { width: 100%; font-family: var(--font); font-size: 15px; font-weight: 500; color: var(--slate); background: var(--teal); border: none; border-radius: 10px; padding: 14px; cursor: pointer; transition: background 0.15s, transform 0.1s; margin-top: 4px; }
#merchant-form-content .form-submit, #developer-form-content .form-submit, #partner-form-content .form-submit { width: auto; }
.form-submit:hover { background: var(--teal-hover); transform: translateY(-1px); }
.form-privacy { font-size: 11px; color: rgba(248,246,240,0.2); text-align: center; margin-top: 14px; line-height: 1.5; }
#merchant-form-content .form-privacy { text-align: left; }
.form-success { display: none; text-align: center; padding: 40px 20px; }
.form-success.show { display: block; }
.success-icon { width: 56px; height: 56px; border-radius: 50%; background: var(--teal-light); border: 0.5px solid var(--teal-border); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.success-icon svg { width: 24px; height: 24px; stroke: var(--teal); fill: none; stroke-width: 1.5; }
.success-title { font-size: 20px; font-weight: 500; color: var(--white); margin-bottom: 8px; }
.success-sub { font-size: 14px; color: rgba(248,246,240,0.6); line-height: 1.65; }

/* TIER LEGEND */
.tier-legend { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }
.tl-item-vertical { display: flex; align-items: center; gap: 7px; font-size: 12px; color: rgba(248,246,240,0.55); }
.tl-dot-vertical { width: 8px; height: 8px; border-radius: 50%; }

/* ── HERO — solutions (glow accents + hero trust line) */
.glow-1 { position: absolute; top: -100px; left: -80px; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(64,196,255,0.09) 0%, transparent 65%); pointer-events: none; }
.glow-2 { position: absolute; bottom: -60px; right: -40px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(239,159,39,0.06) 0%, transparent 65%); pointer-events: none; }
.hero-trust { display: flex; gap: 20px; flex-wrap: wrap; }

/* ── HERO VISUAL ── */
.hero-visual { position: relative; }

/* main platform card */
.platform-card {
  background: var(--slate-mid);
  border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 28px;
  max-width: 100%;
  box-shadow: 0 48px 96px rgba(0,0,0,0.45);
  animation: floatMain 7s ease-in-out infinite;
}
@keyframes floatMain { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

.pc-topbar {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 10px 16px; margin-bottom: 24px;
}
.pc-title {
  font-size: 13px; font-weight: 500; color: rgba(248,246,240,0.5);
  min-width: 0; flex: 1 1 12rem; overflow-wrap: anywhere;
}
.pc-live {
  display: flex; align-items: center; gap: 6px; flex-shrink: 0;
  font-size: 11px; color: var(--teal); font-family: var(--mono);
}
.pc-live .live-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); animation: pulse 2s infinite; }
/* industry tabs */
.ind-tabs { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 20px; }
.ind-tab { font-size: 11px; font-family: var(--mono); padding: 5px 11px; border-radius: 6px; border: 0.5px solid var(--line); color: rgba(248,246,240,0.35); cursor: default; }
.ind-tab.active { background: var(--teal-light); border-color: var(--teal-border); color: var(--teal); }

/* metrics row */
.metrics-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 20px; }
.metric-box { background: rgba(255,255,255,0.04); border-radius: 10px; padding: 14px 12px; }
.mb-label { font-size: 9px; color: rgba(248,246,240,0.3); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 6px; }
.mb-val { font-size: 20px; font-weight: 500; color: var(--white); letter-spacing: -0.02em; }
.mb-change { font-size: 10px; margin-top: 3px; }
.up { color: var(--teal); } .neu { color: var(--amber); }

/* chart area */
.chart-area { background: rgba(255,255,255,0.02); border-radius: 12px; padding: 16px; margin-bottom: 20px; }
.chart-header {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center;
  gap: 10px 14px; margin-bottom: 14px;
}
.chart-label {
  font-size: 11px; color: rgba(248,246,240,0.3); font-family: var(--mono);
  min-width: 0; flex: 1 1 10rem; overflow-wrap: anywhere;
}
.chart-legend { display: flex; flex-wrap: wrap; gap: 8px 12px; align-items: center; }
.legend-item { display: flex; align-items: center; gap: 5px; font-size: 10px; color: rgba(248,246,240,0.3); }
.legend-dot { width: 6px; height: 6px; border-radius: 50%; }
.chart-bars { display: flex; align-items: flex-end; gap: 5px; height: 72px; }
.chart-bars .bar { border-radius: 3px 3px 0 0; flex: 1; }
.chart-bars .bar-teal { background: rgba(64,196,255,0.35); }
.chart-bars .bar-teal.hi { background: var(--teal); }
.chart-bars .bar-amber { background: rgba(239,159,39,0.25); }
.chart-bars .bar-amber.hi { background: var(--amber); }

/* transaction list */
.txn-list { display: flex; flex-direction: column; gap: 7px; }
.platform-card .txn-row { display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,0.03); border-radius: 9px; padding: 10px 12px; }
.txn-avatar { width: 30px; height: 30px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 500; font-family: var(--mono); flex-shrink: 0; }
.av-teal { background: rgba(64,196,255,0.15); color: var(--teal); }
.av-amber { background: rgba(239,159,39,0.15); color: var(--amber); }
.av-blue { background: rgba(55,138,221,0.15); color: var(--blue); }
.txn-info { flex: 1; min-width: 0; }
.txn-name { font-size: 12px; color: rgba(248,246,240,0.75); overflow-wrap: anywhere; }
.txn-meta { font-size: 10px; color: rgba(248,246,240,0.3); font-family: var(--mono); margin-top: 1px; }
.txn-amount { font-size: 13px; font-weight: 500; color: var(--white); font-family: var(--mono); }
.txn-badge { font-size: 9px; font-family: var(--mono); padding: 2px 7px; border-radius: 8px; }
.badge-ok { background: var(--teal-light); color: var(--teal); }
.badge-rec { background: var(--amber-light); color: var(--amber); }

/* floating accent cards */
.float-card-tl {
  position: absolute; top: -28px; left: -32px;
  background: var(--slate-mid); border: 0.5px solid rgba(239,159,39,0.28);
  border-radius: 14px; padding: 14px 18px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
  animation: floatTL 5.5s ease-in-out infinite;
  z-index: 2;
}
@keyframes floatTL { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.fc-label { font-size: 10px; color: rgba(248,246,240,0.35); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 5px; }
.fc-value { font-size: 22px; font-weight: 500; letter-spacing: -0.02em; }

.float-card-br {
  position: absolute; bottom: -24px; right: -28px;
  background: var(--slate-mid); border: 0.5px solid rgba(55,138,221,0.28);
  border-radius: 14px; padding: 14px 18px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
  animation: floatBR 6.5s ease-in-out infinite;
  z-index: 2;
}
@keyframes floatBR { 0%,100%{transform:translateY(0)} 50%{transform:translateY(7px)} }

.float-card-mr {
  position: absolute; top: 38%; right: -36px;
  background: var(--slate-mid); border: 0.5px solid var(--line-md);
  border-radius: 12px; padding: 12px 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  animation: floatMR 8s ease-in-out infinite;
  z-index: 2; min-width: 130px;
}
@keyframes floatMR { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }
.security-row { display: flex; align-items: center; gap: 8px; }
.sec-icon { width: 28px; height: 28px; border-radius: 7px; background: var(--teal-light); border: 0.5px solid var(--teal-border); display: flex; align-items: center; justify-content: center; }
.sec-icon svg { width: 13px; height: 13px; stroke: var(--teal); fill: none; stroke-width: 1.5; }
.sec-text { font-size: 11px; font-weight: 500; color: var(--white); }
.sec-sub { font-size: 10px; color: rgba(248,246,240,0.35); font-family: var(--mono); margin-top: 1px; }

/* ── SOLUTIONS GRID ── */
.solutions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.sol-card { background: var(--slate-card); border: 0.5px solid var(--line); border-radius: 16px; padding: 32px; transition: border-color 0.2s, transform 0.15s; cursor: default; }
.sol-card:hover { transform: translateY(-3px); border-color: var(--line-md); }
.sol-icon { width: 44px; height: 44px; border-radius: 11px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.sol-icon svg { width: 20px; height: 20px; fill: none; stroke-width: 1.5; }
.sol-name { font-size: 17px; font-weight: 500; color: var(--white); margin-bottom: 8px; letter-spacing: -0.01em; }
.sol-desc { font-size: 14px; color: rgba(248,246,240,0.6); line-height: 1.65; margin-bottom: 20px; }
.sol-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.t-teal { background: var(--teal-light); color: var(--teal); border: 0.5px solid var(--teal-border); }
.t-amber { background: var(--amber-light); color: var(--amber); border: 0.5px solid var(--amber-border); }
.t-blue { background: var(--blue-light); color: var(--blue); border: 0.5px solid var(--blue-border); }
.t-coral { background: var(--coral-light); color: var(--coral); border: 0.5px solid var(--coral-border); }
.t-purple { background: var(--purple-light); color: var(--purple); border: 0.5px solid var(--purple-border); }
.t-muted { background: rgba(255,255,255,0.04); color: rgba(248,246,240,0.4); border: 0.5px solid var(--line); }

/* ── INDUSTRY TABS ── */
.industry-section { padding: 80px; background: var(--slate-mid); }
.industry-inner { max-width: 1140px; margin: 0 auto; }
.industry-tab-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; }
.itab { font-family: var(--font); font-size: 13px; font-weight: 400; padding: 9px 18px; border-radius: 9px; border: 0.5px solid var(--line); background: var(--slate-card); color: rgba(248,246,240,0.55); cursor: pointer; transition: all 0.15s; }
.itab:hover { color: var(--cream); border-color: var(--line-md); }
.itab.active { color: var(--teal); border-color: var(--teal-border); background: var(--teal-light); }
.industry-panel { display: none; }
.industry-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.ip-left h3 { font-size: 26px; font-weight: 400; color: var(--white); letter-spacing: -0.02em; margin-bottom: 12px; }
.ip-left h3 em { font-style: italic; color: var(--teal); }
.ip-left p { font-size: 15px; color: rgba(248,246,240,0.6); line-height: 1.7; margin-bottom: 24px; }
.ip-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.ip-feat { display: flex; gap: 12px; align-items: flex-start; }
.ip-feat-dot { width: 20px; height: 20px; border-radius: 50%; border: 0.5px solid var(--teal-border); background: var(--teal-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.ip-feat-dot svg { width: 9px; height: 9px; stroke: var(--teal); fill: none; stroke-width: 2; }
.ip-feat-text { font-size: 14px; color: var(--cream); line-height: 1.55; }
.ip-feat-text span { color: rgba(248,246,240,0.5); font-size: 13px; display: block; margin-top: 2px; }
.ip-right { display: flex; flex-direction: column; gap: 10px; }
.ip-stat { background: var(--slate-card); border: 0.5px solid var(--line); border-radius: 13px; padding: 22px; }
.ip-stat-val { font-size: 36px; font-weight: 300; letter-spacing: -0.03em; color: var(--white); margin-bottom: 4px; }
.ip-stat-val span { color: var(--teal); }
.ip-stat-label { font-size: 13px; color: rgba(248,246,240,0.6); line-height: 1.5; }
.ip-stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

/* ── PRODUCT COMPARISON ── */
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th { font-size: 11px; font-weight: 500; letter-spacing: 0.07em; text-transform: uppercase; color: rgba(248,246,240,0.28); text-align: left; padding: 0 16px 14px; }
.compare-table th:not(:first-child) { text-align: center; }
.compare-table td { padding: 13px 16px; border-top: 0.5px solid var(--line); font-size: 14px; color: rgba(248,246,240,0.6); }
.compare-table td:first-child { color: var(--cream); font-size: 13px; }
.compare-table td:not(:first-child) { text-align: center; }
.ck { color: var(--teal); font-size: 16px; }
.dash-c { color: rgba(248,246,240,0.12); }
.col-hi { background: rgba(64,196,255,0.04); }
.tier-name { font-size: 14px; font-weight: 500; color: var(--white); }
.tier-sub { font-size: 11px; color: rgba(248,246,240,0.35); display: block; margin-top: 2px; font-weight: 400; }
.compare-section { padding: 0 var(--page-gutter) 80px; }
.compare-section > .section-inner { max-width: 1140px; margin: 0 auto; }
.compare-section .section-sub {max-width: none;}

/* ── HOW IT WORKS ── */
.hiw-section { padding: 80px;}
.hiw-inner { max-width: 1140px; margin: 0 auto; }
.hiw-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border-radius: 16px; overflow: hidden; margin-top: 48px; }
.hiw-step { background: var(--slate-card); padding: 32px 28px; }
.hiw-num { font-size: 10px; font-family: var(--mono); color: var(--teal); letter-spacing: 0.07em; margin-bottom: 16px; }
.hiw-icon { width: 36px; height: 36px; border-radius: 9px; background: var(--teal-light); border: 0.5px solid var(--teal-border); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.hiw-icon svg { width: 16px; height: 16px; stroke: var(--teal); fill: none; stroke-width: 1.5; }
.hiw-title { font-size: 15px; font-weight: 500; color: var(--white); margin-bottom: 8px; }
.hiw-desc { font-size: 13px; color: rgba(248,246,240,0.6); line-height: 1.65; }

/* ── TESTIMONIALS ── */
.testi-section { padding: 80px; }
.testi-inner { max-width: 1140px; margin: 0 auto; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 48px; }
.testi-card { background: var(--slate-card); border: 0.5px solid var(--line); border-radius: 14px; padding: 28px; }
.testi-quote { font-size: 14px; color: rgba(248,246,240,0.65); line-height: 1.7; font-style: italic; margin-bottom: 20px; }
.testi-footer { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 0.5px solid var(--line); }
.testi-avatar { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 500; font-family: var(--mono); color: var(--white); flex-shrink: 0; }
.testi-name { font-size: 13px; font-weight: 500; color: var(--white); }
.testi-role { font-size: 11px; color: rgba(248,246,240,0.35); margin-top: 1px; }
.testi-tag { font-size: 10px; font-family: var(--mono); padding: 2px 8px; border-radius: 10px; margin-left: auto; }

/* —— Marketing pages: tablet & down (< lg / 992px) —— */
@media (max-width: 991.98px) {
  .hero {
    padding: 100px var(--page-gutter) 64px;
    min-height: auto;
  }
  .section {
    padding: 72px var(--page-gutter);
  }
.partner-bar { padding: 40px var(--page-gutter); }
.testimonial-section { padding: 56px var(--page-gutter); }
.testimonial-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
.cta-section { padding: 80px var(--page-gutter); }
.partner-bar-inner,
.section-inner,
.testimonial-inner { max-width: 100%; }

.hero-pillars { grid-template-columns: repeat(3, 1fr); }
.bento { grid-template-columns: repeat(6, 1fr); }
.bc-1, .bc-2, .bc-3,
.bc-4, .bc-5, .bc-6,
.bc-7 { grid-column: span 6; }
.feature-grid { grid-template-columns: repeat(2, 1fr); }
.suite-grid,
.devices-grid { grid-template-columns: 1fr; }
.outcome-grid { grid-template-columns: 1fr; }

.page-layout {
    grid-template-columns: 1fr;
    padding-top: 64px;
  }
.sidebar {
    position: relative;
    top: 0;
    height: auto;
    max-height: none;
    border-right: none;
    border-bottom: 0.5px solid var(--slate-line);
    padding: 20px 0 24px;
  }
.main-content { padding: 32px var(--page-gutter); max-width: 100%; }

.hero-inner--split { grid-template-columns: 1fr; gap: 48px; }
.hero-mosaic { grid-template-columns: repeat(2, 1fr); order: 2; }
.marketplace,
.industries-section,
.how-section,
.benefits-section,
.signup-section { padding: 56px var(--page-gutter); }
.partner-grid { grid-template-columns: repeat(2, 1fr); }
.industry-grid { grid-template-columns: repeat(3, 1fr); }
.how-steps { grid-template-columns: 1fr; }
.benefits-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
.benefits-grid { grid-template-columns: 1fr; }
.signup-inner { grid-template-columns: 1fr; gap: 48px; }
.cta-section { padding: 72px var(--page-gutter); }

.commerce-section { background: var(--slate-mid); }

.hero-inner--split { grid-template-columns: 1fr; gap: 48px; }
.metrics-row { grid-template-columns: repeat(2, 1fr); }
.solutions-grid { grid-template-columns: repeat(2, 1fr); }
.industry-panel.active { grid-template-columns: 1fr; gap: 32px; }
.ip-stat-row { grid-template-columns: 1fr; }
.hiw-grid { grid-template-columns: repeat(2, 1fr); }
.testi-grid { grid-template-columns: 1fr; }
.industry-section,
.compare-section,
.hiw-section,
.testi-section { padding: 56px var(--page-gutter); }
.cta-section { padding: 72px var(--page-gutter); }
.compare-section > .section-inner { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* Developer hub — must override @scoped .page-layout { 260px 1fr } (higher specificity than bare .page-layout) */
.developers-doc-page .page-layout {
  grid-template-columns: 1fr;
  min-width: 0;
}
.developers-doc-page .main-content {
  min-width: 0;
  padding: 28px var(--page-gutter);
  scroll-margin-top: 72px;
}
/* Override @scoped sidebar: sticky + 100vh height was painting over main while scrolling */
.developers-doc-page .sidebar {
  position: relative;
  top: 0;
  height: auto;
  max-height: none;
  overflow-y: visible;
}
/* Stacked layout follows DOM: aside (sidebar) first, then main — no flex/grid order override */
.developers-doc-page .int-grid,
.developers-doc-page .key-grid,
.developers-doc-page .hero-grid-section {
  grid-template-columns: 1fr;
}
.developers-doc-page .doc-h2 {
  font-size: 19px;
  margin: 28px 0 10px;
  padding-top: 26px;
}
.developers-doc-page .doc-lead {
  font-size: 15px;
  margin-bottom: 28px;
  padding-bottom: 24px;
}

/* Legal hub — override .page-layout--legal { 260px 1fr } + sticky sidebar (same issues as developer docs) */
.page-layout.page-layout--legal {
  grid-template-columns: 1fr;
  min-width: 0;
}
.page-layout--legal .main-content {
  min-width: 0;
  padding: 28px var(--page-gutter);
  scroll-margin-top: 72px;
}
.page-layout--legal .sidebar {
  position: relative;
  top: 0;
  height: auto;
  max-height: none;
  overflow-y: visible;
}
}

@media (max-width: 767.98px) {
.developers-doc-page .page-layout,
.page-layout.page-layout--legal {
  padding-top: 85px;
}
}

/* Partner bar (platform strip) — smaller logos + tighter gap before row wraps ~500–550px */
@media (max-width: 719.98px) {
.partner-logos {
  gap: 45px;
  row-gap: 18px;
}
.partner-logo {
  max-width: 40px;
}
.partner-label { margin-bottom: 22px; }
}

/* —— Marketing pages: mobile (< md / 768px) —— */
@media (max-width: 767.98px) {
  .hero { padding: 140px var(--page-gutter) 48px; min-height: auto; }
  .hero-h1 { font-size: clamp(30px, 11vw, 52px); }
  .hero-pillars { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: 1fr; }
  .suite-card { flex-direction: column; gap: 16px; }
  .cta-btns,
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .cta-btns .btn-lg,
  .hero-ctas .btn-lg,
  .hero-ctas .btn-lg-outline,
  .hero-ctas .btn-outline { text-align: center; }

  .code-body { font-size: 12px; padding: 20px; overflow-x: auto; }
  .main-content { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .developers-doc-page .main-content {
    overflow-x: visible;
    padding: 22px var(--page-gutter);
  }
  .page-layout--legal .main-content {
    overflow-x: visible;
    padding: 22px var(--page-gutter);
  }
  .page-layout--legal .sidebar-link {
    white-space: normal;
    overflow-wrap: anywhere;
  }
  .feature-table { font-size: 11px; min-width: 480px; }

  .developers-doc-page .endpoint-row {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .developers-doc-page .method { align-self: flex-start; }
  .developers-doc-page .ep-desc { text-align: left; }

  .developers-doc-page .doc-nav {
    flex-direction: column;
    margin-top: 40px;
    padding-top: 24px;
  }
  .developers-doc-page .doc-nav-card.next {
    text-align: left;
  }
  .developers-doc-page .doc-nav-card {
    flex: 1 1 auto;
    padding: 14px 16px;
  }

  .developers-doc-page .callout {
    flex-direction: column;
    align-items: flex-start;
  }

  .developers-doc-page .doc-h1 {
    font-size: clamp(24px, 6vw, 36px);
  }
  .developers-doc-page .step {
    grid-template-columns: 28px 1fr;
  }
  .developers-doc-page .step-body {
    padding-left: 12px;
    padding-bottom: 22px;
    font-size: 13px;
  }

  /* .hero-mosaic { grid-template-columns: 1fr; } */
  .partner-grid { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .filter-bar { flex-direction: column; align-items: stretch; }
  .results-count { margin-left: 0; }
  .form-row:not(.full) { grid-template-columns: 1fr; }

  .metrics-row { grid-template-columns: 1fr; }
  .chart-bars { height: 56px; }
  .platform-card { padding: 18px 14px; }
  .pc-title { flex: 1 1 100%; }
  .float-card-tl,
  .float-card-br,
  .float-card-mr {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    margin: 12px 0;
    animation: none;
  }
  .hero-visual { margin-top: 8px; max-width: 100%; }
  .platform-card .txn-row { flex-wrap: wrap; row-gap: 8px; }
  .platform-card .txn-row > div:last-child {
    flex: 1 1 auto;
    justify-content: flex-end;
    min-width: 0;
  }
  .solutions-grid { grid-template-columns: 1fr; }
  .hiw-grid { grid-template-columns: 1fr; }
}

/* —— Marketing pages: small phones (< sm / 576px) —— */
@media (max-width: 575.98px) {
.hero-pillars { grid-template-columns: 1fr; }
.quote-mark { font-size: 56px; }
.quote-text { font-size: 18px; }

.industry-grid { grid-template-columns: 1fr; }
.partner-form { padding: 28px 20px; }

.partner-logos {
  gap: 40px;
  row-gap: 14px;
}
.partner-logo {
  max-width: 34px;
}
.partner-label { margin-bottom: 18px; }

.developers-doc-page .doc-table th,
.developers-doc-page .doc-table td {
  padding: 9px 11px;
  font-size: 12px;
}
.developers-doc-page .doc-table td:first-child {
  font-size: 11px;
}
.developers-doc-page .code-body {
  padding: 16px 14px;
  font-size: 11px;
}
.developers-doc-page .doc-h2 {
  font-size: 17px;
  margin: 22px 0 8px;
  padding-top: 22px;
}
.developers-doc-page .int-card,
.developers-doc-page .hero-section-card {
  padding: 18px 16px;
}
.developers-doc-page .doc-eyebrow {
  font-size: 10px;
}
}

@media (max-width: 419.98px) {
.partner-logos {
  gap: 26px;
  row-gap: 12px;
}
.partner-logo {
  max-width: 28px;
}

.developers-doc-page .main-content {
  padding: 18px var(--page-gutter);
}
.developers-doc-page .sidebar {
  padding: 16px 0 20px;
}
.developers-doc-page .sb-link {
  font-size: 12px;
  padding: 6px 14px;
}
.developers-doc-page .sb-link.sub {
  padding-left: 24px;
  font-size: 11px;
}
}

/* =============================================================================
   Support, Pricing & Company — shared layout blocks
   ============================================================================= */

.glow-c {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 700px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(64,196,255,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.hero-values {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px;
}
.value-card {
  background: var(--slate-card); border: 0.5px solid var(--line); border-radius: 12px;
  padding: 20px 18px; text-align: center;
}
.value-icon { font-size: 22px; margin-bottom: 10px; display: block; }
.value-name { font-size: 13px; font-weight: 500; color: var(--white); margin-bottom: 4px; }
.value-desc { font-size: 12px; color: var(--muted); line-height: 1.5; }

/* —— Support: search —— */
.search-wrap { max-width: 560px; margin: 0 0 30px 0; position: relative; }
.search-input {
  width: 100%; background: var(--slate-card); border: 0.5px solid var(--line-md); border-radius: 12px;
  padding: 16px 56px 16px 20px; font-family: var(--font); font-size: 15px; color: var(--cream);
  outline: none; transition: border-color 0.15s;
}
.search-input::placeholder { color: rgba(248,246,240,0.25); }
.search-input:focus { border-color: var(--teal-border); }
.search-icon {
  position: absolute; right: 18px; top: 50%; transform: translateY(-50%);
  width: 20px; height: 20px; stroke: rgba(248,246,240,0.25); fill: none; stroke-width: 1.5; pointer-events: none;
}

/* —— Contact channels —— */
.contact-section { padding: 0 var(--page-gutter) 80px; }
.contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 80px; }
.contact-card {
  background: var(--slate-card); border: 0.5px solid var(--line); border-radius: 16px; padding: 28px 24px;
  text-align: center; transition: border-color 0.2s, transform 0.15s; text-decoration: none; display: block;
}
.contact-card:hover { border-color: var(--line-md); transform: translateY(-2px); }
.cc-icon {
  width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.cc-icon svg { width: 22px; height: 22px; fill: none; stroke-width: 1.5; }
.cc-name { font-size: 15px; font-weight: 500; color: var(--white); margin-bottom: 6px; }
.cc-desc { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }
.cc-action { font-size: 12px; color: var(--teal); font-family: var(--mono); }

/* —— FAQ: Support (accordion, .faq-list) —— */
.faq-section { padding: 0 var(--page-gutter) 80px; }
.faq-cats { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.faq-cat {
  font-family: var(--font); font-size: 13px; padding: 8px 16px; border-radius: 8px;
  border: 0.5px solid var(--line); background: var(--slate-card); color: var(--muted);
  cursor: pointer; transition: all 0.15s;
}
.faq-cat:hover { color: var(--cream); border-color: var(--line-md); }
.faq-cat.active { color: var(--teal); border-color: var(--teal-border); background: var(--teal-light); }
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-list .faq-item { background: var(--slate-card); border: 0.5px solid var(--line); border-radius: 13px; overflow: hidden; }
.faq-q-row { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; cursor: pointer; transition: background 0.15s; }
.faq-q-row:hover { background: rgba(255,255,255,0.02); }
.faq-q-text { font-size: 15px; font-weight: 500; color: var(--white); line-height: 1.4; padding-right: 24px; }
.faq-chevron { width: 18px; height: 18px; stroke: var(--muted); fill: none; stroke-width: 1.5; flex-shrink: 0; transition: transform 0.2s; }
.faq-list .faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { display: none; padding: 0 24px 20px; font-size: 14px; color: var(--muted); line-height: 1.75; border-top: 0.5px solid var(--line); padding-top: 16px; }
.faq-list .faq-item.open .faq-answer { display: block; }
.faq-answer a { color: var(--teal); text-decoration: none; }
.faq-answer a:hover { text-decoration: underline; }
.faq-item[data-cat].hidden { display: none; }

/* —— FAQ: Pricing (static grid, .faq-grid) —— */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 40px; }
.faq-grid .faq-item {
  background: var(--slate-card); border: 0.5px solid var(--line); border-radius: 13px; padding: 24px;
  cursor: default; transition: border-color 0.15s;
}
.faq-grid .faq-item:hover { border-color: var(--line-md); }
.faq-q { font-size: 14px; font-weight: 500; color: var(--white); margin-bottom: 10px; line-height: 1.4; }
.faq-a { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* —— Status strip (support) —— */
.status-card {
  background: var(--slate-card); border: 0.5px solid var(--teal-border); border-radius: 16px; padding: 28px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.status-left { display: flex; align-items: center; gap: 14px; }
.status-dot {
  width: 12px; height: 12px; border-radius: 50%; background: var(--teal);
  box-shadow: 0 0 0 3px rgba(64,196,255,0.2);
  animation: statusPulse 2.5s infinite; flex-shrink: 0;
}
@keyframes statusPulse {
  0%,100%{ box-shadow: 0 0 0 3px rgba(64,196,255,0.2); }
  50%{ box-shadow: 0 0 0 6px rgba(64,196,255,0.1); }
}
.status-text h4 { font-size: 15px; font-weight: 500; color: var(--white); margin-bottom: 3px; }
.status-text p { font-size: 13px; color: var(--muted); }
.status-services { display: flex; gap: 12px; flex-wrap: wrap; }
.svc-pill {
  font-size: 11px; font-family: var(--mono); padding: 5px 12px; border-radius: 20px;
  background: var(--teal-light); color: var(--teal); border: 0.5px solid var(--teal-border);
  display: flex; align-items: center; gap: 5px;
}
.svc-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--teal); }
.status-link { font-size: 13px; color: var(--teal); text-decoration: none; font-family: var(--mono); white-space: nowrap; }

/* —— Docs grid —— */
.docs-section { padding: 80px var(--page-gutter); background: var(--slate-mid); }
.docs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 40px; }
.doc-card {
  background: var(--slate-card); border: 0.5px solid var(--line); border-radius: 14px; padding: 28px;
  text-decoration: none; display: block; transition: border-color 0.2s, transform 0.15s;
}
.doc-card:hover { border-color: var(--line-md); transform: translateY(-2px); }
.doc-icon {
  width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.doc-icon svg { width: 18px; height: 18px; fill: none; stroke-width: 1.5; }
.doc-name { font-size: 15px; font-weight: 500; color: var(--white); margin-bottom: 6px; }
.doc-desc { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 14px; }
.doc-link { font-size: 12px; color: var(--teal); font-family: var(--mono); }

/* —— Contact form (support) —— */
.contact-form-section { padding: 80px var(--page-gutter); }
.contact-form-section > .section-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.cf-left h3 { font-size: 26px; font-weight: 400; color: var(--white); letter-spacing: -0.02em; margin-bottom: 12px; }
.cf-left h3 em { font-style: italic; color: var(--teal); }
.cf-left p { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 28px; }
.cf-contacts { display: flex; flex-direction: column; gap: 14px; }
.cf-contact { display: flex; gap: 14px; align-items: flex-start; }
.cfc-icon {
  width: 36px; height: 36px; border-radius: 9px; background: var(--teal-light); border: 0.5px solid var(--teal-border);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cfc-icon svg { width: 16px; height: 16px; stroke: var(--teal); fill: none; stroke-width: 1.5; }
.cfc-label { font-size: 12px; color: var(--muted); margin-bottom: 2px; }
.cfc-val { font-size: 14px; color: var(--white); font-weight: 500; }
.contact-form { background: var(--slate-card); border: 0.5px solid var(--line); border-radius: 18px; padding: 36px; }
.form-title { font-size: 18px; font-weight: 500; color: var(--white); margin-bottom: 6px; }
.form-sub { font-size: 14px; color: var(--muted); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.form-row.full { grid-template-columns: 1fr; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 12px; font-weight: 500; color: rgba(248,246,240,0.5); }
.form-input, .form-select, .form-textarea {
  font-family: var(--font); font-size: 14px; color: var(--cream); background: var(--slate);
  border: 0.5px solid var(--line-md); border-radius: 9px; padding: 11px 14px; outline: none;
  transition: border-color 0.15s; width: 100%;
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(248,246,240,0.2); }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--teal-border); }
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='rgba(248,246,240,0.3)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; cursor: pointer;
}
.form-select option { background: var(--slate-card); }
.form-textarea { min-height: 100px; resize: vertical; line-height: 1.6; }
.form-submit {
  width: 100%; font-family: var(--font); font-size: 14px; font-weight: 500; color: var(--slate);
  background: var(--teal); border: none; border-radius: 10px; padding: 14px; cursor: pointer;
  transition: background 0.15s; margin-top: 8px;
}
.form-submit:hover { background: var(--teal-hover); }
.form-success { display: none; text-align: center; padding: 32px 16px; }
.form-success.show { display: block; }
.success-icon {
  width: 52px; height: 52px; border-radius: 50%; background: var(--teal-light); border: 0.5px solid var(--teal-border);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
}
.success-icon svg { width: 22px; height: 22px; stroke: var(--teal); fill: none; stroke-width: 2; }
.success-title { font-size: 18px; font-weight: 500; color: var(--white); margin-bottom: 8px; }
.success-sub { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* —— Contact page —— */
.contact-page .contact-hero-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-page .hcard {
  background: var(--slate-card);
  border: 0.5px solid var(--line);
  border-radius: 14px;
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: border-color 0.2s;
}
.contact-page .hcard:hover { border-color: var(--line-md); }
.contact-page .hcard.hcard-teal {
  border-color: var(--teal-border);
  background: rgba(64, 196, 255, 0.04);
}
.contact-page .hcard-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-page .hcard-icon svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.contact-page .hcard-icon.ic-teal { background: var(--teal-light); border: 0.5px solid var(--teal-border); color: var(--teal); }
.contact-page .hcard-icon.ic-blue { background: var(--blue-light); border: 0.5px solid var(--blue-border); color: var(--blue); }
.contact-page .hcard-icon.ic-amber { background: var(--amber-light); border: 0.5px solid var(--amber-border); color: var(--amber); }
.contact-page .hcard-icon.ic-purple { background: var(--purple-light); border: 0.5px solid var(--purple-border); color: var(--purple); }
.contact-page .hcard-body { flex: 1; min-width: 0; }
.contact-page .hcard-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
  font-family: var(--mono);
}
.contact-page .hcard-value { font-size: 15px; font-weight: 500; color: var(--white); letter-spacing: -0.01em; }
.contact-page .hcard-value a { color: var(--white); text-decoration: none; transition: color 0.15s; }
.contact-page .hcard-value a:hover { color: var(--teal); }
.contact-page .hcard-sub { font-size: 12px; color: var(--muted); margin-top: 2px; }

.contact-page .rt-strip {
  background: var(--slate-mid);
  border-top: 0.5px solid var(--line);
  border-bottom: 0.5px solid var(--line);
  padding: 28px var(--page-gutter);
}
.contact-page .rt-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px 32px;
  flex-wrap: wrap;
}
.contact-page .rt-item { display: flex; align-items: center; gap: 12px; }
.contact-page .rt-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 3px rgba(64, 196, 255, 0.18);
  flex-shrink: 0;
}
.contact-page .rt-dot.amber { background: var(--amber); box-shadow: 0 0 0 3px rgba(239, 159, 39, 0.18); }
.contact-page .rt-dot.blue { background: var(--blue); box-shadow: 0 0 0 3px rgba(55, 138, 221, 0.18); }
.contact-page .rt-label { font-size: 13px; color: var(--muted); line-height: 1.45; }
.contact-page .rt-label strong { color: var(--white); font-weight: 500; }
.contact-page .rt-label a.rt-link { color: var(--blue); text-decoration: none; }
.contact-page .rt-label a.rt-link:hover { text-decoration: underline; }
.contact-page .rt-divider { width: 0.5px; height: 24px; background: var(--line-md); flex-shrink: 0; }

.contact-split-section {
  padding: 80px var(--page-gutter);
  background: var(--slate-mid);
}
.contact-split-section .contact-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 80px;
  align-items: start;
}
.contact-page .contact-details { display: flex; flex-direction: column; gap: 8px; }
.contact-page .detail-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: var(--slate-card);
  border: 0.5px solid var(--line);
  border-radius: 12px;
  transition: border-color 0.2s;
}
.contact-page .detail-row:hover { border-color: var(--line-md); }
.contact-page .detail-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.contact-page .detail-icon svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.contact-page .detail-icon.ic-teal { background: var(--teal-light); border: 0.5px solid var(--teal-border); color: var(--teal); }
.contact-page .detail-icon.ic-blue { background: var(--blue-light); border: 0.5px solid var(--blue-border); color: var(--blue); }
.contact-page .detail-icon.ic-amber { background: var(--amber-light); border: 0.5px solid var(--amber-border); color: var(--amber); }
.contact-page .detail-icon.ic-coral { background: var(--coral-light); border: 0.5px solid var(--coral-border); color: var(--coral); }
.contact-page .detail-text h4 { font-size: 13px; font-weight: 500; color: var(--white); margin-bottom: 2px; }
.contact-page .detail-text p { font-size: 13px; color: var(--muted); line-height: 1.5; }
.contact-page .detail-text a { color: var(--teal); text-decoration: none; transition: opacity 0.15s; }
.contact-page .detail-text a:hover { opacity: 0.75; }

.contact-page .contact-divider { height: 0.5px; background: var(--line); margin: 8px 0; }
.contact-page .contact-follow-label {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 12px;
  font-family: var(--mono);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.contact-page .social-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.contact-page .social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  background: var(--slate-card);
  border: 0.5px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  text-decoration: none;
  transition: all 0.15s;
}
.contact-page .social-btn:hover { color: var(--cream); border-color: var(--line-md); }
.contact-page .social-btn svg { width: 15px; height: 15px; fill: currentColor; }

.contact-page .paths-section { padding: 80px var(--page-gutter); }
.contact-page .paths-inner { max-width: 1140px; margin: 0 auto; }
.contact-page .paths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 40px;
}
.contact-page .path-card {
  background: var(--slate-card);
  border: 0.5px solid var(--line);
  border-radius: 14px;
  padding: 28px 26px;
  transition: border-color 0.2s, transform 0.15s;
  cursor: default;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contact-page .path-card:hover { border-color: var(--line-md); transform: translateY(-2px); }
.contact-page .path-card.path-teal { border-color: var(--teal-border); background: rgba(64, 196, 255, 0.04); }
.contact-page .path-card.path-blue { border-color: var(--blue-border); background: rgba(55, 138, 221, 0.04); }
.contact-page .path-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.contact-page .path-icon svg { width: 18px; height: 18px; fill: none; stroke-width: 1.5; }
.contact-page .path-icon.ic-teal { background: var(--teal-light); border: 0.5px solid var(--teal-border); color: var(--teal); stroke: var(--teal); }
.contact-page .path-icon.ic-blue { background: var(--blue-light); border: 0.5px solid var(--blue-border); color: var(--blue); stroke: var(--blue); }
.contact-page .path-icon.ic-amber { background: var(--amber-light); border: 0.5px solid var(--amber-border); color: var(--amber); stroke: var(--amber); }
.contact-page .path-title { font-size: 16px; font-weight: 500; color: var(--white); margin-bottom: 8px; letter-spacing: -0.01em; }
.contact-page .path-desc { font-size: 13px; color: var(--muted); line-height: 1.65; margin-bottom: 20px; flex: 1; }
.contact-page .path-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 0.5px solid var(--line);
  margin-top: auto;
  gap: 12px;
}
.contact-page .path-contact { font-size: 12px; color: var(--muted); font-family: var(--mono); }
.contact-page .path-link { font-size: 12px; color: var(--teal); text-decoration: none; font-family: var(--mono); transition: opacity 0.15s; white-space: nowrap; }
.contact-page .path-link:hover { opacity: 0.7; }

.contact-split-section .form-title { font-size: 20px; font-weight: 500; color: var(--white); margin-bottom: 6px; letter-spacing: -0.01em; }

/* —— Pricing —— */
.pricing-section { padding: 0 var(--page-gutter) 80px; }
.pricing-section > .section-inner { max-width: 1140px; margin: 0 auto; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 24px; }
.plan-card {
  background: var(--slate-card); border: 0.5px solid var(--line); border-radius: 18px; padding: 36px 32px;
  display: flex; flex-direction: column; transition: border-color 0.2s, transform 0.15s;
}
.plan-card:hover { transform: translateY(-3px); }
.plan-card.featured {
  border-color: var(--teal-border); border-width: 1.5px;
  background: linear-gradient(160deg, rgba(64,196,255,0.06) 0%, var(--slate-card) 60%);
}
.plan-popular {
  font-size: 10px; font-weight: 500; font-family: var(--mono); color: var(--teal);
  background: var(--teal-light); border: 0.5px solid var(--teal-border); padding: 3px 10px;
  border-radius: 20px; display: inline-block; margin-bottom: 20px;
}
.plan-name { font-size: 13px; font-weight: 500; color: var(--muted); letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 8px; font-family: var(--mono); }
.plan-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 4px; }
.plan-price-val { font-size: 52px; font-weight: 300; color: var(--white); letter-spacing: -0.04em; line-height: 1; }
.plan-price-curr { font-size: 22px; font-weight: 300; color: var(--white); align-self: flex-start; padding-top: 10px; }
.plan-price-per { font-size: 14px; color: var(--muted); }
.plan-txn { font-size: 14px; color: var(--teal); font-family: var(--mono); margin-bottom: 6px; }
.plan-desc { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 28px; }
.plan-divider { border: none; border-top: 0.5px solid var(--line); margin-bottom: 24px; }
.plan-features { display: flex; flex-direction: column; gap: 10px; flex: 1; margin-bottom: 28px; }
.pf-row { display: flex; align-items: flex-start; gap: 10px; }
.pf-check {
  width: 16px; height: 16px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.pf-check svg { width: 8px; height: 8px; stroke-width: 2.5; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.ck-teal { background: var(--teal-light); border: 0.5px solid var(--teal-border); }
.ck-teal svg { stroke: var(--teal); }
.pf-text { font-size: 13px; color: rgba(248,246,240,0.7); line-height: 1.5; }
.pf-text strong { color: var(--white); font-weight: 500; }
.plan-cta {
  font-family: var(--font); font-size: 14px; font-weight: 500; text-align: center; padding: 13px; border-radius: 10px;
  text-decoration: none; display: block; transition: all 0.15s;
}
.cta-teal { background: var(--teal); color: var(--slate); }
.cta-teal:hover { background: var(--teal-hover); transform: translateY(-1px); }
.pricing-section .cta-outline { background: none; border: 0.5px solid var(--line-md); color: var(--cream); }
.pricing-section .cta-outline:hover { border-color: var(--teal-border); color: var(--teal); }

.billing-toggle {
  display: inline-flex; background: var(--slate-card); border: 0.5px solid var(--line-md); border-radius: 10px; padding: 4px; gap: 4px; margin-bottom: 64px;
}
.toggle-btn {
  font-family: var(--font); font-size: 13px; font-weight: 500; padding: 8px 20px; border-radius: 7px; border: none; cursor: pointer;
  background: none; color: var(--muted); transition: all 0.15s;
}
.toggle-btn.active { background: var(--teal); color: var(--slate); }
.save-badge {
  display: inline-block; font-size: 10px; font-weight: 500; font-family: var(--mono); padding: 2px 8px; border-radius: 20px;
  background: var(--amber-light); color: var(--amber); border: 0.5px solid var(--amber-border); margin-left: 6px; vertical-align: middle;
}

.enterprise-card {
  background: var(--slate-mid); border: 0.5px solid var(--line); border-radius: 16px; padding: 36px 40px;
  display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; margin-bottom: 20px;
}
.ent-left h3 { font-size: 22px; font-weight: 400; color: var(--white); letter-spacing: -0.02em; margin-bottom: 8px; }
.ent-left h3 em { font-style: italic; color: var(--teal); }
.ent-left p { font-size: 15px; color: var(--muted); line-height: 1.65; max-width: 520px; margin-bottom: 16px; }
.ent-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.ent-tag {
  font-size: 11px; font-family: var(--mono); padding: 3px 10px; border-radius: 20px;
  background: var(--teal-light); color: var(--teal); border: 0.5px solid var(--teal-border);
}
.ent-right { text-align: center; }
.ent-cta {
  font-family: var(--font); font-size: 14px; font-weight: 500; color: var(--slate); background: var(--teal); border: none; border-radius: 10px;
  padding: 14px 28px; text-decoration: none; display: inline-block; white-space: nowrap; transition: background 0.15s;
}
.ent-cta:hover { background: var(--teal-hover); }
.ent-sub { font-size: 12px; color: var(--muted); margin-top: 8px; }

/* Pricing comparison table (uses .feature-table) */
.feature-table tr.feat-group-header td {
  padding: 20px 16px 8px; font-size: 10px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(248,246,240,0.25); border-top: none;
}
.disclaimer {
  font-size: 12px; color: rgba(248,246,240,0.5); line-height: 1.6; max-width: 1140px; margin: 0; text-align: center; padding: 0;
}

.faq-section.faq-section--muted { padding: 80px var(--page-gutter); background: var(--slate-mid); }

/* —— Company —— */
.mission-section { padding: 80px var(--page-gutter); background: var(--slate-mid); }
.mission-quote {
  font-size: 28px; font-weight: 300; line-height: 1.5; color: var(--white); letter-spacing: -0.02em; font-style: italic; margin-bottom: 24px;
}
.mission-quote.title {
  font-style: normal;
  margin-bottom: 100px;
}
.mission-quote span { color: var(--teal); font-style: normal; }
.mission-attr { font-size: 13px; color: var(--muted); font-family: var(--mono); }
.mission-right p { font-size: 16px; font-weight: 300; color: var(--muted); line-height: 1.75; margin-bottom: 20px; }
.mission-right p:last-child { margin-bottom: 0; }
.mission-section > .section-inner.quote { max-width: 1140px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.quote .tile-card { margin-top: 75px; }
.timeline-section { padding: 80px var(--page-gutter); background: var(--slate-mid); }
.timeline-section > .section-inner { max-width: 1140px; margin: 0 auto; }
.timeline-section .section-sub { max-width: none; }
.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: ''; position: absolute; left: 0; top: 8px; bottom: 8px; width: 1px; background: var(--line-md);
}
.tl-item { position: relative; margin-bottom: 44px; }
.tl-item:last-child { margin-bottom: 0; }
.tl-dot {
  position: absolute; left: -36px; top: 6px; width: 10px; height: 10px; border-radius: 50%; background: var(--teal);
  border: 2px solid var(--slate-mid); box-shadow: 0 0 0 3px rgba(64,196,255,0.2);
}
.tl-date { font-size: 11px; font-family: var(--mono); color: var(--teal); letter-spacing: 0.06em; margin-bottom: 6px; text-transform: uppercase; }
.tl-title { font-size: 18px; font-weight: 500; color: var(--white); margin-bottom: 8px; letter-spacing: -0.01em; }
.tl-desc { font-size: 14px; color: var(--muted); line-height: 1.65; max-width: 560px; }
.tl-tag {
  display: inline-block; font-size: 10px; font-family: var(--mono); padding: 2px 9px; border-radius: 20px;
  background: var(--teal-light); color: var(--teal); border: 0.5px solid var(--teal-border); margin-top: 10px;
}

.tile-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 48px; }
.tile-card {
  background: var(--slate-card); border: 0.5px solid var(--line); border-radius: 16px; padding: 32px;
  transition: border-color 0.2s, transform 0.15s;
}
.tile-card:hover { border-color: var(--line-md); transform: translateY(-2px); }
.tile-icon {
  width: 44px; height: 44px; border-radius: 11px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.tile-icon svg { width: 20px; height: 20px; fill: none; stroke-width: 1.5; }
.tile-title { font-size: 18px; font-weight: 500; color: var(--white); margin-bottom: 10px; letter-spacing: -0.01em; }
.tile-desc { font-size: 14px; color: var(--muted); line-height: 1.7; }

section.featured-quote.section--mid { padding: 80px var(--page-gutter); }
.featured-quote > .section-inner { max-width: 1140px; margin: 0 auto; }
.featured-quote-card {
  background: var(--slate-card); border: 0.5px solid var(--line); border-radius: 18px; padding: 48px;
  display: grid; grid-template-columns: auto 1fr; gap: 48px; align-items: center;
}
.featured-quote .quote-mark {
  font-size: 80px; font-weight: 300; color: var(--teal); line-height: 0.6; opacity: 0.5;
}
.featured-quote .quote-text {
  font-size: 22px; font-weight: 300; line-height: 1.6; color: var(--white); font-style: italic;
  letter-spacing: -0.01em; margin-bottom: 20px;
}
.featured-quote .quote-attr-name { font-size: 14px; font-weight: 500; color: var(--white); }
.featured-quote .quote-attr-role { font-size: 13px; color: var(--muted); margin-top: 2px; }

.team-section { padding: 80px var(--page-gutter); }
.team-section > .section-inner { max-width: 1140px; margin: 0 auto; }
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; margin-top: 48px; }
.team-beliefs { display: flex; flex-direction: column; gap: 16px; }
.belief-row { display: flex; gap: 16px; align-items: flex-start; }
.belief-icon {
  width: 36px; height: 36px; border-radius: 9px; background: var(--teal-light); border: 0.5px solid var(--teal-border);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px;
}
.belief-icon svg { width: 16px; height: 16px; stroke: var(--teal); fill: none; stroke-width: 1.5; }
.belief-title { font-size: 15px; font-weight: 500; color: var(--white); margin-bottom: 4px; }
.belief-desc { font-size: 14px; color: var(--muted); line-height: 1.65; }
.team-right p { font-size: 16px; font-weight: 300; color: var(--muted); line-height: 1.75; margin-bottom: 20px; }
.team-right blockquote {
  font-size: 20px; font-weight: 300; font-style: italic; color: var(--cream); border-left: 2px solid var(--teal);
  padding-left: 20px; margin: 28px 0; line-height: 1.55; letter-spacing: -0.01em;
}
.team-right cite { font-size: 12px; color: var(--muted); font-family: var(--mono); font-style: normal; }

/* —— Responsive: support / pricing / company blocks —— */
@media (max-width: 991.98px) {
  .hero-values { grid-template-columns: 1fr; max-width: none; margin: 0; }
  .contact-split-section .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-page .paths-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
  .contact-page .rt-divider { display: none; }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .status-card { flex-wrap: wrap; align-items: flex-start; gap: 20px; }
  .status-services { justify-content: flex-start; }
  .docs-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-form-section > .section-inner { grid-template-columns: 1fr; gap: 48px; }
  .pricing-grid {
    grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto;
  }
  .enterprise-card {
    grid-template-columns: 1fr; gap: 28px; padding: 28px 24px; margin-bottom: 20px; text-align: center;
  }
  .ent-left { text-align: center; }
  .ent-left p { max-width: none; }
  .ent-right { text-align: center; }
  .ent-tags { justify-content: center; }
  .faq-grid { grid-template-columns: 1fr; }
  /* Mission two-column grid lives on .section-inner.quote, not bare .section-inner */
  .mission-section > .section-inner.quote {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .quote .tile-card {
    margin-top: 28px;
  }
  .mission-section,
  .team-section {
    padding: 56px var(--page-gutter);
  }
  section.featured-quote.section--mid {
    padding: 48px var(--page-gutter) 56px;
  }
  .home-intro-tiles { grid-template-columns: 1fr; }
  .home-intro-b-rows { grid-template-columns: 1fr; }
  .home-intro-b-or {
    justify-self: center;
    margin: 4px 0 0;
    font-size: clamp(28px, 8vw, 30px);
  }
  .home-intro-b-channel-group--pay {
    border-left: none;
    padding-left: 0;
    margin-left: 0;
    width: 100%;
    justify-content: center;
  }
  .tile-grid { grid-template-columns: 1fr; }
  .featured-quote-card { grid-template-columns: 1fr; gap: 24px; padding: 32px 24px; text-align: center; }
  .featured-quote .quote-mark { font-size: 56px; }
  .team-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 767.98px) {
  .home-intro-b-row {
    grid-template-columns: 1fr;
    padding: 24px 22px;
    gap: 14px;
  }
  .home-intro-b-icon { justify-self: start; }
  .timeline {
    padding-left: 22px;
  }
  .tl-dot {
    left: -28px;
  }
  .tl-title {
    font-size: 16px;
  }
  .tl-desc {
    font-size: 13px;
    max-width: none;
  }
  .belief-row > div:last-child {
    min-width: 0;
  }
  .belief-title,
  .belief-desc {
    overflow-wrap: anywhere;
  }
  .contact-split-section { padding: 56px var(--page-gutter); }
  .contact-page .paths-section { padding: 56px var(--page-gutter); }
  .contact-page .rt-strip { padding: 22px var(--page-gutter); }
  .search-wrap { max-width: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .status-card { flex-direction: column; align-items: flex-start; }
  .status-link { white-space: normal; }
  .docs-grid { grid-template-columns: 1fr; }
  .faq-q-row { padding: 16px 18px; }
  .faq-q-text { font-size: 14px; padding-right: 12px; }
  .faq-answer { padding: 0 18px 16px; }
  .faq-cat { font-size: 12px; padding: 8px 12px; }
  .contact-form { padding: 28px 22px; }
  .billing-toggle { flex-wrap: wrap; justify-content: center; row-gap: 8px; }
  .toggle-btn { padding: 8px 14px; font-size: 12px; }
  .plan-card { padding: 28px 22px; }
  .plan-price-val { font-size: 44px; }
  .compare-section > .section-inner { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .compare-section .feature-table { min-width: 560px; }
  .faq-grid .faq-item { padding: 20px; }
}

@media (max-width: 575.98px) {
  .contact-card { padding: 22px 18px; }
  .mission-quote { font-size: 22px; }
  .mission-section > .section-inner.quote {
    gap: 28px;
  }
  .mission-right p {
    font-size: 15px;
  }
  .tile-card { padding: 24px 20px; }
  .tile-title {
    font-size: 16px;
  }
  .tile-desc {
    font-size: 13px;
  }
  .featured-quote .quote-text { font-size: 18px; }
  .team-right blockquote { font-size: 18px; padding-left: 16px; }
  .save-badge { margin-top: 4px; }
  .plan-price-curr { font-size: 18px; padding-top: 6px; }

  .page-layout--legal .main-content {
    padding: 18px var(--page-gutter);
  }
  .page-layout--legal .legal-sidebar-header {
    padding: 0 18px 18px;
  }
  .page-layout--legal .legal-sidebar-contact {
    margin: 16px;
    padding: 14px 12px;
  }
  .page-layout--legal .sidebar-link {
    font-size: 12px;
    padding: 8px 18px;
  }
}

/* =============================================================================
   Legal hub — sidebar + document panels (pages/legal.content.html)
   ============================================================================= */

.page-layout--legal {
  grid-template-columns: 260px 1fr;
}
.page-layout--legal .legal-sidebar-header {
  padding: 0 24px 24px;
  border-bottom: 0.5px solid var(--slate-line);
  margin-bottom: 24px;
}
.page-layout--legal .legal-sidebar-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 4px;
}
.page-layout--legal .legal-sidebar-sub {
  font-size: 12px;
  color: var(--slate-muted);
  line-height: 1.5;
}
.page-layout--legal .sidebar > .sidebar-label {
  margin-top: 20px;
  margin-bottom: 8px;
}
.page-layout--legal .sidebar > .legal-sidebar-header + .sidebar-label {
  margin-top: 0;
}
.page-layout--legal .sidebar-link {
  display: flex;
  align-items: center;
  gap: 10px;
  border-right: 2px solid transparent;
}
.page-layout--legal .sidebar-link.active {
  border-right-color: var(--teal);
}
.page-layout--legal .sidebar-link-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.5;
  flex-shrink: 0;
}
.page-layout--legal .sidebar-link.active .sidebar-link-dot {
  opacity: 1;
}
.page-layout--legal .legal-sidebar-updated {
  font-size: 10px;
  font-family: var(--mono);
  color: rgba(248, 246, 240, 0.2);
  margin-top: 4px;
  padding: 0 24px;
}
.page-layout--legal .legal-sidebar-contact {
  margin: 24px;
  padding: 16px;
  background: var(--teal-light);
  border: 0.5px solid var(--teal-border);
  border-radius: 10px;
}
.page-layout--legal .legal-sidebar-contact p {
  font-size: 12px;
  color: rgba(248, 246, 240, 0.6);
  line-height: 1.6;
  margin-bottom: 8px;
}
.page-layout--legal .legal-sidebar-contact a {
  font-size: 12px;
  color: var(--teal);
  text-decoration: none;
  font-family: var(--mono);
}
.page-layout--legal .legal-sidebar-contact a:hover {
  text-decoration: underline;
}

.page-layout--legal .doc-panel {
  display: none;
}
.page-layout--legal .doc-panel.active {
  display: block;
}
.page-layout--legal .doc-header {
  border-bottom: 0.5px solid var(--slate-line);
  margin-bottom: 36px;
}
.page-layout--legal .doc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}
.page-layout--legal .doc-eyebrow-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--teal);
}
.page-layout--legal .doc-title {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 300;
  letter-spacing: -0.025em;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 14px;
}
.page-layout--legal .doc-title em {
  font-style: italic;
  color: var(--teal);
}
.page-layout--legal .doc-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.page-layout--legal .doc-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--slate-muted);
}
.page-layout--legal .doc-meta-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--slate-muted);
}

.page-layout--legal .doc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.page-layout--legal .doc-action-btn {
  font-family: var(--font);
  font-size: 12px;
  color: var(--slate-muted);
  background: var(--slate-card);
  border: 0.5px solid var(--slate-line);
  border-radius: 8px;
  padding: 8px 14px;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
}
.page-layout--legal .doc-action-btn:hover {
  border-color: rgba(248, 246, 240, 0.15);
  color: var(--cream);
}
.page-layout--legal .doc-action-btn svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.page-layout--legal .doc-toc {
  background: var(--slate-card);
  border: 0.5px solid var(--slate-line);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 36px;
}
.page-layout--legal .doc-toc-title {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--slate-muted);
  margin-bottom: 12px;
  font-family: var(--mono);
}
.page-layout--legal .doc-toc-list {
  list-style: none;
}
.page-layout--legal .doc-toc-list li {
  margin-bottom: 5px;
}
.page-layout--legal .doc-toc-list a {
  font-size: 13px;
  color: var(--slate-muted);
  text-decoration: none;
  transition: color 0.15s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.page-layout--legal .doc-toc-list a:hover {
  color: var(--teal);
}
.page-layout--legal .doc-toc-list a::before {
  content: '';
  width: 14px;
  height: 0.5px;
  background: var(--slate-muted);
  opacity: 0.4;
  flex-shrink: 0;
}

.page-layout--legal .doc-prose {
  line-height: 1.8;
}
.page-layout--legal .doc-prose h2 {
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  margin: 36px 0 12px;
  letter-spacing: -0.01em;
  padding-top: 36px;
  border-top: 0.5px solid var(--slate-line);
}
.page-layout--legal .doc-prose h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.page-layout--legal .doc-prose h3 {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  margin: 24px 0 8px;
}
.page-layout--legal .doc-prose p {
  font-size: 14px;
  color: var(--slate-muted);
  margin-bottom: 14px;
  line-height: 1.8;
}
.page-layout--legal .doc-prose p:last-child {
  margin-bottom: 0;
}
.page-layout--legal .doc-prose ul,
.page-layout--legal .doc-prose ol {
  margin: 12px 0 16px 20px;
}
.page-layout--legal .doc-prose li {
  font-size: 14px;
  color: var(--slate-muted);
  margin-bottom: 7px;
  line-height: 1.7;
}
.page-layout--legal .doc-prose a {
  color: var(--teal);
  text-decoration: none;
}
.page-layout--legal .doc-prose a:hover {
  text-decoration: underline;
}
.page-layout--legal .doc-prose strong {
  color: var(--cream);
  font-weight: 500;
}

.page-layout--legal .doc-callout {
  background: var(--teal-light);
  border: 0.5px solid var(--teal-border);
  border-radius: 10px;
  padding: 16px 20px;
  margin: 20px 0;
}
.page-layout--legal .doc-callout p {
  font-size: 13px;
  color: rgba(248, 246, 240, 0.7);
  margin: 0;
  line-height: 1.65;
}
.page-layout--legal .doc-callout strong {
  color: var(--teal);
}
.page-layout--legal .doc-callout-amber {
  background: var(--amber-light);
  border-color: var(--amber-border);
}
.page-layout--legal .doc-callout-amber p {
  color: rgba(248, 246, 240, 0.7);
}
.page-layout--legal .doc-callout-amber strong {
  color: var(--amber);
}

.page-layout--legal .def-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 20px;
  margin: 16px 0;
}
.page-layout--legal .def-term {
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  padding: 4px 0;
  white-space: nowrap;
  font-family: var(--mono);
}
.page-layout--legal .def-desc {
  font-size: 13px;
  color: var(--slate-muted);
  padding: 4px 0;
  line-height: 1.6;
}

.page-layout--legal .doc-section {
  scroll-margin-top: 80px;
}

@media print {
  .page-layout--legal .sidebar {
    display: none;
  }
  .page-layout--legal {
    display: block;
    padding-top: 0;
  }
  .page-layout--legal .main-content {
    max-width: none;
    padding: 24px;
  }
  .page-layout--legal .doc-panel:not(.active) {
    display: none !important;
  }
  .page-layout--legal .doc-panel.active {
    display: block !important;
  }
}

/* =============================================================================
   Blog listing (pages/blog.content.html, body.blog-page)
   ============================================================================= */

.blog-page {
  --font-serif: 'DM Serif Display', Georgia, serif;
}

.blog-page .hero {
  min-height: auto;
  display: block;
  align-items: unset;
  padding: 120px var(--page-gutter) 64px;
  overflow: hidden;
  position: relative;
}
.blog-page .hero > .hero-grid {
  opacity: 0.02;
}
.blog-page .glow {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 600px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(64, 196, 255, 0.07) 0%, transparent 65%);
  pointer-events: none;
}
.blog-page .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 18px;
}
.blog-page .eyebrow-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--teal);
}
.blog-page .hero-h1 {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 16px;
  max-width: none;
}
.blog-page .hero-h1 em {
  font-style: italic;
  color: var(--teal);
  font-weight: 400;
}
.blog-page .hero-sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 0;
}

.blog-page .featured-section {
  padding: 0 var(--page-gutter) 64px;
}
.blog-page .featured-inner {
  max-width: 1140px;
  margin: 0 auto;
}
.blog-page .featured-card {
  background: var(--slate-card);
  border: 0.5px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  transition: border-color 0.2s;
  text-decoration: none;
}
.blog-page .featured-card:hover {
  border-color: var(--line-md);
}
.blog-page .featured-visual {
  background: var(--slate-mid);
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  padding: 32px;
  overflow: hidden;
}
.blog-page .featured-visual-bg {
  position: absolute;
  inset: 0;
}
.blog-page .featured-visual-content {
  position: relative;
  z-index: 1;
}
.blog-page .featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-light);
  border: 0.5px solid var(--teal-border);
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.blog-page .featured-visual h2 {
  font-size: 28px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.blog-page .featured-body {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.blog-page .post-cat {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 16px;
  font-family: var(--mono);
}
.blog-page .featured-body h3 {
  font-size: 26px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.blog-page .featured-body p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.72;
  margin-bottom: 24px;
}
.blog-page .post-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.blog-page .post-author {
  display: flex;
  align-items: center;
  gap: 8px;
}
.blog-page .author-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 500;
  font-family: var(--mono);
  color: var(--white);
  flex-shrink: 0;
}
.blog-page .author-name {
  font-size: 13px;
  color: var(--muted);
}
.blog-page .meta-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--muted);
  opacity: 0.4;
}
.blog-page .meta-date {
  font-size: 13px;
  color: var(--muted);
  font-family: var(--mono);
}
.blog-page .meta-read {
  font-size: 13px;
  color: var(--muted);
}
.blog-page .read-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: var(--teal);
  text-decoration: none;
  transition: gap 0.15s;
}
.blog-page .featured-card:hover .read-link {
  gap: 10px;
}
.blog-page .read-arrow {
  font-size: 14px;
}

.blog-page .filter-section {
  padding: 0 var(--page-gutter) 32px;
}
.blog-page .filter-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.blog-page .filter-btn {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 8px;
  border: 0.5px solid var(--line);
  background: var(--slate-card);
  color: var(--muted);
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}
.blog-page .filter-btn:hover {
  color: var(--cream);
  border-color: var(--line-md);
}
.blog-page .filter-btn.active {
  color: var(--teal);
  border-color: var(--teal-border);
  background: var(--teal-light);
}
.blog-page .filter-count {
  font-size: 11px;
  color: rgba(248, 246, 240, 0.2);
  font-family: var(--mono);
  margin-left: auto;
}

.blog-page .grid-section {
  padding: 0 var(--page-gutter) 80px;
}
.blog-page .grid-inner {
  max-width: 1140px;
  margin: 0 auto;
}
.blog-page .posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.blog-page .post-card {
  background: var(--slate-card);
  border: 0.5px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.15s;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
.blog-page .post-card:hover {
  border-color: var(--line-md);
  transform: translateY(-3px);
}
.blog-page .post-card.hidden {
  display: none;
}
.blog-page .card-visual {
  height: 180px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.blog-page .card-visual-bg {
  position: absolute;
  inset: 0;
}
.blog-page .card-body {
  padding: 22px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-page .card-cat {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 20px;
  font-family: var(--mono);
  display: inline-block;
  margin-bottom: 12px;
  align-self: flex-start;
}
.blog-page .card-title {
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.blog-page .card-excerpt {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 18px;
  flex: 1;
}
.blog-page .card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 0.5px solid var(--line);
  margin-top: auto;
}
.blog-page .card-author-row {
  display: flex;
  align-items: center;
  gap: 7px;
}
.blog-page .card-author-name {
  font-size: 12px;
  color: var(--muted);
}
.blog-page .card-date {
  font-size: 11px;
  color: rgba(248, 246, 240, 0.25);
  font-family: var(--mono);
}

.blog-page .newsletter-section {
  padding: 0 var(--page-gutter) 80px;
}
.blog-page .newsletter-inner {
  max-width: 1140px;
  margin: 0 auto;
}
.blog-page .newsletter-card {
  background: var(--slate-mid);
  border: 0.5px solid var(--line);
  border-radius: 18px;
  padding: 52px 56px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.blog-page .nl-glow {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 400px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(64, 196, 255, 0.07) 0%, transparent 70%);
  pointer-events: none;
}
.blog-page .nl-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.blog-page .nl-title {
  font-size: 28px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.blog-page .nl-title em {
  font-style: italic;
  color: var(--teal);
}
.blog-page .nl-sub {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}
.blog-page .nl-form {
  display: flex;
  gap: 8px;
  position: relative;
  flex-wrap: wrap;
}
.blog-page .nl-input {
  font-family: var(--font);
  font-size: 14px;
  color: var(--cream);
  background: var(--slate-card);
  border: 0.5px solid var(--line-md);
  border-radius: 10px;
  padding: 13px 18px;
  outline: none;
  width: 280px;
  max-width: 100%;
  transition: border-color 0.15s;
}
.blog-page .nl-input::placeholder {
  color: rgba(248, 246, 240, 0.22);
}
.blog-page .nl-input:focus {
  border-color: var(--teal-border);
}
.blog-page .nl-btn {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  color: var(--slate);
  background: var(--teal);
  border: none;
  border-radius: 10px;
  padding: 13px 22px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
}
.blog-page .nl-btn:hover {
  background: var(--teal-hover);
}
.blog-page .nl-privacy {
  font-size: 11px;
  color: rgba(248, 246, 240, 0.2);
  margin-top: 10px;
}
.blog-page .nl-success {
  display: none;
  font-size: 14px;
  color: var(--teal);
  font-family: var(--mono);
}
.blog-page .nl-success.show {
  display: block;
}

@media (max-width: 991.98px) {
  .blog-page .hero {
    padding: 100px var(--page-gutter) 56px;
    min-height: auto;
  }
  .blog-page .featured-card {
    grid-template-columns: 1fr;
  }
  .blog-page .featured-visual {
    min-height: 260px;
  }
  .blog-page .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog-page .newsletter-card {
    grid-template-columns: 1fr;
    padding: 40px 36px;
    gap: 32px;
  }
}

@media (max-width: 767.98px) {
  .blog-page .hero {
    padding: 100px var(--page-gutter) 48px;
  }
  .blog-page .posts-grid {
    grid-template-columns: 1fr;
  }
  .blog-page .nl-form {
    flex-direction: column;
    align-items: stretch;
  }
  .blog-page .nl-input {
    width: 100%;
  }
  .blog-page .newsletter-card {
    padding: 32px 24px;
  }
}

/* =============================================================================
   Blog posts (body.blog-post, pages/blog/*.content.html)
   ============================================================================= */

.blog-post {
  --font-serif: 'DM Serif Display', Georgia, serif;
}

.blog-post .breadcrumb {
  padding: 125px var(--page-gutter) 0;
}
.blog-post .breadcrumb-inner {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
}
.blog-post .bc-link {
  font-size: 13px;
  color: rgba(248, 246, 240, 0.65);
  text-decoration: none;
}
.blog-post .bc-link:hover {
  color: var(--cream);
}
.blog-post .bc-sep {
  font-size: 13px;
  color: rgba(248, 246, 240, 0.2);
}
.blog-post .bc-current {
  font-size: 13px;
  color: var(--muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: min(400px, 55vw);
}

.blog-post .article-hero {
  padding: 32px var(--page-gutter) 48px;
}
.blog-post .article-inner {
  max-width: 980px;
  margin: 0 auto;
}
.blog-post .article-cat {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
  font-family: var(--mono);
  background: var(--teal-light);
  color: var(--teal);
  border: 0.5px solid var(--teal-border);
}
.blog-post .article-title {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 18px;
}
.blog-post .article-excerpt {
  font-size: 18px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 28px;
}
.blog-post .article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-bottom: 32px;
  border-bottom: 0.5px solid var(--line);
}
.blog-post .article-hero .author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
  font-family: var(--mono);
  flex-shrink: 0;
  background: var(--teal-light);
  color: var(--teal);
}
.blog-post .article-hero .author-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
}
.blog-post .author-role {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}
.blog-post .meta-sep {
  width: 0.5px;
  height: 28px;
  background: var(--line-md);
}
.blog-post .meta-label {
  font-size: 10px;
  color: rgba(248, 246, 240, 0.25);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-family: var(--mono);
}
.blog-post .meta-val {
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
}

.blog-post .article-visual {
  padding: 0 var(--page-gutter) 48px;
}
.blog-post .article-visual-inner {
  max-width: 980px;
  margin: 0 auto;
}
.blog-post .vis-card {
  height: 340px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--slate-mid);
  border: 0.5px solid var(--line);
  position: relative;
}

.blog-post .article-layout {
  padding: 0 var(--page-gutter) 80px;
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 56px;
  max-width: 1080px;
  margin: 0 auto;
}
.blog-post .article-body h2 {
  font-size: 26px;
  font-weight: 400;
  color: var(--white);
  margin: 40px 0 14px;
  letter-spacing: -0.01em;
  padding-top: 40px;
  border-top: 0.5px solid var(--line);
}
.blog-post .article-body h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.blog-post .article-body h3 {
  font-size: 17px;
  font-weight: 500;
  color: var(--white);
  margin: 24px 0 8px;
}
.blog-post .article-body p {
  font-size: 16px;
  color: rgba(248, 246, 240, 0.62);
  line-height: 1.82;
  margin-bottom: 18px;
}
.blog-post .article-body ul,
.blog-post .article-body ol {
  margin: 14px 0 20px 22px;
}
.blog-post .article-body li {
  font-size: 16px;
  color: rgba(248, 246, 240, 0.62);
  margin-bottom: 9px;
  line-height: 1.72;
}
.blog-post .article-body strong {
  color: var(--cream);
  font-weight: 500;
}
.blog-post .article-body a {
  color: var(--teal);
  text-decoration: none;
}
.blog-post .article-body a:hover {
  text-decoration: underline;
}
.blog-post .article-body blockquote {
  border-left: 2px solid var(--teal);
  padding: 4px 0 4px 20px;
  margin: 24px 0;
  font-family: var(--font-serif);
  font-size: 20px;
  font-style: italic;
  color: var(--cream);
  line-height: 1.5;
}
.blog-post .callout {
  background: var(--teal-light);
  border: 0.5px solid var(--teal-border);
  border-radius: 10px;
  padding: 18px 22px;
  margin: 24px 0;
}
.blog-post .callout p {
  font-size: 14px;
  color: rgba(248, 246, 240, 0.7);
  margin: 0;
  line-height: 1.68;
}
.blog-post .callout strong {
  color: var(--teal);
}
.blog-post .article-body code {
  font-family: var(--mono);
  font-size: 13px;
  background: var(--slate-card);
  border: 0.5px solid var(--line-md);
  border-radius: 5px;
  padding: 2px 7px;
  color: var(--teal);
}
.blog-post .article-body pre {
  background: var(--slate-card);
  border: 0.5px solid var(--line);
  border-radius: 12px;
  padding: 24px;
  margin: 20px 0;
  overflow-x: auto;
}
.blog-post .article-body pre code {
  background: none;
  border: none;
  padding: 0;
  font-size: 13px;
  line-height: 1.8;
  color: rgba(248, 246, 240, 0.7);
}
.blog-post .article-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 32px 0;
  padding: 24px 0;
  border-top: 0.5px solid var(--line);
}
.blog-post .atag {
  font-size: 11px;
  font-family: var(--mono);
  padding: 4px 11px;
  border-radius: 20px;
  background: var(--slate-card);
  border: 0.5px solid var(--line);
  color: var(--muted);
}

.blog-post .sidebar-sticky {
  position: sticky;
  top: 88px;
}
.blog-post .sb-box {
  background: var(--slate-card);
  border: 0.5px solid var(--line);
  border-radius: 13px;
  padding: 20px;
  margin-bottom: 14px;
}
.blog-post .sb-box-title {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(248, 246, 240, 0.25);
  font-family: var(--mono);
  margin-bottom: 12px;
}
.blog-post .sb-box ul {
  list-style: none;
}
.blog-post .sb-box ul li {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.3;
  color: var(--muted);
}
.blog-post .sb-box ul li a {
  font-size: 12px;
  color: var(--muted);
  text-decoration: none;
  line-height: 1.5;
  display: block;
  transition: color 0.15s;
}
.blog-post .sb-box ul li a:hover {
  color: var(--teal);
}
.blog-post .share-btn {
  display: flex;
  align-items: center;
  gap: 9px;
  width: 100%;
  font-family: var(--font);
  font-size: 13px;
  color: var(--muted);
  background: none;
  border: 0.5px solid var(--line);
  border-radius: 8px;
  padding: 9px 13px;
  cursor: pointer;
  margin-bottom: 7px;
  transition: color 0.15s, border-color 0.15s;
}
.blog-post .share-btn:hover {
  color: var(--cream);
  border-color: var(--line-md);
}
.blog-post .share-btn svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  flex-shrink: 0;
}
.blog-post .sb-cta {
  background: var(--teal-light);
  border: 0.5px solid var(--teal-border);
  border-radius: 13px;
  padding: 20px;
}
.blog-post .sb-cta-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 6px;
}
.blog-post .sb-cta-sub {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 14px;
}
.blog-post .sb-cta-btn {
  display: block;
  text-align: center;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 500;
  color: var(--slate);
  background: var(--teal);
  border: none;
  border-radius: 8px;
  padding: 10px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s;
}
.blog-post .sb-cta-btn:hover {
  background: var(--teal-hover);
}

.blog-post .prev-next {
  padding: 0 var(--page-gutter) 64px;
}
.blog-post .prev-next-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.blog-post .pn-card {
  background: var(--slate-card);
  border: 0.5px solid var(--line);
  border-radius: 14px;
  padding: 24px;
  text-decoration: none;
  display: block;
  transition: border-color 0.2s, transform 0.15s;
}
.blog-post .pn-card:hover {
  border-color: var(--line-md);
  transform: translateY(-2px);
}
.blog-post .pn-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(248, 246, 240, 0.25);
  font-family: var(--mono);
  margin-bottom: 8px;
}
.blog-post .pn-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.45;
}
.blog-post .pn-arrow {
  font-size: 14px;
  color: var(--teal);
  margin-top: 8px;
  display: block;
}
.blog-post .pn-card.next {
  text-align: right;
}

/* Override global marketing .cta-section for article bottom CTA */
.blog-post .cta-section {
  text-align: left;
  padding: 0 var(--page-gutter) 80px;
  position: relative;
  overflow: visible;
}
.blog-post .cta-card {
  max-width: 1080px;
  margin: 0 auto;
  background: var(--slate-mid);
  border: 0.5px solid var(--line);
  border-radius: 18px;
  padding: 48px 52px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.blog-post .cta-glow {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 400px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(64, 196, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.blog-post .cta-h3 {
  font-size: 24px;
  font-weight: 300;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  position: relative;
}
.blog-post .cta-h3 em {
  font-style: italic;
  color: var(--teal);
}
.blog-post .cta-sub {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  position: relative;
  max-width: none;
  margin: 0;
}
.blog-post .cta-btns {
  display: flex;
  gap: 10px;
  flex-direction: column;
}
.blog-post .btn-teal {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  color: var(--slate);
  background: var(--teal);
  border: none;
  border-radius: 9px;
  padding: 12px 22px;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  transition: background 0.15s;
  display: block;
}
.blog-post .btn-teal:hover {
  background: var(--teal-hover);
}
.blog-post .btn-outline-sm {
  font-family: var(--font);
  font-size: 13px;
  color: var(--muted);
  background: none;
  border: 0.5px solid rgba(248, 246, 240, 0.18);
  border-radius: 9px;
  padding: 12px 22px;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  transition: border-color 0.15s, color 0.15s;
  display: block;
}
.blog-post .btn-outline-sm:hover {
  border-color: var(--line-md);
  color: var(--cream);
}

@media (max-width: 991.98px) {
  .blog-post .article-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .blog-post .article-sidebar {
    order: -1;
  }
  .blog-post .sidebar-sticky {
    position: relative;
    top: auto;
  }
  .blog-post .cta-card {
    grid-template-columns: 1fr;
    padding: 40px 36px;
    gap: 28px;
  }
}

@media (max-width: 767.98px) {
  .blog-post .prev-next-inner {
    grid-template-columns: 1fr;
  }
  .blog-post .pn-card.next {
    text-align: left;
  }
  .blog-post .vis-card {
    height: 220px;
  }
}

/* —— Pricing page v2 (scoped) —— */
.pricing-page .hero {
  padding: 150px var(--page-gutter) 75px;
  text-align: center;
}
.pricing-page .eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 500; letter-spacing: 0.09em; text-transform: uppercase; color: var(--teal); margin-bottom: 20px; position: relative; }
.pricing-page .eyebrow-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--teal); }
.pricing-page .steps-bar { padding: 0 var(--page-gutter) 75px; }
.pricing-page .steps {padding-bottom: 75px;}
.pricing-page .steps-inner,
.pricing-page .pricing-inner,
.pricing-page .alt-inner,
.pricing-page .faq-inner { max-width: 1160px; margin: 0 auto; }
.pricing-page .step-row { display: flex; align-items: center; }
.pricing-page .step-item { display: flex; align-items: center; gap: 10px; }
.pricing-page .step-num { width: 30px; height: 30px; border-radius: 50%; background: var(--teal); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 500; color: var(--slate); font-family: var(--mono); flex-shrink: 0; margin-bottom: 0; }
.pricing-page .step-label { font-size: 14px; font-weight: 500; color: var(--white); }
.pricing-page .step-sub { font-size: 12px; color: var(--muted); margin-top: 1px; }
.pricing-page .step-connector { flex: 1; height: 0.5px; background: var(--line-md); margin: 0 20px; }

.pricing-page .pricing-section { padding: 96px var(--page-gutter); }
.pricing-page .alt-section { padding: 72px var(--page-gutter); }
.section-divider { border: none; border-top: 0.5px solid var(--line); margin: 0 var(--page-gutter) 72px; }
.pricing-page .section-eyebrow { display: inline-flex; align-items: center; gap: 8px; }
.pricing-page .section-eyebrow-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--teal); }

.pricing-page .base-plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 36px; }
.pricing-page .base-card { background: var(--slate-card); border: 0.5px solid var(--line); border-radius: 18px; padding: 32px 28px; display: flex; flex-direction: column; transition: border-color 0.2s, transform 0.15s; position: relative; overflow: hidden; }
.pricing-page .base-card:hover { transform: translateY(-2px); }
.pricing-page .base-card.featured { border-color: var(--teal-border); border-width: 1.5px; }
.pricing-page .base-card.featured::before { content: ""; position: absolute; inset: 0; background: linear-gradient(145deg, rgba(64,196,255,0.06) 0%, transparent 60%); pointer-events: none; border-radius: 18px; }
.pricing-page .popular-badge { display: inline-block; font-size: 10px; font-weight: 500; font-family: var(--mono); color: var(--teal); background: var(--teal-light); border: 0.5px solid var(--teal-border); padding: 3px 10px; border-radius: 20px; margin-bottom: 18px; }
.pricing-page .plan-tier { font-size: 11px; font-weight: 500; font-family: var(--mono); color: var(--muted); letter-spacing: 0.07em; text-transform: uppercase; margin-bottom: 12px; }
.pricing-page .plan-price-main { font-size: 52px; font-weight: 300; color: var(--white); letter-spacing: -0.04em; line-height: 1; }
.pricing-page .plan-price-main sup { font-size: 22px; vertical-align: top; padding-top: 10px; display: inline-block; }
.pricing-page .plan-period { font-size: 14px; color: var(--muted); margin-top: 4px; margin-bottom: 4px; }
.pricing-page .plan-txn { font-family: var(--mono); font-size: 15px; color: var(--teal); margin-bottom: 8px; }
.pricing-page .plan-desc { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 24px; flex: 1; }
.pricing-page .plan-divider { border: none; border-top: 0.5px solid var(--line); margin-bottom: 22px; }
.pricing-page .plan-cta { font-family: var(--font); font-size: 14px; font-weight: 500; text-align: center; padding: 12px; border-radius: 10px; text-decoration: none; display: block; transition: all 0.15s; }
.pricing-page .cta-solid { background: var(--teal); color: var(--slate); }
.pricing-page .cta-solid:hover { background: var(--teal-hover); }
.pricing-page .cta-outline { background: none; border: 0.5px solid var(--line-md); color: var(--cream); }
.pricing-page .cta-outline:hover { border-color: var(--teal-border); color: var(--teal); }

.pricing-page .group-label { font-size: 10px; font-weight: 500; letter-spacing: 0.09em; text-transform: uppercase; color: rgba(248,246,240,0.28); font-family: var(--mono); margin-bottom: 14px; }
.pricing-page .features-box { background: var(--slate-mid); border: 0.5px solid var(--line); border-radius: 16px; padding: 28px 32px; }
.pricing-page .features-intro { font-size: 13px; color: var(--muted); line-height: 1.65; margin-bottom: 22px; }
.pricing-page .features-intro strong { color: var(--teal); font-weight: 500; }
.pricing-page .features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.pricing-page .feat-item { display: flex; align-items: flex-start; gap: 9px; padding: 9px 10px; border-radius: 8px; transition: background 0.15s; }
.pricing-page .feat-item:hover { background: rgba(255,255,255,0.03); }
.pricing-page .feat-check { width: 16px; height: 16px; border-radius: 50%; background: var(--teal-light); border: 0.5px solid var(--teal-border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.pricing-page .feat-check svg { width: 8px; height: 8px; stroke: var(--teal); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.pricing-page .feat-name { font-size: 13px; color: rgba(248,246,240,0.72); line-height: 1.4; }
.pricing-page .feat-sub { font-size: 11px; color: var(--muted); display: block; margin-top: 1px; }

.pricing-page .processing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 12px; }
.pricing-page .processing-card { background: var(--slate-card); border: 0.5px solid var(--line); border-radius: 14px; padding: 24px 26px; transition: border-color 0.2s; }
.pricing-page .processing-card:hover { border-color: var(--line-md); }
.pricing-page .pc-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 8px; }
.pricing-page .pc-name { font-size: 16px; font-weight: 500; color: var(--white); }
.pricing-page .pc-badge { font-size: 10px; font-family: var(--mono); padding: 3px 9px; border-radius: 20px; white-space: nowrap; flex-shrink: 0; }
.pricing-page .b-teal { background: var(--teal-light); color: var(--teal); border: 0.5px solid var(--teal-border); }
.pricing-page .b-amber { background: var(--amber-light); color: var(--amber); border: 0.5px solid var(--amber-border); }
.pricing-page .b-blue { background: var(--blue-light); color: var(--blue); border: 0.5px solid var(--blue-border); }
.pricing-page .b-muted { background: rgba(255,255,255,0.05); color: var(--muted); border: 0.5px solid var(--line); }
.pricing-page .pc-rate { font-family: var(--mono); font-size: 20px; font-weight: 500; color: var(--teal); margin-bottom: 8px; }
.pricing-page .pc-rate.neutral { color: var(--cream); }
.pricing-page .pc-desc { font-size: 13px; color: var(--muted); line-height: 1.65; }
.pricing-page .pc-desc strong { color: var(--cream); font-weight: 500; }

.pricing-page .surcharge-row { background: rgba(64,196,255,0.08); border-radius: 12px; padding: 20px 26px; margin-bottom: 15px; }
.pricing-page .sr-left h4 { font-size: 14px; font-weight: 500; color: var(--white); margin-bottom: 15px; }
.pricing-page .sr-left p { font-size: 13px; color: var(--muted); line-height: 1.55; max-width: 560px; }
.pricing-page .sr-rate { font-family: var(--mono); font-size: 22px; font-weight: 500; color: var(--teal); white-space: nowrap; }

.pricing-page .approval-note { display: flex; align-items: flex-start; gap: 12px; margin-top: 16px; }
.pricing-page .approval-note svg { width: 16px; height: 16px; stroke: var(--muted); fill: none; stroke-width: 1.5; flex-shrink: 0; margin-top: 1px; }
.pricing-page .approval-note p { font-size: 12px; color: var(--muted); line-height: 1.65; }
.pricing-page .approval-note p strong { color: var(--cream); font-weight: 500; }

.pricing-page .addons-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 15px; }
.pricing-page .addon-card { border: 0.5px solid var(--teal-border); border-radius: 12px; padding: 16px 18px; display: flex; align-items: center; justify-content: space-between; gap: 12px; transition: border-color 0.15s; }
.pricing-page .addon-name { font-size: 13px; font-weight: 500; color: var(--white); margin-bottom: 2px; }
.pricing-page .addon-desc { font-size: 12px; color: var(--muted); }
.pricing-page .addon-rate { font-family: var(--mono); font-size: 12px; color: var(--teal); white-space: nowrap; text-align: right; flex-shrink: 0; line-height: 1.5; }
.pricing-page .addon-rate.inquire { color: var(--amber); }
.pricing-page .addon-rate.contact { color: var(--muted); }

/* Pricing: Step 3 — one priced add-on + included modules */
.pricing-page .platform-addon {
  display: grid;
  grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
  margin-top: 8px;
}
.pricing-page .platform-addon-main {
  background: var(--slate-card);
  background-image: linear-gradient(165deg, rgba(64, 196, 255, 0.05) 0%, transparent 52%);
  border: 0.5px solid var(--teal-border);
  border-radius: 16px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
}
.pricing-page .platform-addon-main .group-label { margin-bottom: 10px; }
.pricing-page .platform-addon-title {
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  line-height: 1.2;
}
.pricing-page .platform-addon-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
  flex: 1;
}
.pricing-page .platform-addon-rate {
  margin-top: 20px;
  font-family: var(--mono);
  font-size: 18px;
  font-weight: 500;
  color: var(--teal);
  line-height: 1.3;
}
.pricing-page .platform-addon-includes {
  border: 0.5px solid var(--line);
  border-radius: 16px;
  padding: 24px 26px 26px;
  min-width: 0;
}
.pricing-page .platform-addon-includes-label {
  font-size: 10px;
  font-weight: 500;
  font-family: var(--mono);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(248, 246, 240, 0.35);
  margin-bottom: 12px;
}
/* Same check-row pattern as Step 1 features-box; two columns in includes panel */
.pricing-page .platform-addon-features {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
}
.pricing-page .platform-addon-features .feat-item { padding: 8px 10px 8px 6px; }
.pricing-page .pricing-addon-footnote {
  font-size: 12px;
  color: rgba(248, 246, 240, 0.22);
  margin: 18px 0 0;
  line-height: 1.5;
}
.pricing-page .pricing-addon-footnote-link { color: var(--teal); text-decoration: none; }
.pricing-page .pricing-addon-footnote-link:hover { text-decoration: underline; }

/* Pricing: partners — single panel, stacked bands */
.pricing-page .pricing-partners { max-width: 1160px; margin: 0 auto; }
.pricing-page .pricing-partners-panel {
  background: var(--slate-mid);
  border: 0.5px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
}
.pricing-page .pricing-partners-head {
  padding: 40px 40px 36px;
  border-bottom: 0.5px solid var(--line);
}
.pricing-page .pricing-partners-head .pricing-partners-lead { margin-bottom: 0; max-width: 640px; }

.pricing-page .pricing-partners-types {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 0.5px solid var(--line);
}
.pricing-page .pricing-partners-types .partner-type {
  margin: 0;
  padding: 28px 28px 32px;
  background: transparent;
  border: none;
  border-radius: 0;
  border-right: 0.5px solid var(--line);
  transition: background 0.2s;
}
.pricing-page .pricing-partners-types .partner-type:last-child { border-right: none; }
.pricing-page .pricing-partners-types .partner-type:hover { background: rgba(255, 255, 255, 0.025); }

.pricing-page .pt-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.pricing-page .pt-icon-teal { background: var(--teal-light); border: 0.5px solid var(--teal-border); }
.pricing-page .pt-icon-amber { background: var(--amber-light); border: 0.5px solid var(--amber-border); }
.pricing-page .pt-icon-blue { background: var(--blue-light); border: 0.5px solid var(--blue-border); }
.pricing-page .pt-icon svg { width: 16px; height: 16px; fill: none; stroke-width: 1.5; }
.pricing-page .pt-name { font-size: 14px; font-weight: 500; color: var(--white); margin-bottom: 6px; }
.pricing-page .pt-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }

.pricing-page .pricing-partners-program {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
  padding: 32px 40px 40px;
  background: linear-gradient(165deg, rgba(64, 196, 255, 0.05) 0%, transparent 52%);
}
.pricing-page .pricing-partners-program-copy .pcb-sub { margin-bottom: 0; }
.pricing-page .pricing-partners-program-aside .pcb-benefits { margin-bottom: 20px; }
.pricing-page .pricing-partners-program-aside .pcb-cta {
  display: block;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
}

.pricing-page .pcb-eyebrow { font-size: 10px; font-family: var(--mono); letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.pricing-page .pcb-title { font-size: 22px; font-weight: 300; color: var(--white); letter-spacing: -0.02em; margin-bottom: 8px; }
.pricing-page .pcb-title em { font-style: italic; color: var(--teal); }
.pricing-page .pcb-sub { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 20px; }
.pricing-page .pcb-benefits { display: flex; flex-direction: column; gap: 8px; }
.pricing-page .pcb-benefit { display: flex; align-items: center; gap: 9px; font-size: 13px; color: rgba(248,246,240,0.68); }
.pricing-page .pcb-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }
.pricing-page .pcb-cta { font-family: var(--font); font-size: 14px; font-weight: 500; color: var(--slate); background: var(--teal); border: none; border-radius: 10px; padding: 13px 22px; text-decoration: none; transition: background 0.15s; }
.pricing-page .pcb-cta:hover { background: var(--teal-hover); }

.pricing-page .faq-section { padding: 72px var(--page-gutter); }
.pricing-page .faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 32px; }
.pricing-page .faq-item { background: var(--slate-card); border: 0.5px solid var(--line); border-radius: 13px; padding: 22px 24px; }
.pricing-page .faq-q { font-size: 14px; font-weight: 500; color: var(--white); margin-bottom: 9px; line-height: 1.4; }
.pricing-page .faq-a { font-size: 13px; color: var(--muted); line-height: 1.68; }
.pricing-page .faq-a a { color: var(--teal); text-decoration: none; }

.pricing-page .disclaimer { font-size: 11px; color: rgba(248,246,240,0.18); line-height: 1.65; max-width: 800px; margin: 32px auto 0; text-align: center; padding: 0 var(--page-gutter); }

@media (max-width: 991.98px) {
  .pricing-page .base-plans,
  .pricing-page .processing-grid,
  .pricing-page .pricing-partners-types { grid-template-columns: 1fr; }
  .pricing-page .pricing-partners-types .partner-type {
    border-right: none;
    border-bottom: 0.5px solid var(--line);
  }
  .pricing-page .pricing-partners-types .partner-type:last-child { border-bottom: none; }
  .pricing-page .pricing-partners-program { grid-template-columns: 1fr; gap: 28px; }
  .pricing-page .faq-grid { grid-template-columns: 1fr; }
  .pricing-page .addons-grid { grid-template-columns: 1fr 1fr; }
  .pricing-page .platform-addon { grid-template-columns: 1fr; }
  .pricing-page .platform-addon-features { grid-template-columns: 1fr 1fr; }
  .pricing-page .features-grid { grid-template-columns: 1fr 1fr; }
  .pricing-page .step-row { flex-direction: column; align-items: flex-start; gap: 12px; }
  .pricing-page .step-connector { width: 0.5px; height: 16px; margin: 0 0 0 14px; }
}

@media (max-width: 767.98px) {
  .pricing-page .hero { padding: 170px var(--page-gutter) 20px; }
  .pricing-page .steps-bar,
  .pricing-page .pricing-section,
  .pricing-page .alt-section,
  .pricing-page .faq-section { padding-left: var(--page-gutter); padding-right: var(--page-gutter); }
  .section-divider { margin-left: var(--page-gutter); margin-right: var(--page-gutter); }
  .pricing-page .features-grid,
  .pricing-page .addons-grid { grid-template-columns: 1fr; }
  .pricing-page .platform-addon-features { grid-template-columns: 1fr; }
  .pricing-page .surcharge-row { flex-direction: column; align-items: flex-start; }
  .pricing-page .pricing-partners-head,
  .pricing-page .pricing-partners-program { padding-left: 24px; padding-right: 24px; }
  .pricing-page .pricing-partners-types .partner-type { padding: 22px 24px 26px; }
}

/* —— Get started page (path selector + forms) —— */
.get-started-page .hero {
  min-height: auto;
  display: block;
  align-items: unset;
  padding: 120px var(--page-gutter) 64px;
  position: relative;
  overflow: hidden;
}
.get-started-page .hero .hero-grid {
  opacity: 0.022;
  background-image:
    linear-gradient(rgba(64, 196, 255, 1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(64, 196, 255, 1) 1px, transparent 1px);
}
.get-started-page .hero .glow-tl {
  top: -80px;
  left: -60px;
  width: 560px;
  height: 480px;
}
.get-started-page .hero .glow-br {
  bottom: -60px;
  right: -40px;
  width: 440px;
  height: 380px;
}
.get-started-page .hero .hero-inner {
  display: block;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  width: 100%;
}
.get-started-page .hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
}
.get-started-page .hero .eyebrow-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--teal);
}
.get-started-page .hero .hero-h1 {
  font-size: clamp(36px, 4.5vw, 54px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 18px;
  max-width: none;
}
.get-started-page .hero .hero-h1 em {
  font-style: italic;
  color: var(--teal);
  font-weight: 300;
}
.get-started-page .hero .hero-sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.72;
  margin-bottom: 0;
  max-width: none;
}
.get-started-page .hero-paths {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
  align-items: stretch;
  margin-bottom: 36px;
}
.get-started-page .path-card {
  background: var(--slate-card);
  border: 1.5px solid var(--line);
  border-radius: 16px;
  padding: 18px 16px 20px;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.15s, background 0.15s;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  color: inherit;
  flex: 1 1 calc(25% - 9px);
  min-width: 200px;
  max-width: 100%;
}
.get-started-page .path-card:hover {
  border-color: var(--teal-border);
  transform: translateY(-2px);
}
.get-started-page .path-card.active,
.get-started-page .path-card:focus {
  border-color: var(--teal);
  background: var(--teal-light);
  outline: none;
}
.get-started-page .path-header {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 5px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.get-started-page .path-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.get-started-page .path-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke-width: 1.5;
}
.get-started-page .path-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.3;
  flex: 1 1 120px;
  min-width: 0;
}
.get-started-page .path-badge {
  font-size: 10px;
  font-weight: 500;
  font-family: var(--mono);
  padding: 2px 8px;
  border-radius: 20px;
  margin-left: auto;
  flex-shrink: 0;
}
.get-started-page .path-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.55;
  padding-left: 0;
  margin-top: auto;
}
.get-started-page .path-section {
  padding: 40px var(--page-gutter) 72px;
  padding-top: 0;
}
.get-started-page .path-inner {
  max-width: 1140px;
  margin: 0 auto;
}
.get-started-page .path-panel {
  display: none;
}
.get-started-page .path-panel.active {
  display: block;
}
.get-started-page .step-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.get-started-page .step-item {
  display: grid;
  grid-template-columns: 75px 1fr;
  gap: 0;
}
.get-started-page .step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.get-started-page .step-circle {
  width: 100%;
  height: 36px;
  border-radius: 6px;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--slate);
  flex-shrink: 0;
}
.get-started-page .step-line {
  width: 1px;
  background: var(--line-md);
  flex: 1;
  margin: 6px 0;
  min-height: 24px;
}
.get-started-page .step-item:last-child .step-line {
  display: none;
}
.get-started-page .step-content {
  padding: 0 0 40px 20px;
}
.get-started-page .step-content h3 {
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  line-height: 1.3;
  padding-top: 6px;
}
.get-started-page .step-content p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.72;
}
.get-started-page .step-content p:last-child {
  margin-bottom: 0;
}
.get-started-page .step-content strong {
  color: var(--cream);
  font-weight: 500;
}
.get-started-page .form-card {
  background: var(--slate-card);
  border: 0.5px solid var(--line);
  border-radius: 18px;
  padding: 36px;
  margin-top: 16px;
}
.get-started-page .form-card.highlight {
  border-color: var(--teal-border);
  background: rgba(64, 196, 255, 0.04);
}
.get-started-page .form-card .form-title {
  font-size: 17px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 6px;
}
.contact-form .form-title {
  margin-bottom: 24px;
}
.get-started-page .form-card .form-sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.6;
}
.get-started-page .form-card .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.get-started-page .form-card .form-row.full {
  grid-template-columns: 1fr;
}
.get-started-page .form-card .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.get-started-page .form-card .form-label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(248, 246, 240, 0.5);
  letter-spacing: 0.02em;
}
.get-started-page .form-card .form-input,
.get-started-page .form-card .form-select,
.get-started-page .form-card .form-textarea {
  font-family: var(--font);
  font-size: 14px;
  color: var(--cream);
  background: var(--slate);
  border: 0.5px solid var(--line-md);
  border-radius: 9px;
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.15s;
  width: 100%;
}
.get-started-page .form-card .form-input::placeholder,
.get-started-page .form-card .form-textarea::placeholder {
  color: rgba(248, 246, 240, 0.2);
}
.get-started-page .form-card .form-input:focus,
.get-started-page .form-card .form-select:focus,
.get-started-page .form-card .form-textarea:focus {
  border-color: var(--teal-border);
}
.get-started-page .form-card .form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='rgba(248,246,240,0.3)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.get-started-page .form-card .form-select option {
  background: var(--slate-card);
}
.get-started-page .form-card .form-textarea {
  min-height: 88px;
  resize: vertical;
  line-height: 1.6;
}
.get-started-page .form-card .form-submit {
  width: 100%;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 500;
  color: var(--slate);
  background: var(--teal);
  border: none;
  border-radius: 10px;
  padding: 14px;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  margin-top: 8px;
}
.get-started-page .form-card .form-submit:hover {
  background: var(--teal-hover);
  transform: translateY(-1px);
}
.get-started-page .form-card .form-privacy {
  font-size: 11px;
  color: rgba(248, 246, 240, 0.2);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}
.get-started-page .form-success {
  display: none;
  text-align: center;
  padding: 36px 20px;
}
.get-started-page .form-success.show {
  display: block;
}
.get-started-page .success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--teal-light);
  border: 0.5px solid var(--teal-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.get-started-page .success-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.get-started-page .success-title {
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 8px;
}
.get-started-page .success-sub {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}
.get-started-page .two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.get-started-page .two-col-wide {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}
.get-started-page code {
  font-family: var(--mono);
  font-size: 13px;
  background: var(--slate-card);
  border: 0.5px solid var(--line-md);
  border-radius: 5px;
  padding: 2px 7px;
  color: var(--teal);
}
.get-started-page .code-block {
  background: var(--slate-card);
  border: 0.5px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  margin: 16px 0;
}
.get-started-page .cb-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-bottom: 0.5px solid var(--line);
}
.get-started-page .cb-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.get-started-page .cb-title {
  font-size: 11px;
  color: rgba(248, 246, 240, 0.25);
  font-family: var(--mono);
  margin-left: 4px;
}
.get-started-page .cb-body {
  padding: 20px;
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.85;
}
.get-started-page .c-k {
  color: var(--teal-mid);
}
.get-started-page .c-v {
  color: #ef9f27;
}
.get-started-page .c-s {
  color: rgba(248, 246, 240, 0.7);
}
.get-started-page .c-c {
  color: rgba(248, 246, 240, 0.25);
}
.get-started-page .c-f {
  color: var(--teal);
}
.get-started-page .checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.get-started-page .check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.get-started-page .check-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--teal-light);
  border: 0.5px solid var(--teal-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.get-started-page .check-dot svg {
  width: 9px;
  height: 9px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.get-started-page .check-text {
  font-size: 14px;
  color: var(--cream);
  line-height: 1.6;
}
.get-started-page .check-text span {
  color: var(--muted);
  font-size: 13px;
  display: block;
  margin-top: 2px;
}
.get-started-page .option-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 16px 0;
}
.get-started-page .option-card {
  background: var(--slate-card);
  border: 0.5px solid var(--line);
  border-radius: 13px;
  padding: 22px;
}
/* .get-started-page .option-card:hover {
  border-color: var(--teal-border);
  transform: translateY(-2px);
} */
.get-started-page .option-card.selected {
  border-color: var(--teal);
  background: rgba(64, 196, 255, 0.06);
}
.get-started-page .oc-num {
  font-size: 10px;
  font-family: var(--mono);
  color: var(--teal);
  margin-bottom: 8px;
  letter-spacing: 0.06em;
}
.get-started-page .oc-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 5px;
}
.get-started-page .oc-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 12px;
}
.get-started-page .oc-tag {
  font-size: 10px;
  font-family: var(--mono);
  padding: 2px 8px;
  border-radius: 20px;
  background: var(--teal-light);
  color: var(--teal);
  border: 0.5px solid var(--teal-border);
  display: inline-block;
}
.get-started-page .side-card {
  background: var(--slate-card);
  border: 0.5px solid var(--line);
  border-radius: 14px;
  padding: 24px;
  margin-left: 24px;
  margin-bottom: 24px;
}
.get-started-page .side-card h4 {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 8px;
}
.get-started-page .side-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}
.get-started-page .side-card a {
  color: var(--teal);
  text-decoration: none;
  font-size: 13px;
  font-family: var(--mono);
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}
.get-started-page .side-card a:hover {
  text-decoration: underline;
}
.get-started-page .side-cta {
  border-radius: 14px;
  padding: 24px;
}
.get-started-page .side-cta h4 {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 6px;
}
.get-started-page .side-cta p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 14px;
}
.get-started-page .side-cta a {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  color: var(--slate);
  background: var(--teal);
  border-radius: 8px;
  padding: 10px 18px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.15s;
}
.get-started-page .side-cta a:hover {
  background: var(--teal-hover);
}
.get-started-page .trust-strip {
  background: var(--slate-mid);
  padding: 40px var(--page-gutter);
}
.get-started-page .trust-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.get-started-page .trust-cell {
  background: var(--slate-card);
  padding: 24px;
  text-align: center;
}
.get-started-page .trust-val {
  font-size: 26px;
  font-weight: 300;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.get-started-page .trust-val span {
  color: var(--teal);
}
.get-started-page .trust-label {
  font-size: 12px;
  color: var(--muted);
}
.get-started-page .cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(64, 196, 255, 0.08) 0%, transparent 68%);
  pointer-events: none;
}
.get-started-page .cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}
.get-started-page .cta-section .btn-lg {
  font-size: 14px;
  padding: 13px 26px;
}
.get-started-page .fade-up {
  opacity: 0;
  transform: translateY(18px);
  animation: get-started-fu 0.6s ease forwards;
}
@keyframes get-started-fu {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.get-started-page .d1 {
  animation-delay: 0.07s;
}
.get-started-page .d2 {
  animation-delay: 0.17s;
}
.get-started-page .d3 {
  animation-delay: 0.28s;
}
.get-started-page .panel-heading {
  font-size: 26px;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 25px;
}
.get-started-page .panel-heading em {
  font-style: italic;
  color: var(--teal);
}
.get-started-page .panel-sub {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 560px;
}
.get-started-page .section-divider {
  border: none;
  border-top: 0.5px solid var(--line);
  margin: 48px 0;
}

@media (max-width: 991.98px) {
  .get-started-page .hero {
    padding: 100px var(--page-gutter) 56px;
  }
  .get-started-page .hero-paths {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 12px;
    align-items: stretch;
  }
  .get-started-page .path-card {
    flex: 1 1 auto;
    min-width: 0;
    max-width: none;
    width: 100%;
  }
  .get-started-page .two-col,
  .get-started-page .two-col-wide {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .get-started-page .option-grid {
    grid-template-columns: 1fr;
  }
  .get-started-page .trust-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .get-started-page .form-card {
    padding: 28px 22px;
  }
  /* Beat #id .form-row three-column rule from global form styles */
  .get-started-page #merchant-form-content .form-row:not(.full),
  .get-started-page #developer-form-content .form-row:not(.full),
  .get-started-page #partner-form-content .form-row:not(.full) {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767.98px) {
  .get-started-page .hero {
    padding: 96px var(--page-gutter) 48px;
  }
  .get-started-page .hero .hero-h1 {
    font-size: clamp(30px, 8vw, 48px);
  }
  .get-started-page .hero .hero-sub {
    font-size: 16px;
  }
  .get-started-page .path-section {
    padding-bottom: 56px;
  }
  .get-started-page .panel-heading {
    font-size: clamp(20px, 5vw, 24px);
    margin-bottom: 18px;
  }
  .get-started-page .step-circle {
    font-size: 11px;
    height: auto;
    min-height: 36px;
    padding: 6px 4px;
    line-height: 1.2;
  }
  .get-started-page .step-content {
    padding: 0 0 32px 12px;
  }
  .get-started-page .step-content h3 {
    font-size: 16px;
  }
  .get-started-page .side-card {
    padding: 10px 15px;
  }
  .get-started-page #merchant-form-content .form-row:not(.full),
  .get-started-page #developer-form-content .form-row:not(.full),
  .get-started-page #partner-form-content .form-row:not(.full) {
    grid-template-columns: 1fr;
  }
  .get-started-page #merchant-form-content .form-submit,
  .get-started-page #developer-form-content .form-submit,
  .get-started-page #partner-form-content .form-submit {
    width: 100%;
  }
  .get-started-page .form-card {
    padding: 24px 18px;
  }
  .get-started-page .code-block {
    border-radius: 12px;
    margin-left: 0;
    margin-right: 0;
  }
  .get-started-page .cb-body {
    font-size: 12px;
    padding: 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .get-started-page .trust-strip {
    padding: 32px var(--page-gutter);
  }
  .get-started-page .trust-inner {
    grid-template-columns: 1fr 1fr;
    border-radius: 12px;
  }
  .get-started-page .trust-cell {
    padding: 18px 14px;
  }
  .get-started-page .trust-val {
    font-size: 22px;
  }
  .get-started-page .cta-btns {
    flex-direction: column;
    align-items: stretch;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  .get-started-page .cta-section .btn-lg,
  .get-started-page .cta-section .btn-outline {
    text-align: center;
    width: 100%;
    box-sizing: border-box;
  }
}

@media (max-width: 575.98px) {
  .get-started-page .trust-inner {
    grid-template-columns: 1fr;
  }
  .get-started-page .path-title {
    font-size: 13px;
  }
  .get-started-page .path-desc {
    font-size: 11px;
  }
}
