:root {
  --navy-950: #020814;
  --navy-900: #061226;
  --navy-800: #0b1c3a;
  --blue-600: #1578ff;
  --blue-500: #1f8cff;
  --cyan-400: #20d8ef;
  --teal-400: #24d6c2;
  --violet-500: #7a5cff;
  --ink: #101828;
  --muted: #667085;
  --line: #d9e2f1;
  --surface: #ffffff;
  --surface-blue: #f4f8ff;
  --shadow: 0 24px 80px rgba(7, 20, 44, 0.18);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(1180px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 12px 14px;
  color: #fff;
  background: rgba(4, 12, 28, 0.72);
  border: 1px solid rgba(124, 168, 255, 0.18);
  border-radius: var(--radius);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(4, 12, 28, 0.92);
  border-color: rgba(124, 168, 255, 0.28);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  flex: 0 0 auto;
  width: 44px;
  height: 36px;
  place-items: center;
}

.brand-mark svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.brand-word {
  display: inline-flex;
  align-items: baseline;
  font-size: 1.12rem;
  font-weight: 760;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-word strong {
  color: var(--blue-500);
  font-weight: 860;
}

.mark-line,
.mark-ring,
.mark-handle {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mark-line {
  stroke-width: 4.2;
}

.line-one,
.line-two {
  stroke: var(--cyan-400);
}

.line-three,
.mark-ring,
.mark-handle {
  stroke: var(--blue-600);
}

.mark-ring {
  stroke-width: 5.4;
}

.mark-handle {
  stroke-width: 7;
}

.mark-dot {
  fill: var(--blue-500);
}

.dot-one,
.dot-two {
  fill: var(--cyan-400);
}

.mark-person-head,
.mark-person-body {
  fill: #fff;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 650;
}

.site-nav a {
  transition: color 160ms ease;
}

.site-nav a:hover {
  color: #fff;
}

.nav-cta {
  padding: 10px 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--cyan-400), var(--blue-600));
  border-radius: var(--radius);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 38px;
  padding: 0;
  color: #fff;
  background: transparent;
  border: 0;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  border-radius: 999px;
}

.section-dark {
  color: #fff;
  background:
    radial-gradient(circle at 80% 18%, rgba(31, 140, 255, 0.2), transparent 30%),
    radial-gradient(circle at 24% 22%, rgba(32, 216, 239, 0.18), transparent 28%),
    linear-gradient(145deg, var(--navy-950), var(--navy-900) 56%, #071a3a);
}

.hero {
  min-height: 94vh;
  padding: 138px 0 74px;
}

.hero-grid,
.section-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(420px, 0.94fr);
  align-items: center;
  gap: 48px;
}

.brand-line {
  margin: 0 0 18px;
  color: transparent;
  background: linear-gradient(90deg, var(--blue-500), var(--cyan-400), var(--violet-500));
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 0.86rem;
  font-weight: 840;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 5.4vw, 5.45rem);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.06rem;
  line-height: 1.2;
}

.hero-intro {
  max-width: 650px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.18rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 760;
  line-height: 1;
  cursor: pointer;
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--cyan-400), var(--blue-600) 68%, var(--violet-500));
  box-shadow: 0 18px 42px rgba(20, 119, 255, 0.34);
}

.button-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.18);
}

.hero-visual {
  position: relative;
}

.hero-visual::before {
  position: absolute;
  inset: -12% -6% auto auto;
  width: 56%;
  height: 64%;
  content: "";
  background: linear-gradient(135deg, rgba(32, 216, 239, 0.42), rgba(21, 120, 255, 0.08));
  filter: blur(54px);
}

.dashboard-shell {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(157, 190, 255, 0.24);
  border-radius: var(--radius);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(20px);
}

.page-hero {
  padding: 150px 0 92px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.82fr);
  align-items: center;
  gap: 64px;
}

.page-hero h1 {
  max-width: 880px;
  font-size: clamp(3rem, 5.2vw, 5.25rem);
}

.page-panel {
  position: relative;
  overflow: hidden;
  padding: 28px;
  color: #fff;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.055));
  border: 1px solid rgba(157, 190, 255, 0.24);
  border-radius: var(--radius);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.page-panel::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--cyan-400), var(--blue-600), var(--violet-500));
}

.page-panel span,
.detail-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--cyan-400);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.page-panel strong {
  display: block;
  margin-bottom: 22px;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.06;
}

