@import url("assets/colors_and_type.css");

/* ─── BumpLab site overrides ────────────────────────────────── */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--cm-font-sans);
  color: var(--cm-ink-900);
  background: var(--cm-paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
img { display: block; max-width: 100%; }

/* Layout shell */
.page { width: 1440px; max-width: 100%; margin: 0 auto; position: relative; }
.section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("assets/bg-dot-tile.png");
  background-size: 820px 820px;
  background-repeat: repeat;
  background-position: center top;
  opacity: .3;
  pointer-events: none;
  z-index: 0;
}
.container { max-width: 1160px; margin: 0 auto; padding: 0 32px; position: relative; }

/* Dot background */
.dotbg {
  display: none;
}
.section > .container,
.section > .container-wide { position: relative; z-index: 1; }
.container-wide { max-width: 1280px; margin: 0 auto; padding: 0 32px; position: relative; }

/* ─── Pills / chips ─────────────────────────────────────────── */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  height: 34px; padding: 0 14px;
  background: var(--cm-surface);
  border-radius: var(--cm-r-pill);
  font-family: var(--cm-font-sans); font-weight: 700; font-size: 16px;
  color: var(--cm-ink-1000); letter-spacing: -0.02em;
  white-space: nowrap;
}
.pill-lime { background: var(--cm-lime); color: var(--cm-ink-1000); }
.pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--cm-lime); display: inline-block; }
.pill-lime .dot { background: var(--cm-ink-1000); }

