:root {
  --ink: #2e2e2e;
  --muted: #66625c;
  --line: #ddd7cc;
  --paper: #fffaf2;
  --white: #fffef9;
  --dark: #20201d;
  --dark-soft: #2e2e2e;
  --green: #1f7a5c;
  --green-dark: #13573f;
  --amber: #f19500;
  --red: #e34345;
  --blue: #2d88a8;
  --brand-blue: #ceefff;
  --brand-orange: #f19500;
  --brand-red: #e34345;
  --todo-bg: #fff3c2;
  --todo-border: #d9a321;
  --shadow: 0 24px 60px rgba(38, 31, 21, 0.16);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Poppins, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
}

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

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

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

h1 {
  max-width: 720px;
  font-size: clamp(3rem, 5.8vw, 5.4rem);
  font-weight: 760;
}

h2 {
  max-width: 780px;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 730;
}

h3 {
  font-size: 1.1rem;
  font-weight: 720;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 28px;
  background: rgba(255, 250, 242, 0.9);
  border-bottom: 1px solid rgba(221, 215, 204, 0.6);
  backdrop-filter: blur(16px);
  transition:
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.site-header.is-elevated {
  border-color: rgba(32, 32, 29, 0.1);
  box-shadow: 0 12px 36px rgba(32, 32, 29, 0.08);
}

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

.brand-logo {
  display: block;
  width: 140px;
  height: auto;
  object-fit: contain;
}

.brand-logo-footer {
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 620;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--ink);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.signin-link {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 720;
}

.signin-link:hover {
  color: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 730;
  white-space: nowrap;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

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

.button-small {
  min-height: 38px;
  padding: 0 15px;
  font-size: 0.92rem;
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-primary {
  background: var(--brand-orange);
  color: #171107;
  box-shadow: 0 14px 28px rgba(241, 149, 0, 0.2);
}

.button-primary:hover {
  background: #ffad22;
}

.button-ghost {
  border-color: rgba(255, 253, 248, 0.22);
  color: var(--white);
  background: rgba(255, 253, 248, 0.08);
}

.section {
  padding: 112px 0;
}

.section[id] {
  scroll-margin-top: 82px;
}

.section-tight {
  padding: 32px 0;
}

.section-dark {
  background: var(--dark);
  color: var(--white);
}

.section-muted {
  background: #edf8fb;
}

.symbol-field {
  position: relative;
  overflow: hidden;
}

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

.symbol-field::before,
.symbol-field::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.symbol-field-light::before {
  top: 62px;
  right: -118px;
  width: 270px;
  height: 190px;
  border: 26px solid rgba(206, 239, 255, 0.46);
  border-radius: 86px 8px 86px 8px;
  transform: rotate(-18deg);
}

.symbol-field-light::after {
  left: -76px;
  bottom: 92px;
  width: 164px;
  height: 128px;
  border-radius: 8px 70px 8px 70px;
  background: rgba(227, 67, 69, 0.07);
  transform: rotate(12deg);
}

.symbol-field-warm::before {
  top: -82px;
  left: -78px;
  width: 218px;
  height: 218px;
  border: 24px solid rgba(241, 149, 0, 0.1);
  border-radius: 84px 8px 84px 8px;
  transform: rotate(42deg);
}

.symbol-field-warm::after {
  right: 8%;
  bottom: -62px;
  width: 196px;
  height: 142px;
  border-radius: 86px 8px 86px 8px;
  background: rgba(206, 239, 255, 0.46);
  transform: rotate(-16deg);
}

.symbol-field-dark::before {
  top: 34px;
  left: -82px;
  width: 246px;
  height: 178px;
  border: 22px solid rgba(206, 239, 255, 0.09);
  border-radius: 82px 8px 82px 8px;
  transform: rotate(24deg);
}

.symbol-field-dark::after {
  right: -58px;
  bottom: -74px;
  width: 220px;
  height: 164px;
  border-radius: 8px 86px 8px 86px;
  background: rgba(227, 67, 69, 0.1);
  transform: rotate(-10deg);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 76px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 54px;
  right: -96px;
  width: 268px;
  height: 268px;
  border: 28px solid rgba(206, 239, 255, 0.12);
  border-radius: 76px 8px 76px 8px;
  transform: rotate(45deg);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  right: 12%;
  bottom: -86px;
  width: 240px;
  height: 160px;
  border-radius: 8px 86px 8px 86px;
  background: rgba(227, 67, 69, 0.14);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  align-items: center;
  gap: 48px;
}

.hero-copy {
  display: grid;
  gap: 24px;
}

.eyebrow {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-dark .eyebrow,
.section-heading-light .eyebrow,
.final-cta .eyebrow {
  color: var(--brand-blue);
}

.hero-lede {
  max-width: 650px;
  color: rgba(255, 253, 248, 0.78);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

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

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 16px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.hero-tags li {
  position: relative;
  padding-left: 13px;
  color: rgba(255, 253, 248, 0.7);
  font-size: 0.86rem;
  font-weight: 650;
}

.hero-tags li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: var(--brand-blue);
  opacity: 0.74;
}

.hero-visual {
  position: relative;
  min-height: 600px;
}

.visual-panel {
  border: 1px solid rgba(255, 253, 248, 0.16);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.conversation-panel {
  width: 76%;
  padding: 16px;
}

.panel-topbar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding-bottom: 16px;
  color: rgba(255, 253, 248, 0.55);
  font-size: 0.78rem;
}

.dot {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.3);
}

.panel-title {
  margin-left: 8px;
}

.chat-stream {
  display: grid;
  gap: 12px;
}

.message {
  max-width: 88%;
  padding: 13px 14px;
  border-radius: 8px;
  font-size: 0.95rem;
}

.message.assistant {
  color: #203027;
  background: #dff4ff;
}

.message.customer {
  justify-self: end;
  color: #1f1c16;
  background: var(--white);
}

.insight-panel {
  position: absolute;
  right: 0;
  bottom: 24px;
  width: 78%;
  padding: 26px;
  background: #fffdf8;
  color: var(--ink);
  border-color: rgba(32, 32, 29, 0.12);
}

.insight-header,
.insight-meta {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 720;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.signal {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.signal.red {
  background: var(--red);
}

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

.insight-panel h2 {
  margin-top: 18px;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.insight-panel p,
.large-insight p,
.mini-insights p,
.section-heading p,
.trust-shell p,
.churn-copy p,
.audience-section p {
  color: var(--muted);
}

.insight-panel p {
  margin-top: 14px;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 22px;
}

.metric-row div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff5e1;
}

.metric-row strong {
  display: block;
  font-size: 1.38rem;
}

.metric-row span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}

.evidence-strip {
  margin-top: 12px;
  padding: 12px 14px;
  border-left: 3px solid var(--brand-orange);
  background: #fff5df;
  border-radius: 8px;
  color: #624000;
  font-size: 0.92rem;
  font-weight: 700;
}

.customer-logo-section {
  display: grid;
  gap: 22px;
}

.logos {
  background: #fff;
}

.logo-kicker {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 760;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

.logo-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 4px 0;
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}

.customer-logo-track {
  display: flex;
  width: max-content;
  gap: 10px;
  animation: logo-scroll 38s linear infinite;
}

.logo-marquee:hover .customer-logo-track,
.logo-marquee:focus-within .customer-logo-track {
  animation-play-state: paused;
}

.customer-logo-track img {
  width: 166px;
  height: 74px;
  padding: 0 16px;
  border: 0;
  filter: brightness(0);
  opacity: 1;
  object-fit: contain;
  flex: 0 0 auto;
}

@keyframes logo-scroll {
  from {
    transform: translateX(0);
  }

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

.investor-section {
  padding: 34px 0 30px;
  background: #050505;
  color: var(--white);
  text-align: center;
}

.investor-section h2 {
  max-width: none;
  margin: 0 auto;
  color: rgba(255, 253, 248, 0.62);
  font-size: 0.9rem;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.investor-logos {
  display: grid;
  grid-template-columns: repeat(4, minmax(130px, 1fr));
  align-items: center;
  gap: 24px;
  margin-top: 22px;
}

.investor-logos img {
  width: 100%;
  height: 48px;
  object-fit: contain;
}

.two-column {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 72px;
  align-items: start;
}

.body-copy {
  display: grid;
  gap: 28px;
  color: var(--muted);
  font-size: 1.08rem;
}

.pain-list {
  display: grid;
  gap: 12px;
}

.pain-list div {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 4px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.pain-list div::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 54px;
  height: 54px;
  background: var(--brand-red);
  border-radius: 0 0 0 54px;
  opacity: 0.08;
}

.pain-list strong {
  color: var(--ink);
}

.section-heading {
  display: grid;
  gap: 16px;
  max-width: 820px;
  margin-bottom: 44px;
}

.section-heading p:not(.eyebrow) {
  font-size: 1.08rem;
}

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

.feature-card,
.role-grid article,
.mini-insights article {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.feature-card::after {
  content: "";
  position: absolute;
  right: -22px;
  bottom: -30px;
  width: 96px;
  height: 82px;
  border-radius: 44px 8px 44px 8px;
  background: var(--brand-blue);
  opacity: 0.34;
  transform: rotate(-12deg);
}

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

.feature-card p,
.role-grid p {
  color: var(--muted);
}

.feature-number {
  width: max-content;
  padding: 5px 8px;
  border-radius: 8px;
  background: var(--brand-blue);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 800;
}

.revenue-pressure {
  background: linear-gradient(180deg, #fffaf2 0%, var(--paper) 100%);
}

.revenue-heading {
  max-width: 900px;
  margin-bottom: 34px;
}

.revenue-heading h2 {
  max-width: 880px;
  font-size: clamp(2.15rem, 4.4vw, 4.05rem);
}

.revenue-heading p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
}

.revenue-question-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.revenue-question {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: start;
  gap: 13px;
  min-height: 238px;
  padding: 26px;
}

.revenue-question + .revenue-question {
  border-left: 1px solid var(--line);
}

.revenue-question span {
  color: var(--brand-orange);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.08em;
}

.revenue-question h3 {
  max-width: 320px;
  font-size: clamp(1.16rem, 1.75vw, 1.5rem);
  line-height: 1.14;
}

.revenue-question p {
  color: var(--muted);
  font-size: 0.96rem;
}

.revenue-question-strong {
  background: linear-gradient(135deg, #fff5df, #e9f8ff);
}

.revenue-question-strong::after {
  content: "";
  position: absolute;
  right: -58px;
  bottom: -76px;
  width: 174px;
  height: 174px;
  border: 24px solid rgba(241, 149, 0, 0.16);
  border-radius: 999px;
}

.revenue-question-strong > * {
  position: relative;
  z-index: 1;
}

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

.step {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 260px;
  padding: 22px;
  border: 1px solid rgba(255, 253, 248, 0.14);
  border-radius: 8px;
  background: var(--dark-soft);
}

.step span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--brand-orange);
  color: #171107;
  font-weight: 800;
}

.step p {
  color: rgba(255, 253, 248, 0.68);
}

.insight-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 16px;
  margin-bottom: 16px;
}

.large-insight {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.large-insight h3 {
  margin-top: 18px;
  font-size: clamp(1.8rem, 3.4vw, 3rem);
}

.large-insight p {
  margin-top: 14px;
  font-size: 1.05rem;
}

.large-insight .metric-row {
  grid-template-columns: repeat(3, 1fr);
}

.customer-voice {
  display: grid;
  grid-template-columns: minmax(150px, 0.36fr) minmax(0, 1fr);
  gap: 14px;
  margin-top: 16px;
  align-items: stretch;
}

.customer-voice img {
  width: 100%;
  height: 100%;
  min-height: 172px;
  border-radius: 8px;
  object-fit: cover;
}

.customer-voice blockquote:first-child {
  margin-top: 0;
}

blockquote {
  margin: 14px 0 0;
  padding: 16px;
  border-left: 3px solid var(--blue);
  border-radius: 8px;
  background: #eff9fd;
  color: #243640;
  font-weight: 650;
}

.mini-insights {
  display: grid;
  gap: 16px;
}

.mini-insights span {
  color: var(--green-dark);
  font-size: 0.86rem;
  font-weight: 760;
}

.mini-insights .insight-meta {
  color: var(--muted);
}

.mini-insights .insight-meta span {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.mini-chart {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff6e6;
}

.mini-chart-top,
.mini-chart-axis {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mini-chart-top span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 720;
}

.mini-chart-top strong {
  color: var(--red);
  font-size: 1rem;
}

.mini-bars {
  display: grid;
  gap: 7px;
}

.mini-bar {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: #ece6dd;
}

.mini-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--blue);
}

.mini-bar.is-hot span {
  background: var(--red);
}

.mini-chart-axis span {
  color: #8f8b86;
  font-size: 0.72rem;
  font-weight: 680;
}

@media (prefers-reduced-motion: no-preference) {
  html.motion-ready .reveal-on-scroll {
    opacity: 0;
    transform: translateY(14px);
    transition:
      opacity 420ms ease,
      transform 420ms ease;
    transition-delay: var(--reveal-delay, 0ms);
  }

  html.motion-ready .reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .hero .message {
    opacity: 0;
    animation: message-enter 520ms ease forwards;
  }

  .hero .message:nth-child(1) {
    animation-delay: 120ms;
  }

  .hero .message:nth-child(2) {
    animation-delay: 220ms;
  }

  .hero .message:nth-child(3) {
    animation-delay: 320ms;
  }

  .hero .message:nth-child(4) {
    animation-delay: 420ms;
  }

  .signal {
    animation: signal-breathe 2.8s ease-in-out infinite;
  }

  .mini-insights article.reveal-on-scroll .mini-bar span {
    transform: scaleX(0);
    transform-origin: left center;
  }

  .mini-insights article.reveal-on-scroll.is-visible .mini-bar span {
    animation: bar-grow 620ms ease forwards;
  }

  .mini-insights article.reveal-on-scroll.is-visible .mini-bar:nth-child(1) span {
    animation-delay: 80ms;
  }

  .mini-insights article.reveal-on-scroll.is-visible .mini-bar:nth-child(2) span {
    animation-delay: 150ms;
  }

  .mini-insights article.reveal-on-scroll.is-visible .mini-bar:nth-child(3) span {
    animation-delay: 220ms;
  }

  .mini-insights article.reveal-on-scroll.is-visible .mini-bar:nth-child(4) span {
    animation-delay: 290ms;
  }
}

@keyframes message-enter {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

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

@keyframes signal-breathe {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(241, 149, 0, 0);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 0 5px rgba(241, 149, 0, 0.12);
    transform: scale(1.04);
  }
}

@keyframes bar-grow {
  to {
    transform: scaleX(1);
  }
}

.comparison-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.comparison-row {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1.2fr;
}

.comparison-row > div {
  padding: 18px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.comparison-row > div + div {
  border-left: 1px solid var(--line);
}

.comparison-head > div {
  background: var(--ink);
  color: var(--white);
  font-weight: 780;
}

.comparison-konvolo {
  position: relative;
}

.comparison-konvolo::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid var(--brand-orange);
  border-radius: 0 0 8px 8px;
  pointer-events: none;
}

.comparison-konvolo > div {
  background: linear-gradient(135deg, #e9f8ff, #fff5df);
  color: #174f64;
  font-weight: 760;
}

.comparison-konvolo > div:first-child {
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 820;
}

.comparison-row:last-child > div {
  border-bottom: 0;
}

.comparison-summary {
  max-width: 760px;
  margin-top: 26px;
  font-size: 1.24rem;
  font-weight: 720;
}

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

.trust-section {
  overflow: hidden;
  padding: clamp(64px, 8vw, 104px) 0;
}

.trust-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
  gap: 56px;
  align-items: center;
}

.trust-copy {
  display: grid;
  gap: 18px;
}

.trust-copy h2 {
  font-size: clamp(1.95rem, 3.4vw, 3.25rem);
}

.trust-copy p:not(.eyebrow) {
  max-width: 600px;
}

.trust-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(32, 32, 29, 0.1);
  border-radius: 8px;
  background: #fffef9;
  box-shadow: 0 28px 80px rgba(25, 44, 50, 0.12);
}

.trust-main {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 22px;
  padding: 20px;
  border: 1px solid rgba(45, 136, 168, 0.16);
  border-radius: 8px;
  background: #f3fbfe;
}

.gdpr-image {
  width: 96px;
  height: 96px;
  object-fit: contain;
}

.trust-main p {
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 780;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.trust-main h3 {
  max-width: 430px;
  margin-top: 6px;
  font-size: clamp(1.3rem, 2.2vw, 1.85rem);
  line-height: 1.08;
}

.trust-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 720;
}

.checkmark {
  position: relative;
  flex: 0 0 auto;
  width: 23px;
  height: 23px;
  border-radius: 999px;
  background: var(--brand-orange);
}

.checkmark::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 5px;
  width: 6px;
  height: 10px;
  border: solid #171107;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.security-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  list-style: none;
}

.security-list li {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 78px;
  padding: 15px 16px 15px 36px;
  border: 0;
  background: #fff8eb;
  font-size: 0.92rem;
  font-weight: 720;
}

.security-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--blue);
  transform: translateY(-50%);
}

.churn-section {
  background: #fffaf2;
}

.churn-prevention {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 56px;
  align-items: center;
}

.churn-copy {
  display: grid;
  gap: 18px;
}

.churn-copy p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.07rem;
}

