:root {
  --blue-950: #062344;
  --blue-900: #082c52;
  --blue-800: #0d3a63;
  --blue-700: #155582;
  --blue-600: #1d74ad;
  --blue-500: #3198d5;
  --blue-300: #88d9ff;
  --blue-100: #eaf6ff;
  --ink: #082344;
  --muted: #59728f;
  --soft: #f5fbff;
  --line: rgba(13, 58, 99, 0.16);
  --white: #ffffff;
  --cyan: #88d9ff;
  --shadow: 0 16px 36px rgba(6, 35, 68, 0.08);
  --shadow-soft: 0 8px 20px rgba(6, 35, 68, 0.05);
  --radius-xl: 8px;
  --radius-lg: 8px;
  --radius-md: 8px;
  --max: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  font-family:
    "Avenir Next", "Helvetica Neue", Helvetica, Arial, ui-sans-serif, system-ui,
    sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  background:
    linear-gradient(180deg, #f5fbff 0%, #ffffff 30%, #f7fbfd 100%);
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
}

.shell {
  width: min(var(--max), calc(100% - 80px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(13, 58, 99, 0.08);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  width: 160px;
  padding: 0;
}

.brand img {
  width: 100%;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #3c5a79;
  font-size: 14px;
  font-weight: 500;
}

.nav-links a {
  transition: color 180ms ease;
}

.nav-links a:hover {
  color: var(--blue-700);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.text-link {
  color: var(--blue-700);
  font-size: 14px;
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

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

.btn-primary {
  color: #fff;
  background: var(--blue-900);
  box-shadow: 0 12px 24px rgba(6, 35, 68, 0.18);
}

.btn-secondary {
  color: var(--blue-800);
  background: #fff;
  border-color: rgba(13, 58, 99, 0.16);
  box-shadow: 0 8px 20px rgba(6, 35, 68, 0.06);
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--blue-800);
  background: #fff;
  border: 1px solid rgba(13, 58, 99, 0.16);
  border-radius: 8px;
}

main {
  overflow: hidden;
}

.hero {
  position: relative;
  padding: 112px 0 104px;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  width: 760px;
  height: 760px;
  right: -350px;
  top: -420px;
  z-index: -1;
  border-radius: 999px;
  background: radial-gradient(
    circle at 35% 35%,
    rgba(202, 235, 255, 0.86),
    rgba(49, 152, 213, 0.11) 48%,
    transparent 70%
  );
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(560px, 1.08fr);
  gap: 64px;
  align-items: start;
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-label::before {
  content: "";
  width: 38px;
  height: 3px;
  border-radius: 99px;
  background: var(--blue-500);
}

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

h1 {
  margin: 18px 0 20px;
  max-width: 760px;
  font-size: clamp(52px, 5.4vw, 84px);
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 500;
}

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

.hero-copy {
  max-width: 660px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.66;
}

.hero-copy strong {
  color: var(--blue-700);
}

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

.hero-note {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  max-width: 560px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.52;
}

.note-dot {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  border: 2px solid #88d9ff;
  border-radius: 50%;
  position: relative;
}

.note-dot::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 3px;
  width: 2px;
  height: 4px;
  border-radius: 2px;
  background: var(--blue-600);
  box-shadow: 0 6px 0 var(--blue-600);
}

.liquidity-visual {
  position: relative;
  min-height: 492px;
  margin-top: 54px;
  padding: 28px 32px 20px;
  border: 1px solid rgba(13, 58, 99, 0.14);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 50% 58%, rgba(49, 152, 213, 0.11), transparent 28rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 251, 0.94));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.liquidity-visual::before {
  content: "";
  position: absolute;
  inset: auto -12% -34% -12%;
  height: 45%;
  background:
    linear-gradient(rgba(29, 116, 173, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 116, 173, 0.07) 1px, transparent 1px);
  background-size: 38px 38px;
  transform: perspective(480px) rotateX(62deg);
  transform-origin: top center;
  opacity: 0.58;
}

.diagram-top {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 18px;
}

.diagram-title b {
  display: block;
  color: var(--ink);
  font-size: 16px;
}

.diagram-title span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.diagram-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  color: var(--blue-700);
  background: #edf8ff;
  border: 1px solid rgba(49, 152, 213, 0.2);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.diagram-status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-700);
  box-shadow: 0 0 0 4px rgba(49, 152, 213, 0.14);
}

.flow-white {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 372px;
}

.flow-path {
  fill: none;
  stroke: var(--blue-600);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 18 14;
  animation: dashFlow 1.7s linear infinite;
  filter: drop-shadow(0 5px 10px rgba(8, 41, 79, 0.12));
}

.flow-path.soft {
  stroke: #80bde7;
  stroke-width: 2;
  stroke-dasharray: 12 14;
  animation-duration: 2s;
}

.flow-node {
  fill: rgba(255, 255, 255, 0.94);
  stroke: #c9e4f6;
  stroke-width: 2;
  filter: drop-shadow(0 18px 26px rgba(6, 35, 68, 0.1));
}

.flow-node-blue {
  fill: url(#finovaBlue);
  filter: drop-shadow(0 18px 28px rgba(8, 41, 79, 0.14));
}

.flow-label {
  fill: var(--blue-900);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0;
}

.flow-small {
  fill: #526780;
  font-size: 10px;
  font-weight: 800;
}

.flow-orbit {
  transform-box: fill-box;
  transform-origin: center;
  animation: spin 20s linear infinite;
}

.flow-card {
  animation: softFloat 5s ease-in-out infinite;
}

.flow-card:nth-of-type(2) {
  animation-delay: 0.35s;
}

.flow-card:nth-of-type(3) {
  animation-delay: 0.7s;
}

.pulse-ring {
  fill: none;
  stroke: #a9ddff;
  stroke-width: 2;
  transform-origin: center;
  animation: pulse 2.8s ease-out infinite;
}

.signal-dot {
  animation: floatDot 4s ease-in-out infinite;
}

.flow-mobile {
  display: none;
}

@media (max-width: 720px) {
  .flow-white {
    display: none;
  }

  .flow-mobile {
    display: block;
    width: 100%;
    height: auto;
  }
}

.fw-diagram {
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: block;
}

.fw-ring {
  fill: none;
  transform-box: fill-box;
  transform-origin: center;
  animation: spin 32s linear infinite;
}

.fw-ring.reverse {
  animation: spin 18s linear infinite reverse;
}

.fw-core {
  transform-box: fill-box;
  transform-origin: center;
  animation: fwCorePulse 3.6s ease-in-out infinite;
}

.fw-label {
  fill: var(--blue-900);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 2.2px;
}

.fw-core-title {
  fill: #ffffff;
  font-size: 33px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.fw-core-sub {
  fill: #bfe6ff;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 6px;
}

@keyframes fwCorePulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}

@keyframes dashFlow {
  to {
    stroke-dashoffset: -64;
  }
}

@keyframes softFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes pulse {
  0% {
    opacity: 0.8;
    transform: scale(0.88);
  }
  80%,
  100% {
    opacity: 0;
    transform: scale(1.36);
  }
}

@keyframes floatDot {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.72;
  }
  50% {
    transform: translateY(-9px);
    opacity: 1;
  }
}

.trust-row {
  padding: 8px 0 76px;
}

.trust-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #70839a;
  font-size: 13px;
}