/* ─── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 52px; padding: 0 24px;
  border-radius: var(--cm-r-md);
  font-family: var(--cm-font-sans); font-weight: 700; font-size: 17px;
  letter-spacing: -0.03em;
  cursor: pointer; border: 0; outline: 0; text-decoration: none;
  transition: transform .15s ease, box-shadow .25s ease, background-color .2s ease, filter .2s ease;
  user-select: none;
}
.btn:active { transform: scale(.97); }
.btn-primary { background: var(--cm-lime); color: var(--cm-ink-500); }
.btn-primary:hover { background: var(--cm-lime-yellow); box-shadow: var(--cm-shadow-cta); }
.btn-secondary { background: var(--cm-surface); color: var(--cm-ink-500); }
.btn-secondary:hover { background: var(--cm-line); }
.btn-dark { height: 44px; padding: 0 20px; border-radius: 20px; background: var(--cm-ink-600); color: #fff; font-size: 15px; letter-spacing: -0.02em; }
.btn-dark:hover { background: #1a1a1a; }
.btn .ico { width: 18px; height: 18px; }
.btn .ico-lg { width: 20px; height: 20px; }

/* ─── Top Nav ──────────────────────────────────────────────── */
.nav {
  position: relative; z-index: 5;
  display: flex; align-items: center; justify-content: space-between;
  padding: 4px 26px 14px;
  max-width: 1372px; margin: 0 auto;
}
.nav::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 4px 18px 14px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(52,73,85,.08);
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(52,73,85,.08), 0 2px 8px rgba(52,73,85,.05);
  backdrop-filter: blur(10px);
}
.nav > * { position: relative; z-index: 1; }
.nav-actions {
  position: static;
  display: flex; align-items: center; justify-content: flex-end; gap: 26px;
  flex: 0 0 auto;
  min-height: 54px;
  padding: 7px 7px 7px 16px;
  margin-left: auto;
}
.nav-actions .btn-dark { position: relative; z-index: 1; }
.nav-links {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 4px;
  height: calc(100% - 18px);
  transform: translateX(-50%);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.nav-link {
  padding: 10px 18px; border-radius: var(--cm-r-pill);
  font-weight: 700; font-size: 15px; letter-spacing: -0.02em;
  color: var(--cm-ink-900);
  transition: background-color .15s ease;
}
.nav-link:hover { background: var(--cm-surface); }

/* Logo */
.logo-slot {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px 7px 7px;
  background: transparent;
  border: 0;
  border-radius: 20px;
  position: relative;
}
.logo-slot__mark {
  width: 44px; height: 44px; border-radius: 14px;
  display: block; flex: none; object-fit: contain;
  box-shadow: var(--cm-shadow-logo);
}
.logo-slot__word {
  font-family: var(--cm-font-display); font-weight: 900; font-size: 22px;
  letter-spacing: -0.03em; color: var(--cm-ink-900);
}
.logo-slot--footer { background: transparent; }
.logo-slot--footer .logo-slot__word { color: #fff; }

/* ─── Hero ─────────────────────────────────────────────────── */
.hero {
  padding: 18px 0 96px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.hero h1 {
  font-family: var(--cm-font-display);
  font-weight: 900;
  font-size: clamp(48px, 5.4vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: var(--cm-ink-900);
  margin: 24px 0 24px;
}
.hero h1 .hl {
  background: linear-gradient(180deg, transparent 55%, var(--cm-lime) 55%);
  padding: 0 4px;
}
.hero p.lead {
  font-size: 19px; line-height: 1.55; letter-spacing: -0.015em;
  color: var(--cm-ink-900); opacity: .65; max-width: 520px; margin: 0 0 32px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-trust {
  display: flex; align-items: center; gap: 12px;
  margin-top: 36px;
  font-size: 14px; color: var(--cm-ink-900); opacity: .5; line-height: 1.5;
  letter-spacing: -0.01em; max-width: 520px;
}
.hero-trust .pulse { width: 8px; height: 8px; background: var(--cm-lime-shadow); border-radius: 50%; flex: none; box-shadow: 0 0 0 4px rgba(135,255,0,.25); }

/* Hero visual — fake X composer / activity stack */
.hero-visual { position: relative; height: 540px; }
.tweet-card {
  position: absolute;
  background: var(--cm-paper);
  border: 1px solid var(--cm-line);
  border-radius: 22px;
  box-shadow: 0 12px 28px rgba(52,73,85,.10), 0 2px 4px rgba(52,73,85,.06);
  padding: 18px 20px;
  width: 340px;
  font-size: 14px;
}
.tweet-card .row { display: flex; align-items: center; gap: 10px; }
.tweet-card .avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--cm-lime); flex: none; display: flex; align-items: center; justify-content: center; font-weight: 900; color: var(--cm-ink-1000); font-size: 16px; letter-spacing: -.03em; }
.tweet-card img.avatar-logo { display: block; object-fit: contain; border-radius: 11px; background: transparent; box-shadow: var(--cm-shadow-logo); }
.tweet-card .name { font-weight: 700; font-size: 14px; letter-spacing: -.02em; }
.tweet-card .handle { color: var(--cm-ink-900); opacity: .45; font-size: 13px; }
.tweet-card .body { margin: 10px 0 14px; line-height: 1.45; letter-spacing: -.01em; color: var(--cm-ink-900); }
.tweet-card .body b { font-weight: 800; }
.tweet-card .body .tag { color: #1d9bf0; font-weight: 600; }
.tweet-card .meta { display: flex; gap: 18px; font-size: 13px; color: var(--cm-ink-900); opacity: .45; }
.tweet-card .meta span { display: inline-flex; align-items: center; gap: 6px; }
.tweet-card .meta b { font-weight: 700; opacity: 1; color: var(--cm-ink-900); }

.tweet-1 { top: 0; left: 28px; transform: rotate(-4deg); z-index: 2; }
.tweet-2 { top: 110px; right: 0; transform: rotate(3deg); z-index: 3; width: 320px; }
.tweet-3 { bottom: 60px; left: 0; transform: rotate(-2deg); z-index: 2; width: 320px; }
.tweet-4 { bottom: 0; right: 18px; transform: rotate(2deg); z-index: 1; width: 300px; }
.tweet-4 .body { font-size: 13px; }

.signal-badge {
  position: absolute;
  background: var(--cm-lime);
  border-radius: var(--cm-r-pill);
  padding: 6px 12px 6px 8px;
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 800; font-size: 13px; letter-spacing: -.02em;
  color: var(--cm-ink-1000);
  box-shadow: var(--cm-shadow-cta);
}
.signal-badge.trending { top: 86px; right: -10px; transform: rotate(8deg); z-index: 5; }
.signal-badge.replies  { top: 280px; left: -22px; transform: rotate(-6deg); z-index: 5; }

.sticky-note {
  display: inline-block;
  background: var(--cm-lime-soft);
  font-family: var(--cm-font-sticker); font-size: 18px; color: var(--cm-ink-700);
  text-align: center; line-height: 1.35;
  padding: 18px 16px;
  box-shadow: 0 10px 14px rgba(52,52,52,.12);
  font-weight: 600;
}
.sticky-hero {
  position: absolute; top: -28px; right: 60px;
  width: 150px; transform: rotate(-7deg);
  z-index: 6;
}

/* ─── Section header ───────────────────────────────────────── */
.section-head { text-align: center; margin: 0 auto 56px; max-width: 760px; }
.section-head h2 {
  font-family: var(--cm-font-display);
  font-weight: 900;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--cm-ink-900);
  margin: 18px 0 18px;
}
.section-head p {
  font-size: 18px; line-height: 1.55; letter-spacing: -0.015em;
  color: var(--cm-ink-900); opacity: .6; margin: 0 auto;
}
.section-head.left { text-align: left; margin-left: 0; }

/* ─── Why X-First (3 points) ───────────────────────────────── */
.why { padding: 80px 0; background: var(--cm-paper); }
.why-paragraph {
  max-width: 880px; margin: 0 auto 56px;
  text-align: center;
  font-size: 22px; line-height: 1.5; letter-spacing: -0.018em;
  color: var(--cm-ink-900);
}
.why-paragraph b { background: var(--cm-lime); padding: 0 6px; border-radius: 6px; font-weight: 700; }
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.why-card {
  background: var(--cm-paper);
  border: 1.5px solid var(--cm-line);
  border-radius: var(--cm-r-xl);
  padding: 28px 28px 32px;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.why-card:hover { transform: translateY(-3px); box-shadow: var(--cm-shadow-card); }
.why-card .num {
  font-family: var(--cm-font-display); font-weight: 900;
  font-size: 36px; line-height: 1; letter-spacing: -.04em;
  color: var(--cm-ink-900); opacity: .15;
  margin-bottom: 24px;
}
.why-card .text {
  font-size: 17px; line-height: 1.45; letter-spacing: -.018em;
  color: var(--cm-ink-900); font-weight: 500;
}
.why-card .check {
  position: absolute; top: 28px; right: 28px;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--cm-lime); display: flex; align-items: center; justify-content: center;
}
.why-card .check svg { width: 14px; height: 14px; }

/* ─── About ────────────────────────────────────────────────── */
.about { padding: 100px 0 80px; background: var(--cm-paper); position: relative; }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px;
  align-items: start;
}
.about-left .h2 { margin-bottom: 24px; }
.about-title {
  text-align: left;
  margin: 18px 0 24px;
  font-family: var(--cm-font-display);
  font-weight: 900;
  font-size: 48px;
  line-height: 1.06;
  letter-spacing: -0.03em;
}
.about-left p {
  font-size: 20px; line-height: 1.5; letter-spacing: -0.018em;
  color: var(--cm-ink-900); opacity: .75; margin: 0;
}
.about-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  margin-top: 40px;
}
.about-stat {
  background: var(--cm-paper);
  border-radius: var(--cm-r-xl);
  border: 1px solid var(--cm-line);
  padding: 20px 22px;
  box-shadow: var(--cm-shadow-card);
}
.about-stat .num { font-family: var(--cm-font-display); font-weight: 900; font-size: 40px; line-height: 1; letter-spacing: -.04em; color: var(--cm-ink-400); }
.about-stat .lbl { font-size: 13px; font-weight: 600; line-height: 1.35; color: var(--cm-ink-900); opacity: .55; margin-top: 8px; letter-spacing: -.01em; }

.principles { display: flex; flex-direction: column; gap: 14px; }
.principle {
  display: grid; grid-template-columns: 36px 1fr; gap: 16px;
  align-items: flex-start;
  background: var(--cm-paper);
  border: 1px solid var(--cm-line);
  border-radius: 18px;
  padding: 18px 22px;
}
.principle .num {
  width: 36px; height: 36px; border-radius: 12px;
  background: var(--cm-lime);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--cm-font-display); font-weight: 900;
  font-size: 16px; letter-spacing: -.02em;
  color: var(--cm-ink-1000);
}
.principle .text { font-size: 16px; line-height: 1.45; letter-spacing: -.015em; color: var(--cm-ink-900); font-weight: 500; padding-top: 5px; }

