/* ============================================================
   WELCOME — CRM SaaS · Design Pro v2
   Stack: Syne display · Inter body · Dark-first palette
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Design Tokens ──────────────────────────────────────── */
:root {
  /* Surfaces */
  --bg:           #070809;
  --bg-2:         #0d0f13;
  --bg-3:         #12151c;
  --bg-card:      #141820;
  --bg-card-2:    #1a1f2e;
  --border:       rgba(255,255,255,0.07);
  --border-2:     rgba(255,255,255,0.12);

  /* Light sections */
  --light-bg:     #f4f6fb;
  --light-card:   #ffffff;
  --light-border: #e2e6f0;
  --ink:          #0d1017;
  --ink-2:        #4a5268;
  --ink-3:        #8e96ad;

  /* Text on dark */
  --txt:          #e8ecf4;
  --txt-2:        #6b7694;
  --txt-3:        #3a4060;

  /* Accent palette */
  --blue:         #4F7BFF;
  --blue-dim:     rgba(79,123,255,0.12);
  --blue-glow:    rgba(79,123,255,0.35);
  --cyan:         #00E5C3;
  --cyan-dim:     rgba(0,229,195,0.10);
  --violet:       #8B5CF6;
  --amber:        #F59E0B;
  --rose:         #F43F5E;
  --green:        #10B981;

  /* Gradient signature */
  --grad:         linear-gradient(135deg, var(--blue) 0%, var(--cyan) 100%);
  --grad-text:    linear-gradient(120deg, var(--blue) 30%, var(--cyan) 100%);

  /* Layout */
  --max:          1240px;
  --header-h:     66px;
  --r:            14px;
  --r-lg:         22px;
  --r-xl:         32px;

  /* Type */
  --display:      'Syne', sans-serif;
  --body:         'Inter', sans-serif;
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body.welcome-page {
  font-family: var(--body);
  font-size: 16px;
  color: var(--txt);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; }

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

/* ════════════════════════════════════════════════════════════
   HEADER
   ════════════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--header-h);
  background: rgba(7,8,9,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Brand */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand strong {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

/* Brand orb — refined */
.brand-orb {
  position: relative;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.orb-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid transparent;
  background: linear-gradient(var(--bg), var(--bg)) padding-box,
              var(--grad) border-box;
  animation: orbSpin 6s linear infinite;
}
.orb-ring::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
}
.orb-dot {
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  background: var(--grad);
  opacity: 0.9;
}
@keyframes orbSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.site-nav a {
  padding: 7px 15px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--txt-2);
  transition: color 180ms, background 180ms;
  letter-spacing: -0.01em;
}
.site-nav a:hover {
  color: var(--txt);
  background: rgba(255,255,255,0.05);
}

/* Header CTAs */
.header-cta {
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn-outline {
  padding: 8px 18px;
  border-radius: 9px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--txt-2);
  border: 1px solid var(--border-2);
  transition: color 180ms, border-color 180ms, background 180ms;
}
.btn-outline:hover {
  color: var(--txt);
  border-color: rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.04);
}
.btn-fill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  border-radius: 9px;
  font-size: 13.5px;
  font-weight: 600;
  color: #fff;
  background: var(--blue);
  transition: transform 160ms, box-shadow 160ms, background 160ms;
  box-shadow: 0 0 0 0 var(--blue-glow);
  letter-spacing: -0.01em;
}
.btn-fill:hover {
  background: #3d6aff;
  transform: translateY(-1px);
  box-shadow: 0 8px 30px var(--blue-glow);
}
.btn-fill:active { transform: translateY(0); }

.btn-lg { padding: 13px 28px; font-size: 15px; border-radius: 11px; }

.btn-line {
  display: inline-flex;
  align-items: center;
  padding: 13px 28px;
  border-radius: 11px;
  font-size: 15px;
  font-weight: 500;
  color: var(--txt-2);
  border: 1.5px solid var(--border-2);
  transition: border-color 180ms, color 180ms, background 180ms;
  letter-spacing: -0.01em;
}
.btn-line:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-dim);
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  padding: 13px 28px;
  border-radius: 11px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  border: 1.5px solid rgba(255,255,255,0.15);
  transition: color 180ms, border-color 180ms, background 180ms;
  letter-spacing: -0.01em;
}
.btn-outline-light:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.05);
}

/* ════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  background: var(--bg);
  overflow: hidden;
  padding: 110px 0 90px;
}

/* Dot-grid background — signature element */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(79,123,255,0.18) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 30%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

