:root {
  --color-void: #08090a;
  --color-carbon: #0f1011;
  --color-obsidian: #161718;
  --color-graphite: #23252a;
  --color-smoke: #383b3f;
  --color-ash: #62666d;
  --color-fog: #8a8f98;
  --color-mist: #d0d6e0;
  --color-bone: #e5e5e6;
  --color-paper: #ffffff;
  --color-cyan: #2eb8f5;
  --color-violet: #9d4dff;
  --color-magenta: #c738ff;
  --color-pink: #ff5ac8;
  --color-accent: #b24dff;
  --brand-gradient: linear-gradient(90deg, #c738ff 0%, #8b5cf6 50%, #2eb8f5 100%);
  --brand-gradient-hover: linear-gradient(90deg, #d24dff 0%, #9d6bff 50%, #4cc8ff 100%);
  --brand-gradient-vertical: linear-gradient(180deg, #c738ff 0%, #8b5cf6 50%, #2eb8f5 100%);
  --surface-panel: #0f1011;
  --surface-soft: rgba(255,255,255,.018);
  --surface-hover: rgba(255,255,255,.026);
  --border-soft: rgba(255,255,255,.06);
  --border-subtle: rgba(255,255,255,.09);
  --accent-soft: rgba(178,77,255,.10);
  --accent-border: rgba(178,77,255,.45);
  --font-ui: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --text-display: clamp(24px, 4.1vw, 40px);
  --text-h1: clamp(28px, 4.4vw, 50px);
  --text-h2: clamp(20px, 3.5vw, 38px);
  --text-h3: clamp(18px, 2.2vw, 24px);
  --text-card-title: 20px;
  --text-body-lg: 18px;
  --text-body: 16px;
  --text-body-sm: 14px;
  --text-label: 12px;
  --radius-xs: 4px;
  --radius-button: 6px;
  --radius-card: 12px;
  --radius-pill: 9999px;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  --space-32: 128px;
  --container-wide: 1440px;
  --container-content: 1200px;
  --ease-standard: cubic-bezier(.2,.8,.2,1);
  --dur-fast: 180ms;
  --dur-ui: 240ms;
  --dur-reveal: 560ms;
}

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

html {
  scroll-behavior: smooth;
  background: var(--color-void);
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 78% 4%, rgba(46,184,245,.08), transparent 28rem),
    radial-gradient(circle at 18% 82%, rgba(199,56,255,.07), transparent 26rem),
    radial-gradient(circle at 14% 42%, rgba(255,255,255,.022), transparent 28rem),
    var(--color-void);
  color: var(--color-paper);
  font-family: var(--font-ui);
  font-feature-settings: "cv01" 1, "ss03" 1, "zero" 1;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.copy-mobile {
  display: none;
}

.container {
  width: min(calc(100% - 96px), var(--container-wide));
  margin-inline: auto;
}

.container-wide {
  width: min(calc(100% - 96px), var(--container-wide));
  margin-inline: auto;
}

.section {
  position: relative;
  scroll-margin-top: 96px;
  padding-block: clamp(104px, 12vh, 154px);
}

.anchor-target {
  position: absolute;
  top: -96px;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 78% 38%, rgba(46,184,245,.05), transparent 24rem),
    radial-gradient(circle at 18% 62%, rgba(199,56,255,.04), transparent 22rem),
    linear-gradient(180deg, rgba(255,255,255,.012), transparent 34%);
  opacity: .72;
}

.section > * {
  position: relative;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding-inline: max(32px, calc((100vw - 1440px) / 2));
  border-bottom: 1px solid rgba(255,255,255,.06);
  background: rgba(8,9,10,.72);
  backdrop-filter: blur(16px);
  transition: background var(--dur-ui) var(--ease-standard), border-color var(--dur-ui) var(--ease-standard);
}

.site-header.is-scrolled {
  background: rgba(8,9,10,.88);
  border-color: rgba(255,255,255,.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 196px;
}

.brand img {
  width: 196px;
  height: auto;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
  min-width: 0;
}

.desktop-nav a,
.footer nav a {
  color: var(--color-fog);
  font-size: 14px;
  letter-spacing: -.01em;
  transition: color var(--dur-fast) var(--ease-standard);
}

.desktop-nav a:hover,
.desktop-nav a.is-active,
.footer nav a:hover {
  color: var(--color-paper);
}

.header-cta {
  position: relative;
  isolation: isolate;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 0 22px;
  border: 0;
  border-radius: var(--radius-button);
  background: transparent;
  color: var(--color-paper);
  font-size: 14px;
  font-weight: 590;
  box-shadow: 0 0 0 rgba(178,77,255,0);
  transition: box-shadow var(--dur-fast) var(--ease-standard), transform var(--dur-fast) var(--ease-standard), filter var(--dur-fast) var(--ease-standard), background var(--dur-fast) var(--ease-standard);
}

.header-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  padding: 1px;
  background: var(--brand-gradient);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.header-cta:hover {
  background: rgba(255,255,255,.04);
  filter: brightness(1.05);
  box-shadow: 0 10px 34px rgba(178,77,255,.16);
  transform: translateY(-1px);
}

.header-cta:active {
  transform: translateY(0);
}

.header-cta:hover span,
.btn:hover span[aria-hidden="true"],
.contact-card:hover .contact-card__arrow {
  transform: translateX(3px);
}

.menu-button {
  display: none;
}

.mobile-menu {
  position: fixed;
  inset: 72px 16px auto;
  z-index: 99;
  padding: 18px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  background: rgba(15,16,17,.97);
  box-shadow: 0 24px 80px rgba(0,0,0,.45);
}

.mobile-menu nav {
  display: grid;
  gap: 2px;
}

.mobile-menu a {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding-inline: 14px;
  border-radius: var(--radius-button);
  color: var(--color-mist);
}

.mobile-menu a:hover {
  background: var(--surface-hover);
  color: var(--color-paper);
}

.mobile-menu__cta {
  position: relative;
  isolation: isolate;
  margin-top: 10px;
  border: 1px solid transparent !important;
  background-image: var(--brand-gradient) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
}

.mobile-menu__cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  padding: 1px;
  background: var(--brand-gradient);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.section-label {
  margin: 0 0 34px;
  background-image: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-size: var(--text-label);
  font-weight: 590;
  letter-spacing: .08em;
  text-transform: uppercase;
}

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

h1,
h2 {
  max-width: 790px;
  margin-bottom: 28px;
  color: var(--color-paper);
  font-weight: 510;
  letter-spacing: -.022em;
}

h1 {
  font-size: var(--text-display);
  line-height: .99;
}

h2 {
  font-size: var(--text-h2);
  line-height: 1.04;
}

h1 span,
h2 span {
  color: #aaaeb4;
}

p {
  color: var(--color-fog);
  font-size: var(--text-body-lg);
  line-height: 1.55;
  letter-spacing: -.01em;
}

.hero {
  position: relative;
  min-height: calc(100svh - 72px);
  padding-top: 72px;
  padding-bottom: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: #08090a;
}

.hero > .hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  background: #08090a;
  opacity: 1;
  transition: opacity 2.8s ease;
}

.hero.is-ready > .hero__bg {
  opacity: 0;
  pointer-events: none;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: #08090a;
  opacity: 0;
  transition: opacity 2.8s ease;
}

.hero.is-ready::before {
  opacity: .55;
}

.hero::after {
  content: "";
  position: absolute;
  right: 7vw;
  bottom: 134px;
  width: min(46vw, 700px);
  height: 34px;
  pointer-events: none;
  background: radial-gradient(ellipse, rgba(199,56,255,.55), rgba(46,184,245,.16) 42%, transparent 70%);
  filter: blur(12px);
  opacity: 0;
  z-index: 2;
  transition: opacity 2.4s ease .4s;
}

.hero.is-ready::after {
  opacity: .72;
}

.hero__grid,
.hero-facts {
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 2.6s ease .2s, transform 2.6s ease .2s;
}

.hero.is-ready .hero__grid,
.hero.is-ready .hero-facts {
  opacity: 1;
  transform: none;
}

.hero:not(.is-ready) .hero__grid,
.hero:not(.is-ready) .hero-facts {
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, .98fr);
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}

.hero__copy {
  padding-top: 18px;
}

.hero__lead {
  max-width: 680px;
  margin-bottom: 18px;
  color: var(--color-mist);
  font-size: clamp(19px, 1.7vw, 24px);
  line-height: 1.55;
}

.hero__support {
  max-width: 620px;
  margin-bottom: 38px;
  color: var(--color-fog);
  font-size: 17px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: var(--radius-button);
  padding: 0 22px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 590;
  letter-spacing: -.01em;
  box-shadow: 0 0 0 rgba(0,0,0,0);
  transition: border-color var(--dur-fast) var(--ease-standard), background var(--dur-fast) var(--ease-standard), color var(--dur-fast) var(--ease-standard), box-shadow var(--dur-fast) var(--ease-standard), transform var(--dur-fast) var(--ease-standard);
}

.btn span[aria-hidden="true"] {
  transition: transform var(--dur-fast) var(--ease-standard);
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  min-width: 256px;
  background: var(--brand-gradient);
  border-color: transparent;
  color: var(--color-paper);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.28), 0 10px 28px rgba(178,77,255,.18);
}

