:root {
  --bg: #050713;
  --bg-soft: #0b1024;
  --ink: #f6f8ff;
  --muted: #a8b3d8;
  --muted-strong: #dbe3ff;
  --line: rgba(162, 181, 255, 0.18);
  --surface: rgba(13, 20, 45, 0.72);
  --surface-strong: rgba(18, 28, 62, 0.94);
  --shadow-lg: 0 32px 80px rgba(0, 0, 0, 0.42);
  --shadow-md: 0 18px 46px rgba(0, 0, 0, 0.3);
  --radius-xl: 30px;
  --radius-lg: 20px;
  --radius-md: 12px;
  --accent: #2f6bff;
  --accent-2: #5468ff;
  --accent-3: #7a4cff;
  --accent-4: #18d6c6;
  --danger: #ff5d82;
  --scroll: 0;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(900px 520px at -10% 0%, rgba(122, 76, 255, 0.34), transparent 62%),
    radial-gradient(820px 520px at 110% 8%, rgba(47, 107, 255, 0.28), transparent 58%),
    radial-gradient(760px 480px at 74% 98%, rgba(24, 214, 198, 0.14), transparent 60%),
    linear-gradient(165deg, var(--bg), var(--bg-soft) 52%, #070716);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.noise-layer,
.grid-layer,
.glow,
.scroll-progress {
  pointer-events: none;
}

.noise-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.22;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.08) 0.4px, transparent 0.4px),
    radial-gradient(rgba(255, 255, 255, 0.05) 0.4px, transparent 0.4px);
  background-size: 4px 4px, 6px 6px;
  background-position: 0 0, 2px 2px;
  mask-image: radial-gradient(circle at 50% 42%, black 32%, transparent 88%);
}

.grid-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(162, 181, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(162, 181, 255, 0.18) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

.glow {
  position: fixed;
  z-index: 0;
  border-radius: 999px;
  filter: blur(16px);
  opacity: 0.66;
  animation: float-soft 16s ease-in-out infinite;
}

.glow-a {
  width: 330px;
  height: 330px;
  top: -120px;
  left: -80px;
  background: radial-gradient(circle, rgba(122, 76, 255, 0.36), rgba(122, 76, 255, 0));
}

.glow-b {
  width: 380px;
  height: 380px;
  top: 8%;
  right: -150px;
  animation-duration: 19s;
  animation-direction: reverse;
  background: radial-gradient(circle, rgba(47, 107, 255, 0.32), rgba(47, 107, 255, 0));
}

.glow-c {
  width: 430px;
  height: 430px;
  bottom: -190px;
  right: 22%;
  animation-duration: 22s;
  background: radial-gradient(circle, rgba(24, 214, 198, 0.2), rgba(24, 214, 198, 0));
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--accent-3), var(--accent-4));
  transform-origin: left center;
  transform: scaleX(var(--scroll));
}

.site-header-shell,
.site-header,
.section,
.site-footer {
  position: relative;
}

.site-header-shell {
  z-index: 90;
  position: sticky;
  top: 0;
  width: 100%;
  padding: 10px 0 12px;
  background: linear-gradient(180deg, rgba(5, 7, 19, 0.95), rgba(5, 7, 19, 0.74));
  border-bottom: 1px solid rgba(162, 181, 255, 0.12);
  backdrop-filter: blur(12px);
}

.section,
.site-footer {
  z-index: 2;
}

.site-header {
  width: min(1240px, calc(100% - 34px));
  margin: 0 auto;
  border: 1px solid rgba(162, 181, 255, 0.22);
  border-radius: 999px;
  background: rgba(10, 16, 36, 0.86);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.3);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 8px 14px;
}

.brand {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Syne", "Segoe UI", sans-serif;
  font-weight: 700;
}

.brand-logo {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 8px 18px rgba(84, 104, 255, 0.32);
}

.top-nav {
  justify-self: center;
  display: inline-flex;
  gap: 22px;
}

.top-nav a {
  text-decoration: none;
  font-size: 13px;
  color: var(--muted);
  font-weight: 800;
  position: relative;
}

.top-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-4));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.top-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.btn {
  border: 1px solid var(--line);
  background: var(--surface-strong);
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  border-radius: var(--radius-md);
  padding: 11px 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 170ms ease, box-shadow 170ms ease, border-color 170ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  border-color: rgba(162, 181, 255, 0.46);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.3);
}

