@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap");

:root {
  --ink: #0a2540;
  --ink-soft: #425466;
  --muted: #6b7c93;
  --paper: #ffffff;
  --paper-soft: #f6f9fc;
  --line: rgba(10, 37, 64, 0.1);
  --line-strong: rgba(10, 37, 64, 0.18);
  --blue: #635bff;
  --cyan: #00b8d9;
  --green: #24b47e;
  --pink: #ff5c7a;
  --orange: #f5a623;
  --purple: #7f6df2;
  --slate: #0a2540;
  --shadow-sm: 0 8px 24px rgba(50, 50, 93, 0.08);
  --shadow-md: 0 18px 48px rgba(50, 50, 93, 0.16);
  --shadow-lg: 0 30px 80px rgba(50, 50, 93, 0.22);
  --radius: 8px;
  --container: 1180px;
  --font: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font);
  line-height: 1.55;
  background:
    radial-gradient(circle at top left, rgba(99, 91, 255, 0.08) 0, transparent 32%),
    radial-gradient(circle at 85% 12%, rgba(0, 184, 217, 0.06) 0, transparent 20%),
    linear-gradient(135deg, #f9fcff 0%, #f4f7fb 44%, #ffffff 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: -2;
  height: 960px;
  background:
    linear-gradient(rgba(10, 37, 64, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 37, 64, 0.018) 1px, transparent 1px);
  background-size: 48px 48px, 48px 48px;
  opacity: 0.9;
}

body::after {
  content: "";
  position: absolute;
  top: 124px;
  right: -16vw;
  z-index: -1;
  width: 82vw;
  height: 360px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.28), transparent 24%),
    linear-gradient(120deg, #edf2f7 0%, #dfe8f2 42%, #e8eef6 100%);
  border-radius: 40px;
  transform: skewY(-10deg);
  opacity: 0.9;
}

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 14px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.skip-link:focus {
  left: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 14px 0;
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(10, 37, 64, 0.06);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.brand small {
  display: block;
  margin-left: 2px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 9px;
  color: #fff;
  background: var(--ink);
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(10, 37, 64, 0.16);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 24px;
  color: rgba(10, 37, 64, 0.72);
  font-size: 14px;
  font-weight: 800;
}

.nav-links a,
.footer nav a {
  transition: color 160ms ease, opacity 160ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"],
.footer nav a:hover {
  color: var(--blue);
}

.nav-button {
  display: none;
}

.menu-button {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-content: center;
  gap: 5px;
  border: 0;
  border-radius: 999px;
  background: rgba(10, 37, 64, 0.06);
  cursor: pointer;
}

.menu-button span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: opacity 160ms ease, transform 160ms ease;
}

.menu-button[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  width: min(var(--container), calc(100% - 40px));
  margin: 8px auto 0;
  padding: 10px;
  display: grid;
  gap: 4px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-md);
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu a {
  padding: 12px;
  border-radius: 6px;
  color: var(--ink-soft);
  font-weight: 800;
}

.mobile-menu a:hover {
  background: var(--paper-soft);
  color: var(--blue);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 11px 17px;
  border: 0;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}

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

.btn-primary {
  color: #fff;
  background: var(--ink);
  box-shadow: 0 10px 24px rgba(10, 37, 64, 0.2);
}

.btn-primary:hover {
  background: #1f3b57;
}

.btn-secondary {
  color: var(--blue);
  background: transparent;
  box-shadow: none;
}

.btn-secondary:hover {
  color: var(--ink);
  background: rgba(99, 91, 255, 0.08);
}

.btn-light {
  color: var(--ink);
  background: #fff;
  box-shadow: 0 12px 34px rgba(10, 37, 64, 0.14);
}

.btn-large {
  min-height: 48px;
  padding: 14px 20px;
}

.btn-full {
  width: 100%;
}

.hero,
.contact-hero {
  position: relative;
  overflow: hidden;
}

.hero {
  min-height: calc(100vh - 86px);
  display: grid;
  align-items: center;
  padding: 78px 0 110px;
}

.contact-hero {
  padding: 94px 0 112px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.22) 44%, rgba(255, 255, 255, 0.94) 100%),
    linear-gradient(145deg, rgba(246, 249, 252, 0.94) 0 48%, transparent 48%);
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 34px -8vw auto auto;
  width: min(800px, 72vw);
  height: 500px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.3), transparent 26%),
    linear-gradient(120deg, #eef3f8 0%, #e2e8f0 54%, #f6f8fb 100%);
  border-radius: 44px;
  transform: rotate(-10deg) skewX(-10deg);
  box-shadow: 0 24px 60px rgba(10, 37, 64, 0.08);
}