.btn--primary:hover {
  background: var(--brand-gradient-hover);
  border-color: transparent;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.4), 0 14px 42px rgba(46,184,245,.22);
  transform: translateY(-2px);
}

.btn--secondary,
.btn--outline {
  position: relative;
  isolation: isolate;
  border: 1px solid transparent;
  background-color: transparent;
  background-image: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.btn--secondary::before,
.btn--outline::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  padding: 1px;
  background: var(--brand-gradient);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: .95;
  transition: filter var(--dur-fast) var(--ease-standard), opacity var(--dur-fast) var(--ease-standard);
}

.btn--secondary:hover,
.btn--outline:hover {
  filter: brightness(1.1);
  box-shadow: 0 12px 34px rgba(178,77,255,.14);
  transform: translateY(-2px);
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.btn--secondary:hover::before,
.btn--outline:hover::before {
  background: var(--brand-gradient-hover);
  opacity: 1;
}

.btn--secondary svg,
.btn--outline svg,
.header-cta svg {
  stroke: #c738ff;
  color: #c738ff;
  fill: none;
  -webkit-text-fill-color: initial;
}

.btn--secondary [data-icon],
.btn--outline [data-icon] {
  color: #c738ff;
  -webkit-text-fill-color: #c738ff;
}

.btn--secondary [data-icon] svg,
.btn--outline [data-icon] svg {
  stroke: #c738ff;
}

.btn.is-disabled,
.contact-card.is-disabled {
  cursor: not-allowed;
  opacity: .58;
}

.btn.is-disabled:hover,
.contact-card.is-disabled:hover {
  filter: none;
  box-shadow: none;
  transform: none;
}

.hero__visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.hero__visual img {
  width: min(46vw, 665px);
  min-width: 510px;
  height: auto;
  transform: translate(8px, 20px);
  filter: drop-shadow(0 28px 80px rgba(0,0,0,.58));
  transition: transform 160ms var(--ease-standard);
}

.hero-facts {
  margin-top: clamp(32px, 6vh, 58px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  background: linear-gradient(180deg, rgba(255,255,255,.024), rgba(255,255,255,.01));
}

.hero-fact {
  min-height: 112px;
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  gap: 22px;
  padding: 22px 44px;
}

.hero-fact + .hero-fact {
  border-left: 1px solid var(--color-graphite);
}

.icon-box {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 8px;
  background:
    linear-gradient(rgba(15,16,17,.92), rgba(15,16,17,.92)) padding-box,
    var(--brand-gradient) border-box;
  color: #c738ff;
}

.icon-box svg {
  stroke: #c738ff;
}

.feature-card__number {
  display: none !important;
}

.icon-box svg,
.btn svg,
.team-note svg,
.faq-cta svg,
.contact-card svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.hero-fact h3,
.feature-card h3,
.team-card h3,
.contact-card h3 {
  margin: 0;
  color: var(--color-paper);
  font-size: var(--text-card-title);
  line-height: 1.12;
  font-weight: 510;
  letter-spacing: -.016em;
}

.hero-fact p {
  margin: 4px 0 0;
  font-size: 15px;
  line-height: 1.35;
}

.section-grid {
  display: grid;
  gap: clamp(48px, 7vw, 92px);
  align-items: end;
}

.section-grid--why {
  grid-template-columns: minmax(0, .78fr) minmax(620px, 1.22fr);
}

.section-copy p:not(.section-label) {
  max-width: 600px;
}

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

.feature-card {
  position: relative;
  min-height: 250px;
  padding: 30px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  background: linear-gradient(180deg, rgba(255,255,255,.028), rgba(255,255,255,.008));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.018);
  transition: border-color var(--dur-ui) var(--ease-standard), background var(--dur-ui) var(--ease-standard), transform var(--dur-ui) var(--ease-standard);
}

.feature-card__number {
  display: inline-grid;
  place-items: center;
  min-width: 48px;
  min-height: 48px;
  margin-bottom: 28px;
  border: 1px solid rgba(178,77,255,.28);
  border-radius: 8px;
  color: var(--color-accent);
  background: rgba(178,77,255,.02);
  font-size: 20px;
  letter-spacing: -.012em;
}

.feature-card .icon-box {
  margin-bottom: 32px;
}

.feature-card__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.feature-card__head .feature-card__number {
  margin: 0;
  border: 0;
  background: transparent;
  min-height: 0;
  min-width: 0;
  font-size: 20px;
}

.feature-card__line {
  width: 100%;
  height: 1px;
  margin: 20px 0 28px;
  background: rgba(255,255,255,.13);
}

.feature-card p {
  margin: 18px 0 0;
  color: var(--color-fog);
  font-size: 16px;
}

.container.card-grid--three .feature-card h3 {
  font-size: var(--text-card-title);
  line-height: 1.12;
  font-weight: 510;
  letter-spacing: -.016em;
}

.container.card-grid--three .feature-card p {
  font-size: 15px;
  line-height: 1.35;
}

.feature-card--metric h3 {
  margin-top: 0;
  font-size: clamp(20px, 3vw, 26px);
}

.sources {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--color-graphite);
  display: flex;
  align-items: center;
  gap: 26px;
}

