/* ============================================================
   ERIC BARKER — PERSONAL BRAND SITE
   Design system: dark canvas, violet→teal accent, mono eyebrows
   WordPress-friendly: custom properties, BEM-ish classes, no JS deps
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --bg: #0A0A0F;
  --surface: #12121A;
  --surface-2: #1A1A24;
  --border: #26263A;
  --border-soft: rgba(255, 255, 255, 0.08);
  --text: #F4F4F6;
  --text-2: #A0A0B2;
  --text-3: #6B6B7E;
  --accent: #6E5BFF;
  --accent-2: #00D4C2;
  --grad: linear-gradient(135deg, #6E5BFF 0%, #00D4C2 100%);

  --font-display: 'Space Grotesk', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'SFMono-Regular', Consolas, monospace;

  --radius: 16px;
  --radius-sm: 8px;
  --container: 1200px;
  --section-pad: 112px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

body {
  background: var(--bg);
  color: var(--text-2);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--accent-2); text-decoration: none; }
a:hover { text-decoration: underline; }

:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--accent); color: #fff; padding: 10px 18px; z-index: 200;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--text);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(40px, 6vw, 64px); }
h2 { font-size: clamp(32px, 4.5vw, 44px); }
h3 { font-size: clamp(24px, 3vw, 28px); }
h4 { font-size: 20px; }

p + p { margin-top: 1em; }

.lead { font-size: clamp(18px, 2vw, 21px); color: var(--text-2); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 16px;
}

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Layout ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: var(--section-pad) 0; }
.section--tight { padding: 64px 0; }
.section--alt { background: var(--surface); border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); }

.section__head { max-width: 720px; margin-bottom: 56px; }
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section__head p { margin-top: 16px; }

.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 960px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  :root { --section-pad: 64px; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: opacity .18s ease, border-color .18s ease, background .18s ease;
}
.btn:hover { text-decoration: none; }

.btn--primary {
  background: linear-gradient(135deg, #8B5CFF 0%, #6E5BFF 55%, #5B3DF5 100%);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 0 0 1px rgba(110, 91, 255, 0.25), 0 4px 18px rgba(110, 91, 255, 0.28);
}
.btn--primary:hover { opacity: 0.92; box-shadow: 0 0 0 1px rgba(110, 91, 255, 0.4), 0 4px 22px rgba(110, 91, 255, 0.4); }

.btn--outline { border-color: var(--border); color: var(--text); background: transparent; }
.btn--outline:hover { border-color: var(--accent); }

.btn--ghost { color: var(--accent-2); background: transparent; padding: 14px 8px; }

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

/* ---------- Cards ---------- */
.card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color .18s ease;
}
.card:hover { border-color: var(--border); }

.card h3, .card h4 { margin-bottom: 12px; }
.card p { font-size: 16px; }

.card__icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 20px;
  color: var(--accent-2);
}
.card__icon svg { width: 22px; height: 22px; }

.card--link { display: block; color: inherit; }
.card--link:hover { text-decoration: none; border-color: var(--accent); }

.card__more {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent-2);
}

/* ---------- Tags / badges ---------- */
.tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-2);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 5px 14px;
}
.tag--accent { color: var(--accent-2); border-color: rgba(0, 212, 194, 0.35); }
.tag-row { display: flex; gap: 10px; flex-wrap: wrap; }

