/* ========================================================
   SeedLift — Website styles, built on the design system.
   Paper-white default, borders-first, editorial type.
   ======================================================== */

*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg-2);
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: var(--lh-base);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01","cv11";
}
body.dark {
  background: var(--sl-ink-900);
  color: var(--sl-ink-100);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.site { max-width: 1200px; margin: 0 auto; padding: 0 32px; width: 100%; }

/* =========================== SECTION RHYTHM =========================== */
section { padding: 96px 0; }
body.density-tight section { padding: 64px 0; }

.section-hd {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 400px);
  gap: 64px;
  align-items: end;
  margin-bottom: 56px;
}
.section-hd .sec-h2 { margin: 8px 0 0; }
.section-hd .section-sub {
  font-size: var(--text-md);
  color: var(--fg-3);
  line-height: 1.5;
  max-width: 400px;
}
.sec-h2 {
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 1.04;
  letter-spacing: -0.025em;
  font-weight: 600;
  color: var(--fg-1);
  margin: 0;
}
.sec-h2 em {
  font-style: normal;
  color: var(--accent-hover);
}
.sec-h2 .muted { color: var(--fg-3); font-weight: 500; }

.sl-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-3);
  display: block;
  margin-bottom: 16px;
}

/* =========================== BUTTONS =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  line-height: 1;
  transition: background var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out),
              opacity var(--dur-fast);
  white-space: nowrap;
}
.btn .arr { font-family: var(--font-mono); font-weight: 400; transform: translateY(-0.5px); }
.btn.lg { padding: 14px 22px; font-size: 15px; }
.btn.primary { background: var(--accent); color: #fff; }
.btn.primary:hover { background: var(--accent-hover); }
.btn.primary:focus-visible { outline: none; box-shadow: var(--shadow-focus); }
.btn.secondary { background: var(--bg-elevated); color: var(--fg-1); border-color: var(--border); }
.btn.secondary:hover { border-color: var(--border-strong); }
.btn.ghost { background: transparent; color: var(--fg-1); }
.btn.ghost:hover { background: var(--sl-ink-100); }

/* =========================== NAV =========================== */
nav.top {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(251,251,250,0.85);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-med), background var(--dur-med);
}
nav.top.scrolled { border-bottom-color: var(--border); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-logo img { height: 22px; }
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--fg-2);
  transition: color var(--dur-fast);
}
.nav-links a:hover { color: var(--fg-1); }
.nav-cta { display: flex; gap: 8px; align-items: center; }

/* =========================== HERO =========================== */
.hero {
  padding: 88px 0 64px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  /* subtle single radial glow — the one allowed exception */
  content: "";
  position: absolute;
  top: 20%; right: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(91,140,90,0.10), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-copy { min-width: 0; }
.hero .eyebrow {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-hover);
  margin-bottom: 20px;
}
.hero h1 {
  position: relative;
  font-family: var(--font-display);
  font-size: 84px;
  line-height: 0.96;
  letter-spacing: -0.035em;
  font-weight: 600;
  color: var(--fg-1);
  margin: 0 0 24px;
}
.hero h1 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent-hover);
  letter-spacing: -0.015em;
  font-variation-settings: 'opsz' 72;
}
/* Only one variant visible at a time */
.hero h1 .hv { display: none; }
.hero h1 .hv.on { display: inline; }

.hero p.sub {
  font-size: 19px;
  line-height: 1.5;
  color: var(--fg-3);
  max-width: 540px;
  margin: 0 0 32px;
}
.hero .cta-row { display: flex; gap: 10px; margin-bottom: 56px; }

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  max-width: 560px;
}
.hero-meta > div { display: flex; flex-direction: column; gap: 6px; }
.hero-meta .k {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--fg-1);
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero-meta .l {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-4);
}