.about-sticky { position: absolute; top: 60px; right: 32px; transform: rotate(8deg); width: 160px; z-index: 2; }

/* ─── Services ─────────────────────────────────────────────── */
.services { padding: 100px 0 96px; background: var(--cm-paper); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
}
/* 5 cards: first row 3, second row 2 (centered, each spans 2/3 cols) */
.svc { grid-column: span 2; }
.svc:nth-child(4) { grid-column: 2 / span 2; }
.svc:nth-child(5) { grid-column: 4 / span 2; }

.svc {
  position: relative;
  background: var(--cm-paper);
  border: 1.5px solid var(--cm-line);
  border-radius: var(--cm-r-xl);
  padding: 28px;
  display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  min-height: 360px;
  overflow: hidden;
}
.svc:hover { transform: translateY(-3px); box-shadow: 0 16px 30px rgba(52,73,85,.10); border-color: var(--cm-ink-900); }
.svc-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
.svc-icon {
  width: 76px; height: 76px;
  display: flex; align-items: center; justify-content: center;
  background: var(--cm-surface);
  border-radius: 18px;
  flex: none;
}
.svc-icon img { width: 60px; height: 60px; object-fit: contain; mix-blend-mode: darken; }
.svc-tag {
  font-family: var(--cm-font-sans); font-weight: 800; font-size: 12px;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--cm-ink-900); opacity: .35;
  background: var(--cm-surface);
  padding: 6px 10px; border-radius: 999px;
  white-space: nowrap;
}
.svc h3 {
  margin: 18px 0 10px;
  font-family: var(--cm-font-display); font-weight: 900;
  font-size: 24px; line-height: 1.1; letter-spacing: -.025em;
  color: var(--cm-ink-900);
}
.svc p {
  margin: 0 0 18px;
  font-size: 15px; line-height: 1.5; letter-spacing: -.015em;
  color: var(--cm-ink-900); opacity: .6;
}
.svc ul { list-style: none; padding: 0; margin: auto 0 0; display: flex; flex-direction: column; gap: 8px; }
.svc li {
  display: grid; grid-template-columns: 18px 1fr; gap: 10px;
  font-size: 14px; line-height: 1.4; letter-spacing: -.012em;
  color: var(--cm-ink-900); font-weight: 600;
}
.svc li::before {
  content: "";
  width: 14px; height: 14px;
  margin-top: 4px;
  border-radius: 4px;
  background: var(--cm-lime);
  display: block;
  box-shadow: inset 0 0 0 3px var(--cm-paper), inset 0 0 0 4px var(--cm-lime);
}

