:root {
  --ink: #030b16;
  --navy: #061426;
  --navy-2: #081a31;
  --panel: rgba(9, 24, 44, .74);
  --panel-solid: #09182c;
  --text: #f5f9ff;
  --muted: #a5b6ca;
  --muted-2: #71869f;
  --line: rgba(139, 194, 255, .14);
  --blue: #168dff;
  --blue-2: #3157ff;
  --cyan: #50dcff;
  --violet: #7258ff;
  --success: #48e2aa;
  --danger: #ff7d91;
  --shadow: 0 32px 100px rgba(0, 0, 0, .38);
  --radius: 28px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  font-family: Inter, system-ui, sans-serif;
  color: var(--text);
  line-height: 1.65;
  background:
    radial-gradient(circle at 13% 5%, rgba(25, 118, 255, .16), transparent 22rem),
    radial-gradient(circle at 92% 15%, rgba(63, 213, 255, .10), transparent 25rem),
    linear-gradient(180deg, #020913 0%, #061426 45%, #020a14 100%);
}

body.menu-open { overflow: hidden; }

::selection { color: #fff; background: rgba(22, 141, 255, .55); }

a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
img { max-width: 100%; }

.noise {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: .025;
  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='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.72'/%3E%3C/svg%3E");
}

.cursor-glow {
  position: fixed;
  left: 0;
  top: 0;
  z-index: -1;
  width: 580px;
  height: 580px;
  border-radius: 50%;
  pointer-events: none;
  opacity: .12;
  transform: translate3d(-50%, -50%, 0);
  background: radial-gradient(circle, rgba(31, 139, 255, .8), transparent 66%);
  filter: blur(18px);
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition: background .3s ease, border-color .3s ease, transform .3s ease;
}

.header.scrolled {
  background: rgba(3, 11, 22, .78);
  border-bottom: 1px solid rgba(255,255,255,.06);
  backdrop-filter: blur(18px);
}

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

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(25, 132, 255, .28));
}

.logo span {
  font: 800 .98rem/1 Manrope, sans-serif;
  letter-spacing: .24em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 29px;
  color: #aebdd0;
  font-size: .91rem;
}

.desktop-nav a { position: relative; transition: color .2s ease; }
.desktop-nav a:hover { color: #fff; }
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -8px;
  height: 1px;
  background: var(--cyan);
  transition: right .25s ease;
}
.desktop-nav a:hover::after { right: 0; }

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 25px;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  background: linear-gradient(120deg, var(--blue), var(--blue-2) 68%, var(--violet));
  box-shadow: 0 16px 42px rgba(29, 102, 255, .30);
  transition: transform .25s ease, box-shadow .25s ease, opacity .2s ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -45%;
  width: 30%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.28), transparent);
  transition: left .6s ease;
}

.button:hover { transform: translateY(-2px); box-shadow: 0 20px 54px rgba(29, 102, 255, .40); }
.button:hover::before { left: 120%; }
.button:disabled { cursor: wait; opacity: .65; transform: none; }

.button-small { min-height: 45px; padding: 0 18px; font-size: .88rem; }

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}
.menu-toggle span {
  width: 18px;
  height: 1.5px;
  border-radius: 10px;
  background: #fff;
  transition: transform .25s ease;
}
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.75px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.75px) rotate(-45deg); }

