/* ----------------------------------------------------------------------
   Cairn — design tokens
   See design_handoff_cairn_site/README.md for the source spec.
---------------------------------------------------------------------- */
:root {
  --ink: #16140f;
  --body-text: #3a3628;
  --muted: #6a6452;
  --faint: #9a937f;
  --paper: #f4f0e8;
  --card: #fbf8f1;
  --band: #efe9dd;
  --hairline-1: #ddd6c7;
  --hairline-2: #d8d2c4;
  --hairline-3: #e6dfd0;
  --teal: #0d6b61;
  --teal-light: #5fc9bd;
  --teal-lighter: #9fe0d6;
  --footer-text: #cfc9bb;
  --footer-text-dim: #8c8675;
  --warn-bg: #fbf2e6;
  --warn-border: #ecd9bc;
  --warn-text: #7a5418;
  --warn-label: #b06a1e;
  --error: #e06a4a;
  --code-str: #e0b24a;
  --auth-bg: #eef4f2;
  --auth-border: #c8e0d9;
  --auth-text: #2f5a51;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Space Grotesk", system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

::selection {
  background: var(--teal);
  color: var(--paper);
}

img,
svg {
  max-width: 100%;
}

a {
  color: inherit;
}

code {
  font-family: "JetBrains Mono", monospace;
}

.cn-mono {
  font-family: "JetBrains Mono", monospace;
}

/* Layout containers */
.cn-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

.cn-container-narrow {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 28px;
}

.cn-app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--paper);
}

.cn-main {
  flex: 1;
  position: relative;
}

/* Trail line — a quiet dashed rule down the left gutter of the main column,
   connecting sections like a route on a map. Sits in the container's own
   padding strip so it never crosses text or card content. Desktop only. */
.cn-main::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: max(14px, calc((100% - 1160px) / 2 + 14px));
  width: 0;
  border-left: 1px dashed var(--hairline-2);
  opacity: 0.7;
  pointer-events: none;
  z-index: 0;
}

@media (max-width: 900px) {
  .cn-main::before {
    display: none;
  }
}

/* ----------------------------------------------------------------------
   Header
---------------------------------------------------------------------- */
.cn-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 240, 232, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hairline-2);
}

.cn-header-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cn-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex: none;
  font: inherit;
  color: inherit;
}

.cn-logo-word {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.cn-nav-wrap {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Nav pill — no CSS transition per design handoff (avoids stuck-background
   flicker across re-renders). Active state is driven purely by the router. */
.cn-nav {
  background: transparent;
  color: #4a4636;
  border: none;
  border-radius: 7px;
  padding: 9px 13px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
}

.cn-nav:hover {
  color: var(--ink);
}

.cn-nav.cn-active {
  background: var(--ink);
  color: var(--paper);
}

.cn-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--teal);
  color: var(--paper);
  border: none;
  border-radius: 7px;
  padding: 10px 16px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12.5px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  flex: none;
  box-shadow: 0 2px 0 rgba(22, 20, 15, 0.22);
  transition: transform 120ms ease-out, box-shadow 120ms ease-out;
}

.cn-cta:hover {
  transform: translateY(1px);
  box-shadow: none;
}

/* ----------------------------------------------------------------------
   Footer
---------------------------------------------------------------------- */
.cn-footer {
  border-top: 1px solid var(--hairline-2);
  background: var(--ink);
  color: var(--footer-text);
}

.cn-footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 30px 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.cn-footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cn-footer-brand span {
  font-weight: 600;
  color: var(--paper);
}

.cn-footer-meta {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: var(--footer-text-dim);
}

/* ----------------------------------------------------------------------
   Buttons (generic)
---------------------------------------------------------------------- */
.cn-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  border-radius: 8px;
  padding: 14px 22px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  font-family: "Space Grotesk", sans-serif;
  box-shadow: 0 2px 0 rgba(22, 20, 15, 0.22);
  transition: transform 120ms ease-out, box-shadow 120ms ease-out;
}

/* Settle micro-interaction — a stone settling into place: a 1px press
   downward as the resting shadow disappears. No entrance animation. */
.cn-btn:hover {
  transform: translateY(1px);
  box-shadow: none;
}

.cn-btn-primary {
  background: var(--ink);
  color: var(--paper);
}