.campaign-link-preview {
  display: block;
  max-width: 100%;
  margin-bottom: 22px;
  padding: 18px 20px;
  color: #fff;
  background: rgba(2, 8, 20, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  font-size: clamp(1.1rem, 2vw, 1.42rem);
  font-weight: 780;
  line-height: 1.25;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.page-panel p {
  color: rgba(255, 255, 255, 0.72);
}

.mini-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.mini-metrics div {
  padding: 16px;
  background: rgba(2, 8, 20, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
}

.mini-metrics b,
.mini-metrics small {
  display: block;
}

.mini-metrics b {
  font-size: 1.5rem;
}

.mini-metrics small {
  color: rgba(255, 255, 255, 0.62);
}

.page-section {
  padding: 96px 0;
  background: #fff;
}

.campaign-walkthrough {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  background:
    radial-gradient(circle at 14% 20%, rgba(32, 216, 239, 0.14), transparent 28%),
    radial-gradient(circle at 84% 8%, rgba(122, 92, 255, 0.12), transparent 26%),
    linear-gradient(180deg, #ffffff, #f6f9ff);
}

.campaign-walkthrough::before {
  position: absolute;
  inset: 0 auto auto 50%;
  width: min(1120px, 86vw);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(31, 140, 255, 0.38), transparent);
  transform: translateX(-50%);
}

.walkthrough-stage {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.walkthrough-stage::before {
  position: absolute;
  top: 88px;
  left: 14%;
  right: 14%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, rgba(31, 140, 255, 0), rgba(31, 140, 255, 0.42), rgba(32, 216, 239, 0.5), rgba(122, 92, 255, 0));
}

.walkthrough-card {
  position: relative;
  overflow: hidden;
  min-height: 370px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(147, 170, 209, 0.42);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(10, 33, 70, 0.1);
}

.walkthrough-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--cyan-400), var(--blue-600), var(--violet-500));
}

.walkthrough-number {
  position: absolute;
  top: 24px;
  right: 24px;
  color: rgba(21, 120, 255, 0.18);
  font-size: 4.8rem;
  font-weight: 900;
  line-height: 1;
}

.walkthrough-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 68px;
  color: #fff;
  place-items: center;
  background:
    radial-gradient(circle at 28% 24%, rgba(255, 255, 255, 0.34), transparent 28%),
    linear-gradient(135deg, var(--cyan-400), var(--blue-600) 68%, var(--violet-500));
  border-radius: var(--radius);
  box-shadow: 0 18px 34px rgba(21, 120, 255, 0.28);
}

.walkthrough-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.walkthrough-card h3 {
  font-size: 1.35rem;
}

.walkthrough-card p {
  color: var(--muted);
}

.mini-link,
.source-pills,
.outcome-row {
  margin-top: 24px;
}

.mini-link {
  padding: 14px 16px;
  color: var(--blue-600);
  background: var(--surface-blue);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 780;
  overflow-wrap: anywhere;
}

.source-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.source-pills span {
  padding: 8px 10px;
  color: #123a7a;
  background: #eef5ff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 760;
}

.outcome-row {
  padding: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy-900), #102a5a);
  border-radius: var(--radius);
}

.outcome-row strong,
.outcome-row small {
  display: block;
}

.outcome-row strong {
  font-size: 2rem;
  line-height: 1;
}

.outcome-row small {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.68);
}

.logo-marquee-section {
  overflow: hidden;
  padding: 28px 0;
  background: linear-gradient(90deg, var(--navy-950), var(--navy-900), #081c3e);
  border-top: 1px solid rgba(157, 190, 255, 0.16);
  border-bottom: 1px solid rgba(157, 190, 255, 0.16);
}

.logo-marquee {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.logo-track {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: logoSlide 34s linear infinite;
}

.logo-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 164px;
  padding: 12px 16px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  font-weight: 760;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.16);
}

.logo-badge b {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  font-size: 0.82rem;
  line-height: 1;
}

