:root {
  --bg: #09090d;
  --bg-soft: #0f0f16;
  --panel: #12121b;
  --panel-2: #171722;
  --text: #f2f0f7;
  --muted: #a8a4b4;
  --line: rgba(255, 255, 255, .09);
  --violet: #9b8cff;
  --violet-2: #c6baff;
  --lilac: #dfc9ff;
  --green: #80d6b0;
  --amber: #e6c583;
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 68% 12%, rgba(117, 93, 219, .12), transparent 30%),
    var(--bg);
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }

.top-stripe {
  position: fixed;
  inset: 0 0 auto;
  height: 3px;
  z-index: 100;
  background: linear-gradient(90deg, #745cff, #b79cff 48%, #74b4ff);
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .025;
  z-index: 99;
  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='.75'/%3E%3C/svg%3E");
}

.section-shell,
.site-header,
.site-footer {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 20;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  letter-spacing: .16em;
  font-size: 13px;
}
.brand-mark { width: 31px; fill: currentColor; }

.desktop-nav {
  display: flex;
  gap: 30px;
  color: var(--muted);
  font-size: 14px;
}
.desktop-nav a:hover { color: var(--text); }

.nav-cta {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.035);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
  transition: .2s ease;
}
.nav-cta:hover { border-color: rgba(198,186,255,.5); transform: translateY(-1px); }

.hero {
  min-height: 860px;
  padding: 110px 0 90px;
  position: relative;
  text-align: center;
}
.hero > *:not(.hero-glow) { position: relative; z-index: 2; }

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.glow-one {
  width: 360px; height: 360px;
  background: rgba(137, 108, 255, .16);
  left: 30%; top: 12%;
}
.glow-two {
  width: 260px; height: 260px;
  background: rgba(88, 143, 255, .09);
  right: 18%; top: 24%;
}

.eyebrow, .section-kicker {
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--violet-2);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(155, 140, 255, .2);
  background: rgba(155, 140, 255, .06);
  padding: 8px 12px;
  border-radius: 999px;
}
.eyebrow span {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--violet-2);
  box-shadow: 0 0 15px var(--violet);
}

h1, h2, h3 {
  font-family: "Manrope", sans-serif;
  margin-top: 0;
}
h1 {
  max-width: 930px;
  margin: 28px auto 22px;
  font-size: clamp(52px, 7.3vw, 96px);
  line-height: .98;
  letter-spacing: -.055em;
}
h1 em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 1px rgba(223,201,255,.72);
  text-shadow: 0 0 30px rgba(155,140,255,.15);
}

.hero-copy {
  max-width: 710px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 19px;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 12px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: .22s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  color: #111018;
  background: linear-gradient(135deg, var(--lilac), var(--violet-2));
  box-shadow: 0 15px 45px rgba(155,140,255,.18);
}
.button-ghost {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255,255,255,.025);
}

.trust-row {
  margin: 28px auto 58px;
  color: #817d8c;
  font-size: 13px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
}
.trust-row span::before { content: "•"; color: var(--violet); margin-right: 8px; }

