:root {
  --bg: #0b0b0f;
  --bg-2: #11111a;
  --ink: #f8fafc;
  --muted: #a8b0c2;
  --line: rgba(255, 255, 255, 0.12);
  --glass: rgba(255, 255, 255, 0.07);
  --glass-strong: rgba(255, 255, 255, 0.12);
  --yellow: #facc15;
  --violet: #8b5cf6;
  --cyan: #38bdf8;
  --blue: #2563eb;
  --radius: 28px;
  --shadow: 0 32px 120px rgba(0, 0, 0, 0.42);
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 12%, rgba(250, 204, 21, 0.13), transparent 24%),
    radial-gradient(circle at 82% 8%, rgba(37, 99, 235, 0.24), transparent 30%),
    radial-gradient(circle at 52% 50%, rgba(56, 189, 248, 0.10), transparent 36%),
    var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  cursor: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -5;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0%, rgba(250, 204, 21, 0.10) 22%, transparent 38%),
    linear-gradient(245deg, transparent 0%, rgba(37, 99, 235, 0.18) 34%, transparent 55%);
  background-size: 180% 180%;
  animation: backgroundFlow 16s ease-in-out infinite alternate;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 50% 15%, black, transparent 68%);
}

@keyframes backgroundFlow {
  from {
    background-position: 0% 40%;
  }

  to {
    background-position: 100% 60%;
  }
}

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

img,
canvas {
  max-width: 100%;
}

button,
a {
  cursor: none;
}

#particle-field {
  position: fixed;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  opacity: 0.92;
  pointer-events: none;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  opacity: 0.08;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='256' height='256' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
}

.orb {
  position: fixed;
  z-index: -3;
  width: 44vw;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(74px);
  opacity: 0.34;
  pointer-events: none;
  transform: translate3d(0, 0, 0);
}

.orb-a {
  left: -18vw;
  top: 8vh;
  background: var(--yellow);
  animation: floatA 12s ease-in-out infinite;
}

.orb-b {
  right: -15vw;
  top: 4vh;
  background: var(--blue);
  animation: floatB 15s ease-in-out infinite;
}

.motion-ribbon {
  position: fixed;
  z-index: -1;
  width: 140vw;
  height: 28vh;
  left: -20vw;
  pointer-events: none;
  border-radius: 999px;
  opacity: 0.30;
  filter: blur(18px);
  transform: rotate(-10deg);
  background:
    linear-gradient(90deg, transparent 0%, rgba(250, 204, 21, 0.0) 8%, rgba(250, 204, 21, 0.42) 18%, rgba(255, 255, 255, 0.20) 34%, rgba(56, 189, 248, 0.55) 52%, rgba(37, 99, 235, 0.44) 72%, transparent 94%);
  background-size: 220% 100%;
  animation: ribbonRun 9s linear infinite;
}

.ribbon-a {
  top: 18vh;
}

.ribbon-b {
  top: 54vh;
  height: 22vh;
  opacity: 0.20;
  transform: rotate(11deg);
  animation-duration: 12s;
  animation-direction: reverse;
}

.ribbon-c {
  bottom: 8vh;
  height: 18vh;
  opacity: 0.16;
  transform: rotate(-4deg);
  animation-duration: 15s;
}

@keyframes ribbonRun {
  from {
    background-position: 0% 50%;
    translate: -8vw 0;
  }

  to {
    background-position: 220% 50%;
    translate: 8vw 0;
  }
}

.orb-c {
  left: 36vw;
  bottom: -22vw;
  background: var(--blue);
  animation: floatC 18s ease-in-out infinite;
}

@keyframes floatA {
  50% {
    transform: translate(8vw, 10vh) scale(1.12);
  }
}

@keyframes floatB {
  50% {
    transform: translate(-10vw, 14vh) scale(0.9);
  }
}

@keyframes floatC {
  50% {
    transform: translate(7vw, -12vh) scale(1.05);
  }
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  pointer-events: none;
  border-radius: 50%;
  transform: translate3d(-50%, -50%, 0);
}