.trust-inner::before,
.trust-inner::after {
  content: "";
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, rgba(49, 152, 213, 0.24));
}

.trust-inner::after {
  transform: scaleX(-1);
}

.trust-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 13px 30px;
}

.trust-items span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.tiny-check {
  width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--blue-700);
  border: 1px solid #cde8f8;
  background: #fff;
  font-size: 10px;
  font-style: normal;
}

section {
  padding: 118px 0;
  scroll-margin-top: 92px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.5fr);
  gap: 52px;
  align-items: end;
  margin-bottom: 62px;
}

h2 {
  margin-top: 14px;
  max-width: 790px;
  font-size: clamp(32px, 3.2vw, 52px);
  line-height: 1.1;
  letter-spacing: 0;
  font-weight: 500;
}

.section-intro {
  color: var(--muted);
  line-height: 1.72;
  font-size: 18px;
}

.movement {
  background: #fff;
  border-top: 1px solid rgba(13, 58, 99, 0.06);
  border-bottom: 1px solid rgba(13, 58, 99, 0.06);
}

.section-center {
  max-width: 900px;
  margin: 0 auto 76px;
  text-align: center;
}

.section-center .section-label {
  justify-content: center;
}

.section-center h2 {
  margin-left: auto;
  margin-right: auto;
}