/* Ambient glow blobs */
.orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0;
}
.orb--1 {
  width: 600px; height: 600px;
  top: -200px; left: -100px;
  background: rgba(79,123,255,0.10);
  animation: blobDrift 22s 0s ease-in-out infinite;
  opacity: 1;
}
.orb--2 {
  width: 400px; height: 400px;
  top: -100px; right: 0;
  background: rgba(0,229,195,0.07);
  animation: blobDrift 18s 4s ease-in-out infinite;
  opacity: 1;
}
.orb--3 {
  width: 300px; height: 300px;
  bottom: -80px; left: 40%;
  background: rgba(139,92,246,0.07);
  animation: blobDrift 26s 8s ease-in-out infinite;
  opacity: 1;
}
.orb--4, .orb--5, .orb--6 { display: none; }

@keyframes blobDrift {
  0%, 100% { transform: translate(0, 0); }
  33%       { transform: translate(24px, -30px); }
  66%       { transform: translate(-16px, 18px); }
}

.hero-inner {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: center;
}

/* Pill tag */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px 5px 8px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  background: var(--bg-3);
  color: var(--cyan);
  border: 1px solid rgba(0,229,195,0.2);
  margin-bottom: 24px;
}
.pill::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  flex-shrink: 0;
}

.hero-copy h1 {
  font-family: var(--display);
  font-size: clamp(2.8rem, 5.2vw, 4.4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 26px;
}

/* Rotating word */
.hero-word {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--txt-2);
  max-width: 44ch;
  margin-bottom: 36px;
  font-weight: 400;
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.proof-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.proof-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--txt-3);
}
.proof-list li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
  box-shadow: 0 0 6px var(--cyan);
}

/* ── Dashboard mock ─────────────────────────────────────── */
.dash-mock {
  border-radius: var(--r-xl);
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  box-shadow:
    0 0 0 1px rgba(79,123,255,0.08),
    0 24px 64px rgba(0,0,0,0.5),
    0 4px 16px rgba(0,0,0,0.3);
  overflow: hidden;
  position: relative;
}
.dash-mock::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(79,123,255,0.4), transparent);
}

.dash-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 18px;
  background: var(--bg-3);
  border-bottom: 1px solid var(--border);
}
.dash-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.dash-dot:nth-child(1) { background: #FF5F57; }
.dash-dot:nth-child(2) { background: #FFBD2E; }
.dash-dot:nth-child(3) { background: #28CA41; }
.dash-label {
  margin-left: 8px;
  font-size: 11.5px;
  font-weight: 500;
  color: var(--txt-3);
  letter-spacing: 0.01em;
}

.dash-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Metric cards */
.dash-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.metric-card {
  padding: 14px;
  border-radius: 12px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 5px;
  transition: border-color 200ms;
}
.metric-card:hover { border-color: var(--border-2); }
.metric-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--txt-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.metric-value {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
}
.metric-delta {
  font-size: 10.5px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 999px;
  width: fit-content;
}
.metric-delta.up {
  background: rgba(0,229,195,0.10);
  color: var(--cyan);
}

/* Pipeline bar */
.pipeline-block { display: flex; flex-direction: column; gap: 8px; }
.pipeline-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--txt-3);
}
.pipeline-bar {
  display: flex;
  border-radius: 6px;
  overflow: hidden;
  height: 26px;
}
.pb {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 600;
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
}
.pb em { font-style: normal; }
.pb--blue   { background: var(--blue); }
.pb--indigo { background: var(--violet); }
.pb--teal   { background: #0ea5a0; }
.pb--green  { background: var(--green); }

/* Feed */
.feed-block { display: flex; flex-direction: column; gap: 8px; }
.feed { list-style: none; display: flex; flex-direction: column; }
.feed li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 11.5px;
  color: var(--txt-2);
}
.feed li:last-child { border-bottom: none; }
.feed li strong { color: var(--txt); font-weight: 600; }
.feed li time { margin-left: auto; color: var(--txt-3); font-size: 10.5px; white-space: nowrap; }
.feed-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dot--blue  { background: var(--blue); box-shadow: 0 0 6px var(--blue); }
.dot--green { background: var(--cyan); box-shadow: 0 0 6px var(--cyan); }
.dot--amber { background: var(--amber); }
.dot--teal  { background: var(--green); }

/* ════════════════════════════════════════════════════════════
   STATS ROW
   ════════════════════════════════════════════════════════════ */
.stats-row {
  display: flex;
  justify-content: center;
  gap: 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 40px 20px;
  border-right: 1px solid var(--border);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-item strong {
  font-family: var(--display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-item span {
  font-size: 13px;
  font-weight: 500;
  color: var(--txt-3);
  text-align: center;
  letter-spacing: 0.01em;
}

/* ════════════════════════════════════════════════════════════
   SECTION — LIGHT
   ════════════════════════════════════════════════════════════ */
.section-light {
  background: var(--light-bg);
  padding: 100px 0;
}
.section-sep { border-top: 1px solid var(--light-border); }

.section-tag {
  text-align: center;
  margin-bottom: 60px;
}
.section-tag.narrow {
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 60px;
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--blue-dim);
  color: var(--blue);
  border: 1px solid rgba(79,123,255,0.2);
  margin-bottom: 20px;
}
.tag-pill--light {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.15);
}

.section-tag h2 {
  font-family: var(--display);
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 16px;
}
.section-tag p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-2);
  max-width: 54ch;
  margin-inline: auto;
}

