/* ============================================================
   Matt Carmichael — Shared Design System
   Used by all speaker sub-pages and article pages
   ============================================================ */

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

:root {
  --ink:      #ffffff;
  --deep:     #f6f5ff;
  --slate:    #ffffff;
  --card:     #fafaff;
  --mid:      #c9cdde;
  --accent:   #6c5ce7;
  --glow:     #5b4cd1;
  --electric: #7c3aed;
  --hot:      #ec4899;
  --cyan:     #0891b2;
  --cyan-soft:#06b6d4;
  --orange:   #ea580c;
  --gold:     #d97706;
  --light:    #f1f0eb;
  --white:    #0a0a14;
  --muted:    #5b5d72;
  --faint:    #8a8da0;
  --line:     rgba(10,10,20,0.08);
  --line-strong: rgba(10,10,20,0.14);
  --max:      1180px;
  --mono:     'JetBrains Mono', monospace;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--ink);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

/* ── SUBTLE BG ── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: radial-gradient(rgba(124,58,237,0.09) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none; z-index: 0;
  mask-image: radial-gradient(ellipse at center, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 20%, transparent 75%);
}
body::after {
  content: '';
  position: fixed; inset: 0;
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(236,72,153,0.09), transparent 60%),
    radial-gradient(900px 600px at -10% 110%, rgba(108,92,231,0.11), transparent 60%),
    radial-gradient(700px 500px at 50% 50%, rgba(8,145,178,0.05), transparent 70%);
  pointer-events: none; z-index: 0;
}

/* ── UTILITY ── */
.container { max-width: var(--max); margin: 0 auto; }
section { padding: 100px 2rem; position: relative; }

.section-label {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--electric);
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.section-label::before {
  content: '';
  width: 16px; height: 1px;
  background: linear-gradient(90deg, var(--electric), var(--hot));
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 1.6rem;
  letter-spacing: -0.01em;
}
.glow-line {
  width: 72px; height: 3px;
  background: linear-gradient(90deg, var(--electric), var(--hot), var(--cyan));
  border-radius: 3px;
  margin-bottom: 2rem;
  box-shadow: 0 0 20px rgba(124,58,237,0.35);
}
.alt-bg { background: var(--deep); }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.78);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid var(--line);
  padding: 0 2rem;
}
.nav-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-between; height: 64px;
}
.nav-logo {
  color: var(--white); font-weight: 700;
  font-size: 1.05rem; text-decoration: none;
  display: flex; align-items: center; gap: 0.6rem;
}
.nav-logo-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: linear-gradient(135deg, var(--electric), var(--hot));
  box-shadow: 0 0 8px rgba(124,58,237,0.6);
  display: inline-block;
}
.nav-links {
  display: flex; align-items: center;
  gap: 0.25rem; list-style: none;
}
.nav-links a {
  color: var(--muted); text-decoration: none;
  font-size: 0.88rem; font-weight: 500;
  padding: 0.5rem 0.85rem; border-radius: 6px;
  transition: color 0.18s, background 0.18s;
}
.nav-links a:hover { color: var(--white); background: var(--line); }
.nav-links a.nav-cta {
  background: linear-gradient(135deg, var(--electric), var(--glow));
  color: #fff; padding: 0.5rem 1.1rem;
  box-shadow: 0 2px 12px rgba(124,58,237,0.25);
}
.nav-links a.nav-cta:hover { opacity: 0.9; background: linear-gradient(135deg, var(--electric), var(--glow)); }
.hamburger {
  display: none; background: none; border: 1px solid var(--line);
  padding: 0.4rem 0.6rem; border-radius: 6px; cursor: pointer;
  color: var(--white); font-size: 1.1rem;
}
@media (max-width: 768px) {
  .hamburger { display: block; }
  .nav-links { display: none; flex-direction: column; position: absolute;
    top: 64px; left: 0; right: 0; background: rgba(255,255,255,0.97);
    border-bottom: 1px solid var(--line); padding: 1rem 2rem; gap: 0.25rem; }
  .nav-links.open { display: flex; }
}

