:root {
  --ink: #090714;
  --ink-2: #141020;
  --violet: #8b4dff;
  --violet-2: #b996ff;
  --lilac: #efe8ff;
  --mint: #40f0a0;
  --line: rgba(185, 150, 255, 0.22);
  --text: #f7f3ff;
  --muted: #c8b9e8;
  --paper: #ffffff;
  --paper-text: #211a35;
  --shadow: 0 24px 80px rgba(20, 12, 55, 0.42);
  --card: rgba(255, 255, 255, 0.055);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background: var(--ink);
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -10;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, transparent, #000 16%, #000 74%, transparent);
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 20px clamp(18px, 4vw, 64px);
  background: linear-gradient(180deg, rgba(6, 5, 14, 0.82), rgba(6, 5, 14, 0));
  transition: background 180ms ease, backdrop-filter 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(8, 6, 19, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 188px;
  height: auto;
}

.nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(247, 243, 255, 0.82);
  font-size: 14px;
  font-weight: 600;
}

.nav a,
.header-cta {
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.header-cta {
  padding: 12px 18px;
  border: 1px solid rgba(185, 150, 255, 0.48);
  border-radius: 999px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.header-cta:hover {
  background: rgba(139, 77, 255, 0.18);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero-media,
.hero-media img,
.hero-vignette {
  position: absolute;
  inset: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  z-index: -1;
  background: linear-gradient(180deg, rgba(9, 7, 20, 0), var(--ink));
}

.hero-media {
  z-index: -3;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% center;
}

.hero-vignette {
  z-index: -2;
  background:
    radial-gradient(circle at 68% 44%, rgba(139, 77, 255, 0.15), rgba(9, 7, 20, 0) 36%),
    linear-gradient(90deg, rgba(8, 6, 19, 0.88) 0%, rgba(8, 6, 19, 0.56) 33%, rgba(8, 6, 19, 0.08) 70%),
    linear-gradient(180deg, rgba(8, 6, 19, 0.38), rgba(8, 6, 19, 0.76) 86%, var(--ink) 100%);
}

.hero-content {
  width: min(680px, calc(100% - 36px));
  margin: 0 0 clamp(38px, 8vh, 88px) clamp(18px, 5vw, 84px);
  padding-top: 120px;
  animation: slideIn 520ms ease both;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--violet-2);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 20px;
  max-width: 680px;
  color: #fff;
  font-size: clamp(34px, 3.8vw, 54px);
  line-height: 1.04;
  letter-spacing: 0;
  text-shadow: 0 12px 44px rgba(0, 0, 0, 0.6);
}

.hero-copy {
  max-width: 640px;
  color: rgba(247, 243, 255, 0.92);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.54);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
  min-height: 48px;
  padding: 14px 22px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #150c25;
  background: linear-gradient(135deg, #ffffff, var(--violet-2));
  box-shadow: 0 14px 48px rgba(139, 77, 255, 0.42);
}

.button-primary:hover {
  box-shadow: 0 18px 64px rgba(139, 77, 255, 0.56);
}

.button-ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.button-icon {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-right: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  font-size: 12px;
  line-height: 1;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 640px;
  margin: 0;
}

.hero-stats div {
  padding: 18px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(13, 9, 30, 0.56);
  backdrop-filter: blur(12px);
  text-align: center;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.hero-stats div:hover {
  transform: translateY(-4px);
  border-color: rgba(185, 150, 255, 0.52);
  background: rgba(31, 20, 70, 0.66);
}

.hero-stats dt {
  display: grid;
  justify-items: center;
  gap: 6px;
  font-size: 22px;
  font-weight: 900;
}

.hero-stats dt::before {
  content: "+";
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  color: #170a2c;
  background: linear-gradient(135deg, #fff, var(--violet-2));
  box-shadow: 0 0 22px rgba(185, 150, 255, 0.5);
  font-size: 18px;
  font-weight: 900;
}

.hero-stats dd {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.hero-floating-card {
  position: absolute;
  right: clamp(18px, 5vw, 78px);
  bottom: clamp(34px, 8vh, 92px);
  width: min(270px, 26vw);
  padding: 18px;
  border: 1px solid rgba(185, 150, 255, 0.42);
  border-radius: 8px;
  background: rgba(9, 7, 20, 0.68);
  box-shadow: 0 24px 80px rgba(139, 77, 255, 0.22);
  backdrop-filter: blur(18px);
  animation: floatCard 5s ease-in-out infinite;
}

.hero-floating-card::before {
  content: "";
  display: block;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #fff 0 13%, transparent 14%),
    radial-gradient(circle at 50% 57%, transparent 0 26%, #40f0a0 27% 42%, transparent 43%),
    linear-gradient(135deg, var(--violet-2), var(--violet));
  box-shadow: 0 0 30px rgba(64, 240, 160, 0.36);
}

.hero-floating-card span,
.hero-floating-card small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.hero-floating-card strong {
  display: block;
  margin: 4px 0;
  color: #fff;
  font-size: 20px;
}

.trust-strip {
  display: grid;
  place-items: center;
  padding: 28px clamp(18px, 5vw, 84px);
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 0%, rgba(139, 77, 255, 0.18), rgba(139, 77, 255, 0) 42%),
    #080613;
}

.logo-strip-card {
  position: relative;
  width: min(980px, 100%);
  padding: 11px clamp(12px, 2vw, 22px);
  overflow: hidden;
  border: 1px solid rgba(185, 150, 255, 0.2);
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(8, 6, 19, 0.92), rgba(22, 14, 43, 0.56), rgba(8, 6, 19, 0.92));
  box-shadow:
    0 20px 70px rgba(7, 4, 18, 0.48),
    0 0 46px rgba(139, 77, 255, 0.18);
}

.logo-strip-card::before,
.logo-strip-card::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  width: 14%;
  pointer-events: none;
}

.logo-strip-card::before {
  left: 0;
  background: linear-gradient(90deg, #080613, rgba(8, 6, 19, 0));
}

.logo-strip-card::after {
  right: 0;
  background: linear-gradient(270deg, #080613, rgba(8, 6, 19, 0));
}

.logo-strip-card img {
  width: 100%;
  height: auto;
  max-height: 74px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 0 14px rgba(185, 150, 255, 0.2));
}

i[data-icon],
.icon-badge {
  --icon-bg: linear-gradient(135deg, #ffffff, var(--violet-2) 48%, var(--violet));
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
}

i[data-icon] {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: rgba(185, 150, 255, 0.16);
}

i[data-icon]::before,
.icon-badge::before {
  content: "";
  width: 13px;
  height: 13px;
  background: var(--icon-bg);
  clip-path: polygon(50% 0, 100% 30%, 82% 100%, 18% 100%, 0 30%);
}

[data-icon="whatsapp"]::before,
[data-icon="chat"]::before {
  border-radius: 50%;
  clip-path: none;
}

[data-icon="instagram"]::before,
[data-icon="calendar"]::before,
[data-icon="settings"]::before {
  border-radius: 3px;
  clip-path: none;
}

[data-icon="mail"]::before {
  clip-path: polygon(0 18%, 50% 56%, 100% 18%, 100% 84%, 0 84%);
}

[data-icon="sms"]::before {
  clip-path: polygon(0 8%, 100% 8%, 100% 72%, 58% 72%, 34% 100%, 38% 72%, 0 72%);
}

[data-icon="bolt"]::before,
[data-icon="spark"]::before {
  clip-path: polygon(58% 0, 18% 54%, 48% 54%, 34% 100%, 84% 40%, 54% 40%);
}

[data-icon="target"]::before,
[data-icon="ads"]::before,
[data-icon="google"]::before {
  border-radius: 50%;
  clip-path: none;
}

[data-icon="route"]::before {
  clip-path: polygon(8% 72%, 33% 72%, 33% 22%, 72% 22%, 72% 0, 100% 38%, 72% 76%, 72% 54%, 58% 54%, 58% 100%, 8% 100%);
}

[data-icon="refresh"]::before {
  border-radius: 50%;
  clip-path: polygon(50% 0, 100% 0, 100% 42%, 78% 23%, 64% 38%, 76% 58%, 54% 78%, 22% 62%, 20% 34%, 40% 15%);
}

[data-icon="search"]::before {
  clip-path: polygon(0 0, 68% 0, 68% 68%, 100% 100%, 84% 100%, 58% 74%, 0 74%);
}

[data-icon="rocket"]::before {
  clip-path: polygon(50% 0, 76% 12%, 88% 42%, 66% 100%, 50% 82%, 34% 100%, 12% 42%, 24% 12%);
}

.section {
  padding: clamp(72px, 9vw, 124px) clamp(18px, 5vw, 84px);
}

.section-copy {
  max-width: 720px;
}

.section-copy.centered {
  margin-inline: auto;
  text-align: center;
}

h2 {
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}

.section-copy p:not(.eyebrow),
.panel-dark p,
.offer-grid p,
.automation-grid p,
.intro-grid p,
.cta-section p,
.footer p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(34px, 6vw, 78px);
  background: linear-gradient(180deg, var(--ink), #110b24);
}

.intro-grid,
.automation-grid,
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.intro-grid article,
.automation-grid article,
.offer-grid article {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.intro-grid article,
.automation-grid article {
  display: grid;
  justify-items: center;
  align-content: center;
  text-align: center;
}

.intro-grid article::after,
.automation-grid article::after,
.offer-grid article::after,
.funnel-map article::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  transform: translateX(-120%);
  transition: transform 600ms ease, opacity 180ms ease;
}

.intro-grid article:hover,
.automation-grid article:hover,
.offer-grid article:hover,
.funnel-map article:hover {
  transform: translateY(-5px);
  border-color: rgba(185, 150, 255, 0.48);
}

.intro-grid article:hover::after,
.automation-grid article:hover::after,
.offer-grid article:hover::after,
.funnel-map article:hover::after {
  opacity: 1;
  transform: translateX(120%);
}

.icon-badge {
  position: relative;
  width: 72px;
  height: 72px;
  margin-bottom: 26px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 36% 28%, #fff 0 10%, #efe8ff 11% 20%, transparent 21%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.18), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #d9c7ff 16%, #a66dff 48%, #6e32df 100%);
  box-shadow:
    0 0 0 9px rgba(185, 150, 255, 0.12),
    0 0 42px rgba(139, 77, 255, 0.74),
    0 16px 42px rgba(72, 31, 176, 0.34),
    inset 0 -10px 22px rgba(42, 16, 96, 0.36);
}

.icon-badge::before {
  position: relative;
  z-index: 2;
  width: auto;
  height: auto;
  color: #ffffff;
  background: none;
  clip-path: none;
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 2px 12px rgba(38, 12, 92, 0.74);
}

.icon-badge::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 2px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.2);
}

.icon-badge[data-icon="magnet"]::before {
  content: "+";
}

.icon-badge[data-icon="bolt"]::before,
.icon-badge[data-icon="spark"]::before {
  content: "!";
  font-style: italic;
}

.icon-badge[data-icon="target"]::before {
  content: "•";
  font-size: 48px;
}

.intro-grid .icon-badge {
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  background: var(--violet-2);
  box-shadow: none;
}

.intro-grid .icon-badge::before {
  color: #140a29;
  font-size: 14px;
  font-weight: 900;
  text-shadow: none;
}

.intro-grid .icon-badge::after {
  display: none;
}

.intro-grid .icon-badge[data-icon="magnet"]::before {
  content: "01";
}

.intro-grid .icon-badge[data-icon="bolt"]::before {
  content: "02";
  font-style: normal;
}

.intro-grid .icon-badge[data-icon="target"]::before {
  content: "03";
  font-size: 14px;
}

.ai-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(139, 77, 255, 0.22), transparent 42%),
    linear-gradient(180deg, #090714 0%, #130b28 52%, #090714 100%);
}

.ai-section .intro-grid .icon-badge {
  background: linear-gradient(135deg, #efe8ff 0%, #b996ff 42%, #40f0a0 100%);
  box-shadow: 0 0 34px rgba(139, 77, 255, 0.28);
}

.ai-section .intro-grid .icon-badge[data-icon="chat"]::before {
  content: "AI";
  font-size: 13px;
}

.ai-section .intro-grid .icon-badge[data-icon="target"]::before {
  content: "✓";
  font-size: 18px;
}

.ai-section .intro-grid .icon-badge[data-icon="calendar"]::before {
  content: "→";
  font-size: 18px;
}

.icon-badge[data-icon="route"]::before {
  content: "→";
}

.icon-badge[data-icon="calendar"]::before {
  content: "31";
  font-size: 20px;
}

.icon-badge[data-icon="refresh"]::before {
  content: "↻";
}

.icon-badge[data-icon="search"]::before {
  content: "?";
}

.icon-badge[data-icon="settings"]::before {
  content: "✓";
}

.icon-badge[data-icon="rocket"]::before {
  content: "↑";
}

.icon-badge.light {
  background:
    radial-gradient(circle at 36% 28%, #fff 0 10%, #efe8ff 11% 20%, transparent 21%),
    linear-gradient(135deg, #ffffff 0%, #dacbff 24%, #8b4dff 72%, #efe8ff 100%);
}

.icon-badge.light::before {
  color: #211a35;
  text-shadow: none;
}

h3 {
  margin-bottom: 10px;
  color: #fff;
  font-size: 21px;
  line-height: 1.18;
}

.lab-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.8fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: center;
  background:
    radial-gradient(circle at 24% 36%, rgba(139, 77, 255, 0.28), rgba(139, 77, 255, 0) 34%),
    linear-gradient(180deg, #110b24, #080613);
}

.lab-visual {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(185, 150, 255, 0.24);
  border-radius: 8px;
  background: #0c0818;
  box-shadow: var(--shadow);
}

.lab-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 7, 20, 0.12), rgba(9, 7, 20, 0));
  pointer-events: none;
}

.lab-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  transform: none;
}

.lab-copy {
  max-width: 620px;
}

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

.mini-metrics div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.mini-metrics strong,
.mini-metrics span {
  display: block;
}

.mini-metrics strong {
  color: #fff;
  font-size: 24px;
  line-height: 1;
}

.mini-metrics span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.funnel {
  background: #0a0715;
}

.funnel-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  max-width: 1180px;
  margin: 48px auto 0;
}