/* ════════════════════════════════════════════════════════════
   MODULES
   ════════════════════════════════════════════════════════════ */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.module-card {
  background: var(--light-card);
  border: 1px solid var(--light-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform 240ms cubic-bezier(.22,1,.36,1), box-shadow 240ms;
}
.module-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(79,123,255,0.10), 0 4px 16px rgba(0,0,0,0.07);
}

.module-accent {
  height: 72px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.module-accent--a { background: linear-gradient(135deg, rgba(79,123,255,0.08), rgba(79,123,255,0.03)); }
.module-accent--b { background: linear-gradient(135deg, rgba(139,92,246,0.08), rgba(139,92,246,0.03)); }
.module-accent--c { background: linear-gradient(135deg, rgba(0,229,195,0.07), rgba(0,229,195,0.02)); }
.module-accent--d { background: linear-gradient(135deg, rgba(245,158,11,0.08), rgba(245,158,11,0.03)); }
.module-accent--e { background: linear-gradient(135deg, rgba(16,185,129,0.08), rgba(16,185,129,0.03)); }
.module-accent--f { background: linear-gradient(135deg, rgba(244,63,94,0.08), rgba(244,63,94,0.03)); }

.module-circle {
  display: block;
  width: 40px; height: 40px;
  border-radius: 50%;
  animation: modulePulse 4s ease-in-out infinite;
}
.module-accent--a .module-circle { background: var(--blue); box-shadow: 0 0 24px rgba(79,123,255,0.4); }
.module-accent--b .module-circle { background: var(--violet); box-shadow: 0 0 24px rgba(139,92,246,0.4); }
.module-accent--c .module-circle { background: var(--cyan); box-shadow: 0 0 24px rgba(0,229,195,0.4); }
.module-accent--d .module-circle { background: var(--amber); box-shadow: 0 0 24px rgba(245,158,11,0.4); }
.module-accent--e .module-circle { background: var(--green); box-shadow: 0 0 24px rgba(16,185,129,0.4); }
.module-accent--f .module-circle { background: var(--rose); box-shadow: 0 0 24px rgba(244,63,94,0.4); }

.module-circle::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px dashed currentColor;
  opacity: 0.25;
  animation: orbSpin 12s linear infinite;
}
.module-accent--a .module-circle::before { color: var(--blue); }
.module-accent--b .module-circle::before { color: var(--violet); }
.module-accent--c .module-circle::before { color: var(--cyan); }
.module-accent--d .module-circle::before { color: var(--amber); }
.module-accent--e .module-circle::before { color: var(--green); }
.module-accent--f .module-circle::before { color: var(--rose); }

@keyframes modulePulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.1); }
}

.module-body { padding: 22px 24px 24px; }
.module-kicker {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: block;
  margin-bottom: 8px;
}
.module-body h3 {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 10px;
}
.module-body p {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--ink-2);
  margin-bottom: 16px;
}
.module-points { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.module-points li {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  padding-left: 15px;
  position: relative;
}
.module-points li::before {
  content: '';
  position: absolute;
  left: 0; top: 6px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--blue);
}

/* ════════════════════════════════════════════════════════════
   WORKFLOW
   ════════════════════════════════════════════════════════════ */
.workflow-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
}
.workflow-track::before {
  content: '';
  position: absolute;
  top: 26px;
  left: 44px;
  right: 44px;
  height: 1px;
  background: linear-gradient(90deg, var(--blue), var(--violet), var(--cyan), var(--green));
  opacity: 0.25;
  z-index: 0;
}

.wf-step {
  position: relative;
  padding: 56px 22px 28px;
  background: var(--light-card);
  border: 1px solid var(--light-border);
  border-radius: var(--r-lg);
  transition: box-shadow 240ms, transform 240ms;
  overflow: hidden;
  z-index: 1;
}
.wf-step:hover {
  box-shadow: 0 12px 40px rgba(79,123,255,0.10);
  transform: translateY(-3px);
}