/* ─── How We Work ──────────────────────────────────────────── */
.how { padding: 100px 0 110px; background: var(--cm-paper); position: relative; }
.how-rail {
  position: relative;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
  margin-top: 56px;
}
.how-rail::before {
  content: ""; position: absolute;
  top: 28px; left: 7%; right: 7%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--cm-ink-900) 0 6px, transparent 6px 12px);
  opacity: .25; z-index: 0;
}
.step {
  position: relative;
  background: var(--cm-paper);
  border: 1px solid var(--cm-line);
  border-radius: var(--cm-r-lg);
  padding: 28px 24px 26px;
  box-shadow: var(--cm-shadow-card);
  z-index: 1;
}
.step .marker {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--cm-lime);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--cm-font-display); font-weight: 900;
  font-size: 22px; letter-spacing: -.04em;
  color: var(--cm-ink-1000);
  margin-bottom: 22px;
  box-shadow: 0 0 0 6px var(--cm-paper), 0 0 0 7px var(--cm-line);
}
.step h4 {
  margin: 0 0 10px;
  font-family: var(--cm-font-display); font-weight: 900;
  font-size: 22px; letter-spacing: -.025em;
  color: var(--cm-ink-900);
}
.step p { margin: 0; font-size: 15px; line-height: 1.5; letter-spacing: -.015em; color: var(--cm-ink-900); opacity: .6; }

/* ─── CTA / Form ───────────────────────────────────────────── */
.cta { padding: 100px 0 110px; background: var(--cm-paper); position: relative; }
.cta-wrap {
  display: grid; grid-template-columns: 1.1fr 1.4fr; gap: 56px;
  background: var(--cm-ink-900);
  border-radius: var(--cm-r-xl);
  padding: 56px 56px 56px;
  position: relative;
  overflow: hidden;
}
.cta-wrap::before {
  content: ""; position: absolute; inset: 0;
  background-image: url("assets/bg-dot-tile.png");
  background-size: 820px 820px; opacity: .06; pointer-events: none;
}
.cta-left { position: relative; z-index: 2; }
.cta-left .pill { background: rgba(255,255,255,.08); color: #fff; }
.cta-left .pill .dot { background: var(--cm-lime); }
.cta-left h2 {
  font-family: var(--cm-font-display); font-weight: 900;
  font-size: 44px; line-height: 1.06; letter-spacing: -.03em;
  color: #fff; margin: 18px 0 18px;
}
.cta-left p {
  font-size: 17px; line-height: 1.55; letter-spacing: -.015em;
  color: rgba(255,255,255,.65); margin: 0 0 28px;
}
.cta-bullets { display: flex; flex-direction: column; gap: 12px; }
.cta-bullet {
  display: flex; align-items: center; gap: 12px;
  color: rgba(255,255,255,.85); font-size: 15px; font-weight: 600;
  letter-spacing: -.015em;
}
.cta-bullet .tick {
  width: 24px; height: 24px; border-radius: 8px;
  background: var(--cm-lime);
  display: flex; align-items: center; justify-content: center;
  flex: none;
}

.form-card {
  position: relative; z-index: 2;
  background: var(--cm-paper);
  border-radius: var(--cm-r-lg);
  padding: 32px;
  box-shadow: 0 24px 60px rgba(0,0,0,.25);
}
.form-card h3 {
  margin: 0 0 22px;
  font-family: var(--cm-font-display); font-weight: 900;
  font-size: 22px; letter-spacing: -.025em;
}
.form-card button[disabled] { opacity: .65; cursor: wait; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.field label {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; color: var(--cm-ink-900); opacity: .55;
}
.field input, .field textarea, .field select {
  font-family: inherit;
  width: 100%;
  padding: 12px 14px;
  font-size: 15px; letter-spacing: -.01em;
  color: var(--cm-ink-900);
  background: var(--cm-paper);
  border: 1.5px solid var(--cm-line);
  border-radius: 12px;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
  resize: none;
}
.field textarea { min-height: 84px; line-height: 1.45; }
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--cm-ink-900);
  box-shadow: 0 0 0 4px rgba(135,255,0,.25);
}
.form-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; gap: 16px; }
.form-foot .small { font-size: 12px; color: var(--cm-ink-900); opacity: .5; line-height: 1.4; }

