:root {
  --navy: #253c67;
  --navy-2: #304a79;
  --ink: #253c67;
  --muted: #64748b;
  --orange: #ff5a10;
  --mint: #10b981;
  --surface: #f8fafc;
  --line: #dfe6ec;
  --gx: 0;
  --gy: 0;
  --max: 1140px;
  --nav-height: 80px;
  --font-body: "Albert Sans", "Avenir Next", "Segoe UI", sans-serif;
  --font-display: "Inter", "Albert Sans", "Avenir Next", "Segoe UI", sans-serif;
  --strip-gap: 125px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: #DDE4EA;
  overflow-x: hidden;
}
body::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(70% 70% at 30% 20%, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0)),
    radial-gradient(55% 55% at 85% 80%, rgba(37, 60, 103, 0.08), rgba(37, 60, 103, 0));
  transform: translate3d(calc(var(--gx) * -12px), calc(var(--gy) * -12px), 0);
  transition: transform 0.25s ease-out;
  pointer-events: none;
  z-index: -1;
}

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

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
}



.frame {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  line-height: 1;
  color: var(--orange);
  margin: 0 0 8px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  font-size: clamp(34px, 4.1vw, 48px);
  line-height: 1.1;
}

.section-lead {
  margin-top: 26px;
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.5;
  color: var(--ink);
}

.btn {
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  padding: 0 24px;
  border-radius: 10px;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

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

.btn:active {
  transform: translateY(0);
}

.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.75), 0 0 0 6px rgba(37, 60, 103, 0.24);
}

.btn-primary {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}

.btn-primary:hover {
  background: #e34e0d;
  border-color: #e34e0d;
}

.btn-primary:active {
  background: #cc4308;
  border-color: #cc4308;
}

.btn-dark {
  background: #2c2c2c;
  color: #f5f5f5;
  border: 1px solid #2c2c2c;
}

.btn-dark:hover {
  background: #1f1f1f;
  border-color: #1f1f1f;
}

.btn-dark:active {
  background: #141414;
  border-color: #141414;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: var(--nav-height);
  height: auto;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  backdrop-filter: blur(14px) saturate(130%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.1); /* Android 2.3+, iOS 4.0.2-4.2, Safari 3-4 */
          box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.1); /* Chrome 6+, Firefox 4+, IE 9+, iOS 5+, Opera 10.50+ */
}

.site-header .bar {
  width: min(100% - 40px, 1440px);
  min-height: var(--nav-height);
  height: auto;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-inline: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-tangible {
  height: 30px;
  width: auto;
}

.brand-x {
  position: relative;
  width: 45px;
  height: 45px;
  opacity: 0.4;
  display: inline-block;
  flex: 0 0 45px;
}

.brand-x::before,
.brand-x::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1px;
  height: 62%;
  background: #64748b;
  transform-origin: center;
  pointer-events: none;
}

.brand-x::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.brand-x::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.brand-fintek {
  width: 102px;
  height: 40px;
  object-fit: contain;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 40px;
  color: #94a3b8;
  font-size: 16px;
  line-height: 1.4;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.top-nav a {
  transition: color 0.2s ease;
}

.top-nav a:not(.btn):hover {
  color: var(--ink);
}

.top-nav .btn-primary:hover {
  background: #ff6e2f;
  border-color: #ff6e2f;
  color: #fff;
}

.hero {
  padding: 105px 0 50px;
  overflow: hidden;
  position: relative;
  isolation: isolate;
}



.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 556px) minmax(0, 516px);
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 60px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 13ch;
  font-weight: 700;
}

.hero h1 .accent {
  color: var(--orange);
}

.hero p {
  margin-top: 20px;
  max-width: 492px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.79;
}

