:root {
  --ink: #101936;
  --ink-soft: #4d5872;
  --navy: #07132d;
  --blue: #1767ff;
  --blue-dark: #0c4ed1;
  --cyan: #25b7dd;
  --yellow: #ffd822;
  --green: #0a9d72;
  --line: #dfe4ec;
  --surface: #f5f7fb;
  --white: #fff;
  --shadow: 0 24px 70px rgba(16, 25, 54, .12);
  --radius: 24px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  overflow-x: hidden;
  overflow-x: clip;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

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

h1,
h2,
h3 {
  font-weight: 750;
  letter-spacing: -.035em;
  line-height: 1.08;
}

h1 {
  max-width: 800px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 6vw, 5.7rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 4vw, 4rem);
}

h3 {
  margin-bottom: 14px;
  font-size: 1.28rem;
  letter-spacing: -.02em;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  border-radius: 10px;
  color: var(--white);
  background: var(--navy);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: var(--blue-dark);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(37, 183, 221, .14);
  content: "";
}

.eyebrow--light {
  color: #a8dfff;
}

.lead {
  max-width: 710px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.8vw, 1.3rem);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 54px;
}

.section-head > div:first-child {
  max-width: 760px;
}

.section-head p {
  max-width: 430px;
  margin-bottom: 5px;
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(223, 228, 236, .8);
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 12px;
  font-size: 1.4rem;
  font-weight: 850;
  letter-spacing: -.04em;
}

.brand-mark {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  object-fit: contain;
}

.nav-menu,
.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
}

.nav-menu {
  flex: 1;
  justify-content: flex-end;
  gap: 30px;
}

.nav-links {
  gap: 28px;
}

.nav-links a {
  position: relative;
  color: #34405c;
  font-size: .93rem;
  font-weight: 700;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transition: transform .2s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.nav-actions {
  gap: 12px;
}

.language {
  display: inline-flex;
  min-width: 42px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: .77rem;
  font-weight: 800;
}

.language:hover,
.language:focus-visible {
  border-color: var(--blue);
  color: var(--blue);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: var(--ink);
  content: "";
  transition: transform .2s ease, opacity .2s ease;
}

.nav-toggle[aria-expanded="true"] span { opacity: 0; }
.nav-toggle[aria-expanded="true"]::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"]::after { transform: translateY(-6px) rotate(-45deg); }

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .93rem;
  font-weight: 800;
  line-height: 1.2;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 10px 30px rgba(23, 103, 255, .25);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--blue-dark);
  box-shadow: 0 14px 34px rgba(23, 103, 255, .32);
}

.button--secondary {
  border-color: var(--line);
  background: var(--white);
}

.button--secondary:hover,
.button--secondary:focus-visible {
  border-color: #aab7cf;
}

.button--white {
  color: var(--navy);
  background: var(--white);
}

.button-arrow {
  flex: 0 0 auto;
  font-size: 1.15em;
}

.button-label {
  min-width: 0;
  text-align: center;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 44px;
  background:
    radial-gradient(circle at 82% 18%, rgba(37, 183, 221, .16), transparent 28%),
    radial-gradient(circle at 12% 44%, rgba(23, 103, 255, .10), transparent 26%),
    linear-gradient(180deg, #fff, #f8faff);
}

.hero::after {
  position: absolute;
  z-index: 0;
  top: 40px;
  right: -120px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(23, 103, 255, .1);
  border-radius: 50%;
  box-shadow: 0 0 0 50px rgba(23, 103, 255, .025), 0 0 0 100px rgba(23, 103, 255, .018);
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 60px;
}

.hero h1 span {
  color: var(--blue);
}

.hero-copy .lead {
  max-width: 680px;
}

.eudi-lockup {
  display: block;
  width: min(270px, 62vw);
  height: auto;
  margin: 0 0 24px;
  mix-blend-mode: multiply;
}

.eudi-lockup--product {
  width: min(310px, 68vw);
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  color: #66718a;
  font-size: .86rem;
  font-weight: 650;
}

.hero-note::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(10, 157, 114, .12);
  content: "";
}

