:root {
  --ink: #000000;
  --muted: #666666;
  --line: #e5e5e5;
  --surface: #ffffff;
  --soft: #f7f7f7;
  --navy: #1a1a1a;
  --red: #e50914;
  --red-dark: #b20710;
  --red-deep: #80050b;
  --red-black: #400306;
  --green: #52cc5a;
  --amber: #ffc02a;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--soft);
  font-family: Montserrat, Arial, sans-serif;
  overflow-x: hidden;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 0 6vw;
  background: rgba(247, 247, 247, 0.86);
  border-bottom: 1px solid rgba(229, 229, 229, 0.8);
  backdrop-filter: blur(14px);
}

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

.brand img {
  display: block;
  width: 154px;
  height: auto;
}

.desktop-nav {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.desktop-nav a:hover,
.header-cta:hover {
  color: var(--red);
}

.header-cta {
  padding: 12px 16px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
}

.hero-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(420px, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(28px, 3vw, 48px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: 70px 6vw 44px;
  isolation: isolate;
  overflow: hidden;
}

.tech-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.62;
  background:
    linear-gradient(rgba(229, 9, 20, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(229, 9, 20, 0.07) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.72) 54%, transparent 100%);
  animation: gridDrift 18s linear infinite;
}

.signal {
  position: absolute;
  z-index: -1;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(229, 9, 20, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

.signal::before,
.signal::after {
  position: absolute;
  inset: 32px;
  content: "";
  border: 1px solid rgba(229, 9, 20, 0.16);
  border-radius: inherit;
}

.signal::after {
  inset: 78px;
}

.signal-one {
  right: -140px;
  top: 88px;
  animation: floatSignal 8s ease-in-out infinite;
}

.signal-two {
  left: -180px;
  bottom: 20px;
  animation: floatSignal 10s ease-in-out infinite reverse;
}

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

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(42px, 5.4vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
  font-weight: 900;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 3.3vw, 48px);
  line-height: 1.05;
  letter-spacing: 0;
  font-weight: 800;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 800;
}

.hero-text,
.split-section p,
.contact-section p,
.feature-card p,
.resource-item p,
.price-card p,
.faq-section p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 650px;
  font-size: 18px;
}

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

.primary-button,
.secondary-button,
.lead-form button,
.price-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 800;
}

.primary-button,
.lead-form button,
.price-card.featured a {
  color: #fff;
  background: var(--red);
  border: 1px solid var(--red);
}

.primary-button:hover,
.lead-form button:hover,
.price-card.featured a:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.secondary-button,
.price-card a {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-row span {
  padding: 10px 12px;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 13px;
}

.trust-row strong {
  color: var(--ink);
}

.product-visual {
  min-width: 0;
  width: 100%;
  max-width: 1080px;
  justify-self: end;
  perspective: 1200px;
}

.crm-preview-frame {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(229, 9, 20, 0.16);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transform-origin: center;
  animation: previewFloat 6.5s ease-in-out infinite;
}

.crm-preview-frame::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background: linear-gradient(115deg, transparent 18%, rgba(255, 255, 255, 0.44) 44%, transparent 68%);
  transform: translateX(-120%);
  animation: previewShine 5.5s ease-in-out infinite;
}

.crm-preview-frame img {
  display: block;
  width: 100%;
  height: auto;
  transform: scale(1.01);
  animation: previewZoom 9s ease-in-out infinite;
}