.youtube b { background: #ff0033; }
.tiktok b { background: linear-gradient(135deg, #00f2ea, #ff0050); }
.instagram b { background: linear-gradient(135deg, #feda75, #d62976 54%, #4f5bd5); }
.facebook b { background: #1877f2; }
.linkedin b { background: #0a66c2; }
.x-twitter b { background: #111827; }
.email b { background: linear-gradient(135deg, var(--cyan-400), var(--blue-600)); }
.ads b { background: #34a853; }
.partner b { background: var(--violet-500); }
.affiliate b { background: #f59e0b; }

.section-soft {
  background:
    radial-gradient(circle at 20% 10%, rgba(32, 216, 239, 0.1), transparent 28%),
    linear-gradient(180deg, #f7fbff, #fff);
}

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

.detail-card {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  padding: 26px;
  background: linear-gradient(180deg, #fff, var(--surface-blue));
  border: 1px solid rgba(147, 170, 209, 0.42);
  border-radius: var(--radius);
  box-shadow: 0 22px 56px rgba(10, 33, 70, 0.1);
}

.detail-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--cyan-400), var(--blue-600), var(--violet-500));
}

.detail-card span {
  color: var(--blue-600);
}

.detail-card p {
  color: var(--muted);
}

.campaign-detail-section .detail-card {
  background: linear-gradient(180deg, rgba(6, 18, 38, 0.96), rgba(9, 28, 58, 0.94));
  border-color: rgba(157, 190, 255, 0.2);
  box-shadow: 0 24px 70px rgba(7, 20, 44, 0.18);
}

.campaign-detail-section .detail-card::after {
  position: absolute;
  right: -28px;
  bottom: -42px;
  width: 120px;
  height: 120px;
  content: "";
  background: radial-gradient(circle, rgba(32, 216, 239, 0.18), transparent 68%);
}

.campaign-detail-section .detail-card span {
  color: var(--cyan-400);
}

.campaign-detail-section .detail-card h3 {
  color: #fff;
}

.campaign-detail-section .detail-card p {
  color: rgba(255, 255, 255, 0.7);
}

.page-channel-grid {
  grid-template-columns: repeat(4, 1fr);
}

.page-report-card {
  padding: 22px;
}

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

.metric-strip div {
  position: relative;
  overflow: hidden;
  min-height: 248px;
  padding: 26px;
  background: linear-gradient(180deg, #fff, var(--surface-blue));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(10, 33, 70, 0.08);
}

.metric-strip div::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--cyan-400), var(--blue-600), var(--violet-500));
}

.metric-strip small {
  display: inline-flex;
  margin-bottom: 36px;
  color: rgba(21, 120, 255, 0.28);
  font-size: 2.7rem;
  font-weight: 900;
  line-height: 1;
}

.metric-strip strong,
.metric-strip span {
  display: block;
}

.metric-strip strong {
  margin-bottom: 12px;
  color: var(--blue-600);
  font-size: 1.45rem;
  line-height: 1.1;
}

.metric-strip span {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.attribution-chain {
  position: relative;
}

.attribution-chain::before {
  position: absolute;
  top: 76px;
  left: 8%;
  right: 8%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(31, 140, 255, 0.28), rgba(32, 216, 239, 0.34), transparent);
}

.integration-page-grid {
  grid-template-columns: repeat(2, 1fr);
}

.integration-page-grid .detail-card {
  min-height: 238px;
}

.support-page-panel article {
  background: linear-gradient(180deg, rgba(6, 18, 38, 0.96), rgba(9, 28, 58, 0.94));
  min-height: 0;
  overflow: visible;
  padding: 26px;
}

.support-page-panel article::after {
  display: none;
}

.support-page-panel span {
  margin-bottom: 18px;
}

.support-page-panel h3 {
  margin-bottom: 12px;
  line-height: 1.18;
}

.support-page-panel p {
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.support-focus-panel {
  min-width: 0;
}

.ticket-section {
  padding: 96px 0;
}

.ticket-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: start;
  gap: 64px;
}

.ticket-copy > span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--blue-600);
  font-size: 0.84rem;
  font-weight: 850;
  text-transform: uppercase;
}

.ticket-copy p {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.08rem;
}

.ticket-points {
  display: grid;
  gap: 12px;
  max-width: 560px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.ticket-points li {
  position: relative;
  padding: 14px 16px 14px 46px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 650;
}

.ticket-points li::before {
  position: absolute;
  left: 17px;
  top: 18px;
  width: 12px;
  height: 12px;
  content: "";
  background: linear-gradient(135deg, var(--cyan-400), var(--blue-600));
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(31, 140, 255, 0.09);
}

.ticket-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  background: #fff;
  border: 1px solid rgba(147, 170, 209, 0.46);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(10, 33, 70, 0.1);
}

.ticket-form label {
  display: grid;
  gap: 8px;
  color: #344054;
  font-size: 0.92rem;
  font-weight: 760;
}

.ticket-form input,
.ticket-form select,
.ticket-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: #f8fbff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: none;
}

.ticket-form textarea {
  resize: vertical;
}

.ticket-form input:focus,
.ticket-form select:focus,
.ticket-form textarea:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(31, 140, 255, 0.12);
}

.ticket-hp {
  position: absolute;
  left: -9999px;
}

.ticket-result {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 80px 0;
}

.ticket-result-card {
  max-width: 760px;
}

.ticket-result-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.12rem;
}

.integration-status-panel {
  display: grid;
  gap: 12px;
  padding: 24px;
  color: #fff;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.055));
  border: 1px solid rgba(157, 190, 255, 0.24);
  border-radius: var(--radius);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.integration-status-panel > span {
  color: var(--cyan-400);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.integration-status-panel div {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 4px 12px;
  align-items: center;
  min-height: 68px;
  padding: 14px;
  background: rgba(2, 8, 20, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
}

.integration-status-panel i {
  grid-row: span 2;
}

.integration-status-panel strong,
.integration-status-panel small {
  display: block;
}

.integration-status-panel small {
  color: rgba(255, 255, 255, 0.62);
}

.integration-map-section {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(32, 216, 239, 0.12), transparent 28%),
    radial-gradient(circle at 86% 8%, rgba(122, 92, 255, 0.12), transparent 26%),
    linear-gradient(180deg, #ffffff, #f6f9ff);
}

.integration-map {
  display: grid;
  grid-template-columns: 0.9fr 1.25fr 0.9fr;
  align-items: center;
  gap: 20px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(147, 170, 209, 0.42);
  border-radius: var(--radius);
  box-shadow: 0 28px 80px rgba(10, 33, 70, 0.12);
}

.integration-source,
.integration-result,
.integration-branches article {
  border-radius: var(--radius);
}

.integration-source,
.integration-result {
  min-height: 300px;
  padding: 24px;
  background: linear-gradient(180deg, #fff, var(--surface-blue));
  border: 1px solid var(--line);
}

.integration-source span,
.integration-result span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--blue-600);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.integration-source strong {
  display: block;
  font-size: 1.8rem;
  line-height: 1.08;
}

.integration-source small,
.integration-result small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}

.integration-branches {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.integration-branches article {
  min-height: 126px;
  padding: 18px;
  color: #fff;
  background: linear-gradient(145deg, var(--navy-900), #102a5a);
  border: 1px solid rgba(157, 190, 255, 0.22);
  box-shadow: 0 20px 54px rgba(7, 20, 44, 0.16);
}

.integration-branches b,
.integration-branches small {
  display: block;
}

.integration-branches b {
  margin-bottom: 10px;
}

.integration-branches small {
  color: rgba(255, 255, 255, 0.66);
}

.integration-result {
  background: linear-gradient(145deg, var(--navy-900), #102a5a);
  border-color: rgba(31, 140, 255, 0.28);
}

.integration-result span {
  color: var(--cyan-400);
}

.integration-result div {
  padding: 16px;
  margin-top: 10px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
}

.integration-result small {
  color: rgba(255, 255, 255, 0.62);
}

.attribution-map-section {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(32, 216, 239, 0.12), transparent 28%),
    radial-gradient(circle at 86% 10%, rgba(122, 92, 255, 0.12), transparent 26%),
    linear-gradient(180deg, #f7fbff, #fff);
}

.attribution-map {
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 1.3fr 0.85fr;
  align-items: center;
  gap: 22px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(147, 170, 209, 0.42);
  border-radius: var(--radius);
  box-shadow: 0 28px 80px rgba(10, 33, 70, 0.12);
}

.attribution-map::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--cyan-400), var(--blue-600), var(--violet-500));
}

.map-column,
.map-node,
.outcome-stack div {
  border-radius: var(--radius);
}

.map-column {
  min-height: 300px;
  padding: 24px;
  background: linear-gradient(180deg, #fff, var(--surface-blue));
  border: 1px solid var(--line);
}

.map-column span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--blue-600);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.map-column strong,
.map-column small {
  display: block;
}

.map-column strong {
  font-size: 1.8rem;
  line-height: 1.08;
}

.map-column small {
  margin-top: 12px;
  color: var(--muted);
  font-size: 1rem;
}

.map-flow {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 18px 0;
}

.map-flow::before {
  position: absolute;
  top: 50%;
  left: 8%;
  right: 8%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, rgba(31, 140, 255, 0.28), rgba(32, 216, 239, 0.42), rgba(122, 92, 255, 0.28));
  transform: translateY(-50%);
}

.map-node {
  position: relative;
  z-index: 1;
  width: min(260px, 100%);
  padding: 18px;
  margin: 0 auto;
  color: #fff;
  background: linear-gradient(145deg, var(--navy-900), #102a5a);
  border: 1px solid rgba(157, 190, 255, 0.22);
  box-shadow: 0 20px 54px rgba(7, 20, 44, 0.18);
}

.map-node.active {
  background: linear-gradient(135deg, var(--blue-600), #123a7a);
}

.map-node b,
.map-node small {
  display: block;
}

.map-node b {
  font-size: 1.15rem;
}

.map-node small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
}

.map-split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.outcome-column {
  background: linear-gradient(145deg, var(--navy-900), #102a5a);
  border-color: rgba(31, 140, 255, 0.28);
}

.outcome-column span,
.outcome-column small {
  color: rgba(255, 255, 255, 0.68);
}

.outcome-column span {
  color: var(--cyan-400);
}

.outcome-column strong {
  color: #fff;
}

.outcome-stack {
  display: grid;
  gap: 10px;
}

.outcome-stack div {
  padding: 15px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.outcome-stack strong {
  font-size: 1.45rem;
}

.trial-cta {
  padding: 86px 0;
}

.trial-cta-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
}

.trial-cta span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--cyan-400);
  font-size: 0.84rem;
  font-weight: 850;
  text-transform: uppercase;
}

.trial-cta h2 {
  max-width: 760px;
  margin-bottom: 14px;
}

.trial-cta p {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
}

.dashboard-topbar {
  display: flex;
  gap: 8px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-topbar span {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 50%;
}

.dashboard-content {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 14px;
  padding: 18px;
}

.metric-panel,
.source-table,
.journey-card,
.report-card {
  background: rgba(4, 14, 32, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.metric-panel {
  min-height: 128px;
  padding: 18px;
}

.metric-panel span,
.table-head,
.journey-step,
.report-copy p,
.report-summary p {
  color: rgba(255, 255, 255, 0.66);
}

.metric-panel strong {
  display: block;
  margin: 10px 0 4px;
  font-size: 2.2rem;
  line-height: 1;
}

.metric-panel small {
  color: var(--cyan-400);
}

.primary-metric {
  grid-row: span 2;
  min-height: 270px;
  background:
    linear-gradient(180deg, rgba(31, 140, 255, 0.24), rgba(4, 14, 32, 0.84)),
    rgba(4, 14, 32, 0.78);
}

.primary-metric strong {
  margin-top: 58px;
  font-size: 3rem;
}

.source-table {
  grid-column: 1 / -1;
  padding: 16px;
}

.table-head,
.source-row {
  display: grid;
  grid-template-columns: 1fr 80px 92px;
  gap: 12px;
  align-items: center;
}

.table-head {
  padding-bottom: 10px;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.source-row {
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.source-row span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.source-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.cyan { background: var(--cyan-400); }
.blue { background: var(--blue-500); }
.violet { background: var(--violet-500); }

.journey-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 14px;
}

.journey-step {
  position: relative;
  min-height: 58px;
  padding: 14px 12px 12px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  font-size: 0.86rem;
}

.journey-step::before {
  display: block;
  width: 9px;
  height: 9px;
  margin-bottom: 8px;
  content: "";
  background: rgba(255, 255, 255, 0.32);
  border-radius: 50%;
}

.journey-step.active::before {
  background: var(--cyan-400);
  box-shadow: 0 0 0 5px rgba(32, 216, 239, 0.12);
}

.section-light,
.campaigns,
.integrations,
.pricing {
  background: #fff;
}

.intro-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(4, 12, 28, 0.06), rgba(255, 255, 255, 0) 18%),
    radial-gradient(circle at 18% 24%, rgba(32, 216, 239, 0.16), transparent 28%),
    radial-gradient(circle at 84% 10%, rgba(122, 92, 255, 0.13), transparent 24%),
    linear-gradient(180deg, #ffffff, #f7fbff 76%, #ffffff);
}

.intro-section::before {
  position: absolute;
  inset: 0 auto auto 50%;
  width: min(1120px, 86vw);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(31, 140, 255, 0.42), transparent);
  transform: translateX(-50%);
}

.intro-section::after {
  position: absolute;
  right: -18%;
  bottom: -42%;
  width: 58%;
  aspect-ratio: 1;
  content: "";
  background: radial-gradient(circle, rgba(31, 140, 255, 0.16), transparent 66%);
  pointer-events: none;
}

.intro-section,
.campaigns,
.attribution,
.integrations,
.health,
.support,
.pricing,
.demo {
  padding: 96px 0;
}

.section-heading {
  position: relative;
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading p,
.health p,
.pricing-card p {
  color: var(--muted);
  font-size: 1.08rem;
}

.intro-section h2 {
  color: transparent;
  background: linear-gradient(90deg, var(--navy-950), #123a7a 58%, var(--blue-600));
  -webkit-background-clip: text;
  background-clip: text;
}

.align-left {
  margin-left: 0;
  text-align: left;
}

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

.steps {
  position: relative;
  z-index: 1;
}

.steps::before {
  position: absolute;
  top: 78px;
  left: 10%;
  right: 10%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, rgba(31, 140, 255, 0), rgba(31, 140, 255, 0.35), rgba(32, 216, 239, 0.4), rgba(122, 92, 255, 0));
}

.steps article,
.integration-grid article,
.pricing-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  background: linear-gradient(180deg, #ffffff, #f2f7ff);
  border: 1px solid rgba(147, 170, 209, 0.42);
  border-radius: var(--radius);
  box-shadow: 0 22px 56px rgba(10, 33, 70, 0.1);
}

.steps article {
  min-height: 304px;
  padding: 24px 24px 28px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.steps article::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--cyan-400), var(--blue-600), var(--violet-500));
}

.steps article::after {
  position: absolute;
  right: -38px;
  top: -38px;
  width: 126px;
  height: 126px;
  content: "";
  background: radial-gradient(circle, rgba(32, 216, 239, 0.24), transparent 68%);
  pointer-events: none;
}

.steps article:hover {
  transform: translateY(-6px);
  border-color: rgba(31, 140, 255, 0.4);
  box-shadow: 0 30px 70px rgba(10, 33, 70, 0.16);
}

.step-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 28px;
  color: #fff;
  place-items: center;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.34), transparent 28%),
    linear-gradient(135deg, var(--cyan-400), var(--blue-600) 68%, var(--violet-500));
  border-radius: var(--radius);
  box-shadow: 0 18px 34px rgba(21, 120, 255, 0.28);
}

.step-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.steps span {
  position: absolute;
  top: 32px;
  right: 24px;
  color: rgba(21, 120, 255, 0.2);
  font-size: 0.82rem;
  font-weight: 850;
}

.steps h3 {
  font-size: 1.18rem;
}

.steps p,
.integration-grid p {
  color: var(--muted);
  margin-bottom: 0;
}

.split,
.pricing-layout,
.health-layout,
.support-layout,
.demo-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 64px;
}

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