.hero-actions {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-link {
  text-decoration: underline;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 600;
  color: var(--ink);
}

.hero-network {
  position: relative;
  width: 516px;
  max-width: 100%;
  height: 524px;
  margin: 0 auto;
  overflow: visible;
}

.net-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.net-lines line {
  stroke: rgba(155, 176, 207, 0.86);
  stroke-width: 1.9;
  stroke-linecap: round;
  opacity: 0;
  stroke-dasharray: 2 9;
  stroke-dashoffset: 0;
  animation: net-line-in 0.72s ease forwards, net-line-flow 10s linear infinite;
}

.net-node {
  position: absolute;
  border-radius: 999px;
  display: grid;
  place-items: center;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  color: #fff;
  line-height: 1;
  box-shadow: 0 14px 24px rgba(37, 60, 103, 0.16);
  --node-scale: 1;
  transform: translate3d(calc(var(--gx) * var(--depth) * 30px), calc(var(--gy) * var(--depth) * 30px), 0) scale(var(--node-scale));
  transition: transform 0.32s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.32s ease;
  will-change: transform;
  pointer-events: auto;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
  z-index: 3;
  opacity: 1;
  animation: net-node-in 0.7s cubic-bezier(0.19, 0.82, 0.25, 1) backwards;
}

.net-node:not(.node-main) {
  width: 52px;
  height: 52px;
}

.net-node:hover {
  --node-scale: 1.06;
  box-shadow: 0 18px 30px rgba(37, 60, 103, 0.2);
}

.node-main:hover {
  --node-scale: 1.03;
}

.node-ai {
  left: 43.5%;
  top: 14.4%;
  background: #304a79;
  --depth: 0.8;
  animation-delay: 0.16s;
}

.node-risk {
  left: 19.5%;
  top: 37%;
  background: var(--orange);
  --depth: -0.52;
  animation-delay: 0.26s;
}

.node-ops {
  right: 12.8%;
  top: 34%;
  background: #304a79;
  --depth: 0.7;
  animation-delay: 0.31s;
}

.node-main {
  width: 102px;
  height: 102px;
  left: 41.8%;
  top: 40.8%;
  background: var(--orange);
  padding: 8px;
  --depth: 1;
  animation-delay: 0.38s;
}

.node-biz {
  left: 31%;
  top: 67.8%;
  background: var(--orange);
  --depth: -0.72;
  animation-delay: 0.45s;
}

.node-tech {
  right: 24.6%;
  top: 63.2%;
  background: #304a79;
  --depth: 0.66;
  animation-delay: 0.5s;
}

.float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(37, 60, 103, 0.14);
  backdrop-filter: blur(6px);
  padding: 13px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 74px;
  transform: translate3d(0, 0, 0);
  transition: none;
  pointer-events: none;
  width: max-content;
  max-width: calc(100% - 20px);
  z-index: 1;
  will-change: transform;
}

.float-card img {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 8px;
  padding: 8px;
  background: var(--icon-bg, #d9e5f8);
}

.float-card > div {
  display: flex;
  align-items: baseline;
  gap: 8px;
  white-space: nowrap;
}

.float-card small {
  display: inline;
  font-size: 11px;
  line-height: 1.05;
  color: #8794aa;
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.float-card strong {
  display: inline;
  font-size: 15px;
  line-height: 1.1;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  white-space: nowrap;
}

.float-1 {
  right: -1.2%;
  top: -1.6%;
  --depth: -0.45;
  --icon-bg: #b8cdf6;
}

.float-1 > div,
.float-2 > div,
.float-3 > div {
  display: block;
  white-space: normal;
}

.float-1 small,
.float-2 small,
.float-3 small {
  display: block;
  margin-bottom: 4px;
}

.float-1 strong,
.float-2 strong,
.float-3 strong {
  display: block;
  white-space: normal;
}

.float-2 {
  left: -14%;
  top: 53.8%;
  --depth: 0.52;
  --icon-bg: #efcbbd;
}

.float-3 {
  right: -8.8%;
  top: 75.4%;
  --depth: -0.62;
  --icon-bg: #b9dfd2;
}

@keyframes net-line-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 0.74;
  }
}

@keyframes net-line-flow {
  from {
    stroke-dashoffset: 0;
  }

  to {
    stroke-dashoffset: -132;
  }
}