.cn-btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid #c4bdac;
  box-shadow: 0 2px 0 rgba(22, 20, 15, 0.1);
}

.cn-btn-teal {
  background: var(--teal);
  color: var(--paper);
  white-space: nowrap;
}

.cn-link-btn {
  background: none;
  border: none;
  font-family: "JetBrains Mono", monospace;
  font-size: 12.5px;
  color: var(--teal);
  cursor: pointer;
  font-weight: 500;
  padding: 0;
}

/* ----------------------------------------------------------------------
   Home — hero
---------------------------------------------------------------------- */
.cn-hero {
  padding: 84px 28px 64px;
  position: relative;
  overflow: hidden;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='420' height='420' viewBox='0 0 420 420'%3E%3Cg fill='none' stroke='rgba(22,20,15,0.04)' stroke-width='1.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M55,150 C40,120 55,80 105,70 C155,60 195,90 190,130 C186,168 145,190 100,182 C75,178 68,175 55,150 Z'/%3E%3Cpath d='M80,145 C70,124 82,98 118,92 C154,86 180,106 175,132 C171,156 140,170 112,164 C94,161 88,160 80,145 Z'/%3E%3Cpath d='M250,230 C232,198 258,162 302,158 C346,154 378,186 368,220 C359,252 316,270 280,262 C258,257 262,254 250,230 Z'/%3E%3Cpath d='M268,228 C255,205 273,182 305,178 C337,174 358,196 351,220 C345,242 316,254 292,249 C276,246 277,244 268,228 Z'/%3E%3Cpath d='M150,300 C138,278 152,254 182,250 C212,246 234,266 228,288 C222,308 196,320 174,315 C160,312 158,312 150,300 Z'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 420px 420px;
  background-position: center top;
}

.cn-hero-content {
  position: relative;
  z-index: 1;
}

/* Hero cairn art — an oversized, hand-set stack in quiet ink tones with one
   full-teal stone, rendered by heroCairnGlyph() in main.js. Desktop only. */
.cn-hero-art {
  display: none;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
  pointer-events: none;
}

@media (min-width: 900px) {
  .cn-hero {
    min-height: 480px;
  }

  .cn-hero-art {
    display: block;
  }
}

/* Editorial accent — sparing use of the italic serif for the one key phrase
   in the hero headline. */
.cn-accent {
  font-family: "Newsreader", serif;
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--teal);
}

.cn-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 26px;
}

/* Dimension-line rule — an engineering-style measurement line (thin rule,
   perpendicular end-ticks) used in place of plain hairlines. Colored via
   currentColor so it inherits from whichever text context it sits in. */
.cn-dim-rule {
  display: inline-block;
  width: 28px;
  height: 8px;
  flex: none;
  background:
    linear-gradient(currentColor, currentColor) left top / 1px 8px no-repeat,
    linear-gradient(currentColor, currentColor) left center / 100% 1px no-repeat,
    linear-gradient(currentColor, currentColor) right top / 1px 8px no-repeat;
}