.hero-bg::after {
  content: "";
  position: absolute;
  right: -6vw;
  bottom: 48px;
  width: min(650px, 64vw);
  height: 180px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.28), transparent),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.24) 0 1px, transparent 1px 28px);
  border-radius: 28px;
  transform: rotate(-10deg) skewX(-10deg);
  opacity: 0.75;
}

.hero-grid,
.contact-grid {
  display: grid;
  gap: 54px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: -0.045em;
  line-height: 1.02;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  color: var(--ink);
  font-size: clamp(50px, 8vw, 88px);
  font-weight: 900;
}

h2 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 900;
}

h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 21px;
  font-weight: 900;
}

.hero-text,
.contact-copy p,
.section-heading p:not(.eyebrow),
.feature-card p,
.step p,
.benefit-item p,
.audience-card p,
.testimonial-card p,
.cta-panel p,
.showcase-description,
.contact-form p {
  color: var(--ink-soft);
}

.hero-text {
  max-width: 620px;
  margin-bottom: 30px;
  font-size: clamp(18px, 2vw, 21px);
}

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

.metric-strip,
.contact-proof,
.stats-grid {
  display: grid;
  gap: 12px;
}

.metric-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 610px;
  margin-top: 38px;
}

.metric-strip div,
.contact-proof div {
  padding: 0 18px 0 0;
  border-right: 1px solid var(--line);
}

.metric-strip div:last-child,
.contact-proof div:last-child {
  border-right: 0;
}

.metric-strip strong,
.contact-proof strong {
  display: block;
  color: var(--ink);
  font-size: 26px;
  line-height: 1;
  letter-spacing: -0.035em;
}

.metric-strip span,
.contact-proof span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  z-index: 1;
  perspective: 1200px;
}

.campaign-card,
.contact-form,
.dashboard-panel {
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.97), rgba(248, 251, 255, 0.92)),
    #fff;
  border: 1px solid rgba(10, 37, 64, 0.06);
  box-shadow: 0 24px 70px rgba(10, 37, 64, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.campaign-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  transform: rotateY(-10deg) rotateX(4deg) rotateZ(-2deg);
  transform-origin: center;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.campaign-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--green), var(--orange), var(--pink));
}

.card-topline,
.creator-match,
.creator-row,
.insight-grid,
.dashboard-header,
.mini-chart-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.card-topline {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.status-dot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #00855f;
  background: rgba(36, 180, 126, 0.12);
}

.status-dot::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.creator-match {
  justify-content: flex-start;
  padding: 16px;
  border-radius: var(--radius);
  background: #f6f9fc;
}

.avatar-stack {
  display: flex;
}

