/* ── HERO ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 7.5rem 2.5rem 5rem;
  background: linear-gradient(160deg, #f0f5fb 0%, #e8f0f9 40%, #f5f8fd 100%);
  position: relative; overflow: hidden;
}
.hero-lines {
  position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(37,99,168,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(37,99,168,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
}
.hero-orb1 { position: absolute; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(37,99,168,0.08) 0%, transparent 70%); top: -150px; right: -100px; pointer-events: none; }
.hero-orb2 { position: absolute; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(15,124,114,0.07) 0%, transparent 70%); bottom: -80px; left: 8%; pointer-events: none; }
.hero-inner { position: relative; max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: 5rem; align-items: start; width: 100%; }
.hero-inner > * { min-width: 0; }

/* ── HERO BADGE ── */
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: white; border: 1px solid var(--border2);
  color: var(--muted); font-size: 0.76rem; font-weight: 600;
  padding: 0.35rem 0.9rem; border-radius: 100px;
  margin-bottom: 1.75rem; box-shadow: var(--shadow);
}
.live-dot { width: 7px; height: 7px; background: var(--teal); border-radius: 50%; animation: livepulse 2.2s ease-in-out infinite; }
@keyframes livepulse { 0%,100%{opacity:1;box-shadow:0 0 0 0 rgba(15,124,114,0.4);} 50%{opacity:.7;box-shadow:0 0 0 5px rgba(15,124,114,0);} }

/* ── TYPING ── */
.h1-line1 { display: block; }
.h1-type  { display: block; color: var(--accent); min-height: 2.8em; font-style: italic; word-break: normal; overflow-wrap: break-word; hyphens: auto; max-width: 100%; }
.h1-line3 { display: block; font-size: 0.55em; font-weight: 600; font-style: normal; font-family: 'Source Sans 3', sans-serif; color: var(--muted); margin-top: 0.5em; letter-spacing: 0.02em; text-transform: uppercase; }
.cursor   { display: inline-block; width: 2px; height: 0.8em; background: var(--accent); margin-left: 3px; vertical-align: middle; animation: cblink 1s step-end infinite; }
@keyframes cblink { 0%,100%{opacity:1} 50%{opacity:0} }

/* ── STATS ── */
.hero-stats { display: flex; gap: 2.5rem; }
.hs-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--navy); line-height: 1; margin-bottom: 0.25rem; }
.hs-lbl { font-size: 0.75rem; color: var(--dimmed); font-weight: 500; line-height: 1.4; }