.cursor-dot {
  width: 9px;
  height: 9px;
  background: var(--yellow);
  box-shadow: 0 0 22px rgba(250, 204, 21, 0.86);
}

.cursor-ring {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(250, 204, 21, 0.55);
  box-shadow: 0 0 42px rgba(250, 204, 21, 0.22);
  transition: width 180ms ease, height 180ms ease, border-color 180ms ease, background 180ms ease;
}

body.cursor-active .cursor-ring {
  width: 72px;
  height: 72px;
  border-color: rgba(34, 211, 238, 0.55);
  background: rgba(34, 211, 238, 0.08);
}

.site-header {
  position: fixed;
  inset: 18px 18px auto;
  z-index: 60;
  width: min(calc(100% - 36px), 1240px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 12px;
  background: rgba(11, 11, 15, 0.58);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 4px 12px 4px 6px;
  border-radius: 999px;
  font-weight: 850;
}

.brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(34, 211, 238, 0.38));
}

.desktop-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 8px;
}

.desktop-nav a,
.header-cta {
  border-radius: 999px;
  padding: 12px 16px;
  color: rgba(248, 250, 252, 0.72);
  font-size: 14px;
  font-weight: 750;
  transition: 180ms ease;
}

.desktop-nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.header-cta {
  color: #0b0b0f;
  background: var(--yellow);
  box-shadow: 0 16px 42px rgba(250, 204, 21, 0.24);
}

.section {
  position: relative;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 96px 22px;
}

.hero {
  width: min(100%, 1320px);
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding-top: 150px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: 42px;
  align-items: center;
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 24px rgba(250, 204, 21, 0.86);
}

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

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(30px, 3.7vw, 48px);
  line-height: 1.1;
  font-weight: 760;
  letter-spacing: -0.018em;
}

h1 span,
.section-heading h2 span {
  display: block;
  color: transparent;
  background: linear-gradient(92deg, var(--yellow) 0%, #fff7c2 28%, #ffffff 42%, var(--cyan) 64%, var(--blue) 100%);
  background-size: 180% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: textShine 5s ease-in-out infinite alternate;
}

@keyframes textShine {
  from {
    background-position: 0% 50%;
  }

  to {
    background-position: 100% 50%;
  }
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.52;
}

.hero-pain-list {
  display: grid;
  gap: 9px;
  max-width: 660px;
  margin: 0 0 26px;
}

.hero-pain-list span,
.hero-pain-list strong {
  display: block;
  border-left: 2px solid rgba(250, 204, 21, 0.58);
  padding: 7px 0 7px 13px;
  color: rgba(248, 250, 252, 0.82);
  font-size: 14px;
  line-height: 1.35;
}

.hero-pain-list strong {
  color: #fff;
}

.hero-pain-list span:nth-child(2) {
  border-left-color: rgba(56, 189, 248, 0.58);
}

.hero-pain-list span:nth-child(3) {
  border-left-color: rgba(37, 99, 235, 0.72);
}

.hero-actions,
.sav-conv-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  position: relative;
  isolation: isolate;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 0 22px;
  font-size: 15px;
  font-weight: 900;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
  transform: translateX(-120%);
  transition: opacity 180ms ease;
}

.btn:hover {
  transform: translateY(-3px) scale(1.015);
}

.btn:hover::before {
  opacity: 0.36;
  animation: buttonSweep 800ms ease;
}

@keyframes buttonSweep {
  to {
    transform: translateX(120%);
  }
}

.btn-primary {
  color: #0b0b0f;
  border-color: rgba(250, 204, 21, 0.52);
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.88), transparent 24%),
    linear-gradient(135deg, #facc15 0%, #fff3a3 35%, #38bdf8 68%, #2563eb 120%);
  box-shadow: 0 24px 70px rgba(250, 204, 21, 0.24);
}

.btn-ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 720px;
  margin-top: 34px;
}

.hero-proof div,
.metric-card,
.chaos-card,
.solution-card,
.testimonial,
.cta-shell,
.command-panel,
.floating-card,
.comparison > div {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04));
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.hero-proof div {
  border-radius: 20px;
  padding: 18px;
}