.funnel-map article {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  padding: 24px;
  border: 1px solid rgba(185, 150, 255, 0.3);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(139, 77, 255, 0.16), rgba(255, 255, 255, 0.04)),
    #120d25;
}

.funnel-map span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  border-radius: 50%;
  color: #140a29;
  background: var(--violet-2);
  font-weight: 900;
}

.funnel-map p {
  color: var(--muted);
  line-height: 1.6;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: center;
  background:
    radial-gradient(circle at 85% 28%, rgba(64, 240, 160, 0.14), rgba(64, 240, 160, 0) 25%),
    linear-gradient(180deg, #100a22, #080613);
}

.panel-dark {
  max-width: 640px;
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--lilac);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 18px rgba(64, 240, 160, 0.5);
}

.dashboard-card {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  padding: 26px;
  border: 1px solid rgba(185, 150, 255, 0.28);
  border-radius: 8px;
  background:
    radial-gradient(circle at 70% 16%, rgba(139, 77, 255, 0.28), rgba(139, 77, 255, 0) 35%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow);
}

.dashboard-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 38%, rgba(139, 77, 255, 0.2));
  pointer-events: none;
}

.dash-top {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.dash-top span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
}

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

.pipeline div {
  position: relative;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(7, 5, 16, 0.66);
}