/* ---------- Navigation ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-soft);
}

.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 600;
  color: var(--text);
}
.nav__logo span { color: var(--accent-2); }
.nav__logo:hover { text-decoration: none; }

.nav__toggle-box { display: none; }
.nav__toggle {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
}
.nav__toggle span {
  display: block; width: 20px; height: 2px;
  background: var(--text);
}

.nav__menu {
  display: flex; align-items: center; gap: 32px;
  list-style: none;
}
.nav__menu a {
  color: var(--text-2); font-size: 15px; font-weight: 500;
}
.nav__menu a:hover, .nav__menu a[aria-current="page"] { color: var(--text); text-decoration: none; }
.nav__menu .btn { padding: 10px 22px; font-size: 15px; }
.nav__menu .btn--primary,
.nav__menu .btn--primary:hover,
.nav__menu .btn--primary[aria-current="page"] {
  color: #FFFFFF;
  font-weight: 600;
}

@media (max-width: 860px) {
  .nav__toggle { display: flex; }
  .nav__menu {
    display: none;
    position: absolute; top: 72px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 12px 24px 24px;
  }
  .nav__menu li { border-bottom: 1px solid var(--border-soft); }
  .nav__menu li:last-child { border-bottom: 0; padding-top: 16px; }
  .nav__menu a { display: block; padding: 14px 0; font-size: 17px; }
  .nav__toggle-box:checked ~ .nav__menu { display: flex; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 120px 0 96px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -300px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 700px;
  background: radial-gradient(ellipse at center, rgba(110, 91, 255, 0.16) 0%, rgba(0, 212, 194, 0.05) 45%, transparent 70%);
  pointer-events: none;
}
.hero__inner { position: relative; max-width: 800px; }
.hero h1 { margin: 0 0 24px; }
.hero .lead { max-width: 620px; margin-bottom: 36px; }
.hero--page { padding: 96px 0 72px; }

/* Founder hero: text + photo side by side */
.hero--founder .hero__split {
  position: relative;
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 64px;
  align-items: center;
}
.hero--founder .hero__inner { max-width: none; }

.founder-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  max-width: 440px;
  margin-left: auto;
}
.founder-photo img { width: 100%; }
.founder-photo::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: var(--radius);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  pointer-events: none;
}
.founder-photo__caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 14px 18px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--text);
  background: linear-gradient(transparent, rgba(10, 10, 15, 0.88));
}
@media (max-width: 860px) {
  .hero--founder .hero__split { grid-template-columns: 1fr; gap: 40px; }
  .founder-photo { margin: 0 auto; }
}

/* Credibility checklist */
.cred-list { list-style: none; }
.cred-list li {
  position: relative;
  padding: 0 0 18px 36px;
  font-size: 17px;
  color: var(--text-2);
}
.cred-list li strong { color: var(--text); font-weight: 600; }
.cred-list li::before {
  content: "";
  position: absolute; left: 0; top: 7px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(110, 91, 255, 0.25), rgba(0, 212, 194, 0.25));
  border: 1px solid var(--accent);
}
.cred-list li::after {
  content: "";
  position: absolute; left: 5px; top: 11px;
  width: 8px; height: 5px;
  border-left: 2px solid var(--accent-2);
  border-bottom: 2px solid var(--accent-2);
  transform: rotate(-45deg);
}

@media (max-width: 768px) {
  .hero { padding: 72px 0 56px; }
}

/* ---------- Stat strip ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--border-soft);
}
.stats__num {
  font-family: var(--font-mono);
  font-size: 28px; font-weight: 500;
  color: var(--text);
}
.stats__label { font-size: 14px; color: var(--text-3); margin-top: 4px; }

@media (max-width: 768px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Split (2-col) ---------- */
.split {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 64px;
  align-items: center;
}
.split--even { grid-template-columns: 1fr 1fr; }
.split__media img {
  border-radius: var(--radius);
  border: 1px solid var(--border-soft);
  width: 100%;
}
@media (max-width: 860px) {
  .split, .split--even { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- Timeline ---------- */
.timeline { list-style: none; position: relative; padding-left: 32px; }
.timeline::before {
  content: "";
  position: absolute; left: 7px; top: 8px; bottom: 8px;
  width: 1px; background: var(--border);
}
.timeline__item { position: relative; padding-bottom: 48px; }
.timeline__item:last-child { padding-bottom: 0; }
.timeline__item::before {
  content: "";
  position: absolute; left: -32px; top: 8px;
  width: 15px; height: 15px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--accent-2);
}
.timeline__date {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent-2);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.timeline__item h3 { margin: 8px 0 10px; }
.timeline__item p { max-width: 640px; }

/* ---------- Project cards ---------- */
.project-card { display: flex; flex-direction: column; overflow: hidden; padding: 0; }
.project-card img { border-bottom: 1px solid var(--border-soft); width: 100%; }
.project-card__body { padding: 28px; }
.project-card .tag { margin-bottom: 14px; }
.project-card__result {
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent-2);
}

