:root {
  --ink: #131820;
  --ink-soft: #384252;
  --paper: #f5f1ea;
  --paper-deep: #ece6dc;
  --line: rgba(19, 24, 32, 0.12);
  --line-strong: rgba(19, 24, 32, 0.2);
  --card: rgba(255, 252, 247, 0.72);
  --card-strong: rgba(255, 251, 246, 0.88);
  --slate: #1f2732;
  --slate-soft: #313d4b;
  --signal: #2f5d84;
  --signal-bright: #6db9df;
  --signal-deep: #0f2233;
  --white: #ffffff;
  --shadow-soft: 0 28px 70px rgba(18, 24, 31, 0.08);
  --shadow-panel: 0 35px 100px rgba(9, 16, 24, 0.18);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0) 18%),
    linear-gradient(90deg, rgba(19, 24, 32, 0.025) 1px, transparent 1px),
    linear-gradient(rgba(19, 24, 32, 0.025) 1px, transparent 1px),
    linear-gradient(180deg, #f8f4ed 0%, #f2ede4 58%, #ebe5db 100%);
  background-size: auto, 90px 90px, 90px 90px, auto;
  overflow-x: hidden;
}


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

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

.page-shell {
  position: relative;
  isolation: isolate;
}

.ambient,
.grid-glow {
  position: fixed;
  pointer-events: none;
  z-index: -1;
}

.ambient-one,
.ambient-two {
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0.55;
}

.ambient-one {
  width: 26rem;
  height: 26rem;
  top: -7rem;
  right: 6%;
  background: rgba(167, 197, 214, 0.34);
  animation: drift 18s ease-in-out infinite alternate;
}

.ambient-two {
  width: 22rem;
  height: 22rem;
  top: 16rem;
  left: -6rem;
  background: rgba(201, 184, 158, 0.22);
  animation: drift 22s ease-in-out infinite alternate-reverse;
}

.grid-glow {
  inset: 0;
  background:
    radial-gradient(circle at 82% 16%, rgba(47, 93, 132, 0.08), transparent 24%),
    radial-gradient(circle at 12% 22%, rgba(78, 92, 110, 0.08), transparent 20%);
}

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

.site-header {
  position: sticky;
  top: 18px;
  z-index: 20;
  margin-top: 18px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: rgba(255, 252, 247, 0.96);
  border: 1px solid rgba(19, 24, 32, 0.09);
  border-radius: 22px;
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 42px rgba(19, 24, 32, 0.08);
}

.brand-lockup,
.top-nav,
.nav-actions,
.hero-actions,
.hero-metrics,
.impact-copy,
.section-heading,
.cta-panel {
  display: flex;
}

.brand-lockup,
.nav-actions {
  align-items: center;
}

.brand-lockup {
  gap: 12px;
  min-width: 220px;
}

.brand-logo {
  width: 42px;
  height: 42px;
  display: block;
  flex: 0 0 auto;
  filter: drop-shadow(0 12px 18px rgba(19, 24, 32, 0.08));
}

.brand-name,
h1,
h2,
h3 {
  font-family: "Space Grotesk", sans-serif;
}

.brand-name {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #18212d;
}

.top-nav {
  flex: 1 1 auto;
  justify-content: center;
  gap: 28px;
}

.top-nav a,
.link-button {
  color: #445264;
  font-size: 0.95rem;
  transition: color 180ms ease, transform 180ms ease, opacity 180ms ease;
}

.top-nav a:hover,
.link-button:hover {
  color: #141c27;
  transform: translateY(-1px);
}

.top-nav a {
  position: relative;
  padding: 10px 0;
}

.top-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(47, 93, 132, 0.85), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms ease;
}

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

.nav-actions,
.hero-actions,
.hero-metrics,
.impact-copy,
.section-heading {
  gap: 14px;
}

.nav-actions {
  min-width: 220px;
  justify-content: flex-end;
}

.site-header .link-button {
  font-weight: 600;
}

.site-header .primary-button {
  min-height: 50px;
  padding-inline: 22px;
  border-radius: 14px;
  background: linear-gradient(135deg, #1d2a38, #253749);
  box-shadow: 0 12px 24px rgba(19, 24, 32, 0.14);
}

.primary-button,
.secondary-button,
.light-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease, color 220ms ease;
}