@keyframes net-node-in {
  from {
    opacity: 0;
    transform: translate3d(calc(var(--gx) * var(--depth) * 30px), calc(var(--gy) * var(--depth) * 30px), 0) scale(calc(0.9 * var(--node-scale)));
  }

  to {
    opacity: 1;
    transform: translate3d(calc(var(--gx) * var(--depth) * 30px), calc(var(--gy) * var(--depth) * 30px), 0) scale(var(--node-scale));
  }
}

.partner-strip {
  background: #243c67;
  border-top: 1px solid #243c67;
  border-bottom: 1px solid #243c67;
  position: relative;
  overflow: hidden;
  padding-inline: 0;
}

.partner-strip::before {
  content: "";
  position: absolute;
  left: 0;
  top: -41px;
  width: 432.838px;
  height: 173.5px;
  background: url("../img/white-arrow-right.png") center/cover no-repeat;
  pointer-events: none;
  opacity: 0.9;
}

.partner-marquee {
  width: 100%;
  margin: 0;
  padding: 24px 0;
  overflow: hidden;
  position: relative;
}

.partner-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 0;
  animation: strip-marquee 26s linear infinite;
  will-change: transform;
}

.partner-strip:hover .partner-track {
  animation-play-state: paused;
}

.partner-seq {
  display: flex;
  align-items: center;
  gap: var(--strip-gap);
  padding-right: var(--strip-gap);
  flex-shrink: 0;
}

@keyframes strip-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-1 * var(--marquee-shift, 50%)));
  }
}

.strip-item {
  text-transform: uppercase;
  white-space: nowrap;
  min-width: max-content;
  text-align: center;
}

.strip-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1.8px;
  line-height: 1.4;
  color: #fff;
}

.strip-item span {
  display: block;
  margin-top: 2px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.28px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.6);
}

.challenge {
  padding: 100px 0;
  background: #fff;
}

.challenge-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 400px;
  align-items: end;
  gap: 50px;
}

.challenge-list {
  margin-top: 35px;
  width: min(600px, 100%);
  display: grid;
  gap: 24px;
}

.challenge-item {
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.challenge-icon {
  width: 64px;
  height: 64px;
  border-radius: 64px;
  background: rgba(255, 90, 16, 0.2);
  flex: 0 0 64px;
  display: grid;
  place-items: center;
}

.challenge-icon img {
  width: 18px;
  height: 18px;
}

.challenge-item h3 {
  font-family: var(--font-display);
  font-size: 16.8px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink);
  margin-bottom: 8px;
}

.challenge-item p {
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  max-width: 460px;
}

.challenge-card {
  height: 100%;
  min-height: 585px;
  background: #253c67;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: #fff;
}

.challenge-card::before,
.challenge-card::after {
  content: "";
  position: absolute;
  width: 349.264px;
  height: 140px;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 1;
  pointer-events: none;
  will-change: transform, opacity;
}

.challenge-card::before {
  left: 0;
  top: 20px;
  transform: translate3d(0, 0, 0);
  animation: challenge-ribbon-before 6.2s ease-in-out infinite;
  background-image: url("../img/white-arrow-right.png");
}

.challenge-card::after {
  left: 116px;
  top: 160px;
  transform: rotate(180deg) scaleY(-1) translate3d(0, 0, 0);
  animation: challenge-ribbon-after 6.2s ease-in-out infinite 0.28s;
  background-image: url("../img/white-arrow-right.png");
}