.pipeline div::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 18px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 18px rgba(64, 240, 160, 0.5);
}

.pipeline strong {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.pipeline b {
  display: block;
  margin-top: 10px;
  color: #fff;
  font-size: 42px;
}

.chart-bars {
  display: flex;
  align-items: end;
  gap: 18px;
  height: 210px;
  margin-top: 44px;
  padding: 22px;
  border-radius: 8px;
  background: rgba(7, 5, 16, 0.5);
}

.chart-bars span {
  flex: 1;
  min-width: 20px;
  border-radius: 999px 999px 4px 4px;
  background: linear-gradient(180deg, #fff, var(--violet-2) 36%, var(--violet));
  box-shadow: 0 0 28px rgba(139, 77, 255, 0.5);
}

.automation {
  background: linear-gradient(180deg, #080613, #150d2b);
}

.automation-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 34px;
}

.automation-grid article {
  min-height: 250px;
}

.automation-grid .icon-badge {
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  background:
    linear-gradient(135deg, #cdb8ff 0%, #9b63ff 52%, #6f37dc 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.16),
    0 10px 26px rgba(72, 31, 176, 0.22);
}

.automation-grid .icon-badge::before {
  font-size: 27px;
  text-shadow: none;
}

.automation-grid .icon-badge::after {
  inset: 8px;
  border-color: rgba(255, 255, 255, 0.26);
  box-shadow: none;
}

.automation-grid .icon-badge[data-icon="calendar"]::before {
  font-size: 16px;
}

.offer {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f3ff 100%);
  color: var(--paper-text);
}

.offer h2 {
  color: var(--paper-text);
}

.offer h3 {
  color: #fff;
}

.offer .eyebrow {
  color: #6f37dc;
}

.offer-grid {
  max-width: 1120px;
  margin: 42px auto 0;
}

.offer-grid article {
  min-height: 310px;
  border-color: rgba(139, 77, 255, 0.26);
  background:
    radial-gradient(circle at 18% 18%, rgba(139, 77, 255, 0.26), rgba(139, 77, 255, 0) 35%),
    linear-gradient(145deg, #151024 0%, #211735 100%);
  box-shadow: 0 22px 70px rgba(33, 23, 53, 0.18);
}

.offer-grid article p {
  color: #d8cdf1;
}

.offer-grid .icon-badge.light {
  width: 56px;
  height: 56px;
  margin-bottom: 26px;
  background: linear-gradient(135deg, #ffffff 0%, #cdb8ff 32%, #8b4dff 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.18),
    0 14px 34px rgba(139, 77, 255, 0.28);
}

.offer-grid .icon-badge.light::before {
  color: #150c25;
  font-size: 25px;
}

.offer-grid .icon-badge.light::after {
  inset: 8px;
  border-color: rgba(21, 12, 37, 0.16);
  box-shadow: none;
}

.step-label {
  position: absolute;
  right: 22px;
  top: 20px;
  color: rgba(255, 255, 255, 0.18);
  font-size: 46px;
  font-weight: 900;
  line-height: 1;
}

.cta-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.62fr);
  gap: clamp(28px, 6vw, 78px);
  padding: clamp(72px, 10vw, 132px) clamp(18px, 5vw, 84px);
  align-items: center;
  background:
    linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url("../images/leadcaptor-hero-new.jpg") center / cover;
}

.cta-section img {
  width: 230px;
  margin-bottom: 30px;
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(185, 150, 255, 0.28);
  border-radius: 8px;
  background: rgba(10, 7, 21, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 28px 90px rgba(10, 7, 21, 0.45);
}

.lead-form-embed {
  display: block;
  width: 100%;
  min-height: 544px;
  padding: 8px;
}

.lead-form-embed iframe {
  display: block;
  width: 100%;
  min-height: 544px;
  background: transparent;
}

.form-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding-bottom: 4px;
}

.form-header strong {
  color: #fff;
  font-size: 22px;
}

.form-header span {
  padding: 7px 10px;
  border-radius: 999px;
  color: #150c25;
  background: var(--mint);
  font-size: 11px;
  font-weight: 900;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.lead-form input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(185, 150, 255, 0.26);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
}

.lead-form input::placeholder {
  color: rgba(247, 243, 255, 0.46);
}

.form-note {
  margin: 0;
  font-size: 12px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 28px clamp(18px, 5vw, 84px);
  background: #fff;
  color: var(--paper-text);
}

.footer img {
  width: 180px;
  object-fit: contain;
}

.footer p {
  max-width: 640px;
  margin: 0;
  color: #5b526e;
  font-size: 14px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

@keyframes slideIn {
  from {
    transform: translateY(22px);
  }

  to {
    transform: translateY(0);
  }
}

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

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

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

  .nav {
    display: none;
  }

  .intro,
  .lab-section,
  .split,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .intro-grid,
  .offer-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-floating-card {
    display: none;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 15px 16px;
  }

  .brand img {
    width: 152px;
  }

  .header-cta {
    padding: 10px 12px;
    font-size: 12px;
  }

  .hero {
    min-height: 100svh;
    align-items: start;
  }

  .hero-vignette {
    background:
      linear-gradient(180deg, rgba(8, 6, 19, 0.9), rgba(8, 6, 19, 0.32) 34%, rgba(8, 6, 19, 0.1) 58%, rgba(8, 6, 19, 0.95) 100%),
      radial-gradient(circle at 50% 45%, rgba(139, 77, 255, 0.1), rgba(9, 7, 20, 0) 44%);
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 96px 16px 36px;
  }

  h1 {
    font-size: clamp(27px, 7.4vw, 32px);
    line-height: 1.06;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-stats,
  .automation-grid,
  .funnel-map,
  .mini-metrics,
  .pipeline {
    grid-template-columns: 1fr;
  }

  .lab-visual img {
    aspect-ratio: auto;
  }

  .hero-stats div {
    padding: 13px;
  }

  .funnel-map article {
    min-height: auto;
  }

  .dashboard-card {
    min-height: auto;
  }

  .chart-bars {
    height: 160px;
  }

  .footer {
    display: grid;
  }
}

/* WordPress/theme hardening */
.leadcaptor-landing,
.leadcaptor-landing *,
.hero,
.hero * {
  box-sizing: border-box;
}

.leadcaptor-landing :where(h1, h2, h3, p, a, dl, dt, dd, span),
.hero :where(h1, h2, h3, p, a, dl, dt, dd, span) {
  letter-spacing: 0 !important;
  text-transform: none;
  word-break: normal !important;
  overflow-wrap: normal !important;
  hyphens: manual !important;
}

.leadcaptor-landing .site-header,
.site-header {
  min-height: 84px;
}

.leadcaptor-landing .nav a,
.leadcaptor-landing .header-cta,
.nav a,
.header-cta {
  color: rgba(247, 243, 255, 0.92) !important;
}

.leadcaptor-landing .hero h1,
.hero h1 {
  display: block !important;
  max-width: min(680px, 92vw) !important;
  margin: 0 0 20px !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  opacity: 1 !important;
  filter: none !important;
  mix-blend-mode: normal !important;
  font-family: "Inter", Arial, sans-serif !important;
  font-size: clamp(34px, 3.4vw, 54px) !important;
  font-weight: 800 !important;
  line-height: 1.04 !important;
  text-shadow: 0 12px 44px rgba(0, 0, 0, 0.64) !important;
}

.leadcaptor-landing .hero-copy,
.hero-copy {
  color: rgba(247, 243, 255, 0.94) !important;
  -webkit-text-fill-color: rgba(247, 243, 255, 0.94) !important;
  opacity: 1 !important;
  font-size: clamp(17px, 1.25vw, 21px) !important;
  line-height: 1.55 !important;
}

.leadcaptor-landing .hero-stats,
.hero-stats {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(150px, 1fr)) !important;
  gap: 12px !important;
  width: min(640px, 100%) !important;
  max-width: 640px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  list-style: none !important;
}

.leadcaptor-landing .hero-stats div,
.hero-stats div {
  min-width: 0 !important;
  padding: 18px 14px !important;
  border: 1px solid rgba(185, 150, 255, 0.22) !important;
  border-radius: 8px !important;
  background: rgba(13, 9, 30, 0.66) !important;
  text-align: center !important;
}

.leadcaptor-landing .hero-stats dt,
.leadcaptor-landing .hero-stats dd,
.hero-stats dt,
.hero-stats dd {
  width: auto !important;
  max-width: none !important;
  margin-left: 0 !important;
  padding-left: 0 !important;
  float: none !important;
  clear: none !important;
  color: inherit !important;
  white-space: normal !important;
}

.leadcaptor-landing .hero-stats dt,
.hero-stats dt {
  display: grid !important;
  justify-items: center !important;
  gap: 7px !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  font-family: "Inter", Arial, sans-serif !important;
  font-size: clamp(18px, 1.35vw, 22px) !important;
  font-weight: 900 !important;
  line-height: 1.08 !important;
}

.leadcaptor-landing .hero-stats dd,
.hero-stats dd {
  display: block !important;
  margin-top: 8px !important;
  color: #c8b9e8 !important;
  -webkit-text-fill-color: #c8b9e8 !important;
  font-family: "Inter", Arial, sans-serif !important;
  font-size: 13px !important;
  line-height: 1.35 !important;
}

@media (min-width: 1600px) {
  .leadcaptor-landing .hero h1,
  .hero h1 {
    font-size: 56px !important;
    max-width: 720px !important;
  }
}

@media (max-width: 720px) {
  .hero-media img {
    object-position: 54% center;
  }

  .leadcaptor-landing .hero h1,
  .hero h1 {
    font-size: clamp(27px, 7.4vw, 32px) !important;
    line-height: 1.06 !important;
  }

  .leadcaptor-landing .hero-stats,
  .hero-stats {
    grid-template-columns: 1fr !important;
  }
}

/* AI tech enhancement layer */
body {
  background:
    radial-gradient(circle at 16% 10%, rgba(139, 77, 255, 0.16), transparent 28%),
    radial-gradient(circle at 84% 24%, rgba(64, 240, 160, 0.09), transparent 24%),
    var(--ink);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -9;
  pointer-events: none;
  opacity: 0.46;
  background:
    linear-gradient(115deg, transparent 0 42%, rgba(185, 150, 255, 0.08) 42.2% 42.7%, transparent 43% 100%),
    radial-gradient(circle at 18% 72%, rgba(64, 240, 160, 0.08), transparent 18%),
    radial-gradient(circle at 78% 18%, rgba(139, 77, 255, 0.14), transparent 22%);
  animation: aiAtmosphere 12s ease-in-out infinite alternate;
}

.site-header {
  border-bottom: 1px solid rgba(185, 150, 255, 0.08);
}

.site-header::after {
  content: "";
  position: absolute;
  left: clamp(18px, 4vw, 64px);
  right: clamp(18px, 4vw, 64px);
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(185, 150, 255, 0.7), rgba(64, 240, 160, 0.35), transparent);
  transform-origin: center;
  animation: headerPulse 4.8s ease-in-out infinite;
}

.brand img {
  filter: drop-shadow(0 0 16px rgba(185, 150, 255, 0.38));
}

.nav a {
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--violet-2), var(--mint));
  opacity: 0;
  transform: scaleX(0.3);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.72;
  background:
    radial-gradient(circle at 56% 40%, transparent 0 10%, rgba(185, 150, 255, 0.14) 10.4% 10.7%, transparent 11.2% 100%),
    radial-gradient(circle at 56% 40%, transparent 0 18%, rgba(64, 240, 160, 0.08) 18.3% 18.6%, transparent 19.2% 100%),
    linear-gradient(100deg, transparent 0 49%, rgba(185, 150, 255, 0.12) 49.2% 49.5%, transparent 49.8% 100%);
  mix-blend-mode: screen;
  animation: neuralPulse 7s ease-in-out infinite;
}

