:root {
  --ink: #1d1d1f;
  --muted: #6e6e73;
  --soft: #f5f5f7;
  --white: #fff;
  --orange: #e96a22;
  --blue: #0066cc;
  --teal: #2f9189;
  --line: rgba(0,0,0,.08);
  --radius: 28px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", system-ui, sans-serif;
  line-height: 1.45;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
.wrap { width: min(1180px, calc(100% - 44px)); margin: 0 auto; }
.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.topbar-inner {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}
.brand img { width: auto; height: 46px; }
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(0,0,0,.04);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0;
  border-radius: 999px;
  background: var(--ink);
  transform-origin: center;
  transition: transform .2s ease, opacity .2s ease;
}
.topbar.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.topbar.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.topbar.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.navlinks {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #333336;
  font-size: 13px;
  font-weight: 520;
}
.navlinks a.active { color: #000; font-weight: 700; }
.mobile-nav-cta, .mobile-nav-login { display: none; }
.nav-login {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(0,102,204,.22);
  border-radius: 999px;
  color: var(--blue);
  background: rgba(0,102,204,.05);
  font-size: 13px;
  font-weight: 720;
  transition: color .18s ease, background .18s ease, border-color .18s ease, transform .18s ease;
}
.nav-login:hover {
  color: #fff;
  border-color: var(--blue);
  background: var(--blue);
  transform: translateY(-1px);
}
.nav-account { position: relative; }
.nav-account-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid rgba(0,102,204,.22);
  border-radius: 999px;
  color: var(--blue);
  background: rgba(0,102,204,.05);
  font: inherit;
  font-size: 13px;
  font-weight: 720;
  cursor: pointer;
}
.nav-account-toggle:hover,.nav-account.open .nav-account-toggle { color:#fff; border-color:var(--blue); background:var(--blue); }
.account-chevron { font-size:10px; transition:transform .18s ease; }
.nav-account.open .account-chevron { transform:rotate(180deg); }
.nav-account-menu {
  position:absolute;
  top:calc(100% + 10px);
  right:0;
  z-index:50;
  width:230px;
  display:grid;
  gap:4px;
  padding:9px;
  border:1px solid rgba(0,0,0,.09);
  border-radius:17px;
  background:#fff;
  box-shadow:0 22px 55px rgba(7,31,59,.16);
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transform:translateY(-7px);
  transition:opacity .16s ease,transform .16s ease,visibility .16s ease;
}
.nav-account.open .nav-account-menu { opacity:1; visibility:visible; pointer-events:auto; transform:translateY(0); }
.nav-account-summary { display:grid; gap:2px; padding:10px 11px 11px; border-bottom:1px solid var(--line); }
.nav-account-summary strong { color:var(--ink); font-size:14px; }
.nav-account-summary small { color:var(--muted); font-size:11px; text-transform:capitalize; }
.nav-account-menu a { display:flex; align-items:center; gap:9px; min-height:40px; padding:0 11px; border-radius:10px; color:#3d4752; font-size:13px; font-weight:650; }
.nav-account-menu a:hover { color:var(--blue); background:#f2f7ff; }
.nav-account-menu .nav-account-logout { margin-top:2px; color:#b42318; border-top:1px solid var(--line); border-radius:0 0 10px 10px; }
.mobile-nav-account { display:none; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}
.topbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.language-switcher { margin: 0; }
.language-switcher select {
  min-width: 68px;
  height: 34px;
  padding: 0 28px 0 11px;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 999px;
  color: #1d1d1f;
  background-color: #f5f5f7;
  font: inherit;
  font-size: 12px;
  font-weight: 750;
  cursor: pointer;
}
.language-switcher select:focus-visible {
  outline: 3px solid rgba(0,102,204,.22);
  outline-offset: 2px;
}
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.hero {
  background: linear-gradient(180deg, #fff 0%, #fbfbfd 100%);
  text-align: center;
}
.hero-inner { padding: 78px 0 34px; }
.hero-module-logo {
  width: auto;
  max-width: min(240px, 72vw);
  max-height: 86px;
  margin: 0 auto 16px;
  object-fit: contain;
}
.eyebrow {
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 19px;
  font-weight: 700;
}
.hero h1 {
  max-width: 930px;
  margin: 0 auto 18px;
  font-size: clamp(54px, 6.5vw, 78px);
  line-height: 1;
  letter-spacing: -.035em;
}
.hero .lead {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 28px;
  line-height: 1.25;
  font-weight: 560;
}
.hero p.support {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 18px;
}
.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  color: #fff;
  background: var(--blue);
  font-size: 17px;
  font-weight: 600;
}
.button.secondary {
  color: var(--blue);
  background: transparent;
}
.button.secondary.light { color: #fff; }
.button.tertiary {
  min-height: 38px;
  padding: 0 8px;
  font-size: 15px;
}
.button span[aria-hidden="true"] { margin-left: 5px; }
.hero-image {
  width: min(1320px, calc(100% - 44px));
  min-height: clamp(360px, 47vw, 650px);
  margin: 24px auto 0;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  box-shadow: 0 28px 70px rgba(0,0,0,.13);
}
.page-about .hero {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(440px, 1.08fr);
  width: min(1320px, calc(100% - 44px));
  margin: 32px auto 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--soft);
  text-align: left;
  box-shadow: 0 28px 70px rgba(0,0,0,.1);
}
.page-about .hero-inner {
  display: flex;
  width: auto;
  margin: 0;
  padding: 72px 58px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.page-about .hero h1 {
  max-width: 650px;
  margin: 0 0 22px;
  font-size: clamp(48px, 5.2vw, 72px);
}
.page-about .hero .lead,
.page-about .hero p.support {
  max-width: 610px;
  margin-left: 0;
  margin-right: 0;
}
.page-about .hero-actions { justify-content: flex-start; }
.page-about .hero-image {
  width: 100%;
  min-height: 680px;
  margin: 0;
  border-radius: 0;
  background-position: center;
  box-shadow: none;
}
.trusted-band {
  padding: 32px 0 14px;
  background: #fff;
}
.trusted-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 1px 0 rgba(0,0,0,.05);
}
.trusted-card.compact .trusted-copy { padding-bottom: 28px; }
.trusted-copy {
  padding: 28px 30px 0;
  text-align: center;
}
.trusted-copy small {
  display: block;
  margin-bottom: 5px;
  color: var(--orange);
  font-size: 15px;
  font-weight: 700;
}
.trusted-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}
.trusted-copy span {
  display: block;
  margin-top: 8px;
  color: #8a8a8e;
  font-size: 15px;
}
.trusted-logo-scroll {
  width: 100%;
  overflow-x: hidden;
}
.trusted-logo-scroll img {
  width: 100%;
  height: auto;
  margin-top: 2px;
}
.section {
  padding: 62px 0;
  background: var(--soft);
}
.section.white { background: #fff; }
.section-title {
  max-width: 850px;
  margin: 0 auto 26px;
  text-align: center;
}
.section-title small {
  display: block;
  margin-bottom: 8px;
  color: var(--orange);
  font-size: 17px;
  font-weight: 700;
}
.section-title h2 {
  margin-bottom: 10px;
  font-size: 56px;
  line-height: 1.04;
  letter-spacing: 0;
}
.section-title p {
  margin: 0 auto 10px;
  color: var(--muted);
  font-size: 21px;
}
.section-title p:last-child { margin-bottom: 0; }
.home-intro-title {
  max-width: 980px;
  margin-bottom: 30px;
}
.home-intro-title h2 {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.home-intro-title p {
  max-width: 880px;
  font-size: 22px;
  line-height: 1.5;
}
.intro-point-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1080px;
  margin: 0 auto;
}
.intro-point {
  min-height: 210px;
  padding: 28px;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0,0,0,.05);
}
.intro-point span {
  display: block;
  margin-bottom: 34px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 800;
}
.intro-point p {
  margin: 0;
  color: #1d1d1f;
  font-size: 24px;
  line-height: 1.22;
  font-weight: 650;
}
.ecosystem-section {
  padding-top: 52px;
}
.ecosystem-heading {
  max-width: 980px;
  margin: 0 auto 12px;
  text-align: center;
}
.ecosystem-heading small {
  display: block;
  margin-bottom: 8px;
  color: var(--orange);
  font-size: 17px;
  font-weight: 700;
}
.ecosystem-heading h2 {
  max-width: 760px;
  margin: 0 auto 14px;
  font-size: 44px;
  line-height: 1.04;
  letter-spacing: 0;
}
.ecosystem-heading p {
  max-width: 780px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.45;
}
.platform-list {
  max-width: 1080px;
  margin: 34px auto 0;
  border-top: 1px solid rgba(0,0,0,.18);
}
.platform-row {
  display: grid;
  grid-template-columns: minmax(180px, .34fr) minmax(0, 1fr);
  gap: 38px;
  align-items: center;
  padding: 34px 0;
  border-bottom: 1px solid rgba(0,0,0,.18);
}
.platform-logo {
  display: grid;
  place-items: center;
  min-height: 170px;
  border-radius: 28px;
  background: #f5f5f7;
}
.platform-logo img {
  width: min(210px, 78%);
  max-height: 92px;
  object-fit: contain;
}
.platform-content small {
  display: block;
  margin-bottom: 16px;
  color: #1d1d1f;
  font-size: 17px;
  font-weight: 800;
}
.platform-content h3 {
  margin: 0 0 16px;
  font-size: 26px;
  line-height: 1.1;
}
.platform-content p {
  max-width: 760px;
  margin: 0 0 18px;
  color: #424245;
  font-size: 19px;
  line-height: 1.45;
}
.platform-content strong {
  display: block;
  margin-bottom: 18px;
  color: #1d1d1f;
  font-size: 19px;
  line-height: 1.3;
}
.platform-content a {
  color: var(--blue);
  font-size: 18px;
  font-weight: 700;
}
.journey-section {
  background: #f5f5f7;
}
.journey-title {
  max-width: 920px;
}
.journey-title h2 {
  font-size: 50px;
}
.journey-title p {
  max-width: 780px;
  line-height: 1.5;
}
.journey-image-scroll { overflow: visible; }
.journey-map-image {
  display: block;
  width: 100%;
  max-width: 1180px;
  height: auto;
  margin: 0 auto;
}
.why-section {
  padding-top: 54px;
}
.why-panel {
  max-width: 1020px;
  margin: 0 auto;
}
.why-panel small {
  display: block;
  margin-bottom: 22px;
  color: var(--orange);
  font-size: 17px;
  font-weight: 800;
}
.why-panel h2 {
  max-width: 760px;
  margin: 0 0 26px;
  font-size: 34px;
  line-height: 1.12;
  letter-spacing: 0;
}
.why-list {
  border-top: 1px solid rgba(0,0,0,.22);
}
.why-row {
  display: grid;
  grid-template-columns: minmax(240px, .42fr) minmax(0, 1fr);
  gap: 34px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(0,0,0,.22);
}
.why-row h3 {
  margin: 0;
  color: #1d1d1f;
  font-size: 21px;
  line-height: 1.2;
}
.why-row p {
  margin: 0;
  color: #424245;
  font-size: 20px;
  line-height: 1.45;
}
.content-section { scroll-margin-top: 78px; }
.content-split {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, .96fr);
  gap: 52px;
  align-items: stretch;
  max-width: 1080px;
  margin: 0 auto;
}
.content-split.no-image { grid-template-columns: 1fr; }
.content-copy { padding: 34px 0; }
.content-copy small,
.statement-panel small,
.story-panel small,
.cta-panel small {
  display: block;
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .04em;
}
.content-copy h2,
.statement-panel h2,
.story-panel h2 {
  margin-bottom: 22px;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.04;
}
.content-copy p,
.statement-panel p,
.story-panel p {
  margin-bottom: 15px;
  color: #424245;
  font-size: 19px;
  line-height: 1.58;
}
.content-copy p:last-child,
.statement-panel p:last-child,
.story-panel p:last-child { margin-bottom: 0; }
.read-more { margin-top: 18px; }
.read-more summary,
.card-details summary {
  width: fit-content;
  cursor: pointer;
  color: var(--blue);
  font-size: 15px;
  font-weight: 700;
  list-style: none;
}
.read-more summary::-webkit-details-marker,
.card-details summary::-webkit-details-marker { display: none; }
.read-more summary::after,
.card-details summary::after { content: " +"; }
.read-more[open] summary::after,
.card-details[open] summary::after { content: " −"; }
.read-more > div { padding-top: 14px; }
.content-image {
  min-height: 520px;
  border-radius: var(--radius);
  background-position: center;
  background-size: cover;
  box-shadow: 0 20px 55px rgba(0,0,0,.1);
}
.statement-panel,
.story-panel {
  max-width: 980px;
  margin: 0 auto;
  padding: 58px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 1px 0 rgba(0,0,0,.05);
}
.white .statement-panel,
.white .story-panel { background: var(--soft); }
.statement-panel p,
.story-panel p { max-width: 820px; font-size: 21px; }
.story-testimonials {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}
.story-quote {
  position: relative;
  margin: 0;
  padding: 32px 36px 30px 78px;
  overflow: hidden;
  border: 1px solid rgba(225, 101, 35, .18);
  border-radius: 24px;
  background: linear-gradient(135deg, #fff1e5 0%, #fffaf6 100%);
}
.story-quote::before {
  content: "\201C";
  position: absolute;
  top: 17px;
  left: 28px;
  color: var(--orange);
  font-family: Georgia, serif;
  font-size: 64px;
  line-height: 1;
}
.story-panel .story-quote p {
  max-width: none;
  margin: 0;
  color: #1d1d1f;
  font-size: 21px;
  font-weight: 650;
  line-height: 1.5;
}
.story-quote footer {
  margin-top: 18px;
  color: #6e6e73;
  font-size: 15px;
  font-weight: 800;
}
.section-lead-line {
  max-width: 780px;
  margin: 0 auto 6px;
  color: var(--muted);
  text-align: center;
  font-size: 20px;
}
.section-paragraphs {
  max-width: 800px;
  margin: -8px auto 30px;
  color: var(--muted);
  text-align: center;
  font-size: 20px;
}
.section-paragraphs p { margin-bottom: 7px; }
.journey-flow {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.journey-flow li {
  position: relative;
  flex: 0 1 calc((100% - 54px) / 4);
  min-width: 210px;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .045);
  font-size: 17px;
  font-weight: 700;
}
.journey-number {
  position: absolute;
  top: 22px;
  right: 22px;
  color: #86868b;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .08em;
}
.journey-name {
  display: block;
  padding-right: 22px;
  line-height: 1.25;
}
.white .journey-flow li { background: var(--soft); }
.semantic-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 15px;
  font-size: 20px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.55);
}
.semantic-icon i { font-size: inherit; }
.semantic-icon.tone-0 { color: #0759a8; background: #e8f2ff; }
.semantic-icon.tone-1 { color: #16756e; background: #e4f6f3; }
.semantic-icon.tone-2 { color: #a84a14; background: #fff0e6; }
.semantic-icon.tone-3 { color: #6337a1; background: #f1eaff; }
.semantic-icon.tone-4 { color: #a22d69; background: #fdeaf4; }
.semantic-icon.tone-5 { color: #3b721c; background: #edf7e7; }
.journey-flow li > .semantic-icon { margin-bottom: 22px; }
.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.detail-grid.has-details { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.detail-card {
  padding: 30px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0,0,0,.05);
}
.white .detail-card { background: var(--soft); }
.detail-card > .semantic-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 24px;
  border-radius: 15px;
}
.detail-card > .pillar-icon {
  display: block;
  width: 68px;
  height: 68px;
  margin-bottom: 24px;
}
.pillar-icon img {
  display: block;
  width: 100%;
  height: 100%;
}
.detail-card h3 { margin-bottom: 9px; font-size: 24px; line-height: 1.13; }
.detail-card strong { display: block; margin-bottom: 10px; color: #424245; font-size: 16px; }
.detail-card p { margin-bottom: 0; color: var(--muted); font-size: 16px; line-height: 1.5; }
.detail-card ul,
.step-row ul {
  margin: 18px 0 0;
  padding-left: 19px;
  color: #424245;
  font-size: 14px;
  line-height: 1.5;
}
.card-details { margin-top: 18px; }
.card-details ul { padding-top: 2px; }
.detail-card li,
.step-row li { margin-bottom: 5px; }
.steps-list { max-width: 1040px; margin: 0 auto; border-top: 1px solid rgba(0,0,0,.2); }
.step-row {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 24px;
  padding: 34px 0;
  border-bottom: 1px solid rgba(0,0,0,.2);
}
.step-icon { align-self: start; }
.step-row small { display: block; margin-bottom: 5px; color: var(--muted); font-size: 15px; font-weight: 700; }
.step-row h3 { margin-bottom: 10px; font-size: 29px; line-height: 1.1; }
.step-row p { max-width: 820px; margin: 0; color: #424245; font-size: 18px; line-height: 1.55; }
.type-pills .pill { background: #fff; }
.type-pills.white .pill { background: var(--soft); }
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}
.metric {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 25px;
  border-radius: 24px;
  background: #fff;
}
.white .metric { background: var(--soft); }
.metric strong { font-size: 42px; line-height: 1; }
.metric span { color: var(--muted); font-size: 15px; font-weight: 650; }
.section-note { margin: 18px 0 0; color: #8a8a8e; text-align: center; font-size: 13px; }
#numbers .metrics-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
#numbers .metric {
  position: relative;
  overflow: hidden;
  min-height: 184px;
  align-items: flex-start;
  justify-content: center;
  gap: 22px;
  padding: 34px 30px;
  border: 1px solid rgba(6,36,66,.08);
  border-radius: var(--radius);
  color: #062442;
  background: linear-gradient(145deg, #fff 0%, #f7f9fc 100%);
  box-shadow: 0 18px 44px rgba(6,36,66,.08);
  text-align: left;
}
#numbers .metric::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: var(--blue);
}
#numbers .metric:nth-child(2)::before { background: var(--orange); }
#numbers .metric:nth-child(3)::before { background: var(--teal); }
#numbers .metric::after {
  content: "";
  position: absolute;
  right: -50px;
  bottom: -70px;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  background: rgba(0,102,204,.045);
  pointer-events: none;
}
#numbers .metric strong {
  position: relative;
  z-index: 1;
  font-size: clamp(42px, 4.5vw, 68px);
  font-weight: 750;
  letter-spacing: -.035em;
}
#numbers .metric span {
  position: relative;
  z-index: 1;
  max-width: 360px;
  color: #515b66;
  font-size: 18px;
  font-weight: 520;
  line-height: 1.4;
}
.partner-panel {
  overflow-x: auto;
  border-radius: var(--radius);
  background: #fff;
}
.partner-panel img { width: 100%; min-width: 760px; }
.cta-panel small { color: #ffb37f; }
.tile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.tile {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 460px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 1px 0 rgba(0,0,0,.04);
}
.tile-content {
  padding: 38px;
}
.tile h3 {
  margin-bottom: 10px;
  font-size: 38px;
  line-height: 1.05;
  letter-spacing: 0;
}
.tile p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 19px;
}
.tile-media {
  position: relative;
  height: 260px;
  margin-top: auto;
  background-size: cover;
  background-position: center;
}
.tile-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0) 48%, rgba(255,255,255,.16) 100%);
}
.wide-tile {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr);
  align-items: center;
  gap: 20px;
  min-height: 520px;
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
}
.wide-tile .tile-content { padding: 48px; }
.wide-image {
  height: 100%;
  min-height: 520px;
  background-size: cover;
  background-position: center;
}
.mini-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.mini-grid.module-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.mini-card {
  min-height: 180px;
  padding: 24px;
  border-radius: 22px;
  background: #fff;
}
.mini-card.module-card {
  min-height: 150px;
  display: grid;
  place-items: center;
}
.mini-card img {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  object-fit: contain;
}
.mini-card img.module-logo {
  width: min(170px, 100%);
  height: 76px;
  margin: 0;
  object-position: center;
}
.mini-card h3 { margin-bottom: 8px; font-size: 21px; line-height: 1.15; }
.mini-card p { margin: 0; color: var(--muted); font-size: 15px; }
.pill-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.pill {
  padding: 11px 16px;
  border-radius: 999px;
  background: #fff;
  color: #424245;
  font-size: 15px;
  font-weight: 600;
}
.cta {
  padding: 54px 0;
  background: #fff;
}
.cta-panel {
  min-height: 430px;
  display: grid;
  place-items: center;
  padding: 44px;
  border-radius: var(--radius);
  color: #fff;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(0,0,0,.2), rgba(0,0,0,.68)),
    radial-gradient(circle at 70% 20%, rgba(233,106,34,.45), transparent 28%),
    #07152e;
}
.cta-panel h2 {
  max-width: 850px;
  margin: 0 auto 18px;
  font-size: 64px;
  line-height: 1.02;
  letter-spacing: 0;
}
.cta-panel p {
  max-width: 660px;
  margin: 0 auto 26px;
  color: rgba(255,255,255,.78);
  font-size: 21px;
}
.footer {
  padding: 42px 0 24px;
  background: #f5f5f7;
  color: #6e6e73;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 32px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.footer-logo { width: 116px; margin-bottom: 14px; }
.footer h3 { margin: 0 0 10px; color: #1d1d1f; font-size: 13px; }
.footer a, .footer p { display: block; margin: 0 0 8px; color: #6e6e73; font-size: 13px; }
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.footer .footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin: 0;
  border: 1px solid rgba(0, 0, 0, .12);
  border-radius: 50%;
  background: #fff;
  color: #1d1d1f;
  font-size: 17px;
  transition: color .2s ease, border-color .2s ease, transform .2s ease;
}
.footer .footer-social-link:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
}
.copyright { margin-top: 26px; font-size: 12px; }
@media (max-width: 980px) {
  .topbar-inner {
    min-height: 62px;
    flex-wrap: nowrap;
    gap: 14px;
    padding: 8px 0;
  }
  .brand img { height: 44px; }
  .topbar-actions { order: 2; margin-left: auto; }
  .nav-toggle { display: flex; order: 3; margin-left: 0; }
  .language-switcher select { min-width: 62px; }
  .navlinks {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    width: 100%;
    display: grid;
    gap: 4px;
    padding: 10px;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 24px 60px rgba(0,0,0,.12);
    backdrop-filter: saturate(180%) blur(18px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    visibility: hidden;
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  }
  .topbar.nav-open .navlinks {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }
  .navlinks a {
    display: flex;
    align-items: center;
    min-height: 46px;
    padding: 0 14px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 600;
  }
  .navlinks a.active { background: #f5f5f7; }
  .mobile-nav-cta {
    display: flex;
    justify-content: center;
    margin-top: 4px;
    background: var(--blue);
    color: #fff;
  }
  .mobile-nav-login {
    display: flex;
    justify-content: center;
    margin-top: 4px;
    border: 1px solid rgba(0,102,204,.2);
    color: var(--blue);
    background: rgba(0,102,204,.05);
  }
  .nav-cta, .nav-login, .nav-account { display: none; }
  .mobile-nav-account { display:block; margin-top:4px; border:1px solid rgba(0,102,204,.18); border-radius:14px; background:#f5f8fd; }
  .mobile-nav-account summary { min-height:46px; display:flex; align-items:center; gap:9px; padding:0 14px; color:var(--blue); font-size:15px; font-weight:750; cursor:pointer; list-style:none; }
  .mobile-nav-account summary::-webkit-details-marker { display:none; }
  .mobile-nav-account summary::after { margin-left:auto; content:'+'; font-size:20px; font-weight:400; }
  .mobile-nav-account[open] summary::after { content:'−'; }
  .mobile-nav-account>div { display:grid; gap:3px; padding:4px 8px 8px; border-top:1px solid rgba(0,102,204,.12); }
  .navlinks .mobile-nav-account a { min-height:42px; font-size:14px; }
  .navlinks .mobile-nav-account .mobile-account-logout { color:#b42318; }
  .tile-grid, .wide-tile, .footer-grid { grid-template-columns: 1fr; }
  .wide-image { min-height: 360px; }
  .mini-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero h1 { font-size: 60px; }
  .page-about .hero {
    grid-template-columns: 1fr;
    width: min(760px, calc(100% - 44px));
  }
  .page-about .hero-inner { padding: 62px 42px; }
  .page-about .hero h1 { font-size: 56px; }
  .page-about .hero-image { min-height: 480px; }
  .section-title h2 { font-size: 44px; }
  .intro-point-grid { grid-template-columns: 1fr; }
  .intro-point {
    min-height: auto;
    padding: 24px;
  }
  .intro-point span { margin-bottom: 18px; }
  .intro-point p { font-size: 22px; }
  .ecosystem-heading h2 { font-size: 40px; }
  .platform-row {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .platform-logo {
    min-height: 140px;
    justify-content: start;
    padding: 24px;
  }
  .platform-logo img { width: min(190px, 72%); }
  .journey-title h2 { font-size: 42px; }
  .journey-image-scroll { overflow-x: auto; }
  .journey-map-image {
    min-width: 980px;
    max-width: none;
  }
  .why-panel h2 { font-size: 30px; }
  .why-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .content-split { grid-template-columns: 1fr; gap: 24px; }
  .content-copy { padding: 12px 0; }
  .content-image { min-height: 420px; }
  .journey-flow li { flex-basis: calc((100% - 18px) / 2); }
  .detail-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .metrics-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .tile h3 { font-size: 34px; }
  .cta-panel h2 { font-size: 48px; }
}
@media (max-width: 640px) {
  .wrap { width: min(100% - 28px, 1180px); }
  .hero-inner { padding: 54px 0 24px; }
  .hero-module-logo { max-height: 72px; margin-bottom: 14px; }
  .hero h1 { font-size: 44px; }
  .hero .lead { font-size: 21px; }
  .hero-image { width: min(100% - 28px, 1320px); min-height: 320px; }
  .page-about .hero {
    width: min(100% - 28px, 760px);
    margin-top: 18px;
  }
  .page-about .hero-inner { padding: 46px 26px 38px; }
  .page-about .hero h1 { font-size: 42px; }
  .page-about .hero .lead { font-size: 20px; }
  .page-about .hero p.support { font-size: 16px; }
  .page-about .hero-image { width: 100%; min-height: 340px; }
  .section { padding: 44px 0; }
  .tile { min-height: auto; }
  .tile-content, .wide-tile .tile-content { padding: 28px; }
  .tile-media { height: 220px; }
  .trusted-copy { padding: 24px 20px 0; }
  .trusted-copy p { font-size: 15px; }
  .trusted-card { overflow: hidden; }
  .trusted-logo-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .trusted-logo-scroll::-webkit-scrollbar { display: none; }
  .trusted-logo-scroll img {
    width: 820px;
    max-width: none;
  }
  .section-title h2 { font-size: 38px; }
  .home-intro-title { margin-bottom: 22px; }
  .intro-point-grid { gap: 12px; }
  .intro-point {
    border-radius: 22px;
    padding: 22px;
  }
  .intro-point p {
    font-size: 20px;
    line-height: 1.28;
  }
  .ecosystem-section { padding-top: 34px; }
  .ecosystem-heading small { margin-bottom: 8px; }
  .ecosystem-heading h2 {
    font-size: 23px;
    line-height: 1.22;
  }
  .ecosystem-heading p {
    margin-bottom: 12px;
    font-size: 18px;
  }
  .platform-list { margin-top: 24px; }
  .platform-row { padding: 26px 0; }
  .platform-logo {
    min-height: 118px;
    border-radius: 22px;
  }
  .platform-logo img {
    width: min(160px, 72%);
    max-height: 76px;
  }
  .platform-content h3 { font-size: 24px; }
  .platform-content p,
  .platform-content strong,
  .platform-content a {
    font-size: 17px;
  }
  .journey-title h2 { font-size: 36px; }
  .journey-image-scroll {
    margin-left: -14px;
    margin-right: -14px;
    padding: 0 14px 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .journey-image-scroll::-webkit-scrollbar { display: none; }
  .journey-map-image { min-width: 900px; }
  .why-section { padding-top: 34px; }
  .why-panel small { margin-bottom: 14px; }
  .why-panel h2 {
    margin-bottom: 20px;
    font-size: 26px;
  }
  .why-row {
    padding: 22px 0;
  }
  .why-row h3 { font-size: 19px; }
  .why-row p { font-size: 17px; }
  .content-copy h2,
  .statement-panel h2,
  .story-panel h2 { font-size: 36px; }
  .content-copy p,
  .statement-panel p,
  .story-panel p { font-size: 17px; }
  .content-image { min-height: 340px; }
  .statement-panel,
  .story-panel { padding: 30px 24px; }
  .story-quote { padding: 58px 22px 24px; }
  .story-quote::before { top: 12px; left: 20px; }
  .story-panel .story-quote p { font-size: 18px; }
  .journey-flow { gap: 12px; }
  .journey-flow li {
    flex: 1 1 100%;
    min-width: 0;
    min-height: auto;
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr) auto;
    grid-template-areas: "icon name number";
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 18px;
    font-size: 16px;
  }
  .journey-flow li > .semantic-icon {
    grid-area: icon;
    margin-bottom: 0;
  }
  .journey-name {
    grid-area: name;
    padding-right: 0;
  }
  .journey-number {
    position: static;
    grid-area: number;
    justify-self: end;
  }
  .detail-grid,
  .detail-grid.has-details { grid-template-columns: 1fr; }
  .detail-card { padding: 25px; }
  .step-row { grid-template-columns: 52px minmax(0, 1fr); gap: 12px; padding: 26px 0; }
  .step-row h3 { font-size: 24px; }
  .step-row p { font-size: 16px; }
  .metrics-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .metric { min-height: 140px; padding: 20px; }
  .metric strong { font-size: 34px; }
  #numbers .metrics-grid { grid-template-columns: 1fr; gap: 14px; }
  #numbers .metric { min-height: 160px; padding: 28px 26px 28px 30px; }
  #numbers .metric strong { font-size: 48px; }
  #numbers .metric span { font-size: 17px; }
  .tile h3 { font-size: 30px; }
  .mini-grid { grid-template-columns: 1fr; }
  .cta-panel { min-height: 360px; padding: 30px 22px; }
  .cta-panel h2 { font-size: 38px; }
}