@keyframes challenge-ribbon-before {
  0%,
  10% {
    opacity: 0.7;
    transform: translate3d(0, 0, 0);
  }

  22% {
    opacity: 0.96;
    transform: translate3d(12px, -5px, 0);
  }

  34%,
  100% {
    opacity: 0.7;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes challenge-ribbon-after {
  0%,
  10% {
    opacity: 0.7;
    transform: rotate(180deg) scaleY(-1) translate3d(0, 0, 0);
  }

  22% {
    opacity: 0.96;
    transform: rotate(180deg) scaleY(-1) translate3d(-12px, 5px, 0);
  }

  34%,
  100% {
    opacity: 0.7;
    transform: rotate(180deg) scaleY(-1) translate3d(0, 0, 0);
  }
}

.challenge-content {
  position: relative;
  z-index: 1;
  padding: 30px 40px 40px;
  display: grid;
  gap: 16px;
}

.challenge-content[data-tilt-plane] {
  transform-origin: center center;
  transition: transform 0.22s cubic-bezier(0.22, 0.61, 0.36, 1);
  backface-visibility: hidden;
  pointer-events: none;
}

.challenge-content .big {
  font-family: var(--font-display);
  font-size: clamp(86px, 9vw, 128px);
  line-height: 0.9;
  letter-spacing: -5px;
  font-weight: 700;
  color: #fff;
}

.challenge-content .big .big-value {
  display: inline-block;
  min-width: 2ch;
  font-weight: 900;
}

.challenge-content .big span:not(.big-value) {
  font-weight: 400;
  margin-left: -0.06em;
}

.challenge-content .desc {
  font-size: 24px;
  line-height: 1.5;
  max-width: 280px;
  color: #fff;
}

.challenge-content .sub {
  font-size: 16px;
  line-height: 1.5;
  color: #f1f5f9;
}

.challenge-content .source {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(241, 245, 249, 0.5);
  font-style: italic;
}

.outcomes {
  background: #f8fafc;
  padding: 100px 0 60px;
}

.center-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.outcome-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.outcome-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 30px;
  min-height: 175px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.outcome-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(37, 60, 103, 0.08);
}

.outcome-number {
  width: 36px;
  height: 36px;
  border-radius: 48px;
  display: grid;
  place-items: center;
  background: rgba(255, 90, 16, 0.1);
  color: var(--orange);
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 16px;
}

.outcome-card h3 {
  font-family: var(--font-display);
  font-size: 16.8px;
  line-height: 1.35;
  font-weight: 700;
  color: #0a1628;
  margin-bottom: 8px;
}

.outcome-card p {
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  max-width: 30ch;
}

.trusted {
  padding-top: 50px;
  text-align: center;
}

.trusted h4 {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  line-height: 1;
}

.trusted-logos {
  margin-top: 20px;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  justify-items: center;
  opacity: 0.95;
}

.trusted-logos img {
  width: min(100%, 168px);
  max-height: 42px;
  object-fit: contain;
  filter: grayscale(0.12);
}

.trusted-logo-link {
  width: 100%;
  display: grid;
  place-items: center;
  opacity: 0.2;
  transition: opacity 0.22s ease;
}

.trusted-logo-link:hover,
.trusted-logo-link:focus-visible {
  opacity: 0.7;
}

.who {
  padding: 100px 0;
  background: #fff;
}

.who-layout {
  margin-top: 50px;
}

.who-panels {
  width: min(100%, 920px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 8px;
}

.who-panel {
  position: relative;
  min-height: 128px;
  border: 1px solid #f1f5f9;
  border-radius: 4px;
  overflow: hidden;
  background-color: #253c67;
  background-size: cover;
  background-position: 50% 50%;
  color: #fff;
  cursor: pointer;
  text-align: left;
  appearance: none;
  -webkit-appearance: none;
  padding: 28px 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 14px;
  transition: min-height 0.42s cubic-bezier(0.2, 0.7, 0.2, 1), max-height 0.42s cubic-bezier(0.2, 0.7, 0.2, 1), background-position 0.55s ease, box-shadow 0.25s ease;
}

.who-panel:hover {
  background-position: 50% 44%;
}

.who-panel[aria-expanded="false"]:hover {
  background-position: 50% 50%;
}

.who-panel.is-active:hover {
  background-position: 50% 50%;
}

.who-panel:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.8), 0 0 0 6px rgba(37, 60, 103, 0.28);
}

.who-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(37, 60, 103, 0.9);
  z-index: 1;
  transition: background 0.35s ease, opacity 0.35s ease;
}

.who-panel[data-panel="business"] {
  background-image: url("../img/who-its-for/business-leaders.jpg");
}

.who-panel[data-panel="risk"] {
  background-image: url("../img/who-its-for/risk-and-compliance.jpg");
}