.wf-num {
  position: absolute;
  top: 18px; left: 18px;
  width: 34px; height: 34px;
  border-radius: 10px;
  background: var(--blue);
  color: #fff;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.wf-step:nth-child(2) .wf-num { background: var(--violet); }
.wf-step:nth-child(3) .wf-num { background: #0ea5a0; }
.wf-step:nth-child(4) .wf-num { background: var(--green); }

.wf-content h3 {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 8px;
}
.wf-content p { font-size: 13.5px; line-height: 1.65; color: var(--ink-2); }

.wf-orbs { position: absolute; bottom: 0; right: 0; pointer-events: none; }
.wf-orb { position: absolute; border-radius: 50%; }
.wf-orb--a {
  width: 70px; height: 70px;
  bottom: -24px; right: -24px;
  background: rgba(79,123,255,0.06);
  filter: blur(12px);
  animation: blobDrift 16s ease-in-out infinite;
}
.wf-orb--b {
  width: 32px; height: 32px;
  bottom: 20px; right: 20px;
  background: rgba(139,92,246,0.08);
  filter: blur(6px);
  animation: blobDrift 11s 2s ease-in-out infinite;
}

/* ════════════════════════════════════════════════════════════
   INTEGRATIONS
   ════════════════════════════════════════════════════════════ */
.integrations-area {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.int-group {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 18px 24px;
  background: var(--light-card);
  border: 1px solid var(--light-border);
  border-radius: var(--r);
  transition: border-color 180ms, box-shadow 180ms;
}
.int-group:hover {
  border-color: rgba(79,123,255,0.25);
  box-shadow: 0 4px 20px rgba(79,123,255,0.06);
}
.int-cat {
  width: 110px;
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-3);
  padding-top: 4px;
}
.int-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.int-chip {
  padding: 5px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  background: var(--light-bg);
  border: 1px solid var(--light-border);
  transition: border-color 180ms, color 180ms, background 180ms;
}
.int-chip:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-dim);
}

/* ════════════════════════════════════════════════════════════
   PRICING
   ════════════════════════════════════════════════════════════ */
.pricing-wrap {
  background: var(--light-card);
  border: 1px solid var(--light-border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.07);
}
.pricing-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 32px;
  border-bottom: 1px solid var(--light-border);
  background: var(--light-bg);
}
.pricing-head h3 {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.pricing-allin {
  padding: 5px 16px;
  border-radius: 999px;
  background: rgba(16,185,129,0.10);
  color: var(--green);
  font-size: 12.5px;
  font-weight: 700;
  border: 1px solid rgba(16,185,129,0.2);
  letter-spacing: 0.01em;
}

.pricing-periods {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--light-border);
}
.period-card {
  padding: 26px 24px;
  border-right: 1px solid var(--light-border);
  position: relative;
  transition: background 200ms;
}
.period-card:last-child { border-right: none; }
.period-card--featured {
  background: linear-gradient(160deg, rgba(79,123,255,0.04), rgba(139,92,246,0.04));
}
.period-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.period-top strong {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.period-badge {
  padding: 2px 9px;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 700;
  background: var(--blue);
  color: #fff;
  letter-spacing: 0.02em;
}
.period-price {
  font-family: var(--display);
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 6px;
}
.period-card p { font-size: 12.5px; color: var(--ink-2); margin-bottom: 6px; }
.period-card small { font-size: 11.5px; color: var(--ink-3); line-height: 1.5; display: block; }

.pricing-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--light-border);
}
.pf-item {
  padding: 15px 22px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-2);
  border-right: 1px solid var(--light-border);
  border-bottom: 1px solid var(--light-border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pf-item:nth-child(3n) { border-right: none; }
.pf-item:nth-last-child(-n+3) { border-bottom: none; }
.pf-item::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
  box-shadow: 0 0 6px var(--cyan);
}

.pricing-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 24px 32px;
}

/* ════════════════════════════════════════════════════════════
   RELIABILITY
   ════════════════════════════════════════════════════════════ */
.reliability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.rely-card {
  padding: 32px 28px;
  background: var(--light-card);
  border: 1px solid var(--light-border);
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
  transition: box-shadow 240ms, transform 240ms;
}
.rely-card:hover {
  box-shadow: 0 12px 40px rgba(79,123,255,0.08);
  transform: translateY(-3px);
}
.rely-circle {
  position: absolute;
  top: -28px; right: -28px;
  width: 90px; height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79,123,255,0.10), transparent 70%);
  filter: blur(8px);
  animation: blobDrift 18s ease-in-out infinite;
}
.rely-card:nth-child(2) .rely-circle {
  background: radial-gradient(circle, rgba(0,229,195,0.10), transparent 70%);
}
.rely-card:nth-child(3) .rely-circle {
  background: radial-gradient(circle, rgba(245,158,11,0.10), transparent 70%);
}
.rely-card h3 {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 10px;
  position: relative;
}
.rely-card p {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--ink-2);
  position: relative;
}