/* --- Hero visual: signal feed mock --- */
.hero-vis {
  position: relative;
  min-height: 480px;
}
.sv-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 2;
}
.sv-hdr {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 16px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--divider);
}
.sv-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(91,140,90,0.18);
}
.sv-label {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--fg-1);
}
.sv-chip {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent-hover);
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  padding: 3px 8px;
  border-radius: var(--radius-full);
}
.sv-row {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--divider);
}
.sv-row:last-child { border-bottom: none; }
.sv-row-muted { opacity: 0.62; }
.sv-icon {
  width: 28px; height: 28px;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  color: var(--accent-hover);
  display: flex; align-items: center; justify-content: center;
}
.sv-icon-blue { background: #EAF2FC; border-color: #C9DCF4; color: #2F5C9E; }
.sv-icon-amber { background: #FBF3DF; border-color: #EDDDA6; color: #8A6A10; }
.sv-icon-muted { background: var(--sl-ink-50); border-color: var(--border); color: var(--fg-4); }
.sv-body { min-width: 0; }
.sv-title {
  font-size: 13.5px;
  color: var(--fg-1);
  line-height: 1.35;
  letter-spacing: -0.005em;
}
.sv-title b { font-weight: 600; }
.sv-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-3);
  margin-top: 3px;
  letter-spacing: -0.005em;
}
.sv-meta em { font-style: normal; color: var(--fg-2); }
.sv-score {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--accent-hover);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.sv-score-muted { color: var(--fg-4); }

/* Floating annotation chips around the feed */
.sv-float {
  position: absolute;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  box-shadow: var(--shadow-sm);
  z-index: 3;
}
.sv-float .svf-l {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-4);
  margin-bottom: 2px;
}
.sv-float .svf-v {
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-1);
}
.sv-float-1 {
  top: -24px;
  left: -48px;
  border-left: 2px solid var(--accent);
}
.sv-float-2 {
  bottom: -32px;
  right: -32px;
  border-left: 2px solid var(--accent);
}

/* =========================== LOGO MARQUEE =========================== */
.marquee-section {
  background: var(--bg-panel);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0 56px;
  overflow: hidden;
}
.marquee-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin: 0 0 24px;
  text-align: center;
}
.marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: marquee 60s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.lm {
  flex-shrink: 0;
  height: 40px;
  display: flex; align-items: center;
  justify-content: center;
  opacity: 0.95;
  transition: opacity var(--dur-fast);
}
.lm:hover { opacity: 1; }
.lm img {
  height: 32px;
  max-width: 170px;
  width: auto;
  object-fit: contain;
}
/* Per-logo sizing overrides — certain marks need more visual presence than others */
.lm.lm-xl { height: 52px; }
.lm.lm-xl img {
  height: 48px;
  max-width: 210px;
}
/* Stacked marks (logo + name below) need extra height to read at wordmark size */
.lm.lm-stacked { height: 64px; }
.lm.lm-stacked img {
  height: 60px;
  max-width: 90px;
}
.lm.lm-tight {
  margin-right: -20px;
}
.lm.lm-tight img {
  max-width: 140px;
  height: 37px;
}

/* =========================== STATS BAND (dark inverse) =========================== */
.stats {
  background: var(--sl-ink-900);
  color: var(--sl-ink-0);
  padding: 80px 0;
}
.stats-hdr {
  display: flex; justify-content: space-between; align-items: baseline; gap: 32px;
  margin-bottom: 40px;
}
.stats-title {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8A8A82;
}
.stats-sub {
  font-size: 14px;
  color: #9A9A93;
  max-width: 380px;
  text-align: right;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #2A2A26;
  border-bottom: 1px solid #2A2A26;
}
.stat {
  padding: 40px 28px;
  border-right: 1px solid #2A2A26;
}
.stat:last-child { border-right: none; }
.stat .v {
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 500;
  color: var(--sl-ink-0);
  font-variant-numeric: tabular-nums;
}
.stat .v .vu {
  font-size: 0.6em;
  color: var(--sl-green-400);
  margin-left: 2px;
  font-weight: 400;
}
.stat .l {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8A8A82;
  margin-top: 18px;
}