.hero-proof strong {
  display: block;
  color: #fff;
  font-size: 30px;
  line-height: 1;
}

.hero-proof span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.hero-visual {
  position: relative;
  min-height: 660px;
  perspective: 1200px;
}

.command-panel {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  border-radius: 34px;
  padding: 22px;
  transform-style: preserve-3d;
  animation: panelDrift 6s ease-in-out infinite;
}

@keyframes panelDrift {
  50% {
    translate: 0 -12px;
  }
}

.command-panel::before {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 20%), rgba(250, 204, 21, 0.22), transparent 30%),
    radial-gradient(circle at 80% 30%, rgba(34, 211, 238, 0.18), transparent 34%);
}

.panel-top,
.typing-line,
.pipeline,
.radar {
  position: relative;
  z-index: 1;
}

.panel-top {
  display: flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.panel-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.32);
}

.panel-top span:first-child {
  background: var(--yellow);
}

.panel-top p {
  margin: 0 0 0 auto;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.typing-line {
  margin: 28px 0 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  background: rgba(0, 0, 0, 0.22);
}

.typing-line span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.typing-line strong {
  display: inline-block;
  min-height: 46px;
  margin-top: 8px;
  color: var(--yellow);
  font-size: 42px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.radar {
  display: grid;
  place-items: center;
  height: 360px;
  margin: 12px 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle, transparent 0 18%, rgba(255, 255, 255, 0.06) 18.3% 18.6%, transparent 19% 34%, rgba(255, 255, 255, 0.06) 34.3% 34.6%, transparent 35%),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 100% 100%, 42px 42px, 42px 42px;
}

.radar-sweep {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(250, 204, 21, 0.34), rgba(56, 189, 248, 0.12), transparent 26%);
  animation: radarSpin 2.7s linear infinite;
}

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

.radar-core {
  position: relative;
  z-index: 2;
  width: 116px;
  height: 116px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.10);
  box-shadow: 0 0 90px rgba(34, 211, 238, 0.24);
  backdrop-filter: blur(18px);
}

.radar-core img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.node {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 9px 12px;
  color: #fff;
  background: rgba(11, 11, 15, 0.62);
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
}

.node-a {
  left: 28px;
  top: 62px;
}

.node-b {
  right: 40px;
  top: 94px;
}

.node-c {
  left: 42px;
  bottom: 66px;
}

.node-d {
  right: 48px;
  bottom: 42px;
}

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

.pipeline div {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.06);
}

.pipeline span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.pipeline strong {
  display: block;
  margin-top: 6px;
  color: #fff;
  font-size: 18px;
}

.floating-card {
  position: absolute;
  z-index: 3;
  border-radius: 22px;
  padding: 16px 18px;
  animation: smallFloat 5s ease-in-out infinite;
}

.floating-card span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.floating-card strong {
  display: block;
  margin-top: 5px;
  color: var(--yellow);
  font-size: 28px;
  line-height: 1;
}

.card-top {
  right: -12px;
  top: 112px;
}

.card-bottom {
  left: -20px;
  bottom: 98px;
  animation-delay: -2s;
}

@keyframes smallFloat {
  50% {
    transform: translateY(-14px);
  }
}

.section-heading {
  max-width: 820px;
  margin-bottom: 52px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.comparison h2,
.cta-shell h2 {
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(26px, 3.1vw, 40px);
  line-height: 1.08;
  font-weight: 780;
  letter-spacing: -0.02em;
}

.section-heading p,
.comparison li,
.cta-shell p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.58;
}

.chaos-grid,
.solution-grid,
.proof-grid,
.testimonials {
  display: grid;
  gap: 18px;
}

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

.chaos-card,
.solution-card,
.testimonial,
.metric-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  padding: 26px;
}

.chaos-card::before,
.solution-card::before,
.metric-card::before,
.testimonial::before {
  content: "";
  position: absolute;
  inset: -1px;
  opacity: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 20%), rgba(250, 204, 21, 0.16), transparent 34%);
  transition: opacity 220ms ease;
}