.hero-vignette {
  background:
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.032) 0 1px, transparent 1px 6px),
    radial-gradient(circle at 68% 44%, rgba(139, 77, 255, 0.22), rgba(9, 7, 20, 0) 36%),
    radial-gradient(circle at 24% 76%, rgba(64, 240, 160, 0.1), rgba(9, 7, 20, 0) 28%),
    linear-gradient(90deg, rgba(8, 6, 19, 0.9) 0%, rgba(8, 6, 19, 0.58) 33%, rgba(8, 6, 19, 0.08) 70%),
    linear-gradient(180deg, rgba(8, 6, 19, 0.34), rgba(8, 6, 19, 0.76) 86%, var(--ink) 100%);
}

.eyebrow {
  text-shadow: 0 0 20px rgba(185, 150, 255, 0.46);
}

.hero h1 {
  text-shadow:
    0 12px 44px rgba(0, 0, 0, 0.72),
    0 0 34px rgba(185, 150, 255, 0.16);
}

.hero-copy {
  position: relative;
}

.hero-copy::after {
  content: "AI routing active";
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin-left: 10px;
  padding: 4px 9px;
  border: 1px solid rgba(64, 240, 160, 0.34);
  border-radius: 999px;
  color: rgba(220, 255, 238, 0.92);
  background: rgba(64, 240, 160, 0.08);
  box-shadow: 0 0 20px rgba(64, 240, 160, 0.16);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  vertical-align: middle;
}

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

