/* =========================================================
   ROOT VARIABLES
   ========================================================= */

:root {
  --bg: #FFFFFF;
  --surface: #FFFFFF;
  --surface-alt: #F6F8FB;

  --ink: #10151F;
  --ink-soft: #5A6472;
  --ink-faint: #9AA3AF;

  --accent: #1CCCA0;
  --accent-dark: #0EA57F;
  --accent-light: #E4F9F2;

  --border: #E5E8EE;

  --grad-purple: #B9A6F2;
  --grad-orange: #FFB37A;

  --grad-wash:
    radial-gradient(
      circle at 8% 12%,
      rgba(185,166,242,0.16),
      transparent 42%
    ),
    radial-gradient(
      circle at 92% 8%,
      rgba(255,179,122,0.16),
      transparent 40%
    ),
    radial-gradient(
      circle at 85% 92%,
      rgba(185,166,242,0.12),
      transparent 42%
    ),
    radial-gradient(
      circle at 6% 88%,
      rgba(255,179,122,0.10),
      transparent 40%
    );

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --shadow: 0 1px 2px rgba(16,21,31,0.04);

  --maxw: 1160px;
}


/* =========================================================
   RESET / GLOBAL
   ========================================================= */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background: #FFFFFF;
  color-scheme: light;
}

body {
  background: #FFFFFF;
  color: var(--ink);
  font-family:
    'Inter',
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;

  line-height: 1.5;

  -webkit-font-smoothing: antialiased;

  min-height: 100vh;
}

section {
  background: #FFFFFF;
}

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

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

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

h1,
h2,
h3,
h4 {
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.mono {
  font-family: 'Inter', sans-serif;
}

.accent-text {
  color: var(--accent-dark);
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
  padding: 76px 0 40px;

  text-align: center;

  background:
    var(--grad-wash),
    #FFFFFF;

  position: relative;
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  background: var(--surface);

  border: 1px solid var(--border);

  padding: 7px 16px;

  border-radius: 999px;

  font-size: 13px;
  color: var(--ink-soft);

  box-shadow: var(--shadow);

  margin-bottom: 26px;
}

.eyebrow-pill .dot {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: var(--accent);
}

.hero h1 {
  font-size: 56px;
  line-height: 1.06;

  max-width: 820px;

  margin: 0 auto 22px;
}

.hero p.lede {
  font-size: 18.5px;
  color: var(--ink-soft);

  max-width: 640px;

  margin: 0 auto 34px;
}

.hero-actions {
  display: flex;

  gap: 14px;

  justify-content: center;

  margin-bottom: 16px;

  flex-wrap: wrap;
}

.hero-actions .btn {
  padding: 14px 26px;
  font-size: 15.5px;
}

.hero-meta {
  display: flex;

  gap: 22px;

  justify-content: center;

  font-size: 13.5px;

  color: var(--ink-faint);

  margin-bottom: 52px;
}

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


/* =========================================================
   CONNECTOR STRIP
   ========================================================= */

.connector-strip {
  overflow: hidden;

  padding: 20px 0;

  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);

  background: var(--surface);
}

.connector-track {
  display: flex;

  gap: 44px;

  width: max-content;

  animation: scroll-left 28s linear infinite;

  align-items: center;
}

.cx-fallback {
  display: flex;
  align-items: center;

  gap: 9px;

  white-space: nowrap;
}

.cx-fallback img {
  height: 20px;
  width: auto;
  opacity: 0.7;
}

.cx-fallback span {
  font-size: 13.5px;

  color: var(--ink-soft);

  font-weight: 500;
}

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

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


/* =========================================================
   HERO VISUAL
   ========================================================= */

.hero-visual {
  margin: 56px auto 0;

  max-width: 980px;

  position: relative;
}

.hero-visual::before {
  content: '';

  position: absolute;

  z-index: -1;

  inset: -40px;

  background:
    radial-gradient(
      circle at 20% 30%,
      rgba(185,166,242,0.22),
      transparent 55%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(255,179,122,0.22),
      transparent 55%
    );

  filter: blur(20px);
}

