/* Mooov.money - landing page.
 * Design source: Figma file MFiE8pN4oCf07sOAjf80Gs (node 1:2).
 * Plain CSS, no preprocessor. Tokens at :root, sections grouped below.
 */

:root {
  --bg: #ffffff;
  --bg-soft: #f6f7fb;
  --bg-dark: #0a1330;
  --border: #e7e9f1;
  --border-soft: #eef0f7;
  --text: #0b1020;
  --text-strong: #16203a;
  --text-body: #5d6680;
  --text-muted: #8a94a6;
  --text-dark-body: #a8b2cc;
  --text-dark-strong: #dee3f5;
  --success-bg: #e9f8f1;
  --success-fg: #0f8a5e;
  --gradient: linear-gradient(90deg, #8717d5 0%, #6771ce 50%, #47cbc7 100%);
  --gradient-soft: linear-gradient(
    90deg,
    rgba(135, 23, 213, 0.08) 0%,
    rgba(103, 113, 206, 0.08) 50%,
    rgba(71, 203, 199, 0.08) 100%
  );
  --shadow-sm: 0 1px 2px rgba(15, 20, 41, 0.04);
  --shadow-md: 0 2px 8px rgba(15, 20, 41, 0.04);
  --shadow-lg: 0 10px 30px rgba(15, 20, 41, 0.08);
  --shadow-xl: 0 10px 30px rgba(15, 20, 41, 0.18);
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --container: 1180px;
  --side-pad: clamp(24px, 6vw, 130px);
  --section-y: clamp(56px, 9vw, 88px);
  --font: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.container {
  width: 100%;
  max-width: calc(var(--container) + var(--side-pad) * 2);
  margin: 0 auto;
  padding-left: var(--side-pad);
  padding-right: var(--side-pad);
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--text-strong);
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 600;
  z-index: 100;
}
.skip-link:focus {
  top: 12px;
}

/* ---------- Reusable bits ---------- */

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.btn {
  --btn-fg: var(--text-strong);
  --btn-bg: #fff;
  --btn-border: var(--border);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 18px;
  border-radius: var(--radius-sm);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font: 600 15px/1 var(--font);
  border: 1px solid var(--btn-border);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn:focus-visible {
  outline: 2px solid #6771ce;
  outline-offset: 2px;
}
.btn--sm {
  padding: 10px 16px;
  font-size: 14.5px;
}
.btn--primary {
  --btn-fg: #fff;
  --btn-bg: var(--gradient);
  --btn-border: transparent;
  background: var(--gradient);
  border: 0;
  padding: 14px 19px;
}
.btn--primary.btn--sm {
  padding: 11px 17px;
}
.btn--primary:hover {
  box-shadow: 0 8px 20px rgba(103, 113, 206, 0.4);
}
.btn--ghost {
  --btn-fg: var(--text-strong);
  --btn-bg: #fff;
  --btn-border: var(--border);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-strong);
  font-weight: 600;
  font-size: 13.5px;
}
.link-arrow:hover {
  color: #6771ce;
}

.section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.section-head h2 {
  font-weight: 800;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
}
.section-head p {
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.55;
  max-width: 680px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #b3bdd1;
  display: inline-block;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}
.pill--live {
  background: var(--success-bg);
  color: var(--success-fg);
}
.pill__dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #1ac17f;
}

/* ---------- Nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.nav.is-scrolled {
  border-bottom-color: var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  text-decoration: none;
}
.logo__img {
  display: block;
  height: 32px;
  width: auto;
  align-self: center;
}
.logo__tld {
  font-weight: 500;
  font-size: 13px;
  color: var(--text-body);
  letter-spacing: -0.01em;
  align-self: center;
  margin-top: 4px;
}
.nav__links {
  display: flex;
  gap: 28px;
  font-weight: 500;
  font-size: 14.5px;
  color: var(--text-strong);
}
.nav__links a:hover {
  color: #6771ce;
}
.nav__cta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav__login {
  font-weight: 600;
  font-size: 14.5px;
  color: var(--text-strong);
}
.nav__login:hover {
  color: #6771ce;
}
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.nav__toggle span {
  width: 22px;
  height: 2px;
  background: var(--text-strong);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 16px var(--side-pad) 24px;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.nav__mobile a {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-strong);
}
.nav__mobile-login {
  color: var(--text-body) !important;
}

/* ---------- Hero ---------- */