.sources > .sources__label {
  margin-right: 18px;
  color: var(--color-fog);
  font-size: 13px;
  text-transform: uppercase;
}

.sources a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-mist);
  font-size: 14px;
  transition: color var(--dur-fast) var(--ease-standard), transform var(--dur-fast) var(--ease-standard);
}

.sources a + a {
  padding-left: 26px;
  border-left: 1px solid var(--color-graphite);
}

.sources a:hover {
  color: var(--color-paper);
  transform: translateY(-1px);
}

.opportunity__top {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(520px, 1.1fr);
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
  margin-bottom: 56px;
}

.opportunity__visual {
  min-height: 390px;
  display: grid;
  place-items: center;
  overflow: visible;
}

.opportunity__visual img {
  width: min(52vw, 760px);
  max-width: none;
  filter: drop-shadow(0 30px 90px rgba(0,0,0,.42));
}

.card-grid {
  display: grid;
  gap: 18px;
}

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

.card-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .74fr);
  gap: clamp(44px, 7vw, 96px);
  align-items: center;
  margin-bottom: 56px;
}

.split-heading p:not(.section-label) {
  max-width: 600px;
  color: var(--color-mist);
  font-size: 20px;
}

.ecosystem__layout,
.partners__layout {
  display: grid;
  grid-template-columns: minmax(340px, .72fr) minmax(680px, 1.28fr);
  gap: clamp(54px, 6vw, 86px);
  align-items: center;
}