.btn-primary {
  border: 0;
  color: #fff;
  background: linear-gradient(130deg, var(--accent), var(--accent-2) 45%, var(--accent-3));
  box-shadow: 0 14px 28px rgba(84, 104, 255, 0.34);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.035);
}

.btn-sm {
  padding: 9px 13px;
  font-size: 13px;
}

.section {
  width: min(1240px, calc(100% - 34px));
  margin: 16px auto 0;
}

.hero {
  border-radius: var(--radius-xl);
  padding: 30px;
  display: grid;
  gap: 22px;
  grid-template-columns: 1.02fr 0.98fr;
  border: 1px solid rgba(162, 181, 255, 0.22);
  background:
    linear-gradient(135deg, rgba(15, 24, 54, 0.94), rgba(9, 14, 32, 0.82)),
    radial-gradient(circle at 78% 12%, rgba(24, 214, 198, 0.16), transparent 32%),
    radial-gradient(circle at 22% 4%, rgba(122, 76, 255, 0.18), transparent 34%);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  font-weight: 800;
  color: #9eb1ff;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Syne", "Segoe UI", sans-serif;
  letter-spacing: -0.02em;
}

h1 {
  margin-top: 10px;
  font-size: clamp(38px, 5.7vw, 72px);
  line-height: 0.96;
  max-width: 15ch;
}

.lead {
  margin: 16px 0 0;
  max-width: 74ch;
  line-height: 1.68;
  color: var(--muted);
}

.hero-actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

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

.hero-proof article,
.feature-card,
.pillar,
.plan-card,
.issue-grid article,
.report-grid article {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.hero-proof article {
  border-radius: 16px;
  padding: 14px;
  min-height: 142px;
}

.hero-proof span,
.feature-card span,
.report-grid span,
.service-rail span {
  color: #9eb1ff;
  font-size: 12px;
  font-weight: 900;
}

.hero-proof h3 {
  margin-top: 10px;
  font-size: 18px;
}

.hero-proof p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.hero-visual-wrap {
  perspective: 1300px;
}

.hero-visual {
  border-radius: 28px;
  background:
    linear-gradient(150deg, #081029, #121e4a 55%, #273288),
    linear-gradient(100deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  border: 1px solid rgba(162, 181, 255, 0.34);
  box-shadow: 0 30px 64px rgba(0, 0, 0, 0.44);
  color: #edf2ff;
  padding: 16px;
  position: relative;
  overflow: hidden;
  transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition: transform 170ms ease;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: -120px;
  background:
    radial-gradient(circle at 72% 30%, rgba(122, 76, 255, 0.34), transparent 42%),
    radial-gradient(circle at 25% 82%, rgba(24, 214, 198, 0.18), transparent 34%);
}

.hero-visual > * {
  position: relative;
  z-index: 1;
}

.product-window,
.report-sheet {
  border-radius: 22px;
  background: rgba(4, 8, 23, 0.62);
  border: 1px solid rgba(202, 214, 255, 0.2);
  overflow: hidden;
}

.window-bar {
  min-height: 44px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 11px 13px;
  border-bottom: 1px solid rgba(202, 214, 255, 0.14);
  background: rgba(255, 255, 255, 0.045);
}

.window-bar strong {
  font-size: 13px;
}

.window-bar em {
  color: #9af8ef;
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.window-dots {
  display: inline-flex;
  gap: 5px;
}

.window-dots span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(202, 214, 255, 0.42);
}

.window-dots span:nth-child(1) {
  background: #ff5d82;
}

.window-dots span:nth-child(2) {
  background: #f8c14b;
}

.window-dots span:nth-child(3) {
  background: #36e4ba;
}

.ops-grid {
  display: grid;
  grid-template-columns: 116px 1fr;
  min-height: 336px;
}

.ops-sidebar {
  padding: 12px;
  display: grid;
  align-content: start;
  gap: 8px;
  border-right: 1px solid rgba(202, 214, 255, 0.14);
}

.ops-sidebar span {
  border-radius: 10px;
  padding: 9px 10px;
  color: #aebcff;
  font-size: 12px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.04);
}

.ops-sidebar .active {
  color: #fff;
  background: linear-gradient(130deg, rgba(47, 107, 255, 0.7), rgba(122, 76, 255, 0.58));
}

.ops-main {
  padding: 14px;
}

.ops-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
}

.ops-toolbar h2 {
  margin-top: 5px;
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1;
}

.signal-label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 10px;
  color: #b8c9ff;
  font-weight: 800;
}