.button::after {
  content: "";
  position: absolute;
  inset: -40% -30%;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, 0.42), transparent 65%);
  transform: translateX(-120%) rotate(8deg);
  transition: transform 620ms ease;
}

.button:hover::after {
  transform: translateX(120%) rotate(8deg);
}

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

.button-primary {
  box-shadow:
    0 14px 48px rgba(139, 77, 255, 0.48),
    0 0 0 1px rgba(255, 255, 255, 0.36) inset;
}

.hero-stats div,
.intro-grid article,
.automation-grid article,
.offer-grid article,
.funnel-map article,
.mini-metrics div,
.dashboard-card,
.lead-form {
  position: relative;
  overflow: hidden;
  box-shadow:
    0 20px 70px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(185, 150, 255, 0.06) inset;
}

.hero-stats div::before,
.intro-grid article::before,
.automation-grid article::before,
.offer-grid article::before,
.funnel-map article::before,
.mini-metrics div::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background:
    linear-gradient(90deg, transparent 0 16%, rgba(185, 150, 255, 0.16) 16.2% 16.6%, transparent 16.8% 100%),
    linear-gradient(180deg, transparent 0 72%, rgba(64, 240, 160, 0.12) 72.2% 72.6%, transparent 72.8% 100%);
}

.hero-stats div {
  position: relative;
  overflow: hidden;
}