.primary-button {
  color: var(--paper);
  background: #1e2b39;
  box-shadow: 0 16px 36px rgba(19, 24, 32, 0.16);
}

.primary-button:hover,
.secondary-button:hover,
.light-button:hover,
.ghost-button:hover {
  transform: translateY(-3px);
}

.secondary-button,
.ghost-button {
  border-color: rgba(19, 24, 32, 0.12);
  color: var(--ink);
  background: rgba(255, 252, 247, 0.52);
}

.light-button {
  background: #f7f2ea;
  color: #18202b;
}

.ghost-button {
  background: rgba(255, 255, 255, 0.08);
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.2);
}

.big {
  min-height: 58px;
  padding-inline: 28px;
}

.section {
  padding: 96px 0;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 56px;
  align-items: start;
  min-height: calc(100vh - 120px);
  padding-top: 62px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 20px 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(19, 24, 32, 0.12) 18%, rgba(19, 24, 32, 0.12) 82%, transparent);
}

.hero-copy {
  position: relative;
  max-width: 600px;
  padding-top: 34px;
}

.hero-copy::before {
  content: "Call-center workflow infrastructure";
  position: absolute;
  top: 0;
  left: 0;
  color: rgba(19, 24, 32, 0.42);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.69rem;
}

.eyebrow-pill,
.mini-label,
.section-kicker,
.flow-label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(255, 252, 247, 0.7);
  border: 1px solid rgba(19, 24, 32, 0.08);
  border-radius: 999px;
  color: var(--ink-soft);
  margin-bottom: 22px;
  box-shadow: 0 12px 28px rgba(19, 24, 32, 0.04);
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #7f9fb5;
  box-shadow: 0 0 0 4px rgba(127, 159, 181, 0.14);
  animation: pulseDot 2.6s infinite;
}

h1 {
  margin: 0;
  font-size: clamp(3.1rem, 6.2vw, 5.8rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
  max-width: 10ch;
}

h1 span {
  display: block;
  color: #506170;
}

.hero-copy p,
.section-heading p,
.flow-copy p,
.cta-panel p,
.feature-card p {
  color: var(--ink-soft);
  line-height: 1.85;
}

.hero-copy p {
  max-width: 540px;
  margin: 24px 0 34px;
  font-size: 1.03rem;
}

.hero-metrics {
  flex-wrap: wrap;
  margin-top: 36px;
}

.glass-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.14)), var(--card);
  border: 1px solid rgba(19, 24, 32, 0.08);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 30%, transparent 70%, rgba(47, 93, 132, 0.05));
  pointer-events: none;
}

.metric-card {
  min-width: 180px;
  padding: 20px 22px;
  border-radius: 22px;
}

.metric-card strong {
  display: block;
  font-size: 2rem;
  margin-bottom: 8px;
  color: var(--ink);
}

.metric-card span {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
  padding-top: 36px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 18px;
  width: 1px;
  height: 120px;
  background: linear-gradient(180deg, rgba(19, 24, 32, 0.18), transparent);
}