/* =========================== SERVICES =========================== */
.services { padding: 112px 0; }
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.svc {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: background var(--dur-med) var(--ease-out),
              border-color var(--dur-med) var(--ease-out);
  display: flex; flex-direction: column; gap: 0;
  min-height: 220px;
}
.svc:hover { border-color: var(--accent-border); background: var(--accent-soft); }
.svc-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-4);
  margin-bottom: 16px;
}
.svc h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--fg-1);
  margin: 0 0 10px;
}
.svc p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--fg-3);
  margin: 0 0 20px;
  flex: 1;
}
.svc-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
  padding-top: 16px;
  border-top: 1px solid var(--divider);
}
.svc-tags span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--fg-3);
  background: var(--bg-panel);
  border: 1px solid var(--border);
  padding: 3px 8px;
  border-radius: var(--radius-xs);
}
.svc:hover .svc-tags span {
  background: var(--bg-elevated);
  border-color: var(--accent-border);
  color: var(--accent-hover);
}

/* =========================== WHO WE SERVE =========================== */
.who-section {
  padding: 80px 0;
  background: var(--bg-panel);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.who-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  display: flex; flex-direction: column; gap: 0;
}
.who-card-featured {
  background: var(--accent-soft);
  border-color: var(--accent-border);
}
.who-tag {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-hover);
  background: var(--bg-elevated);
  border: 1px solid var(--accent-border);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 28px;
  align-self: flex-start;
}
.who-tag-alt { color: var(--fg-3); border-color: var(--border); background: var(--bg-panel); }
.who-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--fg-1);
  margin: 0 0 16px;
}
.who-lead {
  font-size: 15px;
  line-height: 1.55;
  color: var(--fg-2);
  margin: 0 0 28px;
}
.who-list {
  list-style: none;
  padding: 0; margin: 0 0 32px;
  display: flex; flex-direction: column; gap: 10px;
}
.who-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  font-size: 14px;
  color: var(--fg-2);
}
.who-check {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px;
  font-weight: 600;
  margin-top: 1px;
}
.who-check-alt { background: var(--fg-2); }
.who-link {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--accent-hover);
  letter-spacing: -0.005em;
  transition: color var(--dur-fast);
  margin-top: auto;
}
.who-link:hover { color: var(--fg-1); }
.who-card:not(.who-card-featured) .who-link { color: var(--fg-1); }
.who-card:not(.who-card-featured) .who-link:hover { color: var(--accent-hover); }

/* =========================== SYSTEM DIAGRAM =========================== */
.system-section { padding: 112px 0; }
.diagram {
  position: relative;
  height: 380px;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: 28px;
  overflow: hidden;
  margin-bottom: 40px;
}
.diagram::before {
  /* fine dotted grid */
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--sl-ink-200) 1px, transparent 1px);
  background-size: 16px 16px;
  opacity: 0.5;
  pointer-events: none;
}
.diagram-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.dnode {
  position: absolute;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-xs);
  min-width: 160px;
  z-index: 2;
}
.dnode.dn-primary {
  border-color: var(--accent-border);
  background: var(--bg-elevated);
  box-shadow: 0 0 0 3px rgba(91,140,90,0.08);
}
.dnode.dn-out {
  background: var(--sl-ink-900);
  border-color: var(--sl-ink-900);
  color: #fff;
  padding: 20px 24px;
  min-width: 180px;
}
.dn-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--fg-1);
  letter-spacing: -0.005em;
  margin-bottom: 4px;
}
.dn-head-lg {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 4px;
}
.dn-out .dn-sub { color: var(--sl-green-300); }
.dn-sub {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: -0.005em;
  color: var(--fg-3);
}
.dn-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--fg-3);
}
.dn-dot-green { background: var(--accent); box-shadow: 0 0 0 3px rgba(91,140,90,0.18); }
.dn-dot-blue { background: #4B7FB8; }
.dn-dot-amber { background: #C68F20; }

/* Diagram node positions match the SVG paths above.
   Coordinate system: the SVG is 1120x360 with preserveAspectRatio="none",
   but we stretch it to 100%, so nodes are positioned in %s that roughly match. */
.dn-1 { top: 40px; left: 20px; }
.dn-2 { bottom: 40px; left: 20px; }
.dn-3 { top: 50%; left: 24%; transform: translateY(-50%); }
.dn-4 { top: 50%; left: 52%; transform: translateY(-50%); }
.dn-5 { top: 40px; right: 16%; }
.dn-6 { bottom: 40px; right: 16%; }
.dn-7 { top: 50%; right: 20px; transform: translateY(-50%); }

.system-foot {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 28px 0 0;
  border-top: 1px solid var(--divider);
}
.system-foot p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--fg-2);
  max-width: 560px;
  margin: 8px 0 0;
}