.cn-h1 {
  font-size: clamp(34px, 5.4vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin: 0 0 26px;
  max-width: 16ch;
}

.cn-lead {
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.5;
  max-width: 60ch;
  color: var(--body-text);
  margin: 0 0 14px;
}

.cn-sub {
  font-family: "JetBrains Mono", monospace;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 58ch;
  margin: 0 0 34px;
}

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

/* ----------------------------------------------------------------------
   Problem / promise band
---------------------------------------------------------------------- */
.cn-band {
  border-top: 1px solid var(--hairline-2);
  border-bottom: 1px solid var(--hairline-2);
  background: var(--band);
}

.cn-band-grid {
  max-width: 1160px;
  margin: 0 auto;
  padding: 56px 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
}

.cn-band-index {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: var(--teal);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Stacked-stones glyph — shared by section index labels and step numbers.
   Rendered by stoneGlyph() in main.js; grows a stone per number. */
.cn-stone-glyph {
  display: block;
  flex: none;
}

.cn-band-body {
  font-size: 16px;
  line-height: 1.55;
  color: var(--body-text);
  margin: 0;
}

.cn-em-underline {
  font-style: normal;
  border-bottom: 2px solid var(--teal);
}

/* ----------------------------------------------------------------------
   Section headings shared by Assessment / Packages / How it works
---------------------------------------------------------------------- */
.cn-section {
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px 28px 24px;
}

.cn-section-tight {
  padding-top: 64px;
}

.cn-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 8px;
}

.cn-h2 {
  font-size: clamp(26px, 3.4vw, 38px);
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 0;
}

/* Dimension-line rule under section headings — same engineering-tick motif
   as .cn-dim-rule, built with layered backgrounds since it lives on a
   heading's ::after rather than as its own element. */
.cn-h2::after,
.cn-about-heading::after,
.cn-contact-heading::after {
  content: "";
  display: block;
  width: 46px;
  height: 8px;
  margin-top: 16px;
  color: var(--hairline-2);
  background:
    linear-gradient(currentColor, currentColor) left top / 1px 8px no-repeat,
    linear-gradient(currentColor, currentColor) left center / 100% 1px no-repeat,
    linear-gradient(currentColor, currentColor) right top / 1px 8px no-repeat;
}

.cn-section-note {
  font-family: "JetBrains Mono", monospace;
  font-size: 12.5px;
  color: var(--muted);
}

.cn-section-subhead {
  font-size: 16px;
  color: var(--muted);
  margin: 0 0 40px;
  max-width: 56ch;
}

/* Hairline step grid (Assessment steps, How it works) */
.cn-hairline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2px;
  background: var(--hairline-1);
  border: 1px solid var(--hairline-1);
  border-radius: 14px;
  overflow: hidden;
}

.cn-hairline-cell {
  background: var(--card);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cn-step-num-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cn-step-num {
  font-family: "JetBrains Mono", monospace;
  font-size: 26px;
  font-weight: 600;
  color: var(--teal);
  line-height: 1;
}

.cn-step-text {
  font-size: 14.5px;
  line-height: 1.45;
  color: var(--body-text);
  margin: 0;
}

.cn-pricing-note {
  font-family: "JetBrains Mono", monospace;
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cn-pricing-dot {
  width: 7px;
  height: 7px;
  background: var(--teal);
  border-radius: 50%;
  display: inline-block;
}

/* ----------------------------------------------------------------------
   Packages
---------------------------------------------------------------------- */
.cn-package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 22px;
}

.cn-package-card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--hairline-1);
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 3px 0 rgba(22, 20, 15, 0.05);
  transition: transform 120ms ease-out, box-shadow 120ms ease-out;
}

.cn-package-card:hover {
  transform: translateY(1px);
  box-shadow: none;
}

.cn-package-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
}

.cn-package-tag {
  color: var(--teal);
}

.cn-package-turnaround {
  color: var(--faint);
}

.cn-package-name {
  font-size: 21px;
  letter-spacing: -0.01em;
  font-weight: 700;
  margin: 0 0 8px;
  line-height: 1.15;
}

.cn-package-line {
  font-size: 14.5px;
  line-height: 1.5;
  color: #4a4636;
  margin: 0 0 18px;
}

.cn-micro-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--faint);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.cn-package-includes {
  font-size: 13.5px;
  line-height: 1.55;
  color: #4a4636;
  margin: 0 0 16px;
}

.cn-bullet-list {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cn-bullet-list li {
  font-size: 13.5px;
  line-height: 1.4;
  color: #4a4636;
  padding-left: 18px;
  position: relative;
}

.cn-bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 1px;
}

.cn-package-ideal {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 20px;
}

.cn-package-ideal strong {
  color: var(--ink);
  font-weight: 600;
}