.status-pill,
.risk-tag {
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 900;
  background: rgba(24, 214, 198, 0.14);
  color: #9af8ef;
  border: 1px solid rgba(24, 214, 198, 0.28);
  white-space: nowrap;
}

.ticket-stack {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.ticket-stack article {
  border-radius: 16px;
  padding: 14px;
  background: rgba(5, 8, 20, 0.48);
  border: 1px solid rgba(162, 181, 255, 0.18);
}

.ticket-stack p,
.ticket-stack span {
  margin: 0;
  color: #b8c9ff;
  font-size: 12px;
  font-weight: 800;
}

.ticket-stack strong {
  display: block;
  margin: 7px 0;
  font-size: 16px;
}

.dashboard-metrics {
  padding: 12px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  border-top: 1px solid rgba(202, 214, 255, 0.14);
}

.dashboard-metrics article {
  border-radius: 14px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.dashboard-metrics strong {
  display: block;
  font-family: "Syne", "Segoe UI", sans-serif;
  font-size: 28px;
}

.dashboard-metrics span {
  display: block;
  margin-top: 4px;
  color: #c6d2ff;
  font-size: 11px;
  line-height: 1.35;
}

.marquee-wrap {
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(10, 16, 36, 0.68);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 14px;
  width: max-content;
  padding: 10px;
  animation: marquee 24s linear infinite;
}

.marquee-track span {
  font-size: 12px;
  font-weight: 800;
  border-radius: 999px;
  padding: 8px 11px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
}

.section-head {
  max-width: 850px;
}

.section-head.center {
  margin: 0 auto;
  text-align: center;
}

.section-head h2,
.fit-section h2,
.integration-strip h2 {
  margin-top: 9px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 0.98;
}

.section-head p,
.integration-strip p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.problem-section,
.ops-section,
.help-section,
.reports-section,
.plans-section,
.integration-strip {
  border-radius: var(--radius-xl);
  padding: 24px;
  border: 1px solid rgba(162, 181, 255, 0.18);
  background:
    linear-gradient(150deg, rgba(15, 24, 54, 0.82), rgba(8, 13, 31, 0.72)),
    radial-gradient(circle at 100% 0%, rgba(47, 107, 255, 0.13), transparent 42%);
  box-shadow: var(--shadow-md);
}

.problem-layout,
.reports-section,
.service-layout,
.integration-strip {
  display: grid;
  gap: 22px;
  grid-template-columns: 0.96fr 1.04fr;
  align-items: center;
}

.chaos-board {
  min-height: 300px;
  position: relative;
  border-radius: 24px;
  border: 1px solid rgba(162, 181, 255, 0.16);
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 93, 130, 0.14), transparent 42%),
    rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.chaos-board::before,
.chaos-board::after {
  content: "";
  position: absolute;
  width: 70%;
  height: 1px;
  left: 15%;
  top: 50%;
  background: linear-gradient(90deg, transparent, rgba(255, 93, 130, 0.5), transparent);
  transform: rotate(24deg);
}

.chaos-board::after {
  transform: rotate(-21deg);
}

.chaos-card {
  position: absolute;
  width: min(230px, 68%);
  border-radius: 16px;
  padding: 14px;
  background: rgba(11, 17, 39, 0.92);
  border: 1px solid rgba(162, 181, 255, 0.2);
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.26);
}

.chaos-card:nth-child(1) {
  top: 24px;
  left: 22px;
}

.chaos-card:nth-child(2) {
  right: 20px;
  top: 104px;
}

.chaos-card:nth-child(3) {
  left: 70px;
  bottom: 24px;
}

.chaos-card.urgent {
  border-color: rgba(255, 93, 130, 0.44);
}

.chaos-card span {
  color: #ff9ab2;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.chaos-card strong {
  display: block;
  margin-top: 7px;
}

.chaos-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.issue-grid,
.report-grid {
  margin-top: 16px;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.issue-grid article,
.report-grid article {
  border-radius: 16px;
  padding: 14px;
  color: var(--muted-strong);
  font-weight: 800;
}

.report-grid article {
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: none;
}

.ops-showcase {
  margin-top: 20px;
  display: grid;
  gap: 22px;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: center;
}

.flow-orbit {
  position: relative;
  width: min(430px, 100%);
  aspect-ratio: 1;
  margin: 0 auto;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(84, 104, 255, 0.15), transparent 62%);
}