.mobile-nav {
  display: none;
  padding: 4px 20px 24px;
  background: rgba(3, 11, 22, .96);
  border-top: 1px solid rgba(255,255,255,.05);
  backdrop-filter: blur(18px);
}
.mobile-nav a {
  display: block;
  padding: 14px 0;
  color: #cbd8e8;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.mobile-nav.open { display: block; }

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 130px 0 85px;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: .34;
  background-image:
    linear-gradient(rgba(93, 157, 226, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(93, 157, 226, .07) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: linear-gradient(to bottom, black 10%, transparent 80%);
}

.hero-aurora {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  filter: blur(20px);
  animation: breathe 9s ease-in-out infinite alternate;
}
.aurora-a {
  width: 520px; height: 520px;
  top: 3%; left: -11%;
  background: radial-gradient(circle, rgba(27, 99, 255, .28), transparent 66%);
}
.aurora-b {
  width: 620px; height: 620px;
  right: -11%; top: 4%;
  background: radial-gradient(circle, rgba(42, 218, 255, .18), transparent 68%);
  animation-delay: -3s;
}

@keyframes breathe {
  from { transform: scale(.92) translate3d(-8px, 0, 0); opacity: .68; }
  to { transform: scale(1.08) translate3d(10px, -8px, 0); opacity: 1; }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 74px;
}

.kicker, .eyebrow {
  color: #77d6ff;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.kicker {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 23px;
  padding: 8px 13px;
  border: 1px solid rgba(93, 195, 255, .17);
  border-radius: 999px;
  background: rgba(47, 121, 255, .07);
}

.kicker-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 14px var(--cyan);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 50% { opacity: .35; transform: scale(.75); } }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: Manrope, sans-serif;
  letter-spacing: -.045em;
  line-height: 1.05;
}
h1 {
  max-width: 780px;
  margin-bottom: 26px;
  font-size: clamp(3.25rem, 6.4vw, 6rem);
  font-weight: 700;
}
h2 {
  margin-bottom: 21px;
  font-size: clamp(2.25rem, 4.5vw, 4rem);
}
h3 { margin-bottom: 12px; font-size: 1.35rem; }

.gradient-text {
  color: transparent;
  background: linear-gradient(100deg, #f3fbff 0%, #55dfff 44%, #4c6aff 96%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-lead {
  max-width: 690px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 23px;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #dce9f8;
  font-weight: 600;
}
.link-arrow span { transition: transform .25s ease; }
.link-arrow:hover span { transform: translate(3px, 2px); }

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 46px;
  padding-top: 27px;
  border-top: 1px solid rgba(255,255,255,.07);
}
.hero-proof strong, .hero-proof span { display: block; }
.hero-proof strong { margin-bottom: 5px; font: 700 .91rem Manrope, sans-serif; }
.hero-proof span { color: var(--muted-2); font-size: .78rem; line-height: 1.45; }

.workflow-wrap { position: relative; min-width: 0; }
.workflow-glow {
  position: absolute;
  inset: 8% -8% -6%;
  z-index: -1;
  border-radius: 44px;
  opacity: .45;
  filter: blur(36px);
  background: linear-gradient(145deg, rgba(37, 121, 255, .42), rgba(72, 219, 255, .08));
}

.workflow-card {
  position: relative;
  padding: 27px;
  overflow: hidden;
  border: 1px solid rgba(154, 206, 255, .14);
  border-radius: 31px;
  background:
    linear-gradient(180deg, rgba(10, 29, 53, .92), rgba(4, 16, 31, .88)),
    radial-gradient(circle at 100% 0%, rgba(70, 192, 255, .16), transparent 35%);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  transform-style: preserve-3d;
  transition: transform .18s ease-out;
}

.workflow-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 35%, rgba(255,255,255,.05), transparent 66%);
  transform: translateX(-110%);
  animation: panelShine 7s ease-in-out infinite;
}
@keyframes panelShine { 45%, 100% { transform: translateX(110%); } }