.dashboard-card {
  max-width: 1010px;
  margin: 0 auto;
  padding: 24px;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.012)),
    #0d0d13;
  box-shadow: 0 40px 100px rgba(0,0,0,.5);
  position: relative;
}
.dashboard-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(198,186,255,.22), transparent 24%, transparent 75%, rgba(116,180,255,.1));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 1px;
}
.dashboard-top {
  display: flex; justify-content: space-between; gap: 16px; align-items: flex-start;
  margin-bottom: 20px;
}
.micro-label { margin: 0 0 5px; font-size: 10px; letter-spacing: .16em; color: #706b7d; }
.dashboard-top h2 { margin: 0; font-size: 24px; }
.live-pill {
  display: flex; align-items: center; gap: 7px;
  border: 1px solid rgba(128,214,176,.2);
  color: var(--green);
  padding: 6px 10px; border-radius: 999px; font-size: 12px;
}
.live-pill i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 12px var(--green); }

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.metric-grid article {
  background: rgba(255,255,255,.025);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
}
.metric-grid p { margin: 0 0 14px; color: var(--muted); font-size: 13px; }
.metric-grid strong { display: block; font-family: "Manrope"; font-size: 28px; }
.metric-grid span { color: #777383; font-size: 12px; }

.pipeline {
  margin-top: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.pipeline-head, .pipeline-row {
  display: grid;
  grid-template-columns: 1.65fr .8fr .45fr;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
}
.pipeline-head {
  background: rgba(255,255,255,.025);
  color: #6f6b79;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.pipeline-row {
  border-top: 1px solid var(--line);
  font-size: 13px;
}
.pipeline-row b, .pipeline-row small { display: block; }
.pipeline-row small { color: #777383; margin-top: 2px; }
.status {
  justify-self: start;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 11px;
}
.status.amber { background: rgba(230,197,131,.08); color: var(--amber); }
.status.violet { background: rgba(155,140,255,.1); color: var(--violet-2); }
.status.green { background: rgba(128,214,176,.09); color: var(--green); }

.problem, .process, .contact { padding: 120px 0; }
.split-heading {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 80px;
  align-items: end;
}
.split-heading h2, .fit-grid h2, .contact h2 {
  margin-bottom: 0;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.04;
  letter-spacing: -.045em;
}
.split-heading p, .fit-grid > div > p, .contact-panel > div > p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.loss-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 14px;
  margin-top: 58px;
}
.loss-grid article {
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(255,255,255,.035), rgba(255,255,255,.01));
}
.loss-grid article > span { color: #615d6c; font-family: "Manrope"; font-weight: 700; }
.loss-grid h3 { font-size: 24px; margin: 70px 0 8px; }
.loss-grid p { color: var(--muted); margin: 0; }

.system-section, .fit-section {
  border-block: 1px solid var(--line);
  background: var(--bg-soft);
  padding: 120px 0;
}
.feature-stack { display: grid; gap: 14px; margin-top: 60px; }
.feature-card {
  display: grid;
  grid-template-columns: 70px 1fr 1.2fr;
  gap: 28px;
  align-items: center;
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.018);
}
.feature-icon {
  width: 50px; height: 50px; border-radius: 14px;
  display: grid; place-items: center;
  background: rgba(155,140,255,.08);
  color: var(--violet-2);
  font-family: "Manrope"; font-weight: 800;
}
.feature-card h3 { margin-bottom: 7px; font-size: 25px; }
.feature-card p { color: var(--muted); margin: 0; }
.feature-visual {
  min-height: 145px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #0c0c12;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}
.message {
  max-width: 78%;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 12px;
}
.message.incoming { background: #1b1a24; color: #b8b4c1; }
.message.outgoing { background: rgba(155,140,255,.16); color: #ded8ff; margin-left: auto; }
.feature-visual.compact { min-height: 132px; }
.mini-row {
  display: grid; grid-template-columns: 1fr auto 13px;
  align-items: center; gap: 12px;
  font-size: 12px; color: var(--muted);
}
.mini-row b { color: #706c78; font-weight: 500; }
.mini-row i { width: 9px; height: 9px; border: 1px solid #4c4954; border-radius: 50%; }
.mini-row i.done { border: none; background: var(--green); }
.mini-row i.active { border: none; background: var(--violet); box-shadow: 0 0 10px var(--violet); }
.reactivation-number { font: 700 40px "Manrope"; }
.feature-visual small { color: var(--muted); }
.progress { height: 6px; background: #25232d; border-radius: 999px; overflow: hidden; }
.progress span { display: block; width: 68%; height: 100%; background: linear-gradient(90deg,var(--violet),var(--violet-2)); }
.report { flex-direction: row; align-items: center; justify-content: space-between; }
.report div { padding: 0 12px; }
.report span, .report strong { display: block; }
.report span { color: #777382; font-size: 11px; }
.report strong { font: 700 22px "Manrope"; margin-top: 5px; }

.steps {
  list-style: none;
  padding: 0;
  margin: 60px 0 0;
  border-top: 1px solid var(--line);
}
.steps li {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 30px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.steps li > span { color: var(--violet-2); font-family: "Manrope"; font-weight: 800; }
.steps h3 { margin: 0 0 7px; font-size: 24px; }
.steps p { margin: 0; color: var(--muted); }

.fit-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 90px;
  align-items: center;
}
.fit-grid h2 { margin: 16px 0 22px; }
.fit-list {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255,255,255,.018);
}
.fit-list div {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 12px;
  align-items: center;
}
.fit-list div:last-child { border-bottom: none; }
.fit-list span { color: var(--violet-2); }
.fit-list .not-fit { color: #86818f; background: rgba(255,255,255,.012); }
.fit-list .not-fit span { color: #706b78; }

.contact-panel {
  position: relative;
  overflow: hidden;
  padding: 48px;
  border: 1px solid rgba(198,186,255,.18);
  border-radius: 28px;
  background:
    radial-gradient(circle at 5% 15%, rgba(155,140,255,.11), transparent 34%),
    linear-gradient(140deg, rgba(255,255,255,.04), rgba(255,255,255,.012));
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
}
.contact h2 { margin: 16px 0 22px; font-size: clamp(38px, 4.3vw, 58px); }
form { display: grid; gap: 14px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
label { display: grid; gap: 7px; font-size: 12px; color: #9e99aa; }
input, textarea {
  width: 100%;
  color: var(--text);
  background: rgba(8,8,12,.72);
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 13px 14px;
  outline: none;
}
input:focus, textarea:focus { border-color: rgba(155,140,255,.55); box-shadow: 0 0 0 3px rgba(155,140,255,.08); }
textarea { resize: vertical; }
.submit-button { width: 100%; margin-top: 4px; }
.form-note { margin: 0; text-align: center; color: #6f6b79; font-size: 11px; }

.site-footer {
  min-height: 130px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  color: #777382;
  font-size: 12px;
}
.site-footer > span { justify-self: end; }
.footer-brand { color: var(--text); }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .desktop-nav { display: none; }
  .hero { padding-top: 80px; min-height: auto; }
  .metric-grid, .loss-grid { grid-template-columns: 1fr; }
  .split-heading, .fit-grid, .contact-panel { grid-template-columns: 1fr; gap: 34px; }
  .feature-card { grid-template-columns: 58px 1fr; }
  .feature-visual { grid-column: 1 / -1; }
  .site-footer { grid-template-columns: 1fr; padding: 30px 0; }
  .site-footer > span { justify-self: start; }
}

@media (max-width: 620px) {
  .section-shell, .site-header, .site-footer { width: min(100% - 26px, 1160px); }
  .site-header { height: 72px; }
  .nav-cta { display: none; }
  .hero { padding: 64px 0 60px; }
  h1 { font-size: clamp(46px, 15vw, 68px); }
  .hero-copy { font-size: 17px; }
  .hero-actions .button { width: 100%; }
  .trust-row { display: grid; gap: 8px; }
  .dashboard-card { padding: 15px; border-radius: 20px; }
  .dashboard-top { align-items: center; }
  .dashboard-top h2 { font-size: 18px; }
  .pipeline-head { display: none; }
  .pipeline-row { grid-template-columns: 1fr; gap: 8px; }
  .status { justify-self: start; }
  .problem, .process, .contact, .system-section, .fit-section { padding: 82px 0; }
  .split-heading h2, .fit-grid h2, .contact h2 { font-size: 39px; }
  .loss-grid article { min-height: 220px; }
  .loss-grid h3 { margin-top: 48px; }
  .feature-card { padding: 20px; grid-template-columns: 45px 1fr; gap: 16px; }
  .feature-icon { width: 42px; height: 42px; }
  .feature-card h3 { font-size: 21px; }
  .report { flex-direction: column; align-items: stretch; gap: 10px; }
  .report div { display: flex; justify-content: space-between; align-items: center; }
  .field-row { grid-template-columns: 1fr; }
  .contact-panel { padding: 24px; }
}