.ecosystem__cards {
  position: relative;
}

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

.ecosystem__grid .feature-card,
.benefit-grid .feature-card {
  min-height: 270px;
}

.partners__layout {
  align-items: start;
}

.button-row--partners {
  margin-top: 34px;
}

.button-row--partners .btn--primary {
  min-width: 250px;
}

.team {
  padding-top: 86px;
}

.team__panel {
  display: grid;
  grid-template-columns: minmax(300px, .58fr) repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 64px 48px 48px;
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.014), rgba(255,255,255,.006));
}

.team__panel .section-copy {
  align-self: start;
  padding-top: 8px;
}

.team__cards {
  grid-column: 2 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.team-card {
  min-height: 478px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  background: linear-gradient(180deg, rgba(255,255,255,.026), rgba(255,255,255,.008));
  transition: border-color var(--dur-ui) var(--ease-standard), transform var(--dur-ui) var(--ease-standard);
}

.team-card__image {
  flex: 1;
  min-height: 286px;
  display: flex;
  align-items: end;
  justify-content: center;
  overflow: hidden;
}

.team-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform var(--dur-ui) var(--ease-standard);
}

.team-card__body {
  padding: 28px;
}

.team-card__role {
  margin: 10px 0 0;
  color: var(--color-accent);
  font-size: 17px;
  line-height: 1.35;
}

.team-card__detail {
  margin: 14px 0 0;
  color: var(--color-fog);
  font-size: 15px;
}

.team-note {
  grid-column: 1 / -1;
  min-height: 104px;
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 28px;
  margin-top: 26px;
  padding: 24px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-card);
  background: var(--surface-soft);
}

.team-note span {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  color: var(--color-accent);
}

.team-note p {
  max-width: 980px;
  margin: 0;
  font-size: 18px;
}

.faq {
  padding-top: 94px;
}

.faq__wrap {
  display: grid;
  grid-template-columns: minmax(300px, .42fr) minmax(620px, .58fr);
  gap: clamp(42px, 6vw, 88px);
  align-items: start;
}

.faq__wrap h2,
.faq__intro,
.faq__wrap .section-label {
  grid-column: 1;
  margin-left: 0;
}

.faq__wrap h2 {
  max-width: 520px;
  margin-bottom: 22px;
}

.faq__intro {
  max-width: 470px;
  margin-bottom: 0;
  font-size: 20px;
  color: var(--color-mist);
}

.accordion,
.faq-cta {
  grid-column: 2;
}

.accordion {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  background: linear-gradient(180deg, rgba(255,255,255,.028), rgba(255,255,255,.01));
  overflow: hidden;
}

.accordion-item + .accordion-item {
  border-top: 1px solid rgba(255,255,255,.075);
}

.accordion-button {
  width: 100%;
  min-height: 82px;
  display: grid;
  grid-template-columns: 34px 1fr 28px;
  gap: 18px;
  align-items: center;
  padding: 22px 30px;
  border: 0;
  background: transparent;
  color: var(--color-paper);
  text-align: left;
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease-standard), color var(--dur-fast) var(--ease-standard);
}

.accordion-button__mark {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 50%;
  background:
    linear-gradient(#08090a, #08090a) padding-box,
    var(--brand-gradient) border-box;
  color: #c738ff;
  font-size: 18px;
  line-height: 1;
  transition: filter var(--dur-fast) var(--ease-standard), transform var(--dur-fast) var(--ease-standard);
}

.accordion-button strong {
  font-size: 18px;
  font-weight: 590;
  line-height: 1.35;
  letter-spacing: -.01em;
}

.accordion-button__chev {
  color: var(--color-mist);
  transition: transform var(--dur-ui) var(--ease-standard);
}

.accordion-button[aria-expanded="true"] .accordion-button__chev {
  transform: rotate(180deg);
}

.accordion-button:hover {
  background: rgba(255,255,255,.026);
}

.accordion-button:hover .accordion-button__mark,
.accordion-button[aria-expanded="true"] .accordion-button__mark {
  background: var(--brand-gradient);
  border-color: transparent;
  color: var(--color-paper);
  transform: scale(1.04);
}

.accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 260ms var(--ease-standard), opacity 260ms var(--ease-standard);
  opacity: 0;
}

.accordion-panel.is-open {
  grid-template-rows: 1fr;
  opacity: 1;
}

.accordion-panel > div {
  overflow: hidden;
}

.accordion-panel p {
  margin: 0;
  padding: 0 84px 28px 82px;
  color: var(--color-fog);
  font-size: 16px;
  line-height: 1.65;
}

