/* =========================================================
   CovAgency — shared stylesheet
   Kick-ass tech aesthetic, brand-color palette, fixed alignment
   ========================================================= */

:root {
  /* Tech-light palette */
  --bg: #FAFAFA;
  --surface: #F0F0F0;
  --surface-2: #EBEBEB;
  --ink: #0A0A0A;
  --ink-soft: #262626;        /* matches logo wordmark */
  --muted: #555555;
  --muted-light: #999999;
  --line: #E5E5E5;
  --line-soft: #EFEFEF;

  /* Brand accents (from logo) */
  --lime: #C9E265;
  --lime-dark: #B5D04A;
  --violet: #8B5CF6;
  --indigo: #6366F1;

  /* Alias for legacy page-specific styles */
  --accent: var(--violet);
  --accent-dim: var(--indigo);

  /* Dark band (used on proof section for visual rhythm) */
  --dark-bg: #0A0A0A;
  --dark-surface: #141414;
  --dark-line: #262626;
  --dark-text: #FAFAFA;
  --dark-muted: #999999;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Geist', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

/* === GRADIENT TEXT UTILITY (replaces italic emphasis) === */
.gradient {
  background: linear-gradient(105deg, var(--lime) 0%, var(--violet) 60%, var(--indigo) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.lime-text { color: var(--lime); }

/* === NAV === */
nav.top {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(250, 250, 250, 0.85);
  border-bottom: 1px solid var(--line);
}
.nav-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 32px; max-width: 1280px; margin: 0 auto;
}
.logo {
  display: inline-flex; align-items: center;
  text-decoration: none;
}
.logo img { height: 32px; width: auto; display: block; }
.nav-links {
  display: flex; gap: 32px; align-items: center;
  font-size: 14px; font-weight: 500;
  letter-spacing: -0.005em;
}
.nav-links a {
  color: var(--muted); text-decoration: none;
  transition: color 0.2s; position: relative;
}
.nav-links a:not(.nav-cta):hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); }
.nav-links a.active::after {
  content: ''; position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 2px; background: var(--lime);
  border-radius: 2px;
}
.nav-cta {
  background: var(--lime); color: var(--ink);
  padding: 12px 20px; border-radius: 8px;
  font-weight: 700; font-size: 14px;
  text-decoration: none; transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 6px;
  letter-spacing: -0.005em;
}
.nav-links a.nav-cta:hover { background: var(--ink); color: var(--lime); }
.nav-cta::after { display: none !important; }
@media (max-width: 760px) {
  .nav-links a:not(.nav-cta) { display: none; }
}

/* === DISPLAY TYPOGRAPHY === */
.eyebrow {
  font-family: 'Geist Mono', monospace;
  font-size: 12px; letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--violet);
  font-weight: 500;
  margin-bottom: 24px;
  display: inline-flex; align-items: center; gap: 12px;
}
.eyebrow::before {
  content: ''; width: 8px; height: 8px;
  background: var(--lime); display: inline-block;
  border-radius: 999px;
}
.section-label {
  font-family: 'Geist Mono', monospace;
  font-size: 12px; letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 16px;
  display: inline-block;
}

h1.display {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 8vw, 112px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--ink);
}

h2.section-title {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--ink);
  max-width: 18ch;
}

h3.sub {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 700;
  font-size: 28px; line-height: 1.1;
  color: var(--ink); letter-spacing: -0.02em;
}

.lead {
  font-size: 19px; line-height: 1.5;
  color: var(--muted); font-weight: 400;
  letter-spacing: -0.005em;
}

