/* Metrics-matched fallback to eliminate font-swap layout shift (CLS).
   Approximates Inter so fallback text occupies the same space until Inter loads. */
@font-face {
  font-family: 'Inter Fallback';
  src: local('Arial');
  ascent-override: 90.20%;
  descent-override: 22.48%;
  line-gap-override: 0.00%;
  size-adjust: 107.40%;
}

/* --- GLOBAL / RESET --- */
html {
  scroll-padding-top: 88px;
  scrollbar-width: thin;
  background-image:
    repeating-linear-gradient(to bottom, rgba(140, 140, 140, 0.28) 0 7px, transparent 7px 14px),
    repeating-linear-gradient(to bottom, rgba(140, 140, 140, 0.28) 0 7px, transparent 7px 14px),
    repeating-linear-gradient(to bottom, rgba(140, 140, 140, 0.28) 0 7px, transparent 7px 14px);
  background-size: 1px 100%, 1px 100%, 1px 100%;
  background-position: calc(50% - 320px) 0, 50% 0, calc(50% + 320px) 0;
  background-repeat: no-repeat;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  background-color: #ffffff;
}

/* Alternating section backgrounds — gray / white / gray … (The Shift = gray) */
.site-hero ~ :is(.Section1, .Section) {
  position: relative;
}

.site-hero ~ :is(.Section1, .Section):is(
  .Section1,
  .Section--how-it-works,
  .Section--works,
  .Section--governance,
  .Section--developers
) {
  clip-path: inset(0 -100vmax);
}

.site-hero ~ :is(.Section1, .Section):is(
  .Section1,
  .Section--how-it-works,
  .Section--works,
  .Section--governance,
  .Section--developers
)::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -100vmax;
  right: -100vmax;
  background-image: linear-gradient(180deg, #F7FAFF 0%, #EEF4FF 100%);
  z-index: -1;
}

.site-hero ~ :is(.Section1, .Section):is(
  .Section--feature,
  .Section--section3:not(.Section--how-it-works),
  .Section--trust,
  .Section--standards,
  .Section--closing
) {
  background-color: #ffffff;
  box-shadow: 0 0 0 100vmax #ffffff;
  clip-path: inset(0 -100vmax);
}

::-webkit-scrollbar {
  width: 8px;
}

/* --- COMMON / UTILITY --- */
.Section {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  flex-grow: 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 64px;
  padding: 80px 64px;
  box-sizing: border-box;
}

.Content {
  align-self: stretch;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0;
}

.section-label {
  height: 16px;
  align-self: stretch;
  flex-grow: 0;
  font-family: Inter, "Inter Fallback", sans-serif;
  font-size: 16px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: -0.25px;
  text-align: left;
  color: #533afd;
}

.section-title {
  margin: 0;
  align-self: stretch;
  flex-grow: 0;
  font-family: Inter, "Inter Fallback", sans-serif;
  font-size: 40px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: -0.25px;
  text-align: left;
  color: #0a0a0a;
  padding: 24px 0px;
}

.section-title .text-style-1 {
  color: #7e858b;
}

.section-content {
  align-self: stretch;
  flex-grow: 0;
  font-family: Inter, "Inter Fallback", sans-serif;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: -0.25px;
  text-align: left;
  color: #0a0a0a;
}

.section-list {
  margin: 0;
  padding: 24px 0 0 30px;
  align-self: stretch;
  flex-grow: 0;
  font-family: Inter, "Inter Fallback", sans-serif;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: -0.25px;
  text-align: left;
  color: #0a0a0a;
  list-style: disc;
}

.section-list li {
  margin-bottom: 0.5rem;
}

.button-wrapper {
  flex-grow: 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
  padding: 0;
}

.Buttons-primary {
  flex-grow: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  border-radius: 36px;
  background-color: #2b2b2b;
  border: 1px solid #2b2b2b;
  transition: background-color 0.25s ease, border-color 0.25s ease;
  cursor: pointer;
  box-sizing: border-box;
}

.Buttons-primary:hover {
  background-color: #030303;
  border-color: #030303;
}

.Primary {
  width: 140px;
  height: 16px;
  flex-grow: 0;
  font-family: Inter, "Inter Fallback", sans-serif;
  font-size: 16px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: -0.25px;
  text-align: center;
  color: #fff;
}

.Buttons-secondary {
  flex-grow: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  border-radius: 36px;
  border: solid 1px #2b2b2b;
  background-color: #fff;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  cursor: pointer;
  box-sizing: border-box;
}