.hero {
  padding-top: 64px;
  padding-bottom: 40px;
}
.hero__row {
  display: grid;
  grid-template-columns: minmax(0, 560px) minmax(0, 520px);
  gap: 48px;
  align-items: center;
}
.hero__left {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 560px;
}
.hero__title {
  font-weight: 800;
  font-size: clamp(36px, 5vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--text);
}
.hero__lede {
  color: var(--text-body);
  font-size: 17px;
  line-height: 1.52;
  max-width: 540px;
}
.hero__cta {
  display: flex;
  gap: 12px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.hero__trust-label {
  margin-top: 18px;
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--text-body);
}
.hero__trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  color: var(--text-muted);
}

/* Hero art: orb image + floating proof chips */

.hero-art {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin-left: auto;
  isolation: isolate;
}
.hero-art__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  filter: drop-shadow(0 30px 60px rgba(103, 113, 206, 0.18));
}
.hero-art__pill {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-sm);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--text-strong);
}
.hero-art__pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #1ac17f;
  box-shadow: 0 0 0 4px rgba(26, 193, 127, 0.18);
}
.hero-art__chip {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 150px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}
.hero-art__chip-label {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-body);
  letter-spacing: 0.01em;
}
.hero-art__chip-value {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.05;
}
.hero-art__chip-delta {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--success-fg);
}
.hero-art__chip--approval {
  top: 22%;
  left: -18px;
}
.hero-art__chip--savings {
  bottom: 16%;
  right: -18px;
}

/* ---------- Expertise ---------- */

.expertise {
  padding: var(--section-y) 0;
}
.expertise > .container {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.value {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 8px;
}
.value__icon {
  width: 60px;
  height: 60px;
}
.value h3 {
  font-weight: 700;
  font-size: 17px;
  color: var(--text);
}
.value p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-body);
  max-width: 240px;
}
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.feature {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.feature:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.feature__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 8px;
}
.feature h3 {
  font-weight: 700;
  font-size: 17px;
  color: var(--text);
}
.feature p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-body);
  flex: 1;
}
.feature .link-arrow {
  margin-top: 8px;
}

/* ---------- Why expertise ---------- */

.why {
  background: var(--bg-soft);
  padding: var(--section-y) 0;
}
.why__row {
  display: grid;
  grid-template-columns: minmax(0, 380px) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}
.why__left h2 {
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 14px;
}
.why__left p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-body);
  margin-bottom: 18px;
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}
.stat__icon {
  width: 48px;
  height: 48px;
}
.stat__value {
  font-weight: 800;
  font-size: 34px;
  letter-spacing: -0.02em;
  color: var(--text);
}
.stat__label {
  font-weight: 500;
  font-size: 13px;
  line-height: 1.4;
  color: var(--text-body);
  max-width: 160px;
}

/* ---------- Orchestration ---------- */