/* ─── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--cm-ink-900);
  color: #fff;
  border-radius: var(--cm-r-top) var(--cm-r-top) 0 0;
  margin-top: -1px;
  padding: 72px 0 32px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: ""; position: absolute; inset: 0;
  background-image: url("assets/bg-dot-tile.png");
  background-size: 820px 820px; opacity: .05; pointer-events: none;
}
.footer .container { position: relative; z-index: 1; }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px;
  margin-bottom: 48px;
}
.footer-brand p {
  margin: 24px 0 22px;
  font-size: 15px; line-height: 1.55; color: rgba(255,255,255,.6);
  letter-spacing: -.01em; max-width: 320px;
}
.footer-col h5 {
  margin: 8px 0 18px;
  font-size: 12px; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.45);
}
.footer-col a, .footer-col span {
  display: block; padding: 6px 0; color: rgba(255,255,255,.85);
  font-size: 15px; letter-spacing: -.015em;
}
.footer-col a:hover { color: var(--cm-lime); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 13px; color: rgba(255,255,255,.4);
}
.footer-bottom .tags { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-cta-row { display: flex; gap: 10px; margin-top: 8px; }
.footer-cta-row .btn-secondary { background: rgba(255,255,255,.08); color: #fff; }
.footer-cta-row .btn-secondary .ico { filter: brightness(0) invert(1); }
.footer-cta-row .btn-secondary:hover { background: rgba(255,255,255,.16); }

/* ─── Privacy page ─────────────────────────────────────────── */
.legal-page .hero {
  min-height: auto;
  padding: 18px 0 80px;
}
.legal-wrap {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 20px auto 0;
  padding: 56px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(52,73,85,.08);
  border-radius: 32px;
  box-shadow: 0 20px 46px rgba(52,73,85,.08), 0 3px 12px rgba(52,73,85,.05);
}
.legal-eyebrow {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 14px;
  margin-bottom: 22px;
  background: var(--cm-surface);
  border-radius: var(--cm-r-pill);
  color: var(--cm-ink-900);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -.01em;
}
.legal-wrap h1 {
  margin: 0 0 16px;
  max-width: 760px;
  font-family: var(--cm-font-display);
  font-size: clamp(42px, 7vw, 72px);
  line-height: .98;
  letter-spacing: -.045em;
  color: var(--cm-ink-900);
}
.legal-intro {
  margin: 0 0 36px;
  max-width: 760px;
  color: rgba(22,22,24,.66);
  font-size: 18px;
  line-height: 1.58;
  letter-spacing: -.015em;
}
.legal-section {
  padding: 28px 0;
  border-top: 1px solid var(--cm-line);
}
.legal-section h2 {
  margin: 0 0 14px;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -.025em;
  color: var(--cm-ink-900);
}
.legal-section p,
.legal-section li {
  color: rgba(22,22,24,.7);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: -.01em;
}
.legal-section p { margin: 0; }
.legal-section ul {
  margin: 0;
  padding-left: 20px;
}
.legal-section a {
  color: var(--cm-ink-900);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 4px;
}