.channel-grid span {
  min-height: 58px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0 18px;
  color: var(--navy-900);
  background: linear-gradient(180deg, #fff, var(--surface-blue));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 740;
  box-shadow: 0 14px 32px rgba(10, 33, 70, 0.06);
}

.channel-grid span::before {
  width: 8px;
  height: 8px;
  margin-right: 10px;
  content: "";
  background: linear-gradient(135deg, var(--cyan-400), var(--blue-600));
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(31, 140, 255, 0.08);
}

.report-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: center;
  gap: 64px;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.82);
}

.feature-list li::before {
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 10px;
  height: 10px;
  content: "";
  background: var(--cyan-400);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(32, 216, 239, 0.12);
}

.report-card {
  padding: 22px;
}

.report-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 22px;
}

.report-tabs button {
  min-height: 40px;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  cursor: pointer;
}

.report-tabs button.active {
  color: #fff;
  background: rgba(31, 140, 255, 0.3);
  border-color: rgba(32, 216, 239, 0.36);
}

.bar-chart {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  gap: 13px;
  height: 270px;
  padding: 18px;
  margin-bottom: 18px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
}

.bar-chart span {
  min-height: 32px;
  background: linear-gradient(180deg, var(--cyan-400), var(--blue-600));
  border-radius: 6px 6px 2px 2px;
}