/* =========================== PILOT TIMELINE =========================== */
.timeline-section {
  padding: 96px 0;
  background: var(--bg-panel);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.tl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.tl-phase {
  background: var(--bg-elevated);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.tl-phase-live {
  background: var(--accent-soft);
}
.tl-phase-future { background: var(--bg-panel); }
.tl-weeks {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--accent-hover);
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.tl-weeks::before {
  content: "";
  width: 20px; height: 1px;
  background: var(--accent);
  display: inline-block;
}
.tl-phase-future .tl-weeks { color: var(--fg-4); }
.tl-phase-future .tl-weeks::before { background: var(--fg-4); }
.tl-phase h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--fg-1);
  margin: 0 0 12px;
}
.tl-phase > p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--fg-3);
  margin: 0 0 24px;
}
.tl-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
  border-top: 1px solid var(--divider);
  padding-top: 20px;
}
.tl-list li {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: -0.005em;
  color: var(--fg-4);
  padding-left: 20px;
  position: relative;
}
.tl-list li::before {
  content: "○";
  position: absolute;
  left: 0;
  color: var(--fg-4);
}
.tl-list li.tl-done {
  color: var(--fg-2);
}
.tl-list li.tl-done::before { content: "✓"; color: var(--accent); }
.tl-list li.tl-live {
  color: var(--accent-hover);
  font-weight: 500;
}
.tl-list li.tl-live::before { content: "●"; color: var(--accent); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* =========================== CASE STUDY ROW =========================== */
.cases-section { padding: 112px 0; }
.cases {
  border-top: 1px solid var(--border);
}
.case {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 180px;
  gap: 40px;
  align-items: center;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  transition: padding var(--dur-med), background var(--dur-med);
  cursor: pointer;
}
.case:hover { background: var(--accent-soft); padding-left: 16px; padding-right: 16px; }
.case-client {
  display: flex; flex-direction: column; gap: 10px;
}
.case-logo {
  height: 24px;
  max-width: 140px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.85;
}
.case:hover .case-logo { filter: none; opacity: 1; }
.case-logo-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--fg-1);
  height: 24px;
  line-height: 24px;
}
.case-industry {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-4);
}
.case-body h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--fg-1);
  margin: 0 0 6px;
}
.case-body .case-meta {
  font-size: 13.5px;
  color: var(--fg-3);
  line-height: 1.5;
}
.case-metric { text-align: right; }
.cm-v {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 500;
  letter-spacing: -0.025em;
  color: var(--accent-hover);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.cm-v .cm-k { font-size: 0.6em; color: var(--accent); margin-left: 2px; }
.cm-l {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-4);
  margin-top: 8px;
}

/* =========================== COPY BAND (sage, email) =========================== */
.copy-band {
  background: var(--accent-soft);
  padding: 112px 0;
  border-top: 1px solid var(--accent-border);
  border-bottom: 1px solid var(--accent-border);
}
.copy-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.copy-copy h2 { margin-bottom: 20px; }
.copy-copy .sl-variable { font-size: 0.85em; vertical-align: 2px; }
.copy-lead {
  font-size: 17px;
  line-height: 1.55;
  color: var(--fg-2);
  max-width: 500px;
  margin: 0 0 32px;
}
.copy-rules {
  display: flex; flex-direction: column; gap: 12px;
}
.cr {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px 18px;
  background: var(--bg-elevated);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-md);
  font-size: 14px;
  color: var(--fg-1);
}
.cr-n {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent-hover);
  letter-spacing: 0.08em;
}