.board-frame {
  background: var(--surface-alt);

  border: 1px solid var(--border);

  border-radius: var(--radius-lg);

  padding: 14px;

  box-shadow:
    0 30px 60px -20px rgba(18,49,60,0.12);

  position: relative;
}

.board-inner {
  background: var(--surface);

  border-radius: 14px;

  padding: 22px 24px 26px;

  text-align: left;
}

.board-topbar {
  display: flex;

  justify-content: space-between;
  align-items: center;

  margin-bottom: 18px;
}

.board-topbar .dots {
  display: flex;
  gap: 6px;
}

.board-topbar .dots span {
  width: 9px;
  height: 9px;

  border-radius: 50%;

  background: var(--border);
}

.board-topbar .label {
  font-size: 12.5px;

  color: var(--ink-faint);

  font-family: 'Inter', sans-serif;
}

.card-grid {
  display: grid;

  grid-template-columns: repeat(6, 1fr);

  gap: 12px;
}

.metric-card {
  background: var(--surface-alt);

  border: 1px solid var(--border);

  border-radius: 12px;

  padding: 14px 12px;
}

.metric-card .lbl {
  font-size: 11.5px;

  color: var(--ink-soft);

  margin-bottom: 8px;
}

.metric-card .val {
  font-family: 'Inter', sans-serif;

  font-size: 19px;

  font-weight: 600;

  color: var(--ink);
}

.metric-card .delta {
  font-size: 11.5px;

  margin-top: 4px;

  font-family: 'Inter', sans-serif;
}

.delta.up {
  color: var(--accent-dark);
}

.delta.down {
  color: #C2543A;
}


/* =========================================================
   GENERAL SECTIONS
   ========================================================= */

section {
  padding: 88px 0;
}

.section-head {
  max-width: 640px;

  margin: 0 auto 48px;

  text-align: center;
}

.section-head .kicker {
  font-size: 14px;

  color: var(--accent-dark);

  font-weight: 600;

  margin-bottom: 10px;
}

.section-head h2 {
  font-size: 38px;

  line-height: 1.16;
}

.section-head p {
  color: var(--ink-soft);

  font-size: 16.5px;

  margin-top: 14px;
}


/* =========================================================
   PROBLEM / COMPARISON
   ========================================================= */

.compare {
  background:
    var(--grad-wash),
    var(--surface-alt);
}

.compare-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 22px;
}

.compare-col {
  background: var(--surface);

  border: 1px solid var(--border);

  border-radius: var(--radius-md);

  padding: 32px;
}

.compare-col.old {
  opacity: 0.85;
}

.compare-col.new {
  border-color: var(--accent);

  box-shadow:
    0 0 0 1px var(--accent) inset;
}

.compare-col h4 {
  font-size: 13px;

  color: var(--ink-faint);

  font-weight: 600;

  margin-bottom: 6px;
}

.compare-col h3 {
  font-size: 21px;

  margin-bottom: 20px;
}

.compare-col ul {
  list-style: none;
}

.compare-col li {
  display: flex;

  gap: 10px;

  padding: 11px 0;

  border-top: 1px solid var(--border);

  font-size: 15px;

  color: var(--ink-soft);
}

.compare-col li:first-of-type {
  border-top: none;
}

.compare-col.new li {
  color: var(--ink);
}

.mark {
  flex-shrink: 0;

  width: 18px;
  height: 18px;

  border-radius: 5px;

  display: flex;

  align-items: center;
  justify-content: center;

  font-size: 12px;

  margin-top: 1px;
}

.mark.x {
  background: #FBEAE5;
  color: #C2543A;
}

.mark.check {
  background: var(--accent-light);
  color: var(--accent-dark);
}


/* =========================================================
   PRODUCT LAYERS
   ========================================================= */

.layer-row {
  display: grid;

  grid-template-columns: 0.85fr 1.15fr;

  gap: 60px;

  align-items: center;

  padding: 56px 0;

  border-top: 1px solid var(--border);
}

.layer-row:first-of-type {
  border-top: none;
}

.layer-row.reverse {
  grid-template-columns: 1.15fr 0.85fr;
}

.layer-row.reverse .layer-visual {
  order: 2;
}

.layer-num {
  font-family: 'Inter', sans-serif;

  color: var(--accent-dark);

  font-size: 14px;

  margin-bottom: 14px;
}