.report-summary {
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
}

.report-summary p {
  margin: 8px 0 0;
}

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

.health {
  background: var(--surface-blue);
}

.health h2 {
  max-width: 560px;
}

.health-checks {
  display: grid;
  gap: 12px;
}

.health-checks div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 720;
}

.support {
  position: relative;
  overflow: hidden;
}

.support::before {
  position: absolute;
  inset: 12% auto auto -12%;
  width: 44%;
  aspect-ratio: 1;
  content: "";
  background: radial-gradient(circle, rgba(32, 216, 239, 0.2), transparent 66%);
  pointer-events: none;
}

.support::after {
  position: absolute;
  right: 6%;
  bottom: 10%;
  width: 280px;
  height: 280px;
  content: "";
  border: 1px solid rgba(32, 216, 239, 0.18);
  border-radius: 50%;
  box-shadow: inset 0 0 60px rgba(31, 140, 255, 0.08);
  pointer-events: none;
}

.support-layout {
  position: relative;
  z-index: 1;
  align-items: start;
}

.support-copy p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
}

.support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.support-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.support-panel article {
  position: relative;
  overflow: hidden;
  min-height: 206px;
  padding: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.055));
  border: 1px solid rgba(157, 190, 255, 0.2);
  border-radius: var(--radius);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.18);
}

