:root {
  --bg: #031126;
  --bg2: #051832;
  --panel: rgba(8, 31, 58, 0.58);
  --panel2: rgba(10, 37, 67, 0.78);
  --line: rgba(119, 176, 221, 0.18);
  --text: #f5f7fb;
  --muted: #a9b9cf;
  --teal: #15e0c2;
  --cyan: #45baff;
  --purple: #6857ff;
  --violet: #9b5cff;
  --silver: #91a6bf;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}
* {
  box-sizing: border-box;
}
html {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
  background: var(--bg);
}
body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(
      circle at 75% 12%,
      rgba(41, 104, 184, 0.2),
      transparent 28%
    ),
    linear-gradient(180deg, #021021 0%, #061a34 54%, #031126 100%);
  font-family: Inter, system-ui, sans-serif;
  overflow-x: clip;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
a:focus-visible,
button:focus-visible {
  outline: 2px solid rgba(30, 224, 194, 0.78);
  outline-offset: 4px;
  border-radius: 7px;
}
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 20;
  opacity: 0.055;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}
#networkCanvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  height: 104px;
  padding: 0 clamp(30px, 5.3vw, 82px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(
    180deg,
    rgba(1, 12, 27, 0.94),
    rgba(1, 12, 27, 0.46),
    transparent
  );
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
}
.brand-logo {
  display: block;
  width: auto;
  height: 48px;
  object-fit: contain;
}
.brand-copy {
  display: grid;
  line-height: 1;
}
.brand-copy strong {
  font-size: 28px;
  letter-spacing: 0.05em;
}
.brand-copy small {
  font-size: 10px;
  letter-spacing: 0.27em;
  color: #9dd9e9;
  margin-top: 5px;
}
.mini-cube,
.title-cube,
.tiny-cube {
  position: relative;
  display: inline-block;
  transform-style: preserve-3d;
}
.mini-cube {
  width: 18px;
  height: 18px;
  transform: rotate(30deg);
}
.mini-cube:before,
.mini-cube:after,
.mini-cube i {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 2px;
  clip-path: polygon(50% 0, 100% 25%, 50% 50%, 0 25%);
}
.mini-cube:before {
  background: var(--teal);
  transform: translateY(-1px);
}
.mini-cube:after {
  background: var(--purple);
  clip-path: polygon(0 25%, 50% 50%, 50% 100%, 0 75%);
}
.mini-cube i {
  background: #7f95ad;
  clip-path: polygon(50% 50%, 100% 25%, 100% 75%, 50% 100%);
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.8vw, 47px);
  font-size: 13px;
  color: #d4deea;
}
.desktop-nav a {
  position: relative;
  opacity: 0.86;
  transition:
    opacity 0.35s var(--ease),
    transform 0.35s var(--ease);
}
.desktop-nav a:after {
  content: "";
  position: absolute;
  height: 1px;
  left: 0;
  right: 100%;
  bottom: -8px;
  background: linear-gradient(90deg, var(--purple), var(--teal));
  transition: right 0.5s var(--ease);
}
.desktop-nav a:hover {
  opacity: 1;
  transform: translateY(-2px);
}
.desktop-nav a:hover:after {
  right: 0;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.menu-button {
  width: 28px;
  height: 28px;
  background: none;
  border: 0;
  display: grid;
  place-content: center;
  gap: 5px;
  cursor: pointer;
}
.menu-button span {
  display: block;
  width: 15px;
  height: 1px;
  background: #dfe9f4;
  transition: transform 0.35s var(--ease);
}
.menu-button:hover span:first-child {
  transform: translateX(4px);
}
.menu-button:hover span:last-child {
  transform: translateX(-4px);
}
.section-shell {
  position: relative;
  z-index: 1;
  width: min(1458px, calc(100% - 72px));
  margin: 0 auto;
}
.hero {
  isolation: isolate;
  min-height: 1000px;
  padding: 160px 38px 44px;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  grid-template-rows: 1fr auto;
  align-items: center;
}
.hero:before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: -150px;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(2, 16, 33, 0.25) 0%,
      rgba(2, 16, 33, 0.04) 43%,
      rgba(3, 17, 38, 0.08) 100%
    ),
    linear-gradient(
      180deg,
      rgba(3, 17, 38, 0.06) 0%,
      rgba(3, 17, 38, 0) 64%,
      rgba(3, 17, 38, 0.5) 84%,
      #031126 100%
    ),
    url("./assets/hero-background.webp") 65% top/cover no-repeat;
  opacity: 0.82;
  filter: saturate(1.08) contrast(1.03);
  mask-image: linear-gradient(
    180deg,
    #000 0%,
    #000 84%,
    rgba(0, 0, 0, 0.82) 91%,
    transparent 100%
  );
}
.hero:after {
  content: none;
}
.hero > * {
  position: relative;
  z-index: 1;
}
.hero-copy {
  position: relative;
  z-index: 4;
  max-width: 610px;
}
.eyebrow {
  display: inline-block;
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  margin-bottom: 20px;
}
.hero h1,
.problem h2,
.section-heading h2,
.start-copy h2,
.contact h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: -0.032em;
}
.hero h1 {
  font-size: clamp(62px, 5.35vw, 86px);
  line-height: 0.87;
}
.hero h1 em {
  font-weight: 500;
  background: linear-gradient(90deg, var(--teal), var(--cyan), var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-copy > p {
  max-width: 600px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}
.btn {
  --mx: 50%;
  --my: 50%;
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 50px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  overflow: hidden;
  transition:
    transform 0.45s var(--ease),
    box-shadow 0.45s var(--ease),
    border-color 0.45s var(--ease);
}
.btn span,
.btn strong {
  position: relative;
  z-index: 3;
}
.btn i {
  position: absolute;
  inset: -80%;
  z-index: 1;
  opacity: 0;
  background: radial-gradient(
    circle at var(--mx) var(--my),
    rgba(255, 255, 255, 0.45),
    transparent 24%
  );
  transition: opacity 0.4s var(--ease);
}
.btn:hover i {
  opacity: 0.7;
}
.btn-gradient {
  color: #061228;
  background: linear-gradient(90deg, #6757ff 0%, #48b8ff 47%, #14e2c2 100%);
  box-shadow:
    0 0 0 1px rgba(102, 118, 255, 0.15),
    0 12px 35px rgba(32, 129, 200, 0.12);
}
.btn-gradient:hover {
  box-shadow:
    0 13px 42px rgba(20, 226, 194, 0.22),
    0 7px 20px rgba(104, 87, 255, 0.2);
}
.btn-outline {
  border: 1px solid rgba(111, 221, 219, 0.65);
  color: #f1f7ff;
  background: rgba(4, 19, 38, 0.44);
  backdrop-filter: blur(10px);
}
.btn-outline:hover {
  border-color: rgba(155, 92, 255, 0.75);
  box-shadow: 0 0 30px rgba(104, 87, 255, 0.12);
}
.hero-visual {
  position: relative;
  width: 100%;
  min-width: 0;
  height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cube-stage {
  position: relative;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 360px;
  overflow: visible;
}
.cube-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.holo-rings {
  position: absolute;
  left: 50%;
  bottom: 9%;
  width: 68%;
  height: 21%;
  transform: translateX(-50%) rotateX(68deg);
  border-radius: 50%;
  pointer-events: none;
  filter: drop-shadow(0 0 12px rgba(63, 176, 255, 0.42));
}
.holo-rings span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(64, 163, 255, 0.52);
  border-radius: 50%;
  animation: ringPulse 4s ease-in-out infinite;
}
.holo-rings span:nth-child(2) {
  inset: 12%;
  animation-delay: -1s;
}
.holo-rings span:nth-child(3) {
  inset: 24%;
  border-color: rgba(20, 226, 194, 0.65);
  animation-delay: -2s;
}
.holo-rings span:nth-child(4) {
  inset: 36%;
  animation-delay: -3s;
}
.holo-rings.small {
  width: 58%;
  height: 16%;
  bottom: 4%;
}
.holo-rings.small span:nth-child(4) {
  display: none;
}
.holo-core {
  position: absolute;
  left: 50%;
  bottom: 16%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  transform: translateX(-50%);
  background: #6ad8ff;
  box-shadow:
    0 0 20px 10px rgba(55, 179, 255, 0.36),
    0 0 65px 34px rgba(91, 92, 255, 0.16);
  animation: corePulse 2.8s ease-in-out infinite;
}
.drag-hint {
  position: absolute;
  right: 4px;
  top: 60%;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #93a6ba;
  font-size: 9px;
  line-height: 1.5;
  letter-spacing: 0.12em;
  text-align: right;
}
.mouse-icon {
  width: 14px;
  height: 21px;
  border: 1px solid rgba(209, 227, 244, 0.68);
  border-radius: 8px;
  position: relative;
}
.mouse-icon:after {
  content: "";
  position: absolute;
  top: 4px;
  left: 50%;
  width: 2px;
  height: 4px;
  border-radius: 3px;
  background: #e1f2ff;
  transform: translateX(-50%);
  animation: scrollMouse 1.5s infinite;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(75px);
  pointer-events: none;
}
.glow-a {
  right: -10%;
  top: 0;
  width: 560px;
  height: 560px;
  background: rgba(29, 117, 207, 0.18);
}
.glow-b {
  right: 24%;
  top: 30%;
  width: 330px;
  height: 330px;
  background: rgba(104, 87, 255, 0.11);
}
.marketplaces {
  grid-column: 1/-1;
  min-width: 0;
  padding-top: 2px;
}
.market-label {
  text-align: center;
  font-size: 9px;
  letter-spacing: 0.27em;
  color: #6d8197;
  margin-bottom: 29px;
}
.market-row {
  position: relative;
  overflow: hidden;
  color: #8793a7;
  border-top: 1px solid rgba(131, 174, 210, 0.08);
  padding-top: 31px;
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 7%,
    #000 93%,
    transparent
  );
}
.market-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: marketScroll 29s linear infinite;
}
.market-group {
  display: flex;
  align-items: center;
  gap: clamp(54px, 5vw, 88px);
  padding-right: clamp(54px, 5vw, 88px);
}
.market-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 170px;
  white-space: nowrap;
  color: #91a0b5;
  opacity: 0.82;
}
.market-logo svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.45;
}
.market-logo b {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.045em;
}
.market-row:hover .market-track {
  animation-play-state: paused;
}
.glass-frame {
  border: 1px solid var(--line);
  border-radius: 17px;
  background: linear-gradient(
    180deg,
    rgba(4, 21, 43, 0.72),
    rgba(5, 29, 54, 0.44)
  );
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
  overflow: hidden;
}
.frame-grid {
  position: absolute;
  left: -4%;
  top: -10%;
  width: 260px;
  height: 260px;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(62, 122, 180, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(62, 122, 180, 0.2) 1px, transparent 1px);
  background-size: 38px 38px;
  transform: rotate(14deg);
  mask-image: linear-gradient(135deg, #000, transparent 72%);
}
.problem {
  margin-top: 50px;
  padding: 76px 73px;
  min-height: 660px;
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: center;
  gap: 74px;
}
.problem-intro {
  align-self: center;
  position: relative;
  z-index: 2;
}
.problem h2 {
  font-size: 46px;
  line-height: 1.03;
}
.problem h2 em {
  font-weight: 500;
  background: linear-gradient(90deg, var(--teal), var(--cyan), var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.problem-intro p {
  max-width: 480px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
  margin-top: 26px;
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px 42px;
}
.pain-card {
  min-height: 175px;
  transform-style: preserve-3d;
}
.icon-orb {
  width: 62px;
  height: 62px;
  border: 1px solid rgba(81, 172, 220, 0.3);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--teal);
  margin-bottom: 18px;
  background: radial-gradient(
    circle at 35% 30%,
    rgba(104, 87, 255, 0.12),
    rgba(4, 22, 43, 0.25)
  );
  box-shadow: inset 0 0 25px rgba(54, 97, 147, 0.07);
  transition:
    transform 0.6s var(--ease),
    border-color 0.5s var(--ease),
    box-shadow 0.5s var(--ease);
}
.icon-orb svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.6;
}
.pain-card:hover .icon-orb {
  transform: translateY(-5px) rotate(8deg);
  border-color: rgba(104, 87, 255, 0.75);
  box-shadow: 0 0 24px rgba(104, 87, 255, 0.13);
}
.pain-card h3 {
  font-size: 15px;
  margin: 0 0 10px;
  line-height: 1.4;
}
.pain-card p {
  margin: 0;
  color: #93a5b9;
  font-size: 13px;
  line-height: 1.65;
}
.ecosystem {
  margin-top: 0;
  padding: 58px 49px 61px;
  min-height: 720px;
  border-top-left-radius: 200px;
  border-top-right-radius: 200px;
}
.section-heading {
  text-align: center;
}
.section-heading h2 {
  font-size: 46px;
  line-height: 1.05;
}
.section-heading h2 em {
  font-weight: 500;
  background: linear-gradient(
    90deg,
    #dfe7f8 0%,
    var(--cyan) 35%,
    var(--purple) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-heading p {
  font-size: 13px;
  color: #8ea0b2;
  margin-top: 10px;
}
.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  margin-top: 43px;
}
.eco-card {
  position: relative;
  min-width: 0;
  min-height: 485px;
  border: 1px solid rgba(126, 170, 214, 0.18);
  border-radius: 14px;
  padding: 44px 32px 34px;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    rgba(9, 29, 55, 0.58),
    rgba(4, 18, 37, 0.74)
  );
  transform-style: preserve-3d;
  transition:
    border-color 0.55s var(--ease),
    box-shadow 0.55s var(--ease);
}
.eco-card:before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  right: -50px;
  top: -50px;
  filter: blur(55px);
  opacity: 0.18;
  transition:
    opacity 0.5s var(--ease),
    transform 0.7s var(--ease);
}
.eco-card:hover:before {
  opacity: 0.32;
  transform: scale(1.15);
}
.eco-purple:before {
  background: var(--purple);
}
.eco-teal:before {
  background: var(--teal);
}
.eco-card:hover {
  border-color: rgba(84, 201, 223, 0.34);
  box-shadow:
    0 22px 58px rgba(0, 8, 22, 0.28),
    inset 0 0 35px rgba(79, 104, 210, 0.035);
}
.eco-card h3 {
  position: relative;
  z-index: 2;
  font-size: 23px;
  margin: 0 0 17px;
}
.eco-card p {
  max-width: 290px;
  color: #a7b5c8;
  font-size: 14px;
  line-height: 1.65;
  margin: 0 0 26px;
}
.eco-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.eco-card li {
  color: #c1ccd9;
  font-size: 13px;
  line-height: 2;
  padding-left: 24px;
  position: relative;
}
.eco-card li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal);
}
.eco-card a {
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
}
.eco-purple a {
  color: #9a78ff;
}
.eco-card a b {
  display: inline-block;
  margin-left: 8px;
  transition: transform 0.35s var(--ease);
}
.eco-card a:hover b {
  transform: translateX(6px);
}
.eco-cube {
  --face-top: #765fff;
  --face-left: #4030bc;
  --face-right: #2a2379;
  position: absolute;
  right: 25px;
  top: 23px;
  width: 96px;
  height: 104px;
  filter: drop-shadow(0 18px 28px rgba(31, 24, 126, 0.38));
  transform-style: preserve-3d;
  animation: ecoCubeFloat 5.8s ease-in-out infinite;
}
.eco-cube span {
  position: absolute;
  inset: 0;
  display: block;
  backface-visibility: hidden;
}
.eco-cube .cube-top {
  background: linear-gradient(
    145deg,
    color-mix(in srgb, var(--face-top), white 22%),
    var(--face-top)
  );
  clip-path: polygon(50% 0, 100% 25%, 50% 50%, 0 25%);
}
.eco-cube .cube-left {
  background: linear-gradient(
    145deg,
    var(--face-left),
    color-mix(in srgb, var(--face-left), #030b1b 32%)
  );
  clip-path: polygon(0 25%, 50% 50%, 50% 100%, 0 75%);
}
.eco-cube .cube-right {
  background: linear-gradient(
    215deg,
    var(--face-right),
    color-mix(in srgb, var(--face-right), #071229 38%)
  );
  clip-path: polygon(50% 50%, 100% 25%, 100% 75%, 50% 100%);
}
.eco-cube.teal {
  --face-top: #19d9c0;
  --face-left: #098f80;
  --face-right: #056158;
  filter: drop-shadow(0 18px 28px rgba(4, 122, 112, 0.34));
  animation-delay: -1.8s;
}
.eco-cube.silver {
  --face-top: #a9bad0;
  --face-left: #6258e9;
  --face-right: #46546d;
  filter: drop-shadow(0 18px 28px rgba(65, 78, 140, 0.34));
  animation-delay: -3.4s;
}
.tiny-cube {
  width: 14px;
  height: 14px;
  margin-left: 4px;
  vertical-align: middle;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  background: linear-gradient(
    135deg,
    var(--teal) 0 47%,
    var(--purple) 48% 73%,
    #89a2bb 74%
  );
}
.title-cube {
  width: 24px;
  height: 27px;
  margin-left: 10px;
  vertical-align: -3px;
  filter: drop-shadow(0 8px 12px rgba(61, 75, 255, 0.4));
  animation: titleCubeFloat 4.6s ease-in-out infinite;
}
.title-cube:before,
.title-cube:after,
.title-cube i {
  content: "";
  position: absolute;
  inset: 0;
  display: block;
}
.title-cube:before {
  background: linear-gradient(145deg, #a8efff 0%, #6b73ff 58%, #6653ff 100%);
  clip-path: polygon(50% 0, 100% 24%, 50% 49%, 0 24%);
}
.title-cube:after {
  background: linear-gradient(150deg, #25e0c4 0%, #0c8d80 100%);
  clip-path: polygon(0 24%, 50% 49%, 50% 100%, 0 75%);
}
.title-cube i {
  background: linear-gradient(215deg, #9a6cff 0%, #3540a8 66%, #182860 100%);
  clip-path: polygon(50% 49%, 100% 24%, 100% 75%, 50% 100%);
}
.tiny-cube.teal {
  background: linear-gradient(135deg, #1ee2c5, #0e8073);
}
.tiny-cube.purple {
  background: linear-gradient(135deg, #765dff, #3140a9);
}
.tiny-cube.silver {
  background: linear-gradient(135deg, #9fb3c8, #6259ff);
}
.start-section {
  isolation: isolate;
  margin-top: 30px;
  min-height: 600px;
  padding: 61px 57px 48px;
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1fr) minmax(0, 0.9fr);
  align-items: center;
  gap: 34px;
}
.start-section:before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(3, 17, 38, 0.78) 0%, rgba(3, 17, 38, 0.38) 44%, rgba(3, 17, 38, 0.56) 100%), linear-gradient(180deg, rgba(3, 17, 38, 0.12) 0%, rgba(3, 17, 38, 0.4) 100%), url(./assets/start-section.webp) left 30% / 100% auto no-repeat;
  opacity: 0.8;
  filter: saturate(1.05) contrast(1.02);
}
.start-section > * {
  position: relative;
  z-index: 1;
  min-width: 0;
}
.phase {
  display: block;
  color: #8f6dff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 13px;
}
.start-copy h2 {
  font-size: clamp(42px, 3.4vw, 52px);
  white-space: nowrap;
}
.start-copy .lead {
  font-size: 18px;
  color: #d0d9e5;
  line-height: 1.55;
}
.start-copy blockquote {
  margin: 27px 0 30px;
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  line-height: 1.2;
  font-style: italic;
  color: #d4dfec;
}
.start-visual {
  width: 100%;
  min-width: 0;
  height: 470px;
}
.start-stage {
  min-height: 440px;
}
.orbit-lines {
  position: absolute;
  inset: 11% 6% 12%;
  transform: rotate(-3deg);
  pointer-events: none;
}
.orbit-lines span {
  position: absolute;
  inset: 12% 8%;
  border: 1px solid rgba(85, 137, 255, 0.4);
  border-radius: 50%;
  transform: rotateX(68deg) rotateZ(7deg);
  animation: orbit 11s linear infinite;
}
.orbit-lines span:nth-child(2) {
  inset: 4% 12%;
  border-color: rgba(24, 226, 194, 0.28);
  animation-direction: reverse;
  animation-duration: 15s;
}
.orbit-lines span:nth-child(3) {
  inset: 20% 2%;
  border-color: rgba(154, 92, 255, 0.35);
  animation-duration: 19s;
}
.start-features {
  display: grid;
  gap: 23px;
}
.feature-item {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}
.feature-icon {
  width: 60px;
  height: 60px;
  border: 1px solid rgba(91, 166, 222, 0.36);
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--teal);
  background: linear-gradient(
    145deg,
    rgba(31, 78, 104, 0.5),
    rgba(31, 25, 84, 0.34)
  );
}
.feature-icon svg {
  width: 27px;
  height: 27px;
  stroke-width: 1.6;
}
.feature-item h3 {
  font-size: 14px;
  margin: 4px 0 6px;
}
.feature-item p {
  font-size: 12px;
  line-height: 1.55;
  color: #92a3b6;
  margin: 0;
}
.phase-section {
  margin-top: 14px;
}
.phase-section:after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: auto 12% -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--phase-accent, #765dff), transparent);
  opacity: 0.45;
}
.supply-section {
  --phase-accent: #16e0bd;
  --phase-secondary: #29a6de;
}
.supply-section:before {
  background: linear-gradient(90deg, rgba(3, 24, 39, 0.84) 0%, rgba(3, 28, 44, 0.32) 47%, rgba(2, 26, 43, 0.64) 100%), linear-gradient(180deg, rgba(4, 31, 46, 0.1), rgba(2, 20, 34, 0.55)), url(./assets/start-section.webp) right 42% / 102% auto no-repeat;
  filter: hue-rotate(24deg) saturate(1.15) contrast(1.04);
}
.supply-section .phase {
  color: #21dfc2;
}
.supply-section .feature-icon {
  border-color: rgba(27, 222, 193, 0.35);
  background: linear-gradient(145deg, rgba(9, 76, 73, 0.52), rgba(12, 41, 73, 0.34));
}
.supply-section .btn-gradient {
  background: linear-gradient(90deg, #24bea9, #28bad8, #6a63ff);
}
.intelligence-section {
  --phase-accent: #8a63ff;
  --phase-secondary: #479cff;
}
.intelligence-section:before {
  background: linear-gradient(90deg, rgba(12, 13, 46, 0.86) 0%, rgba(26, 22, 78, 0.34) 47%, rgba(9, 19, 54, 0.66) 100%), linear-gradient(135deg, rgba(112, 76, 255, 0.12), rgba(33, 110, 220, 0.05) 56%, rgba(5, 17, 43, 0.58)), url(./assets/start-section.webp) right 42% / 102% auto no-repeat;
  filter: saturate(1.18) contrast(1.05);
}
.intelligence-section .phase {
  color: #a080ff;
}
.intelligence-section .feature-icon {
  border-color: rgba(125, 99, 255, 0.38);
  background: linear-gradient(145deg, rgba(54, 46, 112, 0.54), rgba(15, 44, 82, 0.36));
}
.intelligence-section .btn-gradient {
  background: linear-gradient(90deg, #7657ff, #6277ff, #22c9c2);
}
.stats {
  margin-top: 0;
  min-height: 155px;
  border: 1px solid rgba(116, 164, 207, 0.18);
  border-radius: 14px;
  background: linear-gradient(
    90deg,
    rgba(22, 24, 83, 0.45),
    rgba(4, 50, 72, 0.48)
  );
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  padding: 25px 16px;
  margin-bottom: 30px;
}
.stat {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.stat:not(:last-child):after {
  content: "";
  position: absolute;
  right: 0;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: rgba(132, 166, 198, 0.16);
}
.stat strong {
  display: block;
  min-width: 5.35ch;
  font-family: "Cormorant Garamond", serif;
  font-size: 55px;
  font-weight: 400;
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings:
    "lnum" 1,
    "tnum" 1;
  font-synthesis: none;
  line-height: 0.88;
  letter-spacing: -0.035em;
  background: linear-gradient(90deg, #6c7aff, #43b9ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat:nth-child(2) strong {
  background-image: linear-gradient(90deg, #765cff, #a85cff);
}
.stat:nth-child(3) strong,
.stat:nth-child(4) strong {
  background-image: linear-gradient(90deg, #24bce8, #15e0c2);
}
.stat.stat-suppliers strong {
  width: 100%;
  min-width: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(22px, 3vw, 42px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.025em;
  white-space: nowrap;
}
.stat.stat-suppliers span {
  max-width: none;
  margin-top: 6px;
  font-size: clamp(7px, 0.75vw, 9px);
  letter-spacing: 0.12em;
  white-space: nowrap;
}
.stat span {
  display: block;
  margin-top: 14px;
  font-size: 9px;
  line-height: 1.2;
  letter-spacing: 0.18em;
  color: #a4b2c3;
}
.contact {
  min-height: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.contact-glow {
  position: absolute;
  width: 700px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(26, 118, 203, 0.18),
    transparent 65%
  );
  filter: blur(50px);
}
.contact h2 {
  font-size: 55px;
  line-height: 0.98;
  position: relative;
}
.contact h2 em {
  font-weight: 500;
  background: linear-gradient(90deg, var(--teal), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.contact .btn {
  margin-top: 28px;
}
.faq-section {
  margin-top: 26px;
  margin-bottom: 26px;
  padding: 58px 56px;
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: 70px;
  border: 1px solid rgba(105, 157, 205, 0.17);
  border-radius: 17px;
  background: linear-gradient(145deg, rgba(8, 27, 53, 0.72), rgba(5, 19, 40, 0.65));
}
.faq-heading h2 {
  margin-top: 11px;
  font-size: clamp(38px, 3vw, 50px);
}
.faq-heading p {
  max-width: 430px;
  color: #92a5ba;
  font-size: 14px;
  line-height: 1.7;
}
.faq-list {
  display: grid;
  gap: 12px;
}
.faq-item {
  border: 1px solid rgba(116, 163, 210, 0.18);
  border-radius: 13px;
  background: rgba(4, 19, 40, 0.62);
  overflow: hidden;
}
.faq-item summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  padding: 21px 54px 21px 22px;
  color: #e1eaf4;
  font-size: 14px;
  font-weight: 700;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary:after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--teal);
  font-size: 22px;
  font-weight: 400;
}
.faq-item[open] summary:after {
  content: "−";
  color: var(--purple);
}
.faq-item p {
  margin: 0;
  padding: 0 22px 22px;
  color: #96a8bb;
  font-size: 13px;
  line-height: 1.7;
}
.site-footer {
  position: relative;
  margin-top: 42px;
  padding: 68px 0 28px;
  border-top: 1px solid rgba(89, 145, 198, 0.18);
  background: linear-gradient(180deg, rgba(3, 17, 38, 0.4), rgba(2, 11, 26, 0.96));
  overflow: hidden;
}
.site-footer:before {
  content: "";
  position: absolute;
  width: 680px;
  height: 300px;
  right: -180px;
  top: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(76, 74, 255, 0.15), transparent 67%);
  filter: blur(20px);
}
.footer-shell {
  display: grid;
  grid-template-columns: minmax(280px, 1.4fr) repeat(3, minmax(150px, 0.7fr));
  gap: 46px;
}
.footer-brand,
.footer-column,
.footer-bottom {
  position: relative;
  z-index: 1;
}
.footer-brand .brand {
  width: max-content;
}
.footer-brand > p {
  max-width: 360px;
  margin: 22px 0;
  color: #8ea1b6;
  font-size: 13px;
  line-height: 1.75;
}
.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.footer-column h3 {
  margin: 4px 0 8px;
  color: #e0e9f3;
  font-size: 13px;
}
.footer-column a,
.footer-column span {
  color: #899db2;
  font-size: 12px;
  line-height: 1.5;
  transition: color 0.3s var(--ease), transform 0.3s var(--ease);
}
.footer-column a:hover {
  color: var(--teal);
  transform: translateX(3px);
}
.seo-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 17px;
  border: 1px solid rgba(65, 220, 202, 0.42);
  border-radius: 999px;
  color: #e9fbff;
  background: linear-gradient(105deg, rgba(23, 193, 170, 0.2), rgba(98, 77, 255, 0.25));
  box-shadow: 0 0 30px rgba(40, 179, 203, 0.1), inset 0 0 18px rgba(114, 84, 255, 0.08);
  cursor: pointer;
  font: 700 11px/1 "Inter", sans-serif;
  letter-spacing: 0.1em;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.seo-button:hover {
  transform: translateY(-3px);
  border-color: rgba(128, 99, 255, 0.7);
  box-shadow: 0 12px 36px rgba(44, 99, 187, 0.2);
}
.seo-button svg {
  width: 19px;
  height: 19px;
  stroke-width: 1.8;
}
.footer-bottom {
  margin-top: 52px;
  padding-top: 22px;
  border-top: 1px solid rgba(102, 149, 191, 0.13);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 30px;
  color: #677d92;
  font-size: 10px;
  line-height: 1.6;
}
.seo-modal {
  width: min(850px, calc(100% - 32px));
  max-height: min(820px, calc(100vh - 40px));
  padding: 46px;
  border: 1px solid rgba(103, 166, 215, 0.28);
  border-radius: 20px;
  color: #dfe9f4;
  background: linear-gradient(145deg, rgba(5, 25, 49, 0.98), rgba(8, 15, 45, 0.98));
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.62), inset 0 0 55px rgba(68, 91, 210, 0.06);
  overflow-x: hidden;
  overflow-y: auto;
}
.seo-modal::backdrop {
  background: rgba(0, 7, 18, 0.76);
  backdrop-filter: blur(8px);
}
.seo-modal[open] {
  animation: modalIn 0.4s var(--ease) both;
}
.modal-glow {
  position: absolute;
  z-index: -1;
  width: 360px;
  height: 260px;
  right: -100px;
  top: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(87, 76, 255, 0.26), transparent 70%);
}
.modal-close {
  position: absolute;
  top: 20px;
  right: 22px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(134, 174, 210, 0.22);
  border-radius: 50%;
  color: #a9b9c9;
  background: rgba(4, 17, 37, 0.7);
  cursor: pointer;
  font: 300 26px/1 "Inter", sans-serif;
}
.seo-modal h2 {
  margin: 12px 0 9px;
  font-size: clamp(35px, 4.5vw, 52px);
}
.modal-intro {
  max-width: 690px;
  color: #96a9bd;
  font-size: 13px;
  line-height: 1.7;
}
.seo-modal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}
.seo-modal-grid section {
  padding: 22px;
  border: 1px solid rgba(112, 159, 204, 0.16);
  border-radius: 14px;
  background: rgba(3, 18, 39, 0.58);
}
.seo-modal-grid h3 {
  margin: 0 0 15px;
  font-size: 13px;
}
.keyword-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.keyword-cloud span {
  padding: 8px 10px;
  border: 1px solid rgba(81, 164, 211, 0.2);
  border-radius: 999px;
  color: #aebdcd;
  background: linear-gradient(100deg, rgba(23, 183, 163, 0.08), rgba(105, 81, 255, 0.11));
  font-size: 10px;
  line-height: 1.2;
}
.modal-note {
  margin: 24px 0 0;
  color: #71879c;
  font-size: 10px;
  line-height: 1.6;
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  will-change: transform, opacity;
}
.tilt {
  will-change: transform;
}
@keyframes ringPulse {
  0%,
  100% {
    opacity: 0.35;
    transform: scale(0.96);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.03);
  }
}
@keyframes corePulse {
  0%,
  100% {
    opacity: 0.55;
    transform: translateX(-50%) scale(0.8);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.12);
  }
}
@keyframes scrollMouse {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
  35% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 7px);
  }
}
@keyframes orbit {
  to {
    transform: rotateX(68deg) rotateZ(367deg);
  }
}
@keyframes marketScroll {
  to {
    transform: translateX(-50%);
  }
}
@keyframes ecoCubeFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-2deg);
  }
  50% {
    transform: translate3d(0, -8px, 0) rotate(2deg);
  }
}
@keyframes titleCubeFloat {
  0%,
  100% {
    transform: translateY(1px) rotate(-2deg);
  }
  50% {
    transform: translateY(-4px) rotate(3deg);
  }
}
@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.mobile-nav {
  position: absolute;
  top: 82px;
  left: 18px;
  right: 18px;
  display: none;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(3, 17, 38, 0.96);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(18px);
}
.mobile-nav a {
  display: block;
  padding: 13px 11px;
  color: #dce8f4;
  font-size: 14px;
}
.mobile-nav .mobile-consultant {
  margin-top: 8px;
  border-radius: 999px;
  text-align: center;
  font-weight: 700;
  color: #05152a;
  background: linear-gradient(90deg, #6757ff, #48b8ff, #14e2c2);
}
.menu-button {
  display: none;
}
@media (max-width: 1180px) {
  .desktop-nav {
    gap: 20px;
  }
  .site-header {
    padding-inline: 34px;
  }
  .brand {
    min-width: 150px;
  }
  .section-shell {
    width: calc(100% - 40px);
  }
  .hero {
    padding-inline: 22px;
  }
  .problem {
    padding-inline: 45px;
    gap: 45px;
  }
  .ecosystem {
    padding-inline: 34px;
  }
  .start-section {
    padding-inline: 36px;
  }
}
@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }
  .menu-button {
    display: grid;
  }
  .site-header.menu-open .mobile-nav {
    display: block;
  }
  .site-header.menu-open .menu-button span:first-child {
    transform: translateY(3px) rotate(45deg);
  }
  .site-header.menu-open .menu-button span:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }
  .hero {
    grid-template-columns: 1fr 1fr;
  }
  .problem {
    grid-template-columns: 1fr;
  }
  .pain-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .start-section {
    grid-template-columns: 1fr 1fr;
  }
  .start-section:before {
    background-size: auto, auto, cover;
    background-position:
      center,
      center,
      66% center;
  }
  .start-features {
    grid-column: 1/-1;
    grid-template-columns: repeat(2, 1fr);
  }
  .faq-section {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .footer-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ecosystem {
    border-radius: 17px;
  }

  .stat.stat-suppliers strong {
    font-size: clamp(19px, 3vw, 38px);
  }
}
@media (max-width: 700px) {
  .site-header {
    height: 68px;
    padding: 0 18px;
  }
  .brand-copy strong {
    font-size: 22px;
  }
  .brand-logo {
    height: 38px;
  }
  .brand-copy small {
    font-size: 8px;
  }
  .header-actions .btn {
    display: none;
  }
  .section-shell {
    width: calc(100% - 28px);
  }
  .hero {
    padding: 104px 0 30px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
  }
  .hero:before {
    background:
      radial-gradient(
        circle at 50% 55%,
        rgba(18, 110, 213, 0.02) 0%,
        rgba(2, 16, 33, 0.04) 43%,
        rgba(3, 17, 38, 0.08) 100%
      ),
      linear-gradient(
        180deg,
        rgba(3, 17, 38, 0.06) 0%,
        rgba(3, 17, 38, 0) 64%,
        rgba(3, 17, 38, 0.5) 84%,
        #031126 100%
      ),
      url("./assets/hero-background-mobile.webp") center top/cover no-repeat;
  }
  .hero-copy {
    padding: 0;
  }
  .hero h1 {
    font-size: 54px;
  }
  .title-cube {
    width: 21px;
    height: 24px;
    margin-left: 7px;
  }
  .hero-copy > p {
    font-size: 13px;
  }
  .hero-visual {
    height: 430px;
    margin-top: 20px;
  }
  .drag-hint {
    display: none;
  }
  .marketplaces {
    margin-top: -8px;
  }
  .market-logo {
    min-width: 145px;
  }
  .market-logo b {
    font-size: 16px;
  }
  .market-logo svg {
    width: 23px;
    height: 23px;
  }
  .problem {
    padding: 42px 24px;
    min-height: auto;
  }
  .problem h2 {
    font-size: 39px;
  }
  .pain-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 20px;
  }
  .pain-card {
    text-align: center;
  }
  .pain-card .icon-orb {
    margin: 0 auto 18px;
  }
  .ecosystem {
    padding: 42px 22px;
    min-height: auto;
  }
  .section-heading h2 {
    font-size: 34px;
  }
  .ecosystem-grid {
    grid-template-columns: 1fr;
  }
  .eco-card {
    min-height: 400px;
  }
  .eco-cube {
    top: 16px;
    right: 16px;
    width: 66px;
    height: 72px;
  }
  .start-section {
    padding: 42px 22px;
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .start-copy {
    order: 1;
  }
  .start-visual {
    order: 2;
    height: 390px;
  }
  .start-features {
    order: 3;
    grid-template-columns: 1fr;
  }
  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 0;
  }
  .stat:nth-child(2):after {
    display: none;
  }
  .stat strong {
    font-size: 43px;
  }
  .stat span {
    min-height: 2.4em;
    padding-inline: 8px;
  }
  .faq-section {
    padding: 40px 22px;
  }
  .footer-shell {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .footer-bottom {
    margin-top: 38px;
    flex-direction: column;
  }
  .seo-modal {
    padding: 40px 20px 24px;
  }
  .seo-modal-grid {
    grid-template-columns: 1fr;
  }
  .modal-close {
    top: 14px;
    right: 14px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
  .holo-rings span,
  .holo-core,
  .mouse-icon:after,
  .orbit-lines span,
  .eco-cube,
  .title-cube {
    animation: none !important;
  }
  .market-track {
    animation: none !important;
    transform: none !important;
  }
  .btn,
  .desktop-nav a,
  .icon-orb,
  .eco-card {
    transition: none !important;
  }
}

/* Reference composition after Fase 01 */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.phase-label {
  display: block;
  color: #9a78ff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
}
.supply-reference {
  padding: 112px 38px 80px;
}
.supply-hero {
  min-height: 500px;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  align-items: center;
  gap: 72px;
}
.supply-copy h2,
.intelligence-heading h2 {
  margin: 17px 0 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(40px, 3.4vw, 51px);
  font-weight: 500;
  line-height: 1;
}
.supply-lead {
  max-width: 470px;
  color: #e0e8f2;
  font-size: 16px;
  line-height: 1.65;
}
.unlock-badge {
  display: inline-flex;
  margin-top: 24px;
  padding: 7px 12px;
  border: 1px solid rgba(119, 94, 255, 0.45);
  border-radius: 999px;
  color: #79b7ff;
  background: rgba(73, 64, 178, 0.08);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
}
.unlock-copy {
  max-width: 475px;
  margin: 17px 0 0;
  color: #a7b5c6;
  font-size: 13px;
  line-height: 1.7;
}
.supply-copy blockquote {
  max-width: 560px;
  margin: 34px 0 0;
  font-family: "Cormorant Garamond", serif;
  color: #f0f2f8;
  font-size: clamp(23px, 2.1vw, 31px);
  font-style: italic;
  line-height: 1.25;
}
.portal-graphic {
  position: relative;
  min-width: 0;
  height: 390px;
  background: radial-gradient(ellipse at 54% 61%, rgba(56, 92, 255, 0.18), transparent 40%), linear-gradient(155deg, transparent 48%, rgba(57, 119, 211, 0.08) 49%, transparent 50%);
  overflow: hidden;
}
.portal-graphic:before,
.portal-graphic:after {
  content: "";
  position: absolute;
  inset: 4% 0 0;
  opacity: 0.42;
  pointer-events: none;
}
.portal-graphic:before {
  background-image: linear-gradient(27deg, transparent 49.7%, rgba(56, 122, 221, 0.2) 50%, transparent 50.3%), linear-gradient(151deg, transparent 49.7%, rgba(78, 76, 255, 0.18) 50%, transparent 50.3%);
  background-size: 140px 105px, 180px 125px;
}
.portal-graphic:after {
  background: radial-gradient(circle at 13% 31%, #5d6fff 0 1.5px, transparent 2px), radial-gradient(circle at 35% 16%, #39cfff 0 1.4px, transparent 2px), radial-gradient(circle at 74% 23%, #846bff 0 1.6px, transparent 2px), radial-gradient(circle at 89% 48%, #37c8ff 0 1.3px, transparent 2px);
}
.portal-graphic > span {
  position: absolute;
  left: 50%;
  top: 57%;
  width: 78%;
  height: 28%;
  border: 1px solid rgba(56, 159, 255, 0.82);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 22px rgba(34, 124, 255, 0.2), inset 0 0 18px rgba(44, 120, 255, 0.12);
}
.portal-graphic > span:nth-child(2) {
  width: 63%;
  height: 22%;
  border-color: rgba(26, 221, 211, 0.58);
}
.portal-graphic > span:nth-child(3) {
  width: 48%;
  height: 17%;
  border-color: rgba(84, 111, 255, 0.65);
}
.portal-graphic > span:nth-child(4) {
  width: 29%;
  height: 10%;
  border-color: rgba(126, 88, 255, 0.55);
}
.portal-graphic > i {
  position: absolute;
  left: 50%;
  top: 57%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: #dffbff;
  box-shadow: 0 0 10px #fff, 0 0 28px #4e7cff, 0 0 70px #285cff, 0 0 130px #683fff;
  animation: portalPulse 3.2s ease-in-out infinite;
}
.supply-benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 4px;
}
.supply-benefit,
.process-card,
.journey-card {
  position: relative;
  min-width: 0;
  border: 1px solid rgba(104, 152, 201, 0.2);
  border-radius: 14px;
  background: linear-gradient(155deg, rgba(5, 25, 49, 0.74), rgba(3, 16, 34, 0.72));
  box-shadow: inset 0 0 30px rgba(43, 84, 135, 0.025);
}
.supply-benefit {
  min-height: 365px;
  padding: 30px 27px;
}
.reference-icon {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(112, 104, 255, 0.35);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 30% 25%, rgba(34, 206, 191, 0.12), rgba(83, 61, 180, 0.09));
}
.reference-icon svg {
  width: 25px;
  height: 25px;
  stroke-width: 1.65;
}
.supply-benefit > b,
.process-card > b,
.journey-card > b {
  display: block;
  margin: 18px 0 13px;
  color: #a485ff;
  font-size: 13px;
  letter-spacing: 0.08em;
}
.supply-benefit h3,
.process-card h3,
.journey-card h3 {
  margin: 0 0 13px;
  color: #edf2f8;
  font: 600 15px/1.4 "Inter", sans-serif;
}
.supply-benefit p,
.process-card p,
.journey-card p {
  margin: 0;
  color: #9bacc0;
  font-size: 12px;
  line-height: 1.7;
}
.supply-process {
  padding-top: 70px;
  text-align: center;
}
.supply-process > .phase-label {
  text-align: left;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 24px;
  text-align: left;
}
.process-card {
  min-height: 190px;
  padding: 24px 27px;
}
.process-card > b {
  margin-top: 0;
}
.reference-outline-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 30px;
  min-height: 48px;
  margin-top: 32px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(#031126, #031126) padding-box, linear-gradient(90deg, #865cff, #16d8c0) border-box;
  color: #e5edf6;
  font-size: 12px;
  font-weight: 700;
}
.reference-outline-btn strong {
  color: var(--teal);
  font-size: 20px;
  font-weight: 400;
}
.intelligence-preview {
  padding: 110px 38px 12px;
}
.intelligence-heading {
  text-align: center;
}
.intelligence-heading h2 {
  margin-bottom: 12px;
}
.intelligence-heading > p {
  color: #8fa2b7;
  font-size: 13px;
}
.waitlist-form,
.conversion-form {
  position: relative;
  display: flex;
  align-items: center;
}
.waitlist-form {
  width: min(480px, 100%);
  margin: 22px auto 0;
  gap: 12px;
}
.waitlist-form input,
.conversion-form input {
  min-width: 0;
  height: 46px;
  border: 1px solid rgba(103, 152, 198, 0.28);
  border-radius: 999px;
  outline: none;
  color: #dce8f4;
  background: rgba(3, 17, 38, 0.68);
  font: 12px/1 "Inter", sans-serif;
}
.waitlist-form input {
  flex: 1;
  padding: 0 18px;
}
.waitlist-form button {
  height: 46px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #e9f1f7;
  background: linear-gradient(#06142b, #06142b) padding-box, linear-gradient(90deg, #835cff, #16d8c0) border-box;
  cursor: pointer;
  font: 700 11px/1 "Inter", sans-serif;
}
.waitlist-form button {
  padding: 0 20px;
}
.waitlist-form output,
.conversion-form output {
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
  width: 100%;
  color: #32dec3;
  font-size: 10px;
}
.intelligence-intro {
  width: min(930px, 100%);
  min-height: 210px;
  margin: 42px auto 0;
  padding: 34px 36px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(240px, 0.65fr);
  align-items: center;
  gap: 34px;
  border: 1px solid rgba(103, 151, 199, 0.2);
  border-radius: 15px;
  background: linear-gradient(150deg, rgba(6, 25, 49, 0.72), rgba(4, 16, 36, 0.68));
}
.intelligence-intro h3 {
  margin: 0 0 13px;
  font-size: 18px;
}
.intelligence-intro p {
  margin: 0;
  color: #98a9bc;
  font-size: 12px;
  line-height: 1.7;
}
.intelligence-artwork {
  display: block;
  width: min(380px, 100%);
  height: auto;
  margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 38px rgba(44, 74, 255, 0.22));
}
.intelligence-benefits {
  width: min(930px, 100%);
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.intelligence-benefit {
  text-align: center;
}
.intelligence-benefit .reference-icon {
  margin: 0 auto 12px;
}
.intelligence-benefit p {
  margin: 0;
  color: #d5deea;
  font-size: 11px;
  line-height: 1.45;
}
.reference-stats {
  margin: 86px auto 102px;
}
.journey-section {
  padding: 0 16px 98px;
  text-align: center;
}
.journey-heading h2 {
  margin: 16px 0 44px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(42px, 4.8vw, 62px);
  font-weight: 500;
  line-height: 1.05;
}
.journey-heading h2 em {
  font-weight: 500;
  background: linear-gradient(90deg, #17dfc2, #3eafff, #9a5cff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 44px;
  text-align: left;
}
.journey-card {
  min-height: 225px;
  padding: 28px 25px;
}
.journey-card:not(:last-child):after {
  content: "→";
  position: absolute;
  right: -33px;
  top: 47%;
  color: #1ce0c1;
  font-size: 24px;
}
.journey-card > b {
  margin-top: 0;
}
.journey-final > b,
.journey-final h3 {
  color: #28dec0;
}
.journey-cta {
  margin-top: 38px;
  min-width: 230px;
  justify-content: center;
}
.conversion-section {
  position: relative;
  min-height: 520px;
  border-top: 1px solid rgba(99, 151, 201, 0.18);
  border-bottom: 1px solid rgba(99, 151, 201, 0.18);
  background: linear-gradient(90deg, rgba(3, 17, 38, 0.92) 0%, rgba(3, 17, 38, 0.62) 48%, rgba(3, 17, 38, 0.2) 100%), url(./assets/section-ultima.webp) right / contain no-repeat;
}
.conversion-inner {
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 52px;
}
.conversion-copy {
  padding: 68px 0;
}
.conversion-copy h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(40px, 4vw, 54px);
  font-weight: 500;
  line-height: 1.08;
  background: linear-gradient(90deg, #18ddc1 0%, #4ca9ff 48%, #9a5cff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.conversion-copy > p {
  max-width: 600px;
  margin: 27px 0 0;
  color: #afbdcc;
  font-size: 13px;
  line-height: 1.75;
}
.conversion-actions {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-top: 30px;
}
.conversion-lead-form > .btn {
  flex: none;
  border: 0;
  cursor: pointer;
}
.conversion-form {
  width: min(300px, 100%);
}
.conversion-form input {
  width: 100%;
  padding: 0 18px;
}
.conversion-portal {
  height: 360px;
}
.reference-footer {
  margin-top: 0;
  padding: 38px 0 20px;
  background: rgba(2, 12, 27, 0.98);
}
.reference-footer-main {
  display: grid;
  grid-template-columns: 1.1fr repeat(5, minmax(105px, 0.72fr)) minmax(190px, 1.1fr);
  align-items: center;
  gap: 24px;
}
.reference-footer-main .brand {
  min-width: 0;
}
.reference-footer-link {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.reference-footer-link a {
  color: #dce6f0;
  font-size: 11px;
}
.reference-footer-link span {
  color: #8295aa;
  font-size: 10px;
}
.reference-footer-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}
.reference-footer-cta {
  display: inline-flex;
  min-height: 40px;
  padding: 0 17px;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(#04142b, #04142b) padding-box, linear-gradient(90deg, #865cff, #16d8c0) border-box;
  color: #e1eaf3;
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
}
.reference-footer .seo-button {
  min-height: 40px;
  padding: 0 12px;
}
.reference-footer-bottom {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(101, 148, 190, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  color: #687d92;
  font-size: 9px;
}
.reference-footer-bottom > div:first-child {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.reference-footer-bottom a {
  color: #788fa4;
}
.footer-socials {
  display: flex;
  gap: 20px;
}
.footer-socials span,
.footer-socials a {
  color: #71869c;
}
.footer-socials svg {
  width: 16px;
  height: 16px;
  stroke-width: 1.5;
}
@keyframes portalPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.72; }
  50% { transform: translate(-50%, -50%) scale(1.25); opacity: 1; }
}

@media (max-width: 1180px) {
  .supply-benefit-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .supply-benefit { min-height: 300px; }
  .journey-grid { gap: 26px; }
  .journey-card:not(:last-child):after { right: -20px; }
  .reference-footer-main { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .reference-footer-actions { justify-content: flex-start; }
}
@media (max-width: 900px) {
  .supply-reference { padding-top: 82px; }
  .supply-hero { grid-template-columns: 1fr; gap: 12px; }
  .supply-copy { max-width: 650px; }
  .supply-portal { height: 320px; }
  .intelligence-intro { grid-template-columns: 1fr; }
  .intelligence-artwork { width: min(460px, 100%); }
  .intelligence-benefits { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px 20px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-card { min-height: auto; }
  .journey-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .journey-card:not(:last-child):after { display: none; }
  .conversion-inner { grid-template-columns: 1fr; }
  .conversion-copy { padding-bottom: 0; }
  .conversion-portal { height: 300px; }
  .conversion-section { background: linear-gradient(90deg, rgba(3, 17, 38, 0.92) 0%, rgba(3, 17, 38, 0.62) 48%, rgba(3, 17, 38, 0.2) 100%), url(./assets/section-ultima.webp) right / cover no-repeat; }
}
@media (max-width: 700px) {
  .supply-reference,
  .intelligence-preview { padding-inline: 0; }
  .supply-copy h2,
  .intelligence-heading h2 { font-size: 43px; }
  .supply-benefit-grid { grid-template-columns: 1fr; }
  .supply-benefit { min-height: auto; }
  .supply-portal { height: 250px; }
  .process-grid { gap: 14px; }
  .waitlist-form { flex-direction: column; }
  .waitlist-form input,
  .waitlist-form button { width: 100%; }
  .waitlist-form input { min-height: 56px; }
  .intelligence-intro { padding: 28px 22px; }
  .intelligence-benefits { grid-template-columns: 1fr 1fr; }
  .reference-stats { margin-block: 64px 76px; }
  .journey-section { padding-inline: 0; }
  .journey-heading h2 { font-size: 39px; }
  .journey-grid { grid-template-columns: 1fr; gap: 14px; }
  .journey-card { min-height: auto; }
  .conversion-inner { width: calc(100% - 40px); }
  .conversion-copy h2 { font-size: 37px; }
  .conversion-actions { flex-direction: column; }
  .conversion-form { width: 100%; }
  .conversion-portal { height: 240px; }
  .reference-footer-main { grid-template-columns: 1fr 1fr; gap: 28px 18px; }
  .reference-footer-main > .brand,
  .reference-footer-actions { grid-column: 1 / -1; }
  .reference-footer-actions { flex-wrap: wrap; }
  .reference-footer-bottom { align-items: flex-start; flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  .portal-graphic > i { animation: none !important; }
}