.chaos-card:hover::before,
.solution-card:hover::before,
.metric-card:hover::before,
.testimonial:hover::before {
  opacity: 1;
}

.card-index {
  display: inline-flex;
  margin-bottom: 44px;
  color: rgba(250, 204, 21, 0.86);
  font-size: 13px;
  font-weight: 950;
}

.chaos-card h3,
.solution-card h3 {
  position: relative;
  margin-bottom: 14px;
  color: #fff;
  font-size: 22px;
  font-weight: 760;
  letter-spacing: -0.035em;
}

.chaos-card p,
.solution-card p,
.testimonial p {
  position: relative;
  color: var(--muted);
  line-height: 1.65;
}

.warning-strip {
  margin-top: 20px;
  border: 1px solid rgba(250, 204, 21, 0.26);
  border-radius: 24px;
  padding: 20px 22px;
  color: rgba(255, 255, 255, 0.82);
  background: linear-gradient(90deg, rgba(250, 204, 21, 0.14), rgba(139, 92, 246, 0.1));
}

.warning-strip span {
  color: var(--yellow);
  font-weight: 950;
}

.identity {
  width: min(100%, 1280px);
}

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

.identity-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 30px;
  background:
    radial-gradient(circle at 20% 0%, rgba(56, 189, 248, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04));
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.identity-card::before {
  content: "";
  position: absolute;
  inset: -80px;
  opacity: 0.34;
  background: conic-gradient(from 180deg, transparent, rgba(250, 204, 21, 0.22), transparent, rgba(37, 99, 235, 0.28), transparent);
  animation: ctaSpin 16s linear infinite;
}

.identity-card > * {
  position: relative;
}

.identity-card span {
  display: inline-flex;
  margin-bottom: 58px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.identity-card h3 {
  color: #fff;
  font-size: 27px;
  font-weight: 760;
  line-height: 1.06;
  letter-spacing: -0.045em;
}

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

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

.solution-card {
  min-height: 372px;
  display: flex;
  flex-direction: column;
}

.solution-card.featured {
  border-color: rgba(250, 204, 21, 0.42);
  background:
    radial-gradient(circle at 50% 0%, rgba(250, 204, 21, 0.22), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05));
}

.icon,
.product-logo {
  position: relative;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  margin-bottom: 44px;
  border-radius: 18px;
  color: #0b0b0f;
  background: var(--yellow);
  font-size: 15px;
  font-weight: 950;
  box-shadow: 0 18px 58px rgba(250, 204, 21, 0.24);
}

.product-logo {
  object-fit: contain;
  padding: 7px;
  color: initial;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.34), transparent 34%),
    rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 70px rgba(56, 189, 248, 0.18);
  filter: drop-shadow(0 0 28px rgba(56, 189, 248, 0.28));
}

.custom-app .product-logo {
  background: rgba(255, 255, 255, 0.12);
}

.ecosystem-stage {
  position: relative;
  min-height: 520px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  overflow: hidden;
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: 38px;
  background:
    radial-gradient(circle at 8% 0%, rgba(250, 204, 21, 0.15), transparent 32%),
    radial-gradient(circle at 90% 10%, rgba(56, 189, 248, 0.18), transparent 34%),
    rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.ecosystem-stage > img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  opacity: 0.86;
  filter: saturate(1.16) contrast(1.02);
}

.stage-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 58px);
  background: linear-gradient(90deg, rgba(11, 11, 15, 0.52), rgba(11, 11, 15, 0.90) 22%);
}

.stage-content h3 {
  margin: 0 0 28px;
  color: #fff;
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1.08;
  font-weight: 760;
  letter-spacing: -0.02em;
}

.stage-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.stage-tags span {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.07);
  font-size: 12px;
  font-weight: 850;
}

.solution-card ul,
.comparison ul {
  position: relative;
  display: grid;
  gap: 12px;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.solution-card li,
.comparison li {
  position: relative;
  padding-left: 22px;
}

.solution-card li::before,
.comparison li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 18px rgba(250, 204, 21, 0.7);
}

