:root {
  --bg: #04060d;
  --bg-soft: #0a0f1f;
  --panel: rgba(12, 18, 38, 0.82);
  --panel-strong: #0d1530;
  --ink: #f3f7ff;
  --ink-dim: #97a5c7;
  --line: rgba(149, 170, 222, 0.22);
  --line-soft: rgba(149, 170, 222, 0.12);
  --cyan: #39d0ff;
  --blue: #5b7dff;
  --violet: #7d5cff;
  --green: #35d799;
  --yellow: #ffc75f;
  --red: #ff667f;
  --radius-xl: 26px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --shadow-premium: 0 30px 80px rgba(2, 8, 24, 0.6);
  --shadow-card: 0 18px 38px rgba(5, 12, 31, 0.46);
  --max: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1200px 700px at 15% -20%, rgba(91, 125, 255, 0.28), transparent 60%),
    radial-gradient(1000px 620px at 88% -15%, rgba(57, 208, 255, 0.2), transparent 64%),
    linear-gradient(180deg, #04060d 0%, #070b17 40%, #060911 100%);
  line-height: 1.55;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.bg-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -3;
  opacity: 0.22;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 0.45px, transparent 0.45px);
  background-size: 3px 3px;
}

.bg-glow {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: -2;
  filter: blur(90px);
}

.bg-glow-a {
  width: 36vw;
  height: 36vw;
  min-width: 300px;
  min-height: 300px;
  left: -14vw;
  top: 14vh;
  background: rgba(91, 125, 255, 0.36);
}

.bg-glow-b {
  width: 42vw;
  height: 42vw;
  min-width: 340px;
  min-height: 340px;
  right: -18vw;
  top: 44vh;
  background: rgba(57, 208, 255, 0.22);
}