.email {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.email-chrome {
  display: flex; align-items: center; gap: 6px;
  padding: 12px 16px;
  background: var(--bg-panel);
  border-bottom: 1px solid var(--divider);
}
.ec-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--sl-ink-200); }
.ec-dot:nth-child(1) { background: #D9837A; }
.ec-dot:nth-child(2) { background: #D9B97A; }
.ec-dot:nth-child(3) { background: #8DB489; }
.ec-from {
  margin-left: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-3);
}
.email-subj-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--divider);
  align-items: center;
}
.esr-k {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-4);
}
.esr-v {
  font-size: 15px;
  font-weight: 600;
  color: var(--fg-1);
  letter-spacing: -0.005em;
}
.email-body {
  padding: 24px;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--fg-2);
}
.email-body p { margin: 0 0 12px; }
.email-body p:last-child { margin: 0; }
.email-sig { color: var(--fg-3); font-style: italic; }
.email-foot {
  padding: 12px 24px;
  background: var(--bg-panel);
  border-top: 1px solid var(--divider);
  display: flex;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
}
.ef-k { color: var(--fg-4); letter-spacing: 0.08em; text-transform: uppercase; }
.ef-v { color: var(--fg-3); }

/* =========================== TESTIMONIALS =========================== */
.testimonials { padding: 112px 0; }
.quotes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.quote {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.quote.quote-lg { grid-column: span 1; padding: 48px; }
.quote.quote-dim { background: var(--sl-ink-900); border-color: var(--sl-ink-900); }
.quote.quote-dim .sl-quote { color: var(--sl-ink-0); }
.quote.quote-dim .qh { color: var(--sl-green-300); }
.quote.quote-dim .qc-who b { color: var(--sl-ink-0); }
.quote.quote-dim .qc-who { color: #9A9A93; }
.quote.quote-sm { padding: 32px; }
.sl-quote {
  font-family: var(--font-serif);
  font-size: 26px;
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: var(--fg-1);
  font-weight: 400;
  font-variation-settings: 'opsz' 36;
  margin: 0 0 32px;
  flex: 1;
}
.quote.quote-sm blockquote {
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 1.4;
  color: var(--fg-1);
  font-weight: 400;
  font-variation-settings: 'opsz' 24;
  margin: 0 0 24px;
  flex: 1;
}
.qh { color: var(--accent-hover); font-weight: 500; }
.quote-cap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--divider);
}
.quote.quote-dim .quote-cap { border-top-color: #2A2A26; }
.qc-who {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-3);
  letter-spacing: -0.005em;
}
.qc-who b {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--fg-1);
  font-weight: 600;
  margin-right: 8px;
}
.qc-logo {
  height: 20px;
  max-width: 80px;
  width: auto;
  object-fit: contain;
  opacity: 0.5;
  filter: grayscale(1);
}
.quote.quote-dim .qc-logo { filter: grayscale(1) invert(1) brightness(1.2); opacity: 0.4; }

/* =========================== FAQ =========================== */
.faq-section {
  padding: 112px 0;
  background: var(--bg-panel);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.4fr);
  gap: 80px;
  align-items: start;
}
.faq-side {
  position: sticky;
  top: 88px;
}
.faq-side .sec-h2 { margin: 8px 0 16px; }
.faq-sub {
  font-size: 15px;
  color: var(--fg-3);
  line-height: 1.55;
  margin: 0 0 24px;
  max-width: 320px;
}
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-top: 1px solid var(--border);
  padding: 24px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-item summary {
  font-size: 17px;
  font-weight: 500;
  color: var(--fg-1);
  letter-spacing: -0.01em;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-mono);
  font-weight: 300;
  font-size: 22px;
  color: var(--fg-3);
  transition: transform var(--dur-med);
}
.faq-item[open] summary::after { content: "–"; }
.faq-item .faq-a {
  font-size: 15px;
  line-height: 1.6;
  color: var(--fg-3);
  margin-top: 14px;
  max-width: 680px;
}