.hero-panel {
  position: relative;
  min-height: 670px;
  margin-left: 42px;
  border-radius: 28px;
  padding: 34px 34px 34px 52px;
  background:
    linear-gradient(180deg, rgba(21, 31, 42, 0.98), rgba(10, 18, 28, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-panel);
  overflow: visible;
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 22px;
  pointer-events: none;
}

.floating-card {
  position: absolute;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(247, 243, 236, 0.96);
  color: #18202b;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  max-width: min(290px, calc(100% - 32px));
  z-index: 3;
}

.top-card {
  top: 28px;
  left: -18px;
  animation: levitateSoft 7s ease-in-out infinite;
}

.bottom-card {
  right: -8px;
  bottom: 30px;
  animation: levitateSoft 8.5s ease-in-out infinite reverse;
}

.floating-card strong,
.floating-card small {
  display: block;
  overflow-wrap: anywhere;
}

.floating-card strong {
  margin: 6px 0 4px;
  font-size: 1.5rem;
  line-height: 1.08;
}

.floating-card small,
.section-kicker,
.mini-label,
.flow-label {
  color: #637182;
}

.floating-card small {
  font-size: 0.95rem;
  line-height: 1.45;
}

.mini-label {
  display: block;
  margin-bottom: 8px;
  line-height: 1.3;
}

.dashboard-core {
  position: absolute;
  inset: 112px 32px 86px;
  border-radius: 28px;
  border: 1px solid rgba(109, 185, 223, 0.16);
  background:
    linear-gradient(180deg, rgba(7, 16, 28, 0.95), rgba(10, 24, 39, 0.98));
  overflow: hidden;
}

.dashboard-core::before,
.dashboard-core::after {
  content: "";
  position: absolute;
  inset: 0;
}

.dashboard-core::before {
  background:
    linear-gradient(rgba(109, 185, 223, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(109, 185, 223, 0.08) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.28;
}

.dashboard-core::after {
  background:
    radial-gradient(circle at 52% 54%, rgba(68, 171, 215, 0.14), transparent 34%),
    radial-gradient(circle at 50% 92%, rgba(109, 185, 223, 0.18), transparent 20%);
}

.radar-ring,
.voice-orb span {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(109, 185, 223, 0.2);
}

.radar-ring {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ring-one {
  width: 180px;
  height: 180px;
  animation: radar 4.5s linear infinite;
}

.ring-two {
  width: 300px;
  height: 300px;
  animation: radar 5.5s linear infinite;
}

.ring-three {
  width: 430px;
  height: 430px;
  animation: radar 6.5s linear infinite;
}

.waveform {
  position: absolute;
  inset: 50% 48px auto;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}

.waveform span {
  width: 10px;
  height: 24px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(63, 118, 151, 0.28), rgba(112, 212, 255, 0.98));
  box-shadow: 0 0 18px rgba(98, 197, 238, 0.38);
  animation: wave 1.35s ease-in-out infinite;
}

.waveform span:nth-child(odd) {
  animation-duration: 1.1s;
}

.waveform span:nth-child(3n) {
  animation-duration: 1.6s;
}

.scanline {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(126, 218, 255, 0.12), transparent);
  transform: translateY(-100%);
  animation: scan 4.8s linear infinite;
}

.dashboard-glow {
  position: absolute;
  left: 50%;
  bottom: 36px;
  transform: translateX(-50%);
  width: 46%;
  height: 10px;
  border-radius: 999px;
  background: rgba(104, 204, 245, 0.72);
  filter: blur(11px);
  box-shadow: 0 0 32px rgba(104, 204, 245, 0.58);
}

.insight-bars {
  display: flex;
  align-items: end;
  gap: 6px;
  height: 36px;
  margin: 10px 0 12px;
}

.insight-bars i {
  width: 7px;
  border-radius: 999px;
  background: linear-gradient(180deg, #365d7b, #84d2f4);
  animation: bars 1.6s ease-in-out infinite;
}

.insight-bars i:nth-child(1) { height: 15px; }
.insight-bars i:nth-child(2) { height: 28px; animation-delay: 0.1s; }
.insight-bars i:nth-child(3) { height: 21px; animation-delay: 0.18s; }
.insight-bars i:nth-child(4) { height: 32px; animation-delay: 0.24s; }

.impact-strip {
  display: grid;
  gap: 24px;
  align-items: center;
  padding-top: 44px;
  padding-bottom: 72px;
}

.impact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 32px;
  align-items: end;
}

.impact-copy {
  display: flex;
  flex-direction: column;
  max-width: 760px;
}

.impact-description {
  max-width: 680px;
  margin: 18px 0 0;
  font-size: 1.02rem;
}

.impact-aside {
  display: grid;
  gap: 16px;
}

.impact-stat {
  padding: 22px 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.18)), rgba(255, 252, 247, 0.62);
}

.impact-stat-label {
  display: block;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.7rem;
  color: #6d7888;
}

.impact-stat strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.2rem;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.impact-stat p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  line-height: 1.65;
}

.impact-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
  margin-top: 4px;
}

.impact-note {
  padding: 20px 22px;
  border-radius: 20px;
  background: rgba(255, 252, 247, 0.56);
  border: 1px solid rgba(19, 24, 32, 0.08);
  box-shadow: 0 18px 32px rgba(19, 24, 32, 0.04);
}