.preview-badge {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  color: #fff;
  background: rgba(0, 0, 0, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  backdrop-filter: blur(12px);
  animation: badgeLift 4.8s ease-in-out infinite;
}

.preview-badge span {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(229, 9, 20, 0.22);
  animation: livePulse 1.8s ease-out infinite;
}

.app-shell {
  position: relative;
  display: grid;
  grid-template-columns: 118px 228px minmax(300px, 1fr) 205px;
  grid-template-rows: 64px minmax(470px, auto);
  min-height: 600px;
  width: 100%;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(229, 9, 20, 0.14);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transform: none;
  animation: none;
}

.app-shell::after {
  display: none;
}

.crm-topbar {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 190px minmax(220px, 1fr) 48px;
  gap: 18px;
  align-items: center;
  padding: 14px 18px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

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

.crm-brand span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #fff;
  background: var(--red);
  border-radius: 8px;
  font-family: "Bebas Neue", Montserrat, Arial, sans-serif;
  font-size: 22px;
}

.crm-brand strong {
  font-size: 13px;
}

.crm-search {
  display: flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  color: var(--muted);
  background: #f6f6f6;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 12px;
}

.crm-user {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #fff;
  background: #000;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.crm-menu {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 18px 12px;
  color: #d8d8d8;
  background: #111;
}

.crm-menu span {
  padding: 11px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
}

.crm-menu .active {
  color: #fff;
  background: var(--red);
}

.crm-inbox,
.crm-main,
.crm-side {
  padding: 16px;
}

.crm-inbox {
  background: #f8f8f8;
  border-right: 1px solid var(--line);
}

.crm-main {
  background: #fff;
}

.crm-side {
  background: #fbfbfb;
  border-left: 1px solid var(--line);
}

.crm-section-title,
.crm-chat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.crm-section-title span,
.crm-chat-head span,
.crm-contact p,
.crm-contact em,
.crm-suggestion p,
.crm-data-list span,
.crm-activity span {
  color: var(--muted);
  font-size: 12px;
}

.crm-tabs,
.crm-flow,
.crm-metrics {
  display: flex;
  gap: 8px;
}

.crm-tabs {
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.crm-tabs span,
.crm-flow span {
  padding: 7px 9px;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}

.crm-tabs .active,
.crm-flow .active {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
}

.crm-contact {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 12px;
  margin-bottom: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.crm-contact.active {
  border-color: rgba(229, 9, 20, 0.45);
  box-shadow: 0 12px 28px rgba(229, 9, 20, 0.1);
}

.crm-contact > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #fff;
  background: #000;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.crm-contact p {
  margin: 4px 0 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.crm-contact em {
  font-style: normal;
}

.crm-chat-head button {
  min-height: 36px;
  padding: 0 12px;
  color: #fff;
  background: var(--red);
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-size: 11px;
  font-weight: 900;
}

.crm-flow {
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.crm-message {
  max-width: 78%;
  padding: 14px 16px;
  margin-bottom: 12px;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.5;
}

.crm-message.client {
  background: #f3f3f3;
}

.crm-message.agent {
  margin-left: auto;
  color: #fff;
  background: #111;
}

.crm-suggestion {
  margin: 18px 0;
  padding: 14px;
  background: #fff5f5;
  border: 1px solid rgba(229, 9, 20, 0.25);
  border-radius: 8px;
}

.crm-suggestion p {
  margin: 6px 0 0;
}

.crm-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.crm-metrics div {
  padding: 14px;
  background: #f8f8f8;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.crm-metrics span {
  display: block;
  color: var(--muted);
  font-size: 11px;
}

.crm-metrics strong {
  display: block;
  margin-top: 7px;
  font-size: 26px;
}

.crm-progress {
  height: 8px;
  overflow: hidden;
  background: #e8e8e8;
  border-radius: 999px;
}

.crm-progress span {
  display: block;
  width: 87%;
  height: 100%;
  background: var(--red);
}

.crm-data-list,
.crm-activity {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.crm-data-list p {
  display: grid;
  gap: 4px;
  margin: 0;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.crm-activity {
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.crm-activity span {
  position: relative;
  padding-left: 16px;
}

.crm-activity span::before {
  position: absolute;
  top: 6px;
  left: 0;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--red);
  border-radius: 50%;
}

.app-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding-top: 24px;
  background: var(--navy);
}

.mini-logo {
  display: grid;
  width: 34px;
  height: 34px;
  margin-bottom: 8px;
  place-items: center;
  color: #fff;
  background: var(--red);
  border-radius: 8px;
  font-family: "Bebas Neue", Montserrat, Arial, sans-serif;
  font-size: 22px;
}

.dot {
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.dot.active {
  background: var(--red);
}

.inbox-panel,
.chat-panel,
.activity-panel {
  padding: 22px;
}

.inbox-panel {
  background: #f9fbfd;
  border-right: 1px solid var(--line);
}

.panel-title,
.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.channel-tabs,
.deal-strip,
.quick-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.channel-tabs {
  margin-bottom: 14px;
}

.channel-tabs span,
.deal-strip span {
  padding: 7px 9px;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}

.channel-tabs .active,
.deal-strip .active {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
}

.panel-title span,
.chat-header span {
  color: var(--muted);
  font-size: 13px;
}

.conversation {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px;
  margin-bottom: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.conversation:hover,
.feature-card:hover,
.price-card:hover,
.resource-item:hover,
details:hover {
  transform: translateY(-4px);
  border-color: rgba(229, 9, 20, 0.3);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.1);
}

.conversation:nth-of-type(3) {
  animation: leadGlow 5s ease-in-out infinite;
}

.conversation.active {
  border-color: rgba(229, 9, 20, 0.4);
  box-shadow: 0 12px 28px rgba(229, 9, 20, 0.12);
}

.conversation p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.avatar {
  display: grid;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  place-items: center;
  color: #fff;
  background: var(--red);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
}

.avatar.green {
  background: var(--green);
}

.avatar.amber {
  background: var(--amber);
}

.avatar.red {
  background: var(--red-dark);
}

.status-pill {
  padding: 7px 10px;
  color: #000;
  background: var(--green);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.plan-badge {
  padding: 7px 10px;
  color: #fff;
  background: var(--red);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.chat-message {
  max-width: 78%;
  padding: 14px 16px;
  margin-bottom: 14px;
  border-radius: 8px;
  line-height: 1.5;
}

.chat-message.client {
  background: #f5f5f5;
  animation: messageIn 700ms ease both 500ms;
}

.chat-message.agent {
  margin-left: auto;
  color: #fff;
  background: var(--navy);
  animation: messageIn 700ms ease both 900ms;
}

.deal-strip {
  margin-bottom: 18px;
}

.typing-line {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  margin: 0 0 16px;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.typing-line span {
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: typingDot 1.2s ease-in-out infinite;
}

.typing-line span:nth-child(2) {
  animation-delay: 160ms;
}

.typing-line span:nth-child(3) {
  animation-delay: 320ms;
}

.typing-line em {
  font-style: normal;
}

.quick-actions {
  margin-bottom: 18px;
}

.quick-actions button {
  min-height: 34px;
  padding: 0 11px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-size: 11px;
  font-weight: 800;
}

.quick-actions button:first-child {
  color: #fff;
  background: #000;
  border-color: #000;
}

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

.pipeline div,
.metrics-panel div {
  padding: 16px;
  background: #f7fafc;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.pipeline div {
  animation: metricPulse 3.4s ease-in-out infinite;
}

.pipeline div:nth-child(2) {
  animation-delay: 200ms;
}

.pipeline div:nth-child(3) {
  animation-delay: 400ms;
}

.pipeline div:nth-child(4) {
  animation-delay: 600ms;
}

.automation-card {
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(340px, 100%);
  margin-top: 18px;
  padding: 14px;
  background: #111;
  border: 1px solid rgba(229, 9, 20, 0.45);
  border-radius: 8px;
  color: #fff;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
  animation: automationSlide 5s ease-in-out infinite;
}

.activity-panel {
  background: #fbfbfb;
  border-left: 1px solid var(--line);
}

.score-card {
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.score-card span,
.timeline p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.score-card strong {
  display: block;
  margin: 8px 0 12px;
  font-size: 30px;
}

.score-bar {
  height: 8px;
  overflow: hidden;
  background: #ececec;
  border-radius: 999px;
}

.score-bar span {
  display: block;
  width: 87%;
  height: 100%;
  background: var(--red);
  border-radius: inherit;
  animation: scoreLoad 3.6s ease-in-out infinite;
}

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

.timeline div {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.timeline div > span {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  margin-top: 5px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(229, 9, 20, 0.1);
}

.timeline p {
  margin: 0;
}

.demo-cursor {
  position: absolute;
  z-index: 4;
  width: 18px;
  height: 18px;
  border: 2px solid var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(229, 9, 20, 0.12);
  animation: cursorTour 8s ease-in-out infinite;
}

.automation-card p {
  margin: 4px 0 0;
  color: #cfcfcf;
  font-size: 12px;
}

.automation-pulse {
  position: relative;
  width: 12px;
  height: 12px;
  background: var(--red);
  border-radius: 50%;
}

.automation-pulse::after {
  position: absolute;
  inset: -8px;
  content: "";
  border: 1px solid rgba(229, 9, 20, 0.7);
  border-radius: inherit;
  animation: pulseRing 1.8s ease-out infinite;
}

.pipeline span,
.metrics-panel span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.pipeline strong,
.metrics-panel strong {
  display: block;
  margin-top: 8px;
  font-size: 28px;
}

.logo-band {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin: 0 6vw;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.logo-band span {
  display: grid;
  min-height: 86px;
  place-items: center;
  color: var(--muted);
  background: #fff;
  font-weight: 800;
}

.section,
.dark-section,
.contact-section {
  padding: 92px 6vw;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading.compact {
  max-width: 700px;
}

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

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

.feature-card,
.price-card,
details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.feature-card,
.price-card {
  padding: 26px;
}

.icon {
  display: inline-grid;
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  place-items: center;
  color: #fff;
  background: var(--ink);
  border-radius: 8px;
  font-weight: 800;
}

.dark-section {
  position: relative;
  color: #fff;
  background: #000;
  isolation: isolate;
  overflow: hidden;
}

.dark-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.36;
  background:
    radial-gradient(circle at 18% 20%, rgba(229, 9, 20, 0.22), transparent 26%),
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: auto, 44px 44px, 44px 44px;
  animation: gridDrift 16s linear infinite reverse;
}

.dark-section .section-heading h2,
.dark-section .resource-item h3 {
  color: #fff;
}

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

.resource-item {
  display: flex;
  gap: 16px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.resource-item span {
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  margin-top: 8px;
  background: var(--red);
  border-radius: 50%;
}

.resource-item p {
  color: #b9c5d6;
}

.growth-loop-section {
  background: #fff;
}

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

.growth-loop article {
  padding: 26px;
  background: #f8f8f8;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.growth-loop span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  place-items: center;
  color: #fff;
  background: var(--red);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.growth-loop p {
  color: var(--muted);
  line-height: 1.7;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: 50px;
  align-items: center;
}

.metrics-panel {
  display: grid;
  gap: 14px;
}

.metrics-panel strong {
  color: var(--red);
  font-size: 40px;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(145deg, rgba(229, 9, 20, 0.16), rgba(0, 0, 0, 0.08)) border-box;
}

.price-card.featured {
  padding-top: 26px;
  color: #fff;
  background:
    radial-gradient(circle at 85% 5%, rgba(229, 9, 20, 0.42), transparent 28%),
    linear-gradient(160deg, #111 0%, #000 56%, var(--red-black) 100%);
  border-color: rgba(225, 29, 46, 0.5);
  box-shadow: var(--shadow);
}

.price-card .plan-badge {
  position: absolute;
  top: 22px;
  right: 22px;
}

.price {
  margin: 22px 0 16px;
  color: var(--ink) !important;
  font-size: clamp(34px, 3vw, 46px);
  font-weight: 900;
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.price-card.featured .price,
.price-card.featured .price span,
.price-card.featured .plan-top p,
.price-card.featured .plan-meta span,
.price-card.featured .plan-features,
.price-card.featured .channel-pills span {
  color: #fff !important;
}

.price-card.featured .channel-pills span,
.price-card.featured .plan-meta span {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.price-card.featured .plan-features li {
  border-color: rgba(255, 255, 255, 0.14);
}

.price-card.featured .plan-features li::before {
  color: #fff;
  background: var(--red);
}

.plan-top {
  padding-right: 84px;
}

.price-card:not(.featured) .plan-top {
  padding-right: 0;
}

.plan-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.price-card.featured .plan-kicker {
  color: #fff;
}

.plan-top h3 {
  margin-bottom: 8px;
  font-size: 26px;
}

.plan-top p {
  min-height: 74px;
  margin: 0;
}

.plan-meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-bottom: 16px;
}

.plan-meta span,
.channel-pills span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 0 10px;
  color: var(--ink);
  background: #f7f7f7;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.channel-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 76px;
  margin-bottom: 18px;
}

.price-card .plan-features {
  display: grid;
  gap: 0;
  padding: 0;
  margin: auto 0 22px;
  color: var(--muted);
  list-style: none;
}

.plan-features li {
  position: relative;
  padding: 12px 0 12px 30px;
  border-top: 1px solid var(--line);
  line-height: 1.45;
  font-size: 13px;
  font-weight: 700;
}

.plan-features li::before {
  position: absolute;
  top: 12px;
  left: 0;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  color: #fff;
  content: "✓";
  background: #111;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.price-card a {
  width: 100%;
  margin-top: auto;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.price-card a:hover {
  transform: translateY(-2px);
}

.comparison-block {
  margin-top: 34px;
}

.comparison-heading {
  margin-bottom: 18px;
}

.comparison-heading h3 {
  margin-bottom: 0;
  font-size: 30px;
}

.comparison-table-wrap {
  overflow-x: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.comparison-table {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
  font-size: 13px;
}

.comparison-table th,
.comparison-table td {
  padding: 15px 16px;
  border-bottom: 1px solid var(--line);
  text-align: center;
  vertical-align: middle;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  position: sticky;
  left: 0;
  z-index: 1;
  width: 260px;
  background: #fff;
  text-align: left;
  font-weight: 800;
}

.comparison-table thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  color: #fff;
  background: #000;
  font-weight: 900;
}

.comparison-table thead th:first-child {
  z-index: 3;
  background: #000;
}

.comparison-table tbody tr:nth-child(even) td {
  background: #fafafa;
}

.comparison-table tbody tr:nth-child(even) td:first-child {
  background: #fafafa;
}

.comparison-table tbody tr:hover td {
  background: #fff5f5;
}

.comparison-table tbody tr:hover td:first-child {
  background: #fff5f5;
}

.yes,
.no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.yes {
  color: #063b0b;
  background: rgba(82, 204, 90, 0.28);
}

.no {
  color: #7f1d1d;
  background: rgba(229, 9, 20, 0.1);
}

.contact-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 0.65fr);
  gap: 42px;
  align-items: start;
  color: #fff;
  background: linear-gradient(135deg, #000000, var(--red-black) 58%, var(--red-deep));
  overflow: hidden;
}

.contact-section::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.08), transparent),
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 100% 100%, 36px 36px;
  animation: scanner 7s ease-in-out infinite;
}

.contact-section p {
  color: #d9e8f4;
}

.lead-form {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 24px;
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

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

@keyframes gridDrift {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 104px 104px, 104px 104px;
  }
}

@keyframes floatSignal {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(0, -22px, 0) scale(1.04);
  }
}

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

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

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

  72%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes previewZoom {
  0%,
  100% {
    transform: scale(1.01);
  }

  50% {
    transform: scale(1.025);
  }
}

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

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

@keyframes livePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(229, 9, 20, 0.36);
  }

  100% {
    box-shadow: 0 0 0 9px rgba(229, 9, 20, 0);
  }
}

@keyframes dashboardFloat {
  0%,
  100% {
    transform: rotateX(2deg) rotateY(-4deg) translateY(0);
  }

  50% {
    transform: rotateX(1deg) rotateY(-2deg) translateY(-12px);
  }
}

@keyframes scanner {
  0% {
    transform: translateX(-120%);
  }

  45%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes messageIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes metricPulse {
  0%,
  100% {
    border-color: var(--line);
  }

  50% {
    border-color: rgba(229, 9, 20, 0.45);
  }
}

@keyframes automationSlide {
  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(10px);
  }
}

@keyframes pulseRing {
  from {
    opacity: 0.8;
    transform: scale(0.6);
  }

  to {
    opacity: 0;
    transform: scale(1.8);
  }
}

@keyframes leadGlow {
  0%,
  100% {
    border-color: var(--line);
  }

  50% {
    border-color: rgba(229, 9, 20, 0.45);
    box-shadow: 0 12px 28px rgba(229, 9, 20, 0.1);
  }
}

@keyframes typingDot {
  0%,
  100% {
    opacity: 0.35;
    transform: translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateY(-3px);
  }
}

@keyframes scoreLoad {
  0% {
    width: 22%;
  }

  50%,
  100% {
    width: 87%;
  }
}

@keyframes cursorTour {
  0%,
  100% {
    left: 320px;
    top: 116px;
  }

  24% {
    left: 520px;
    top: 192px;
  }

  48% {
    left: 670px;
    top: 344px;
  }

  72% {
    left: 850px;
    top: 154px;
  }
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  color: var(--ink);
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.lead-form button {
  cursor: pointer;
  font: inherit;
}

.lead-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-note {
  margin: 0;
  color: var(--muted) !important;
  font-size: 12px;
}

.faq-section {
  display: grid;
  gap: 12px;
}

details {
  padding: 20px 22px;
}

summary {
  cursor: pointer;
  font-weight: 800;
}

details p {
  margin: 14px 0 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 28px 6vw;
  color: #d8e3f0;
  background: var(--navy);
}

.site-footer div {
  display: grid;
  gap: 6px;
}

.site-footer strong {
  color: #fff;
}

.company-info {
  color: #b8c2d0;
  font-size: 13px;
  text-align: right;
}

@media (min-width: 1280px) {
  .hero-section {
    grid-template-columns: minmax(430px, 0.82fr) minmax(0, 1.18fr);
  }

  .product-visual {
    max-width: min(58vw, 1040px);
  }

  .app-shell {
    grid-template-columns: 112px 220px minmax(300px, 1fr) 196px;
    grid-template-rows: 60px minmax(430px, auto);
    min-height: 540px;
  }

  .crm-message {
    max-width: 84%;
  }
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .hero-section,
  .split-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-section {
    min-height: auto;
  }

  .app-shell {
    width: 920px;
    max-width: none;
    grid-template-columns: 110px 230px 360px 220px;
    overflow-x: auto;
  }

  .product-visual {
    max-width: 100%;
    justify-self: stretch;
    padding-bottom: 8px;
  }

  .solution-grid,
  .growth-loop,
  .resource-list {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .app-shell {
    transform: none;
  }
}

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

  .header-cta {
    display: none;
  }

  .hero-section,
  .section,
  .dark-section,
  .contact-section {
    padding: 54px 18px;
  }

  h1 {
    font-size: 42px;
  }

  .app-shell {
    min-height: 480px;
    width: 870px;
    grid-template-columns: 100px 220px 340px 210px;
  }

  .preview-badge {
    right: 12px;
    bottom: 12px;
    max-width: calc(100% - 24px);
    font-size: 11px;
  }

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

  .logo-band {
    margin: 0 18px;
  }

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

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 18px;
  }

  .company-info {
    text-align: left;
  }
}