.Buttons-secondary:hover {
  background-color: #ededed;
  border-color: #030303;
}

.Buttons-secondary:hover .Secondary {
  color: #030303;
}

.Secondary {
  width: auto;
  min-width: 62px;
  height: 16px;
  flex-grow: 0;
  font-family: Inter, "Inter Fallback", sans-serif;
  font-size: 16px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: -0.25px;
  text-align: center;
  color: #2b2b2b;
}

.Placeholder {
  width: 100%;
  max-width: 628px;
  aspect-ratio: var(--placeholder-ratio, 1348 / 854);
  flex-grow: 0;
  flex-shrink: 1;
  border-radius: 12px;
  background-color: #ffffff;
  box-shadow: 0 6px 16px rgba(28, 32, 46, 0.06);
  overflow: hidden;
  position: relative;
}

.Placeholder--how {
  --placeholder-ratio: 1350 / 850;
}

.Placeholder--built {
  --placeholder-ratio: 1215 / 856;
}

.Placeholder--governance {
  --placeholder-ratio: 1350 / 850;
}

.Placeholder--standards {
  --placeholder-ratio: 1259 / 942;
}

.Placeholder--developers {
  --placeholder-ratio: 1350 / 850;
}

.Placeholder--future {
  --placeholder-ratio: 1350 / 850;
}

.Placeholder-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

@media (min-width: 1025px) {
  .Section--governance,
  .Section--standards,
  .Section--developers,
  .Section--closing {
    justify-content: flex-start;
    align-items: center;
    gap: 64px;
  }

  .Section--governance > .Content,
  .Section--standards > .Content,
  .Section--developers > .Content,
  .Section--closing > .Content {
    flex: 1 1 0;
    min-width: 0;
  }

  .Section--governance > .Placeholder,
  .Section--standards > .Placeholder,
  .Section--developers > .Placeholder,
  .Section--closing > .Placeholder {
    width: 100%;
    max-width: 613px;
    flex: 0 1 613px;
    aspect-ratio: var(--placeholder-ratio, 1448 / 1086);
  }

  .Section--governance .Placeholder-img,
  .Section--standards .Placeholder-img,
  .Section--developers .Placeholder-img,
  .Section--closing .Placeholder-img {
    object-fit: contain;
  }
}

/* --- HEADER --- */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  height: 72px;
  box-sizing: border-box;
  font-family: Inter, "Inter Fallback", sans-serif;
}

.site-header::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  flex-grow: 0;
  opacity: 0.5;
  mix-blend-mode: color-burn;
  background-color: #8c8c8c;
  pointer-events: none;
}

.site-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 64px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px 32px;
  box-sizing: border-box;
}

.site-header-logo {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.site-header-logo-img {
  display: block;
  height: 48px;
  width: auto;
  max-width: min(260px, 50vw);
  flex-shrink: 0;
  object-fit: contain;
}

.site-header-logo-text {
  display: inline-flex;
  flex-direction: row;
  align-items: baseline;
  flex-grow: 0;
  width: auto;
  height: auto;
  mix-blend-mode: color-burn;
  font-family: Inter, "Inter Fallback", sans-serif;
  font-size: 24px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: -0.25px;
  text-align: left;
  color: #1a1a1a;
}

.site-header-menu-btn {
  display: none;
}

.site-header-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px 26px;
}

.site-header-link {
  width: 90px;
  height: 16px;
  flex-grow: 0;
  font-family: Inter, "Inter Fallback", sans-serif;
  font-size: 16px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: -0.25px;
  text-align: left;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.25s ease;
}

.site-header-link:hover {
  color: rgba(255, 255, 255, 0.85);
}

.site-header-link-arrow {
  font-size: 14px;
  line-height: 1;
  opacity: 0.85;
}

.site-header-cta {
  width: 144px;
  height: 32px;
  flex-grow: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 3px 5px;
  border-radius: 36px;
  background-color: #2b2b2b;
  line-height: 1;
  letter-spacing: -0.25px;
  text-align: center;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.25s ease;
}

.site-header-cta:hover {
  background-color: #030303;
}

.site-header-cta .site-header-link-arrow {
  opacity: 1;
}

.home-nav-modal {
  display: none;
}

/* --- HERO SECTION --- */
.site-hero {
  position: relative;
  width: 100%;
  height: 798px;
  min-height: 798px;
  box-sizing: border-box;
  overflow: hidden;
  --site-header-height: 72px;
}