.flow-orbit::before,
.flow-orbit::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.flow-orbit::before {
  width: 86%;
  height: 86%;
  border: 1px solid rgba(162, 181, 255, 0.42);
  box-shadow: inset 0 0 30px rgba(162, 181, 255, 0.12);
  animation: orbit-spin 30s linear infinite;
}

.flow-orbit::after {
  width: 63%;
  height: 63%;
  border: 1px dashed rgba(162, 181, 255, 0.32);
  animation: orbit-spin 18s linear infinite reverse;
}

.core-chip {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  border-radius: 999px;
  padding: 14px 20px;
  font-family: "Syne", "Segoe UI", sans-serif;
  font-size: 21px;
  font-weight: 800;
  background: linear-gradient(120deg, rgba(47, 107, 255, 0.95), rgba(122, 76, 255, 0.9));
  box-shadow: 0 14px 28px rgba(84, 104, 255, 0.34);
  animation: pulse-chip 2.8s ease-in-out infinite;
}

.orbit-item {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  transform: translate(-50%, -50%) rotate(var(--angle)) translateY(calc(var(--radius) * -1))
    rotate(calc(var(--angle) * -1));
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  background: rgba(240, 244, 255, 0.12);
  border: 1px solid rgba(206, 218, 255, 0.34);
  backdrop-filter: blur(4px);
}

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

.feature-card {
  border-radius: 16px;
  padding: 14px;
  min-height: 156px;
}

.feature-card h3 {
  margin-top: 12px;
  font-size: 20px;
}

.feature-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.service-layout {
  margin-top: 18px;
  align-items: stretch;
}

.service-rail {
  display: grid;
  gap: 10px;
}

.service-rail article {
  position: relative;
  border-radius: 18px;
  padding: 16px 16px 16px 48px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
}

.service-rail article::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 44px;
  bottom: -20px;
  width: 1px;
  background: linear-gradient(var(--accent), transparent);
}

.service-rail article:last-child::before {
  display: none;
}

.service-rail span {
  position: absolute;
  left: 14px;
  top: 16px;
}

.service-rail strong {
  display: block;
  font-size: 19px;
}