/* --- SEO content template ------------------------------------- */
.articles-page .hero,
.seo-page .hero {
  min-height: auto;
  padding: 18px 0 72px;
}
.articles-hero,
.seo-hero {
  position: relative;
  z-index: 1;
  max-width: 1060px;
  margin: 20px auto 0;
  padding: 54px 56px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(52,73,85,.08);
  border-radius: 32px;
  box-shadow: 0 20px 46px rgba(52,73,85,.08), 0 3px 12px rgba(52,73,85,.05);
}
.articles-hero h1 {
  margin: 0 0 18px;
  max-width: 860px;
  font-family: var(--cm-font-display);
  font-size: clamp(42px, 6vw, 72px);
  line-height: .99;
  letter-spacing: -.045em;
  color: var(--cm-ink-900);
}
.articles-content {
  padding: 76px 0 96px;
  background: var(--cm-paper);
}
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.article-card,
.article-empty {
  padding: 28px;
  background: var(--cm-surface);
  border: 1px solid var(--cm-line);
  border-radius: 24px;
}
.article-empty {
  grid-column: 1 / -1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.article-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(22,22,24,.54);
  font-size: 13px;
  font-weight: 750;
}
.article-card h2,
.article-empty h2 {
  margin: 0 0 12px;
  color: var(--cm-ink-900);
  font-family: var(--cm-font-display);
  font-size: 28px;
  line-height: 1.08;
  letter-spacing: -.035em;
}
.article-card p,
.article-empty p {
  margin: 0 0 22px;
  color: rgba(22,22,24,.66);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -.01em;
}
.article-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cm-ink-900);
  font-size: 15px;
  font-weight: 850;
}
.home-latest {
  padding: 76px 0 92px;
  background: var(--cm-paper);
}
.home-latest__foot {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}
.articles-grid--compact {
  max-width: 1120px;
  margin: 0 auto;
}
.articles-hub {
  margin-top: 32px;
}
.articles-hub .seo-eyebrow {
  margin-bottom: 14px;
}
.articles-hub__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.articles-hub__links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  background: var(--cm-surface);
  border: 1px solid var(--cm-line);
  border-radius: var(--cm-r-pill);
  color: var(--cm-ink-900);
  font-size: 14px;
  font-weight: 800;
}
.articles-hub__links span {
  color: rgba(22,22,24,.48);
  font-size: 12px;
}
.articles-clusters {
  display: grid;
  gap: 54px;
}
.article-cluster {
  scroll-margin-top: 24px;
}
.article-cluster__head {
  margin-bottom: 20px;
}
.article-cluster__head h2 {
  margin: 0;
  font-family: var(--cm-font-display);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.06;
  letter-spacing: -.035em;
  color: var(--cm-ink-900);
}
.seo-related {
  margin-top: 40px;
  padding-top: 38px;
  border-top: 1px solid var(--cm-line);
}
.seo-related__head {
  margin-bottom: 20px;
}
.seo-related__head h2 {
  margin: 0;
  font-family: var(--cm-font-display);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.06;
  letter-spacing: -.035em;
  color: var(--cm-ink-900);
}
.seo-related__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.seo-related .article-card {
  padding: 22px;
  border-radius: 22px;
}
.seo-related .article-card h2 {
  font-size: 22px;
}
.seo-related .article-card p {
  font-size: 15px;
}
.seo-eyebrow {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 14px;
  margin-bottom: 22px;
  background: var(--cm-surface);
  border-radius: var(--cm-r-pill);
  color: var(--cm-ink-900);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -.01em;
}
.seo-hero h1 {
  margin: 0 0 18px;
  max-width: 850px;
  font-family: var(--cm-font-display);
  font-size: clamp(42px, 6.2vw, 76px);
  line-height: .98;
  letter-spacing: -.045em;
  color: var(--cm-ink-900);
}
.seo-lead {
  margin: 0 0 28px;
  max-width: 780px;
  color: rgba(22,22,24,.66);
  font-size: 19px;
  line-height: 1.58;
  letter-spacing: -.015em;
}
.seo-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.seo-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  background: var(--cm-surface);
  border-radius: var(--cm-r-pill);
  color: rgba(22,22,24,.62);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: -.01em;
}
.seo-content {
  padding: 76px 0 96px;
  background: var(--cm-paper);
}
.seo-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 44px;
  align-items: start;
}
.seo-article {
  min-width: 0;
}
.seo-block {
  padding: 34px 0;
  border-top: 1px solid var(--cm-line);
}
.seo-block:first-child {
  padding-top: 0;
  border-top: 0;
}
.seo-block h2 {
  margin: 0 0 16px;
  max-width: 760px;
  font-family: var(--cm-font-display);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.06;
  letter-spacing: -.035em;
  color: var(--cm-ink-900);
}
.seo-block h3 {
  margin: 26px 0 10px;
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -.025em;
  color: var(--cm-ink-900);
}
.seo-block p,
.seo-block li {
  color: rgba(22,22,24,.70);
  font-size: 17px;
  line-height: 1.72;
  letter-spacing: -.012em;
}
.seo-block p { margin: 0 0 16px; }
.seo-block ul,
.seo-block ol {
  margin: 16px 0 0;
  padding-left: 22px;
}
.seo-highlight {
  margin: 24px 0;
  padding: 22px 24px;
  background: var(--cm-surface);
  border: 1px solid var(--cm-line);
  border-radius: 22px;
}
.seo-highlight p {
  margin: 0;
  color: var(--cm-ink-900);
  font-weight: 750;
}
.seo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}
.seo-grid--playbook {
  grid-template-columns: 1fr;
}
.seo-card {
  padding: 22px;
  background: var(--cm-surface);
  border: 1px solid var(--cm-line);
  border-radius: 22px;
}
.seo-card h3 {
  margin-top: 0;
  font-size: 19px;
}
.seo-card p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.58;
}
.seo-block--long {
  padding-bottom: 46px;
}
.seo-fact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.seo-fact-strip span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 14px;
  background: var(--cm-lime);
  border-radius: var(--cm-r-pill);
  color: var(--cm-ink-900);
  font-size: 14px;
  font-weight: 850;
}
.seo-longread-stack {
  max-width: 840px;
  margin-top: 24px;
}
.seo-longread-stack h3 {
  padding-top: 24px;
  border-top: 1px solid var(--cm-line);
}
.seo-step-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}
.seo-step {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  padding: 18px;
  background: var(--cm-surface);
  border: 1px solid var(--cm-line);
  border-radius: 20px;
}
.seo-step span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  background: var(--cm-ink-900);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}
.seo-step p {
  margin: 0;
}
.seo-checklist {
  display: grid;
  gap: 10px;
  padding-left: 0 !important;
  list-style: none;
}
.seo-checklist li {
  position: relative;
  padding: 16px 18px 16px 52px;
  background: var(--cm-surface);
  border: 1px solid var(--cm-line);
  border-radius: 18px;
}
.seo-checklist li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 22px;
  width: 16px;
  height: 16px;
  border-radius: 5px;
  background: var(--cm-lime);
  box-shadow: inset 0 0 0 4px rgba(22,22,24,.08);
}
.seo-checklist--large li {
  font-weight: 760;
  color: var(--cm-ink-900);
}
.seo-faq details {
  padding: 18px 0;
  border-top: 1px solid var(--cm-line);
}
.seo-faq details:first-child { border-top: 0; }
.seo-faq summary {
  cursor: pointer;
  color: var(--cm-ink-900);
  font-size: 18px;
  font-weight: 850;
  letter-spacing: -.02em;
}
.seo-sidebar {
  position: sticky;
  top: 24px;
  display: grid;
  gap: 16px;
}
.seo-sidebar-card {
  padding: 22px;
  background: var(--cm-ink-900);
  color: #fff;
  border-radius: 24px;
  box-shadow: 0 16px 34px rgba(52,73,85,.10);
}
.seo-sidebar-card h2,
.seo-sidebar-card h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 22px;
  line-height: 1.12;
  letter-spacing: -.025em;
}
.seo-sidebar-card p {
  margin: 0 0 18px;
  color: rgba(255,255,255,.68);
  font-size: 14px;
  line-height: 1.55;
}
.seo-toc {
  padding: 22px;
  background: var(--cm-surface);
  border: 1px solid var(--cm-line);
  border-radius: 24px;
}
.seo-topic-links {
  padding: 22px;
  background: #fff;
  border: 1px solid var(--cm-line);
  border-radius: 24px;
  box-shadow: 0 12px 28px rgba(52,73,85,.06);
}
.seo-toc h2 {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .10em;
  color: rgba(22,22,24,.46);
}
.seo-topic-links h2 {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .10em;
  color: rgba(22,22,24,.46);
}
.seo-toc a {
  display: block;
  padding: 8px 0;
  color: rgba(22,22,24,.74);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -.01em;
}
.seo-topic-links a {
  display: block;
  padding: 10px 0;
  border-top: 1px solid rgba(52,73,85,.10);
  color: rgba(22,22,24,.78);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.35;
  letter-spacing: -.01em;
}
.seo-topic-links a:first-of-type {
  border-top: 0;
}
.seo-toc a:hover { color: var(--cm-ink-900); }
.seo-topic-links a:hover { color: var(--cm-ink-900); }
.seo-final-cta {
  margin-top: 32px;
  padding: 34px;
  background: var(--cm-lime);
  border-radius: 28px;
}
.seo-final-cta h2 {
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 44px);
}
.seo-final-cta p {
  max-width: 720px;
  color: rgba(9,9,9,.72);
}
.seo-final-cta .btn {
  margin-top: 8px;
  background: var(--cm-ink-900);
  color: #fff;
}