.hero-visual {
  position: relative;
  min-height: 410px;
}

.visual-shell {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 34px;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.visual-shell::before {
  position: absolute;
  inset: -20% -20% auto auto;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 183, 221, .32), transparent 65%);
  content: "";
}

.visual-topline {
  position: absolute;
  z-index: 2;
  top: 28px;
  left: 30px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, .76);
  font-size: .78rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.visual-topline i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #40e2ad;
  box-shadow: 0 0 0 5px rgba(64, 226, 173, .14);
}

.wallet-strip {
  position: absolute;
  z-index: 1;
  top: 108px;
  left: 24px;
  width: calc(100% - 48px);
  height: auto;
  max-width: 100%;
  filter: drop-shadow(0 22px 30px rgba(0, 0, 0, .22));
}

.visual-caption {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 18px;
  color: var(--white);
  background: rgba(7, 19, 45, .75);
  backdrop-filter: blur(14px);
}

.visual-caption strong {
  display: block;
  font-size: 1.02rem;
}

.visual-caption small {
  color: rgba(255, 255, 255, .65);
}

.visual-caption span:last-child {
  flex-shrink: 0;
  padding: 6px 10px;
  border-radius: 999px;
  color: #05271d;
  background: #77edc3;
  font-size: .72rem;
  font-weight: 850;
}

.trust-bar {
  position: relative;
  z-index: 2;
  margin-top: 70px;
  padding: 25px 0 0;
  border-top: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, 1fr);
  gap: 28px;
  align-items: center;
}

.trust-label {
  color: var(--ink-soft);
  font-size: .9rem;
  font-weight: 700;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-item strong {
  display: block;
  font-size: 1rem;
}

.trust-item small {
  color: var(--ink-soft);
}

.trust-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border-radius: 13px;
  color: var(--blue);
  background: #eaf1ff;
  font-weight: 900;
}

.logo-section {
  padding: 52px 0;
  border-bottom: 1px solid var(--line);
}

.logo-section p {
  margin-bottom: 28px;
  color: var(--ink-soft);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-align: center;
  text-transform: uppercase;
}

.logo-marquee {
  overflow: hidden;
  width: 100%;
  padding-block: 6px;
  mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
}

.logo-track {
  display: flex;
  width: max-content;
  animation: logo-scroll 28s linear infinite;
  will-change: transform;
}

.logo-group {
  display: flex;
  flex: none;
  align-items: center;
  gap: 70px;
  padding-right: 70px;
}

.logo-group a {
  display: grid;
  width: 118px;
  min-height: 52px;
  flex: none;
  place-items: center;
}

.logo-group img {
  max-width: 108px;
  max-height: 42px;
  filter: grayscale(1);
  opacity: .64;
  transition: filter .2s ease, opacity .2s ease;
}

.logo-group a:hover img,
.logo-group a:focus-visible img {
  filter: none;
  opacity: 1;
}

.logo-marquee:hover .logo-track,
.logo-marquee:focus-within .logo-track {
  animation-play-state: paused;
}

@keyframes logo-scroll {
  to { transform: translateX(-50%); }
}

.section {
  padding: 110px 0;
}

.section--soft {
  background: var(--surface);
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.solution-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.solution-card:hover {
  border-color: #c7d3e7;
  box-shadow: 0 20px 50px rgba(16, 25, 54, .09);
  transform: translateY(-5px);
}

.solution-card--dark {
  border-color: var(--navy);
  color: var(--white);
  background: var(--navy);
}

.solution-card--dark::after {
  position: absolute;
  right: -120px;
  bottom: -140px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 183, 221, .45), transparent 66%);
  content: "";
}

.card-number {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 54px;
  place-items: center;
  border-radius: 13px;
  color: var(--blue);
  background: #eaf1ff;
  font-size: .8rem;
  font-weight: 900;
}

.solution-card--dark .card-number {
  color: var(--navy);
  background: var(--yellow);
}