.who-panel[data-panel="ops"] {
  background-image: url("../img/who-its-for/operations-and-product.jpg");
}

.who-panel[data-panel="proc"] {
  background-image: url("../img/who-its-for/procurement-and-it.jpg");
}

.who-panel:not(.is-active)::before {
  background: rgba(37, 60, 103, 0.9); /* 90% overlay => ~10% image visibility */
  opacity: 1;
}

.who-panel[aria-expanded="false"]::before {
  background: rgba(37, 60, 103, 0.95);
  opacity: 1;
}

.who-panel.is-active {
  min-height: 450px;
  max-height: 450px;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.18);
}

.who-panel:not(.is-active) {
  min-height: 112px;
  max-height: 112px;
  justify-content: center;
  padding: 0 40px;
  gap: 0;
}

.who-panel.is-active::before {
  background: linear-gradient(0deg, rgba(37, 60, 103, 0.76) 0%, rgba(37, 60, 103, 0.42) 55%, rgba(37, 60, 103, 0.14) 100%);
  opacity: 1;
}

.who-panel-title {
  display: block;
  position: relative;
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.08;
  font-weight: 700;
  white-space: normal;
  z-index: 2;
  max-width: 16ch;
  margin: 0;
}

.who-panel-text {
  display: block;
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: 22px;
  line-height: 1.42;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transform: translateY(14px);
  transition: opacity 0.28s ease, max-height 0.28s ease, transform 0.28s ease;
  text-wrap: balance;
  pointer-events: none;
  max-width: 40ch;
}

.who-panel:not(.is-active) .who-panel-title {
  font-size: 24px;
  line-height: 1.08;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
}

.who-panel.is-active .who-panel-text {
  opacity: 1;
  max-height: 180px;
  transform: none;
}

.timeline {
  padding: 100px 0 80px;
  background: #253c67;
  color: #fff;
}

.timeline .section-title,
.timeline .section-lead {
  color: #fff;
}

.timeline-track {
  margin: 56px auto 0;
  width: min(100%, 760px);
  position: relative;
  display: grid;
  gap: 74px;
  padding: 8px 0;
}

.timeline-track::before {
  content: "";
  position: absolute;
  left: calc(50% - 1px);
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255, 255, 255, 0.08);
}

.tl-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 40px minmax(0, 1fr);
  align-items: start;
  gap: 20px;
  min-height: 102px;
}

.tl-dot {
  width: 40px;
  height: 40px;
  border-radius: 48px;
  background: #334875;
  border: 5px solid #253c67;
  color: var(--orange);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  display: grid;
  place-items: center;
  margin: 0 auto;
  z-index: 2;
  font-family: "Albert Sans", sans-serif;
}

.tl-date {
  min-height: 40px;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.5;
  line-height: 1;
  white-space: nowrap;
  font-family: var(--font-body);
}

.tl-content h3 {
  font-family: var(--font-display);
  font-size: 16.8px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 8px;
  color: #fff;
}

.tl-content p {
  margin: 0;
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
  max-width: 330px;
}

.tl-row.left .tl-content {
  text-align: right;
  justify-self: end;
}

.tl-row.left .tl-date {
  text-align: left;
  justify-self: start;
}

.tl-row.right .tl-content {
  text-align: left;
  justify-self: start;
}

.tl-row.right .tl-date {
  text-align: right;
  justify-self: end;
}

.timeline-action {
  margin-top: 36px;
  text-align: center;
}

.partnership {
  padding: 100px 0;
  background: #fff;
}

.partner-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 50px;
}

.partner-card {
  background: #253c67;
  border-radius: 20px;
  height: 585px;
  overflow: hidden;
  position: relative;
  color: #fff;
  transform-style: preserve-3d;
  transition: transform 0.25s ease;
}

.partner-card::before,
.partner-card::after {
  content: "";
  position: absolute;
  width: 349.264px;
  height: 140px;
  background-size: cover;
  pointer-events: none;
  opacity: 1;
}

.partner-card.tangible::before {
  left: 0;
  top: 20px;
  background-image: url("../img/white-arrow-right.png");
}