.workflow-top {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.workflow-top .eyebrow { display: block; margin-bottom: 6px; }
.workflow-top strong { font: 700 1.07rem Manrope, sans-serif; }

.live-pill {
  min-width: max-content;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  border: 1px solid rgba(72,226,170,.17);
  border-radius: 999px;
  color: #8bf0c9;
  background: rgba(72,226,170,.07);
  font-size: .74rem;
  font-weight: 700;
}
.live-pill i {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 11px var(--success);
}

.workflow-canvas { position: relative; height: 385px; margin-top: 10px; }
.flow-svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.flow-track {
  stroke: rgba(110, 172, 235, .16);
  stroke-width: 2;
  stroke-dasharray: 7 9;
}
.flow-runner {
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 48 430;
  animation: route 4.2s linear infinite;
}
@keyframes route { to { stroke-dashoffset: -478; } }

.flow-node {
  position: absolute;
  z-index: 2;
  width: 205px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px;
  border: 1px solid rgba(156, 209, 255, .13);
  border-radius: 17px;
  background: rgba(7, 23, 42, .92);
  box-shadow: 0 15px 40px rgba(0,0,0,.26);
}
.node-a { left: 0; top: 33px; }
.node-b { right: 2px; top: 145px; }
.node-c { left: 14px; bottom: 12px; }
.node-icon {
  flex: 0 0 auto;
  width: 35px; height: 35px;
  display: grid; place-items: center;
  border-radius: 11px;
  color: #c8eeff;
  background: linear-gradient(145deg, rgba(74, 206, 255, .22), rgba(46, 78, 255, .2));
  font-size: .72rem;
  font-weight: 800;
}
.flow-node strong, .flow-node small { display: block; }
.flow-node strong { font: 700 .85rem Manrope, sans-serif; }
.flow-node small { margin-top: 2px; color: #7f95ad; font-size: .68rem; }

.floating-chip {
  position: absolute;
  z-index: 3;
  min-width: 145px;
  padding: 11px 13px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  background: rgba(12, 32, 56, .86);
  box-shadow: 0 15px 35px rgba(0,0,0,.24);
  backdrop-filter: blur(12px);
  animation: float 5s ease-in-out infinite;
}
.floating-chip span, .floating-chip strong { display: block; }
.floating-chip span { color: #8095ad; font-size: .64rem; }
.floating-chip strong { margin-top: 2px; font-size: .75rem; }
.chip-a { right: 8px; top: 52px; }
.chip-b { right: 4px; bottom: 14px; animation-delay: -2.4s; }
@keyframes float { 50% { transform: translateY(-7px); } }

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 24px;
  width: 27px; height: 43px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  transform: translateX(-50%);
}
.scroll-cue span {
  position: absolute;
  left: 50%; top: 8px;
  width: 3px; height: 7px;
  border-radius: 5px;
  background: #fff;
  animation: scrollCue 2s ease infinite;
}
@keyframes scrollCue {
  0% { opacity: 0; transform: translate(-50%, 0); }
  30% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 17px); }
}