/* ── BUTTONS ── */
.btn-glow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: linear-gradient(135deg, var(--electric) 0%, var(--glow) 100%);
  color: #fff; padding: 0.85rem 2rem; border-radius: 8px;
  font-weight: 600; font-size: 0.95rem; text-decoration: none;
  box-shadow: 0 4px 20px rgba(124,58,237,0.35);
  transition: transform 0.18s, box-shadow 0.18s;
}
.btn-glow:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(124,58,237,0.45); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 1.5px solid var(--line-strong);
  color: var(--muted); padding: 0.85rem 2rem; border-radius: 8px;
  font-weight: 500; font-size: 0.95rem; text-decoration: none;
  transition: border-color 0.18s, color 0.18s, background 0.18s;
}
.btn-ghost:hover { border-color: var(--electric); color: var(--electric); background: rgba(124,58,237,0.04); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 1.5px solid var(--line-strong);
  color: var(--muted); padding: 0.7rem 1.5rem; border-radius: 8px;
  font-weight: 500; font-size: 0.875rem; text-decoration: none;
  transition: border-color 0.18s, color 0.18s;
}
.btn-secondary:hover { border-color: var(--electric); color: var(--electric); }

/* ── PAGE HERO ── */
.page-hero {
  padding: 140px 2rem 80px;
  position: relative;
  background: var(--ink);
}
.page-hero-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.page-hero-eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--electric);
  font-weight: 600; margin-bottom: 1rem;
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.page-hero-eyebrow::before {
  content: ''; width: 16px; height: 1px;
  background: linear-gradient(90deg, var(--electric), var(--hot));
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  line-height: 1.1; letter-spacing: -0.02em;
  color: var(--white); margin-bottom: 1.5rem;
}
.page-hero h1 em { font-style: italic; color: var(--electric); }
.page-hero-sub {
  font-size: 1.1rem; color: var(--muted); line-height: 1.7;
  margin-bottom: 2.5rem; max-width: 520px;
}
.page-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.page-hero-photo {
  position: relative;
}
.page-hero-photo img {
  width: 100%; max-width: 440px;
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(124,58,237,0.18);
}
.page-hero-orb {
  position: absolute; border-radius: 50%; pointer-events: none;
  filter: blur(60px);
}
.page-hero-orb-1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(124,58,237,0.15), transparent 70%);
  top: -100px; left: -100px;
}
.page-hero-orb-2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(236,72,153,0.12), transparent 70%);
  bottom: -60px; right: -60px;
}
@media (max-width: 900px) {
  .page-hero-inner { grid-template-columns: 1fr; }
  .page-hero-photo { display: none; }
}

/* ── VIDEO SECTION ── */
.video-section { padding: 80px 2rem; background: var(--deep); }
.video-wrap {
  max-width: 860px; margin: 2.5rem auto 0;
  aspect-ratio: 16/9; border-radius: 16px;
  background: linear-gradient(135deg, #1a1040 0%, #0d0824 100%);
  border: 1.5px solid var(--line-strong);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1.5rem;
  box-shadow: 0 24px 64px rgba(124,58,237,0.2);
  position: relative; overflow: hidden;
}
.video-wrap::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(124,58,237,0.12) 1px, transparent 1px);
  background-size: 24px 24px;
}
.video-play-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--electric), var(--hot));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 40px rgba(124,58,237,0.5);
  position: relative; z-index: 1;
  animation: pulse-play 2.5s ease-in-out infinite;
}
.video-play-icon svg { width: 30px; height: 30px; fill: #fff; margin-left: 4px; }
@keyframes pulse-play {
  0%, 100% { box-shadow: 0 0 40px rgba(124,58,237,0.5); }
  50% { box-shadow: 0 0 60px rgba(124,58,237,0.75), 0 0 100px rgba(236,72,153,0.3); }
}
.video-coming-soon {
  font-family: var(--mono); font-size: 0.85rem;
  color: rgba(255,255,255,0.55); letter-spacing: 0.12em;
  text-transform: uppercase; position: relative; z-index: 1;
}
.video-coming-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; color: rgba(255,255,255,0.85);
  position: relative; z-index: 1; text-align: center;
}
/* When video is ready, replace .video-wrap content with: */
/* <div class="video-embed"><iframe ...></iframe></div> */
.video-embed { width: 100%; height: 100%; border-radius: 16px; overflow: hidden; }
.video-embed iframe { width: 100%; height: 100%; border: none; }