.impact-note strong,
.impact-note span {
  display: block;
}

.impact-note strong {
  margin-bottom: 8px;
  font-size: 1rem;
}

.impact-note span {
  color: var(--ink-soft);
  line-height: 1.65;
  font-size: 0.95rem;
}

h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1.03;
  letter-spacing: -0.05em;
}

.impact-ticker {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(28, 44, 58, 0.08);
    border-radius: 36px;
    padding: 30px 0;
    min-height: 164px;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 18% 50%, rgba(132, 191, 220, 0.14), transparent 24%),
    radial-gradient(circle at 82% 50%, rgba(98, 124, 146, 0.12), transparent 26%),
    linear-gradient(135deg, rgba(25, 36, 48, 0.98), rgba(35, 50, 64, 0.96));
    box-shadow: 0 28px 54px rgba(19, 24, 32, 0.12);
    margin-top: 50px;
}

.impact-ticker::before {
    content: "";
    position: absolute;
    inset: 6px;
    border-radius: 30px;
    border: 2px solid rgb(239 239 239 / 8%);
    pointer-events: none;
}

.impact-ticker::after {
  content: "Live operating capabilities";
  position: absolute;
  top: 18px;
  left: 26px;
  color: rgba(233, 239, 244, 0.64);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.68rem;
}

section#capabilities {
    padding-top: 35px;
}

.ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 18px;
  animation: ticker 26s linear infinite;
  padding-inline: 22px;
  margin-top: 28px;
}

