:root {
  --ink: #070a0f;
  --ink-2: #0b111d;
  --panel: rgba(17, 23, 34, 0.84);
  --panel-solid: #111722;
  --steel: #1b2433;
  --line: rgba(148, 163, 184, 0.16);
  --line-strong: rgba(111, 127, 151, 0.42);
  --text: #f8fafc;
  --muted: #aeb7c6;
  --blue: #2f4d7a;
  --cyan: #9fb2cc;
  --amber: #c9a35f;
  --green: #7ea083;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.45);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 14% 8%, rgba(47, 77, 122, 0.2), transparent 28rem),
    radial-gradient(circle at 86% 18%, rgba(159, 178, 204, 0.08), transparent 30rem),
    radial-gradient(circle at 50% 96%, rgba(201, 163, 95, 0.06), transparent 26rem),
    linear-gradient(180deg, #06080d 0%, #0a0f1a 48%, #06080d 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
  z-index: -2;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  width: min(var(--max), calc(100% - 32px));
  margin: 16px auto 0;
  padding: 12px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  background: rgba(7, 10, 15, 0.72);
  border: 1px solid var(--line);
  border-radius: 999px;
  backdrop-filter: blur(22px);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.3);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-left: 6px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--cyan), var(--blue));
  color: #07101d;
  font-weight: 900;
  letter-spacing: -0.08em;
  box-shadow: inset 0 -10px 20px rgba(0,0,0,0.2), 0 12px 30px rgba(47,77,122,0.28);
}

.brand-text {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  transition: color 180ms ease, background 180ms ease;
}