/* =========================== CONTACT =========================== */
.contact-section { padding: 112px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-copy .sec-h2 { margin-bottom: 20px; }
.contact-lead {
  font-size: 17px;
  line-height: 1.55;
  color: var(--fg-2);
  max-width: 420px;
  margin: 0 0 16px;
}
.contact-urgency {
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  margin: 0 0 32px;
}
.contact-trust {
  list-style: none;
  padding: 0; margin: 0 0 40px;
  display: flex; flex-direction: column; gap: 12px;
}
.contact-trust li {
  font-size: 14.5px;
  color: var(--fg-2);
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-trust .sl-mono {
  color: var(--accent-hover);
  font-size: 15px;
}
.contact-from {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  max-width: 420px;
}
.contact-from img {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
}
.contact-from > div > div:first-child { font-size: 17px; color: var(--fg-1); }
.contact-from .sl-small { margin-top: 3px; font-size: 14px; }

.contact-form {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label {
  display: flex; flex-direction: column; gap: 8px;
}
.contact-form label > span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.contact-form input,
.contact-form textarea {
  font-family: var(--font-sans);
  font-size: 14.5px;
  color: var(--fg-1);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  outline: none;
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
  width: 100%;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  box-shadow: var(--shadow-focus);
}
.contact-form textarea { resize: vertical; min-height: 100px; }
.contact-form .cf-btn { margin-top: 8px; justify-content: center; }
.contact-form .cf-fine {
  font-size: 12px;
  color: var(--fg-4);
  text-align: center;
  margin: 0;
}

/* =========================== FOOTER =========================== */
.footer {
  background: var(--sl-ink-900);
  color: #9A9A93;
  padding: 80px 0 32px;
}
.f-inner {
  display: grid;
  grid-template-columns: 2.4fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
}
.f-brand img { height: 24px; margin-bottom: 18px; }
.f-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sl-green-400);
  margin-bottom: 18px;
}
.f-blurb { font-size: 14px; line-height: 1.55; color: #9A9A93; max-width: 320px; margin: 0; }
.f-col h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #8A8A82;
  margin: 0 0 16px;
  font-weight: 500;
}
.f-col a {
  display: block;
  color: #C9C9C0;
  font-size: 14px;
  margin-bottom: 10px;
  transition: color var(--dur-fast);
}
.f-col a:hover { color: #fff; }
.f-bottom {
  padding-top: 24px;
  border-top: 1px solid #2A2A26;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #6B6B65;
}

/* =========================== FOOTER LITE (minimal) =========================== */
.footer-lite {
  background: var(--sl-ink-900);
  color: #9A9A93;
  padding: 56px 0 24px;
}
.f-lite-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding-bottom: 40px;
}
.f-lite-brand { display: flex; align-items: center; gap: 16px; }
.f-lite-brand img { height: 22px; width: auto; display: block; }
.f-lite-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sl-green-400);
  padding-left: 16px;
  border-left: 1px solid #2A2A26;
}
.f-lite-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.f-lite-links a {
  font-family: var(--font-display);
  font-size: 14px;
  color: #C9C9C0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--dur-fast);
}
.f-lite-links a:hover { color: #fff; }
.f-lite-links .arr { font-family: var(--font-mono); }
.f-lite-bottom {
  padding-top: 24px;
  border-top: 1px solid #2A2A26;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #6B6B65;
}
.f-lite-bottom a { color: #6B6B65; transition: color var(--dur-fast); }
.f-lite-bottom a:hover { color: #C9C9C0; }
@media (max-width: 720px) {
  .f-lite-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .f-lite-tag { padding-left: 0; border-left: none; }
  .f-lite-links { flex-wrap: wrap; gap: 20px; }
  .f-lite-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* =========================== TWEAKS PANEL =========================== */
.tweaks-panel {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 280px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 100;
  overflow: hidden;
}
.tp-hdr {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid var(--divider);
  background: var(--bg-panel);
}
.tp-title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-2);
}
.tp-close {
  background: none; border: none; cursor: pointer;
  font-size: 22px; line-height: 1;
  color: var(--fg-3);
  padding: 0 4px;
}
.tp-body { padding: 16px 18px; display: flex; flex-direction: column; gap: 14px; }
.tp-field { display: flex; flex-direction: column; gap: 6px; }
.tp-field > span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.tp-field select {
  font-family: var(--font-sans);
  font-size: 14px;
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--fg-1);
  outline: none;
  transition: border-color var(--dur-fast);
}
.tp-field select:focus { border-color: var(--accent); box-shadow: var(--shadow-focus); }
.tp-toggle { flex-direction: row; justify-content: space-between; align-items: center; }

/* =========================== DARK MODE =========================== */
body.dark {
  --bg: #0E0E0C;
  --bg-panel: #17171418;
  --bg-elevated: #1A1A16;
  --fg-1: #F4F4EE;
  --fg-2: #D6D6CE;
  --fg-3: #9A9A93;
  --fg-4: #6B6B65;
  --border: #2A2A26;
  --border-strong: #3A3A34;
  --divider: #1F1F1B;
  --accent-soft: #1A2418;
  --accent-border: #2D3F2B;
}
body.dark nav.top { background: rgba(14,14,12,0.85); }
body.dark .sec-h2 em { color: var(--sl-green-300); }
body.dark .hero .eyebrow { color: var(--sl-green-300); }

/* =========================== RESPONSIVE =========================== */
@media (max-width: 1060px) {
  .hero h1 { font-size: 64px; }
  .sec-h2 { font-size: 40px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .tl-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: none; border-bottom: 1px solid #2A2A26; }
  .stat:nth-child(even) { border-right: none; }
  .diagram { display: none; }
}
@media (max-width: 760px) {
  .site { padding: 0 20px; }
  .hero h1 { font-size: 48px; }
  .sec-h2 { font-size: 32px; }
  .section-hd { grid-template-columns: 1fr; gap: 16px; }
  .nav-links { display: none; }
  .svc-grid { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: 1fr; }
  .copy-wrap { grid-template-columns: 1fr; gap: 32px; }
  .cases-section .cases .case { grid-template-columns: 1fr; gap: 12px; padding: 24px 0; }
  .case:hover { padding-left: 0; padding-right: 0; }
  .quotes { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .faq-side { position: static; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .cf-row { grid-template-columns: 1fr; }
  .f-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-hdr { flex-direction: column; align-items: flex-start; }
  .stats-sub { text-align: left; }
}

/* Hide any stray scrollbar on marquee */
.marquee-container::-webkit-scrollbar { display: none; }

/* =========================== CLAUDE CODE — THE BRAIN =========================== */
.cc-section {
  background: var(--sl-ink-900);
  color: var(--sl-ink-0);
  padding: 112px 0 120px;
  position: relative;
  overflow: hidden;
}
.cc-section::before {
  /* subtle atmospheric glow */
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 800px 400px at 85% 30%, rgba(91,140,90,0.12), transparent 60%),
    radial-gradient(ellipse 600px 300px at 10% 85%, rgba(91,140,90,0.06), transparent 60%);
  pointer-events: none;
}
.cc-section > .site { position: relative; z-index: 1; }

.cc-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
}

/* ---- Left: copy ---- */
.cc-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.cc-brand-mark {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--sl-green-500);
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08), 0 8px 20px -6px rgba(91,140,90,0.5);
}
.cc-brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--sl-ink-0);
  letter-spacing: -0.01em;
}
.cc-brand-kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: var(--tracking-caps);
  color: var(--sl-green-300);
  padding-left: 12px;
  border-left: 1px solid rgba(255,255,255,0.12);
}