.avatar-stack span {
  width: 42px;
  height: 42px;
  margin-right: -12px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.avatar-stack span:nth-child(2) {
  background: linear-gradient(135deg, var(--pink), var(--orange));
}

.avatar-stack span:nth-child(3) {
  background: linear-gradient(135deg, var(--slate), var(--purple));
}

.creator-match p,
.creator-row span {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 16px 0;
}

.insight-grid div,
.pulse-kpis div,
.signal-list div,
.stat-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.insight-grid span,
.pulse-kpis span,
.signal-list span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.insight-grid strong {
  font-size: clamp(22px, 3vw, 30px);
  letter-spacing: -0.04em;
}

.mini-chart,
.pulse-chart {
  border-radius: var(--radius);
  color: #fff;
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, #0a2540, #111439);
  background-size: 36px 36px, 36px 36px, auto;
}

.mini-chart {
  min-height: 220px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 12px;
  padding: 18px;
}

.mini-chart-top {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 900;
}

.mini-chart-top strong {
  display: block;
  margin-top: 4px;
  color: #fff;
  font-size: 26px;
  letter-spacing: -0.04em;
}

.mini-chart-top small,
.creator-row small,
.dashboard-header small,
.pulse-kpis small {
  display: inline-flex;
  width: max-content;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--green);
  background: rgba(36, 180, 126, 0.12);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.mini-chart-plot {
  position: relative;
  min-height: 126px;
}

.mini-chart-plot svg {
  position: absolute;
  inset: 4px 0 18px;
  width: 100%;
  height: calc(100% - 22px);
}

.mini-guide {
  stroke: rgba(255, 255, 255, 0.09);
}

.mini-area {
  fill: rgba(99, 91, 255, 0.16);
}

.mini-line {
  fill: none;
  stroke: url(#miniLineGradient);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 430;
  stroke-dashoffset: 430;
  animation: drawLine 1.25s ease forwards;
}

.mini-point {
  fill: #0a2540;
  stroke: #fff;
  stroke-width: 4;
}

.mini-chart-meta,
.mini-axis {
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  font-weight: 900;
}

.mini-chart-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mini-chart-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.mini-chart-meta b {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
}

.mini-chart-meta span:nth-child(2) b {
  background: var(--purple);
}

.mini-chart-meta span:nth-child(3) b {
  background: var(--pink);
}

.mini-axis {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  text-align: center;
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

.creator-row {
  margin-top: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.creator-row strong,
.creator-row span {
  display: block;
}

.creator-row small {
  color: var(--blue);
  background: rgba(99, 91, 255, 0.1);
}

.section {
  position: relative;
  overflow: hidden;
  padding: 94px 0;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.section > .container {
  position: relative;
  z-index: 1;
}

.section-soft {
  background:
    linear-gradient(150deg, rgba(246, 249, 252, 0.96) 0 68%, #ffffff 68%),
    linear-gradient(rgba(10, 37, 64, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 37, 64, 0.018) 1px, transparent 1px);
  background-size: auto, 46px 46px, 46px 46px;
}

.section-dark {
  color: #fff;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(145deg, #0d2138 0%, #16324b 100%);
  background-size: 52px 52px, 52px 52px, auto;
}

.section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 0 12%, rgba(255, 255, 255, 0.05) 12% 18%, transparent 18% 100%);
}

.section-dark h2 {
  color: #fff;
}

.section-dark .eyebrow {
  color: #9dc7ff;
}

.section-dark .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.feature-grid,
.testimonial-grid,
.showcase-grid,
.side-by-side,
.faq-grid,
.contact-section-grid,
.split,
.analytics-grid {
  display: grid;
  gap: 24px;
}

.feature-card,
.benefit-item,
.testimonial-card,
.showcase-card,
.audience-card,
.faq-list details {
  border: 1px solid rgba(10, 37, 64, 0.06);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.94));
  box-shadow: 0 14px 36px rgba(10, 37, 64, 0.07);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.feature-card:hover,
.benefit-item:hover,
.testimonial-card:hover,
.showcase-card:hover,
.showcase-card.is-open {
  transform: translateY(-3px);
  border-color: rgba(99, 91, 255, 0.24);
  box-shadow: 0 18px 42px rgba(10, 37, 64, 0.12);
}

.feature-card,
.testimonial-card,
.audience-card {
  padding: 28px;
}

.icon-badge {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 32px;
  margin-bottom: 24px;
  border-radius: 999px;
  color: var(--blue);
  background: rgba(99, 91, 255, 0.1);
  font-size: 12px;
  font-weight: 900;
}

.steps,
.benefit-list,
.faq-list {
  display: grid;
  gap: 14px;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.step span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-weight: 900;
}

.stat-card {
  min-height: 132px;
}

.stat-card strong {
  display: block;
  color: var(--ink);
  font-size: 38px;
  line-height: 1;
  letter-spacing: -0.05em;
}

.stat-card span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.flow-showcase {
  position: relative;
  overflow: hidden;
  height: clamp(360px, 45vw, 520px);
  margin-top: 34px;
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, rgba(99, 91, 255, 0.08), rgba(0, 184, 217, 0.08)),
    linear-gradient(rgba(10, 37, 64, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 37, 64, 0.04) 1px, transparent 1px),
    #fff;
  background-size: auto, 40px 40px, 40px 40px, auto;
  box-shadow: var(--shadow-sm);
}

.connection-flow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.network-labels {
  fill: #94a3b8;
  font-size: 14px;
  font-family: Arial;
}

/* Flow animation */
.flow {
  stroke-dasharray: 5;
  animation: flowMove 1.8s linear infinite, floatFlow 3.5s ease-in-out infinite;
  opacity: 0.75;
}

@keyframes flowMove {
  from { stroke-dashoffset: 0; }
  to { stroke-dashoffset: -12; }
}

@keyframes floatFlow {
  0%, 100% { 
    opacity: 0.35;
    filter: drop-shadow(0 0 1px rgba(255, 20, 147, 0.3));
  }
  50% { 
    opacity: 1;
    filter: drop-shadow(0 0 4px rgba(255, 20, 147, 0.8));
  }
}

/* Nodes */
.nodes circle {
  fill: #ff1493;
  stroke: #ff69b4;
  stroke-width: 1.5;
  filter: url(#softGlow);
  animation: float 5s cubic-bezier(0.34, 1.56, 0.64, 1) infinite, nodeGlow 3s ease-in-out infinite;
  transition: all 0.3s ease;
}

.nodes circle:nth-child(odd) {
  animation-delay: 0.5s, 0.2s;
}

.nodes circle:nth-child(even) {
  animation-delay: 1.2s, 0.8s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  25% { transform: translateY(-8px); }
  50% { transform: translateY(-12px); }
  75% { transform: translateY(-6px); }
}

@keyframes nodeGlow {
  0%, 100% {
    filter: url(#softGlow) drop-shadow(0 0 2px rgba(255, 105, 180, 0.4));
  }
  50% {
    filter: url(#softGlow) drop-shadow(0 0 6px rgba(255, 20, 147, 0.8));
  }
}

/* Orbits */
.orbits circle {
  fill: none;
  stroke: #1e90ff22;
  stroke-width: 1;
  animation: rotate 20s linear infinite;
  transform-origin: 600px 260px;
}

.orbits circle:nth-child(2) {
  animation-duration: 30s;
}
.orbits circle:nth-child(3) {
  animation-duration: 40s;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Hub */
.hub circle {
  fill: #0b0f1a;
  stroke: #ff1493;
  stroke-width: 2;
  filter: url(#softGlow);
}

.pulse {
  fill: #ff1493;
  animation: pulse 2.5s cubic-bezier(0.34, 1.56, 0.64, 1) infinite, hubGlow 2.5s ease-in-out infinite;
  opacity: 0.3;
}

@keyframes pulse {
  0% { r: 35; opacity: 0.4; }
  40% { r: 50; opacity: 0.15; }
  100% { r: 35; opacity: 0.4; }
}

@keyframes hubGlow {
  0%, 100% {
    filter: drop-shadow(0 0 3px rgba(255, 20, 147, 0.4));
  }
  50% {
    filter: drop-shadow(0 0 15px rgba(255, 20, 147, 0.9));
  }
}

.hub text {
  fill: white;
  font-weight: bold;
}

.flow-controls {
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 2;
}

.flow-control {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.flow-control span {
  display: inline-block;
  width: 10px;
  height: 14px;
  border-left: 3px solid var(--ink);
  border-right: 3px solid var(--ink);
}

.flow-showcase.is-paused path {
  animation-play-state: paused;
}

@keyframes flowDash {
  from {
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: -200;
  }
}

.dashboard-panel {
  padding: clamp(20px, 3vw, 30px);
  color: var(--ink);
}

.dashboard-header {
  align-items: flex-start;
  margin-bottom: 18px;
}

.dashboard-header span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.dashboard-header strong {
  display: block;
  margin-top: 5px;
  font-size: 27px;
  letter-spacing: -0.04em;
}

.pulse-chart {
  min-height: 390px;
  padding: 18px;
}

.pulse-chart svg {
  width: 100%;
  height: 220px;
}

.pulse-grid line {
  stroke: rgba(255, 255, 255, 0.09);
}

.pulse-area {
  fill: url(#pulseArea);
}

.pulse-line {
  fill: none;
  stroke: url(#pulseLine);
  stroke-width: 5;
  stroke-linecap: round;
}

.pulse-points circle {
  fill: #0a2540;
  stroke: #fff;
  stroke-width: 4;
}

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

.channel-bars div {
  position: relative;
  display: grid;
  grid-template-columns: 92px 1fr auto;
  gap: 12px;
  align-items: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 900;
}

.channel-bars div::before,
.channel-bars div::after {
  content: "";
  grid-column: 2;
  grid-row: 1;
  height: 10px;
  border-radius: 999px;
}

.channel-bars div::before {
  background: rgba(255, 255, 255, 0.11);
}

.channel-bars div::after {
  width: var(--w);
  background: linear-gradient(90deg, var(--c), rgba(255, 255, 255, 0.72));
}

.channel-bars strong {
  color: #fff;
}

.pulse-kpis,
.signal-list {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.pulse-kpis strong,
.signal-list strong {
  display: block;
  color: var(--ink);
  font-size: 27px;
  letter-spacing: -0.04em;
}

.benefit-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 24px;
}

.benefit-item > span {
  width: 12px;
  height: 12px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(36, 180, 126, 0.11);
}

.testimonial-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card p {
  font-size: 17px;
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.testimonial-card span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.showcase-card {
  overflow: hidden;
  align-self: start;
}

.showcase-media {
  min-height: 282px;
  background:
    linear-gradient(135deg, rgba(99, 91, 255, 0.08), rgba(0, 184, 217, 0.08)),
    var(--paper-soft);
}

.media-one {
  background: linear-gradient(180deg, transparent, rgba(10, 37, 64, 0.16)), url("youtube.jpg") center / cover no-repeat;
}

.media-two {
  background: linear-gradient(180deg, transparent, rgba(10, 37, 64, 0.16)), url("saas.jpg") center / cover no-repeat;
}

.media-three {
  background: linear-gradient(180deg, transparent, rgba(10, 37, 64, 0.16)), url("fitnessdrop.jpg") center / cover no-repeat;
}

.showcase-content {
  display: grid;
  gap: 16px;
  padding: 22px;
}

.showcase-content span {
  display: block;
  margin-bottom: 7px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.showcase-content h3 {
  margin-bottom: 0;
}

.expand-button {
  width: fit-content;
  min-height: 40px;
  padding: 10px 14px;
  border: 0;
  border-radius: 999px;
  color: var(--blue);
  background: rgba(99, 91, 255, 0.1);
  font-weight: 900;
  cursor: pointer;
}

.showcase-description {
  margin: 0;
  font-size: 14px;
}

.audience-card {
  position: relative;
  overflow: hidden;
}

.audience-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.creator-card::before {
  background: linear-gradient(90deg, var(--pink), var(--orange));
}

.audience-card h2 {
  font-size: clamp(30px, 4vw, 44px);
}

.audience-card ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.audience-card li {
  display: flex;
  gap: 10px;
  color: var(--ink-soft);
  font-weight: 850;
}

.audience-card li::before {
  content: "";
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--green);
}

.faq-list details {
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 900;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--blue);
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--ink-soft);
}

code {
  padding: 2px 6px;
  border-radius: 6px;
  color: var(--blue);
  background: rgba(99, 91, 255, 0.1);
  font-weight: 800;
}

.contact-section-grid {
  align-items: start;
}

.contact-form {
  padding: clamp(24px, 4vw, 36px);
}

.contact-form h2 {
  margin-bottom: 8px;
  font-size: 28px;
}

label {
  display: block;
  margin: 18px 0 8px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 900;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

input {
  min-height: 50px;
  padding: 0 15px;
}

textarea {
  min-height: 154px;
  padding: 14px 15px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(99, 91, 255, 0.13);
}

.contact-form .btn {
  margin-top: 22px;
}

.form-status {
  min-height: 22px;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 900;
}

.form-status.success {
  color: #00855f;
}

.form-status.error {
  color: #df1b41;
}

.trusted-label {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

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

.logo-cloud span {
  display: grid;
  min-height: 74px;
  place-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: rgba(10, 37, 64, 0.52);
  background:
    linear-gradient(180deg, #ffffff, #f8fbff);
  font-weight: 900;
  box-shadow: var(--shadow-sm);
}

.logo-cloud img,
.brand-mark {
  display: block;
  width: 48px;
  height: 48px;
  object-fit: contain;
}

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

.cta-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: center;
  gap: 28px;
  padding: clamp(32px, 5vw, 58px);
  border-radius: var(--radius);
  color: #fff;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.16), transparent 28%),
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(135deg, #07192d 0%, #0a2540 34%, #635bff 70%, #00b8d9 100%);
  background-size: auto, 44px 44px, 44px 44px, auto;
  box-shadow: 0 28px 70px rgba(10, 37, 64, 0.18);
}

.cta-panel::after {
  content: "";
  position: absolute;
  inset: auto -8% -46% auto;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(36, 180, 126, 0.26) 0%, rgba(36, 180, 126, 0) 72%);
}

.cta-panel > * {
  position: relative;
  z-index: 1;
}

.cta-panel h2 {
  max-width: 780px;
  color: #fff;
}

.cta-panel .eyebrow {
  color: var(--cyan);
}

.cta-panel p {
  color: rgba(255, 255, 255, 0.76);
}

.footer {
  padding: 36px 0;
  border-top: 1px solid rgba(10, 37, 64, 0.06);
  background: linear-gradient(180deg, #fbfdff 0%, #ffffff 100%);
}

.footer-inner {
  display: grid;
  gap: 18px;
  align-items: center;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.footer p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 620ms ease, transform 620ms ease;
}

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

:focus-visible {
  outline: 3px solid rgba(99, 91, 255, 0.28);
  outline-offset: 3px;
}

@media (min-width: 760px) {
  .nav-links,
  .nav-button {
    display: inline-flex;
  }

  .menu-button,
  .mobile-menu {
    display: none;
  }

  .feature-grid,
  .testimonial-grid,
  .showcase-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .pulse-kpis,
  .signal-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-inner {
    grid-template-columns: 1fr auto auto;
  }
}

@media (min-width: 980px) {
  .hero-grid,
  .contact-grid,
  .analytics-grid,
  .contact-section-grid {
    grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  }

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

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

  .cta-panel {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

@media (max-width: 900px) {
  body::after {
    top: 104px;
    right: -44vw;
    width: 120vw;
    height: 300px;
  }

  .hero-bg::before {
    opacity: 0.42;
  }

  .campaign-card {
    transform: none;
  }

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

@media (max-width: 760px) {
  .hero,
  .contact-hero {
    min-height: 0;
    padding-top: 58px;
    padding-bottom: 76px;
  }

  .metric-strip,
  .contact-proof,
  .insight-grid {
    grid-template-columns: 1fr;
  }

  .metric-strip div,
  .contact-proof div {
    padding: 0 0 14px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metric-strip div:last-child,
  .contact-proof div:last-child {
    border-bottom: 0;
  }

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

  .section {
    padding: 68px 0;
  }

  .dashboard-header,
  .mini-chart-top {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .container,
  .mobile-menu {
    width: min(var(--container), calc(100% - 28px));
  }

  body::after {
    height: 240px;
  }

  .brand {
    font-size: 18px;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  h2 {
    font-size: clamp(30px, 10vw, 42px);
  }

  .campaign-card,
  .contact-form,
  .dashboard-panel,
  .feature-card,
  .testimonial-card,
  .audience-card {
    padding: 20px;
  }

  .channel-bars div {
    grid-template-columns: 1fr auto;
    row-gap: 8px;
  }

  .channel-bars div::before,
  .channel-bars div::after {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .flow-showcase {
    height: 330px;
    margin-inline: -14px;
    border-radius: 0;
  }

  .connection-flow {
    width: 190%;
    left: 50%;
    transform: translateX(-50%);
  }

  .network-labels {
    display: none;
  }

  .logo-cloud {
    grid-template-columns: 1fr;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