.solution-card p {
  color: var(--ink-soft);
}

.solution-card--dark p {
  color: rgba(255, 255, 255, .68);
}

.card-link {
  position: absolute;
  z-index: 2;
  bottom: 30px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-dark);
  font-size: .9rem;
  font-weight: 850;
}

.solution-card--dark .card-link {
  color: #8cddff;
}

.proof-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 92% 8%, rgba(37, 183, 221, .24), transparent 30%),
    var(--navy);
}

.proof-intro {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: end;
  gap: 72px;
}

.proof-intro h2 {
  margin-bottom: 0;
}

.proof-intro .lead {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, .74);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 58px;
}

.proof-card {
  min-height: 270px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 22px;
  background: rgba(255, 255, 255, .055);
}

.proof-icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 38px;
  place-items: center;
  border-radius: 14px;
  color: var(--navy);
  background: var(--yellow);
  font-size: .78rem;
  font-weight: 900;
}

.proof-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .68);
}

.standards {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 80px;
  align-items: center;
}

.standards-copy p {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.standard-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.standard-tags span {
  padding: 9px 13px;
  border: 1px solid #d5ddeb;
  border-radius: 999px;
  color: #394763;
  background: #fff;
  font-size: .78rem;
  font-weight: 800;
}

.standard-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.standard-card {
  min-height: 180px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
}

.standard-card:nth-child(2) {
  transform: translateY(24px);
}

.standard-card:nth-child(3) {
  transform: translateY(-8px);
}

.standard-card .mini-icon {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 12px;
  color: var(--white);
  background: var(--blue);
  font-size: .78rem;
  font-weight: 900;
}

.standard-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: .9rem;
}

.usecase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.usecase {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
}

.usecase-icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 35px;
  place-items: center;
  border-radius: 13px;
  color: var(--blue-dark);
  background: #eaf1ff;
  font-size: .82rem;
  font-weight: 900;
}

.usecase p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: .92rem;
}

.process {
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.process .section-head p {
  color: rgba(255, 255, 255, .64);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.process-card {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 24px;
  background: rgba(255, 255, 255, .055);
}

.process-text {
  padding: 28px 28px 20px;
}

.process-step {
  display: inline-flex;
  margin-bottom: 28px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  color: #8bdcff;
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.process-card p {
  color: rgba(255, 255, 255, .63);
  font-size: .93rem;
}

.process-image {
  position: absolute;
  right: -35px;
  bottom: -4px;
  width: 112%;
  height: 235px;
  object-fit: cover;
  object-position: top left;
  border: 8px solid rgba(255, 255, 255, .08);
  border-radius: 18px 0 0 0;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .28);
}

.platform-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 72px;
  align-items: center;
}

.platform-visual {
  overflow: hidden;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.platform-visual img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  object-fit: cover;
  object-position: top;
}

.case-study-visual img {
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}

.project-logo {
  display: grid;
  min-height: 420px;
  place-items: center;
  background: var(--white);
}

.project-logo img {
  width: min(100%, 650px);
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}

.card-link--flow {
  position: static;
  margin-top: 24px;
}

.deployment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 52px;
}

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

.deployment-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 16px 45px rgba(16, 25, 54, .08);
}

.deployment-card-media {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--surface);
}

.deployment-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.deployment-card-media--contain img {
  object-fit: contain;
}

.deployment-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px;
}

.deployment-card-body p {
  color: var(--ink-soft);
}

.deployment-card-body .card-link {
  position: static;
  margin-top: auto;
  padding-top: 18px;
}