.ticker-track span {
  padding: 16px 22px;
  border-radius: 999px;
  color: #edf3f7;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  white-space: nowrap;
  font-size: 1.02rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.ticker-track span:nth-child(3n) {
  color: #d7edf9;
  border-color: rgba(132, 191, 220, 0.22);
}

.ticker-track span:nth-child(4n) {
  background:
    linear-gradient(180deg, rgba(132, 191, 220, 0.18), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.05);
}

.section-heading {
  flex-direction: column;
  max-width: 760px;
  margin-bottom: 32px;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 24px;
}

.feature-card {
  min-height: 280px;
  padding: 28px;
  border-radius: var(--radius-lg);
}

.feature-card.large {
  min-height: 360px;
}

.feature-card.analytics-card {
  min-height: 340px;
}

.feature-card h3 {
  margin: 18px 0 10px;
  font-size: 1.65rem;
}

.feature-card ul {
  margin: 20px 0 0;
  padding-left: 18px;
  color: #4d5968;
  line-height: 1.9;
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(19, 24, 32, 0.06);
  border: 1px solid rgba(19, 24, 32, 0.08);
  color: var(--ink);
  font-weight: 700;
}

.accent-card {
  background:
    linear-gradient(180deg, rgba(58, 82, 102, 0.08), rgba(255, 255, 255, 0.24)),
    var(--card-strong);
}

.schedule-chip {
  margin-top: 28px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(19, 24, 32, 0.04);
  border: 1px solid rgba(19, 24, 32, 0.08);
}

.schedule-chip span,
.crm-orbit span {
  display: block;
  color: #4f5e6f;
}

.schedule-chip strong {
  display: block;
  margin-top: 10px;
  color: var(--ink);
}

.voice-orb {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: 160px;
  height: 160px;
}

.voice-orb span {
  inset: 0;
}

.voice-orb span:nth-child(1) { animation: radarStatic 3.6s linear infinite; }
.voice-orb span:nth-child(2) { inset: 22px; animation: radarStatic 3.2s linear infinite reverse; }
.voice-orb span:nth-child(3) {
  inset: 48px;
  background: radial-gradient(circle, rgba(117, 155, 181, 0.32), transparent 70%);
  border: 0;
  box-shadow: 0 0 30px rgba(117, 155, 181, 0.18);
}

.crm-orbit {
  position: relative;
  height: 120px;
  margin-top: 20px;
}

.crm-orbit span {
  position: absolute;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid rgba(19, 24, 32, 0.08);
}

.crm-orbit span:nth-child(1) { top: 0; left: 0; animation: floatX 6s ease-in-out infinite; }
.crm-orbit span:nth-child(2) { top: 24px; right: 8px; animation: floatX 7s ease-in-out infinite reverse; }
.crm-orbit span:nth-child(3) { bottom: 0; left: 24%; animation: floatX 7.8s ease-in-out infinite; }

.chart-area {
  position: relative;
  margin-top: 26px;
  height: 170px;
  border-radius: 22px;
  background:
    linear-gradient(rgba(19, 24, 32, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19, 24, 32, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(253, 250, 245, 0.66), rgba(242, 236, 227, 0.78));
  background-size: 28px 28px, 28px 28px, auto;
  overflow: hidden;
}

.chart-line {
  position: absolute;
  inset: auto 12px 26px 12px;
  height: 90px;
  clip-path: polygon(0 90%, 16% 78%, 28% 70%, 43% 63%, 58% 46%, 72% 40%, 86% 22%, 100% 0, 100% 100%, 0 100%);
  background: linear-gradient(180deg, rgba(47, 93, 132, 0.12), rgba(109, 185, 223, 0.38));
  box-shadow: 0 0 28px rgba(76, 134, 173, 0.14);
}

.chart-pulse {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #759bb5;
  box-shadow: 0 0 0 6px rgba(117, 155, 181, 0.12);
}

.pulse-one { bottom: 82px; left: 31%; animation: pulseMove 3.2s ease-in-out infinite; }
.pulse-two { bottom: 100px; left: 58%; animation: pulseMove 3.6s ease-in-out infinite; }
.pulse-three { bottom: 132px; left: 82%; animation: pulseMove 2.9s ease-in-out infinite; }

.flow-section {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 28px;
  align-items: center;
}

.flow-board {
  display: grid;
  grid-template-columns: 1fr auto 1.2fr auto 1fr;
  gap: 18px;
  padding: 30px;
  border-radius: var(--radius-xl);
}

.flow-column {
  display: grid;
  gap: 14px;
}

.flow-column.active .flow-node {
  background: rgba(47, 93, 132, 0.08);
  border-color: rgba(47, 93, 132, 0.14);
}

.flow-node {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(19, 24, 32, 0.08);
}

.flow-path {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.flow-path span {
  width: 58px;
  height: 2px;
  background: linear-gradient(90deg, rgba(47, 93, 132, 0.12), rgba(93, 149, 182, 0.8));
  position: relative;
  overflow: hidden;
}

.flow-path span::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 30%;
  background: rgba(255, 255, 255, 0.9);
  filter: blur(1px);
  animation: stream 2.8s linear infinite;
}

.cta-section {
  padding-bottom: 120px;
}

.cta-panel {
  position: relative;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 58px 28px;
  border-radius: 34px;
  overflow: hidden;
  background:
    linear-gradient(135deg, #202b37 0%, #2a3745 100%);
  color: var(--paper);
  box-shadow: 0 34px 90px rgba(19, 24, 32, 0.18);
}

.cta-panel h2,
.cta-panel .section-kicker {
  color: var(--paper);
}

.cta-panel p {
  color: rgba(245, 241, 234, 0.76);
  max-width: 700px;
}

.cta-noise {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.7) 0.7px, transparent 0.7px);
  background-size: 18px 18px;
  animation: shimmer 14s linear infinite;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: transform 700ms cubic-bezier(.2, .8, .2, 1), opacity 700ms ease;
}

[data-reveal="left"] { transform: translateX(-36px); }
[data-reveal="right"] { transform: translateX(36px); }
[data-reveal="up"] { transform: translateY(28px); }

.revealed {
  opacity: 1;
  transform: translate(0, 0);
}

@keyframes drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(20px, 12px, 0) scale(1.04); }
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.72; }
}

@keyframes levitateSoft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes wave {
  0%, 100% { transform: scaleY(0.45); opacity: 0.8; }
  50% { transform: scaleY(3.6); opacity: 1; }
}