.layer-icon {
  width: 44px;
  height: 44px;

  border-radius: 12px;

  background: var(--accent-light);

  display: flex;

  align-items: center;
  justify-content: center;

  margin-bottom: 16px;
}

.layer-icon svg {
  width: 22px;
  height: 22px;

  stroke: var(--accent-dark);
}

.layer-text h3 {
  font-size: 28px;

  margin-bottom: 12px;
}

.layer-text p.desc {
  color: var(--ink-soft);

  font-size: 15.5px;

  margin-bottom: 20px;
}

.layer-text ul {
  list-style: none;

  display: flex;

  flex-direction: column;

  gap: 10px;
}

.layer-text li {
  display: flex;

  gap: 10px;

  font-size: 14.5px;

  color: var(--ink);
}

.layer-visual {
  background: var(--surface);

  border: 1px solid var(--border);

  border-radius: var(--radius-md);

  padding: 20px;

  box-shadow: var(--shadow);
}


/* =========================================================
   CLARITY
   ========================================================= */

.clarity-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 20px;
}

.clarity-col {
  background: var(--surface);

  border: 1px solid var(--border);

  border-radius: var(--radius-md);

  padding: 26px;
}

.clarity-col h4 {
  font-size: 15px;

  margin-bottom: 18px;

  color: var(--ink);

  font-weight: 600;
}

.tag-row {
  display: flex;

  flex-wrap: wrap;

  gap: 8px;
}

.tag-chip {
  font-size: 12.5px;

  padding: 6px 12px;

  border-radius: 999px;

  background: var(--surface-alt);

  border: 1px solid var(--border);

  color: var(--ink-soft);
}

.mismatch-row {
  display: flex;

  justify-content: space-between;

  align-items: center;

  padding: 11px 0;

  border-top: 1px solid var(--border);

  font-size: 13.5px;

  color: var(--ink);
}

.mismatch-row:first-of-type {
  border-top: none;
}

.mismatch-row .mv {
  font-weight: 700;

  font-family: 'Inter', sans-serif;
}

.mismatch-flag-inline {
  margin-top: 10px;

  display: inline-flex;

  align-items: center;

  gap: 6px;

  background: #FBEAE5;

  color: #C2543A;

  font-size: 11.5px;

  padding: 5px 10px;

  border-radius: 999px;
}

.stat-block {
  margin-bottom: 18px;
}

.stat-block:last-child {
  margin-bottom: 0;
}

.stat-block .num {
  font-size: 24px;

  font-weight: 700;

  color: var(--accent-dark);

  font-family: 'Inter', sans-serif;
}

.stat-block .lbl {
  font-size: 12.5px;

  color: var(--ink-faint);

  margin-top: 3px;

  line-height: 1.4;
}


/* =========================================================
   NARRATIVE
   ========================================================= */

.narrative {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 56px;

  align-items: center;
}

.narrative-visual {
  background:
    var(--grad-wash),
    var(--surface-alt);

  border: 1px solid var(--border);

  border-radius: var(--radius-lg);

  padding: 28px;
}

.stat-row {
  display: flex;

  gap: 28px;

  margin-top: 26px;
}

.stat-row .stat .num {
  font-family: 'Inter', sans-serif;

  font-size: 26px;

  font-weight: 700;

  color: var(--accent-dark);
}

.stat-row .stat .lbl {
  font-size: 12.5px;

  color: var(--ink-faint);

  margin-top: 2px;
}

.pipeline {
  display: flex;

  flex-direction: column;

  gap: 10px;
}

.pipeline-step {
  display: flex;

  align-items: center;

  gap: 12px;

  background: var(--surface);

  border: 1px solid var(--border);

  border-radius: 10px;

  padding: 12px 14px;

  font-size: 13.5px;

  color: var(--ink);
}

.pipeline-step .n {
  width: 22px;
  height: 22px;

  border-radius: 50%;

  background: var(--accent);

  color: #fff;

  font-size: 11.5px;

  font-weight: 700;

  display: flex;

  align-items: center;
  justify-content: center;

  flex-shrink: 0;
}