.nav a:hover {
  color: var(--text);
  background: rgba(255,255,255,0.06);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.header-cta {
  color: #05101f;
  background: linear-gradient(135deg, #c8d1df, #eef2f7);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

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

.hero {
  min-height: calc(100vh - 80px);
  padding: 92px 0 72px;
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  align-items: center;
  gap: 44px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.045em;
}

h1,
h2 {
  font-family: "Unbounded", "Manrope", sans-serif;
}

h1 {
  max-width: 840px;
  font-size: clamp(46px, 8vw, 92px);
  line-height: 0.94;
}

h2 {
  font-size: clamp(32px, 4.5vw, 58px);
  line-height: 1.02;
}

h3 {
  font-size: 22px;
  line-height: 1.16;
}

.hero-lead {
  max-width: 690px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

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

.button-primary {
  color: #06111f;
  background: linear-gradient(135deg, #c8d1df, #ffffff);
  box-shadow: 0 18px 50px rgba(47, 77, 122, 0.22);
}

.button-secondary {
  color: var(--text);
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,0.035);
}

.button-secondary:hover {
  background: rgba(159, 178, 204, 0.08);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 46px;
}

.hero-metrics div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.035);
}

.hero-metrics strong {
  display: block;
  font-family: "Unbounded", sans-serif;
  font-size: 25px;
}

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

.hero-visual {
  min-height: 610px;
  display: grid;
  place-items: center;
  perspective: 1200px;
}

.orbital-stage {
  position: relative;
  width: min(100%, 560px);
  aspect-ratio: 1 / 1;
  transform-style: preserve-3d;
  transition: transform 250ms ease;
}

.stage-glow {
  position: absolute;
  inset: 14%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(159,178,204,0.18), rgba(47,77,122,0.08), transparent 68%);
  filter: blur(16px);
  transform: translateZ(-90px);
}

.crm-panel {
  position: absolute;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: linear-gradient(145deg, rgba(18,25,39,0.92), rgba(7,10,15,0.84));
  border-radius: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.panel-main {
  top: 5%;
  left: 6%;
  right: 6%;
  bottom: auto;
  padding: 24px;
  transform: rotateX(9deg) rotateY(-10deg) translateZ(34px);
  z-index: 2;
}

.panel-topline {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.status-dot {
  color: var(--green);
}

.order-row {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
}

.order-row.active {
  background: linear-gradient(135deg, rgba(47,77,122,0.22), rgba(159,178,204,0.06));
  border-color: rgba(159,178,204,0.24);
}

.row-index {
  color: var(--cyan);
  font-weight: 900;
}

.mini-chart {
  height: 108px;
  display: flex;
  align-items: end;
  gap: 12px;
  margin-top: 30px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(3, 8, 18, 0.46);
}

.mini-chart span {
  flex: 1;
  min-height: 18px;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, #c8d1df, var(--blue));
}

.panel-float {
  width: calc(44% - 18px);
  min-height: 152px;
  padding: 18px;
  z-index: 3;
}

.panel-float strong {
  display: block;
  margin-top: 8px;
  font-size: 18px;
  line-height: 1.18;
}

.panel-float p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.42;
  font-size: 14px;
}

.panel-left {
  left: 4%;
  top: auto;
  bottom: -5%;
  transform: rotateY(7deg) rotateX(3deg) translateZ(36px);
}

.panel-right {
  right: 4%;
  bottom: -5%;
  transform: rotateY(-7deg) rotateX(3deg) translateZ(36px);
}

.panel-label {
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.trust-strip {
  width: min(var(--max), calc(100% - 32px));
  margin: -26px auto 110px;
  padding: 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
}

.trust-strip span {
  padding: 9px 13px;
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
}

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

.section-heading.narrow {
  max-width: 760px;
}

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

.feature-card,
.demo-console,
.report-screen,
.feedback-card,
.contact-panel,
.timeline article,
.report-list {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.feature-card {
  min-height: 250px;
  padding: 24px;
  border-radius: var(--radius-lg);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(159, 178, 204, 0.28);
  background: rgba(18,25,39,0.94);
}

.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: #06111f;
  background: #c8d1df;
  font-weight: 900;
}

.feature-card h3 {
  margin-top: 26px;
}

.feature-card p,
.demo-copy p,
.feedback-card p,
.proof-section .section-heading p,
.reviews-section .section-heading p,
.proof-card p,
.contact-copy p {
  color: var(--muted);
  line-height: 1.65;
}

.demo-section,
.analytics-section,
.process-section,
.feedback-section,
.proof-section,
.reviews-section,
.contact-section,
.problem-grid {
  padding: 88px 0;
}

.demo-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 34px;
  align-items: center;
}

.demo-console {
  min-height: 430px;
  padding: 18px;
  border-radius: var(--radius-xl);
}

.tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(0,0,0,0.22);
}

.tab {
  border: 0;
  border-radius: 999px;
  padding: 13px 10px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-weight: 900;
}

.tab.is-active {
  color: #06111f;
  background: linear-gradient(135deg, #c8d1df, #eef2f7);
}

.tab-panel {
  display: none;
  padding: 34px 10px 10px;
}

.tab-panel.is-active {
  display: block;
  animation: panelIn 360ms ease both;
}

.tab-panel p {
  max-width: 680px;
  color: var(--muted);
  line-height: 1.6;
}

.field-stack {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.field-stack label {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--muted);
  background: rgba(255,255,255,0.035);
}

.field-stack label:hover {
  border-color: rgba(159,178,204,0.28);
}

.field-stack span {
  color: var(--text);
  font-weight: 900;
  text-align: right;
}

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

.report-list,
.report-screen {
  border-radius: var(--radius-xl);
  padding: 18px;
}

.report-list {
  display: grid;
  gap: 10px;
}

.report-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--text);
  background: rgba(255,255,255,0.03);
  cursor: pointer;
  text-align: left;
}

.report-item strong {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.report-item.is-selected,
.report-item:hover {
  border-color: rgba(159,178,204,0.28);
  background: rgba(159,178,204,0.06);
}

.screen-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(47,77,122,0.16), rgba(159,178,204,0.05));
}

.screen-header span {
  color: var(--muted);
}

.screen-header strong {
  font-family: "Unbounded", sans-serif;
  color: var(--cyan);
}

.bars {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.bars div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 16px;
  align-items: center;
}

.bars span {
  grid-column: 1 / -1;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), #9fb2cc);
  box-shadow: 0 10px 34px rgba(47,77,122,0.22);
}

.bars b {
  font-weight: 900;
}