.cn-package-footer {
  margin-top: auto;
  border-top: 1px solid var(--hairline-3);
  padding-top: 16px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.cn-package-price {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* ----------------------------------------------------------------------
   Founding offer banner
---------------------------------------------------------------------- */
.cn-founding-wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px 24px;
}

.cn-founding-card {
  background-color: var(--ink);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='420' height='420' viewBox='0 0 420 420'%3E%3Cg fill='none' stroke='rgba(244,240,232,0.05)' stroke-width='1.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M55,150 C40,120 55,80 105,70 C155,60 195,90 190,130 C186,168 145,190 100,182 C75,178 68,175 55,150 Z'/%3E%3Cpath d='M80,145 C70,124 82,98 118,92 C154,86 180,106 175,132 C171,156 140,170 112,164 C94,161 88,160 80,145 Z'/%3E%3Cpath d='M250,230 C232,198 258,162 302,158 C346,154 378,186 368,220 C359,252 316,270 280,262 C258,257 262,254 250,230 Z'/%3E%3Cpath d='M268,228 C255,205 273,182 305,178 C337,174 358,196 351,220 C345,242 316,254 292,249 C276,246 277,244 268,228 Z'/%3E%3Cpath d='M150,300 C138,278 152,254 182,250 C212,246 234,266 228,288 C222,308 196,320 174,315 C160,312 158,312 150,300 Z'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 380px 380px;
  border-radius: 16px;
  padding: 34px 36px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}

.cn-founding-eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--teal-light);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.cn-founding-headline {
  font-family: "Newsreader", serif;
  font-style: italic;
  font-size: clamp(18px, 2.4vw, 24px);
  line-height: 1.4;
  letter-spacing: 0;
  color: var(--paper);
  margin: 0;
  max-width: 46ch;
  font-weight: 600;
}

/* ----------------------------------------------------------------------
   About
---------------------------------------------------------------------- */
.cn-about-grid {
  max-width: 1160px;
  margin: 0 auto;
  padding: 72px 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  align-items: start;
}

.cn-about-eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: var(--teal);
  margin-bottom: 16px;
}

.cn-about-heading {
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 0 0 18px;
  line-height: 1.15;
}

.cn-about-p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--body-text);
  margin: 0 0 14px;
}

.cn-about-p:last-child {
  margin-bottom: 0;
}

.cn-howiwork-card {
  background: var(--card);
  border: 1px solid var(--hairline-1);
  border-radius: 14px;
  padding: 26px;
}

.cn-howiwork-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cn-howiwork-list li {
  font-size: 14.5px;
  line-height: 1.45;
  color: var(--body-text);
  padding-left: 22px;
  position: relative;
}

.cn-howiwork-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  border: 2px solid var(--teal);
  border-radius: 2px;
}

/* ----------------------------------------------------------------------
   Contact
---------------------------------------------------------------------- */
.cn-contact-section {
  border-top: 1px solid var(--hairline-2);
  background: var(--band);
}

.cn-contact-grid {
  max-width: 1160px;
  margin: 0 auto;
  padding: 72px 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  align-items: start;
}

.cn-contact-heading {
  font-size: clamp(28px, 3.6vw, 42px);
  letter-spacing: -0.025em;
  font-weight: 700;
  margin: 0 0 16px;
  line-height: 1.08;
}

.cn-contact-body {
  font-size: 16px;
  line-height: 1.55;
  color: var(--body-text);
  margin: 0 0 24px;
  max-width: 42ch;
}

.cn-contact-meta {
  font-family: "JetBrains Mono", monospace;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.8;
}

.cn-form {
  background: var(--card);
  border: 1px solid var(--hairline-1);
  border-radius: 14px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cn-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--muted);
  text-transform: uppercase;
}

.cn-form input,
.cn-form textarea {
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  padding: 11px 13px;
  border: 1px solid #d4ccba;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
}

.cn-form textarea {
  resize: vertical;
}

.cn-form button {
  background: var(--ink);
  color: var(--paper);
  border: none;
  border-radius: 8px;
  padding: 14px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  font-family: "Space Grotesk", sans-serif;
  box-shadow: 0 2px 0 rgba(22, 20, 15, 0.22);
  transition: transform 120ms ease-out, box-shadow 120ms ease-out;
}

.cn-form button:hover {
  transform: translateY(1px);
  box-shadow: none;
}

/* ----------------------------------------------------------------------
   Work Samples — intro
---------------------------------------------------------------------- */
.cn-work-intro {
  max-width: 1160px;
  margin: 0 auto;
  padding: 72px 28px 8px;
}

.cn-h1-work {
  font-size: clamp(30px, 4.4vw, 50px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin: 0 0 16px;
  max-width: 18ch;
}

.cn-body-muted {
  font-size: 16px;
  color: var(--muted);
  margin: 0;
  max-width: 54ch;
}

.cn-sample-section {
  max-width: 1160px;
  margin: 0 auto;
  padding: 44px 28px;
}

.cn-sample-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: var(--faint);
  margin-bottom: 14px;
}