.support-panel article::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--cyan-400), var(--blue-600), var(--violet-500));
}

.support-panel article::after {
  position: absolute;
  right: -28px;
  bottom: -42px;
  width: 120px;
  height: 120px;
  content: "";
  background: radial-gradient(circle, rgba(32, 216, 239, 0.2), transparent 68%);
}

.support-panel span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--cyan-400);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.support-panel h3 {
  color: #fff;
}

.support-panel p {
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 0;
}

.support-page-panel article {
  min-height: 0;
  overflow: visible;
  padding: 26px;
  background: linear-gradient(180deg, rgba(6, 18, 38, 0.96), rgba(9, 28, 58, 0.94));
}

.support-page-panel article::after {
  display: none;
}

.support-page-panel span {
  margin-bottom: 18px;
}

.support-page-panel h3 {
  margin-bottom: 12px;
  color: #fff;
  line-height: 1.18;
}

.support-page-panel p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.status {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.status.good {
  background: #18c878;
  box-shadow: 0 0 0 5px rgba(24, 200, 120, 0.12);
}

.status.warn {
  background: #ffbf3f;
  box-shadow: 0 0 0 5px rgba(255, 191, 63, 0.16);
}

.pricing {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 20%, rgba(31, 140, 255, 0.13), transparent 28%),
    linear-gradient(180deg, #ffffff, #f6f9ff);
}

.pricing::before {
  position: absolute;
  inset: 0 auto auto 50%;
  width: min(1120px, 86vw);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(31, 140, 255, 0.34), transparent);
  transform: translateX(-50%);
}

.pricing-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 32px;
  margin-bottom: 34px;
}

.pricing-heading h2 {
  max-width: 760px;
  color: transparent;
  background: linear-gradient(90deg, var(--navy-950), #123a7a 58%, var(--blue-600));
  -webkit-background-clip: text;
  background-clip: text;
}

.pricing-heading p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.pricing-card {
  position: relative;
  overflow: hidden;
  min-height: 366px;
  padding: 28px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(147, 170, 209, 0.46);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(10, 33, 70, 0.1);
}

.pricing-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--cyan-400), var(--blue-600), var(--violet-500));
}

.pricing-card span {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--blue-600);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.pricing-card h3 {
  margin-bottom: 14px;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.pricing-card p {
  color: var(--muted);
  font-size: 1.02rem;
}

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

.pricing-card li {
  position: relative;
  padding-left: 28px;
  color: #344054;
  font-weight: 650;
}

.pricing-card li::before {
  position: absolute;
  left: 0;
  top: 0.38em;
  width: 10px;
  height: 10px;
  content: "";
  background: linear-gradient(135deg, var(--cyan-400), var(--blue-600));
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(31, 140, 255, 0.09);
}

.paid-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 248, 255, 0.94)),
    #fff;
}

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

.plan-card {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(147, 170, 209, 0.46);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(10, 33, 70, 0.1);
}

.plan-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--cyan-400), var(--blue-600), var(--violet-500));
}

.plan-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--blue-600);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.plan-card h3 {
  margin-bottom: 0;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 0.95;
}

.plan-term {
  margin: 8px 0 18px;
  color: var(--muted);
  font-weight: 760;
}

.plan-card > p:not(.plan-term) {
  color: var(--muted);
  min-height: 74px;
}

.plan-card .button {
  margin-top: 18px;
}