.container {
  width: min(var(--max), 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
  background: rgba(4, 8, 18, 0.68);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #f6f9ff;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand img {
  width: 30px;
  height: 30px;
  border-radius: 8px;
}

.desktop-nav,
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.desktop-nav a {
  text-decoration: none;
  color: var(--ink-dim);
  font-weight: 600;
  font-size: 0.93rem;
  transition: color 0.2s ease;
}

.desktop-nav a:hover {
  color: #e7eeff;
}

.desktop-nav a[aria-current="page"] {
  color: #eef5ff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  padding: 10px 16px;
  font-weight: 700;
  font-size: 0.92rem;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #f8fbff;
  border-color: rgba(82, 154, 255, 0.64);
  background: linear-gradient(135deg, rgba(62, 132, 255, 0.95), rgba(94, 105, 255, 0.95));
  box-shadow: 0 14px 30px rgba(53, 113, 255, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 20px 40px rgba(53, 113, 255, 0.5);
}

.btn-ghost {
  color: #d3dfff;
  border-color: var(--line);
  background: rgba(11, 17, 36, 0.62);
}

.btn-ghost:hover {
  border-color: rgba(148, 196, 255, 0.55);
  background: rgba(20, 30, 58, 0.75);
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(13, 20, 41, 0.72);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.mobile-toggle span {
  width: 16px;
  height: 1.5px;
  border-radius: 999px;
  background: #dbe6ff;
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line-soft);
  padding: 12px 4% 18px;
  background: rgba(4, 8, 18, 0.95);
}

.mobile-nav.open {
  display: grid;
  gap: 8px;
}

.mobile-nav a {
  text-decoration: none;
  color: #c7d5f7;
  font-weight: 600;
  padding: 8px 6px;
}

.hero {
  padding: 86px 0 60px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 32px;
  align-items: center;
}

.kicker {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(111, 159, 255, 0.4);
  background: rgba(17, 26, 51, 0.72);
  color: #c6d8ff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-copy h1,
.section-head h2,
.story-copy h3,
.revenue-copy h2,
.cta-panel h2 {
  font-family: "Sora", sans-serif;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.hero-copy h1 {
  margin: 16px 0 12px;
  font-size: clamp(2rem, 4.8vw, 4.4rem);
}

.hero-sub {
  margin: 0;
  max-width: 640px;
  color: var(--ink-dim);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

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

.hero-proof {
  margin-top: 15px;
  color: #a9b8db;
  font-size: 0.95rem;
}

.hero-visual {
  position: relative;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  min-height: 540px;
  padding: 20px;
  overflow: hidden;
  background:
    linear-gradient(155deg, rgba(8, 16, 35, 0.95), rgba(10, 17, 30, 0.9)),
    radial-gradient(600px 340px at 20% -20%, rgba(57, 208, 255, 0.25), transparent 60%);
  box-shadow: var(--shadow-premium);
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(123, 156, 222, 0.11) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(123, 156, 222, 0.09) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at center, black 20%, transparent 100%);
  pointer-events: none;
}

.hero-metric-card,
.hero-float-note {
  position: absolute;
  z-index: 2;
  border: 1px solid var(--line);
  background: rgba(13, 21, 42, 0.88);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.hero-metric-card {
  top: 18px;
  left: 18px;
  padding: 12px 14px;
  min-width: 190px;
}

.hero-metric-card p,
.hero-float-note p {
  margin: 0;
  color: #98acd9;
  font-size: 0.82rem;
}

.hero-metric-card h3 {
  margin: 3px 0;
  font-family: "Sora", sans-serif;
  font-size: 1.5rem;
}

.hero-metric-card .down {
  color: #ff8ca1;
  font-size: 0.8rem;
  font-weight: 700;
}

.hero-float-note {
  right: 20px;
  bottom: 18px;
  padding: 12px;
  width: min(260px, 66%);
}

.hero-float-note strong {
  font-size: 0.9rem;
  display: block;
  margin-bottom: 4px;
}

.hero-zone-shell {
  position: absolute;
  inset: 108px 20px 94px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hero-zone {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(9, 15, 30, 0.75);
  padding: 12px;
  min-height: 286px;
}

.hero-zone header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.hero-zone strong {
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

.hero-zone span {
  font-size: 0.88rem;
  font-weight: 800;
}

.active-zone span {
  color: #77f1c1;
}

.risk-zone span {
  color: #ffd278;
}

.inactive-zone span {
  color: #ff8297;
}

.hero-dots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.hero-dot {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  animation: dotPulse 3.4s ease-in-out infinite;
}

.hero-dot.green {
  background: radial-gradient(circle at 35% 35%, #a0ffd7, #1dbd83);
}

.hero-dot.yellow {
  background: radial-gradient(circle at 35% 35%, #ffe6b4, #ffb320);
}

.hero-dot.red {
  background: radial-gradient(circle at 35% 35%, #ffc1cb, #ff4c70);
}

.story-section {
  padding: 32px 0 34px;
}

.section-head {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 24px;
}

.section-head h2 {
  margin: 15px 0 10px;
  font-size: clamp(1.7rem, 3.2vw, 3.15rem);
}

.section-head p {
  margin: 0;
  color: var(--ink-dim);
}

.story-block {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(8, 13, 28, 0.84), rgba(10, 15, 30, 0.67));
  padding: clamp(18px, 3vw, 30px);
  margin-bottom: 16px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: center;
}

.story-block.reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

.story-block.reverse .story-copy {
  order: 2;
}

.story-block.reverse .story-visual {
  order: 1;
}

.story-label {
  margin: 0 0 8px;
  color: #76a2ff;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.story-copy h3 {
  margin: 0 0 10px;
  font-size: clamp(1.25rem, 2.2vw, 2.15rem);
}

.story-copy p {
  margin: 0;
  color: var(--ink-dim);
}

.story-stats {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.story-stats div {
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: rgba(13, 22, 45, 0.74);
  padding: 10px 11px;
}

.story-stats span {
  display: block;
  font-size: 0.76rem;
  color: #9db0da;
}

.story-stats strong {
  font-family: "Sora", sans-serif;
  font-size: 1.03rem;
}

.story-visual {
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  background: rgba(10, 16, 30, 0.84);
  padding: 14px;
  min-height: 255px;
  position: relative;
  overflow: hidden;
}

.drift-chart svg {
  width: 100%;
  height: 150px;
}

.line {
  fill: none;
  stroke-width: 4;
  stroke-linecap: round;
}

.line-down {
  stroke: #ff6a83;
  stroke-dasharray: 6 8;
  animation: dashFlow 12s linear infinite;
}

.drift-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 8px;
}

.customer-chip {
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 0.79rem;
  font-weight: 700;
  border: 1px solid transparent;
  text-align: center;
}

.state-green {
  background: rgba(44, 196, 132, 0.18);
  border-color: rgba(78, 214, 157, 0.45);
  color: #9ef7cb;
}

.state-yellow {
  background: rgba(247, 192, 86, 0.17);
  border-color: rgba(247, 192, 86, 0.45);
  color: #ffe2a2;
}

.state-red {
  background: rgba(255, 91, 122, 0.17);
  border-color: rgba(255, 107, 136, 0.48);
  color: #ffc0cc;
}

.scan-frame {
  position: relative;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  padding: 12px;
  overflow: hidden;
  min-height: 220px;
}

.scan-beam {
  position: absolute;
  left: -40%;
  top: 0;
  width: 42%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(74, 182, 255, 0.28), transparent);
  animation: scanMove 4.5s linear infinite;
}

.seg-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.seg-card {
  border: 1px solid rgba(96, 153, 255, 0.3);
  border-radius: 12px;
  background: rgba(15, 24, 46, 0.82);
  padding: 12px;
}

.seg-card span {
  font-size: 0.75rem;
  color: #9cb2dc;
}

.seg-card strong {
  display: block;
  margin-top: 2px;
  font-family: "Sora", sans-serif;
  font-size: 1.32rem;
}

.seg-card.warn strong {
  color: #ffd18a;
}

.seg-card.danger strong {
  color: #ff90a4;
}

.seg-card.vip strong {
  color: #88e2ff;
}

.state-explainer {
  margin-top: 14px;
  border-radius: 10px;
  border: 1px solid var(--line-soft);
  padding: 10px;
  color: #bad0ff;
  font-size: 0.85rem;
  background: rgba(16, 24, 43, 0.74);
}

.state-chip-row {
  margin-top: 10px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.state-chip {
  border: 1px solid var(--line);
  background: rgba(17, 26, 48, 0.78);
  color: #d6e1fb;
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 700;
  font-size: 0.79rem;
  cursor: pointer;
}

.state-chip:hover,
.state-chip:focus-visible {
  border-color: rgba(107, 172, 255, 0.7);
  outline: none;
}

.flow-points {
  margin: 14px 0 0;
  padding-left: 18px;
  color: #c4d4f6;
}

.flow-points li {
  margin: 8px 0;
}

.automation-visual {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.flow-lane {
  position: absolute;
  left: 40px;
  right: 40px;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, rgba(57, 208, 255, 0.2), rgba(125, 92, 255, 0.9), rgba(53, 215, 153, 0.26));
  animation: pulseLine 2.8s ease-in-out infinite;
}

.flow-node {
  position: relative;
  z-index: 1;
  min-width: 74px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(16, 23, 47, 0.86);
  text-align: center;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 12px 8px;
}

.node-trigger { animation: nodePulse 4s ease infinite; }
.node-message { animation: nodePulse 4s ease 0.4s infinite; }
.node-follow { animation: nodePulse 4s ease 0.8s infinite; }
.node-return { animation: nodePulse 4s ease 1.2s infinite; }

.return-columns {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
  align-items: center;
  min-height: 220px;
}

.return-col {
  border: 1px solid var(--line-soft);
  background: rgba(14, 23, 45, 0.86);
  border-radius: 12px;
  padding: 12px;
}

.return-col h4 {
  margin: 0 0 10px;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #9eb4de;
}

.return-arrow {
  color: #86a8ff;
  font-size: 1.5rem;
  font-weight: 800;
}

.return-pill {
  border-radius: 999px;
  padding: 8px 10px;
  margin-bottom: 8px;
  font-size: 0.8rem;
  font-weight: 700;
}

.return-pill.warn {
  background: rgba(248, 196, 90, 0.2);
  color: #ffdca0;
}

.return-pill.danger {
  background: rgba(252, 106, 134, 0.18);
  color: #ffbdca;
}

.return-pill.success {
  background: rgba(58, 208, 149, 0.18);
  color: #a7f6d5;
}

.return-pill.accent {
  background: rgba(102, 163, 255, 0.2);
  color: #d0e6ff;
}

.revenue-engine {
  padding: 64px 0;
}

.revenue-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: center;
}

.revenue-copy p {
  color: var(--ink-dim);
}

.revenue-copy h2 {
  margin: 14px 0 10px;
  font-size: clamp(1.6rem, 3vw, 2.75rem);
}

.revenue-list {
  margin-top: 16px;
  display: grid;
  gap: 9px;
}

.revenue-list div {
  border-radius: 12px;
  border: 1px solid var(--line-soft);
  padding: 11px;
  background: rgba(12, 20, 40, 0.76);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.revenue-list span {
  font-size: 0.82rem;
  color: #9bb0dc;
}

.revenue-list strong {
  font-family: "Sora", sans-serif;
  font-size: 1.03rem;
}

.gauge-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(10, 18, 36, 0.9), rgba(10, 15, 29, 0.84));
  padding: 18px;
  box-shadow: var(--shadow-premium);
}

.gauge {
  width: 100%;
  height: auto;
}

.gauge-track,
.gauge-progress {
  fill: none;
  stroke-width: 16;
  stroke-linecap: round;
}

.gauge-track {
  stroke: rgba(129, 151, 196, 0.2);
}

.gauge-progress {
  stroke: url(#not-used);
  stroke: rgba(71, 204, 255, 0.95);
  filter: drop-shadow(0 0 16px rgba(71, 204, 255, 0.4));
  stroke-dasharray: 380;
  stroke-dashoffset: 380;
  transition: stroke-dashoffset 0.9s ease;
}

.gauge-needle {
  stroke: #eaf2ff;
  stroke-width: 5;
  stroke-linecap: round;
  transform-origin: 160px 180px;
  transform: rotate(-120deg);
  transition: transform 1.1s cubic-bezier(0.2, 1, 0.35, 1);
}

.gauge-cap {
  fill: #d9e8ff;
}

.gauge-values {
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.gauge-values div {
  border-radius: 11px;
  border: 1px solid var(--line-soft);
  padding: 10px;
  background: rgba(12, 19, 38, 0.8);
}

.gauge-values span {
  display: block;
  font-size: 0.76rem;
  color: #99b1df;
}

.gauge-values strong {
  font-family: "Sora", sans-serif;
  font-size: 1.1rem;
}

.how-section,
.dashboard-section,
.usecase-section,
.cta-band {
  padding: 62px 0;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.how-card {
  border-radius: 15px;
  border: 1px solid var(--line-soft);
  background: rgba(10, 17, 35, 0.8);
  padding: 16px;
}

.how-card span {
  display: inline-flex;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(73, 123, 255, 0.18);
  border: 1px solid rgba(125, 157, 255, 0.5);
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  margin-bottom: 9px;
}

.how-card h3 {
  margin: 0 0 7px;
  font-family: "Sora", sans-serif;
  font-size: 1.08rem;
}

.how-card p {
  margin: 0;
  color: var(--ink-dim);
  font-size: 0.92rem;
}

.dashboard-stack {
  position: relative;
  min-height: 420px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line-soft);
  background: linear-gradient(160deg, rgba(9, 15, 30, 0.84), rgba(10, 16, 30, 0.72));
  padding: 26px;
}

.dash-card {
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(12, 20, 40, 0.88);
  box-shadow: var(--shadow-card);
}

.dash-main {
  width: min(680px, 100%);
  padding: 16px;
}

.dash-main header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.dash-main header h3 {
  margin: 0;
  font-size: 1.08rem;
  font-family: "Sora", sans-serif;
}

.dash-main header span {
  border-radius: 999px;
  background: rgba(57, 208, 255, 0.14);
  border: 1px solid rgba(57, 208, 255, 0.32);
  color: #98eaff;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 4px 10px;
}

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

.dash-grid div {
  border-radius: 10px;
  border: 1px solid var(--line-soft);
  padding: 10px;
  background: rgba(9, 15, 29, 0.72);
}

.dash-grid p {
  margin: 0;
  font-size: 0.72rem;
  color: #9ab1db;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.dash-grid strong {
  font-family: "Sora", sans-serif;
  font-size: 1.2rem;
}

.mini-line {
  margin-top: 14px;
  height: 88px;
  border-radius: 12px;
  border: 1px solid var(--line-soft);
  background:
    linear-gradient(180deg, rgba(57, 208, 255, 0.25), rgba(57, 208, 255, 0.03)),
    linear-gradient(120deg, rgba(116, 108, 255, 0.1), transparent 70%);
  position: relative;
  overflow: hidden;
}

.mini-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.24), transparent);
  transform: translateX(-100%);
  animation: shine 4.2s linear infinite;
}

.dash-side {
  position: absolute;
  width: min(300px, 46%);
  padding: 14px;
}

.dash-side.one {
  right: 26px;
  top: 42px;
}

.dash-side.two {
  right: 56px;
  bottom: 30px;
}

.dash-side h4 {
  margin: 0 0 6px;
  font-family: "Sora", sans-serif;
  font-size: 0.95rem;
}

.dash-side p {
  margin: 0;
  color: var(--ink-dim);
  font-size: 0.86rem;
}

.tag-row {
  margin-top: 10px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.tag-row span {
  border-radius: 999px;
  border: 1px solid rgba(113, 170, 255, 0.4);
  background: rgba(64, 112, 255, 0.16);
  padding: 4px 8px;
  font-size: 0.7rem;
  font-weight: 700;
}

.meter {
  margin-top: 10px;
  border-radius: 999px;
  background: rgba(57, 208, 255, 0.12);
  border: 1px solid rgba(57, 208, 255, 0.35);
  height: 8px;
  overflow: hidden;
}

.meter i {
  display: block;
  width: 64%;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  animation: meterPulse 2.8s ease-in-out infinite;
}

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

.usecase-card {
  border-radius: 15px;
  border: 1px solid var(--line-soft);
  background: linear-gradient(155deg, rgba(12, 19, 38, 0.82), rgba(9, 14, 27, 0.8));
  padding: 16px;
  min-height: 190px;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.usecase-card:hover,
.usecase-card:focus-visible {
  border-color: rgba(117, 183, 255, 0.7);
  transform: translateY(-3px);
  box-shadow: 0 18px 32px rgba(6, 14, 31, 0.45);
  outline: none;
}

.usecase-card.active {
  border-color: rgba(113, 203, 255, 0.85);
  box-shadow: 0 20px 34px rgba(11, 41, 78, 0.56);
}

.usecase-card h3 {
  margin: 0 0 8px;
  font-family: "Sora", sans-serif;
  font-size: 1.07rem;
}

.usecase-card .pain {
  margin: 0;
  color: #ffd8a5;
  font-weight: 700;
  font-size: 0.88rem;
}

.usecase-card .gain {
  margin-top: 9px;
  color: var(--ink-dim);
  font-size: 0.9rem;
}

.insights-section {
  padding: 62px 0;
}

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

.insight-card {
  border-radius: 16px;
  border: 1px solid var(--line-soft);
  background: linear-gradient(155deg, rgba(12, 19, 39, 0.84), rgba(9, 14, 27, 0.82));
  padding: 12px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.insight-card:hover {
  transform: translateY(-2px);
  border-color: rgba(114, 184, 255, 0.72);
  box-shadow: 0 17px 30px rgba(7, 21, 47, 0.52);
}

.insight-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 11px;
  border: 1px solid var(--line-soft);
}

.insight-meta {
  margin: 9px 0 0;
  color: #9fb5de;
  font-size: 0.78rem;
  font-weight: 700;
}

.insight-card h3 {
  margin: 8px 0 6px;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
}

.insight-card p {
  margin: 0;
  color: var(--ink-dim);
  font-size: 0.88rem;
}

.insight-card .btn {
  margin-top: 10px;
  width: 100%;
}

.insights-foot {
  margin-top: 14px;
  display: flex;
  justify-content: center;
}

.pricing-preview-section {
  padding: 62px 0;
}

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

.pricing-preview-card {
  border-radius: 16px;
  border: 1px solid var(--line-soft);
  background: rgba(12, 20, 40, 0.84);
  padding: 16px;
  position: relative;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.pricing-preview-card:hover {
  transform: translateY(-2px);
  border-color: rgba(116, 184, 255, 0.72);
  box-shadow: 0 18px 32px rgba(8, 24, 53, 0.52);
}

.pricing-preview-card.popular {
  border-color: rgba(116, 184, 255, 0.72);
  box-shadow: 0 20px 36px rgba(18, 45, 96, 0.42);
}

.plan-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  border-radius: 999px;
  border: 1px solid rgba(129, 189, 255, 0.66);
  background: rgba(64, 115, 255, 0.2);
  color: #b6d9ff;
  padding: 4px 9px;
  font-size: 0.72rem;
  font-weight: 700;
}

.pricing-preview-card h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1.18rem;
}

.plan-sub {
  margin: 6px 0 0;
  color: var(--ink-dim);
  font-size: 0.88rem;
}

.plan-price {
  margin-top: 12px;
  font-family: "Sora", sans-serif;
  font-size: 2rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.plan-price span {
  font-size: 0.86rem;
  color: #9fb4db;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
}

.plan-meta {
  margin: 8px 0 0;
  border-radius: 10px;
  border: 1px solid var(--line-soft);
  background: rgba(10, 16, 32, 0.74);
  color: #a8bde4;
  padding: 9px;
  font-size: 0.82rem;
}

.plan-points {
  margin: 12px 0 14px;
  padding-left: 18px;
  color: #bdeed6;
  display: grid;
  gap: 7px;
  font-size: 0.84rem;
}

.pricing-preview-foot {
  margin-top: 14px;
  display: flex;
  justify-content: center;
}

.cta-panel {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(97, 164, 255, 0.38);
  background:
    radial-gradient(500px 200px at 10% -20%, rgba(57, 208, 255, 0.24), transparent 60%),
    radial-gradient(540px 220px at 90% 0%, rgba(125, 92, 255, 0.22), transparent 60%),
    linear-gradient(155deg, rgba(10, 17, 34, 0.95), rgba(11, 20, 41, 0.9));
  padding: clamp(24px, 3.2vw, 40px);
  text-align: center;
  box-shadow: var(--shadow-premium);
}

.cta-panel h2 {
  margin: 13px auto 10px;
  max-width: 920px;
  font-size: clamp(1.5rem, 3vw, 2.7rem);
}

.cta-actions {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

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

.cta-trust span {
  border: 1px solid rgba(138, 177, 255, 0.35);
  border-radius: 999px;
  padding: 6px 11px;
  font-size: 0.76rem;
  color: #b8cefb;
  background: rgba(15, 22, 44, 0.64);
}

.site-footer {
  margin-top: 58px;
  border-top: 1px solid var(--line-soft);
  background: rgba(5, 9, 18, 0.84);
}

.footer-grid {
  padding: 38px 0 16px;
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 16px;
}

.footer-grid p {
  color: #9caed4;
  font-size: 0.9rem;
  max-width: 360px;
}

.footer-grid h4 {
  margin: 0 0 9px;
  font-size: 0.95rem;
  font-family: "Sora", sans-serif;
}

.footer-grid a {
  display: block;
  text-decoration: none;
  margin: 7px 0;
  color: #b3c4ea;
  font-size: 0.9rem;
}

.footer-grid a:hover {
  color: #edf3ff;
}

.footer-note {
  border-top: 1px solid var(--line-soft);
  padding: 16px 0 26px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  color: #8ea1cb;
  font-size: 0.84rem;
}

.reveal {
  opacity: 0;
  --revealY: 20px;
  transition: opacity 0.6s ease, transform 0.7s cubic-bezier(0.2, 0.75, 0.2, 1);
}

.reveal:not([data-tilt]) {
  transform: translateY(var(--revealY));
}

.reveal.in-view {
  opacity: 1;
  --revealY: 0px;
}

[data-tilt] {
  --rx: 0deg;
  --ry: 0deg;
  transform: translateY(var(--revealY)) rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
  transition: transform 0.22s ease, opacity 0.5s ease;
  will-change: transform;
}

.floating-card {
  animation: floatY 4.4s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { transform: scale(0.94); opacity: 0.74; }
  50% { transform: scale(1); opacity: 1; }
}

@keyframes dashFlow {
  to { stroke-dashoffset: -300; }
}

@keyframes scanMove {
  0% { transform: translateX(0); }
  100% { transform: translateX(370%); }
}

@keyframes pulseLine {
  0%, 100% { opacity: 0.48; }
  50% { opacity: 1; }
}

@keyframes nodePulse {
  0%, 100% { box-shadow: 0 0 0 rgba(90, 177, 255, 0); border-color: var(--line); }
  50% { box-shadow: 0 0 24px rgba(82, 166, 255, 0.3); border-color: rgba(114, 181, 255, 0.65); }
}

@keyframes floatY {
  0%, 100% { transform: translateY(calc(var(--revealY))) rotateX(var(--rx)) rotateY(var(--ry)); }
  50% { transform: translateY(calc(var(--revealY) - 8px)) rotateX(var(--rx)) rotateY(var(--ry)); }
}

@keyframes shine {
  to { transform: translateX(110%); }
}

@keyframes meterPulse {
  0%, 100% { width: 58%; }
  50% { width: 76%; }
}

@media (max-width: 1080px) {
  .hero-grid,
  .story-block,
  .story-block.reverse,
  .revenue-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .story-block.reverse .story-copy,
  .story-block.reverse .story-visual {
    order: initial;
  }

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

  .hero-zone-shell {
    inset: 108px 14px 92px;
  }

  .dash-side {
    position: static;
    width: 100%;
    margin-top: 10px;
  }

  .dashboard-stack {
    min-height: 0;
  }

  .how-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .usecase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .insights-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-preview-grid {
    grid-template-columns: 1fr;
  }

  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
  }
}

@media (max-width: 760px) {
  .hero {
    padding-top: 72px;
  }

  .hero-zone-shell {
    grid-template-columns: 1fr;
    inset: 122px 12px 124px;
  }

  .hero-zone {
    min-height: 112px;
  }

  .hero-dots {
    grid-template-columns: repeat(8, 1fr);
  }

  .hero-metric-card {
    min-width: 168px;
    padding: 10px;
  }

  .hero-float-note {
    width: calc(100% - 24px);
    right: 12px;
    left: 12px;
    bottom: 12px;
  }

  .story-stats,
  .gauge-values,
  .return-columns,
  .dash-grid,
  .usecase-grid,
  .insights-grid,
  .how-grid,
  .pricing-preview-grid {
    grid-template-columns: 1fr;
  }

  .return-arrow {
    transform: rotate(90deg);
    text-align: center;
  }

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

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