.media-lab {
  width: min(100%, 1320px);
}

.media-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.08fr;
  gap: 24px;
  align-items: center;
}

.media-copy {
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: clamp(28px, 5vw, 54px);
  background:
    radial-gradient(circle at 0% 0%, rgba(250, 204, 21, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04));
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.media-copy h2,
.build-card h2 {
  color: #fff;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.08;
  font-weight: 780;
  letter-spacing: -0.02em;
}

.media-copy p,
.build-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.58;
}

.media-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 28px;
}

.media-points span {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 13px 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  font-size: 13px;
  font-weight: 850;
}

.media-visual {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 38px;
  box-shadow: var(--shadow);
  background: #05070d;
}

.media-visual img,
.build-card > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.05);
  transform: scale(1.02);
}

.media-visual::after,
.build-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 42%, rgba(5, 7, 13, 0.56)),
    radial-gradient(circle at 85% 12%, rgba(250, 204, 21, 0.16), transparent 26%);
}

.video-chip {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 12px 14px;
  color: #fff;
  background: rgba(11, 11, 15, 0.62);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
  font-size: 13px;
  font-weight: 950;
}

.chip-a {
  left: 24px;
  top: 24px;
}

.chip-b {
  right: 26px;
  top: 46%;
}

.chip-c {
  left: 42%;
  bottom: 24px;
  color: #0b0b0f;
  background: var(--yellow);
}

.build-lab {
  width: min(100%, 1320px);
}

.build-card {
  position: relative;
  min-height: 660px;
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 42px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.build-card > img {
  min-height: 660px;
}

.build-card > div {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 5vw, 62px);
  background:
    linear-gradient(90deg, rgba(11, 11, 15, 0.86), rgba(11, 11, 15, 0.72)),
    radial-gradient(circle at 70% 20%, rgba(56, 189, 248, 0.16), transparent 42%);
}

.build-card .btn {
  width: fit-content;
  margin-top: 24px;
}

.comparison {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
}

.comparison > div {
  overflow: hidden;
  border-radius: 34px;
  padding: clamp(28px, 5vw, 54px);
}

.comparison .before {
  border-color: rgba(248, 113, 113, 0.24);
}

.comparison .after {
  border-color: rgba(250, 204, 21, 0.38);
  background:
    radial-gradient(circle at 80% 0%, rgba(250, 204, 21, 0.18), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.05));
}