.cn-sample-card {
  border: 1px solid var(--hairline-1);
  border-radius: 14px;
  overflow: hidden;
  background: var(--card);
}

/* Assessment report */
.cn-report-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 20px 28px;
  border-bottom: 1px solid var(--hairline-3);
  background: var(--band);
}

.cn-report-brand {
  display: flex;
  align-items: center;
  gap: 11px;
}

.cn-report-brand span {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
}

.cn-report-meta {
  font-family: "JetBrains Mono", monospace;
  font-size: 11.5px;
  color: var(--faint);
}

.cn-report-body {
  padding: 30px 32px;
}

.cn-exec-summary {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--ink);
  border-radius: 12px;
  padding: 22px 24px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.cn-exec-summary-text {
  flex: 1;
  min-width: 240px;
}

.cn-exec-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--teal-light);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.cn-exec-summary-text p {
  font-size: 15px;
  line-height: 1.5;
  color: #e7e2d6;
  margin: 0;
  max-width: 52ch;
}

.cn-exec-stat {
  text-align: right;
  min-width: 140px;
}

.cn-exec-stat-value {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--paper);
  line-height: 1;
}

.cn-exec-stat-caption {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: var(--teal-lighter);
  margin-top: 6px;
}

.cn-report-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-bottom: 28px;
  align-items: start;
}

/* Effort vs impact quadrant */
.cn-quadrant-box {
  position: relative;
  height: 300px;
  border: 1px solid var(--hairline-1);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

.cn-quadrant-highlight {
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 50%;
  background: rgba(176, 106, 30, 0.12);
  border-right: 1px dashed #c9c0ae;
  border-bottom: 1px dashed #c9c0ae;
}

.cn-quadrant-line-v {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50%;
  height: 50%;
  border-right: 1px dashed #c9c0ae;
}

.cn-quadrant-line-h {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 50%;
  border-bottom: 1px dashed #c9c0ae;
}

.cn-quadrant-label {
  position: absolute;
  left: 10px;
  top: 8px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  color: var(--warn-label);
  font-weight: 600;
}

.cn-quadrant-dot {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 6px;
}

.cn-quadrant-dot-marker {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--faint);
  flex: none;
}

.cn-quadrant-dot-marker.cn-primary {
  width: 12px;
  height: 12px;
  background: var(--teal);
  box-shadow: 0 0 0 3px rgba(13, 107, 97, 0.18);
}

.cn-quadrant-dot-label {
  font-size: 11px;
  color: #4a4636;
  white-space: nowrap;
}

.cn-quadrant-dot-label.cn-primary {
  color: var(--ink);
  font-weight: 500;
}

.cn-quadrant-axes {
  display: flex;
  justify-content: space-between;
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px;
  color: var(--faint);
  margin-top: 7px;
}

.cn-quadrant-yaxis {
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px;
  color: var(--faint);
  margin-top: 2px;
}

/* Tables (quick wins, parameters, errors) */
.cn-table-wrap {
  border: 1px solid var(--hairline-3);
  border-radius: 8px;
  overflow: hidden;
}

.cn-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}

.cn-table thead tr {
  background: var(--band);
  text-align: left;
}

.cn-table th {
  padding: 10px 14px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
}

.cn-table td {
  padding: 10px 14px;
  color: var(--body-text);
}

.cn-table tbody tr {
  border-top: 1px solid var(--hairline-3);
}

.cn-table tbody tr:first-child {
  border-top: none;
}

.cn-table-mono {
  font-family: "JetBrains Mono", monospace;
  color: var(--muted);
}

.cn-quick-wins-table th,
.cn-quick-wins-table td {
  padding: 9px 12px;
  font-size: 13px;
}

.cn-quick-wins-table th {
  font-size: 10.5px;
}

.cn-quick-wins-time {
  font-family: "JetBrains Mono", monospace;
  color: var(--teal);
}

.cn-monthly-impact {
  background: var(--ink);
  border-radius: 12px;
  padding: 22px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
}

.cn-monthly-impact-formula {
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  color: var(--teal-lighter);
  line-height: 1.7;
}

.cn-monthly-impact-label {
  color: var(--teal-light);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.cn-monthly-impact-value {
  text-align: right;
}

.cn-monthly-impact-value .cn-value {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--paper);
  line-height: 1;
}