.featured-plan {
  color: #fff;
  background:
    radial-gradient(circle at 82% 12%, rgba(32, 216, 239, 0.18), transparent 34%),
    linear-gradient(145deg, var(--navy-900), #102a5a);
  border-color: rgba(31, 140, 255, 0.3);
}

.featured-plan span {
  color: var(--cyan-400);
}

.featured-plan .plan-term,
.featured-plan > p:not(.plan-term) {
  color: rgba(255, 255, 255, 0.72);
}

.comparison-table {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(147, 170, 209, 0.46);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(10, 33, 70, 0.09);
}

.comparison-row {
  display: grid;
  grid-template-columns: minmax(240px, 1.4fr) repeat(3, minmax(110px, 0.65fr));
  align-items: center;
  min-height: 58px;
  border-top: 1px solid var(--line);
}

.comparison-row:first-child {
  border-top: 0;
}

.comparison-row > div {
  padding: 15px 18px;
}

.comparison-row > div:not(:first-child) {
  text-align: center;
  border-left: 1px solid var(--line);
}

.comparison-head {
  color: #fff;
  background: linear-gradient(145deg, var(--navy-900), #102a5a);
  font-weight: 850;
}

.comparison-row:not(.comparison-head) > div:first-child {
  color: #344054;
  font-weight: 720;
}

.yes,
.no,
.limit {
  font-size: 1.22rem;
  font-weight: 900;
}

.yes {
  color: #18c878;
}

.no {
  color: #98a2b3;
}

.limit {
  color: var(--blue-600);
  font-size: 0.98rem;
}

.payment-section {
  padding: 96px 0;
}

.payment-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
  gap: 64px;
}

.payment-layout > div:first-child > span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--blue-600);
  font-size: 0.84rem;
  font-weight: 850;
  text-transform: uppercase;
}

.payment-layout p {
  color: var(--muted);
  font-size: 1.08rem;
}

.payment-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.payment-options article {
  position: relative;
  overflow: hidden;
  min-height: 318px;
  padding: 26px;
  color: #fff;
  background: linear-gradient(180deg, rgba(6, 18, 38, 0.96), rgba(9, 28, 58, 0.94));
  border: 1px solid rgba(157, 190, 255, 0.2);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(7, 20, 44, 0.18);
}

.payment-options article::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--cyan-400), var(--blue-600), var(--violet-500));
}

.payment-options span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--cyan-400);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.payment-options strong {
  display: block;
  margin-bottom: 14px;
  font-size: 2.4rem;
  line-height: 1;
}

.payment-options p {
  min-height: 86px;
  color: rgba(255, 255, 255, 0.7);
}

.payment-link[aria-disabled="true"] {
  opacity: 0.78;
}

.demo-layout {
  align-items: start;
}

.demo p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
}

.trial-benefits {
  display: grid;
  gap: 12px;
  max-width: 620px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.trial-benefits li {
  position: relative;
  padding: 14px 16px 14px 46px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
}

.trial-benefits li::before {
  position: absolute;
  left: 17px;
  top: 17px;
  width: 14px;
  height: 14px;
  content: "";
  background:
    linear-gradient(135deg, var(--cyan-400), var(--blue-600));
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(32, 216, 239, 0.1);
}

.demo-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.demo-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 720;
}

.demo-form input,
.demo-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: #fff;
  background: rgba(2, 8, 20, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  outline: none;
}

.demo-form textarea {
  resize: vertical;
}

.demo-form input:focus,
.demo-form textarea:focus {
  border-color: var(--cyan-400);
  box-shadow: 0 0 0 4px rgba(32, 216, 239, 0.12);
}

.site-footer {
  padding: 64px min(40px, 5vw) 28px;
  color: rgba(255, 255, 255, 0.76);
  background:
    radial-gradient(circle at 18% 0%, rgba(32, 216, 239, 0.12), transparent 24%),
    linear-gradient(180deg, #050b16, var(--navy-950));
  border-top: 1px solid rgba(157, 190, 255, 0.14);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(420px, 1.1fr);
  gap: 64px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.footer-brand {
  color: #fff;
}

.footer-brand-block p {
  max-width: 470px;
  margin: 20px 0 24px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1rem;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-socials a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: #050505;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  font-size: 0.86rem;
  font-weight: 850;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
  transition: transform 160ms ease, border-color 160ms ease;
}

.footer-socials a:hover {
  transform: translateY(-2px);
  border-color: rgba(32, 216, 239, 0.5);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.footer-links h3 {
  margin-bottom: 16px;
  color: #fff;
  font-size: 0.86rem;
  text-transform: uppercase;
}

.footer-links a {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.66);
  font-weight: 650;
  transition: color 160ms ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, 100%);
  margin: 46px auto 0;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.54);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.94rem;
}

.footer-bottom a {
  color: var(--cyan-400);
  font-weight: 760;
}

.trial-popup {
  position: fixed;
  z-index: 40;
  inset: 0;
  display: grid;
  padding: 22px;
  place-items: center;
  background: rgba(2, 8, 20, 0.62);
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(10px);
  transition: opacity 180ms ease;
}