.comparison p {
  color: var(--yellow);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.benefit-marquee {
  width: 100vw;
  margin: 56px 0 0 calc(50% - 50vw);
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.benefit-marquee div {
  display: flex;
  width: max-content;
  animation: marquee 22s linear infinite;
}

.benefit-marquee span {
  padding: 24px 30px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.32);
  font-size: clamp(26px, 4vw, 56px);
  font-weight: 950;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

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

.proof-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 18px;
}

.metric-card {
  min-height: 220px;
}

.metric-card strong {
  display: block;
  color: #fff;
  font-size: clamp(46px, 6vw, 76px);
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.metric-card span {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-weight: 800;
}

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

.testimonial {
  min-height: 260px;
}

.testimonial strong,
.testimonial span {
  position: relative;
  display: block;
}

.testimonial strong {
  margin-top: 28px;
  color: #fff;
}

.testimonial span {
  margin-top: 6px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 850;
}

.final-cta {
  width: min(100%, 1260px);
}

.cta-shell {
  position: relative;
  overflow: hidden;
  border-radius: 42px;
  padding: clamp(34px, 7vw, 86px);
  text-align: center;
}

.cta-shell::before {
  content: "";
  position: absolute;
  inset: -30%;
  background:
    radial-gradient(circle at 50% 10%, rgba(250, 204, 21, 0.28), transparent 28%),
    conic-gradient(from 90deg, transparent, rgba(34, 211, 238, 0.16), transparent, rgba(139, 92, 246, 0.18), transparent);
  animation: ctaSpin 14s linear infinite;
}

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

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

.cta-shell p {
  max-width: 760px;
  margin-inline: auto;
}

.cta-shell .btn {
  margin-top: 22px;
}

.lead-form {
  position: relative;
  z-index: 1;
  max-width: 860px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 30px auto 0;
  text-align: left;
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: rgba(248, 250, 252, 0.72);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 14px 15px;
  color: #fff;
  outline: 0;
  background: rgba(0, 0, 0, 0.26);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  font: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.lead-form textarea {
  min-height: 104px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: rgba(250, 204, 21, 0.62);
  background: rgba(0, 0, 0, 0.36);
  box-shadow: 0 0 0 4px rgba(250, 204, 21, 0.10);
}

.lead-form-message,
.lead-form .btn,
.form-status {
  grid-column: 1 / -1;
}

.lead-form .btn {
  width: 100%;
}

.lead-form .btn:disabled {
  opacity: 0.72;
  transform: none;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--yellow);
  text-align: center;
  font-size: 13px;
  font-weight: 850;
}

.form-status[data-tone="success"] {
  color: #7dd3fc;
}

.form-status[data-tone="error"] {
  color: #fca5a5;
}

.form-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.site-footer {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding: 34px 22px 54px;
  color: var(--muted);
}

.site-footer div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 900;
}

.site-footer img {
  width: 34px;
  height: 34px;
}

.site-footer p {
  margin: 0;
  font-size: 14px;
}

.site-footer a {
  color: var(--yellow);
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 760ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 760ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

@media (max-width: 1080px) {
  .hero-grid,
  .comparison,
  .media-grid,
  .build-card,
  .ecosystem-stage {
    grid-template-columns: 1fr;
  }

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

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

  .chaos-grid,
  .proof-grid,
  .testimonials {
    grid-template-columns: 1fr;
  }

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

  .build-card > img {
    min-height: 440px;
  }

  .ecosystem-stage > img {
    min-height: 360px;
  }
}

@media (max-width: 760px) {
  body,
  button,
  a {
    cursor: auto;
  }

  .cursor-dot,
  .cursor-ring {
    display: none;
  }

  .site-header {
    inset: 10px 10px auto;
    width: calc(100% - 20px);
    grid-template-columns: auto auto;
    border-radius: 24px;
  }

  .desktop-nav {
    display: none;
  }

  .header-cta {
    padding: 11px 13px;
    font-size: 13px;
  }

  .section {
    padding: 74px 16px;
  }

  .hero {
    min-height: auto;
    padding-top: 120px;
  }

  h1 {
    font-size: clamp(28px, 8.4vw, 34px);
    line-height: 1.08;
  }

  .hero-lead {
    font-size: 16px;
  }

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

  .btn {
    width: 100%;
  }

  .hero-proof {
    display: grid;
  }

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

  .command-panel {
    min-height: 540px;
    padding: 16px;
    border-radius: 28px;
  }

  .typing-line strong {
    font-size: 34px;
  }

  .radar {
    height: 300px;
  }

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

  .floating-card {
    display: none;
  }

  .solution-grid,
  .identity-grid {
    grid-template-columns: 1fr;
  }

  .solution-card {
    min-height: auto;
  }

  .identity-card {
    min-height: auto;
  }

  .identity-card span {
    margin-bottom: 54px;
  }

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

  .media-points {
    grid-template-columns: 1fr;
  }

  .chip-b,
  .chip-c {
    display: none;
  }

  .build-card {
    min-height: auto;
  }

  .build-card > img {
    min-height: 310px;
  }

  .ecosystem-stage {
    min-height: auto;
  }

  .ecosystem-stage > img {
    min-height: 240px;
  }

  .stage-content {
    background: rgba(11, 11, 15, 0.88);
  }

  .build-card .btn {
    width: 100%;
  }

  .section-heading h2,
  .comparison h2,
  .cta-shell h2 {
    font-size: clamp(24px, 7.4vw, 31px);
  }

  .lead-form {
    grid-template-columns: 1fr;
  }

  .benefit-marquee span {
    padding: 20px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