.faq-cta {
  width: 100%;
  min-height: 86px;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 20px;
  margin: 26px 0 0;
  padding: 16px 18px 16px 24px;
  border: 1px solid rgba(178,77,255,.28);
  border-radius: var(--radius-button);
  background: rgba(255,255,255,.012);
}

.faq-cta span {
  color: var(--color-accent);
}

.faq-cta p {
  margin: 0;
  color: var(--color-mist);
  font-size: 15px;
}

.faq-cta .btn {
  min-width: 180px;
}

.contact {
  padding-bottom: 78px;
}

.contact__wrap h2 {
  max-width: 760px;
}

.contact__wrap > p:not(.section-label) {
  max-width: 560px;
  margin-bottom: 44px;
}

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

.contact-card {
  min-height: 120px;
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 22px;
  padding: 24px 28px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  background: linear-gradient(180deg, rgba(255,255,255,.026), rgba(255,255,255,.009));
  box-shadow: 0 0 0 rgba(0,0,0,0);
  transition: border-color var(--dur-ui) var(--ease-standard), background var(--dur-ui) var(--ease-standard), box-shadow var(--dur-ui) var(--ease-standard), transform var(--dur-ui) var(--ease-standard);
}

.contact-card__icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  color: var(--color-accent);
}

.contact-card p {
  margin: 8px 0 0;
  font-size: 15px;
}

.contact-card__arrow {
  color: var(--color-accent);
  font-size: 28px;
  transition: transform var(--dur-fast) var(--ease-standard);
}

.contact__main {
  width: 270px;
}

.callback-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 24px;
}

.callback-modal[hidden] {
  display: none;
}

.callback-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 9, 10, .78);
  backdrop-filter: blur(16px);
}

.callback-modal__dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(240px, .9fr) minmax(320px, 1.1fr);
  align-items: stretch;
  width: min(100%, 920px);
  max-height: min(90vh, 760px);
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  background:
    radial-gradient(circle at 88% 0%, rgba(46,184,245,.08), transparent 16rem),
    radial-gradient(circle at 0% 100%, rgba(199,56,255,.08), transparent 16rem),
    var(--color-carbon);
  box-shadow: 0 28px 80px rgba(0,0,0,.48), inset 0 1px 0 rgba(255,255,255,.04);
}

.callback-modal__media {
  display: grid;
  place-items: center;
  min-height: 100%;
  padding: 28px 8px 28px 20px;
  background: radial-gradient(circle at 50% 58%, rgba(178,77,255,.16), transparent 62%);
}

.callback-modal__media video {
  width: min(100%, 340px);
  height: auto;
  max-height: min(68vh, 620px);
  object-fit: contain;
  border-radius: 16px;
}

.callback-modal__content {
  min-width: 0;
  max-height: min(90vh, 760px);
  overflow: auto;
  padding: 36px 32px 32px;
}

.callback-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  background: rgba(255,255,255,.03);
  color: var(--color-mist);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.callback-modal__close:hover {
  color: var(--color-paper);
  border-color: var(--accent-border);
}

.callback-form h2,
.callback-form__success h2 {
  margin: 0 0 10px;
  max-width: none;
  font-size: 28px;
}

.callback-form > p,
.callback-form__success p {
  margin: 0 0 28px;
  color: var(--color-fog);
  font-size: 15px;
  line-height: 1.5;
}

.callback-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--color-mist);
  font-size: 13px;
  letter-spacing: .04em;
}

.callback-form input,
.callback-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-button);
  background: rgba(255,255,255,.03);
  color: var(--color-paper);
  font: inherit;
  font-size: 15px;
  outline: none;
  resize: vertical;
}

.callback-form textarea {
  min-height: 112px;
}

.callback-form input::placeholder,
.callback-form textarea::placeholder {
  color: var(--color-ash);
}

.callback-form input:focus,
.callback-form textarea:focus {
  border-color: var(--accent-border);
  box-shadow: 0 0 0 3px rgba(178,77,255,.12);
}

.callback-form input:-webkit-autofill,
.callback-form input:-webkit-autofill:hover,
.callback-form input:-webkit-autofill:focus,
.callback-form textarea:-webkit-autofill,
.callback-form textarea:-webkit-autofill:hover,
.callback-form textarea:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--color-paper);
  caret-color: var(--color-paper);
  transition: background-color 99999s ease-out;
  box-shadow: 0 0 0 1000px #141418 inset;
}

.callback-form .btn,
.callback-form__success .btn {
  width: 100%;
  margin-top: 8px;
}

.callback-form__error {
  margin: 4px 0 0;
  color: #ff8f8f;
  font-size: 14px;
  line-height: 1.4;
}

.callback-form__success {
  text-align: center;
  padding: 28px 8px 8px;
}

.scroll-top {
  position: fixed;
  right: max(20px, env(safe-area-inset-right));
  bottom: max(20px, env(safe-area-inset-bottom));
  z-index: 30;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--brand-gradient);
  color: var(--color-paper);
  box-shadow: 0 12px 32px rgba(178, 77, 255, .28);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity var(--dur-ui) var(--ease-standard),
    transform var(--dur-ui) var(--ease-standard),
    box-shadow var(--dur-fast) var(--ease-standard),
    filter var(--dur-fast) var(--ease-standard);
}