/* ── HERO CARDS ── */
.hero-cards { display: flex; flex-direction: column; gap: 1rem; }
.hcard { background: white; border: 1px solid var(--border); border-radius: 12px; padding: 1.1rem 1.25rem; display: flex; align-items: flex-start; gap: 0.9rem; box-shadow: var(--shadow); opacity: 0; transform: translateX(24px); transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.25s; }
.hcard.in { opacity: 1; transform: translateX(0); }
.hcard:hover { box-shadow: var(--shadow2); transform: translateY(-2px); }
.hcard-icon { width: 38px; height: 38px; border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.hci-b{background:rgba(37,99,168,0.1);} .hci-t{background:rgba(15,124,114,0.1);} .hci-a{background:rgba(180,83,9,0.1);} .hci-g{background:rgba(22,163,74,0.1);}
.hcard h4 { font-size: 0.84rem; font-weight: 600; color: var(--navy); font-family: 'Source Sans 3', sans-serif; margin-bottom: 0.2rem; }
.hcard p  { font-size: 0.77rem; color: var(--muted); line-height: 1.55; }
.htag { display: inline-block; font-size: 0.65rem; font-weight: 600; padding: 0.15rem 0.5rem; border-radius: 4px; margin-top: 0.4rem; letter-spacing: 0.04em; text-transform: uppercase; }
.htk{background:rgba(37,99,168,0.1);color:var(--accent);} .hth{background:rgba(15,124,114,0.1);color:var(--teal);} .htp{background:rgba(124,92,191,0.12);color:#6b46c1;} .htd{background:rgba(45,166,107,0.14);color:#1f8a5a;}

/* ── PAGE HERO (inner pages) ── */
.page-hero { background: linear-gradient(160deg, #f0f5fb 0%, #e8f0f9 100%); padding: 8rem 2.5rem 4rem; }
.page-hero .container { max-width: 800px; }
.page-hero h1 { margin-bottom: 1rem; }
.page-hero p  { font-size: 1.05rem; max-width: 600px; }

/* ── PHASE TIMELINE ── */
.phases-sec { background: var(--bg2); }
.phases-row { display: flex; margin-top: 3.5rem; position: relative; }
.ph-track { position: absolute; top: 28px; left: 28px; right: 28px; height: 2px; background: var(--border2); z-index: 0; overflow: hidden; }
.ph-bar { height: 100%; background: linear-gradient(90deg, var(--accent), var(--teal)); width: 0%; transition: width 0.45s ease; }
.phase { flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 0.5rem; cursor: pointer; position: relative; z-index: 1; }
.ph-node { width: 56px; height: 56px; border-radius: 50%; background: white; border: 2px solid var(--border2); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 0.9rem; transition: all 0.3s; box-shadow: var(--shadow); }
.phase:hover .ph-node { border-color: var(--accent); }
.phase.act .ph-node   { border-color: var(--accent); background: rgba(37,99,168,0.1); box-shadow: 0 0 0 4px rgba(37,99,168,0.12); transform: scale(1.08); }
.phase h3 { font-size: 0.85rem; font-weight: 600; color: var(--navy); font-family: 'Source Sans 3', sans-serif; margin-bottom: 0.3rem; }
.phase p  { font-size: 0.72rem; color: var(--dimmed); line-height: 1.4; }
.ph-detail { display: none; margin-top: 2rem; background: white; border: 1px solid var(--border); border-radius: 14px; padding: 2rem 2.5rem; border-top: 3px solid var(--accent); box-shadow: var(--shadow); animation: slideIn 0.3s ease; }
@keyframes slideIn { from{opacity:0;transform:translateY(8px)} to{opacity:1;transform:translateY(0)} }
.ph-detail.open { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.dcol h4 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; margin-bottom: 1rem; font-family: 'Source Sans 3', sans-serif; }
.dcol.ki h4    { color: var(--accent); }
.dcol.human h4 { color: var(--teal); }
.dcol ul { list-style: none; }
.dcol li { font-size: 0.88rem; color: var(--muted); padding: 0.48rem 0; border-bottom: 1px solid var(--border); display: flex; align-items: flex-start; gap: 0.6rem; }
.dcol li:last-child { border-bottom: none; }
.dcol.ki li::before    { content: '→'; color: var(--accent); font-weight: 700; flex-shrink: 0; }
.dcol.human li::before { content: '→'; color: var(--teal);   font-weight: 700; flex-shrink: 0; }

/* ── CARD GRID ── */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 3rem; }
.card { background: var(--bg2); border: 1px solid var(--border); border-radius: 12px; padding: 1.6rem; text-decoration: none; color: inherit; transition: all 0.25s; display: block; }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow2); border-color: var(--accent); background: white; }
.card-icon  { width: 42px; height: 42px; border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 1rem; }
.ci1{background:rgba(37,99,168,0.1);} .ci2{background:rgba(220,38,38,0.08);} .ci3{background:rgba(180,83,9,0.1);} .ci4{background:rgba(15,124,114,0.1);} .ci5{background:rgba(124,58,237,0.1);} .ci6{background:rgba(22,163,74,0.1);}
.card h3    { font-size: 0.93rem; font-weight: 600; color: var(--navy); margin-bottom: 0.4rem; font-family: 'Source Sans 3', sans-serif; }
.card p     { font-size: 0.81rem; color: var(--muted); line-height: 1.65; }
.card-more  { display: inline-block; margin-top: 0.85rem; font-size: 0.73rem; font-weight: 600; color: var(--accent); }

/* ── COMPARISON TABLE ── */
.table-wrap { background: white; border: 1px solid var(--border); border-radius: 14px; overflow: hidden; box-shadow: var(--shadow); margin-top: 2.5rem; }
table  { width: 100%; border-collapse: collapse; font-size: 0.87rem; }
thead tr { background: var(--bg3); }
th { padding: 1rem 1.2rem; text-align: left; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--dimmed); border-bottom: 1px solid var(--border); }
th.hl { color: var(--accent); background: rgba(37,99,168,0.06); }
td { padding: 0.88rem 1.2rem; border-bottom: 1px solid var(--border); color: var(--muted); vertical-align: middle; }
td.hl { background: rgba(37,99,168,0.04); color: var(--navy); font-weight: 500; }
tr:last-child td { border-bottom: none; }
tr:hover td    { background: var(--bg3); }
tr:hover td.hl { background: rgba(37,99,168,0.08); }
.yes  {color:var(--teal);font-weight:600;} .no{color:#dc2626;} .maybe{color:var(--amber);}

/* ── PROMPT CARDS ── */
.prompt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 3rem; }
.pcard { background: var(--navy); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow2); }
.pcard-head { background: rgba(255,255,255,0.06); padding: 0.75rem 1.1rem; display: flex; align-items: center; gap: 0.45rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.pd{width:8px;height:8px;border-radius:50%;} .pdr{background:#ef4444;} .pdy{background:#f59e0b;} .pdg{background:#22c55e;}
.plbl { font-size: 0.72rem; color: rgba(255,255,255,0.45); margin-left: 0.3rem; font-weight: 500; }
.pcard-body { padding: 1.25rem; font-family: 'Courier New', monospace; font-size: 0.8rem; color: rgba(255,255,255,0.65); line-height: 1.8; }
.pk{color:#93c5fd;font-weight:600;} .pv{color:#6ee7b7;} .pcm{color:rgba(255,255,255,0.35);font-style:italic;}

/* ── PDF SECTION ── */
.pdf-sec { background: linear-gradient(145deg, var(--navy) 0%, #1e3a5f 100%); padding: 5.5rem 2.5rem; position: relative; overflow: hidden; }
.pdf-sec::before { content:''; position:absolute; inset:0; background: radial-gradient(ellipse at 80% 40%, rgba(37,99,168,0.25) 0%, transparent 55%), radial-gradient(ellipse at 10% 70%, rgba(15,124,114,0.15) 0%, transparent 50%); }
.pdf-grid { position: relative; max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 340px; gap: 4rem; align-items: center; }
.pdf-ey { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #5eead4; margin-bottom: 1rem; }
.pdf-grid h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.7rem, 2.8vw, 2.3rem); font-weight: 700; color: white; margin-bottom: 0.75rem; }
.pdf-grid > div > p { color: rgba(255,255,255,0.6); font-size: 0.95rem; line-height: 1.75; margin-bottom: 1.5rem; }
.pdf-bullets { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.pdf-bullets li { font-size: 0.87rem; color: rgba(255,255,255,0.65); display: flex; align-items: center; gap: 0.6rem; }
.pdf-bullets li::before { content: '✓'; color: #5eead4; font-weight: 700; }
.pdf-box { background: white; border-radius: 14px; padding: 2rem; box-shadow: 0 16px 50px rgba(0,0,0,0.25); }
.pdf-box h3 { font-family:'Playfair Display',serif; font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 0.35rem; }
.pdf-box > p { font-size: 0.78rem; color: var(--dimmed); margin-bottom: 1.5rem; }
.pff { margin-bottom: 0.75rem; }
.pff input { width: 100%; padding: 0.8rem 1rem; background: var(--bg2); border: 1.5px solid var(--border); border-radius: 7px; color: var(--text); font-size: 0.88rem; font-family: inherit; outline: none; transition: border 0.2s; }
.pff input::placeholder { color: var(--dimmed); }
.pff input:focus { border-color: var(--accent); }
.pdf-note { font-size: 0.7rem; color: var(--dimmed); text-align: center; margin-top: 0.75rem; }

/* ── LEAD CAPTURE ── */
.lead-capture {
  position: relative;
  padding: 88px 0;
  border-top: 1px solid var(--line, var(--border));
  border-bottom: 1px solid var(--line, var(--border));
  overflow: hidden;
}

.lead-capture::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(14, 107, 98, 0.12), transparent 26%),
    radial-gradient(circle at 16% 72%, rgba(176, 65, 27, 0.08), transparent 24%);
  pointer-events: none;
}

.lead-capture .container {
  position: relative;
}

.lead-capture-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 42px;
  align-items: start;
}

.lead-capture-copy h2 {
  margin-bottom: 16px;
  font-size: clamp(34px, 4.8vw, 64px);
  line-height: 1.04;
}

.lead-capture-copy h2 em {
  color: var(--hi, var(--accent));
  font-style: italic;
}

.lead-capture-copy > p {
  max-width: 640px;
  margin-bottom: 22px;
  color: var(--ink-2, var(--muted));
  font-size: 18px;
  line-height: 1.65;
}

.lead-capture-eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lead-capture-stage {
  position: relative;
  max-width: 560px;
  min-height: 560px;
  margin: 30px 0 24px;
  perspective: 1600px;
}

.lead-capture-shadow {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 8px;
  height: 44px;
  background: radial-gradient(ellipse at center, rgba(20, 24, 31, 0.26), transparent 72%);
  filter: blur(16px);
}

.lead-capture-object {
  position: relative;
  max-width: 560px;
  min-height: 560px;
}

.lead-capture-object-back,
.lead-capture-object-front {
  position: absolute;
  overflow: hidden;
  border-radius: 22px;
}

.lead-capture-object-back {
  right: 82px;
  bottom: 30px;
  z-index: 1;
  width: 230px;
  min-height: 240px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  box-shadow: 0 30px 80px -34px rgba(0, 0, 0, 0.32);
  transform: rotate(-7deg);
  backdrop-filter: blur(8px);
}

.lead-capture-window-head {
  display: flex;
  gap: 7px;
  margin-bottom: 18px;
}

.lead-capture-window-code {
  color: color-mix(in oklab, var(--ink, #14181f) 82%, transparent);
  font-family: "JetBrains Mono", "IBM Plex Mono", ui-monospace, monospace;
  font-size: 13px;
  line-height: 1.85;
}

.lead-capture-window-code .pk {
  color: var(--accent);
}

.lead-capture-window-code .pv {
  background: color-mix(in oklab, var(--accent) 16%, transparent);
}

.lead-capture-window-code .pcm {
  display: inline-block;
  margin-top: 10px;
  color: color-mix(in oklab, var(--ink, #14181f) 46%, transparent);
}

.lead-capture-object-front {
  left: 26px;
  bottom: 0;
  z-index: 2;
  width: clamp(260px, 30vw, 370px);
  aspect-ratio: 5 / 7;
  border: 1px solid var(--line, var(--border));
  background: var(--paper, #f8f5ee);
  box-shadow: 0 40px 80px -30px rgba(20, 24, 31, 0.4), 0 18px 30px -20px rgba(20, 24, 31, 0.25);
}

.lead-capture-object-edge {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: -8px;
  width: 8px;
  background: linear-gradient(90deg, color-mix(in oklab, var(--paper, #f8f5ee) 70%, var(--line-2, #c4bba6)), var(--paper, #f8f5ee));
  border-left: 1px solid var(--line-2, var(--border));
  border-radius: 2px 0 0 2px;
}

.lead-capture-object-face {
  position: absolute;
  inset: 0;
  padding: 28px 26px;
  background: linear-gradient(135deg, transparent 0%, color-mix(in oklab, var(--paper, #f8f5ee) 96%, var(--ink, #14181f)) 120%), var(--paper, #f8f5ee);
}

.lead-capture-object-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.lead-capture-object-tag {
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--ink, #14181f);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.lead-capture-object-title {
  display: flex;
  flex: 1;
  flex-direction: column;
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 2.2vw, 36px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.lead-capture-object-accent {
  margin: 4px 0;
  font-size: 0.6em;
  font-style: italic;
  font-weight: 400;
  color: var(--hi, var(--accent));
}

.lead-capture-object-rule {
  height: 1px;
  margin: 16px 0;
  background: var(--line, var(--border));
}

.lead-capture-object-foot {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding-top: 12px;
  border-top: 1px solid var(--line, var(--border));
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.lead-capture-object-mark {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.lead-capture-object-pages {
  margin-left: auto;
}

.lead-capture-object-corner {
  position: absolute;
  top: 0;
  right: 0;
  width: 26px;
  height: 26px;
  background: linear-gradient(225deg, var(--paper-2, #f1ece1) 50%, transparent 50%);
  border-left: 1px solid var(--line, var(--border));
  border-bottom: 1px solid var(--line, var(--border));
}

.lead-capture-badge {
  position: absolute;
  top: 16px;
  right: 12px;
  z-index: 3;
  display: flex;
  width: 88px;
  height: 88px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--paper, #f8f5ee);
  box-shadow: 0 14px 30px -12px rgba(14, 107, 98, 0.55);
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-style: italic;
  font-weight: 700;
  transform: rotate(-11deg);
}

.lead-capture-points {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lead-capture-points li {
  position: relative;
  padding-left: 18px;
  color: var(--ink-2, var(--muted));
  font-size: 14px;
  line-height: 1.6;
}

.lead-capture-points li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.lead-capture-form-shell {
  padding: 30px 32px;
  border: 1px solid var(--line, var(--border));
  border-radius: 16px;
  background: color-mix(in oklab, var(--paper, #f8f5ee) 90%, white 10%);
  box-shadow: var(--shadow-1, 0 1px 0 rgba(20, 24, 31, 0.04), 0 12px 30px -18px rgba(20, 24, 31, 0.25));
}

.lead-capture-form h3 {
  margin-bottom: 10px;
  color: var(--ink, var(--navy));
}

.lead-capture-form-intro {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.lead-capture-field {
  margin-bottom: 14px;
}

.lead-capture-field label,
.lead-capture-checkbox {
  display: block;
  color: var(--ink, var(--navy));
  font-size: 13px;
  font-weight: 700;
}

.lead-capture-field input,
.lead-capture-field select {
  width: 100%;
  margin-top: 8px;
  padding: 14px 15px;
  border: 1px solid var(--line-2, var(--border2));
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink, var(--text));
  font: 500 15px/1.35 "Manrope", "Source Sans 3", sans-serif;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  appearance: none;
}

.lead-capture-field input:focus,
.lead-capture-field select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--accent) 16%, transparent);
  background: white;
}

.lead-capture-field.is-hidden,
.lead-capture-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.lead-capture-consent {
  margin: 18px 0 16px;
  padding: 16px 16px 14px;
  border: 1px solid color-mix(in oklab, var(--accent) 18%, var(--line, var(--border)));
  border-radius: 12px;
  background: color-mix(in oklab, var(--accent) 6%, white 94%);
}

.lead-capture-checkbox {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
}

.lead-capture-checkbox input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--accent);
}

.lead-capture-consent p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.lead-capture-submit {
  width: 100%;
  justify-content: center;
}

.lead-capture-submit:disabled {
  opacity: 0.7;
  cursor: wait;
}

.lead-capture-status {
  min-height: 24px;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}

.lead-capture-status[data-state="success"] {
  color: var(--accent);
}

.lead-capture-status[data-state="error"] {
  color: #b64b1f;
}

.lead-capture-status[data-state="loading"] {
  color: var(--muted);
}

.lead-capture-fineprint {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.lead-capture-fineprint code {
  font-size: 11px;
}

/* ── AUDITGUIDE CTA ── */
.ag-sec { background: var(--bg2); padding: 5.5rem 2.5rem; }
.ag-box { max-width: 800px; margin: 0 auto; background: white; border: 1px solid var(--border); border-radius: 18px; padding: 3.5rem; text-align: center; box-shadow: var(--shadow2); }
.ag-mark { width: 58px; height: 58px; background: linear-gradient(135deg, var(--accent), var(--teal)); border-radius: 14px; margin: 0 auto 1.5rem; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.ag-box h2 { font-family:'Playfair Display',serif; font-size: 1.85rem; font-weight: 700; margin-bottom: 0.75rem; }
.ag-box > p { color: var(--muted); font-size: 0.96rem; line-height: 1.75; max-width: 520px; margin: 0 auto 1.75rem; }
.ag-chips { display: flex; justify-content: center; gap: 0.65rem; flex-wrap: wrap; margin-bottom: 2rem; }
.ag-chip { background: var(--bg3); border: 1px solid var(--border2); color: var(--muted); font-size: 0.75rem; font-weight: 500; padding: 0.35rem 0.85rem; border-radius: 100px; }

/* ── BLOG CARDS ── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.blog-card { background: white; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; text-decoration: none; color: inherit; transition: all 0.25s; display: block; }
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow2); }
.blog-card-body { padding: 1.5rem; }
.blog-tag { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.5rem; }
.blog-card h3 { font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 0.5rem; line-height: 1.4; font-family: 'Source Sans 3', sans-serif; }
.blog-card p  { font-size: 0.82rem; color: var(--muted); line-height: 1.65; }
.blog-read    { display: inline-block; margin-top: 1rem; font-size: 0.78rem; font-weight: 600; color: var(--accent); }

/* ── PROSE (blog articles) ── */
.prose { max-width: 720px; margin: 0 auto; }
.prose h2 { font-size: 1.6rem; margin: 2.5rem 0 1rem; }
.prose h3 { font-size: 1.15rem; margin: 2rem 0 0.75rem; font-family: 'Source Sans 3', sans-serif; font-weight: 600; }
.prose p  { margin-bottom: 1.25rem; font-size: 1rem; }
.prose ul, .prose ol { margin: 1rem 0 1.25rem 1.5rem; }
.prose li { margin-bottom: 0.4rem; color: var(--muted); font-size: 1rem; line-height: 1.7; }

/* ── RESPONSIVE ── */
@media(max-width:900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-cards { display: none; }
  .card-grid  { grid-template-columns: 1fr 1fr; }
  .pdf-grid   { grid-template-columns: 1fr; }
  .lead-capture-grid { grid-template-columns: 1fr; }
  .prompt-grid{ grid-template-columns: 1fr; }
  .ph-detail.open { grid-template-columns: 1fr; }
  .blog-grid  { grid-template-columns: 1fr 1fr; }
}
@media(max-width:580px) {
  .card-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; }
  .page-hero { padding: 5.5rem 1.25rem 3rem; }
  .page-hero p { max-width: 100%; }
  .lead-capture { padding: 64px 0; }
  .lead-capture-stage { min-height: 420px; margin-top: 24px; }
  .lead-capture-object { min-height: 420px; }
  .lead-capture-object-front { left: 0; width: min(100%, 300px); }
  .lead-capture-object-back { right: 18px; width: 180px; min-height: 200px; padding: 14px; }
  .lead-capture-badge { width: 70px; height: 70px; font-size: 18px; }
  .lead-capture-form-shell { padding: 20px; }
}