.service-rail p {
  margin: 7px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.pillar-grid,
.plan-grid {
  margin-top: 16px;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pillar-grid.compact {
  margin-top: 0;
}

.pillar,
.plan-card {
  border-radius: var(--radius-lg);
  padding: 18px;
  display: grid;
  gap: 10px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.pillar:hover,
.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 46px rgba(0, 0, 0, 0.36);
}

.pillar.featured,
.plan-card.featured {
  background:
    linear-gradient(150deg, rgba(22, 34, 74, 0.94), rgba(13, 20, 45, 0.84)),
    linear-gradient(120deg, rgba(122, 76, 255, 0.22), rgba(47, 107, 255, 0.18));
  border-color: rgba(148, 168, 255, 0.36);
}

.pillar-badge {
  margin: 0;
  width: fit-content;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 800;
  color: #c4ceff;
  background: rgba(84, 104, 255, 0.18);
}

.pillar h3,
.plan-card h3 {
  font-size: 27px;
  line-height: 1;
}

.pillar p,
.plan-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.pillar ul,
.plan-card ul {
  margin: 0;
  padding-left: 17px;
  display: grid;
  gap: 6px;
  color: var(--muted);
}

.reports-section {
  grid-template-columns: 0.9fr 1.1fr;
}

.report-visual {
  perspective: 1000px;
}

.report-sheet {
  padding-bottom: 18px;
  transform: rotateX(5deg) rotateY(-8deg);
  box-shadow: 0 30px 56px rgba(0, 0, 0, 0.36);
}

.report-sheet h3 {
  padding: 18px 18px 0;
  font-size: 30px;
}

.report-sheet p {
  margin: 10px 18px 0;
  color: var(--muted);
  line-height: 1.55;
}

.report-lines {
  margin: 18px;
  display: grid;
  gap: 8px;
}

.report-lines span {
  display: block;
  width: var(--w);
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(47, 107, 255, 0.8), rgba(24, 214, 198, 0.55));
}

.risk-tag {
  width: fit-content;
  margin-left: 18px;
}

.plans-section .plan-grid {
  margin-top: 20px;
}

.plan-card {
  min-height: 330px;
  align-content: start;
}

.plan-card .btn {
  margin-top: auto;
}

.fit-section {
  text-align: center;
}

.fit-section h2 {
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.fit-chips {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  justify-content: center;
}

.fit-chips span {
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  padding: 9px 12px;
  font-size: 13px;
  font-weight: 800;
}

.integration-strip {
  grid-template-columns: 0.95fr 1.05fr;
}

.cta-section {
  margin-top: 20px;
}

.cta-card {
  border-radius: var(--radius-xl);
  padding: 30px;
  color: #f3f5ff;
  background:
    radial-gradient(circle at 82% 18%, rgba(24, 214, 198, 0.22), transparent 34%),
    linear-gradient(130deg, #184fe0, #4850e8 45%, #6830d8);
  box-shadow: 0 26px 52px rgba(72, 80, 232, 0.3);
}

.cta-card .kicker {
  color: #dde3ff;
}

.cta-card h2 {
  margin-top: 10px;
  max-width: 24ch;
  font-size: clamp(30px, 5vw, 58px);
  line-height: 0.96;
}

.cta-card p {
  margin-top: 12px;
  max-width: 72ch;
  line-height: 1.6;
  color: rgba(240, 244, 255, 0.92);
}

.cta-card .btn-primary {
  background: #fff;
  color: #1c245f;
  box-shadow: 0 14px 24px rgba(255, 255, 255, 0.24);
}

.cta-card .btn-ghost {
  border-color: rgba(255, 255, 255, 0.48);
  color: #fff;
}

.site-footer {
  width: min(1240px, calc(100% - 34px));
  margin: 16px auto 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 540ms ease, transform 540ms ease;
  transition-delay: var(--delay, 0ms);
}

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

@keyframes float-soft {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(8px, -16px, 0) scale(1.05);
  }
}

@keyframes orbit-spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes pulse-chip {
  0%,
  100% {
    box-shadow: 0 14px 28px rgba(84, 104, 255, 0.34);
  }

  50% {
    box-shadow: 0 18px 36px rgba(24, 214, 198, 0.28);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

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

@media (max-width: 1140px) {
  .hero,
  .problem-layout,
  .ops-showcase,
  .service-layout,
  .reports-section,
  .integration-strip {
    grid-template-columns: 1fr;
  }

  .hero-proof,
  .pillar-grid,
  .plan-grid,
  .issue-grid,
  .report-grid,
  .module-grid {
    grid-template-columns: 1fr 1fr;
  }

  .report-sheet {
    transform: none;
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .top-nav {
    display: none;
  }

  .site-header .btn-sm {
    justify-self: end;
  }

  .hero,
  .problem-section,
  .ops-section,
  .help-section,
  .reports-section,
  .plans-section,
  .integration-strip,
  .cta-card {
    padding: 16px;
  }

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

  .ops-sidebar {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-right: 0;
    border-bottom: 1px solid rgba(202, 214, 255, 0.14);
  }
}

@media (max-width: 640px) {
  .site-header,
  .section,
  .site-footer {
    width: calc(100% - 18px);
  }

  .site-header-shell {
    padding: 8px 0 10px;
  }

  .site-header {
    gap: 8px;
    padding: 8px 10px;
  }

  .brand span {
    font-size: 13px;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  h1 {
    font-size: clamp(32px, 11vw, 49px);
  }

  .hero-proof,
  .pillar-grid,
  .plan-grid,
  .issue-grid,
  .report-grid,
  .module-grid,
  .dashboard-metrics {
    grid-template-columns: 1fr;
  }

  .ops-sidebar {
    grid-template-columns: 1fr 1fr;
  }

  .flow-orbit {
    width: min(330px, 100%);
  }

  .orbit-item {
    font-size: 11px;
    padding: 6px 8px;
  }

  .core-chip {
    font-size: 17px;
    padding: 11px 14px;
  }

  .chaos-board {
    min-height: 420px;
  }

  .chaos-card {
    width: calc(100% - 34px);
  }

  .chaos-card:nth-child(1),
  .chaos-card:nth-child(2),
  .chaos-card:nth-child(3) {
    left: 17px;
    right: auto;
  }

  .chaos-card:nth-child(1) {
    top: 18px;
  }

  .chaos-card:nth-child(2) {
    top: 148px;
  }

  .chaos-card:nth-child(3) {
    bottom: 18px;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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