.trial-popup.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.trial-popup-card {
  position: relative;
  overflow: hidden;
  width: min(520px, 100%);
  padding: 34px;
  color: #fff;
  background:
    radial-gradient(circle at 18% 10%, rgba(32, 216, 239, 0.24), transparent 28%),
    radial-gradient(circle at 100% 0%, rgba(122, 92, 255, 0.22), transparent 34%),
    linear-gradient(145deg, rgba(6, 18, 38, 0.98), rgba(2, 8, 20, 0.98));
  border: 1px solid rgba(157, 190, 255, 0.28);
  border-radius: var(--radius);
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.48);
  transform: translateY(14px) scale(0.98);
  transition: transform 180ms ease;
}

.trial-popup.is-visible .trial-popup-card {
  transform: translateY(0) scale(1);
}

.trial-popup-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--cyan-400), var(--blue-600), var(--violet-500));
}

.trial-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  place-items: center;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  cursor: pointer;
}

.trial-popup-close span {
  position: absolute;
  width: 17px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.trial-popup-close span:first-child {
  transform: rotate(45deg);
}

.trial-popup-close span:last-child {
  transform: rotate(-45deg);
}

.trial-popup-mark {
  width: 58px;
  height: 48px;
  margin-bottom: 22px;
}

.trial-popup-mark svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.trial-popup-label {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--cyan-400);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.trial-popup h2 {
  max-width: 430px;
  margin-bottom: 16px;
  font-size: clamp(2rem, 5vw, 3.3rem);
  line-height: 1;
}

.trial-popup p {
  max-width: 430px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.04rem;
}

.trial-popup-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 16px;
}

.trial-popup small {
  color: rgba(255, 255, 255, 0.58);
}

@media (max-width: 980px) {
  .hero-grid,
  .page-hero-grid,
  .split,
  .pricing-layout,
  .health-layout,
  .support-layout,
  .ticket-layout,
  .payment-layout,
  .demo-layout,
  .report-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 40px;
  }

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

  .pricing-heading,
  .pricing-grid,
  .plan-grid,
  .payment-options,
  .attribution-map,
  .integration-map,
  .detail-grid,
  .integration-page-grid,
  .trial-cta-layout,
  .walkthrough-stage,
  .metric-strip {
    grid-template-columns: 1fr;
  }

  .pricing-heading {
    align-items: start;
  }

  .trial-cta-layout {
    align-items: start;
  }

  .hero {
    padding-top: 124px;
  }
}

@media (max-width: 760px) {
  .site-header {
    width: calc(100% - 20px);
    margin-top: 10px;
  }

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

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    background: rgba(4, 12, 28, 0.96);
    border: 1px solid rgba(124, 168, 255, 0.2);
    border-radius: var(--radius);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .nav-cta {
    margin-top: 6px;
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding-bottom: 58px;
  }

  h1 {
    font-size: clamp(2.65rem, 15vw, 4.6rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .hero-intro,
  .section-heading p,
  .health p,
  .pricing-card p,
  .demo p {
    font-size: 1rem;
  }

  .dashboard-content,
  .steps,
  .channel-grid,
  .support-panel,
  .pricing-grid,
  .plan-grid,
  .attribution-map,
  .integration-map,
  .integration-branches,
  .map-split,
  .walkthrough-stage,
  .page-channel-grid,
  .detail-grid,
  .integration-page-grid,
  .metric-strip,
  .integration-grid {
    grid-template-columns: 1fr;
  }

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

  .pricing-card {
    min-height: 0;
    padding: 24px;
  }

  .plan-card {
    min-height: 0;
  }

  .comparison-table {
    overflow-x: auto;
  }

  .comparison-row {
    min-width: 660px;
  }

  .map-column {
    min-height: 0;
  }

  .map-flow::before {
    display: none;
  }

  .integration-source,
  .integration-result {
    min-height: 0;
  }

  .walkthrough-stage::before {
    display: none;
  }

  .attribution-chain::before {
    display: none;
  }

  .walkthrough-card {
    min-height: 0;
  }

  .walkthrough-icon {
    margin-bottom: 36px;
  }

  .steps::before {
    display: none;
  }

  .steps article {
    min-height: 0;
  }

  .primary-metric {
    min-height: 156px;
  }

  .primary-metric strong {
    margin-top: 24px;
  }

  .journey-card {
    grid-template-columns: 1fr;
  }

  .table-head,
  .source-row {
    grid-template-columns: 1fr 56px 72px;
    font-size: 0.86rem;
  }

  .intro-section,
  .campaigns,
  .attribution,
  .integrations,
  .health,
  .support,
  .ticket-section,
  .pricing,
  .payment-section,
  .attribution-map-section,
  .integration-map-section,
  .campaign-walkthrough,
  .page-section,
  .trial-cta,
  .demo {
    padding: 72px 0;
  }

  .page-hero {
    padding: 124px 0 72px;
  }

  .page-hero h1 {
    font-size: clamp(2.6rem, 14vw, 4.4rem);
  }

  .report-tabs {
    flex-wrap: wrap;
  }

  .site-footer {
    padding-top: 50px;
  }

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

  .footer-inner {
    gap: 34px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .trial-popup-card {
    padding: 28px;
  }

  .trial-popup-actions .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .dashboard-shell {
    animation: floatDashboard 7s ease-in-out infinite;
  }

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

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

  @keyframes floatDashboard {
    0%,
    100% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(-10px);
    }
  }
}