.hero-stats dt::before {
  animation: nodeBlink 2.8s ease-in-out infinite;
}

.hero-floating-card {
  background:
    linear-gradient(145deg, rgba(9, 7, 20, 0.78), rgba(30, 19, 62, 0.62)),
    rgba(9, 7, 20, 0.68);
  box-shadow:
    0 24px 80px rgba(139, 77, 255, 0.28),
    0 0 38px rgba(64, 240, 160, 0.1);
}

.hero-floating-card::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 6px;
  border: 1px solid rgba(64, 240, 160, 0.12);
  pointer-events: none;
}

.logo-strip-card img {
  animation: logoFloat 6s ease-in-out infinite;
}

.lab-visual::before,
.dashboard-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 28%, rgba(255, 255, 255, 0.2), transparent 52%);
  transform: translateX(-120%);
  animation: panelScan 6.5s ease-in-out infinite;
}

.lab-visual img {
  filter: saturate(1.12) contrast(1.04) drop-shadow(0 0 22px rgba(139, 77, 255, 0.18));
}

.dashboard-card {
  isolation: isolate;
}

.dashboard-card::after {
  z-index: 2;
  opacity: 0.45;
}

.pipeline div,
.chart-bars {
  box-shadow: 0 0 26px rgba(139, 77, 255, 0.1) inset;
}