/* ---------- Testimonials ---------- */
.quote-card blockquote { font-size: 17px; color: var(--text-2); }
.quote-card figcaption { margin-top: 20px; font-size: 14px; color: var(--text-3); }
.quote-card figcaption strong { display: block; color: var(--text); font-weight: 600; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  border-radius: var(--radius);
  padding: 72px 40px;
  text-align: center;
  background: var(--surface);
  border: 1px solid transparent;
  background-clip: padding-box;
}
.cta-band::before {
  content: "";
  position: absolute; inset: -1px;
  border-radius: var(--radius);
  background: var(--grad);
  z-index: -1;
}
.cta-band h2 { margin-bottom: 16px; }
.cta-band p { max-width: 560px; margin: 0 auto 32px; }
.cta-band__contact {
  margin: 32px auto 0 !important;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--text-3);
}
.cta-band__contact a {
  color: var(--accent-2);
  font-weight: 500;
  border-bottom: 1px solid rgba(0, 212, 194, 0.35);
  padding-bottom: 2px;
}
.cta-band__contact a:hover { text-decoration: none; border-bottom-color: var(--accent-2); }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border-soft);
  padding: 72px 0 40px;
  background: var(--surface);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
}
.footer-grid h4 {
  font-size: 14px;
  font-family: var(--font-mono);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-3);
  margin-bottom: 18px;
}
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a { color: var(--text-2); font-size: 15px; }
.footer-grid a:hover { color: var(--text); text-decoration: none; }
.footer-brand p { font-size: 15px; max-width: 280px; margin-top: 12px; }
.footer-bottom {
  border-top: 1px solid var(--border-soft);
  padding-top: 28px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 14px; color: var(--text-3);
}
@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Service detail sections ---------- */
.service-block { padding: 72px 0; border-bottom: 1px solid var(--border-soft); }
.service-block:last-of-type { border-bottom: 0; }
.service-block__grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 56px;
}
.service-block ul { list-style: none; margin-top: 20px; }
.service-block ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  font-size: 16px;
}
.service-block ul li::before {
  content: "";
  position: absolute; left: 0; top: 9px;
  width: 12px; height: 2px;
  background: var(--accent-2);
}
.service-block__aside .card { position: sticky; top: 96px; }
@media (max-width: 860px) {
  .service-block__grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- Blog ---------- */
.post-card { padding: 0; overflow: hidden; }
.post-card img { border-bottom: 1px solid var(--border-soft); width: 100%; }
.post-card__body { padding: 26px; }
.post-card__meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-3);
  margin-bottom: 12px;
  display: block;
}
.post-card h3 { font-size: 21px; }