/* ════════════════════════════════════════════════════════════
   CTA BAND
   ════════════════════════════════════════════════════════════ */
.cta-band {
  position: relative;
  background: var(--bg-2);
  overflow: hidden;
  padding: 110px 0;
  text-align: center;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(79,123,255,0.14) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, black, transparent);
  pointer-events: none;
}

.cta-orbs { position: absolute; inset: 0; pointer-events: none; }
.cta-orb { position: absolute; border-radius: 50%; filter: blur(90px); }
.cta-orb--1 {
  width: 500px; height: 500px;
  top: -200px; left: -100px;
  background: rgba(79,123,255,0.12);
  animation: blobDrift 22s ease-in-out infinite;
}
.cta-orb--2 {
  width: 400px; height: 400px;
  bottom: -180px; right: -80px;
  background: rgba(0,229,195,0.08);
  animation: blobDrift 18s 5s ease-in-out infinite;
}
.cta-orb--3 {
  width: 200px; height: 200px;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  background: rgba(139,92,246,0.07);
  animation: blobDrift 28s 2s ease-in-out infinite;
}

.cta-inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), 720px);
  margin-inline: auto;
}
.cta-inner h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 18px;
}
.cta-inner p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--txt-2);
  margin-bottom: 38px;
}
.cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.footer-inner {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
  padding: 68px 0 52px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 36px;
}
.brand--light strong { color: #fff; }
.footer-brand p {
  margin-top: 16px;
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--txt-2);
  max-width: 32ch;
}

.footer-nav h4,
.footer-integrations h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--txt-3);
  margin-bottom: 18px;
}
.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--txt-2);
  transition: color 180ms;
}
.footer-nav a:hover { color: #fff; }

.footer-chips { display: flex; flex-wrap: wrap; gap: 7px; }
.footer-chip {
  padding: 4px 12px;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 500;
  color: var(--txt-2);
  background: var(--bg-3);
  border: 1px solid var(--border);
  transition: color 180ms, border-color 180ms;
}
.footer-chip:hover { color: #fff; border-color: var(--border-2); }

.footer-bar {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 20px 0 28px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 12.5px;
  color: var(--txt-3);
  font-weight: 500;
}

/* ════════════════════════════════════════════════════════════
   SCROLL REVEAL
   ════════════════════════════════════════════════════════════ */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms cubic-bezier(.22,1,.36,1), transform 700ms cubic-bezier(.22,1,.36,1);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; gap: 52px; }
  .hero-copy h1 { max-width: 100%; }
  .modules-grid { grid-template-columns: repeat(2, 1fr); }
  .workflow-track { grid-template-columns: repeat(2, 1fr); }
  .workflow-track::before { display: none; }
  .footer-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .site-nav { display: none; }
  .modules-grid { grid-template-columns: 1fr; }
  .pricing-periods { grid-template-columns: repeat(2, 1fr); }
  .pricing-features { grid-template-columns: repeat(2, 1fr); }
  .reliability-grid { grid-template-columns: 1fr; }
  .dash-metrics { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .hero { padding: 72px 0 60px; }
  .hero-copy h1 { font-size: clamp(2.4rem, 11vw, 3.2rem); }
  .stats-row { flex-wrap: wrap; }
  .stat-item { flex: 1 1 48%; border-bottom: 1px solid var(--border); }
  .workflow-track { grid-template-columns: 1fr; }
  .pricing-periods,
  .pricing-features { grid-template-columns: 1fr; }
  .pf-item:nth-child(3n) { border-right: 1px solid var(--light-border); }
  .pf-item:nth-last-child(-n+3) { border-bottom: 1px solid var(--light-border); }
  .pf-item:last-child { border-bottom: none; }
  .footer-inner { grid-template-columns: 1fr; padding: 48px 0 32px; }
  .footer-bar { flex-direction: column; gap: 8px; }
  .pricing-actions { flex-direction: column; align-items: stretch; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .cta-btns { flex-direction: column; }
  .hero::before { background-size: 28px 28px; }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .orb, .cta-orb, .rely-circle, .wf-orb, .orb-ring { animation: none; }
  .module-circle { animation: none; }
}