.cn-monthly-impact-value .cn-caption {
  font-family: "JetBrains Mono", monospace;
  font-size: 11.5px;
  color: var(--teal-lighter);
  margin-top: 6px;
}

/* API reference sample */
.cn-browser-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  background: var(--ink);
  color: var(--footer-text);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
}

.cn-chrome-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.cn-chrome-dot.red {
  background: var(--error);
}

.cn-chrome-dot.yellow {
  background: var(--code-str);
}

.cn-chrome-dot.green {
  background: var(--teal-light);
}

.cn-chrome-url {
  margin-left: 10px;
  color: var(--footer-text-dim);
}

.cn-api-body {
  padding: 34px 36px;
}

.cn-method-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.cn-method-pill {
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: var(--teal);
  padding: 4px 10px;
  border-radius: 5px;
}

.cn-method-path {
  font-family: "JetBrains Mono", monospace;
  font-size: 16px;
  color: var(--ink);
}

.cn-api-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--body-text);
  margin: 0 0 18px;
  max-width: 64ch;
}

.cn-auth-callout {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: var(--auth-bg);
  border: 1px solid var(--auth-border);
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 28px;
}

.cn-auth-tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  color: var(--teal);
  flex: none;
  margin-top: 1px;
}

.cn-auth-callout p {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--auth-text);
  margin: 0;
}

.cn-auth-callout code {
  background: #dcebe6;
  padding: 1px 5px;
  border-radius: 4px;
}

.cn-param-table {
  margin-bottom: 28px;
}

.cn-param-name {
  font-family: "JetBrains Mono", monospace;
  color: var(--teal);
}

.cn-code-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 28px;
}

.cn-code-block {
  margin: 0;
  background: var(--ink);
  color: #e7e2d6;
  border-radius: 8px;
  padding: 16px;
  overflow: auto;
  font-family: "JetBrains Mono", monospace;
  font-size: 12.5px;
  line-height: 1.6;
  white-space: pre;
}

.cn-code-key {
  color: var(--teal-light);
}

.cn-code-str {
  color: var(--code-str);
}

.cn-error-table td:first-child {
  font-family: "JetBrains Mono", monospace;
  color: var(--error);
  width: 90px;
}

.cn-error-table tbody tr:first-child {
  background: var(--band);
}

.cn-error-table code {
  font-family: "JetBrains Mono", monospace;
}

/* SOP + Quickstart row */
.cn-samples-row {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px 44px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  align-items: start;
}

.cn-doc-card {
  border: 1px solid var(--hairline-1);
  border-radius: 14px;
  background: var(--card);
  padding: 30px;
  box-shadow: 0 3px 0 rgba(22, 20, 15, 0.05);
  transition: transform 120ms ease-out, box-shadow 120ms ease-out;
}

.cn-doc-card:hover {
  transform: translateY(1px);
  box-shadow: none;
}

.cn-doc-card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--hairline-3);
  padding-bottom: 14px;
  margin-bottom: 18px;
}

.cn-doc-card-head h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.01em;
}

.cn-doc-card-version {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--faint);
  white-space: nowrap;
}

.cn-doc-p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--body-text);
  margin: 0 0 6px;
}

.cn-doc-p:last-of-type {
  margin-bottom: 18px;
}

.cn-procedure-list {
  margin: 0 0 18px;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cn-procedure-list li {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--body-text);
}

.cn-role-tag {
  color: var(--faint);
}

.cn-doc-roles {
  font-size: 13px;
  line-height: 1.5;
  color: var(--body-text);
  margin: 0 0 18px;
}

.cn-doc-revision {
  border-top: 1px solid var(--hairline-3);
  padding-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--faint);
}

/* Quickstart */
.cn-quickstart-title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}

.cn-quickstart-sub {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0 0 20px;
}

.cn-quickstart-list {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cn-quickstart-list li {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--body-text);
  padding-left: 32px;
  position: relative;
}

.cn-quickstart-chip {
  position: absolute;
  left: 0;
  top: -1px;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: var(--teal);
  color: #fff;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cn-quickstart-list code {
  background: var(--band);
  padding: 2px 6px;
  border-radius: 4px;
}

.cn-warn-callout {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: var(--warn-bg);
  border: 1px solid var(--warn-border);
  border-radius: 8px;
  padding: 12px 14px;
}