.featured-post { grid-template-columns: 7fr 5fr; display: grid; gap: 0; padding: 0; overflow: hidden; }
.featured-post img { height: 100%; object-fit: cover; border-right: 1px solid var(--border-soft); }
.featured-post__body { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
@media (max-width: 860px) {
  .featured-post { grid-template-columns: 1fr; }
  .featured-post img { border-right: 0; border-bottom: 1px solid var(--border-soft); }
}

/* Single post prose */
.prose { max-width: 720px; margin: 0 auto; }
.prose h2 { font-size: 30px; margin: 48px 0 16px; }
.prose h3 { font-size: 23px; margin: 36px 0 14px; }
.prose p { margin-bottom: 1.2em; }
.prose ul, .prose ol { margin: 0 0 1.2em 1.4em; }
.prose li { margin-bottom: 8px; }
.prose img { border-radius: var(--radius); border: 1px solid var(--border-soft); margin: 32px 0; }
.prose blockquote {
  border-left: 3px solid var(--accent);
  padding-left: 20px;
  margin: 28px 0;
  color: var(--text);
  font-style: italic;
}

.post-meta-bar {
  display: flex; gap: 20px; flex-wrap: wrap;
  font-family: var(--font-mono); font-size: 13px; color: var(--text-3);
  margin: 20px 0 0;
}

.author-box { display: flex; gap: 20px; align-items: center; margin-top: 56px; }
.author-box img { width: 64px; height: 64px; border-radius: 50%; border: 1px solid var(--border); }
.author-box p { font-size: 15px; }
.author-box strong { color: var(--text); display: block; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 64px;
}
@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

.form-field { margin-bottom: 22px; }
.form-field label {
  display: block;
  font-size: 14px; font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  padding: 13px 16px;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.form-field textarea { min-height: 140px; resize: vertical; }

.contact-direct { list-style: none; margin-top: 28px; }
.contact-direct li { margin-bottom: 14px; font-size: 16px; }
.contact-direct .label {
  font-family: var(--font-mono); font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--text-3); display: block;
}

/* ---------- Process strip ---------- */
.process { counter-reset: step; }
.process .card { position: relative; }
.process .card::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent-2);
  display: block;
  margin-bottom: 14px;
}

/* ---------- FAQ ---------- */
.faq details {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  background: var(--surface);
  margin-bottom: 12px;
}
.faq summary {
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 600;
  color: var(--text);
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; float: right; color: var(--accent-2); font-family: var(--font-mono); }
.faq details[open] summary::after { content: "−"; }
.faq details p { padding: 0 22px 18px; font-size: 16px; }

/* ---------- Utilities ---------- */
.mt-0 { margin-top: 0; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mt-56 { margin-top: 56px; }
.center { text-align: center; }
.muted { color: var(--text-3); }

/* ---------- Brand logo panels ---------- */
.logo-panel {
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius);
  border: 1px solid var(--border-soft);
  min-height: 340px;
  padding: 48px;
}
.logo-panel img { max-height: 280px; width: auto; max-width: 80%; object-fit: contain; }
.logo-panel--light { background: #FFFFFF; }
.logo-panel--dark { background: #2D2B2C; }

.project-card__media {
  display: flex; align-items: center; justify-content: center;
  height: 210px; padding: 28px;
  border-bottom: 1px solid var(--border-soft);
}
.project-card__media img { max-height: 100%; width: auto; max-width: 70%; object-fit: contain; }
.project-card__media--light { background: #FFFFFF; }
.project-card__media--dark { background: #2D2B2C; }

/* ---------- Proof gallery (chart screenshots, receipts) ---------- */
.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.proof-grid img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border-soft);
}
.proof-caption {
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--text-3);
}

/* ---------- Social icon row ---------- */
.social-row {
  list-style: none;
  display: flex;
  gap: 14px;
  margin-top: 18px;
}
.social-row a {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-2);
  transition: border-color .18s ease, color .18s ease;
}
.social-row a:hover { color: var(--accent-2); border-color: var(--accent); text-decoration: none; }

/* ---------- Credibility ticker ---------- */
.ticker {
  overflow: hidden;
  background: var(--surface);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 16px 0;
}
.ticker__track {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  animation: ticker-scroll 45s linear infinite;
}
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__track span {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  white-space: nowrap;
}
.ticker__track .ticker__stat { color: var(--accent-2); }
@keyframes ticker-scroll {
  to { transform: translateX(-50%); }
}

/* ---------- Floating CTA ---------- */
.floating-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  padding: 13px 22px;
  font-size: 15px;
}
@media (max-width: 560px) {
  .floating-cta { right: 14px; bottom: 14px; padding: 12px 18px; font-size: 14px; }
}

/* ---------- Inline CTA strip ---------- */
.inline-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 32px;
}
.inline-cta p { margin: 0; font-size: 16px; max-width: 640px; }
.inline-cta p strong { color: var(--text); }
.inline-cta .btn { flex-shrink: 0; }

/* ---------- CTA trust microcopy ---------- */
.btn-note {
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--text-3);
}