.bars em {
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

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

.timeline article {
  min-height: 250px;
  padding: 26px;
  border-radius: var(--radius-xl);
}

.timeline span {
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.timeline h3 {
  margin-top: 38px;
}

.timeline p {
  color: var(--muted);
  line-height: 1.6;
}

.feedback-card {
  padding: clamp(28px, 5vw, 64px);
  border-radius: 38px;
  background:
    linear-gradient(135deg, rgba(47,77,122,0.16), rgba(159,178,204,0.04)),
    var(--panel);
}

.feedback-card p {
  max-width: 760px;
  font-size: 18px;
}

.proof-section .section-heading,
.reviews-section .section-heading {
  max-width: 860px;
}

.proof-section {
  padding-bottom: 36px;
}

.reviews-section {
  margin-top: 28px;
  margin-bottom: 88px;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: 38px;
  background:
    radial-gradient(circle at 12% 0%, rgba(159,178,204,0.09), transparent 24rem),
    linear-gradient(145deg, rgba(17,23,34,0.88), rgba(9,14,22,0.9));
  box-shadow: 0 24px 70px rgba(0,0,0,0.24);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.proof-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(159,178,204,0.075), rgba(255,255,255,0.025)),
    rgba(255,255,255,0.025);
}

.proof-card span,
.demo-badge {
  display: inline-flex;
  width: fit-content;
  border: 1px solid rgba(201,163,95,0.28);
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--amber);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.proof-card strong {
  display: block;
  margin-top: 20px;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(22px, 3vw, 34px);
  color: var(--text);
}

.proof-card p {
  margin-bottom: 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.review-card {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 20% 0%, rgba(201,163,95,0.1), transparent 16rem),
    linear-gradient(180deg, rgba(17,23,34,0.88), rgba(12,17,26,0.92));
  box-shadow: 0 18px 56px rgba(0,0,0,0.22);
}

.review-card blockquote {
  margin: 28px 0 0;
  color: var(--text);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.58;
}

.review-person {
  margin-top: auto;
  padding-top: 28px;
}

.review-person strong,
.review-person span {
  display: block;
}

.review-person strong {
  color: var(--text);
}

.review-person span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: start;
}

.contact-panel {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: var(--radius-xl);
}

.contact-link {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.035);
  transition: transform 180ms ease, border-color 180ms ease;
}

.contact-link:hover {
  transform: translateX(4px);
  border-color: rgba(159,178,204,0.3);
}

.contact-link span {
  color: var(--muted);
}

.contact-link strong {
  text-align: right;
}

.footer {
  width: min(var(--max), calc(100% - 32px));
  margin: 20px auto 36px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 14px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 650ms ease, transform 650ms ease;
}

@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
    border-radius: 24px;
  }

  .nav {
    display: none;
  }

  .hero,
  .demo-section,
  .analytics-layout,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 70px;
  }

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

  .cards-grid,
  .proof-grid,
  .reviews-grid,
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .orbital-stage {
    width: min(100%, 620px);
  }

  .panel-float {
    bottom: 0;
  }
}

@media (max-width: 680px) {
  .site-header {
    top: 8px;
    width: calc(100% - 18px);
  }

  .brand-text {
    display: none;
  }

  .header-cta {
    min-height: 42px;
    padding: 0 13px;
    font-size: 13px;
  }

  .section-shell {
    width: calc(100% - 24px);
  }

  .hero {
    min-height: auto;
    padding: 54px 0 42px;
  }

  .hero-metrics,
  .cards-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

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

  .orbital-stage {
    width: 100%;
    aspect-ratio: auto;
    display: grid;
    gap: 12px;
    transform: none !important;
  }

  .stage-glow {
    inset: 0;
    opacity: 0.45;
  }

  .crm-panel,
  .panel-main,
  .panel-left,
  .panel-right {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: auto;
    transform: none;
  }

  .panel-main {
    padding: 18px;
    order: 1;
  }

  .panel-float {
    padding: 18px;
  }

  .panel-left {
    order: 2;
  }

  .panel-right {
    order: 3;
  }

  .order-row {
    grid-template-columns: 1fr;
  }

  .mini-chart {
    height: 86px;
    margin-top: 18px;
  }

  .trust-strip {
    margin-top: 24px;
    margin-bottom: 42px;
    border-radius: 28px;
    align-items: stretch;
  }

  .trust-strip span {
    width: 100%;
    padding: 11px 12px;
    text-align: center;
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
  }

  .demo-section,
  .analytics-section,
  .process-section,
  .feedback-section,
  .proof-section,
  .reviews-section,
  .contact-section,
  .problem-grid {
    padding: 58px 0;
  }

  .proof-section {
    padding-bottom: 24px;
  }

  .reviews-section {
    margin-top: 12px;
    margin-bottom: 58px;
    padding: 24px;
    border-radius: 28px;
  }

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

  .tabs {
    border-radius: 22px;
    grid-template-columns: 1fr;
  }

  .field-stack label,
  .report-item,
  .contact-link,
  .screen-header {
    flex-direction: column;
  }

  .field-stack span,
  .contact-link strong {
    text-align: left;
  }

  .footer {
    flex-direction: column;
    gap: 10px;
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