.section-center .section-intro {
  max-width: 760px;
  margin: 18px auto 0;
}

.movement-outro,
.framework-outro,
.journey-outro {
  margin-top: 56px;
  margin-bottom: 0;
}

.journey-outro {
  margin-top: 44px;
}

.quote-card strong {
  color: var(--blue-900);
  font-weight: 600;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 72px 64px;
}

.solution-card {
  display: grid;
  align-content: start;
  gap: 18px;
}

.solution-thumb {
  width: 156px;
  height: 156px;
  overflow: hidden;
  border: 1px solid rgba(13, 58, 99, 0.13);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(6, 35, 68, 0.06);
}

.solution-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solution-card h3 {
  color: #151c24;
  font-size: 29px;
  line-height: 1.18;
  font-weight: 400;
}

.solution-card p {
  max-width: 350px;
  color: #303a45;
  font-size: 18px;
  line-height: 1.58;
}

.solution-link {
  width: max-content;
  margin-top: 8px;
  color: #fff;
  background: var(--blue-900);
  box-shadow: 0 12px 24px rgba(6, 35, 68, 0.18);
}

.movement-grid {
  display: grid;
  grid-template-columns: minmax(380px, 0.95fr) minmax(0, 1.05fr);
  gap: 58px;
  align-items: center;
}