/* MudraID Stripe-like premium hero background */
.mudra-hero {
  isolation: isolate;
}

.mudra-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: #030a77;
  contain: layout paint;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.mudra-hero-bg img,
.mudra-hero-bg object {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  object-fit: cover;
  pointer-events: none;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.mudra-hero-bg__bottom {
  z-index: 1;
}

.mudra-hero-bg__top {
  z-index: 2;
  mix-blend-mode: screen;
  opacity: 0.94;
}

/* Readability layer: keeps text/dashboard premium and legible. */
.mudra-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    radial-gradient(circle at 26% 34%, rgba(3, 10, 119, 0.54), transparent 36%),
    linear-gradient(90deg, rgba(3, 10, 119, 0.52), rgba(3, 10, 119, 0.08) 58%, rgba(3, 10, 119, 0.18));
}

.mudra-hero-content {
  position: relative;
  z-index: 4;
}

.site-hero-main {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  max-width: 1280px;
  height: calc(100% - var(--site-header-height));
  margin: var(--site-header-height) auto 0;
  padding: 0 64px;
}

.site-hero-content {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@media (max-width: 900px) {
  .mudra-hero-bg__top {
    opacity: 0.64;
    transform: scale(1.28) translateX(-12%);
    transform-origin: top center;
  }

  .mudra-hero-bg::after {
    background: linear-gradient(180deg, rgba(3, 10, 119, 0.58), rgba(3, 10, 119, 0.2));
  }
}

@media (max-width: 576px) {
  .mudra-hero-bg object.mudra-hero-bg__top {
    inset: 0;
    top: -50%;
    width: 150%;
    height: 100%;
    opacity: 0.64;
    transform: scale(2.15) translateX(20%);
    transform-origin: top center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mudra-hero-bg__bottom,
  .mudra-hero-bg__top {
    animation: none;
  }
}

.site-hero-copy {
  max-width: 560px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.site-hero-eyebrow {
  margin: 0 0 4px;
  height: auto;
  align-self: stretch;
  flex-grow: 0;
  font-family: Inter, "Inter Fallback", sans-serif;
  font-size: 16px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.15;
  letter-spacing: -0.25px;
  text-align: left;
  color: #38bdf8;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.site-hero-title {
  margin: 0;
  width: 544px;
  flex-grow: 0;
  font-family: Inter, "Inter Fallback", sans-serif;
  font-size: 64px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.06;
  letter-spacing: -0.25px;
  text-align: left;
  padding: 24px 0 28px;
  color: #f8fafc;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.site-hero-title-line {
  display: block;
  width: max-content;
  max-width: 100%;
  padding-bottom: 0.06em;
}

.site-hero-title-line--accent {
  display: block;
  padding-bottom: 0.06em;
  background: linear-gradient(90deg, #00B7FF 0%, #005BFF 32%, #723cfa 68%, #E040FB 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-shadow: none;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.25));
}

.site-hero-title-rest {
  color: #f8fafc;
}

.site-hero-desc {
  margin: 0;
  padding: 0;
  padding-bottom: 32px;
  width: 500px;
  max-width: 100%;
  align-self: stretch;
  flex-grow: 0;
  font-family: Inter, "Inter Fallback", sans-serif;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: -0.25px;
  text-align: left;
  color: #d7e3ff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.site-hero-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin: 0;
  padding: 0;
}

.site-hero-btn {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 12px 32px;
  border-radius: 36px;
  font-family: Inter, "Inter Fallback", sans-serif;
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: -0.25px;
  text-decoration: none;
  box-sizing: border-box;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.site-hero-btn--primary {
  color: #fff;
  background-color: #2b2b2b;
  border-color: #2b2b2b;
}

.site-hero-btn--primary:hover {
  background-color: #030303;
  border-color: #030303;
}

.site-hero-btn--secondary {
  color: #2b2b2b;
  background-color: #fff;
  border: 1px solid #2b2b2b;
}

.site-hero-btn--secondary:hover {
  background-color: #ededed;
  border-color: #030303;
  color: #030303;
}

.site-hero-dashboard {
  position: absolute;
  right: 0;
  top: 56%;
  transform: translateY(-50%);
  z-index: 4;
  max-width: min(680px, 48vw);
  pointer-events: none;
}

.site-hero-dashboard-img {
  display: block;
  width: 100%;
  height: auto;
}

/* Hero code card */
.hero-code-card {
  display: none;
  position: absolute;
  left: 60px;
  bottom: 2%;
  z-index: 4;
  width: 330px;
  height: 220px;
  box-sizing: border-box;
  flex-direction: column;
  background-color: #f8fbfe;
  border-radius: 8px;
  border: 1px solid rgba(10, 10, 10, 0.08);
  box-shadow:
    0 4px 12px rgba(10, 10, 10, 0.08),
    0 16px 40px rgba(10, 10, 10, 0.12);
  transform: translateX(-18%);
  overflow: hidden;
  pointer-events: none;
}

.hero-code-card__tools {
  display: flex;
  align-items: center;
  padding: 5px;
  border-bottom: 1px solid rgba(10, 10, 10, 0.06);
}

.hero-code-card__circle {
  padding: 0 2px;
}

.hero-code-card__dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.hero-code-card__dot--red {
  background-color: #ff605c;
}

.hero-code-card__dot--yellow {
  background-color: #ffbd44;
}

.hero-code-card__dot--green {
  background-color: #00ca4e;
}

.hero-code-card__content {
  flex: 1;
  min-height: 0;
  padding: 12px 12px 14px;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.hero-code-card__content::-webkit-scrollbar {
  display: none;
}

.hero-code-card__pre {
  margin: 0;
}

.hero-code-card__content pre {
  margin: 0;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 10px;
  line-height: 1.55;
  color: #0a0a0a;
  white-space: pre-wrap;
  word-break: break-word;
}

.hero-code-card__kw {
  color: #533afd;
}

.hero-code-card__fn {
  color: #0a0a0a;
}

.hero-code-card__prop {
  color: #7e858b;
}

.hero-code-card__str {
  color: #00a67e;
}

.hero-code-card__comment {
  color: #7e858b;
}

.hero-code-card__cursor {
  display: inline-block;
  width: 2px;
  height: 1.05em;
  margin-left: 1px;
  background-color: #533afd;
  vertical-align: text-bottom;
  animation: hero-code-cursor-blink 1s step-end infinite;
}

@keyframes hero-code-cursor-blink {
  50% {
    opacity: 0;
  }
}

@media (min-width: 1025px) {
  .site-hero-dashboard .hero-code-card {
    display: flex;
  }
}

.site-hero-dashboard-wide {
  display: none;
}

@media (min-width: 1550px) {
  .site-hero-main {
    flex-direction: row;
    justify-content: space-between;
    gap: 48px;
  }

  .site-hero-main .site-hero-content {
    flex: 1;
    min-width: 0;
    width: auto;
  }

  .site-hero-dashboard-wide {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-shrink: 0;
    position: relative;
  }

  .site-hero-dashboard-wide-img {
    display: block;
    max-width: min(600px, 38vw);
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 16px;
    box-shadow:
      0 4px 6px rgba(10, 10, 10, 0.04),
      0 12px 40px rgba(10, 10, 10, 0.12);
    transform: scaleY(1.06);
    transform-origin: center center;
  }

  .site-hero-dashboard-wide .hero-code-card {
    display: flex;
    left: 15px;
    bottom: -10%;
    width: 300px;
    height: 200px;
    transform: translateX(-14%);
  }

  .site-hero-dashboard-wide .hero-code-card__content {
    padding: 12px 12px 16px;
  }

  .site-hero-dashboard-wide .hero-code-card__content pre {
    font-size: 9px;
    line-height: 1.5;
  }

  .site-hero-dashboard {
    display: none;
  }
}

/* --- SECTION 1: THE SHIFT --- */
.Section1 {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  flex-grow: 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: 0 64px;
  box-sizing: border-box;
}

.section1-shift-visual {
  width: 658px;
  height: 585px;
  flex-grow: 0;
  flex-shrink: 0;
  padding: 0 41.3px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  z-index: 1;
  background-color: transparent;
}

.section1-shift-svg {
  width: 100%;
  height: 100%;
  max-width: 100%;
  display: block;
  pointer-events: none;
  background: transparent;
}

.section1-shift-svg--tablet,
.section1-shift-svg--mobile {
  display: none;
}

/* --- SECTION 2: FEATURE --- */
.section-feature-visual {
  width: 628px;
  height: 285px;
  flex-grow: 0;
  flex-shrink: 0;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  z-index: 1;
  background-color: #ffffff;
}

.Section--works .section-feature-visual {
  background-color: transparent;
}

.section-feature-svg {
  width: 100%;
  height: 100%;
  max-width: 100%;
  display: block;
  pointer-events: none;
  background: transparent;
}

/* Section 2 Feature: Section 3 A ↔ B slide animation */
.section-feature-visual .home-section3-anim-wrap {
  position: relative;
  width: 100%;
  max-width: 628px;
  height: 285px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}

.section-feature-visual .home-section3-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s ease;
}

.section-feature-visual .home-section3-slide .home-section3-anim-object {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.section-feature-visual .home-section3-slides.state-a .home-section3-slide-a {
  transform: translateX(0);
}

.section-feature-visual .home-section3-slides.state-a .home-section3-slide-b {
  transform: translateX(-100%);
}

.section-feature-visual .home-section3-slides.state-b .home-section3-slide-a {
  transform: translateX(100%);
}

.section-feature-visual .home-section3-slides.state-b .home-section3-slide-b {
  transform: translateX(0);
}

.section-feature-visual .home-section3-slides.state-b.state-a-next .home-section3-slide-a {
  transform: translateX(-100%);
  transition: none;
}

.section-feature-visual .home-section3-slides.state-a.state-b-next .home-section3-slide-b {
  transform: translateX(-100%);
  transition: none;
}

/* --- SECTION 3 & 4: HOW IT WORKS / BUILT FOR BOTH SIDES --- */
.Section.Section--section3 {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: stretch;
  padding: 80px 64px;
  box-sizing: border-box;
}

.Section--section3 .Content--section3,
.Section--section3 > .Placeholder {
  min-width: 0;
  max-width: 100%;
}

.Section--section3 .Content--section3 {
  flex-grow: 0;
  width: auto;
  box-sizing: border-box;
  justify-content: center;
  display: flex;
  flex-direction: column;
}

@media (min-width: 1025px) {
  .Section.Section--section3 {
    grid-template-columns: minmax(0, 475px) 613px;
  }

  .Section.Section--how-it-works {
    grid-template-columns: minmax(0, 499px) 613px;
    gap: 40px;
  }

  .Section--section3 .Content--section3 {
    max-width: 475px;
  }

  .Section--how-it-works .Content--section3 {
    max-width: 499px;
  }

  .Section--section3 > .Placeholder {
    width: 100%;
    max-width: 613px;
    min-width: 0;
    align-self: center;
    justify-self: end;
  }
}

.Section--section3 .section4-sub-section {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}

.Section--section3 .section4-sub-col {
  min-width: 0;
  max-width: 100%;
}

.section4-sub-label {
  margin-top: -2px;
  padding-bottom: 24px;
  align-self: stretch;
  flex-grow: 0;
  font-family: Inter, "Inter Fallback", sans-serif;
  font-size: 16px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: -0.25px;
  text-align: left;
  color: #533afd;
}

/* --- SECTION 5: WORKS EVERYWHERE --- */

/* --- SECTION 6: TRUST WITHOUT FRICTION --- */

/* Section 6 Feature: Section 6 A ↔ B slide animation */
.section-feature-visual .home-section6-anim-wrap {
  position: relative;
  width: 100%;
  max-width: 628px;
  height: 285px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}

.section-feature-visual .home-section6-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s ease;
}

.section-feature-visual .home-section6-slide .home-section6-anim-object {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.section-feature-visual .home-section6-slides.state-a .home-section6-slide-a {
  transform: translateX(0);
}

.section-feature-visual .home-section6-slides.state-a .home-section6-slide-b {
  transform: translateX(-100%);
}

.section-feature-visual .home-section6-slides.state-b .home-section6-slide-a {
  transform: translateX(100%);
}

.section-feature-visual .home-section6-slides.state-b .home-section6-slide-b {
  transform: translateX(0);
}

.section-feature-visual .home-section6-slides.state-b.state-a-next .home-section6-slide-a {
  transform: translateX(-100%);
  transition: none;
}

.section-feature-visual .home-section6-slides.state-a.state-b-next .home-section6-slide-b {
  transform: translateX(-100%);
  transition: none;
}

/* --- SECTION 8: GOVERNANCE --- */

/* --- SECTION 8.5: STANDARDS & INTEROPERABILITY --- */

/* --- SECTION 9: DEVELOPERS --- */
.Create-an-account-get-your-keys-and-integrate-MudraID-into-your-agent-runtime-or-your-verification {
  height: 48px;
  align-self: stretch;
  flex-grow: 0;
  font-family: Inter, "Inter Fallback", sans-serif;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: -0.25px;
  text-align: left;
  color: #0a0a0a;
  padding-bottom: 48px;
}

/* --- SECTION 10: CLOSING --- */
.Build-for-a-future-where-agents-and-websites-interact-securely-at-scale {
  height: 200px;
  align-self: stretch;
  flex-grow: 0;
  font-family: Inter, "Inter Fallback", sans-serif;
  font-size: 40px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: -0.25px;
  text-align: left;
  color: #0a0a0a;
}

.Build-for-a-future-where-agents-and-websites-interact-securely-at-scale .text-style-1 {
  color: #7e858b;
}

.Explore-the-system-Review-the-model-Create-an-account-when-youre-ready {
  height: 48px;
  align-self: stretch;
  flex-grow: 0;
  font-family: Inter, "Inter Fallback", sans-serif;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: -0.25px;
  text-align: left;
  color: #0a0a0a;
  padding-top: 24px;
  padding-bottom: 48px;
}

/* --- FOOTER --- */
footer.site-footer {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background: radial-gradient(circle at top left, #102A5C 0%, #050816 45%, #02040A 100%);
  font-family: Inter, "Inter Fallback", sans-serif;
  overflow: hidden;
}

footer.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../../../img/FooterBackgroundLogo.png");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
  opacity: 0.02;
  pointer-events: none;
}

.site-footer-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  box-sizing: border-box;
}

.site-footer-main {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 100px;
  width: 100%;
}

.site-footer-brand {
  width: 310px;
  max-width: 100%;
  flex-shrink: 0;
}

.site-footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.site-footer-logo:hover {
  opacity: 0.85;
}

.site-footer-logo-img {
  display: block;
  width: 40px;
  height: 40px;
}

.site-footer-logo-text {
  width: 99px;
  height: 24px;
  flex-grow: 0;
  font-family: Inter, "Inter Fallback", sans-serif;
  font-size: 24px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: -0.25px;
  text-align: left;
  color: #ffffff;
}

.site-footer-desc {
  margin: 20px 0;
  width: 310px;
  height: 63px;
  flex-grow: 0;
  font-family: Inter, "Inter Fallback", sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: -0.25px;
  text-align: left;
  color: #9ca3af;
}

.site-footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.site-footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #635bff;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-footer-social-link:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.site-footer-nav {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  gap: 25%;
  width: auto;
  max-width: 100%;
  flex: 0 0 auto;
  min-width: 0;
  margin-top: -15px;
}

.site-footer-col {
  width: max-content;
  max-width: 140px;
}

.site-footer-col:last-child {
  max-width: min(280px, 100%);
  min-width: 0;
}

.site-footer-col--links {
  max-width: 160px;
}

.site-footer-heading {
  width: auto;
  height: auto;
  flex-grow: 0;
  font-family: Inter, "Inter Fallback", sans-serif;
  font-size: 16px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: -0.25px;
  text-align: left;
  color: #ffffff;
}

.site-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: Inter, "Inter Fallback", sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: -0.25px;
  text-align: left;
  color: #9ca3af;
}

.site-footer-links a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer-links a:hover {
  color: #ffffff;
}

.site-footer-bottom {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-top: 64px;
  box-sizing: border-box;
}

.site-footer-bottom-links {
  flex: 0 0 98px;
  max-width: 100%;
  min-width: 0;
  margin-top: -15px;
}

.site-footer-contact-col {
  flex: 0 0 288px;
  max-width: 100%;
  min-width: 0;
  margin-top: -15px;
}

.site-footer-links--underline a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.site-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-footer-contact-item {
  margin: 0;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.45;
  color: #9ca3af;
}

.site-footer-contact-icon {
  flex-shrink: 0;
  margin-top: 2px;
  color: #635bff;
}

.site-footer-contact-item a {
  color: #9ca3af;
  text-decoration: none;
  overflow-wrap: anywhere;
  word-break: break-word;
  min-width: 0;
  transition: color 0.2s ease;
}

.site-footer-contact-item a:hover {
  color: #ffffff;
}

.site-footer-contact-item--stacked {
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.site-footer-contact-label {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.5;
  color: #ffffff;
}

.site-footer-copyright {
  margin: 64px 0 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-family: Inter, "Inter Fallback", sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: -0.25px;
  color: #7e858b;
}

.site-footer-copyright-text {
  margin: 0;
}

.site-footer-legal {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  flex-shrink: 0;
}

.site-footer-legal a {
  color: #7e858b;
  text-decoration: none;
  white-space: nowrap;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.25px;
  transition: color 0.2s ease;
}

.site-footer-legal a:hover {
  color: #ffffff;
}