.pipeline-arrow {
  text-align: center;

  color: var(--ink-faint);

  font-size: 13px;
}


/* =========================================================
   ONBOARDING
   ========================================================= */

.onboard-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 24px;
}

.onboard-card {
  background: var(--surface);

  border: 1px solid var(--border);

  border-radius: var(--radius-md);

  padding: 26px;
}

.onboard-card .step-icon {
  width: 40px;
  height: 40px;

  border-radius: 10px;

  background: var(--accent-light);

  display: flex;

  align-items: center;
  justify-content: center;

  margin-bottom: 16px;
}

.onboard-card .step-icon svg {
  width: 20px;
  height: 20px;

  stroke: var(--accent-dark);
}

.onboard-card h4 {
  font-size: 17px;

  margin-bottom: 8px;
}

.onboard-card p {
  font-size: 14px;

  color: var(--ink-soft);

  margin-bottom: 14px;
}

.onboard-logos {
  display: flex;

  gap: 8px;

  flex-wrap: wrap;
}

.onboard-logos img {
  height: 18px;

  opacity: 0.8;
}


/* =========================================================
   INDUSTRY
   ========================================================= */

.industry-scroll {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 18px;
}

.industry-card {
  background: var(--surface);

  border: 1px solid var(--border);

  border-radius: var(--radius-md);

  overflow: hidden;
}

.industry-screen {
  background: var(--surface-alt);

  padding: 16px;

  display: flex;

  flex-direction: column;

  gap: 8px;
}

.industry-screen .mini-bar {
  height: 8px;

  width: 40%;

  background: var(--border);

  border-radius: 4px;
}

.industry-screen .mini-row {
  display: flex;

  justify-content: space-between;

  background: var(--surface);

  border: 1px solid var(--border);

  border-radius: 8px;

  padding: 8px 10px;
}

.industry-screen .mini-row .mv {
  font-size: 13px;

  font-weight: 700;

  color: var(--ink);
}

.industry-screen .mini-row .ml {
  font-size: 10.5px;

  color: var(--ink-faint);
}

.industry-body {
  padding: 18px 18px 22px;
}

.industry-body h4 {
  font-size: 16px;

  margin-bottom: 8px;
}

.industry-body p {
  font-size: 13px;

  color: var(--ink-soft);

  line-height: 1.5;
}

.industry-icon {
  width: 34px;
  height: 34px;

  border-radius: 9px;

  background: var(--accent-light);

  display: flex;

  align-items: center;
  justify-content: center;

  margin-bottom: 12px;
}

.industry-icon svg {
  width: 18px;
  height: 18px;

  stroke: var(--accent-dark);
}


/* =========================================================
   PHONE / CHAT
   ========================================================= */

.phone-frame {
  width: 220px;

  margin: 0 auto;

  background: var(--ink);

  border-radius: 32px;

  padding: 8px;

  box-shadow:
    0 20px 40px -20px rgba(16,21,31,0.35);
}

.phone-notch {
  width: 60px;
  height: 6px;

  background: rgba(255,255,255,0.25);

  border-radius: 4px;

  margin: 0 auto 8px;
}

.phone-screen {
  background: var(--surface);

  border-radius: 24px;

  padding: 14px 12px;

  min-height: 280px;
}

.phone-header {
  display: flex;

  align-items: center;

  gap: 8px;

  margin-bottom: 12px;

  padding-bottom: 10px;

  border-bottom: 1px solid var(--border);
}

.phone-header .avatar {
  width: 26px;
  height: 26px;

  border-radius: 50%;

  background: var(--accent);

  display: flex;

  align-items: center;
  justify-content: center;

  color: #fff;

  font-size: 11px;

  font-weight: 700;
}

.phone-header .who {
  font-size: 12.5px;

  font-weight: 600;

  color: var(--ink);
}

.phone-header .status {
  font-size: 10px;

  color: var(--accent-dark);
}

.wa-bubble {
  background: var(--surface-alt);

  border-radius: 10px;

  border-top-left-radius: 2px;

  padding: 9px 11px;

  font-size: 11.5px;

  color: var(--ink);

  margin-bottom: 8px;

  max-width: 92%;
}