.deployment-label {
  display: block;
  margin-bottom: 12px;
  color: var(--blue-dark);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.check-list {
  display: grid;
  gap: 15px;
  margin: 30px 0 34px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  color: #34405c;
  font-weight: 650;
}

.check-list li::before {
  position: absolute;
  top: 2px;
  left: 0;
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  content: "✓";
  font-size: .72rem;
  font-weight: 900;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.resource-card {
  display: flex;
  min-height: 285px;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  transition: transform .2s ease, box-shadow .2s ease;
}

.resource-card:hover {
  box-shadow: 0 18px 45px rgba(16, 25, 54, .08);
  transform: translateY(-4px);
}

.resource-type {
  margin-bottom: 45px;
  color: var(--blue-dark);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.resource-card h3 {
  font-size: 1.22rem;
}

.resource-card p {
  color: var(--ink-soft);
  font-size: .9rem;
}

.resource-card .card-link {
  position: static;
  margin-top: auto;
}

.cta {
  padding: 0 0 110px;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 64px;
  border-radius: 30px;
  color: var(--white);
  background: var(--blue);
}

.cta-panel::before,
.cta-panel::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 50%;
  content: "";
}

.cta-panel::before {
  top: -180px;
  right: -80px;
  width: 430px;
  height: 430px;
}

.cta-panel::after {
  right: 70px;
  bottom: -210px;
  width: 330px;
  height: 330px;
}

.cta-panel > * {
  position: relative;
  z-index: 1;
}

.cta-panel h2 {
  max-width: 780px;
  margin-bottom: 14px;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
}

.cta-panel p {
  max-width: 650px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .76);
  font-size: 1.05rem;
}

.site-footer {
  padding: 72px 0 28px;
  color: var(--white);
  background: var(--navy);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 60px;
  padding-bottom: 60px;
}

.footer-brand .brand {
  margin-bottom: 20px;
}

.footer-brand p {
  max-width: 330px;
  color: rgba(255, 255, 255, .58);
  font-size: .92rem;
}

.footer-column strong {
  display: block;
  margin-bottom: 20px;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer-column a {
  display: table;
  margin-bottom: 11px;
  color: rgba(255, 255, 255, .62);
  font-size: .9rem;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .45);
  font-size: .8rem;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 50%;
  color: rgba(255, 255, 255, .7);
  font-size: .7rem;
  font-weight: 850;
}

.socials a:hover,
.socials a:focus-visible {
  border-color: rgba(255, 255, 255, .45);
  color: var(--white);
}

:focus-visible {
  outline: 3px solid rgba(23, 103, 255, .36);
  outline-offset: 3px;
}

@media (max-width: 1050px) {
  .nav-toggle { display: block; }

  .nav-menu {
    position: fixed;
    top: 79px;
    right: 0;
    left: 0;
    visibility: hidden;
    min-height: calc(100vh - 79px);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 26px;
    padding: 34px 20px;
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, .98);
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
  }

  .nav-menu.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-links a {
    padding: 17px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 1.08rem;
  }

  .nav-actions {
    align-items: stretch;
  }

  .nav-actions .button {
    flex: 1;
  }

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

  .hero-copy {
    max-width: 850px;
  }

  .hero-visual {
    min-height: 410px;
  }

  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .trust-label {
    grid-column: 1 / -1;
  }

  .solution-grid,
  .usecase-grid,
  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .proof-card:last-child {
    grid-column: 1 / -1;
  }

  .solution-card:last-child {
    grid-column: 1 / -1;
  }

  .standards,
  .platform-grid {
    gap: 48px;
  }

  .process-card {
    min-height: 550px;
  }

  .footer-grid {
    grid-template-columns: 1.3fr repeat(3, 1fr);
    gap: 34px;
  }
}