.partner-card.tangible::after {
  left: 116px;
  top: 160px;
  transform: rotate(180deg) scaleY(-1);
  background-image: url("../img/white-arrow-right.png");
}

.partner-card.fintek::before {
  left: 89px;
  top: 309px;
  background-image: url("../img/white-arrow-right.png");
}

.partner-card.fintek::after {
  left: 205px;
  top: 449px;
  transform: rotate(180deg) scaleY(-1);
  background-image: url("../img/white-arrow-right.png");
}

.partner-content {
  position: relative;
  z-index: 1;
  padding: 30px 40px 45px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}

.partner-logo {
  height: 210px;
  border-radius: 4px;
  background: #fff;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.partner-logo img {
  max-width: 78%;
  max-height: 80%;
  object-fit: contain;
}

.partner-card.tangible .partner-logo img {
  width: 274px;
  height: auto;
}

.partner-content p {
  font-size: 20px;
  line-height: 1.5;
  color: #fff;
  margin: 0;
}

.partner-content p strong {
  font-weight: 700;
}

.partner-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 4px;
}

.partner-list li {
  position: relative;
  padding-left: 28px;
  font-size: 16px;
  line-height: 1.9;
  color: #fff;
}

.partner-list li::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 0;
  top: 8px;
  border-radius: 9px;
  background: rgba(16, 185, 129, 0.1) url("https://www.figma.com/api/mcp/asset/84e8ea7c-5e4f-4664-a06f-fa50654985e4") center/12px 12px no-repeat;
}

.cta {
  padding: 100px 0;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}

.cta-decoration {
  position: absolute;
  right: -20px;
  bottom: -10px;
  width: 502px;
  height: 346px;
  background: url("https://www.figma.com/api/mcp/asset/c2b28c58-4ad5-4e39-a114-37b59d32c970") center/cover no-repeat;
  pointer-events: none;
  opacity: 0.65;
}

.cta-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 50px;
  align-items: start;
}

.cta-points {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
}

.cta-point {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
}

.cta-point::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 9px;
  background: rgba(16, 185, 129, 0.1) url("https://www.figma.com/api/mcp/asset/3120b3d9-7544-4f80-b268-7ddf75db41a3") center/12px 12px no-repeat;
  flex: 0 0 18px;
}

.waitlist {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(37, 60, 103, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(5px);
  padding: 30px;
}

.waitlist h3 {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.1;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 24px;
}

.waitlist-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-family: var(--font-display);
  font-size: 12.8px;
  line-height: 1.7;
  font-weight: 600;
  color: rgba(37, 60, 103, 0.7);
}

.field input {
  width: 100%;
  height: 49px;
  border-radius: 10px;
  border: 1px solid rgba(37, 60, 103, 0.1);
  background: rgba(255, 255, 255, 0.06);
  padding: 0 16px;
  font-size: 15.2px;
  color: #334f7e;
  outline: none;
  font-family: var(--font-display);
}

.field input::placeholder {
  color: #64748b;
}

.field input:focus {
  border-color: rgba(255, 90, 16, 0.45);
  box-shadow: 0 0 0 3px rgba(255, 90, 16, 0.12);
}

.waitlist-actions {
  margin-top: 20px;
  display: grid;
  gap: 2px;
}

.waitlist-actions .btn-primary {
  width: 100%;
}

.waitlist-note {
  text-align: center;
  font-family: var(--font-display);
  font-size: 10px;
  line-height: 2.1;
  color: #64748b;
}

.waitlist-error {
  text-align: center;
  font-family: var(--font-display);
  font-size: 11px;
  line-height: 1.4;
  color: #dc2626;
  min-height: 0;
  margin-top: 8px;
}

.waitlist-success {
  text-align: center;
  font-family: var(--font-display);
  font-size: 11px;
  line-height: 1.4;
  color: #16a34a;
  min-height: 0;
}

.footer {
  background: #253c67;
  padding: 80px 0;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: flex-start;
}

.footer-branding {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: min(100%, 460px);
}