.cc-h2 {
  font-family: var(--font-display);
  font-size: 52px;
  line-height: 1.04;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--sl-ink-0);
  margin: 0 0 24px;
}
.cc-h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--sl-green-300);
}

.cc-lead {
  font-size: 17px;
  line-height: 1.6;
  color: #B9BCB4;
  margin: 0 0 36px;
  max-width: 48ch;
}

.cc-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cc-bullets li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 14px;
  align-items: start;
}
.cc-check {
  width: 24px; height: 24px;
  border-radius: 6px;
  background: rgba(141, 180, 137, 0.15);
  color: var(--sl-green-300);
  display: grid; place-items: center;
  margin-top: 2px;
  border: 1px solid rgba(141, 180, 137, 0.25);
}
.cc-bullets h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--sl-ink-0);
  margin: 0 0 4px;
  letter-spacing: -0.005em;
}
.cc-bullets p {
  font-size: 14px;
  line-height: 1.55;
  color: #9EA299;
  margin: 0;
}

.cc-pull {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  line-height: 1.5;
  color: var(--sl-green-300);
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  max-width: 42ch;
}

/* ---- Right: terminal ---- */
.cc-term {
  background: #0A0C0A;
  border: 1px solid #1F2420;
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 24px 60px -20px rgba(0,0,0,0.7),
    0 0 0 1px rgba(141,180,137,0.04);
  font-family: var(--font-mono);
}
.cc-term-hdr {
  background: #11140F;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #1F2420;
}
.cc-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  display: inline-block;
}
.cc-dot-r { background: #E06C5E; }
.cc-dot-y { background: #E0B94E; }
.cc-dot-g { background: #5B8C5A; }
.cc-term-title {
  margin-left: 12px;
  font-size: 12px;
  color: #6D756B;
  letter-spacing: -0.005em;
}

.cc-term-body {
  padding: 24px 22px;
  font-size: 13px;
  line-height: 1.75;
  color: #C4CABE;
}
.cc-line + .cc-line,
.cc-block + .cc-block,
.cc-banner + .cc-block,
.cc-block + .cc-banner {
  margin-top: 18px;
}
.cc-prompt { color: var(--sl-green-300); }
.cc-cmd { color: #E8ECE2; }
.cc-muted { color: #6D756B; }
.cc-accent { color: var(--sl-green-300); font-weight: 600; }
.cc-green { color: #8FC28C; }
.cc-blue { color: #8FB8D6; }
.cc-purple { color: #C0A8D6; }
.cc-white { color: #E8ECE2; }
.cc-ok { color: #8FC28C; }

.cc-banner {
  color: #C4CABE;
  padding: 4px 0 4px;
  margin-top: 12px;
}
.cc-output {
  color: #8C938A;
  padding-left: 18px;
  margin-top: 4px;
}

.cc-cursor {
  display: inline-block;
  width: 8px;
  height: 14px;
  background: var(--sl-green-300);
  margin-left: 4px;
  vertical-align: -2px;
  animation: cc-blink 1s steps(2, end) infinite;
}
@keyframes cc-blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.cc-term-foot {
  background: #11140F;
  padding: 12px 16px;
  border-top: 1px solid #1F2420;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.cc-skill {
  font-size: 10.5px;
  letter-spacing: 0.02em;
  padding: 4px 8px;
  background: #171B16;
  border: 1px solid #262B25;
  border-radius: 4px;
  color: #8C938A;
}
.cc-skill-hi {
  background: rgba(141,180,137,0.12);
  border-color: rgba(141,180,137,0.25);
  color: var(--sl-green-300);
}

@media (max-width: 900px) {
  .cc-section { padding: 80px 0 88px; }
  .cc-grid { grid-template-columns: 1fr; gap: 48px; }
  .cc-h2 { font-size: 40px; }
  .cc-brand-kicker { display: none; }
  .cc-term-body { padding: 18px 16px; font-size: 12px; }
}