.asset-orbit {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.asset-orbit::before {
  content: "";
  position: absolute;
  width: 390px;
  height: 390px;
  border: 2px dashed rgba(49, 152, 213, 0.34);
  border-radius: 50%;
  animation: spin 28s linear infinite;
}

.asset-orbit::after {
  content: "";
  position: absolute;
  width: 278px;
  height: 278px;
  border: 2px solid rgba(49, 152, 213, 0.13);
  border-radius: 50%;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.orbit-center {
  position: relative;
  z-index: 2;
  width: 150px;
  height: 150px;
  border-radius: 8px;
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: center;
  gap: 9px;
  padding: 20px;
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0;
  background: linear-gradient(145deg, #1d74ad, #082c52);
  box-shadow:
    0 18px 38px rgba(6, 35, 68, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.orbit-mark {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.15);
  font-size: 34px;
}

.asset-node {
  position: absolute;
  z-index: 3;
  width: 142px;
  min-height: 128px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid rgba(49, 152, 213, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 24px rgba(6, 35, 68, 0.07);
  color: #8193a9;
  font-weight: 600;
  text-align: center;
}

.asset-node strong {
  color: var(--blue-900);
  font-size: 25px;
  line-height: 1;
}

.asset-node span {
  font-size: 15px;
}

.coin-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(6, 35, 68, 0.08);
}

.coin-icon.btc {
  background: linear-gradient(135deg, #4fb8f5, #155582);
}

.coin-icon.eth {
  background: linear-gradient(135deg, #7dd6ff, #0d3a63);
}

.coin-icon.sol {
  background: linear-gradient(135deg, #2f95d2, #0d3a63);
  font-size: 19px;
}

.coin-icon.usdc {
  background: linear-gradient(135deg, #3198d5, #082c52);
  font-size: 26px;
}

.asset-node.one {
  top: 24px;
  left: 30px;
}

.asset-node.two {
  top: 66px;
  right: 18px;
}

.asset-node.three {
  bottom: 34px;
  left: 16px;
}

.asset-node.four {
  bottom: 12px;
  right: 36px;
}

.feature-stack {
  display: grid;
  gap: 16px;
}

.feature-row {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  align-items: center;
  padding: 23px 26px;
  border: 1px solid rgba(13, 58, 99, 0.13);
  border-radius: 8px;
  background: #fff;
  box-shadow: none;
}

.feature-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--blue-700);
  background: #edf8ff;
  border: 1px solid #cde8f8;
}

.feature-row b {
  display: block;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.25;
  margin-bottom: 6px;
  font-weight: 500;
}

.feature-row p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}

.framework-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
  gap: 58px;
  align-items: center;
}

.framework-section {
  background: linear-gradient(180deg, #f5fbff 0%, #ffffff 100%);
}

.framework-showcase {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  gap: 44px;
  align-items: center;
}

.framework-list {
  border-top: 2px solid var(--blue-500);
}

.framework-mission {
  display: grid;
  align-content: center;
  gap: 18px;
  min-height: 360px;
  padding: 42px 34px;
  border-top: 2px solid var(--blue-500);
  border-bottom: 2px solid var(--blue-500);
  background: #dff4ff;
}

.framework-mission p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.66;
}

.framework-mission p:first-child {
  color: var(--blue-900);
  font-size: 30px;
  line-height: 1.2;
  font-weight: 500;
}

.framework-item {
  display: grid;
  gap: 14px;
  padding: 31px 28px;
  border-bottom: 2px solid var(--blue-500);
}

.framework-item.is-active {
  background: #dff4ff;
}

.framework-item h3 {
  color: var(--blue-700);
  font-size: 31px;
  line-height: 1.18;
  font-weight: 400;
}

.framework-item p {
  color: #2f3e4d;
  font-size: 18px;
  line-height: 1.58;
}

.framework-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  color: var(--blue-700);
  font-size: 16px;
  font-weight: 600;
}

.framework-media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(13, 58, 99, 0.12);
  border-radius: var(--radius-xl);
  background: linear-gradient(160deg, #ffffff 0%, #eaf6ff 100%);
  box-shadow: 0 12px 28px rgba(6, 35, 68, 0.06);
}

.framework-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.copy-stack {
  display: grid;
  gap: 20px;
}

.lead {
  color: var(--blue-700);
  font-size: 22px;
  line-height: 1.55;
  font-weight: 400;
}

.muted {
  color: var(--muted);
  line-height: 1.65;
}

.os-card {
  position: relative;
  min-height: 560px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(13, 58, 99, 0.14);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 50% 54%, rgba(49, 152, 213, 0.11), transparent 23rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 251, 0.94));
  box-shadow: 0 12px 28px rgba(6, 35, 68, 0.06);
}

.os-card svg {
  width: 100%;
  height: 500px;
}

.control-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.control-pill {
  min-height: 92px;
  padding: 16px;
  border: 1px solid rgba(13, 58, 99, 0.13);
  border-radius: 8px;
  background: #fff;
  box-shadow: none;
}

.control-pill span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  color: var(--blue-700);
  background: #edf8ff;
  border: 1px solid #cde8f8;
  border-radius: 8px;
  font-weight: 700;
}

.control-pill strong {
  display: block;
  font-size: 15px;
}

.journey {
  background: linear-gradient(180deg, #ffffff, #f5fbff);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.timeline-card,
.principle-card,
.process-step {
  border: 1px solid rgba(13, 58, 99, 0.13);
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-lg);
  box-shadow: none;
}

.timeline-card {
  min-height: 214px;
  padding: 26px;
  display: grid;
  align-content: space-between;
  gap: 24px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.timeline-card:hover {
  transform: translateY(-4px);
  border-color: rgba(49, 152, 213, 0.28);
  box-shadow: 0 14px 28px rgba(6, 35, 68, 0.06);
}

.timeline-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
}

.timeline-number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--blue-700);
  background: #edf8ff;
  border: 1px solid #cde8f8;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
}

.timeline-icon {
  position: relative;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(49, 152, 213, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 30% 26%, rgba(136, 217, 255, 0.36), transparent 42%),
    #f5fbff;
}

.timeline-icon::before,
.timeline-icon::after {
  content: "";
  position: absolute;
  border-radius: 99px;
  background: var(--blue-600);
}

.market-icon::before {
  left: 13px;
  top: 17px;
  width: 26px;
  height: 3px;
}