/* ── METHOD SECTION ── */
.method-section { padding: 100px 2rem; }
.method-flow {
  display: flex; align-items: center;
  gap: 0; margin: 2.5rem 0; overflow-x: auto;
  padding-bottom: 0.5rem;
}
.method-step {
  flex: 1; min-width: 140px;
  background: var(--slate);
  border: 1.5px solid var(--line);
  border-radius: 12px; padding: 1.5rem 1.2rem;
  text-align: center; position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.method-step:hover {
  border-color: var(--electric);
  box-shadow: 0 4px 20px rgba(124,58,237,0.12);
}
.method-step-num {
  font-family: var(--mono); font-size: 0.65rem;
  letter-spacing: 0.15em; color: var(--electric);
  text-transform: uppercase; margin-bottom: 0.5rem;
}
.method-step-icon { font-size: 1.8rem; margin-bottom: 0.6rem; line-height: 1; }
.method-step-label {
  font-weight: 700; font-size: 0.88rem;
  color: var(--white); margin-bottom: 0.4rem; line-height: 1.25;
}
.method-step-sub {
  font-size: 0.78rem; color: var(--faint); line-height: 1.4;
}
.method-arrow {
  flex-shrink: 0; padding: 0 0.5rem;
  color: var(--electric); font-size: 1.4rem; font-weight: 300;
  display: flex; align-items: center; line-height: 1;
}
.method-caption {
  font-size: 0.9rem; color: var(--muted);
  max-width: 680px; margin-top: 1.5rem; line-height: 1.7;
}

/* ── BEST FIT / PROOF ── */
.fit-section { padding: 100px 2rem; background: var(--deep); }
.fit-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; margin-top: 2.5rem;
}
.fit-column h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; margin-bottom: 1.2rem; color: var(--white);
}
.fit-list { list-style: none; }
.fit-list li {
  padding: 0.7rem 0 0.7rem 2rem; position: relative;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem; color: var(--muted); line-height: 1.5;
}
.fit-list li:last-child { border-bottom: none; }
.fit-list li::before {
  content: '→';
  position: absolute; left: 0;
  color: var(--electric); font-weight: 600;
}
.proof-stats {
  display: flex; gap: 1.5rem; flex-wrap: wrap; margin-top: 2.5rem;
}
.proof-stat {
  background: var(--slate); border: 1.5px solid var(--line);
  border-radius: 12px; padding: 1.5rem 2rem; flex: 1; min-width: 180px;
}
.proof-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem; color: var(--electric); line-height: 1;
  margin-bottom: 0.25rem;
}
.proof-stat-label {
  font-size: 0.82rem; color: var(--faint);
  font-family: var(--mono); letter-spacing: 0.08em;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .fit-grid { grid-template-columns: 1fr; }
}

/* ── TOPIC CARDS (sub-pages) ── */
.topic-grid-sub {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem; margin-top: 2.5rem;
}
.topic-card-sub {
  background: var(--slate); border: 1.5px solid var(--line);
  border-radius: 12px; padding: 2rem;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  text-decoration: none; display: block;
}
.topic-card-sub:hover {
  border-color: var(--electric);
  box-shadow: 0 8px 32px rgba(124,58,237,0.12);
  transform: translateY(-2px);
}
.topic-card-sub-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.topic-card-sub h3 {
  font-weight: 700; font-size: 1rem;
  color: var(--white); margin-bottom: 0.5rem;
}
.topic-card-sub p { font-size: 0.88rem; color: var(--muted); line-height: 1.55; }
.topic-card-sub .topic-link {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 0.82rem; font-weight: 600;
  color: var(--electric); margin-top: 1rem;
  font-family: var(--mono); letter-spacing: 0.05em;
}

/* ── TAKEAWAYS ── */
.takeaways-section { padding: 80px 2rem; }
.takeaways-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem; margin-top: 2.5rem;
}
.takeaway-card {
  background: var(--slate); border: 1.5px solid var(--line);
  border-radius: 12px; padding: 1.75rem;
}
.takeaway-card-num {
  font-family: var(--mono); font-size: 0.65rem;
  letter-spacing: 0.15em; color: var(--electric);
  text-transform: uppercase; margin-bottom: 0.5rem;
}
.takeaway-card h3 {
  font-weight: 700; font-size: 0.95rem;
  color: var(--white); margin-bottom: 0.5rem; line-height: 1.3;
}
.takeaway-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