.orchestration {
  padding: var(--section-y) 0;
}
.orchestration > .container {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.orch-box {
  background: var(--bg-soft);
  border-radius: var(--radius-2xl);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.orch-flow {
  display: grid;
  grid-template-columns: 160px 15px 1fr 15px 160px;
  gap: 14px;
  align-items: stretch;
}
.orch-node {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}
.orch-node__title {
  font-weight: 700;
  font-size: 13px;
  color: var(--text-strong);
}
.orch-node__caption {
  font-size: 11.5px;
  line-height: 1.35;
  color: var(--text-body);
}
.orch-dots {
  width: 100%;
  height: 3px;
  align-self: center;
}
.orch-layer {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.orch-layer__eyebrow {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: #6771ce;
  text-align: center;
}
.orch-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.orch-step {
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}
.orch-step p {
  font-weight: 700;
  font-size: 11.5px;
  line-height: 1.35;
  color: var(--text-strong);
}
.orch-tags {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.orch-tags li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 13px;
  color: var(--text-strong);
}

/* ---------- Reach ---------- */

.reach {
  padding: 40px 0 var(--section-y);
}
.reach__row {
  display: grid;
  grid-template-columns: minmax(0, 380px) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}
.reach__left h2 {
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 14px;
}
.reach__left p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-body);
  margin-bottom: 18px;
}
.reach__right {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.reach__map {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: contain;
}
.reach__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.reach-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: var(--shadow-sm);
}
.reach-card img {
  margin-bottom: 4px;
}
.reach-card__title {
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
}
.reach-card__value {
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--text);
}
.reach-card__caption {
  font-size: 12px;
  color: var(--text-body);
}

/* ---------- CTA ---------- */

.cta {
  padding: 80px 0;
}
.cta-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 380px);
  gap: 24px;
  align-items: center;
}
.cta-card__left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cta-card__left h2 {
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
}
.cta-card__left p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-body);
}
.cta-card__actions {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.cta-card__art {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: contain;
  justify-self: end;
}

/* ---------- Verticals (dark) ---------- */

.verticals {
  background: var(--bg-dark);
  color: #fff;
  padding: 80px 0;
}
.verticals__row {
  display: grid;
  grid-template-columns: minmax(0, 380px) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}
.verticals__left h2 {
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 14px;
}
.verticals__left p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-dark-body);
  max-width: 340px;
}
.verticals__right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.vert-col__title {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: #fff;
  margin-bottom: 18px;
}
/* When the section's two-column body shares one eyebrow ("PROCESSING")
   we drop the per-column titles and let the eyebrow span the grid.
   Without `grid-column: 1 / -1` it would land in cell A and shove
   column B's first item up against the heading. */
.vert-col__title--solo {
  grid-column: 1 / -1;
  margin-bottom: 4px;
}
.vert-col ul {
  display: flex;
  flex-direction: column;
}
.vert-col li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-weight: 500;
  font-size: 14.5px;
  color: var(--text-dark-strong);
}
.vert-col li:last-child {
  border-bottom: 0;
}

/* ---------- Footer ---------- */