.scroll-top:not([hidden]) {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top:hover {
  filter: brightness(1.08);
  box-shadow: 0 16px 40px rgba(46, 184, 245, .28);
}

.scroll-top:active {
  transform: translateY(1px);
}

.scroll-top svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

body.modal-open .scroll-top,
body.menu-open .scroll-top {
  opacity: 0;
  pointer-events: none;
}

.footer {
  min-height: 120px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--color-graphite);
}

.footer nav {
  display: flex;
  gap: clamp(32px, 7vw, 96px);
}

@media (hover: hover) and (pointer: fine) {
  .feature-card:hover,
  .team-card:hover,
  .contact-card:hover {
    border-color: var(--accent-border);
    background: linear-gradient(180deg, rgba(255,255,255,.038), rgba(255,255,255,.014));
    box-shadow: 0 18px 54px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.035);
    transform: translateY(-2px);
  }

  .team-card:hover img {
    transform: scale(1.02);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--dur-reveal) var(--ease-standard), transform var(--dur-reveal) var(--ease-standard);
}

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

@keyframes mobileMenuIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1279px) {
  .site-header {
    padding-inline: 32px;
  }

  .desktop-nav {
    gap: 18px;
  }

  .desktop-nav a {
    font-size: 13px;
  }

  .section-grid--why,
  .opportunity__top,
  .ecosystem__layout,
  .partners__layout {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .fact-cards,
  .benefit-grid,
  .ecosystem__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .opportunity__visual {
    aspect-ratio: 806 / 541;
    min-height: 0;
    justify-content: center;
    margin-top: 0;
    overflow: hidden;
  }

  .opportunity__visual img {
    width: min(100%, 780px);
    height: 100%;
    object-fit: contain;
  }

  .team__panel {
    grid-template-columns: 1fr;
  }

  .team__cards {
    grid-column: auto;
  }
}

@media (max-width: 1080px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .menu-button {
    justify-self: end;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    gap: 4px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: var(--radius-button);
    background: rgba(255,255,255,.015);
    color: var(--color-paper);
    cursor: pointer;
  }

  .menu-button span:not(.sr-only) {
    width: 18px;
    height: 1px;
    background: currentColor;
    transition: transform var(--dur-fast) var(--ease-standard);
  }

  .menu-button[aria-expanded="true"] span:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(-3px) rotate(-45deg);
  }

  .hero__grid {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    min-height: 420px;
    margin-top: -52px;
  }

  .hero__visual img {
    width: min(78vw, 600px);
    min-width: 0;
  }

  .hero-facts,
  .card-grid--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-fact + .hero-fact {
    border-left: 0;
  }

  .hero-fact:nth-child(2n) {
    border-left: 1px solid var(--color-graphite);
  }

  .hero-fact:nth-child(n+3) {
    border-top: 1px solid var(--color-graphite);
  }

  .split-heading {
    grid-template-columns: 1fr;
  }

  .faq__wrap {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .faq__wrap h2,
  .faq__intro,
  .faq__wrap .section-label,
  .accordion,
  .faq-cta {
    grid-column: 1;
  }

  .faq__intro {
    max-width: 680px;
  }
}


@media (max-width: 900px) {
  .callback-modal__dialog {
    grid-template-columns: 1fr;
    width: min(100%, 560px);
    max-height: min(92vh, 820px);
  }

  .callback-modal__media {
    display: none;
  }

  .callback-modal__content {
    max-height: min(92vh, 820px);
    padding: 28px 24px 24px;
  }
}

@media (max-width: 767px) {
  .copy-desktop {
    display: none;
  }

  .copy-mobile {
    display: inline;
  }

  .container,
  .container-wide {
    width: 100%;
    padding-inline: 20px;
  }

  .section {
    padding-block: 96px;
    scroll-margin-top: 88px;
  }

  .site-header {
    min-height: 76px;
    padding-inline: 20px;
    border-color: rgba(255,255,255,.08);
    background: rgba(8,9,10,.88);
    backdrop-filter: blur(10px);
  }

  .hero > .hero__bg,
  .hero::before {
    display: none;
  }

  .hero__grid,
  .hero-facts,
  .hero.is-ready .hero__grid,
  .hero.is-ready .hero-facts {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero::after,
  .hero.is-ready::after {
    opacity: .56;
    transition: none;
  }

  .callback-modal {
    padding: 0;
    place-items: end stretch;
  }

  .callback-modal__dialog {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr);
    width: 100%;
    max-width: none;
    max-height: min(94dvh, 100%);
    padding: 0;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
  }

  .callback-modal__media {
    display: none;
  }

  .callback-modal__content {
    max-height: none;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding: 28px 20px calc(20px + env(safe-area-inset-bottom, 0px));
  }

  .callback-modal__close {
    top: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
    background: rgba(8, 9, 10, .72);
  }

  .callback-form h2,
  .callback-form__success h2 {
    font-size: 24px;
    padding-right: 48px;
  }

  .callback-form > p,
  .callback-form__success p {
    margin-bottom: 20px;
    font-size: 14px;
  }

  .callback-form label {
    margin-bottom: 14px;
  }

  .callback-form input,
  .callback-form textarea {
    font-size: 16px;
    min-height: 52px;
    background: rgba(255, 255, 255, .06);
  }

  .callback-form textarea {
    min-height: 110px;
  }

  .callback-form .btn,
  .callback-form__success .btn {
    min-height: 52px;
    margin-top: 4px;
  }

  .callback-form__error {
    font-size: 13px;
  }

  .brand,
  .brand img {
    width: 176px;
  }

  .mobile-menu {
    inset: calc(76px + env(safe-area-inset-top)) 12px auto;
    padding: 12px;
    border-radius: 12px;
    transform-origin: top;
    animation: mobileMenuIn 220ms var(--ease-standard);
  }

  .mobile-menu a {
    min-height: 52px;
    padding-inline: 16px;
    font-size: 16px;
  }

  .menu-button {
    width: 54px;
    height: 54px;
    border-color: var(--color-graphite);
    border-radius: 12px;
    color: var(--color-accent);
    background: rgba(255,255,255,.01);
  }

  .menu-button span:not(.sr-only) {
    width: 22px;
    height: 2px;
  }

  h1 {
    font-size: clamp(28px, 13vw, 46px);
    line-height: .98;
    letter-spacing: -.025em;
  }

  h2 {
    font-size: clamp(20px, 10vw, 34px);
    line-height: 1.02;
    letter-spacing: -.022em;
  }

  p,
  .hero__lead,
  .split-heading p:not(.section-label) {
    max-width: 42ch;
    font-size: 18px;
    line-height: 1.52;
  }

  .section-label {
    margin-bottom: 24px;
    font-size: 14px;
    letter-spacing: .09em;
  }

  .hero {
    min-height: auto;
    padding-top: 58px;
    padding-bottom: 60px;
  }

  .hero__grid {
    gap: 30px;
  }

  .hero__copy {
    padding-top: 0;
  }

  .hero__lead {
    margin-bottom: 16px;
  }

  .hero__support {
    margin-bottom: 30px;
    font-size: 17px;
  }

  .hero__support br {
    display: none;
  }

  .hero__visual {
    min-height: clamp(330px, 88vw, 480px);
    width: calc(100% + 40px);
    margin: -8px -20px 0;
    overflow: hidden;
  }

  .hero__visual img {
    width: min(122vw, 560px);
    max-width: none;
    transform: translate(5%, 10px);
  }

  .hero::after {
    right: 4%;
    bottom: 170px;
    width: 88vw;
    opacity: .56;
  }

  .button-row,
  .button-row--partners {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .btn,
  .contact__main {
    width: 100%;
    min-width: 0;
    min-height: 54px;
  }

  .btn:active,
  .contact-card:active,
  .accordion-button:active {
    transform: scale(.985);
  }

  .hero-facts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 16px;
    padding: 0 20px;
    border: 0;
    border-radius: 0;
    background: transparent;
    overflow: visible;
  }

  .hero-fact {
    width: 100%;
    min-width: 0;
    min-height: 128px;
    grid-template-columns: 48px 1fr;
    gap: 16px;
    padding: 18px;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-card);
    background: linear-gradient(180deg, rgba(255,255,255,.026), rgba(255,255,255,.009));
  }

  .hero-fact:nth-child(2n),
  .hero-fact + .hero-fact {
    border-left: 0;
    border-top: 0;
  }

  .hero-fact + .hero-fact {
    border-left: 1px solid var(--border-subtle);
  }

  .fact-cards,
  .card-grid--three,
  .card-grid--four,
  .team__cards,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .ecosystem__grid,
  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .feature-card,
  .ecosystem__grid .feature-card,
  .benefit-grid .feature-card {
    min-height: auto;
    padding: 24px;
  }

  .fact-cards .feature-card,
  .opportunity .card-grid--three .feature-card {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 20px;
    align-items: center;
    min-height: 150px;
  }

  .fact-cards .feature-card .icon-box,
  .opportunity .card-grid--three .feature-card .feature-card__number {
    grid-row: 1 / 3;
    margin: 0;
  }

  .fact-cards .feature-card h3,
  .opportunity .card-grid--three .feature-card h3 {
    align-self: end;
    font-size: clamp(20px, 8vw, 28px);
  }

  .opportunity .container.card-grid--three .feature-card h3 {
    font-size: var(--text-card-title);
    line-height: 1.12;
  }

  .fact-cards .feature-card p,
  .opportunity .card-grid--three .feature-card p {
    align-self: start;
    margin-top: 0;
    font-size: 17px;
  }

  .card-grid--four .feature-card {
    display: grid;
    grid-template-columns: 86px 1fr;
    gap: 20px 24px;
    align-items: start;
    min-height: 172px;
  }

  .card-grid--four .feature-card__head {
    grid-row: 1 / 4;
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 18px;
    padding-right: 22px;
    border-right: 1px solid rgba(255,255,255,.12);
  }

  .card-grid--four .feature-card__line {
    display: none;
  }

  .card-grid--four .feature-card h3 {
    font-size: clamp(20px, 6.6vw, 24px);
  }

  .ecosystem__grid .feature-card,
  .benefit-grid .feature-card {
    min-height: 230px;
    padding: 18px;
  }

  .ecosystem__grid .feature-card__head {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 14px;
    align-items: center;
  }

  .ecosystem__grid .feature-card__line {
    margin: 16px 0 18px;
  }

  .ecosystem__grid .feature-card h3,
  .benefit-grid .feature-card h3 {
    font-size: 20px;
  }

  .ecosystem__grid .feature-card p,
  .benefit-grid .feature-card p {
    font-size: 15px;
    line-height: 1.48;
  }

  .benefit-grid .feature-card .icon-box {
    margin-bottom: 28px;
  }

  .sources {
    display: grid;
    gap: 10px;
    margin-top: 30px;
    padding-top: 0;
    border-top: 0;
  }

  .sources > .sources__label {
    margin-right: 0;
    margin-bottom: 4px;
    font-size: 15px;
    letter-spacing: .06em;
  }

  .sources a,
  .sources a + a {
    min-height: 54px;
    padding-left: 0;
    border-left: 0;
    padding: 14px 16px;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-button);
    background: rgba(255,255,255,.012);
    justify-content: space-between;
    font-size: 15px;
  }

  .opportunity__visual {
    min-height: 0;
    aspect-ratio: 806 / 541;
    margin: -18px -20px 26px;
    justify-content: center;
    overflow: hidden;
  }

  .opportunity__visual img {
    width: 116%;
    height: 100%;
    max-width: none;
    object-fit: contain;
    object-position: center;
    transform: translateX(3%);
  }

  .split-heading,
  .opportunity__top {
    margin-bottom: 34px;
    gap: 32px;
  }

  .partners__layout,
  .ecosystem__layout {
    gap: 38px;
  }

  .partners__layout > .section-copy {
    display: contents;
  }

  .partners__layout > .section-copy .section-label,
  .partners__layout > .section-copy h2,
  .partners__layout > .section-copy p {
    order: 1;
  }

  .partners .benefit-grid {
    order: 2;
  }

  .button-row--partners {
    order: 3;
    margin-top: 28px;
  }

  .team__panel {
    width: 100%;
    padding: 0 20px;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .team-card {
    min-height: 178px;
    display: grid;
    grid-template-columns: 40% 1fr;
    align-items: center;
  }

  .team-card__image {
    min-height: 178px;
    height: 100%;
    align-items: end;
  }

  .team-card__image img {
    width: 112%;
    height: 100%;
    object-fit: contain;
    object-position: bottom center;
  }

  .team-card__body {
    padding: 22px 20px;
  }

  .team-card h3 {
    font-size: clamp(20px, 7.2vw, 26px);
  }

  .team-card__role {
    font-size: 18px;
  }

  .team-card__detail {
    font-size: 16px;
  }

  .team-note {
    grid-template-columns: 64px 1fr;
    gap: 18px;
    margin-top: 16px;
    padding: 20px;
  }

  .team-note p {
    font-size: 16px;
    line-height: 1.5;
  }

  .faq__wrap h2,
  .faq__intro,
  .faq__wrap .section-label {
    margin-left: 0;
  }

  .accordion-button {
    min-height: 72px;
    grid-template-columns: 38px 1fr 24px;
    padding: 22px 20px;
    gap: 16px;
  }

  .accordion-button__mark {
    width: 32px;
    height: 32px;
  }

  .accordion-button strong {
    font-size: 18px;
    line-height: 1.35;
  }

  .accordion-panel p {
    padding: 0 22px 28px 74px;
    font-size: 17px;
    line-height: 1.62;
  }

  .faq-cta {
    grid-template-columns: 1fr;
    padding: 22px;
    gap: 16px;
  }

  .faq-cta .btn {
    min-width: 0;
  }

  .contact-card {
    min-height: 116px;
    grid-template-columns: 70px 1fr 28px;
    padding: 22px;
  }

  .contact-card__icon {
    width: 62px;
    height: 62px;
  }

  .contact-card h3 {
    font-size: 20px;
  }

  .contact-card p {
    font-size: 16px;
  }

  .contact__main {
    min-height: 62px;
    margin-top: 8px;
  }

  .footer {
    min-height: 220px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
  }

  .footer nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 42px;
  }
}

@media (min-width: 430px) and (max-width: 767px) {
  .container,
  .container-wide {
    padding-inline: 24px;
  }

  .hero-facts {
    padding-inline: 24px;
  }

  .hero__visual {
    width: calc(100% + 48px);
    margin-inline: -24px;
  }

  .opportunity__visual {
    margin-inline: -24px;
  }
}

@media (max-width: 374px) {
  .container,
  .container-wide {
    padding-inline: 16px;
  }

  .hero-facts {
    padding-inline: 16px;
  }

  .ecosystem__grid,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .ecosystem__grid .feature-card,
  .benefit-grid .feature-card {
    min-height: auto;
  }

  .hero-fact {
    grid-template-columns: 48px 1fr;
  }

  .contact-card__arrow {
    grid-column: 2;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

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