.statement {
  padding: 95px 0;
  overflow: hidden;
  border-block: 1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.018);
}
.statement-inner { text-align: center; }
.statement p { margin-bottom: 7px; color: #8ea2b9; font-size: 1.05rem; }
.statement-words {
  min-height: 1.18em;
  position: relative;
  font: 700 clamp(2.5rem, 6vw, 5.6rem)/1.18 Manrope, sans-serif;
  letter-spacing: -.055em;
}
.statement-words span {
  position: absolute;
  inset: 0;
  opacity: 0;
  color: transparent;
  background: linear-gradient(95deg, #fff, #66e3ff 52%, #4b69ff);
  background-clip: text;
  -webkit-background-clip: text;
  animation: wordCycle 8s infinite;
}
.statement-words span:nth-child(2) { animation-delay: 2s; }
.statement-words span:nth-child(3) { animation-delay: 4s; }
.statement-words span:nth-child(4) { animation-delay: 6s; }
@keyframes wordCycle {
  0% { opacity: 0; transform: translateY(20px); filter: blur(8px); }
  8%, 21% { opacity: 1; transform: translateY(0); filter: blur(0); }
  28%, 100% { opacity: 0; transform: translateY(-20px); filter: blur(8px); }
}

.section { padding: 112px 0; }

.section-heading {
  display: grid;
  grid-template-columns: 1.08fr .72fr;
  align-items: end;
  gap: 72px;
  margin-bottom: 55px;
}
.section-heading.wide { grid-template-columns: 1.25fr .6fr; }
.section-heading .eyebrow,
.use-cases-header .eyebrow,
.method-copy .eyebrow,
.promise-box .eyebrow,
.contact-copy .eyebrow { display: block; margin-bottom: 15px; }
.section-heading h2 { margin-bottom: 0; }
.section-heading p { margin-bottom: 4px; color: var(--muted); }
.section-heading em { color: #79dcff; font-style: normal; }

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pain-card {
  position: relative;
  min-height: 315px;
  padding: 31px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(11, 29, 51, .68), rgba(5, 16, 30, .58));
  box-shadow: 0 22px 65px rgba(0,0,0,.16);
}
.pain-card::before {
  content: "";
  position: absolute;
  width: 190px; height: 190px;
  right: -70px; top: -70px;
  border-radius: 50%;
  opacity: .12;
  background: var(--cyan);
  filter: blur(45px);
}
.pain-card h3 { margin-top: 59px; }
.pain-card p { margin-bottom: 0; color: var(--muted); }

.pain-orbit {
  position: relative;
  width: 58px; height: 58px;
  border: 1px solid rgba(83, 209, 255, .24);
  border-radius: 50%;
  animation: spin 7s linear infinite;
}
.pain-orbit::before, .pain-orbit::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(75, 105, 255, .24);
  border-radius: 50%;
}
.pain-orbit::after { inset: 20px; background: linear-gradient(145deg, var(--cyan), var(--blue-2)); border: 0; }
.pain-orbit span {
  position: absolute;
  left: 50%; top: -4px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 15px var(--cyan);
}
.orbit-two { animation-direction: reverse; animation-duration: 9s; }
.orbit-three { animation-duration: 11s; }
@keyframes spin { to { transform: rotate(360deg); } }

.solutions { position: relative; }
.solutions::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 60% 35%, rgba(39, 90, 255, .10), transparent 32rem);
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.solution-card {
  position: relative;
  min-height: 280px;
  padding: 29px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(150deg, rgba(11, 31, 55, .77), rgba(4, 16, 30, .67));
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}
.solution-card:hover {
  transform: translateY(-5px);
  border-color: rgba(91, 196, 255, .28);
  background: linear-gradient(150deg, rgba(13, 38, 68, .86), rgba(5, 19, 36, .74));
}
.solution-card.featured {
  min-height: 365px;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 72px 1fr .85fr;
  align-items: center;
  gap: 23px;
}
.card-number { color: #4c6481; font: 700 .77rem Manrope, sans-serif; letter-spacing: .12em; }
.solution-label {
  display: inline-block;
  margin-bottom: 17px;
  color: #78d9ff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.solution-card p { max-width: 600px; margin-bottom: 0; color: var(--muted); }

.scan-visual {
  position: relative;
  height: 245px;
  overflow: hidden;
  border: 1px solid rgba(118, 189, 255, .11);
  border-radius: 22px;
  background:
    linear-gradient(rgba(95, 167, 241, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(95, 167, 241, .08) 1px, transparent 1px),
    rgba(2, 12, 25, .44);
  background-size: 34px 34px;
}
.scan-visual span {
  position: absolute;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(81,220,255,.16), rgba(37,115,255,.7));
}
.scan-visual span:nth-child(1) { top: 46px; left: 35px; width: 55%; }
.scan-visual span:nth-child(2) { top: 88px; right: 28px; width: 38%; }
.scan-visual span:nth-child(3) { top: 136px; left: 56px; width: 70%; }
.scan-visual span:nth-child(4) { bottom: 42px; left: 28px; width: 42%; }
.scan-visual i {
  position: absolute;
  inset: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  box-shadow: 0 0 18px rgba(80,220,255,.8);
  animation: scan 3.5s ease-in-out infinite;
}
@keyframes scan { 0%,100% { top: 0; opacity: .2; } 50% { top: calc(100% - 3px); opacity: 1; } }

.use-cases {
  padding-top: 70px;
  overflow: hidden;
  border-block: 1px solid rgba(255,255,255,.055);
  background: rgba(255,255,255,.018);
}
.use-cases-header { max-width: 800px; margin-bottom: 52px; }
.marquee { width: 100%; overflow: hidden; mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent); }
.marquee-track {
  width: max-content;
  display: flex;
  gap: 14px;
  animation: marquee 35s linear infinite;
}
.marquee span {
  padding: 13px 19px;
  border: 1px solid rgba(120, 191, 255, .12);
  border-radius: 999px;
  color: #bdd0e6;
  background: rgba(255,255,255,.025);
  white-space: nowrap;
  font-size: .88rem;
}
@keyframes marquee { to { transform: translateX(-50%); } }

.method-layout {
  display: grid;
  grid-template-columns: .77fr 1.23fr;
  gap: 95px;
  align-items: start;
}
.method-copy { position: sticky; top: 135px; }
.method-copy p { max-width: 475px; color: var(--muted); }
.method-copy .link-arrow { margin-top: 15px; }
.method-list { border-top: 1px solid rgba(255,255,255,.08); }
.method-list article {
  display: grid;
  grid-template-columns: 65px 1fr;
  gap: 23px;
  padding: 34px 3px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.method-list article > span { color: #6ccfff; font: 700 .77rem Manrope, sans-serif; }
.method-list h3 { margin-bottom: 7px; }
.method-list p { margin-bottom: 0; color: var(--muted); }

.promise { padding-top: 60px; }
.promise-box {
  position: relative;
  display: grid;
  grid-template-columns: 110px 1fr .75fr;
  align-items: center;
  gap: 40px;
  padding: 54px;
  overflow: hidden;
  border: 1px solid rgba(132, 201, 255, .15);
  border-radius: 36px;
  background:
    radial-gradient(circle at 0% 0%, rgba(51, 112, 255, .21), transparent 34%),
    radial-gradient(circle at 95% 110%, rgba(65, 219, 255, .12), transparent 34%),
    linear-gradient(150deg, rgba(10, 31, 57, .91), rgba(4, 16, 30, .90));
  box-shadow: var(--shadow);
}
.promise-symbol img { width: 104px; filter: drop-shadow(0 20px 30px rgba(24, 125, 255, .22)); }
.promise-box h2 { margin-bottom: 0; font-size: clamp(2rem, 3.8vw, 3.3rem); }
.promise-box > p { margin-bottom: 0; color: var(--muted); }

.contact-section { position: relative; }
.contact-section::before {
  content: "";
  position: absolute;
  width: 640px; height: 640px;
  right: -240px; bottom: -150px;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(40, 146, 255, .17), transparent 65%);
}
.contact-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  align-items: start;
  gap: 85px;
}
.contact-copy { position: sticky; top: 135px; }
.contact-copy p { max-width: 470px; color: var(--muted); }
.contact-direct {
  display: grid;
  gap: 4px;
  margin-top: 34px;
  color: var(--muted-2);
  font-size: .9rem;
}
.contact-direct a { width: max-content; color: #91dfff; font-weight: 600; }

.form-card {
  padding: 34px;
  border: 1px solid rgba(137, 202, 255, .15);
  border-radius: 31px;
  background: linear-gradient(160deg, rgba(11, 31, 55, .82), rgba(4, 15, 29, .76));
  box-shadow: var(--shadow);
}
form { display: grid; gap: 20px; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 17px; }
label { display: grid; gap: 8px; }
label > span { color: #dfeafa; font-size: .87rem; font-weight: 600; }
label b { color: #73d8ff; }
label em { margin-left: 4px; color: #71869f; font-size: .74rem; font-style: normal; font-weight: 400; }

input, textarea {
  width: 100%;
  border: 1px solid rgba(133, 192, 248, .13);
  border-radius: 14px;
  outline: 0;
  color: #fff;
  background: rgba(255,255,255,.035);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
input { min-height: 52px; padding: 0 15px; }
textarea { min-height: 155px; padding: 14px 15px; resize: vertical; }
input::placeholder, textarea::placeholder { color: #63768d; }
input:focus, textarea:focus {
  border-color: rgba(67, 188, 255, .65);
  background: rgba(255,255,255,.05);
  box-shadow: 0 0 0 4px rgba(23, 140, 255, .10);
}
label.invalid input, label.invalid textarea {
  border-color: rgba(255, 125, 145, .72);
  box-shadow: 0 0 0 4px rgba(255, 125, 145, .08);
}
.field-error { min-height: 0; color: var(--danger); font-size: .74rem; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px; height: 1px; overflow: hidden; }

.captcha-shell {
  min-height: 80px;
  display: flex;
  align-items: center;
  padding: 6px 0;
  overflow-x: auto;
}
.privacy-note { margin: -4px 0 0; color: #71869f; font-size: .76rem; line-height: 1.5; }
.form-status {
  display: none;
  padding: 13px 15px;
  border-radius: 13px;
  font-size: .86rem;
}
.form-status.success {
  display: block;
  color: #a5f4d4;
  border: 1px solid rgba(72,226,170,.16);
  background: rgba(72,226,170,.07);
}
.form-status.error {
  display: block;
  color: #ffabb8;
  border: 1px solid rgba(255,125,145,.16);
  background: rgba(255,125,145,.07);
}

.button-submit { width: 100%; margin-top: 2px; }
.submit-loader {
  display: none;
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
.button-submit.loading .submit-loader { display: inline-block; }
.button-submit.loading .submit-label { opacity: .72; }

footer {
  padding: 68px 0 30px;
  border-top: 1px solid rgba(255,255,255,.06);
  background: rgba(1, 7, 14, .55);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .65fr .9fr .75fr;
  gap: 46px;
}
.footer-brand p { max-width: 320px; margin: 18px 0 0; color: var(--muted-2); font-size: .86rem; }
.footer-grid > div:not(.footer-brand) { display: grid; align-content: start; gap: 8px; }
.footer-grid strong { margin-bottom: 7px; font: 700 .82rem Manrope, sans-serif; }
.footer-grid a, .footer-grid span { color: #8195ad; font-size: .83rem; }
.footer-grid a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 50px;
  padding-top: 23px;
  border-top: 1px solid rgba(255,255,255,.055);
  color: #60758d;
  font-size: .76rem;
}

/* Progressive reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity .85s cubic-bezier(.2,.7,.2,1),
    transform .85s cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--reveal-delay, 0ms);
}
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

@media (max-width: 1020px) {
  .desktop-nav, .desktop-cta { display: none; }
  .menu-toggle { display: flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-copy { max-width: 830px; }
  .workflow-wrap { max-width: 650px; margin-inline: auto; width: 100%; }
  .section-heading, .section-heading.wide { grid-template-columns: 1fr; gap: 22px; }
  .pain-grid { grid-template-columns: 1fr 1fr; }
  .pain-card:last-child { grid-column: 1 / -1; }
  .method-layout, .contact-grid { grid-template-columns: 1fr; gap: 58px; }
  .method-copy, .contact-copy { position: static; }
  .promise-box { grid-template-columns: 90px 1fr; }
  .promise-box > p { grid-column: 2; }
  .footer-grid { grid-template-columns: 1.2fr repeat(2, .8fr); }
  .footer-grid > div:last-child { grid-column: 2; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 28px, 1180px); }
  .nav { min-height: 74px; }
  .logo img { width: 39px; height: 39px; }
  .hero { min-height: auto; padding: 115px 0 82px; }
  h1 { font-size: clamp(2.8rem, 13vw, 4.4rem); }
  h2 { font-size: 2.25rem; }
  .hero-proof { grid-template-columns: 1fr; }
  .hero-proof div { display: grid; grid-template-columns: 80px 1fr; gap: 10px; }
  .workflow-card { padding: 19px; }
  .workflow-canvas { height: 420px; }
  .flow-node { width: 185px; }
  .node-b { right: 0; top: 166px; }
  .node-c { left: 0; }
  .chip-a { right: -2px; top: 83px; }
  .chip-b { right: -2px; bottom: 7px; }
  .scroll-cue { display: none; }
  .statement { padding: 72px 0; }
  .section { padding: 80px 0; }
  .pain-grid, .solutions-grid { grid-template-columns: 1fr; }
  .pain-card:last-child { grid-column: auto; }
  .solution-card.featured {
    grid-column: auto;
    grid-template-columns: 1fr;
  }
  .scan-visual { height: 210px; }
  .method-list article { grid-template-columns: 44px 1fr; }
  .promise-box {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 30px;
  }
  .promise-symbol img { width: 82px; }
  .promise-box > p { grid-column: auto; }
  .form-card { padding: 22px; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .cursor-glow { display: none; }
}

@media (max-width: 430px) {
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-actions .link-arrow { justify-content: center; }
  .workflow-canvas { height: 450px; }
  .flow-node { width: 168px; padding: 12px; }
  .flow-node small { max-width: 100px; }
  .floating-chip { min-width: 128px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:last-child { grid-column: auto; }
}

/* Keep the experience accessible for people who disable motion. */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .statement-words span:first-child { opacity: 1; position: static; }
  .statement-words span:not(:first-child) { display: none; }
}