/* ── TESTIMONIALS ── */
.testimonials-section { padding: 80px 2rem; background: var(--deep); }
.testimonials-grid-sub {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem; margin-top: 2.5rem;
}
.testimonial-card-sub {
  background: var(--slate); border: 1.5px solid var(--line);
  border-radius: 12px; padding: 2rem;
}
.testimonial-card-sub blockquote {
  font-size: 0.95rem; color: var(--muted);
  line-height: 1.7; font-style: italic;
  margin-bottom: 1rem;
}
.testimonial-card-sub blockquote::before { content: '"'; color: var(--electric); font-size: 1.5rem; line-height: 0; vertical-align: -0.4em; margin-right: 0.2em; }
.testimonial-attr {
  font-family: var(--mono); font-size: 0.72rem;
  color: var(--faint); letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── FAQ (sub-pages) ── */
.faq-section { padding: 80px 2rem; }
.faq-list { margin-top: 2.5rem; max-width: 800px; }
.faq-item-sub {
  border-bottom: 1px solid var(--line);
  padding: 1.5rem 0;
}
.faq-item-sub:last-child { border-bottom: none; }
.faq-item-sub h3 {
  font-weight: 600; font-size: 1rem;
  color: var(--white); margin-bottom: 0.6rem; cursor: pointer;
}
.faq-item-sub p { font-size: 0.92rem; color: var(--muted); line-height: 1.7; }

/* ── CTA STRIP ── */
.cta-strip {
  padding: 80px 2rem;
  background: linear-gradient(135deg, var(--electric) 0%, var(--glow) 50%, var(--hot) 100%);
  text-align: center; position: relative; overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 24px 24px;
}
.cta-strip-inner { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.cta-strip h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: #fff; margin-bottom: 1rem; line-height: 1.15;
}
.cta-strip p { color: rgba(255,255,255,0.8); margin-bottom: 2rem; font-size: 1.05rem; line-height: 1.6; }
.btn-white {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: #fff; color: var(--electric);
  padding: 0.9rem 2.2rem; border-radius: 8px;
  font-weight: 700; font-size: 0.95rem; text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: transform 0.18s, box-shadow 0.18s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.3); }
.btn-white-ghost {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 2px solid rgba(255,255,255,0.6); color: #fff;
  padding: 0.9rem 2.2rem; border-radius: 8px;
  font-weight: 600; font-size: 0.95rem; text-decoration: none;
  transition: border-color 0.18s, background 0.18s;
  margin-left: 1rem;
}
.btn-white-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.12); }

/* ── ARTICLE LAYOUT ── */
.article-hero {
  padding: 140px 2rem 60px;
}
.article-hero-inner { max-width: 760px; margin: 0 auto; }
.article-hero-category {
  font-family: var(--mono); font-size: 0.72rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--electric); font-weight: 600;
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-bottom: 1rem;
}
.article-hero-category::before {
  content: ''; width: 16px; height: 1px;
  background: linear-gradient(90deg, var(--electric), var(--hot));
}
.article-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white); line-height: 1.15;
  letter-spacing: -0.02em; margin-bottom: 1.2rem;
}
.article-hero-sub {
  font-size: 1.15rem; color: var(--muted);
  line-height: 1.65; margin-bottom: 2rem; max-width: 620px;
}
.article-meta {
  display: flex; align-items: center; gap: 1.5rem;
  font-size: 0.82rem; color: var(--faint);
  font-family: var(--mono); letter-spacing: 0.05em;
  padding-top: 1.5rem; border-top: 1px solid var(--line);
}
.article-meta-author { color: var(--electric); font-weight: 600; }
.article-body {
  padding: 0 2rem 80px;
}
.article-body-inner {
  max-width: 760px; margin: 0 auto;
}
.article-body-inner p {
  font-size: 1.05rem; color: var(--muted);
  line-height: 1.8; margin-bottom: 1.5rem;
}
.article-body-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem; color: var(--white);
  margin: 2.5rem 0 1rem; line-height: 1.2;
}
.article-body-inner h3 {
  font-weight: 700; font-size: 1.1rem;
  color: var(--white); margin: 2rem 0 0.75rem;
}
.article-body-inner ul, .article-body-inner ol {
  margin: 1rem 0 1.5rem 1.5rem;
}
.article-body-inner li {
  font-size: 1.02rem; color: var(--muted);
  line-height: 1.7; margin-bottom: 0.5rem;
}
.article-body-inner strong { color: var(--white); font-weight: 600; }
.article-body-inner em { color: var(--electric); font-style: italic; }
.article-pullquote {
  border-left: 3px solid var(--electric);
  padding: 1.2rem 1.5rem; margin: 2rem 0;
  background: rgba(124,58,237,0.04);
  border-radius: 0 8px 8px 0;
}
.article-pullquote p {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem !important; color: var(--white) !important;
  line-height: 1.5 !important; margin: 0 !important;
  font-style: italic;
}
.article-author-box {
  margin-top: 3rem; padding: 2rem;
  background: var(--deep); border-radius: 12px;
  border: 1.5px solid var(--line);
  display: flex; gap: 1.5rem; align-items: flex-start;
}
.article-author-box img {
  width: 72px; height: 72px; border-radius: 50%; flex-shrink: 0;
  object-fit: cover;
}
.article-author-box-text h4 {
  font-weight: 700; color: var(--white); margin-bottom: 0.25rem;
}
.article-author-box-text p {
  font-size: 0.88rem !important; color: var(--muted) !important;
  line-height: 1.6 !important; margin: 0 !important;
}
.related-articles {
  padding: 60px 2rem 80px; background: var(--deep);
}
.related-articles-inner { max-width: 760px; margin: 0 auto; }
.related-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.2rem; margin-top: 1.5rem;
}
.related-card {
  background: var(--slate); border: 1.5px solid var(--line);
  border-radius: 10px; padding: 1.5rem;
  text-decoration: none; display: block;
  transition: border-color 0.2s, transform 0.2s;
}
.related-card:hover { border-color: var(--electric); transform: translateY(-2px); }
.related-card-label {
  font-family: var(--mono); font-size: 0.65rem;
  color: var(--electric); text-transform: uppercase;
  letter-spacing: 0.12em; margin-bottom: 0.5rem;
}
.related-card h4 {
  font-size: 0.9rem; font-weight: 600;
  color: var(--white); line-height: 1.35;
}