/* ─── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
  html, body { overflow-x: hidden; }
  .page { width: 100%; }
  .container,
  .container-wide { padding: 0 20px; }

  .nav {
    padding: 12px 20px;
    justify-content: flex-start;
  }
  .nav::before { display: none; }
  .nav-actions { display: none; }
  .nav .logo-slot { background: var(--cm-paper); }
  .logo-slot { padding: 6px 10px 6px 6px; }
  .logo-slot__mark { width: 40px; height: 40px; border-radius: 11px; }
  .logo-slot__word { font-size: 20px; }

  .hero { padding: 18px 0 58px; }
  .hero-grid { display: block; }
  .hero-visual { display: none; }
  .hero h1 {
    font-size: clamp(42px, 13vw, 58px);
    line-height: 1.02;
    margin: 22px 0 18px;
    max-width: 10ch;
  }
  .hero p.lead {
    font-size: 17px;
    line-height: 1.5;
    max-width: none;
    margin-bottom: 24px;
  }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }
  .hero-trust {
    align-items: flex-start;
    margin-top: 28px;
    max-width: none;
  }

  .section-head {
    text-align: left;
    margin: 0 0 32px;
    max-width: none;
  }
  .section-head h2 { font-size: clamp(32px, 10vw, 42px); }
  .section-head p { font-size: 16px; }
  .why,
  .about,
  .services,
  .how,
  .cta,
  .home-latest { padding: 56px 0; }

  .why-paragraph {
    text-align: left;
    font-size: 18px;
    margin: 0 0 28px;
  }
  .why-grid,
  .about-grid,
  .how-rail { grid-template-columns: 1fr; gap: 16px; }
  .why-card,
  .svc,
  .step { border-radius: 20px; }

  .about-grid { gap: 32px; }
  .about-title { font-size: 36px; }
  .about-left p { font-size: 17px; }
  .about-stats {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }
  .principle { padding: 16px 18px; }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .svc,
  .svc:nth-child(4),
  .svc:nth-child(5) { grid-column: auto; }
  .svc {
    min-height: auto;
    padding: 22px;
  }
  .svc-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
  }
  .svc-icon img { width: 46px; height: 46px; }

  .how-rail { margin-top: 28px; }
  .how-rail::before { display: none; }
  .step { padding: 22px; }

  .cta-wrap {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px 20px;
    border-radius: 24px;
  }
  .cta-left h2 { font-size: 34px; }
  .cta-left p { font-size: 16px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .form-card {
    padding: 22px;
    border-radius: 20px;
  }
  .form-foot {
    flex-direction: column;
    align-items: stretch;
  }
  .form-foot .btn { width: 100%; }

  .footer {
    border-radius: 40px 40px 0 0;
    padding: 48px 0 28px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-cta-row {
    flex-direction: column;
    align-items: stretch;
  }
  .footer-cta-row .btn { width: 100%; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .footer-bottom .tags { gap: 8px 12px; }

  .legal-page .hero { padding: 18px 0 58px; }
  .legal-wrap {
    margin-top: 12px;
    padding: 32px 22px;
    border-radius: 24px;
  }
  .legal-wrap h1 {
    font-size: clamp(40px, 12vw, 58px);
  }
  .legal-intro {
    font-size: 16px;
  }
  .legal-section {
    padding: 24px 0;
  }

  .articles-page .hero,
  .seo-page .hero { padding: 18px 0 46px; }
  .articles-hero,
  .seo-hero {
    margin-top: 12px;
    padding: 32px 22px;
    border-radius: 24px;
  }
  .articles-hero h1,
  .seo-hero h1 {
    font-size: clamp(40px, 12vw, 58px);
  }
  .seo-lead {
    font-size: 16px;
  }
  .seo-content { padding: 54px 0 62px; }
  .seo-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .seo-sidebar {
    position: static;
    order: -1;
  }
  .seo-grid {
    grid-template-columns: 1fr;
  }
  .seo-step {
    grid-template-columns: 1fr;
  }
  .articles-grid {
    grid-template-columns: 1fr;
  }
  .articles-clusters {
    gap: 38px;
  }
  .seo-related__grid {
    grid-template-columns: 1fr;
  }
  .seo-block {
    padding: 26px 0;
  }
  .seo-block p,
  .seo-block li {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .container,
  .container-wide { padding: 0 18px; }
  .nav { padding: 10px 18px; }
  .pill {
    height: 32px;
    font-size: 14px;
  }
  .btn {
    min-height: 52px;
    height: auto;
    padding: 14px 18px;
    font-size: 16px;
  }
  .hero h1 { max-width: 9ch; }
  .hero p.lead { font-size: 16px; }
  .about-title,
  .cta-left h2 { font-size: 32px; }
  .form-card { padding: 20px; }
  .field input,
  .field textarea,
  .field select { font-size: 16px; }
  .field textarea { min-height: 112px; }
  .footer-bottom .tags { display: none; }
  .legal-wrap { padding: 28px 18px; }
  .articles-hero,
  .seo-hero { padding: 28px 18px; }
  .seo-final-cta { padding: 26px 20px; }
}

/* Toast */
.toast {
  position: fixed; left: 50%; bottom: 36px; transform: translateX(-50%);
  background: var(--cm-ink-900); color: #fff;
  padding: 14px 22px; border-radius: 14px;
  font-family: var(--cm-font-sans); font-weight: 600; font-size: 14px;
  box-shadow: 0 12px 32px rgba(0,0,0,.3);
  z-index: 200;
  display: flex; align-items: center; gap: 10px;
}
.toast .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--cm-lime); }

/* Tiny utility */
.hl-ink { color: var(--cm-ink-900); }
.mt-0 { margin-top: 0; }
.center { text-align: center; }