.footer {
  padding: 64px 0 32px;
  background: #fff;
}
.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(6, minmax(0, 1fr));
  gap: 32px;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 260px;
}
.footer__brand p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-body);
}
.logo--footer .logo__img {
  height: 28px;
}
.logo--footer .logo__tld {
  font-size: 12px;
  margin-top: 3px;
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer__col a {
  font-size: 13.5px;
  color: var(--text-body);
  padding: 3px 0;
}
.footer__col a:hover {
  color: var(--text-strong);
}
.footer__title {
  font-weight: 700;
  font-size: 13px;
  color: var(--text-strong);
  margin-bottom: 8px;
}
.footer__base {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.footer__base p {
  font-size: 12.5px;
  color: var(--text-body);
}
.footer__links {
  display: flex;
  gap: 18px;
}
.footer__links a {
  font-size: 12.5px;
  color: var(--text-body);
}
.footer__links a:hover {
  color: var(--text-strong);
}

/* ---------- Responsive ---------- */

@media (max-width: 1120px) {
  .hero__row {
    grid-template-columns: 1fr;
  }
  .hero-art {
    max-width: 560px;
    margin: 0 auto;
  }
  .hero-art__chip--approval {
    left: 0;
  }
  .hero-art__chip--savings {
    right: 0;
  }
  .values,
  .features {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .why__row,
  .reach__row,
  .verticals__row {
    grid-template-columns: 1fr;
  }
  .reach__cards {
    grid-template-columns: repeat(3, 1fr);
  }
  .cta-card {
    grid-template-columns: 1fr;
    padding: 32px;
  }
  .cta-card__art {
    max-height: 150px;
    justify-self: center;
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 880px) {
  .nav__links,
  .nav__cta {
    display: none;
  }
  .nav__toggle {
    display: inline-flex;
  }
  .orch-flow {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .orch-dots {
    transform: rotate(90deg);
    width: 30px;
    justify-self: center;
  }
  .orch-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .reach__cards {
    grid-template-columns: 1fr;
  }
  .verticals__right {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .values,
  .features {
    grid-template-columns: 1fr;
  }
  .stats {
    grid-template-columns: 1fr;
  }
  .hero-art__chip {
    min-width: 0;
    padding: 10px 12px;
  }
  .hero-art__chip-value {
    font-size: 20px;
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer__base {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .hero__trust {
    gap: 16px;
  }
}

/* ---------- Reveal animation ---------- */

[data-section] {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-section].is-revealed,
[data-section][data-section="nav"] {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  [data-section] {
    opacity: 1;
    transform: none;
  }
  html {
    scroll-behavior: auto;
  }
}

/* ============================================================
 * Depth & atmosphere layer (additive over the Figma base).
 * ============================================================ */
.aurora {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.aurora::before,
.aurora::after,
.aurora i {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
}
.aurora::before {
  width: 56vh;
  height: 56vh;
  left: -10%;
  top: -22%;
  background: radial-gradient(circle, rgba(135, 23, 213, 0.22), transparent 62%);
  animation: aurora-drift 16s ease-in-out infinite;
}
.aurora::after {
  width: 52vh;
  height: 52vh;
  right: -10%;
  top: 4%;
  background: radial-gradient(circle, rgba(71, 203, 199, 0.2), transparent 62%);
  animation: aurora-drift2 22s ease-in-out infinite;
}
.aurora i {
  width: 46vh;
  height: 46vh;
  left: 38%;
  bottom: -26%;
  background: radial-gradient(circle, rgba(103, 113, 206, 0.18), transparent 62%);
  animation: aurora-drift 19s ease-in-out infinite;
}
.aurora--dark::before { background: radial-gradient(circle, rgba(135, 23, 213, 0.42), transparent 62%); }
.aurora--dark::after { background: radial-gradient(circle, rgba(71, 203, 199, 0.32), transparent 62%); }

.grid-field {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(11, 16, 32, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(11, 16, 32, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 78% 68% at 50% 0%, #000 22%, transparent 78%);
          mask-image: radial-gradient(ellipse 78% 68% at 50% 0%, #000 22%, transparent 78%);
}

.grain::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero,
.cta,
.verticals {
  position: relative;
  overflow: hidden;
}
.hero > .container,
.cta > .container,
.verticals > .container {
  position: relative;
  z-index: 1;
}

@keyframes aurora-drift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(3%, -3%, 0) scale(1.08); }
}
@keyframes aurora-drift2 {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1.06); }
  50% { transform: translate3d(-4%, 3%, 0) scale(1); }
}

[data-section] {
  transform: translateY(22px) scale(0.99);
  filter: blur(6px);
  transition: opacity 0.7s cubic-bezier(0.32, 0.72, 0, 1),
    transform 0.7s cubic-bezier(0.32, 0.72, 0, 1),
    filter 0.7s cubic-bezier(0.32, 0.72, 0, 1);
}
[data-section].is-revealed,
[data-section][data-section="nav"] { filter: none; }

.values .value,
.features .feature,
.stats .stat,
.reach__cards .reach-card {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s cubic-bezier(0.32, 0.72, 0, 1),
    transform 0.6s cubic-bezier(0.32, 0.72, 0, 1);
}
.is-revealed .value,
.is-revealed .feature,
.is-revealed .stat,
.is-revealed .reach-card { opacity: 1; transform: none; }
.is-revealed .value:nth-child(1),
.is-revealed .feature:nth-child(1),
.is-revealed .stat:nth-child(1),
.is-revealed .reach-card:nth-child(1) { transition-delay: 0.05s; }
.is-revealed .value:nth-child(2),
.is-revealed .feature:nth-child(2),
.is-revealed .stat:nth-child(2),
.is-revealed .reach-card:nth-child(2) { transition-delay: 0.12s; }
.is-revealed .value:nth-child(3),
.is-revealed .feature:nth-child(3),
.is-revealed .stat:nth-child(3),
.is-revealed .reach-card:nth-child(3) { transition-delay: 0.19s; }
.is-revealed .value:nth-child(4),
.is-revealed .feature:nth-child(4),
.is-revealed .stat:nth-child(4) { transition-delay: 0.26s; }

.value,
.stat,
.reach-card,
.orch-node {
  transition: transform 0.25s cubic-bezier(0.32, 0.72, 0, 1),
    box-shadow 0.25s cubic-bezier(0.32, 0.72, 0, 1);
}
.value:hover,
.stat:hover { transform: translateY(-4px); }
.reach-card:hover,
.orch-node:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -18px rgba(15, 20, 41, 0.22);
}

.feature { position: relative; overflow: hidden; }
.feature::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.32, 0.72, 0, 1);
}
.feature:hover::before { transform: scaleX(1); }

.orch-layer { position: relative; }
.orch-layer::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: var(--gradient);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

.cta-card {
  position: relative;
  border-color: transparent;
  transition: transform 0.25s cubic-bezier(0.32, 0.72, 0, 1),
    box-shadow 0.25s cubic-bezier(0.32, 0.72, 0, 1);
}
.cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: var(--gradient);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

.btn--primary {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn--primary::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 36%;
  z-index: -1;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: translateX(-160%) skewX(-12deg);
}
.btn--primary:hover::after { animation: btn-sheen 0.85s cubic-bezier(0.32, 0.72, 0, 1); }
@keyframes btn-sheen {
  0% { transform: translateX(-160%) skewX(-12deg); }
  100% { transform: translateX(280%) skewX(-12deg); }
}

.hero-art__pill-dot,
.pill__dot { animation: live-pulse 1.8s ease-in-out infinite; }
@keyframes live-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.82); }
}

.nav__links a { position: relative; padding: 4px 0; }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  border-radius: 2px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s cubic-bezier(0.32, 0.72, 0, 1);
}
.nav__links a:hover::after,
.nav__links a.is-active::after { transform: scaleX(1); }
.nav__links a.is-active { color: var(--text); }

/* --- Editorial eyebrows --- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--gradient);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.section-head .eyebrow { margin-bottom: 2px; }
.why__left .eyebrow,
.reach__left .eyebrow,
.verticals__left .eyebrow { margin-bottom: 14px; }
.eyebrow--glass {
  padding: 6px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  -webkit-backdrop-filter: blur(10px) saturate(160%);
          backdrop-filter: blur(10px) saturate(160%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  color: var(--text-strong);
  -webkit-text-fill-color: var(--text-strong);
  -webkit-background-clip: border-box;
          background-clip: border-box;
  align-self: flex-start;
}
.eyebrow--glass .eyebrow__dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #1ac17f;
  box-shadow: 0 0 0 4px rgba(26, 193, 127, 0.16);
  animation: live-pulse 1.8s ease-in-out infinite;
}
.eyebrow--light {
  background: none;
  color: #9fb0e8;
  -webkit-text-fill-color: #9fb0e8;
}

.hero__trust { align-items: center; padding-top: 4px; }
.hero__trust li { color: var(--text-strong); opacity: 0.62; transition: opacity 0.2s ease; }
.hero__trust li:hover { opacity: 1; }
.hero__trust .dot { width: 6px; height: 6px; background: var(--gradient); }

.expertise,
.orchestration { position: relative; }
.expertise::before,
.orchestration::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(100%, var(--container));
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(103, 113, 206, 0.35), transparent);
}

/* ============================================================
 * Product surfaces: SaaS-style media frames + capability rows.
 * ============================================================ */
.media { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.media--app,
.media--code {
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 34px 80px -34px rgba(15, 20, 41, 0.32);
}
.media--code { background: var(--bg-dark); }
.media--hero { width: 100%; }
.media--hero__img,
.media__img { display: block; width: 100%; height: auto; }
.media--bare { display: flex; justify-content: center; }
.phone-shot {
  display: block;
  width: 100%;
  max-width: 320px;
  height: auto;
  filter: drop-shadow(0 38px 55px rgba(15, 20, 41, 0.28));
}
.media__chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 11px 14px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border-soft);
}
.media__chrome span { width: 10px; height: 10px; border-radius: 999px; background: #d4d9e6; }
.media__chrome span:nth-child(1) { background: #f3a8a3; }
.media__chrome span:nth-child(2) { background: #f3d6a3; }
.media__chrome span:nth-child(3) { background: #a8dcc4; }
.media__chrome em {
  margin-left: 8px;
  font-style: normal;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-muted);
}
.media__chrome--dark { background: #0d152e; border-bottom-color: rgba(255, 255, 255, 0.08); }
.media__chrome--dark em { color: rgba(255, 255, 255, 0.55); }
.media__mock { padding: 16px; display: flex; flex-direction: column; gap: 12px; }

.mk-toolbar { display: flex; align-items: center; gap: 8px; }
.mk-search { height: 24px; width: 120px; border-radius: 8px; background: #fff; border: 1px solid var(--border-soft); }
.mk-search--wide { width: 180px; }
.mk-tab { font-size: 11.5px; font-weight: 600; color: var(--text-body); padding: 4px 9px; border-radius: 8px; }
.mk-tab--on { color: var(--text); background: var(--gradient-soft); }
.mk-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.mk-kpi {
  position: relative;
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  padding: 10px 11px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: #fff;
}
.mk-kpi i { font-style: normal; font-size: 10.5px; font-weight: 600; color: var(--text-muted); }
.mk-kpi b { font-size: 18px; font-weight: 800; letter-spacing: -0.02em; color: var(--text); }
.mk-kpi u { text-decoration: none; font-size: 10.5px; font-weight: 700; color: var(--success-fg); }
.mk-kpi--accent { border-color: transparent; background: var(--gradient-soft); }
.mk-kpi--accent::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  padding: 1px;
  background: var(--gradient);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.mk-chart { border: 1px solid var(--border-soft); border-radius: 10px; padding: 8px; height: 92px; }
.mk-chart svg { width: 100%; height: 100%; display: block; }
.mk-list { display: flex; flex-direction: column; gap: 6px; }
.mk-li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  padding: 7px 9px;
}
.mk-li i { font-style: normal; flex: 1; font-weight: 500; color: var(--text-strong); }
.mk-dotg { width: 7px; height: 7px; border-radius: 999px; background: var(--gradient); flex: none; }
.mk-ok,
.mk-pend { font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 999px; }
.mk-ok { color: var(--success-fg); background: var(--success-bg); }
.mk-pend { color: #9a6b00; background: #fdf1d6; }

.mk-route { display: flex; align-items: center; gap: 6px; }
.mk-route__src,
.mk-route__node {
  font-size: 10.5px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid var(--border-soft);
  color: var(--text-strong);
  background: #fff;
  white-space: nowrap;
}
.mk-route__node--on { border-color: transparent; background: var(--gradient); color: #fff; }
.mk-route__line { height: 2px; flex: 1; background: repeating-linear-gradient(90deg, var(--border) 0 4px, transparent 4px 8px); }
.mk-route__line--on { background: var(--gradient); }

.mk-timeline { gap: 0; }
.mk-step { position: relative; display: flex; align-items: center; gap: 12px; padding: 11px 4px; }
.mk-step::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-soft);
}
.mk-step:first-child::before { top: 50%; }
.mk-step:last-child::before { bottom: 50%; }
.mk-step span {
  position: relative;
  z-index: 1;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 2px solid var(--border);
  background: #fff;
  flex: none;
}
.mk-step i { font-style: normal; flex: 1; font-weight: 600; font-size: 13px; color: var(--text-strong); }
.mk-step u { text-decoration: none; font-size: 11px; color: var(--text-muted); }
.mk-step--done span { background: var(--gradient); border-color: transparent; }
.mk-step--on span { background: #fff; border-color: #6771ce; box-shadow: 0 0 0 4px rgba(103, 113, 206, 0.18); }

.mk-code {
  margin: 0;
  padding: 18px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  overflow-x: auto;
}
.mk-key { color: #8fa6ff; }
.mk-str { color: #5fd0c5; }
.mk-num { color: #c8a6ff; }

.mk-phone {
  position: relative;
  width: 248px;
  border-radius: 38px;
  background: #0d152e;
  padding: 16px;
  box-shadow: 0 44px 90px -34px rgba(15, 20, 41, 0.5);
}
.mk-phone__notch {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 92px;
  height: 16px;
  border-radius: 0 0 12px 12px;
  background: #0d152e;
  z-index: 2;
}
.mk-pay {
  background: #fff;
  border-radius: 26px;
  padding: 34px 22px 26px;
  min-height: 372px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}
.mk-pay__label { font-size: 12px; font-weight: 600; color: var(--text-muted); }
.mk-pay__amt { font-size: 36px; font-weight: 800; letter-spacing: -0.02em; color: var(--text); }
.mk-pay__tick {
  width: 64px;
  height: 64px;
  margin-top: 10px;
  border-radius: 999px;
  background: var(--gradient);
  color: #fff;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 26px -8px rgba(103, 113, 206, 0.6);
}
.mk-pay__paid { font-size: 13px; font-weight: 700; color: var(--success-fg); }
.mk-wallets { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-top: 12px; }
.mk-wallets span {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--text-body);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 5px 10px;
}

.mk-connect {
  position: relative;
  width: 100%;
  max-width: 420px;
  height: 300px;
  margin: 0 auto;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 420 300'%3E%3Cg stroke='%236771ce' stroke-opacity='0.4' stroke-width='2'%3E%3Cline x1='64' y1='46' x2='210' y2='150'/%3E%3Cline x1='356' y1='46' x2='210' y2='150'/%3E%3Cline x1='64' y1='254' x2='210' y2='150'/%3E%3Cline x1='356' y1='254' x2='210' y2='150'/%3E%3C/g%3E%3C/svg%3E");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.mk-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 88px;
  height: 88px;
  border-radius: 24px;
  background: var(--gradient);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 40px -12px rgba(103, 113, 206, 0.6);
  z-index: 2;
}
.mk-node {
  position: absolute;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-strong);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: var(--shadow-sm);
}
.mk-node--a { top: 6px; left: 6px; }
.mk-node--b { top: 6px; right: 6px; }
.mk-node--c { bottom: 6px; left: 6px; }
.mk-node--d { bottom: 6px; right: 6px; }

.caps { padding: var(--section-y) 0; }
.caps > .container { display: flex; flex-direction: column; gap: 56px; }
.cap-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}
.cap-row--rev .cap-copy { order: 2; }
.cap-row--rev .media { order: 1; }
.cap-copy h3 {
  margin: 10px 0 0;
  font-weight: 800;
  font-size: clamp(24px, 3vw, 30px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--text);
}
.cap-copy p { margin-top: 14px; font-size: 15px; line-height: 1.6; color: var(--text-body); max-width: 460px; }

.checks { margin-top: 22px; display: flex; flex-direction: column; gap: 12px; }
.checks li {
  position: relative;
  padding-left: 30px;
  font-size: 14.5px;
  line-height: 1.5;
  font-weight: 500;
  color: var(--text-strong);
}
.checks li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--gradient);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product { position: relative; overflow: hidden; background: var(--bg-soft); padding: var(--section-y) 0; }
.product-logo { display: block; height: 48px; width: auto; margin-bottom: 18px; }
.product > .container { position: relative; z-index: 1; }
.product__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 420px);
  gap: 56px;
  align-items: center;
}
.product__copy h2 {
  margin: 14px 0 0;
  font-weight: 800;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--text);
}
.product__copy p { margin-top: 16px; font-size: 16px; line-height: 1.6; color: var(--text-body); max-width: 480px; }
.product__cta { margin-top: 26px; }

.connect { padding: 0 0 var(--section-y); }
.connect-card {
  position: relative;
  overflow: hidden;
  background: var(--bg-dark);
  color: #fff;
  border-radius: var(--radius-2xl);
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.connect-card .eyebrow { background: none; color: #9fb0e8; -webkit-text-fill-color: #9fb0e8; }
.connect-logo-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 16px;
  padding: 14px 24px;
  box-shadow: 0 14px 34px -16px rgba(0, 0, 0, 0.5);
}
.connect-logo-chip img {
  display: block;
  height: 46px;
  width: auto;
}
.connect-card__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.connect-card__copy h2 {
  margin: 14px 0 0;
  font-weight: 800;
  font-size: clamp(26px, 3.4vw, 36px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #fff;
}
.connect-card__copy p { margin: 14px auto 0; font-size: 15px; line-height: 1.6; color: var(--text-dark-body); max-width: 560px; }
.connect-card__cta { margin-top: 26px; display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }
.connect-card .btn--primary { border: 0; }
.connect-card .link-arrow { color: #fff; }
.connect-card .link-arrow:hover { color: #9fb0e8; }
.connect-card__media {
  width: 100%;
  max-width: 760px;
  margin: 38px auto 0;
}

@media (max-width: 1120px) {
  .cap-row,
  .product__row { grid-template-columns: 1fr; gap: 32px; }
  .cap-row--rev .cap-copy { order: 1; }
  .cap-row--rev .media { order: 2; }
  .connect-card { grid-template-columns: 1fr; padding: 32px; }
}

@media (prefers-reduced-motion: reduce) {
  .aurora::before,
  .aurora::after,
  .aurora i,
  .hero-art__pill-dot,
  .pill__dot { animation: none; }
  .values .value,
  .features .feature,
  .stats .stat,
  .reach__cards .reach-card { opacity: 1; transform: none; }
  .btn--primary:hover::after { animation: none; }
}

/* ---- Standalone page chrome: page hero + resource/contact grids ---- */
.page-hero { position: relative; overflow: hidden; padding: clamp(72px, 10vw, 116px) 0 4px; }
.page-hero > .grid-field, .page-hero > .aurora { z-index: 0; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-weight: 800; font-size: clamp(34px, 5vw, 54px); line-height: 1.04; letter-spacing: -0.02em; color: var(--text); max-width: 18ch; margin-top: 6px; }
.page-hero h1 .gradient-text { display: inline; }
.page-hero p { margin-top: 16px; font-size: clamp(16px, 1.6vw, 19px); line-height: 1.55; color: var(--text-body); max-width: 62ch; }
.page-hero .hero__cta { margin-top: 26px; }

.res-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.res-card { display: flex; flex-direction: column; gap: 8px; padding: 26px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.res-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.res-card h3 { font-size: 18px; font-weight: 700; color: var(--text-strong); }
.res-card p { font-size: 14.5px; line-height: 1.55; color: var(--text-body); flex: 1; }
.res-card .link-arrow { margin-top: 4px; }

.contact-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.contact-card { display: flex; flex-direction: column; gap: 6px; padding: 24px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.contact-card h3 { font-size: 16px; font-weight: 700; color: var(--text-strong); }
.contact-card p { font-size: 13.5px; line-height: 1.5; color: var(--text-body); flex: 1; }
.contact-card a { font-size: 14.5px; font-weight: 600; }

@media (max-width: 900px) {
  .res-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .res-grid, .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .page-hero {
    padding-top: 56px;
  }
  .orch-steps {
    grid-template-columns: 1fr;
  }
  .connect-card {
    padding: 26px 20px;
    border-radius: var(--radius-xl);
  }
  .connect-logo-chip {
    padding: 12px 18px;
  }
  .connect-logo-chip img {
    height: 34px;
  }
  .footer__grid {
    gap: 28px 22px;
  }
  .footer__col {
    gap: 4px;
  }
  .footer__title {
    margin-bottom: 6px;
  }
  .footer__links {
    flex-wrap: wrap;
  }
}