.market-icon::after {
  left: 18px;
  top: 29px;
  width: 16px;
  height: 3px;
  box-shadow: -5px 0 0 #88d9ff, 5px 0 0 #88d9ff;
}

.strategy-icon::before {
  left: 14px;
  top: 27px;
  width: 25px;
  height: 3px;
  transform: rotate(-36deg);
}

.strategy-icon::after {
  right: 12px;
  top: 14px;
  width: 10px;
  height: 10px;
  border-top: 3px solid var(--blue-600);
  border-right: 3px solid var(--blue-600);
  background: transparent;
  border-radius: 0;
}

.lending-icon::before {
  left: 14px;
  bottom: 15px;
  width: 24px;
  height: 12px;
  border: 3px solid var(--blue-600);
  border-top: 0;
  background: transparent;
  border-radius: 0 0 12px 12px;
}

.lending-icon::after {
  left: 17px;
  top: 15px;
  width: 18px;
  height: 18px;
  border: 3px solid #88d9ff;
  background: transparent;
}

.os-icon::before {
  left: 14px;
  top: 14px;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: linear-gradient(145deg, var(--blue-600), var(--blue-900));
}

.os-icon::after {
  content: "F";
  left: 0;
  top: 0;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  background: transparent;
}

.timeline-card small {
  display: block;
  color: #7a93ad;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.timeline-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 23px;
  line-height: 1.2;
  font-weight: 500;
}

.timeline-card p,
.principle-card p,
.process-step p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
}

.principle-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.principle-card {
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 78px;
}

.principle-card strong {
  display: block;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 600;
}

.principle-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  color: var(--blue-700);
  background: #edf8ff;
  border: 1px solid #cde8f8;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 800;
}

.operations {
  position: relative;
  color: #fff;
  background: var(--blue-950);
  overflow: hidden;
}

.operations::before {
  content: "";
  position: absolute;
  right: -160px;
  top: -240px;
  width: 630px;
  height: 630px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(49, 152, 213, 0.22), transparent 66%);
}

.operations .shell {
  position: relative;
}

.operations .section-label {
  color: #88d9ff;
}

.operations .section-label::before {
  background: #88d9ff;
}

.operations h2 {
  color: #fff;
}

.operations .section-intro {
  color: #c9e4f6;
}

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

.operations-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.78fr) minmax(0, 1.22fr);
  gap: 78px;
  align-items: start;
}

.operations-copy {
  position: sticky;
  top: 112px;
}

.operations-copy h2 {
  margin-bottom: 28px;
}

.operation-list {
  position: relative;
  display: grid;
  gap: 16px;
}

.operation-step {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 22px 24px;
  border: 1px solid rgba(136, 217, 255, 0.18);
  border-radius: 8px;
  background: rgba(26, 72, 112, 0.34);
  backdrop-filter: blur(6px);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.operation-step:hover {
  transform: translateX(4px);
  border-color: rgba(136, 217, 255, 0.32);
  background: rgba(26, 72, 112, 0.54);
}

.operation-no {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #88d9ff;
  background: rgba(136, 217, 255, 0.1);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
}

.operation-step h3 {
  margin: 0 0 7px;
  color: #fff;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 600;
}

.operation-step p {
  max-width: 620px;
  color: #c9e4f6;
  font-size: 16px;
  line-height: 1.58;
}

.operation-step .flow-arrow {
  margin-top: 12px;
  color: #88d9ff;
  font-size: 22px;
  line-height: 1;
  animation: arrowDrop 1.8s ease-in-out infinite;
}

.operation-summary {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(136, 217, 255, 0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(26, 72, 112, 0.42);
}

.operation-metric {
  padding: 24px;
  border-right: 1px solid rgba(136, 217, 255, 0.18);
}

.operation-metric:last-child {
  border-right: 0;
}

.operation-metric strong {
  display: block;
  color: #88d9ff;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 600;
}

.operation-metric span {
  display: block;
  margin-top: 8px;
  color: #c9e4f6;
  font-size: 13px;
  line-height: 1.45;
}

.process-step {
  position: relative;
  min-height: 206px;
  padding: 26px;
  overflow: hidden;
  color: #d8edf9;
  border-color: rgba(136, 217, 255, 0.18);
  background: rgba(26, 72, 112, 0.66);
  backdrop-filter: blur(6px);
}

.process-step .step-no {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  color: #88d9ff;
  background: rgba(136, 217, 255, 0.1);
  font-size: 12px;
  font-weight: 700;
}

.process-step h3 {
  margin: 28px 0 9px;
  color: #fff;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 600;
}

.process-step p {
  color: #c9e4f6;
}

.settlement-panel {
  grid-column: 1 / -1;
  width: 100%;
  margin: 46px auto 0;
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) minmax(0, 1.05fr);
  gap: 52px;
  padding: 52px 58px;
  border: 1px solid rgba(136, 217, 255, 0.18);
  border-radius: var(--radius-lg);
  background: rgba(26, 72, 112, 0.66);
}

.settlement-panel h3 {
  color: #fff;
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 1.12;
  font-weight: 500;
}

.settlement-panel p {
  color: #c9e4f6;
  line-height: 1.68;
}

.settlement-panel strong {
  color: #88d9ff;
}

@keyframes arrowDrop {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.72;
  }
  50% {
    transform: translateY(6px);
    opacity: 1;
  }
}