@media (max-width: 780px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  h1 {
    font-size: clamp(2.75rem, 13vw, 4.5rem);
  }

  .section {
    padding: 82px 0;
  }

  .section-head {
    display: block;
    margin-bottom: 40px;
  }

  .section-head p {
    margin-top: 22px;
  }

  .hero {
    padding-top: 70px;
  }

  .hero-grid {
    gap: 44px;
  }

  .hero-visual {
    min-height: 390px;
  }

  .wallet-strip {
    top: 102px;
  }

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

  .solution-grid,
  .usecase-grid,
  .proof-grid,
  .deployment-grid,
  .process-grid,
  .resources-grid,
  .standards,
  .platform-grid {
    grid-template-columns: 1fr;
  }

  .deployment-grid--three {
    grid-template-columns: 1fr;
  }

  .proof-intro {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .proof-card:last-child {
    grid-column: auto;
  }

  .solution-card:last-child {
    grid-column: auto;
  }

  .solution-card {
    min-height: 330px;
  }

  .standard-card:nth-child(2),
  .standard-card:nth-child(3) {
    transform: none;
  }

  .process-card {
    min-height: 505px;
  }

  .platform-visual {
    order: 2;
  }

  .cta {
    padding-bottom: 82px;
  }

  .cta-panel {
    grid-template-columns: 1fr;
    padding: 46px 30px;
  }

  .cta-panel .button {
    justify-self: start;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 520px) {
  .nav {
    min-height: 70px;
  }

  .nav-menu {
    top: 71px;
    min-height: calc(100vh - 71px);
  }

  .brand {
    font-size: 1.25rem;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .hero {
    padding-top: 54px;
  }

  .hero h1 {
    font-size: clamp(2.3rem, 11.5vw, 3rem);
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 360px;
  }

  .visual-shell {
    border-radius: 24px;
  }

  .wallet-strip {
    top: 92px;
    left: 14px;
    width: calc(100% - 28px);
  }

  .visual-caption {
    right: 14px;
    bottom: 14px;
    left: 14px;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
  }

  .visual-caption span:last-child {
    position: static;
    align-self: flex-start;
  }

  .solution-card,
  .usecase,
  .resource-card {
    padding: 25px;
  }

  .standard-stack {
    grid-template-columns: 1fr;
  }

  .process-card {
    min-height: 455px;
  }

  .process-image {
    right: 0;
    bottom: 0;
    width: 100%;
    height: 210px;
    border-radius: 18px 18px 0 0;
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

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

  .logo-track {
    animation: none;
  }
}

/* Shared layouts for product, blog and legal pages */
.subhero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 84px;
  background:
    radial-gradient(circle at 82% 15%, rgba(37, 183, 221, .18), transparent 27%),
    linear-gradient(180deg, #fff, #f5f8ff);
}

.subhero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 72px;
}

.subhero-copy {
  min-width: 0;
}

.subhero h1 {
  font-size: clamp(3rem, 5.7vw, 5.4rem);
}

.subhero h1 span {
  color: var(--blue);
}

.subhero-card {
  position: relative;
  overflow: hidden;
  min-height: 470px;
  border-radius: 30px;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.subhero-card::before {
  position: absolute;
  top: -160px;
  right: -100px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 183, 221, .5), transparent 66%);
  content: "";
}

.subhero-card > img {
  position: absolute;
  z-index: 1;
  right: 8%;
  bottom: -16%;
  width: 57%;
  max-height: 92%;
  object-fit: contain;
  filter: drop-shadow(0 25px 35px rgba(0, 0, 0, .35));
}

.subhero-card--wide > img {
  top: 70px;
  right: 30px;
  bottom: auto;
  width: calc(100% - 60px);
  max-height: none;
  border-radius: 16px;
}

.floating-credential {
  position: absolute;
  z-index: 2;
  top: 42px;
  left: 34px;
  max-width: 210px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 18px;
  color: var(--white);
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(14px);
}

.floating-credential small {
  display: block;
  margin-bottom: 28px;
  color: #8adfff;
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.floating-credential strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.12rem;
}

.floating-credential span {
  color: rgba(255, 255, 255, .62);
  font-size: .82rem;
}

.stat-band {
  color: var(--white);
  background: var(--navy);
}

.stat-band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-band-item {
  padding: 32px 28px;
  border-right: 1px solid rgba(255, 255, 255, .12);
}

.stat-band-item:last-child {
  border-right: 0;
}

.stat-band-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.05rem;
}

.stat-band-item span {
  color: rgba(255, 255, 255, .56);
  font-size: .82rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card {
  min-height: 285px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
}

.feature-card .mini-icon {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 42px;
  place-items: center;
  border-radius: 14px;
  color: var(--blue-dark);
  background: #eaf1ff;
  font-size: .75rem;
  font-weight: 900;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: .92rem;
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.store-button-text {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  gap: 11px;
  padding: 9px 17px;
  border-radius: 13px;
  color: var(--white);
  background: var(--navy);
  font-size: .82rem;
  font-weight: 800;
}

.store-button-text span {
  font-size: 1.35rem;
}

.faq-list {
  max-width: 900px;
  margin-inline: auto;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 25px 52px 25px 0;
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 23px;
  right: 4px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--blue);
  content: "+";
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-answer {
  max-width: 760px;
  padding: 0 0 27px;
  color: var(--ink-soft);
}

.faq-answer p:last-child,
.faq-answer ul:last-child {
  margin-bottom: 0;
}

.blog-hero {
  padding: 92px 0 72px;
  background:
    radial-gradient(circle at 82% 5%, rgba(37, 183, 221, .15), transparent 30%),
    linear-gradient(180deg, #fff, #f6f9ff);
}

.blog-hero h1 {
  max-width: 850px;
  margin-bottom: 22px;
}

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

.blog-card {
  overflow: hidden;
  display: flex;
  min-height: 420px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  transition: transform .22s ease, box-shadow .22s ease;
}

.blog-card:hover {
  box-shadow: 0 20px 50px rgba(16, 25, 54, .09);
  transform: translateY(-5px);
}

.blog-card-image {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #eaf0f8;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.blog-card:hover img {
  transform: scale(1.025);
}

.blog-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 25px;
}

.blog-card-meta {
  margin-bottom: 16px;
  color: var(--blue-dark);
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.blog-card h2 {
  margin-bottom: 16px;
  font-size: 1.25rem;
  letter-spacing: -.025em;
}

.blog-card p {
  display: -webkit-box;
  overflow: hidden;
  margin-bottom: 24px;
  color: var(--ink-soft);
  font-size: .9rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.blog-card .card-link {
  position: static;
  margin-top: auto;
}

.article-hero {
  padding: 82px 0 62px;
  background:
    radial-gradient(circle at 88% 12%, rgba(37, 183, 221, .16), transparent 26%),
    linear-gradient(180deg, #fff, #f5f8ff);
}

.article-head {
  max-width: 940px;
}

.article-head h1 {
  max-width: none;
  margin-bottom: 26px;
  font-size: clamp(2.7rem, 5.4vw, 5.2rem);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 24px;
  color: var(--ink-soft);
  font-size: .86rem;
  font-weight: 700;
}

.article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.article-meta span::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  content: "";
}

.article-wrap {
  display: grid;
  grid-template-columns: minmax(0, 780px) 240px;
  justify-content: space-between;
  gap: 70px;
  padding-top: 70px;
  padding-bottom: 100px;
}

.article-body {
  min-width: 0;
  overflow-wrap: anywhere;
  color: #2d3852;
  font-size: 1.07rem;
  line-height: 1.82;
}

.article-body > :first-child {
  margin-top: 0;
}

.article-body h2,
.article-body h3 {
  scroll-margin-top: 105px;
}

.article-body h2 {
  margin: 2.2em 0 .75em;
  color: var(--ink);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.article-body h3 {
  margin: 2em 0 .65em;
  color: var(--ink);
  font-size: 1.35rem;
}

.article-body p,
.article-body ul,
.article-body ol,
.article-body blockquote {
  margin-bottom: 1.35em;
}

.article-body ul,
.article-body ol {
  padding-left: 1.4em;
}

.article-body li {
  margin-bottom: .5em;
}

.article-body a {
  color: var(--blue-dark);
  font-weight: 650;
  text-decoration: underline;
  text-decoration-color: rgba(23, 103, 255, .28);
  text-underline-offset: 3px;
}

.article-body figure {
  margin: 2.4em 0;
}

.article-body figure img,
.article-body > img {
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.article-body figcaption {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: .78rem;
  text-align: center;
}

.article-body blockquote {
  margin-inline: 0;
  padding: 22px 28px;
  border-left: 4px solid var(--blue);
  border-radius: 0 14px 14px 0;
  background: var(--surface);
}

.article-body pre {
  overflow-x: auto;
  margin: 1.8em 0;
  padding: 20px;
  border-radius: 14px;
  color: #dce8ff;
  background: var(--navy);
  font-size: .84rem;
  line-height: 1.65;
}

.article-body code:not(pre code) {
  padding: .15em .38em;
  border-radius: 5px;
  background: #eaf0f8;
  font-size: .9em;
}

.article-body mark {
  padding-inline: .1em;
  background: #fff2a8;
}

.article-aside {
  align-self: start;
  position: sticky;
  top: 108px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
}

.article-aside strong {
  display: block;
  margin-bottom: 12px;
}

.article-aside p {
  color: var(--ink-soft);
  font-size: .84rem;
}

.article-aside .button {
  width: 100%;
  margin-top: 8px;
}

.article-back {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 8px;
  margin-bottom: 34px;
  color: var(--blue-dark);
  font-size: .82rem;
  font-weight: 850;
}

.legal-hero {
  padding: 80px 0 52px;
  background: var(--surface);
}

.legal-hero h1 {
  margin-bottom: 14px;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
}

.legal-hero p {
  color: var(--ink-soft);
}

.legal-wrap {
  max-width: 900px;
  padding-top: 70px;
  padding-bottom: 100px;
}

.legal-body {
  color: #34405c;
  font-size: 1rem;
  line-height: 1.75;
  overflow-wrap: anywhere;
}

.legal-body h2 {
  margin: 2.1em 0 .7em;
  color: var(--ink);
  font-size: 1.7rem;
}

.legal-body h3 {
  margin: 1.8em 0 .6em;
  color: var(--ink);
  font-size: 1.2rem;
}

.legal-body a {
  color: var(--blue-dark);
  text-decoration: underline;
}

.legal-body ul,
.legal-body ol {
  padding-left: 1.4em;
}

@media (max-width: 1050px) {
  .subhero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .subhero-copy {
    max-width: 850px;
  }

  .subhero-card {
    min-height: 430px;
  }

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

  .article-wrap {
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 45px;
  }
}

@media (max-width: 780px) {
  .subhero,
  .blog-hero,
  .article-hero {
    padding-top: 62px;
  }

  .subhero-card {
    min-height: 390px;
  }

  .stat-band-grid,
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-band-item:nth-child(2) {
    border-right: 0;
  }

  .stat-band-item:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, .12);
  }

  .article-wrap {
    grid-template-columns: 1fr;
    padding-top: 52px;
    padding-bottom: 80px;
  }

  .article-aside {
    position: static;
  }
}

@media (max-width: 560px) {
  .container.subhero-grid,
  .subhero-copy,
  .subhero-copy h1,
  .subhero-copy .lead,
  .subhero-copy .hero-actions {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
  }

  .subhero .eyebrow {
    position: relative;
    display: block;
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
    padding-left: 18px;
    font-size: .72rem;
    line-height: 1.5;
  }

  .subhero .eyebrow::before {
    position: absolute;
    top: .35em;
    left: 0;
  }

  .subhero h1 {
    font-size: clamp(2.4rem, 11.5vw, 3.5rem);
    overflow-wrap: anywhere;
  }

  .eudi-lockup,
  .eudi-lockup--product {
    width: min(230px, 72vw);
    margin-bottom: 20px;
  }

  .subhero-card {
    min-height: 340px;
  }

  .floating-credential {
    top: 24px;
    left: 20px;
    max-width: 175px;
    padding: 16px;
  }

  .stat-band-grid,
  .feature-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .stat-band-item {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
  }

  .stat-band-item:last-child {
    border-bottom: 0;
  }

  .blog-card {
    min-height: 0;
  }

  .article-head h1 {
    font-size: clamp(2.4rem, 12vw, 3.5rem);
  }

  .article-body {
    font-size: 1rem;
  }
}