.wa-bubble .wline {
  display: flex;

  justify-content: space-between;

  padding: 3px 0;
}

.wa-bubble .wname {
  color: var(--ink-faint);
}

.wa-bubble .wval {
  font-weight: 600;
}


/* =========================================================
   STAGE TABS
   ========================================================= */

.stage-tabs {
  display: flex;

  justify-content: center;

  gap: 10px;

  margin-bottom: 40px;

  flex-wrap: wrap;
}

.stage-tab {
  padding: 10px 20px;

  border-radius: 999px;

  border: 1px solid var(--border);

  background: var(--surface);

  font-size: 14px;

  font-weight: 600;

  color: var(--ink-soft);

  cursor: pointer;
}

.stage-tab.active {
  background: var(--accent);

  color: #fff;

  border-color: var(--accent);
}

.stage-panel {
  display: none;
}

.stage-panel.active {
  display: block;
}

.stage-focus {
  text-align: center;

  max-width: 520px;

  margin: 0 auto 32px;
}

.stage-focus .tag {
  font-family: 'Inter', sans-serif;

  font-size: 12.5px;

  color: var(--accent-dark);

  margin-bottom: 8px;
}

.stage-focus p {
  color: var(--ink-soft);

  font-size: 15px;
}

.stage-cards {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 16px;
}

.stage-card {
  background: var(--surface);

  border: 1px solid var(--border);

  border-radius: var(--radius-md);

  padding: 22px;
}

.stage-card .cat {
  font-size: 12px;

  color: var(--ink-faint);

  font-weight: 600;

  margin-bottom: 10px;
}

.stage-card h4 {
  font-size: 16.5px;

  margin-bottom: 8px;
}

.stage-card p {
  font-size: 13.5px;

  color: var(--ink-soft);
}


/* =========================================================
   CONNECTIONS
   ========================================================= */

.conn-grid {
  display: grid;

  grid-template-columns: repeat(6, 1fr);

  gap: 14px;
}

.conn-tile {
  background: var(--surface);

  border: 1px solid var(--border);

  border-radius: 12px;

  padding: 22px 12px 16px;

  text-align: center;

  display: flex;

  flex-direction: column;

  align-items: center;

  gap: 10px;
}

.conn-tile img {
  height: 28px;

  width: auto;

  max-width: 80%;
}

.conn-tile span {
  font-size: 12.5px;

  color: var(--ink-soft);

  font-weight: 500;
}

.logo-fallback {
  width: 28px;
  height: 28px;

  border-radius: 8px;

  background: var(--accent-light);

  color: var(--accent-dark);

  font-weight: 700;

  font-size: 13px;

  display: flex;

  align-items: center;
  justify-content: center;
}


/* =========================================================
   PRICING
   ========================================================= */

.pricing-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 20px;
}

.price-card {
  background: var(--surface);

  border: 1px solid var(--border);

  border-radius: var(--radius-lg);

  padding: 32px 28px;

  position: relative;
}

.price-card.popular {
  border: 2px solid var(--accent);

  box-shadow:
    0 12px 30px -18px rgba(28,204,160,0.5);
}

.popular-badge {
  position: absolute;

  top: -13px;

  left: 50%;

  transform: translateX(-50%);

  background: var(--accent);

  color: #fff;

  font-size: 12px;

  font-weight: 700;

  padding: 4px 14px;

  border-radius: 999px;
}

.price-card h4 {
  font-size: 14px;

  color: var(--ink-soft);

  font-weight: 600;

  margin-bottom: 12px;
}

.price-card .amount {
  font-family: 'Inter', sans-serif;

  font-size: 36px;

  font-weight: 600;

  color: var(--ink);
}

.price-card .per {
  font-size: 14px;

  color: var(--ink-faint);

  margin-left: 4px;
}

.price-card ul {
  list-style: none;

  margin: 24px 0 28px;

  display: flex;

  flex-direction: column;

  gap: 11px;
}

.price-card li {
  font-size: 14px;

  color: var(--ink-soft);

  display: flex;

  gap: 9px;
}

.price-card .btn {
  width: 100%;
}


/* =========================================================
   FAQ
   ========================================================= */

.faq-item {
  border-top: 1px solid var(--border);

  padding: 22px 0;
}