.pipeline div::after {
  animation: nodeBlink 2.4s ease-in-out infinite;
}

.chart-bars span {
  animation: barGlow 3.2s ease-in-out infinite;
}

.chart-bars span:nth-child(2) {
  animation-delay: 0.4s;
}

.chart-bars span:nth-child(3) {
  animation-delay: 0.8s;
}

.chart-bars span:nth-child(4) {
  animation-delay: 1.2s;
}

.chart-bars span:nth-child(5) {
  animation-delay: 1.6s;
}

.icon-badge {
  animation: iconHover 4.8s ease-in-out infinite;
}

.automation-grid article:nth-child(2) .icon-badge,
.intro-grid article:nth-child(2) .icon-badge {
  animation-delay: 0.5s;
}

.automation-grid article:nth-child(3) .icon-badge,
.intro-grid article:nth-child(3) .icon-badge {
  animation-delay: 1s;
}

.automation-grid article:nth-child(4) .icon-badge {
  animation-delay: 1.5s;
}

.cta-section {
  position: relative;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 24% 36%, rgba(139, 77, 255, 0.2), transparent 26%),
    radial-gradient(circle at 76% 62%, rgba(64, 240, 160, 0.12), transparent 20%),
    repeating-linear-gradient(90deg, transparent 0 98px, rgba(185, 150, 255, 0.08) 99px 100px);
}

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

@keyframes aiAtmosphere {
  from {
    transform: translate3d(-1%, -1%, 0) scale(1);
    opacity: 0.36;
  }
  to {
    transform: translate3d(1%, 1%, 0) scale(1.04);
    opacity: 0.58;
  }
}

@keyframes neuralPulse {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(1);
  }
  50% {
    opacity: 0.88;
    transform: scale(1.018);
  }
}

@keyframes headerPulse {
  0%,
  100% {
    opacity: 0.22;
    transform: scaleX(0.35);
  }
  50% {
    opacity: 0.9;
    transform: scaleX(1);
  }
}

@keyframes nodeBlink {
  0%,
  100% {
    filter: brightness(1);
    box-shadow: 0 0 18px rgba(185, 150, 255, 0.38);
  }
  50% {
    filter: brightness(1.28);
    box-shadow: 0 0 30px rgba(64, 240, 160, 0.42);
  }
}

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

@keyframes panelScan {
  0%,
  42% {
    transform: translateX(-120%);
  }
  72%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes barGlow {
  0%,
  100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.28);
  }
}

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

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