@keyframes scan {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

@keyframes radar {
  0% { opacity: 0.12; transform: translate(-50%, -50%) scale(0.95); }
  50% { opacity: 0.24; }
  100% { opacity: 0.05; transform: translate(-50%, -50%) scale(1.05); }
}

@keyframes radarStatic {
  0% { opacity: 0.14; transform: scale(0.95); }
  50% { opacity: 0.24; }
  100% { opacity: 0.08; transform: scale(1.04); }
}

@keyframes bars {
  0%, 100% { transform: scaleY(0.88); opacity: 0.82; }
  50% { transform: scaleY(1.08); opacity: 1; }
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes floatX {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(8px, -6px); }
}

@keyframes pulseMove {
  0%, 100% { transform: scale(1); opacity: 0.82; }
  50% { transform: scale(1.24); opacity: 1; }
}

@keyframes stream {
  from { transform: translateX(-180%); }
  to { transform: translateX(320%); }
}

@keyframes shimmer {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(24px, 12px, 0); }
}

@media (max-width: 1080px) {
  .site-header {
    padding: 14px 18px;
  }

  .nav-actions {
    margin-left: auto;
  }

  .top-nav {
    display: none;
  }

  .hero,
  .flow-section,
  .feature-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-panel {
    min-height: 560px;
    margin-left: 0;
    padding-left: 34px;
  }

  .hero-visual::before,
  .hero::before {
    display: none;
  }

  .flow-board {
    grid-template-columns: 1fr;
  }

  .flow-path {
    display: none;
  }
}

@media (max-width: 720px) {
  .site-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    gap: 12px;
  }

  .top-nav {
    display: none;
  }

  .nav-actions {
    width: auto;
    justify-content: flex-end;
    margin-left: 0;
    margin-top: 0;
  }

  .brand-lockup {
    min-width: 0;
  }

  .brand-name {
    font-size: 1rem;
  }

  .section {
    padding: 78px 0;
  }

  .hero {
    gap: 34px;
  }

  .impact-strip {
    padding-bottom: 56px;
  }

  .impact-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .impact-notes {
    grid-template-columns: 1fr;
  }

  .impact-ticker {
    min-height: 122px;
    padding-block: 20px;
    border-radius: 28px;
  }

  .ticker-track span {
    padding: 13px 18px;
    font-size: 0.95rem;
  }

  .impact-ticker::after {
    top: 16px;
    left: 20px;
  }

  .ticker-track {
    margin-top: 24px;
    padding-inline: 18px;
  }

  h1 {
    font-size: clamp(2.7rem, 14vw, 4.1rem);
    max-width: 9ch;
  }

  .hero-actions,
  .hero-metrics {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions a,
  .hero-metrics .metric-card {
    width: 100%;
  }

  .hero-copy::before {
    position: static;
    display: block;
    margin-bottom: 18px;
  }

  .hero-panel {
    min-height: 500px;
    padding: 18px 16px;
  }

  .dashboard-core {
    inset: 146px 16px 102px;
  }

  .top-card,
  .bottom-card {
    left: 16px;
    right: 16px;
    max-width: none;
    width: auto;
    animation: none;
  }

  .top-card {
    top: 18px;
  }

  .bottom-card {
    bottom: 18px;
  }

  .waveform {
    inset-inline: 18px;
    gap: 4px;
  }

  .waveform span {
    width: 7px;
  }

  .feature-card,
  .metric-card,
  .cta-panel {
    padding-inline: 20px;
  }

  .feature-grid,
  .flow-section {
    gap: 18px;
  }

  .cta-panel .hero-actions {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .site-header {
    justify-content: center;
    gap: 10px;
    top: 12px;
    margin-top: 12px;
  }

  .nav-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    justify-items: stretch;
    gap: 10px;
    margin-top: 4px;
  }

  .nav-actions .link-button {
    display: none;
  }

  .nav-actions a {
    width: 100%;
  }

  .nav-actions .primary-button {
    min-height: 56px;
  }

  .hero-copy {
    padding-top: 24px;
  }

  .impact-strip {
    padding-bottom: 48px;
  }

  .impact-description {
    font-size: 0.97rem;
  }

  .impact-stat {
    padding: 18px 18px;
  }

  .impact-stat strong {
    font-size: 1.8rem;
  }

  .hero-panel {
    min-height: 470px;
  }

  .dashboard-core {
    inset: 140px 12px 98px;
  }

  .waveform span {
    width: 6px;
  }

  .floating-card {
    padding: 15px 16px;
  }

  .floating-card strong {
    font-size: 1.18rem;
  }

  .floating-card small,
  .mini-label {
    font-size: 0.8rem;
    letter-spacing: 0.14em;
  }
}

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

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

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