.faq-item:last-child {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  display: flex;

  justify-content: space-between;

  align-items: center;

  cursor: pointer;

  font-size: 16.5px;

  font-weight: 600;

  gap: 20px;
}

.faq-q .plus {
  font-family: 'Inter', sans-serif;

  color: var(--accent-dark);

  font-size: 20px;

  flex-shrink: 0;

  transition: transform 0.2s;
}

.faq-item.open .plus {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;

  overflow: hidden;

  transition: max-height 0.25s ease;
}

.faq-a p {
  color: var(--ink-soft);

  font-size: 14.5px;

  padding-top: 14px;

  max-width: 760px;
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.final-cta {
  background:
    radial-gradient(
      circle at 12% 15%,
      rgba(185,166,242,0.30),
      transparent 45%
    ),
    radial-gradient(
      circle at 88% 20%,
      rgba(255,179,122,0.30),
      transparent 42%
    ),
    radial-gradient(
      circle at 50% 100%,
      rgba(28,204,160,0.10),
      transparent 50%
    ),
    var(--accent-light);

  border: 1px solid var(--accent);

  border-radius: 28px;

  margin: 0 28px;

  padding: 64px 40px;

  text-align: center;
}

.final-cta h2 {
  color: var(--ink);

  font-size: 36px;

  margin-bottom: 14px;
}

.final-cta p {
  color: var(--ink-soft);

  max-width: 480px;

  margin: 0 auto 30px;

  font-size: 15.5px;
}


/* =========================================================
   FOOTER
   ========================================================= */

footer {
  padding: 60px 0 32px;

  border-top: 1px solid var(--border);

  margin-top: 20px;
}

.foot-grid {
  display: grid;

  grid-template-columns: 1.4fr 1fr 1fr 1fr;

  gap: 32px;

  margin-bottom: 40px;
}

.foot-col h5 {
  font-size: 13px;

  color: var(--ink-faint);

  font-weight: 600;

  margin-bottom: 14px;
}

.foot-col ul {
  list-style: none;

  display: flex;

  flex-direction: column;

  gap: 10px;
}

.foot-col a {
  font-size: 14px;

  color: var(--ink-soft);
}

.foot-col a:hover {
  color: var(--ink);
}

.foot-bottom {
  display: flex;

  justify-content: space-between;

  align-items: center;

  padding-top: 24px;

  border-top: 1px solid var(--border);

  font-size: 13px;

  color: var(--ink-faint);
}


/* =========================================================
   APP DOWNLOAD
   ========================================================= */

.app-download {
  padding: 0 0 64px;
}

.app-download-inner {
  background: var(--surface-alt);

  border: 1px solid var(--border);

  border-radius: var(--radius-lg);

  padding: 44px 40px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 32px;

  flex-wrap: wrap;
}

.app-download-text h3 {
  font-size: 24px;

  margin-bottom: 8px;
}

.app-download-text p {
  font-size: 14.5px;

  color: var(--ink-soft);

  max-width: 420px;
}

.store-badges {
  display: flex;

  gap: 14px;

  flex-wrap: wrap;
}

.store-badge {
  display: flex;

  align-items: center;

  gap: 10px;

  background: var(--ink);

  color: #fff;

  border-radius: 12px;

  padding: 10px 20px;

  min-width: 170px;
}

.store-badge .sb-small {
  font-size: 10px;

  color: rgba(255,255,255,0.7);
}

.store-badge .sb-text {
  display: flex;

  flex-direction: column;

  line-height: 1.25;
}


/* =========================================================
   TABLE / LEGAL
   ========================================================= */

table {
  max-width: 100%;
}

.legal-table {
  display: block;

  max-width: 100%;

  overflow-x: auto;

  -webkit-overflow-scrolling: touch;

  white-space: nowrap;
}

.legal-table th,
.legal-table td {
  white-space: normal;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

/* ---------- 1024px ---------- */

@media (max-width: 1024px) {

  .wrap {
    padding: 0 24px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .section-head h2 {
    font-size: 34px;
  }

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

  .layer-row,
  .layer-row.reverse {
    gap: 40px;
  }

  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

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

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

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


/* ---------- 900px ---------- */

@media (max-width: 900px) {

  .wrap {
    padding: 0 20px;
  }

  section {
    padding: 30px 0;
  }

  .hero {
    padding: 30px 0;
  }

  .hero h1 {
    font-size: 38px;
  }

  .layer-row,
  .layer-row.reverse {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .layer-row.reverse .layer-visual {
    order: 0;
  }

  .narrative {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .stat-row {
    flex-wrap: wrap;
    row-gap: 16px;
  }

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

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

  .app-download-inner {
    padding: 20px;
    gap: 25px;
  }

  .final-cta {
    padding: 20px !important;
  }

  /* Mobile navigation */

  .nav-toggle {
    display: flex;
  }

  nav.links {
    display: none;

    position: fixed;

    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;

    width: 100%;

    background: var(--surface);

    flex-direction: column;

    gap: 0;

    padding: 8px 20px 28px;

    overflow-y: auto;

    -webkit-overflow-scrolling: touch;

    z-index: 999;
  }

  nav.links.open {
    display: flex;
  }

  nav.links > a {
    width: 100%;

    padding: 16px 2px;

    border-bottom: 1px solid var(--border);

    font-size: 16.5px;

    color: var(--ink);
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown > span {
    width: 100%;

    padding: 16px 2px;

    border-bottom: 1px solid var(--border);

    font-size: 16.5px;

    justify-content: space-between;

    color: var(--ink);
  }

  .dropdown-menu {
    position: static;

    width: 100%;

    min-width: 0;

    padding: 2px 0 10px;

    display: none;

    background: transparent;

    opacity: 1;

    visibility: visible;

    transform: none !important;

    border: none;

    box-shadow: none;
  }

  .nav-dropdown.open .dropdown-menu {
    display: block;
  }

  .nav-dropdown.open > span svg {
    transform: rotate(180deg);
  }

  .dropdown-menu a {
    padding: 12px 10px;

    font-size: 15px;
  }
}


/* ---------- 767px ---------- */

@media (max-width: 767px) {

  .wrap {
    padding: 0 16px;
  }

  section {
    padding: 42px 0;
  }

  .hero {
    padding: 30px 0;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero-meta {
    flex-direction: column;

    align-items: center;

    gap: 1px;
  }

  .section-head h2 {
    font-size: 26px;

    line-height: 1.16;
  }

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

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

  .industry-scroll {
    grid-template-columns: 1fr;
  }

  .stage-cards {
    grid-template-columns: 1fr;
  }

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

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

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

  .stat-row {
    gap: 10px;
  }
}


/* ---------- 520px ---------- */

@media (max-width: 520px) {

  .wrap {
    padding: 0 14px;
  }

  .hero h1 {
    font-size: 30px;
  }

  .hero-actions {
    flex-direction: column;

    width: 100%;
  }

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

  .compare-col {
    padding: 20px;
  }

  .stat-row {
    gap: 20px;
  }

  .pipeline-step {
    font-size: 13px;

    padding: 11px 12px;
  }

  .narrative-visual {
    padding: 18px;
  }

  .section-head h2 {
    font-size: 26px;
  }

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

  .phone-frame {
    width: 200px;
  }
}


/* ---------- 460px ---------- */

@media (max-width: 460px) {

  .nav-cta {
    gap: 10px;
  }

  .nav-cta .link-quiet {
    display: none;
  }

  .nav-cta .btn-primary {
    padding: 9px 16px;

    font-size: 13.5px;
  }

  .brand {
    font-size: 0;
  }

  .nav-row {
    gap: 8px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .section-head h2 {
    font-size: 24px;
  }

  .card-grid {
    gap: 8px;
  }

  .metric-card {
    padding: 12px 10px;
  }

  .metric-card .val {
    font-size: 17px;
  }
}


/* ---------- 400px ---------- */

@media (max-width: 400px) {

  .hero h1,
  .page-hero h1 {
    font-size: 27px;
  }

  .hero {
    padding: 25px 0;
  }

  .section-head h2 {
    font-size: 23px;
  }

  .conn-tile {
    padding: 15px 8px;
  }

  .conn-tile span {
    font-size: 11.5px;
  }
}