.risk-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 22px;
  padding: 28px;
  border: 1px solid rgba(241, 149, 0, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(206, 239, 255, 0.72), rgba(255, 245, 223, 0.96)),
    var(--white);
  box-shadow: var(--shadow);
}

.risk-panel::after {
  content: "";
  position: absolute;
  top: -44px;
  right: -46px;
  width: 150px;
  height: 150px;
  border-radius: 68px 8px 68px 8px;
  background: rgba(227, 67, 69, 0.14);
  transform: rotate(18deg);
}

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

.risk-header {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #7a4530;
  font-size: 0.8rem;
  font-weight: 780;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.risk-total {
  display: grid;
  gap: 4px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(46, 46, 46, 0.12);
}

.risk-total strong {
  color: var(--ink);
  font-size: clamp(3.4rem, 8vw, 5.6rem);
  line-height: 0.9;
}

.risk-total span {
  color: #604f42;
  font-size: 1.06rem;
  font-weight: 720;
}

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

.risk-grid div {
  padding: 18px;
  border: 1px solid rgba(46, 46, 46, 0.1);
  border-radius: 8px;
  background: rgba(255, 254, 249, 0.72);
}

.risk-grid h3 {
  margin-bottom: 12px;
}

.risk-grid ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.risk-grid li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
}