.future-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
  gap: 58px;
  align-items: center;
}

.infrastructure-card {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border: 1px solid rgba(13, 58, 99, 0.14);
  border-radius: var(--radius-xl);
  background: #eaf6ff;
  box-shadow: 0 12px 28px rgba(6, 35, 68, 0.06);
}

.infrastructure-card img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
}

.infrastructure-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 35, 68, 0.18), transparent 42%),
    linear-gradient(180deg, transparent 58%, rgba(6, 35, 68, 0.32));
  pointer-events: none;
}

.photo-caption {
  position: absolute;
  left: 24px;
  bottom: 22px;
  z-index: 2;
  max-width: 320px;
  color: #fff;
}

.photo-caption strong {
  display: block;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 600;
}

.photo-caption span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  line-height: 1.45;
}

.quote-card {
  margin: 26px 0;
  padding-left: 22px;
  border-left: 4px solid var(--blue-500);
  color: var(--blue-700);
  font-size: 23px;
  line-height: 1.45;
  font-weight: 400;
}

.future-faq-section {
  position: relative;
  color: var(--ink);
  background: #fff;
  border-top: 1px solid rgba(13, 58, 99, 0.06);
  overflow: hidden;
}

.future-faq-section .shell {
  position: relative;
}

.future-faq-section .section-label {
  color: var(--blue-700);
}

.future-faq-section .section-label::before {
  background: var(--blue-500);
}

.future-faq-section h2 {
  color: var(--ink);
}

.future-faq-section .section-intro {
  color: var(--muted);
}

.future-faq-list {
  max-width: 940px;
  margin: 0 auto;
  border-top: 1px solid rgba(13, 58, 99, 0.12);
}

.future-faq-item {
  border-bottom: 1px solid rgba(13, 58, 99, 0.12);
}

.future-faq-item summary {
  display: grid;
  grid-template-columns: 1fr 46px;
  gap: 20px;
  align-items: center;
  min-height: 88px;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  font-size: clamp(20px, 1.9vw, 27px);
  line-height: 1.2;
  font-weight: 500;
}

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

.future-faq-item summary:focus-visible {
  outline: 2px solid var(--blue-500);
  outline-offset: 6px;
  border-radius: 8px;
}

.faq-plus {
  position: relative;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid #cde8f8;
  border-radius: 8px;
  background: #edf8ff;
}

.faq-plus::before,
.faq-plus::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: var(--blue-600);
  transition: transform 180ms ease;
}

.faq-plus::after {
  transform: rotate(90deg);
}

.future-faq-item[open] .faq-plus::after {
  transform: rotate(0deg);
}