/* ── CANONICAL BIO BLOCK ── */
.canonical-section { padding: 80px 2rem; background: var(--deep); }
.canonical-box {
  max-width: 860px; margin: 2.5rem auto 0;
  background: var(--slate); border: 1.5px solid var(--line);
  border-radius: 16px; padding: 3rem;
}
.canonical-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; color: var(--white);
  margin-bottom: 1rem;
}
.canonical-bio {
  font-size: 1rem; color: var(--muted);
  line-height: 1.75; margin-bottom: 2rem;
  padding-bottom: 2rem; border-bottom: 1px solid var(--line);
}
.canonical-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.canonical-col h4 {
  font-family: var(--mono); font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--electric); margin-bottom: 0.75rem;
}
.canonical-col ul { list-style: none; }
.canonical-col ul li {
  font-size: 0.9rem; color: var(--muted);
  padding: 0.35rem 0; border-bottom: 1px solid var(--line);
  line-height: 1.45;
}
.canonical-col ul li:last-child { border-bottom: none; }
@media (max-width: 640px) {
  .canonical-grid { grid-template-columns: 1fr; }
  .canonical-box { padding: 2rem; }
}

/* ── PROOF LOGOS ── */
.proof-logos-sub {
  display: flex; flex-wrap: wrap;
  gap: 1.5rem; align-items: center;
  margin: 2rem 0; opacity: 0.75;
}
.proof-logos-sub .logo-label {
  font-family: var(--mono); font-size: 0.75rem;
  color: var(--faint); letter-spacing: 0.1em;
  text-transform: uppercase; font-weight: 600;
}

/* ── FOOTER ── */
footer {
  background: #f9f9fd;
  border-top: 1px solid var(--line);
  padding: 3rem 2rem;
}
.footer-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}
.footer-brand p {
  font-size: 0.88rem; color: var(--faint);
  line-height: 1.6; margin-top: 0.5rem; max-width: 260px;
}
.footer-brand strong {
  font-size: 1rem; color: var(--white); font-weight: 700;
  display: flex; align-items: center; gap: 0.5rem;
}
.footer-col h4 {
  font-family: var(--mono); font-size: 0.68rem;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--electric); margin-bottom: 1rem;
}
.footer-col a {
  display: block; font-size: 0.88rem;
  color: var(--muted); text-decoration: none;
  padding: 0.25rem 0; transition: color 0.15s;
}
.footer-col a:hover { color: var(--electric); }
.footer-bottom {
  max-width: var(--max); margin: 2rem auto 0;
  padding-top: 1.5rem; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 0.75rem;
  font-size: 0.8rem; color: var(--faint);
}
.footer-bottom a { color: var(--faint); text-decoration: none; }
.footer-bottom a:hover { color: var(--electric); }
@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