.risk-grid li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--brand-orange);
}

.final-cta {
  padding: 96px 0;
}

.final-cta-inner {
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

.final-cta-inner h2 {
  margin: 0 auto;
}

.final-cta-inner p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 253, 248, 0.72);
  font-size: 1.12rem;
}

.site-footer {
  padding: 42px 0 30px;
  background: #151512;
  color: var(--white);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.footer-inner p,
.footer-links {
  color: rgba(255, 253, 248, 0.64);
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-legal {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 253, 248, 0.12);
  color: rgba(255, 253, 248, 0.58);
  font-size: 0.9rem;
}

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

.footer-legal strong {
  color: rgba(255, 253, 248, 0.8);
}

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

  .nav-links {
    display: none;
  }

  .hero-grid,
  .two-column,
  .trust-shell,
  .churn-prevention,
  .insight-layout {
    grid-template-columns: 1fr;
  }

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

  .conversation-panel,
  .insight-panel {
    position: relative;
    width: 100%;
  }

  .insight-panel {
    right: auto;
    bottom: auto;
    margin-top: 14px;
  }

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

  .customer-logo-track {
    animation-duration: 34s;
  }

  .investor-logos {
    grid-template-columns: repeat(2, minmax(130px, 1fr));
  }

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

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

  .section {
    padding: 78px 0;
  }
}

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

  h1 {
    font-size: clamp(2.72rem, 13vw, 3.45rem);
  }

  h2 {
    font-size: clamp(2.24rem, 10vw, 2.9rem);
  }

  .section {
    padding: 64px 0;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .site-header {
    gap: 14px;
    padding: 12px 14px;
  }

  .header-actions {
    gap: 10px;
  }

  .site-header .button-small {
    min-height: 36px;
    padding: 0 13px;
    font-size: 0.86rem;
  }

  .signin-link {
    display: none;
  }

  .hero {
    padding: 68px 0 54px;
  }

  .hero::before {
    top: 82px;
    right: -154px;
    width: 242px;
    height: 242px;
    border-width: 22px;
    border-color: rgba(206, 239, 255, 0.08);
  }

  .hero::after {
    right: -76px;
    bottom: 250px;
    width: 176px;
    height: 122px;
    background: rgba(227, 67, 69, 0.08);
  }

  .hero-grid {
    gap: 34px;
  }

  .hero-visual {
    min-height: 610px;
    margin-top: 4px;
  }

  .conversation-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 94%;
    padding: 12px;
  }

  .panel-topbar {
    padding-bottom: 12px;
  }

  .chat-stream {
    gap: 10px;
  }

  .message {
    max-width: 88%;
    padding: 11px 12px;
    font-size: 0.86rem;
  }

  .insight-panel {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 88%;
    margin-top: 0;
    padding: 20px 18px;
  }

  .insight-panel h2 {
    margin-top: 14px;
    font-size: clamp(1.55rem, 7.5vw, 2rem);
  }

  .insight-panel p {
    font-size: 0.94rem;
  }

  .insight-panel .metric-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 18px;
  }

  .insight-panel .metric-row div {
    padding: 12px;
  }

  .insight-panel .metric-row span {
    font-size: 0.76rem;
  }

  .insight-panel .evidence-strip {
    padding: 11px 12px;
    font-size: 0.8rem;
  }

  .feature-grid,
  .steps,
  .role-grid,
  .metric-row {
    grid-template-columns: 1fr;
  }

  .steps {
    gap: 10px;
  }

  .step {
    grid-template-columns: 38px 1fr;
    gap: 6px 13px;
    min-height: auto;
    padding: 16px;
  }

  .step span {
    grid-row: 1 / 3;
    width: 34px;
    height: 34px;
  }

  .step h3 {
    font-size: 1.02rem;
    line-height: 1.18;
  }

  .step p {
    font-size: 0.92rem;
    line-height: 1.45;
  }

  .large-insight {
    padding: 22px;
  }

  .large-insight h3 {
    margin-top: 14px;
    font-size: clamp(1.78rem, 8vw, 2.24rem);
  }

  .large-insight p {
    font-size: 0.98rem;
  }

  .large-insight .metric-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 18px;
  }

  .large-insight .metric-row div {
    min-height: 78px;
    padding: 11px 9px;
  }

  .large-insight .metric-row strong {
    font-size: 1.25rem;
  }

  .large-insight .metric-row span {
    font-size: 0.72rem;
    line-height: 1.25;
  }

  .large-insight blockquote {
    margin-top: 12px;
    padding: 14px;
    font-size: 0.94rem;
    line-height: 1.45;
  }

  .customer-voice {
    grid-template-columns: 82px 1fr;
    gap: 10px;
    margin-top: 14px;
    align-items: stretch;
  }

  .customer-voice img {
    min-height: 0;
    height: 100%;
    max-height: 132px;
  }

  .customer-voice blockquote {
    margin-top: 0;
  }

  .customer-voice blockquote + blockquote,
  .mini-insights {
    display: none;
  }

  .investor-logos {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .revenue-question-grid {
    grid-template-columns: 1fr;
  }

  .revenue-question {
    min-height: auto;
    padding: 22px;
  }

  .revenue-question + .revenue-question {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .investor-section {
    padding: 30px 0 26px;
  }

  .investor-logos {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    gap: 18px;
    margin-top: 20px;
  }

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

  .customer-logo-track img {
    width: 142px;
    height: 66px;
  }

  .brand-logo {
    width: 124px;
  }

  .section-heading {
    gap: 16px;
  }

  .trust-section {
    padding: 52px 0;
  }

  .trust-panel {
    padding: 16px;
  }

  .trust-main {
    grid-template-columns: auto 1fr;
    gap: 14px;
    padding: 16px;
  }

  .gdpr-image {
    width: 72px;
    height: 72px;
  }

  .trust-main h3 {
    font-size: 1.12rem;
  }

  .trust-list {
    gap: 8px;
    margin-top: 14px;
  }

  .trust-list li {
    font-size: 0.88rem;
  }

  .checkmark {
    width: 20px;
    height: 20px;
  }

  .checkmark::after {
    left: 6px;
    top: 4px;
  }

  .security-list li {
    min-height: 64px;
    padding: 12px 12px 12px 30px;
    font-size: 0.84rem;
  }

  .security-list li::before {
    left: 13px;
  }

  .comparison-table {
    border: 0;
    background: transparent;
    display: grid;
    gap: 8px;
  }

  .comparison-row {
    grid-template-columns: 1fr;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    background: var(--white);
  }

  .comparison-head {
    display: none;
  }

  .comparison-row > div,
  .comparison-row > div + div {
    border-left: 0;
  }

  .comparison-row > div {
    display: grid;
    gap: 5px;
    padding: 11px 14px;
    font-size: 0.9rem;
    line-height: 1.35;
  }

  .comparison-row > div:nth-child(2) {
    display: none;
  }

  .comparison-row > div::before {
    content: attr(data-label);
    color: #8a8377;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.1;
    text-transform: uppercase;
  }

  .comparison-row > div:first-child {
    padding: 13px 14px;
    color: var(--ink);
    font-size: 1rem;
    font-weight: 760;
    background: #fffaf0;
  }

  .comparison-row > div:first-child::before {
    display: none;
  }

  .comparison-konvolo {
    border-color: var(--brand-orange);
  }

  .comparison-konvolo::before {
    border-radius: 8px;
  }

  .comparison-konvolo > div:first-child,
  .comparison-konvolo > div {
    background: linear-gradient(135deg, #e9f8ff, #fff5df);
  }

  .comparison-konvolo > div:first-child {
    font-weight: 820;
  }

  .comparison-konvolo > div::before {
    color: #a36300;
  }

  .comparison-summary {
    margin-top: 22px;
    font-size: 1.08rem;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    gap: 22px;
    text-align: center;
  }

  .footer-inner > div:first-child {
    display: grid;
    width: 100%;
    justify-items: center;
    gap: 8px;
  }

  .footer-links {
    width: 100%;
    max-width: 330px;
    justify-content: center;
    row-gap: 14px;
  }

  .footer-legal div {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 360px) {
  .conversation-panel {
    width: 100%;
  }

  .insight-panel {
    width: 96%;
  }

  .insight-panel .metric-row div {
    padding: 10px;
  }

  .insight-panel .metric-row span {
    font-size: 0.68rem;
  }
}