.future-faq-content {
  max-width: 760px;
  padding: 0 74px 34px 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.resource-strip {
  padding: 96px 0 118px;
  background: linear-gradient(180deg, #f5fbff, #ffffff);
}

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

.resource-card {
  min-height: 142px;
  padding: 26px;
  border: 1px solid rgba(13, 58, 99, 0.13);
  border-radius: 8px;
  background: #fff;
  box-shadow: none;
}

.resource-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 500;
}

.resource-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

footer {
  padding: 54px 0 36px;
  color: #d1e9fb;
  background: var(--blue-950);
}

.footer-top {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(166, 221, 255, 0.15);
}

.footer-brand {
  width: 176px;
  padding: 8px 12px;
  border-radius: 8px;
  background: #fff;
}

.footer-copy {
  max-width: 560px;
  margin-top: 17px;
  color: #98bedb;
  line-height: 1.6;
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  padding-top: 8px;
  color: #c4e3f7;
  font-size: 14px;
  font-weight: 500;
}

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

.footer-bottom {
  padding-top: 21px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: #91b9d6;
  font-size: 13px;
}

.footer-bottom p {
  max-width: 790px;
  line-height: 1.55;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

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

@media (max-width: 1060px) {
  .nav-links,
  .nav-actions .text-link,
  .nav-actions .btn {
    display: none;
  }

  .menu-btn {
    display: grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    left: 24px;
    right: 24px;
    top: 72px;
    padding: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(13, 58, 99, 0.14);
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(6, 35, 68, 0.08);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 9px 6px;
  }

  .hero-grid,
  .movement-grid,
  .framework-grid,
  .framework-showcase,
  .operations-layout,
  .future-grid,
  .section-heading,
  .settlement-panel {
    grid-template-columns: 1fr;
  }

  .liquidity-visual {
    min-height: 500px;
  }

  .flow-white {
    height: 388px;
  }

  .asset-orbit {
    max-width: 620px;
    width: 100%;
    margin: 0 auto;
  }

  .timeline,
  .principle-grid,
  .process-grid,
  .resource-grid,
  .control-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .operations-copy {
    position: static;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(var(--max), calc(100% - 34px));
  }

  .navbar {
    min-height: 72px;
    gap: 12px;
  }

  .brand {
    width: 150px;
  }

  .nav-links {
    left: 17px;
    right: 17px;
    top: 64px;
  }

  .hero {
    padding: 58px 0 64px;
  }

  .hero-grid {
    gap: 34px;
  }

  h1 {
    font-size: clamp(42px, 13vw, 62px);
    line-height: 1.08;
  }

  .hero-copy,
  .section-intro {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  section {
    padding: 82px 0;
  }

  .section-center {
    margin-bottom: 42px;
    text-align: left;
  }

  .section-center .section-label {
    justify-content: flex-start;
  }

  .liquidity-visual {
    min-height: 410px;
    padding: 20px;
    margin-left: -8px;
    margin-right: -8px;
  }

  .diagram-top {
    flex-direction: column;
  }

  .flow-white {
    height: 315px;
  }

  .asset-orbit {
    min-height: 430px;
    transform: scale(0.82);
    transform-origin: center;
    margin: -40px auto;
  }

  .feature-row {
    grid-template-columns: 56px 1fr;
    padding: 20px;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
  }

  .feature-row b {
    font-size: 20px;
  }

  .feature-row p {
    font-size: 15px;
  }

  .os-card {
    min-height: 430px;
    padding: 18px;
  }

  .os-card svg {
    height: 360px;
  }

  .infrastructure-card,
  .infrastructure-card img {
    min-height: 320px;
  }

  .timeline,
  .principle-grid,
  .process-grid,
  .resource-grid,
  .control-grid {
    grid-template-columns: 1fr;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .solution-card {
    grid-template-columns: 112px 1fr;
    gap: 16px;
    align-items: start;
  }

  .solution-thumb {
    width: 112px;
    height: 112px;
    border-radius: 20px;
  }

  .solution-card h3 {
    font-size: 22px;
  }

  .solution-card p {
    font-size: 15px;
    line-height: 1.52;
  }

  .solution-link {
    min-height: 40px;
    padding: 0 15px;
    font-size: 13px;
  }

  .framework-showcase {
    gap: 32px;
  }

  .framework-item {
    padding: 22px 18px;
  }

  .framework-item h3 {
    font-size: 26px;
  }

  .framework-item p {
    font-size: 15px;
  }

  .framework-media,
  .framework-media img {
    min-height: 270px;
  }

  .operations-layout {
    gap: 34px;
  }

  .operation-step {
    grid-template-columns: 48px 1fr;
    gap: 14px;
    padding: 16px;
  }

  .operation-no {
    width: 38px;
    height: 38px;
    font-size: 12px;
  }

  .operation-step h3 {
    font-size: 18px;
    margin-bottom: 4px;
  }

  .operation-step p {
    font-size: 14px;
    line-height: 1.5;
  }

  .operation-summary {
    grid-template-columns: 1fr;
  }

  .operation-metric {
    padding: 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(136, 217, 255, 0.18);
  }

  .operation-metric:last-child {
    border-bottom: 0;
  }

  .settlement-panel {
    padding: 24px;
    gap: 18px;
  }

  .future-faq-item summary {
    grid-template-columns: 1fr 40px;
    min-height: 82px;
    gap: 14px;
  }

  .faq-plus {
    width: 40px;
    height: 40px;
  }

  .future-faq-content {
    padding: 0 0 26px;
    font-size: 15px;
    line-height: 1.62;
  }

  .control-pill {
    min-height: 74px;
    padding: 14px 16px;
  }

  .timeline-card,
  .process-step {
    min-height: 0;
  }

  .footer-top,
  .footer-bottom {
    flex-direction: column;
  }

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



/* Desktop operations layout: settlement explanation before the 7-step flow. */
@media (min-width: 1061px) {
  .operations-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .operations-copy {
    position: static;
    grid-row: 1;
    max-width: 760px;
    margin-bottom: 40px;
  }

  .operations-copy h2 {
    margin-bottom: 0;
  }

  .settlement-panel {
    grid-row: 2;
    margin: 0 0 42px;
  }

  .operation-list-wrap {
    grid-row: 3;
  }

  .operation-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
  }

  .operation-step {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 16px;
    min-height: 170px;
    padding: 22px 20px;
  }

  .operation-step:hover {
    transform: translateY(-4px);
  }

  .operation-step h3 {
    font-size: 17px;
    line-height: 1.35;
  }

  .operation-step .flow-arrow {
    margin-top: 18px;
    font-size: 0;
    animation: none;
  }

  .operation-step .flow-arrow::after {
    content: "→";
    display: inline-block;
    color: #88d9ff;
    font-size: 24px;
    line-height: 1;
    animation: arrowRight 1.8s ease-in-out infinite;
  }
}

@keyframes arrowRight {
  0%, 100% {
    transform: translateX(0);
    opacity: 0.72;
  }
  50% {
    transform: translateX(6px);
    opacity: 1;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
/* ── Language Switcher ── */
.lang-switcher { position: relative; }
.lang-btn {
  display: flex; align-items: center; gap: 4px;
  padding: 6px 11px; background: none;
  border: 1px solid var(--line); border-radius: var(--radius-md);
  color: var(--ink); cursor: pointer; font-size: 13px;
  font-weight: 600; letter-spacing: 0.5px;
  transition: background 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.lang-btn:hover { background: var(--soft); border-color: var(--blue-300); }
.lang-btn svg { opacity: 0.55; transition: transform 0.2s; }
.lang-btn[aria-expanded="true"] svg { transform: rotate(180deg); }
.lang-menu {
  display: none; position: absolute; top: calc(100% + 6px); right: 0;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow);
  min-width: 148px; z-index: 50; overflow: hidden;
}
.lang-menu.is-open { display: block; }
.lang-menu [data-lang] {
  display: block; width: 100%; padding: 9px 14px;
  text-align: left; background: none; border: none;
  cursor: pointer; font-size: 13px; color: var(--ink);
  transition: background 0.1s;
}
.lang-menu [data-lang]:hover { background: var(--soft); }
.lang-menu [data-lang].is-active { color: var(--blue-600); font-weight: 600; }