/* === BUTTONS === */
.btn-primary {
  background: var(--ink); color: var(--bg);
  padding: 16px 26px; border-radius: 10px;
  font-weight: 600; font-size: 15px;
  text-decoration: none; transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
  border: none; cursor: pointer;
  font-family: inherit;
  letter-spacing: -0.01em;
}
.btn-primary:hover {
  background: var(--violet);
  transform: translateY(-1px);
}
.btn-lime {
  background: var(--lime); color: var(--ink);
  padding: 16px 26px; border-radius: 10px;
  font-weight: 700; font-size: 15px;
  text-decoration: none; transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
  border: none; cursor: pointer;
  font-family: inherit;
  letter-spacing: -0.01em;
}
.btn-lime:hover {
  background: var(--lime-dark);
  transform: translateY(-1px);
}
.btn-ghost {
  color: var(--ink); padding: 16px 22px;
  text-decoration: none; font-size: 15px;
  font-weight: 500;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 10px;
  transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
  cursor: pointer; font-family: inherit;
  letter-spacing: -0.005em;
}
.btn-ghost:hover { border-color: var(--ink); background: var(--surface); }

/* === HERO COMMON === */
.page-hero {
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero h1 { max-width: 18ch; margin-bottom: 32px; }
.page-hero .lead { max-width: 60ch; margin-bottom: 40px; }

/* === SECTION HEAD — FIXED: now stacks vertically, left-aligned === */
.section-head {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 64px;
  max-width: 64ch;
}
.section-head h2 {
  margin-top: 4px;
}

/* === STANDARD SECTION === */
.section { padding: 120px 0; border-top: 1px solid var(--line); }
.section.tight { padding: 64px 0; }
.section-alt { background: var(--surface); }

/* === GRID ROWS === */
.row-3 {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
@media (max-width: 860px) { .row-3 { grid-template-columns: 1fr; } }
.row-3 > .cell {
  padding: 36px 32px 40px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 0.25s;
  background: var(--bg);
}
.row-3 > .cell:hover { background: var(--surface); }
.cell-num {
  font-family: 'Geist Mono', monospace;
  font-size: 11px; color: var(--violet);
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  font-weight: 500;
  text-transform: uppercase;
}
.cell h3 {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 700; font-size: 24px;
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.cell p {
  font-size: 14.5px; color: var(--muted);
  line-height: 1.6;
}
.cell-tag {
  font-family: 'Geist Mono', monospace;
  font-size: 11px; color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-top: 1px dashed var(--line);
  padding-top: 14px;
  margin-top: 20px;
  font-weight: 500;
}

/* === HOMEPAGE: HERO META & AWARDS === */
.hero-meta {
  margin-top: 80px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.meta-label {
  font-family: 'Geist Mono', monospace;
  font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.award-row {
  display: flex; gap: 28px; flex-wrap: wrap;
  align-items: center;
}
.award-pill {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink-soft);
  letter-spacing: -0.01em;
}
.award-pill .num {
  font-family: 'Geist Mono', monospace;
  color: var(--violet);
  font-size: 13px;
  margin-right: 6px;
  font-weight: 600;
}

/* === FOURTH-OPTION CALLOUT (homepage) === */
.callout {
  margin-top: 56px;
  padding: 36px 40px;
  border: 2px solid var(--ink);
  border-radius: 14px;
  background: var(--ink);
  color: var(--bg);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center; gap: 32px;
}
@media (max-width: 760px) {
  .callout { grid-template-columns: 1fr; gap: 20px; padding: 28px; }
}
.callout-num {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 56px; font-weight: 900;
  color: var(--lime); line-height: 1;
  letter-spacing: -0.04em;
}
.callout-text {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 600;
  font-size: 22px; line-height: 1.25;
  color: var(--bg); letter-spacing: -0.02em;
}
.callout-text strong {
  color: var(--lime);
  font-weight: 800;
}

/* === DARK PROOF BAND === */
.dark-band {
  background: var(--dark-bg);
  color: var(--dark-text);
  padding: 120px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.dark-band h2 { color: var(--dark-text); }
.dark-band .section-label { color: var(--dark-muted); }
.dark-band .lead { color: var(--dark-muted); }

.proof-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; margin-bottom: 80px;
  border: 1px solid var(--dark-line);
  border-radius: 14px;
  overflow: hidden;
}
@media (max-width: 860px) { .proof-stats { grid-template-columns: 1fr; } }
.stat {
  padding: 40px 32px;
  border-right: 1px solid var(--dark-line);
  background: var(--dark-surface);
}
.stat:last-child { border-right: none; }
@media (max-width: 860px) {
  .stat { border-right: none; border-bottom: 1px solid var(--dark-line); }
  .stat:last-child { border-bottom: none; }
}
.stat-num {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 80px; font-weight: 900;
  background: linear-gradient(135deg, var(--lime) 0%, var(--violet) 70%, var(--indigo) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}
.stat-label {
  font-family: 'Geist Mono', monospace;
  font-size: 11px; color: var(--dark-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 500;
}
.stat-desc {
  font-size: 14px; color: var(--dark-muted);
  line-height: 1.55;
}

.testimonial {
  max-width: 880px;
  padding: 56px 48px;
  border: 1px solid var(--dark-line);
  border-radius: 14px;
  background: var(--dark-surface);
  position: relative;
}
@media (max-width: 760px) { .testimonial { padding: 36px 28px; } }
.testimonial-mark {
  position: absolute; top: -18px; left: 40px;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 96px; color: var(--lime);
  line-height: 1; font-weight: 900;
}
.testimonial blockquote {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 600;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.3;
  color: var(--dark-text);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.testimonial blockquote span.gradient {
  background: linear-gradient(105deg, var(--lime) 0%, var(--violet) 70%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.testimonial-attr {
  display: flex; gap: 16px; align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--dark-line);
}
.attr-avatar {
  width: 44px; height: 44px; border-radius: 999px;
  background: linear-gradient(135deg, var(--lime), var(--violet));
  color: var(--dark-bg);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 18px; font-weight: 800;
}
.attr-name { color: var(--dark-text); font-size: 14.5px; font-weight: 600; }
.attr-role { color: var(--dark-muted); font-size: 13px; }

/* === ICP === */
.icp-cols {
  display: grid; grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 760px) { .icp-cols { grid-template-columns: 1fr; } }
.icp-col {
  padding: 48px 40px;
  border-right: 1px solid var(--line);
}
.icp-col:last-child { border-right: none; }
@media (max-width: 760px) {
  .icp-col { border-right: none; border-bottom: 1px solid var(--line); padding: 36px 28px; }
  .icp-col:last-child { border-bottom: none; }
}
.icp-col h3 {
  font-family: 'Geist Mono', monospace;
  font-size: 12px; letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
  font-weight: 500;
}
.icp-yes h3 { color: var(--violet); }
.icp-no h3 { color: var(--muted); }
.icp-list { list-style: none; }
.icp-list li {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 600;
  font-size: 20px; line-height: 1.35;
  color: var(--ink); padding: 16px 0;
  border-top: 1px dashed var(--line);
  letter-spacing: -0.015em;
  display: flex; align-items: baseline; gap: 16px;
}
.icp-list li:first-child { border-top: none; padding-top: 0; }
.icp-list li::before {
  font-family: 'Geist Mono', monospace;
  font-size: 14px;
  flex-shrink: 0;
  font-weight: 600;
}
.icp-yes .icp-list li::before { content: '+'; color: var(--lime-dark); }
.icp-no .icp-list li { color: var(--muted); font-weight: 500; }
.icp-no .icp-list li::before { content: '−'; color: var(--muted-light); }

/* === FAQ === */
.faq-grid {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 80px; align-items: start;
}
@media (max-width: 860px) { .faq-grid { grid-template-columns: 1fr; gap: 40px; } }
.faq-list { display: flex; flex-direction: column; }
details.faq-item {
  border-top: 1px solid var(--line);
  padding: 24px 0;
  cursor: pointer;
}
details.faq-item:last-child { border-bottom: 1px solid var(--line); }
details.faq-item summary {
  list-style: none;
  display: flex; justify-content: space-between;
  align-items: center; gap: 24px;
  cursor: pointer;
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 700;
  font-size: 20px; line-height: 1.3;
  color: var(--ink); letter-spacing: -0.02em;
  transition: color 0.2s;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after {
  content: '+'; font-family: 'Geist Mono', monospace;
  font-size: 24px; color: var(--violet);
  transition: transform 0.3s; line-height: 1;
  flex-shrink: 0;
  font-weight: 500;
}
details.faq-item[open] summary::after { content: '−'; }
details.faq-item[open] summary { color: var(--violet); }
details.faq-item p {
  margin-top: 16px;
  font-size: 15px; color: var(--muted);
  line-height: 1.65;
  max-width: 64ch;
}

/* === CTA === */
.cta {
  padding: 140px 0 100px;
  border-top: 1px solid var(--line);
  text-align: center;
}
.cta h2 {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 6.5vw, 92px);
  line-height: 0.95; letter-spacing: -0.04em;
  color: var(--ink);
  max-width: 18ch; margin: 0 auto 24px;
}
.cta p {
  font-size: 18px; color: var(--muted);
  max-width: 56ch; margin: 0 auto 40px;
  line-height: 1.55;
}

/* === STEPS (homepage + model) === */
.steps { display: flex; flex-direction: column; }
.step {
  padding: 32px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: start;
  transition: padding-left 0.3s;
}
.step:hover { padding-left: 12px; }
.step:last-child { border-bottom: 1px solid var(--line); }
.step-num {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 56px; font-weight: 900;
  color: var(--lime-dark); line-height: 0.9;
  letter-spacing: -0.04em;
}
.step-content h3 {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 700; font-size: 26px;
  line-height: 1.15; margin-bottom: 12px;
  color: var(--ink); letter-spacing: -0.02em;
}
.step-content p {
  font-size: 15px; color: var(--muted);
  line-height: 1.65;
}
.step-content .highlight {
  color: var(--ink); font-weight: 600;
  border-bottom: 2px solid var(--lime);
  padding-bottom: 1px;
}

/* === FOOTER === */
footer {
  border-top: 1px solid var(--line);
  padding: 64px 0 36px;
  background: var(--surface);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand .logo { margin-bottom: 20px; display: inline-flex; }
.footer-brand .logo img { height: 36px; }
.footer-brand p {
  font-size: 14px; color: var(--muted);
  line-height: 1.6; max-width: 36ch;
  margin-bottom: 24px;
}
.footer-col h4 {
  font-family: 'Geist Mono', monospace;
  font-size: 11px; color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px; font-weight: 500;
}
.footer-col a {
  display: block; padding: 6px 0;
  color: var(--ink-soft); text-decoration: none;
  font-size: 14.5px; transition: color 0.2s;
  font-weight: 500;
}
.footer-col a:hover { color: var(--violet); }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 16px;
}
.footer-bottom p {
  font-family: 'Geist Mono', monospace;
  font-size: 11px; color: var(--muted);
  letter-spacing: 0.06em; text-transform: uppercase;
  font-weight: 500;
}
.partners {
  display: flex; gap: 8px; flex-wrap: wrap;
  align-items: center;
  margin-top: 8px;
}
.partner {
  font-family: 'Geist Mono', monospace;
  font-size: 10.5px; color: var(--muted);
  letter-spacing: 0.06em;
  padding: 5px 10px;
  border: 1px solid var(--line);
  border-radius: 4px;
  text-transform: uppercase;
  background: var(--bg);
  font-weight: 500;
}

/* === ANIMATIONS === */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  animation: fadeUp 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.delay-1 { animation-delay: 0.05s; }
.delay-2 { animation-delay: 0.18s; }
.delay-3 { animation-delay: 0.32s; }
.delay-4 { animation-delay: 0.46s; }
.delay-5 { animation-delay: 0.6s; }

/* === SUBTLE GRADIENT MESH ON HERO === */
.page-hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201, 226, 101, 0.18), transparent 60%);
  pointer-events: none;
  z-index: -1;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: 100px; left: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15), transparent 60%);
  pointer-events: none;
  z-index: -1;
}

/* =========================================================
   BLOG INDEX
   ========================================================= */
.blog-list {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--line);
}
.blog-card {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 48px;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: var(--ink);
  transition: padding-left 0.3s, padding-right 0.3s;
}
.blog-card:hover {
  padding-left: 16px;
  background: linear-gradient(90deg, rgba(201, 226, 101, 0.06), transparent 60%);
}
.blog-card:hover h3 { color: var(--violet); }
@media (max-width: 760px) {
  .blog-card { grid-template-columns: 1fr; gap: 12px; padding: 32px 0; }
}
.blog-meta {
  display: flex; flex-direction: column; gap: 4px;
}
.blog-tag {
  font-family: 'Geist Mono', monospace;
  font-size: 11px; color: var(--violet);
  letter-spacing: 0.08em; text-transform: uppercase;
  font-weight: 500;
}
.blog-date {
  font-family: 'Geist Mono', monospace;
  font-size: 11px; color: var(--muted-light);
  letter-spacing: 0.04em;
}
.blog-content h3 {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 800;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 12px;
  transition: color 0.2s;
}
.blog-content p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.55;
  max-width: 64ch;
}
.blog-arrow {
  font-family: 'Geist Mono', monospace;
  font-size: 24px;
  color: var(--lime-dark);
  align-self: center;
  font-weight: 500;
  transition: transform 0.3s;
}
.blog-card:hover .blog-arrow { transform: translateX(8px); }
@media (max-width: 760px) { .blog-arrow { display: none; } }

/* =========================================================
   BLOG POST (article)
   ========================================================= */
.article-hero {
  padding: 96px 0 56px;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.article-hero::before {
  content: '';
  position: absolute;
  top: -150px; right: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201, 226, 101, 0.15), transparent 60%);
  pointer-events: none;
  z-index: -1;
}
.article-meta-top {
  display: flex; gap: 16px; align-items: center;
  margin-bottom: 24px;
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  flex-wrap: wrap;
}
.article-meta-top .tag { color: var(--violet); font-weight: 500; }
.article-meta-top .sep { color: var(--muted-light); }
.article-meta-top .date,
.article-meta-top .read-time {
  color: var(--muted); font-weight: 500;
}
.article-hero h1 {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  max-width: 22ch;
  margin-bottom: 32px;
}
.article-hero h1 .gradient {
  background: linear-gradient(105deg, var(--lime) 0%, var(--violet) 60%, var(--indigo) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.article-hero .deck {
  font-size: 19px;
  line-height: 1.5;
  color: var(--muted);
  max-width: 56ch;
}
.article-author {
  display: flex; gap: 14px; align-items: center;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.article-author .avatar {
  width: 40px; height: 40px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--lime), var(--violet));
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 16px; font-weight: 800;
}
.article-author .info { line-height: 1.3; }
.article-author .name {
  font-size: 14px; font-weight: 600;
  color: var(--ink);
}
.article-author .role {
  font-size: 12.5px; color: var(--muted);
}

.article-body {
  padding: 64px 0 96px;
  max-width: 720px;
  margin: 0 auto;
}
.article-body p {
  font-size: 17.5px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.article-body p.lead-para {
  font-size: 21px;
  line-height: 1.5;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}
.article-body h2 {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 800;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 56px 0 20px;
}
.article-body h3 {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 40px 0 16px;
}
.article-body ul,
.article-body ol {
  margin: 0 0 28px 4px;
  padding-left: 24px;
}
.article-body li {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 12px;
  padding-left: 8px;
}
.article-body ul li::marker { color: var(--lime-dark); }
.article-body ol li::marker {
  color: var(--violet);
  font-weight: 700;
  font-family: 'Geist Mono', monospace;
}
.article-body strong {
  font-weight: 700;
  color: var(--ink);
}
.article-body blockquote {
  border-left: 3px solid var(--lime);
  padding: 12px 0 12px 28px;
  margin: 36px 0;
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.35;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.article-body .callout-box {
  padding: 28px 32px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  margin: 36px 0;
}
.article-body .callout-box .label {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  color: var(--violet);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 500;
}
.article-body .callout-box p:last-child { margin-bottom: 0; }

.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  font-size: 14.5px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.article-body th,
.article-body td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
.article-body th:last-child,
.article-body td:last-child { border-right: none; }
.article-body th {
  background: var(--surface);
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.article-body tr:last-child td { border-bottom: none; }

.article-cta {
  background: var(--ink);
  color: var(--bg);
  padding: 48px;
  border-radius: 14px;
  margin: 48px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
}
@media (max-width: 760px) {
  .article-cta { grid-template-columns: 1fr; }
}
.article-cta h3 {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 800;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--bg);
  margin-bottom: 8px;
}
.article-cta h3 span {
  color: var(--lime);
}
.article-cta p {
  color: var(--muted-light);
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
}

.article-end {
  border-top: 1px solid var(--line);
  padding: 48px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.article-end .back {
  font-family: 'Geist Mono', monospace;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color 0.2s;
}
.article-end .back:hover { color: var(--violet); }

/* Related posts */
.related {
  background: var(--surface);
  padding: 96px 0;
}
.related h2 {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 800;
  font-size: 36px;
  margin-bottom: 40px;
  letter-spacing: -0.03em;
}

/* =========================================================
   CONTACT FORM (beefed up)
   ========================================================= */
.form-hero {
  padding: 64px 0 32px;
}
.form-section {
  padding: 32px 0 96px;
}
.big-form {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 56px;
  max-width: 880px;
  margin: 0 auto;
  box-shadow: 0 1px 0 var(--line), 0 20px 80px -20px rgba(139, 92, 246, 0.12);
  position: relative;
  overflow: hidden;
}
.big-form::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(201, 226, 101, 0.18), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.big-form > * { position: relative; z-index: 1; }
@media (max-width: 760px) { .big-form { padding: 36px 28px; } }
.big-form .form-tag {
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  color: var(--violet);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 16px;
}
.big-form h2 {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 16px;
  max-width: 16ch;
}
.big-form h2 .gradient {
  background: linear-gradient(105deg, var(--lime) 0%, var(--violet) 60%, var(--indigo) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.big-form > p.intro {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.55;
  max-width: 56ch;
  margin-bottom: 40px;
}

.big-form .field { margin-bottom: 28px; }
.big-form .field-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; margin-bottom: 28px;
}
@media (max-width: 540px) { .big-form .field-row { grid-template-columns: 1fr; } }
.big-form label {
  display: block;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.005em;
  margin-bottom: 10px;
}
.big-form input,
.big-form select,
.big-form textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  color: var(--ink);
  font-family: 'Geist', sans-serif;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.2s;
}
.big-form input:focus,
.big-form select:focus,
.big-form textarea:focus {
  outline: none;
  border-color: var(--violet);
  background: var(--bg);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
}
.big-form textarea {
  min-height: 140px; resize: vertical;
}
.big-form .field-help {
  font-size: 12.5px; color: var(--muted-light);
  margin-top: 8px; line-height: 1.4;
}
.big-form .submit-row {
  display: flex; gap: 16px; align-items: center;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
  justify-content: space-between;
}
.big-form button[type="submit"],
.big-form .submit-btn {
  background: var(--lime);
  color: var(--ink);
  padding: 18px 32px;
  border: none;
  border-radius: 10px;
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.big-form button[type="submit"]:hover,
.big-form .submit-btn:hover {
  background: var(--ink);
  color: var(--lime);
  transform: translateY(-1px);
}
.big-form .submit-note {
  font-size: 13px;
  color: var(--muted);
  max-width: 36ch;
  line-height: 1.4;
}