.footer-wordmark {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(56px, 7vw, 72px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}

.footer-wordmark-ghost {
  visibility: hidden;
  pointer-events: none;
  user-select: none;
}

.footer-copy {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.5;
  color: #a8b1c2;
  max-width: 460px;
}

.footer-copy strong {
  color: #fff;
  font-weight: 700;
}

.footer-copy a {
  color: inherit;
  text-decoration: none;
}

.footer-links-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-end;
  text-align: right;
}

.footer-links {
  display: grid;
  gap: 12px;
  justify-items: start;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
}

.social-link:hover {
  text-decoration: underline;
}

.social-link img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.footer-bottom {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  color: #a8b1c2;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
}

.footer-bottom-copy {
  margin: 0;
  color: #a8b1c2;
}

.footer-bottom-brand {
  color: #fff;
  text-decoration: none;
}

.footer-policy-link {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

[data-tilt] {
  will-change: transform;
  transform-style: preserve-3d;
  transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}

[data-tilt-plane] {
  will-change: transform;
  transform-style: preserve-3d;
  transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}

@media (max-width: 1260px) {
  :root {
    --strip-gap: 88px;
  }

  .top-nav {
    gap: 24px;
    font-size: 15px;
  }

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

  .footer-main {
    gap: 48px;
  }

  .trusted-logos {
    gap: 12px;
  }
}

@media (max-width: 1050px) {
  .site-header {
    height: auto;
    min-height: var(--nav-height);
  }

  .site-header .bar {
    padding-top: 10px;
    padding-bottom: 10px;
    flex-direction: column;
    align-items: flex-start;
    height: auto;
  }

  .top-nav {
    width: 100%;
    justify-content: space-between;
    gap: 14px;
  }

  .hero {
    padding-top: 80px;
  }

  .hero-grid,
  .challenge-grid,
  .partner-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .footer-main {
    flex-direction: column;
    gap: 24px;
  }

  .footer-links-wrap {
    gap: 12px;
  }

  .footer-wordmark-ghost {
    display: none;
  }

  .hero-network {
    margin-top: 12px;
  }

  .challenge-card,
  .partner-card {
    min-height: 520px;
  }

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

  .who-panels {
    gap: 6px;
  }

  .who-panel {
    min-height: 108px;
    padding: 22px 28px 24px;
    gap: 10px;
  }

  .who-panel.is-active {
    min-height: 450px;
    max-height: 450px;
  }

  .who-panel:not(.is-active) {
    min-height: 110px;
    max-height: 110px;
    justify-content: center;
    padding: 0 28px;
    gap: 0;
  }

  .who-panel-title {
    font-size: 24px;
  }

  .who-panel:not(.is-active) .who-panel-title {
    font-size: 24px;
  }

  .who-panel-text {
    font-size: 18px;
  }

  .timeline-track {
    width: 100%;
  }

  .tl-row {
    grid-template-columns: minmax(0, 1fr) 42px;
    gap: 18px;
  }

  .timeline-track::before {
    left: calc(100% - 21px);
  }

  .tl-row .tl-dot {
    grid-column: 2;
  }

  .tl-row .tl-date,
  .tl-row .tl-content,
  .tl-row.left .tl-date,
  .tl-row.left .tl-content,
  .tl-row.right .tl-date,
  .tl-row.right .tl-content {
    grid-column: 1;
    text-align: left;
  }

  .tl-row .tl-date {
    margin-bottom: 8px;
  }

  .tl-row .tl-content {
    margin-top: -8px;
  }

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

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

@media (max-width: 760px) {
  .frame {
    width: min(100% - 20px, var(--max));
  }

  .brand {
    align-items: center;
  }

  .brand-x {
    width: 30px;
    height: 30px;
  }

  .brand-fintek {
    width: 88px;
    height: 34px;
  }

  .top-nav {
    font-size: 14px;
  }

  .site-header .bar {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .top-nav {
    width: 100%;
    margin-left: 0;
    justify-content: flex-start;
    gap: 0;
  }

  .top-nav a:not(.btn) {
    display: none;
  }

  .top-nav .btn {
    width: 100%;
    justify-content: center;
    padding-inline: 16px;
  }

  .challenge-card,
  .partner-card {
    min-height: 400px;
  }

  .partner-card {
    height: auto;
  }

  .hero-network {
    width: min(100%, 360px);
    height: 520px;
    margin-top: 24px;
  }

  .float-card {
    padding: 10px 12px;
    max-width: min(calc(100% - 8px), 255px);
  }

  .float-card strong {
    font-size: 13px;
  }

  .float-card small {
    font-size: 10px;
  }

  .float-card img {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .float-card > div {
    gap: 6px;
  }

  .partner-strip {
    padding-inline: 0;
  }

  .partner-marquee {
    padding-block: 18px;
  }

  .timeline-track {
    width: 100%;
    gap: 42px;
    margin-top: 44px;
    padding: 0;
  }

  .timeline-track::before {
    left: 27px;
    width: 2px;
    background: rgba(255, 255, 255, 0.12);
  }

  .tl-row,
  .tl-row.left,
  .tl-row.right {
    grid-template-columns: 56px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 18px;
    row-gap: 10px;
    min-height: 0;
    align-items: start;
  }

  .tl-row .tl-dot {
    grid-column: 1;
    grid-row: 1;
    width: 56px;
    height: 56px;
    border-width: 7px;
    font-size: 18px;
    margin: 0;
    justify-self: center;
  }

  .tl-row .tl-date,
  .tl-row.left .tl-date,
  .tl-row.right .tl-date {
    grid-column: 2;
    grid-row: 1;
    min-height: 56px;
    justify-self: start;
    text-align: left;
    margin: 0;
    font-size: 14px;
    letter-spacing: 1.8px;
    opacity: 0.52;
  }

  .tl-row .tl-content,
  .tl-row.left .tl-content,
  .tl-row.right .tl-content {
    grid-column: 2;
    grid-row: 2;
    justify-self: start;
    text-align: left;
    margin-top: 0;
    max-width: none;
  }

  .challenge,
  .outcomes,
  .who,
  .timeline,
  .partnership,
  .cta,
  .footer {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .outcome-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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

  .trusted-logos {
    gap: 14px 18px;
  }

  .trusted-logos img {
    max-height: 34px;
    width: min(100%, 138px);
  }

  .who-panels {
    display: grid;
    height: auto;
    gap: 8px;
  }

  .who-panel,
  .who-panel.is-active {
    flex-basis: auto;
    min-height: 208px;
    width: 100%;
    padding: 18px 18px 20px;
    cursor: default;
  }

  .who-panel::before,
  .who-panel.is-active::before {
    opacity: 1;
  }

  .who-panel-title,
  .who-panel.is-active .who-panel-title {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    transform: none;
    width: auto;
    font-size: 24px;
    line-height: 1.08;
    white-space: normal;
    margin: 0 0 12px;
  }

  .who-panel-text,
  .who-panel.is-active .who-panel-text {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    font-size: 16px;
    line-height: 1.45;
    opacity: 1;
    max-height: none;
    overflow: visible;
    transform: none;
    display: block;
  }

  .who-panel:not(.is-active) .who-panel-text {
    display: block;
  }

  .float-1 {
    top: 1%;
    right: 0;
  }

  .float-2 {
    left: -2%;
    top: 57%;
  }

  .float-3 {
    right: -1%;
    top: 81%;
  }

  .challenge-content .big {
    font-size: 96px;
  }

  .challenge-content .desc {
    font-size: 16px;
  }

  .tl-content h3 {
    font-size: clamp(24px, 7vw, 34px);
    line-height: 1.06;
    margin-bottom: 14px;
  }

  .tl-content p {
    font-size: clamp(16px, 4.3vw, 20px);
    line-height: 1.45;
    max-width: 24ch;
  }

  .cta-points {
    gap: 12px;
  }

  .footer-main {
    gap: 24px;
  }

  .footer-bottom {
    display: grid;
    gap: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .net-lines line {
    opacity: 1;
    stroke-dashoffset: 0;
  }

  .net-node {
    opacity: 1;
  }
}