.cn-warn-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  color: var(--warn-label);
  flex: none;
  margin-top: 1px;
}

.cn-warn-callout p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--warn-text);
  margin: 0;
}

/* Pipeline */
.cn-pipeline-wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px 44px;
}

.cn-pipeline-card {
  border: 1px solid var(--hairline-1);
  border-radius: 14px;
  background: var(--card);
  padding: 34px 36px;
}

.cn-pipeline-nodes {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.cn-pipeline-node {
  flex: 1;
  min-width: 150px;
  background: var(--band);
  border: 1px solid var(--hairline-1);
  border-radius: 10px;
  padding: 16px;
}

.cn-pipeline-node.cn-filled {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--paper);
}

.cn-pipeline-node-tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px;
  color: var(--teal);
  margin-bottom: 6px;
}

.cn-pipeline-node.cn-filled .cn-pipeline-node-tag {
  color: var(--teal-lighter);
}

.cn-pipeline-node-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
}

.cn-pipeline-node-sub {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

.cn-pipeline-node.cn-filled .cn-pipeline-node-sub {
  color: #bfe6df;
}

.cn-pipeline-arrow {
  font-family: "JetBrains Mono", monospace;
  color: var(--teal);
  font-size: 20px;
}

.cn-pipeline-branch {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  padding-left: 8px;
  border-left: 2px dashed #c4bdac;
  margin-left: 14px;
}

.cn-pipeline-branch-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--faint);
}

.cn-pipeline-branch-node {
  flex: 1;
  min-width: 180px;
  background: var(--warn-bg);
  border: 1px solid var(--warn-border);
  border-radius: 10px;
  padding: 16px;
}

.cn-pipeline-branch-node .cn-pipeline-node-tag {
  color: var(--warn-label);
}

.cn-pipeline-branch-node .cn-pipeline-node-sub {
  color: var(--warn-text);
}

.cn-pipeline-footer {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  border-top: 1px solid var(--hairline-3);
  padding-top: 18px;
}

.cn-pipeline-footer > div {
  flex: 1;
  min-width: 200px;
}

.cn-pipeline-footer-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  margin-bottom: 6px;
}

.cn-pipeline-footer-label.before {
  color: var(--error);
}

.cn-pipeline-footer-label.after {
  color: var(--teal);
}

.cn-pipeline-footer p {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--body-text);
  margin: 0;
}

/* Case studies */
.cn-case-wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px 80px;
}

.cn-case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}

.cn-case-card {
  background: var(--ink);
  color: #e7e2d6;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 3px 0 rgba(22, 20, 15, 0.18);
  transition: transform 120ms ease-out, box-shadow 120ms ease-out;
}

.cn-case-card:hover {
  transform: translateY(1px);
  box-shadow: none;
}

.cn-case-eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--teal-light);
  margin-bottom: 12px;
}

.cn-case-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 10px;
  line-height: 1.25;
  color: var(--paper);
}

.cn-case-body {
  font-size: 14px;
  line-height: 1.55;
  color: #bfb9a8;
  margin: 0 0 16px;
}

.cn-case-result {
  border-top: 1px solid #322e25;
  padding-top: 14px;
  font-size: 13.5px;
  color: var(--teal-lighter);
}

.cn-case-result strong {
  color: var(--paper);
  font-weight: 600;
}

/* ----------------------------------------------------------------------
   Roadmap
---------------------------------------------------------------------- */
.cn-roadmap-intro {
  max-width: 880px;
  margin: 0 auto;
  padding: 72px 28px 8px;
}

.cn-h1-narrow {
  font-size: clamp(28px, 4.2vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin: 0 0 16px;
}

.cn-note-callout {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: var(--warn-bg);
  border: 1px solid var(--warn-border);
  border-radius: 8px;
  padding: 12px 14px;
  margin-top: 18px;
}

.cn-note-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  color: var(--warn-label);
  flex: none;
  margin-top: 1px;
}

.cn-note-callout p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--warn-text);
  margin: 0;
}

.cn-timeline-wrap {
  max-width: 880px;
  margin: 0 auto;
  padding: 40px 28px 24px;
}

.cn-timeline {
  position: relative;
  padding-left: 42px;
}

.cn-timeline-rail {
  position: absolute;
  left: 14px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: var(--hairline-1);
}

.cn-timeline-item {
  position: relative;
  margin-bottom: 26px;
}

.cn-timeline-badge {
  position: absolute;
  left: -42px;
  top: 0;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--paper);
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cn-timeline-card {
  background: var(--card);
  border: 1px solid var(--hairline-1);
  border-radius: 12px;
  padding: 22px 24px;
  box-shadow: 0 3px 0 rgba(22, 20, 15, 0.05);
  transition: transform 120ms ease-out, box-shadow 120ms ease-out;
}

.cn-timeline-card:hover {
  transform: translateY(1px);
  box-shadow: none;
}

.cn-timeline-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.cn-timeline-title {
  font-size: 17px;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.cn-timeline-stats {
  display: flex;
  gap: 14px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  white-space: nowrap;
}

.cn-timeline-cost {
  color: var(--teal);
  font-weight: 600;
}

.cn-timeline-time {
  color: var(--faint);
}

.cn-timeline-body {
  font-size: 14px;
  line-height: 1.55;
  color: var(--body-text);
  margin: 0;
}

.cn-ongoing-wrap {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 28px 24px;
}

.cn-ongoing-card {
  background: var(--band);
  border: 1px solid var(--hairline-1);
  border-radius: 12px;
  padding: 24px;
}

.cn-ongoing-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.cn-ongoing-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cn-ongoing-list li {
  font-size: 14px;
  line-height: 1.5;
  color: var(--body-text);
  padding-left: 20px;
  position: relative;
}

.cn-ongoing-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 1px;
}

.cn-summary-wrap {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 28px 80px;
}

.cn-summary-card {
  background: var(--ink);
  color: #e7e2d6;
  border-radius: 14px;
  padding: 30px 32px;
}

.cn-summary-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--teal-light);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.cn-summary-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.cn-summary-stat-value {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--paper);
}

.cn-summary-stat-caption {
  font-size: 13.5px;
  color: #bfb9a8;
  margin-top: 4px;
}

.cn-summary-note {
  font-size: 14px;
  line-height: 1.55;
  color: var(--teal-lighter);
  margin: 18px 0 0;
  border-top: 1px solid #322e25;
  padding-top: 16px;
}

/* ----------------------------------------------------------------------
   Checklist
---------------------------------------------------------------------- */
.cn-checklist-intro {
  max-width: 880px;
  margin: 0 auto;
  padding: 72px 28px 8px;
}

.cn-checklist-groups {
  max-width: 880px;
  margin: 0 auto;
  padding: 40px 28px 80px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cn-checklist-group {
  border: 1px solid var(--hairline-1);
  border-radius: 12px;
  background: var(--card);
  overflow: hidden;
}

.cn-checklist-group-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  background: var(--band);
}

.cn-checklist-group-head.cn-emphasized {
  background: var(--ink);
}

.cn-checklist-group-idx {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 600;
  color: var(--teal);
}

.cn-checklist-group-head.cn-emphasized .cn-checklist-group-idx {
  color: var(--teal-light);
}

.cn-checklist-group-title {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.cn-checklist-group-head.cn-emphasized .cn-checklist-group-title {
  color: var(--paper);
}

.cn-checklist-items {
  margin: 0;
  padding: 8px 22px 18px;
  list-style: none;
  display: flex;
  flex-direction: column;
}

.cn-checklist-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  border-top: 1px solid var(--band);
}

.cn-checklist-item:first-child {
  border-top: none;
}

.cn-checklist-item input[type="checkbox"] {
  accent-color: var(--teal);
  width: 18px;
  height: 18px;
  cursor: pointer;
  flex: none;
  margin-top: 1px;
}

.cn-checklist-item span {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--body-text);
}

.cn-checklist-item.cn-checked span {
  color: var(--muted);
  text-decoration: line-through;
}

/* ----------------------------------------------------------------------
   Responsive
---------------------------------------------------------------------- */
@media (max-width: 640px) {
  .cn-header-inner {
    flex-wrap: wrap;
    height: auto;
    padding: 12px 20px;
  }

  .cn-hero,
  .cn-section,
  .cn-about-grid,
  .cn-contact-grid {
    padding-left: 20px;
    padding-right: 20px;
  }

  .cn-report-body,
  .cn-api-body,
  .cn-pipeline-card {
    padding: 22px 20px;
  }
}
