:root{
  --ink: #F5F7FD;
  --panel: #EBF0FB;
  --panel-border: rgba(12,20,52,0.09);
  --paper: #0C1433;
  --slate: #1E2742;
  --accent: #2355D8;
  --accent-soft: rgba(35,85,216,0.09);
  --orange: #F05C0E;
  --orange-soft: rgba(240,92,14,0.09);
  --status: #2355D8;
  --status-soft: rgba(35,85,216,0.12);
  --divider: rgba(12,20,52,0.08);
  --radius: 10px;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  background: #F5F7FD;
  color:var(--paper);
  font-family:'Inter',sans-serif;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
a{color:inherit;}
img{max-width:100%;}

.wrap{
  max-width:1080px;
  margin:0 auto;
  padding:0 28px;
}

h1,h2,h3{
  font-family:'DM Serif Display',serif;
  margin:0;
  letter-spacing:0.02em;
}
h2{
  font-size:36px;
  font-weight:600;
  line-height:1.15;
}
h3{
  font-size:26px;
  font-weight:600;
  line-height:1.2;
}

/* Default body paragraph — the single source of truth for body copy */
p{
  color:var(--slate);
  font-size:16.5px;
  line-height:1.65;
  margin:0 0 16px;
}

.mono{
  font-family:'IBM Plex Mono',monospace;
}

.eyebrow{
  font-family:'IBM Plex Mono',monospace;
  font-size:12.5px;
  letter-spacing:0.12em;
  text-transform:uppercase;
  color:var(--accent);
  display:inline-flex;
  align-items:center;
  gap:8px;
}

.eyebrow::before{
  content:"";
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--accent);
}

:focus-visible{
  outline:2px solid var(--orange);
  outline-offset:3px;
}

/* ===== Nav ===== */
nav{
  position:sticky;
  top:0;
  z-index:20;
  background:rgba(245,247,253,0.92);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--divider);
}
nav .wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding-top:16px;
  padding-bottom:16px;
}
.logo{
  font-family:'DM Serif Display',serif;
  font-weight:600;
  font-size:24px;
  text-decoration:none;
  letter-spacing:0.06em;
}
.logo span{color:var(--accent);}
.nav-actions{
  display:flex;
  align-items:center;
  gap:26px;
}
.nav-brand{
  display:flex;
  flex-direction:column;
}
.nav-motto{
  font-size:12.5px;
  font-weight:600;
  color:var(--slate);
  letter-spacing:0.02em;
  margin-top:2px;
}

/* ===== Hero ===== */
header.hero{
  padding:96px 0 104px;
  border-bottom:1px solid var(--divider);
  background:
    radial-gradient(ellipse 800px 600px at 10% 70%, rgba(35,85,216,0.10) 0%, transparent 70%),
    radial-gradient(ellipse 600px 400px at 90% 10%, rgba(240,92,14,0.08) 0%, transparent 70%),
    #F5F7FD;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.05fr 0.95fr;
  gap:64px;
  align-items:center;
}
.hero-single{
  grid-template-columns:1fr;
  text-align:center;
  max-width:900px;
  margin:0 auto;
}
.hero-single .lede{
  margin-left:auto;
  margin-right:auto;
}
.hero-single .hero-ctas{
  justify-content:center;
}
.hero .eyebrow{
  font-size:20px;
  letter-spacing:0.04em;
  font-weight:700;
  text-transform:none;
}
.hero .eyebrow::before{
  display:none;
}
.hero .eyebrow-lg{
  font-size:26px;
}
.hero .eyebrow::before{
  width:9px;
  height:9px;
}
.hero h1{
  font-size:50px;
  line-height:1.12;
  font-weight:600;
  margin:18px 0 22px;
}
.hero h1 em{
  font-style:italic;
  color:var(--orange);
}
.hero p.lede{
  font-size:22px;
  color:var(--paper);
  margin-bottom:36px;
}
.hero-ctas{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}
.leadform{
  background:var(--panel);
  border:1px solid var(--panel-border);
  border-radius:var(--radius);
  padding:32px;
  box-shadow:
    0 2px 6px rgba(12,20,52,0.06),
    0 12px 32px rgba(12,20,52,0.08),
    0 40px 80px -20px rgba(35,85,216,0.12);
}
.leadform h3{
  font-size:22px;
  margin-bottom:20px;
}
.leadform-hp{
  position:absolute;
  left:-9999px;
  width:0;
  height:0;
  opacity:0;
  overflow:hidden;
}
.leadform-status{
  font-size:14px;
  margin:0 0 14px;
}
.leadform-status:empty{display:none;}
.leadform-status.is-success{color:var(--accent); font-weight:600;}
.leadform-status.is-error{color:var(--orange); font-weight:600;}
.leadform-fields{
  display:flex;
  flex-direction:column;
  gap:14px;
  margin-bottom:20px;
}
.leadform-field span{
  display:block;
  font-size:12.5px;
  font-weight:600;
  color:var(--slate);
  margin-bottom:6px;
}
.leadform-field input,
.leadform-field textarea{
  width:100%;
  border:1px solid var(--panel-border);
  border-radius:8px;
  padding:10px 12px;
  font-family:'Inter',sans-serif;
  font-size:14.5px;
  color:var(--paper);
  background:#FFFFFF;
}
.leadform-field textarea{resize:vertical;}
.leadform-field input:focus,
.leadform-field textarea:focus{
  outline:2px solid var(--accent);
  outline-offset:1px;
}
.leadform-submit{
  width:100%;
  text-align:center;
  border:none;
  cursor:pointer;
}
.btn-primary,.btn-secondary{
  text-decoration:none;
  font-weight:600;
  padding:14px 24px;
  border-radius:8px;
  font-size:15px;
  display:inline-block;
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
}
.btn-primary{
  background: linear-gradient(135deg, #F05C0E 0%, #D44D08 100%);
  color:#FFFFFF;
}
.btn-primary:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 32px rgba(240,92,14,0.36);
}
.btn-secondary{
  color:var(--accent);
  background:transparent;
  border:1.5px solid var(--accent);
}
.btn-secondary:hover{
  background:var(--accent);
  color:#FFFFFF;
}
/* Compact size for nav-bar CTAs */
.btn-sm{
  font-family:'IBM Plex Mono',monospace;
  font-size:13px;
  font-weight:500;
  padding:9px 17px;
  border-radius:7px;
}
.btn-ghost{
  color:var(--paper);
  text-decoration:none;
  padding:14px 18px;
  font-size:15px;
  border-bottom:2px solid var(--panel-border);
  transition: border-color .15s ease;
}
.btn-ghost:hover{ border-color:var(--accent); color:var(--accent); }
/* CTA buttons that follow body copy need top spacing */
.about .btn-primary{ margin-top:20px; }
.price-box .btn-primary{ margin-top:28px; }

/* ===== Status panel ===== */
.panel{
  background:var(--panel);
  border:1px solid var(--panel-border);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:
    0 2px 6px rgba(12,20,52,0.06),
    0 12px 32px rgba(12,20,52,0.08),
    0 40px 80px -20px rgba(35,85,216,0.12);
}
.panel-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 20px;
  border-bottom:1px solid var(--panel-border);
}
.panel-head .mono{
  font-size:12px;
  color:var(--slate);
  letter-spacing:0.04em;
}
.panel-dots{display:flex; gap:6px;}
.panel-dots span{
  width:8px;height:8px;border-radius:50%;
  background:rgba(12,20,52,0.12);
}
.panel-rows{padding:6px 0;}
.panel-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 20px;
  border-bottom:1px solid var(--panel-border);
}
.panel-row:last-child{border-bottom:none;}
.row-label{
  display:flex;
  align-items:center;
  gap:12px;
  font-size:14.5px;
}
.pulse{
  width:8px;height:8px;border-radius:50%;
  background:var(--accent);
  box-shadow:0 0 0 0 var(--status-soft);
  animation:pulse 2.2s infinite;
  flex:none;
}
@keyframes pulse{
  0%{box-shadow:0 0 0 0 rgba(35,85,216,0.50);}
  70%{box-shadow:0 0 0 7px rgba(35,85,216,0);}
  100%{box-shadow:0 0 0 0 rgba(35,85,216,0);}
}
.row-status{
  font-family:'IBM Plex Mono',monospace;
  font-size:12px;
  color:var(--accent);
  letter-spacing:0.02em;
}
.panel-foot{
  padding:13px 20px;
  font-family:'IBM Plex Mono',monospace;
  font-size:11.5px;
  color:var(--slate);
  background:rgba(12,20,52,0.05);
  display:flex;
  justify-content:space-between;
}

@media (prefers-reduced-motion: reduce){
  .pulse{animation:none;}
}

/* ===== Sections ===== */
section{padding:88px 0;}

/* Pain section — cool blue */
section.alt{
  background: linear-gradient(180deg, #E8EEFB 0%, #DDE6F8 100%);
  border-bottom:1px solid rgba(35,85,216,0.12);
  border-top:1px solid rgba(35,85,216,0.12);
}

/* Pricing section — warm orange */
section.pricing-section{
  background: linear-gradient(180deg, #FEF2E8 0%, #FDE5D0 100%);
  border-color: rgba(240,92,14,0.15);
}
.pricing-section .wrap{ text-align:center; }

.section-head{
  margin-bottom:48px;
}
.section-sub{
  font-family:'DM Serif Display',serif;
  font-style:italic;
  color:var(--slate);
  font-size:26px;
  font-weight:400;
  margin:10px 0 0;
  line-height:1.4;
}

/* What's included cards */
.cards{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}
.card{
  border:1px solid transparent;
  border-top-width:3px;
  border-radius:var(--radius);
  padding:28px 24px;
  transition: box-shadow .2s ease, transform .2s ease;
}
.card--blue{
  background: linear-gradient(160deg, #EBF1FE 0%, #E0EAFD 100%);
  border-color: rgba(35,85,216,0.14);
  border-top-color: var(--accent);
}
.card--orange{
  background: linear-gradient(160deg, #FEF0E8 0%, #FDE4CE 100%);
  border-color: rgba(240,92,14,0.14);
  border-top-color: var(--orange);
}
.card:hover{ transform:translateY(-3px); }
.card--blue:hover{ box-shadow:0 10px 32px rgba(35,85,216,0.15); }
.card--orange:hover{ box-shadow:0 10px 32px rgba(240,92,14,0.15); }
.card h3{
  font-size:26px;
  margin:0 0 6px;
  font-weight:600;
}
.card-sub{
  font-size:13.5px;
  font-weight:500;
  margin:0 0 12px;
}
.card--blue .card-sub{ color:var(--accent); }
.card--orange .card-sub{ color:var(--orange); }
.card p{
  color:var(--slate);
  font-size:14.5px;
  margin:0;
}

/* Pain section body text (base p covers .pain-body) */
.pain-conclusion{
  color:var(--paper);
  font-weight:600;
  margin:20px 0 0;
}

/* Pain points */
.pain-list{
  display:grid;
  gap:8px;
}
.pain-cta{
  text-align:center;
  margin-top:24px;
}
.pain-item{
  display:grid;
  grid-template-columns:36px 1fr;
  gap:16px;
  padding:20px 18px;
  border-radius:var(--radius);
  align-items:start;
}
.pain-item{
  background: #F0F5FF;
  border:1px solid rgba(35,85,216,0.18);
}
.pain-item .mark{ color:var(--accent); }
.pain-item .mark{
  font-family:'IBM Plex Mono',monospace;
  font-size:15px;
  font-weight:500;
  padding-top:2px;
}
.pain-item p{ margin:0; }
.pain-item strong{color:var(--paper); font-weight:600;}

/* Pricing */
.price-anchor{
  max-width:560px;
  margin:0 auto 28px;
  color:var(--slate);
  font-size:15.5px;
  line-height:1.6;
}
.pricing-tiers{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  max-width:1000px;
  margin:0 auto;
  align-items:stretch;
}
.price-tier{
  position:relative;
  display:flex;
  flex-direction:column;
  text-align:left;
  background:#FFFFFF;
  border:1px solid rgba(240,92,14,0.2);
  border-radius:var(--radius);
  padding:32px 26px;
}
.price-tier--featured{
  border:2px solid var(--orange);
  box-shadow:
    0 4px 12px rgba(240,92,14,0.1),
    0 24px 56px rgba(240,92,14,0.16);
}
.price-tier-badge{
  position:absolute;
  top:-12px;
  left:26px;
  font-family:'IBM Plex Mono',monospace;
  font-size:11px;
  font-weight:600;
  letter-spacing:0.04em;
  text-transform:uppercase;
  color:#FFFFFF;
  background:var(--orange);
  border-radius:999px;
  padding:4px 10px;
  margin:0;
}
.price-tier .price-row{ margin:0 0 4px; }
.price-tier .amount{ font-size:32px; }
.price-retainer-small{
  height:18px;
  overflow:hidden;
  font-size:13px;
  line-height:18px;
  font-weight:600;
  color:var(--orange);
  margin:0 0 6px;
}
.price-tier .price-note{
  font-size:13px;
  color:var(--slate);
  margin:0 0 16px;
  padding:0;
  border:none;
  font-weight:500;
}
.price-tier .price-explain{
  font-size:13.5px;
  margin:0 0 16px;
}
.price-tier .price-list{
  margin:0 0 24px;
  gap:10px;
}
.price-tier .price-list li{
  font-size:14.5px;
  padding-left:20px;
}
.price-tier .btn-primary,
.price-tier .btn-secondary{
  margin-top:auto;
  width:100%;
  text-align:center;
}
@media(max-width:860px){
  .pricing-tiers{grid-template-columns:1fr;}
}
.price-box{
  border:2px solid rgba(240,92,14,0.45);
  border-top:5px solid var(--orange);
  border-radius:var(--radius);
  background: linear-gradient(160deg, #FFFFFF 0%, #FEF6F0 100%);
  box-shadow:
    0 4px 12px rgba(240,92,14,0.08),
    0 24px 64px rgba(240,92,14,0.16),
    0 48px 96px -24px rgba(240,92,14,0.12);
  padding:52px 48px;
  max-width:680px;
  margin:0 auto;
  text-align:left;
}
.price-label{
  font-size:16px;
  font-weight:700;
  letter-spacing:0.02em;
  text-transform:uppercase;
  color:var(--orange);
  margin:0 0 10px;
}
.price-row{
  display:flex;
  align-items:baseline;
  gap:12px;
  margin:0 0 8px;
}
.price-note{
  font-size:14px;
  color:var(--slate);
  margin:0 0 20px;
}
.price-row .amount{
  font-family:'DM Serif Display',serif;
  font-size:54px;
  font-weight:600;
  color:var(--orange);
  line-height:1;
  letter-spacing:-0.01em;
}
.price-row .period{
  color:var(--slate);
  font-size:18px;
}
.price-list{
  list-style:none;
  padding:0;
  margin:0 0 32px;
  display:grid;
  gap:14px;
}
.price-list li{
  position:relative;
  padding-left:22px;
  font-size:17px;
  color:var(--paper);
  font-weight:600;
}
.price-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:6px;
  width:8px;height:8px;
  border-radius:50%;
  background:var(--accent);
}
.price-box-secondary{
  border:1px solid rgba(30,39,66,0.15);
  border-radius:var(--radius);
  background:#FFFFFF;
  padding:36px 40px;
  max-width:680px;
  margin:24px auto 0;
  text-align:left;
}
.price-box-secondary .price-label{
  color:var(--slate);
}
.price-box-secondary p{
  color:var(--slate);
  font-size:15.5px;
  line-height:1.6;
  margin:0 0 20px;
}
.price-rules{
  background: rgba(35,85,216,0.05);
  border:1px solid rgba(35,85,216,0.12);
  border-left:3px solid var(--accent);
  border-radius:8px;
  padding:18px 20px;
  margin-bottom:24px;
  display:grid;
  gap:8px;
}
.price-rules p{
  margin:0;
  font-size:14px;
  color:var(--slate);
}
.price-rules .price-rules-head{
  margin-bottom:2px;
}
.price-rules .price-rules-head strong{
  color:var(--accent);
  font-size:15px;
}
.price-rules p strong{
  color:var(--paper);
}
.price-note{
  font-size:17px;
  font-weight:700;
  color:var(--orange);
  margin:0;
  padding-top:24px;
  border-top:1px solid rgba(240,92,14,0.15);
}
.price-retainer{
  font-size:17px;
  font-weight:700;
  color:var(--orange);
  margin:0 0 20px;
}
.price-explain{
  font-size:14.5px;
  color:var(--slate);
  margin:0 0 20px;
  padding-top:24px;
  border-top:1px solid rgba(240,92,14,0.15);
}

/* About */
.about{
  border-top:1px solid var(--divider);
  border-bottom:1px solid var(--divider);
}
.about-grid{
  display:grid;
  grid-template-columns:160px 1fr;
  gap:56px;
  align-items:center;
}
.about-photo{
  width:160px;
  height:160px;
  border-radius:50%;
  overflow:hidden;
  flex:none;
}
.about-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.about h2{
  margin:0 0 16px;
}
.about p{
  margin:0 0 12px;
}
.about p:last-child{ margin:0; }

@media (max-width: 860px){
  .about-grid{ grid-template-columns:1fr; text-align:center; }
  .about-photo{ margin:0 auto; }
}

/* Final CTA — dark navy */
.final-cta{
  text-align:center;
  padding:104px 0;
  background: linear-gradient(135deg, #0C1433 0%, #162050 50%, #1A1848 100%);
  color:#F5F7FD;
  border-top:none;
}
.final-cta .eyebrow{
  color:var(--orange);
  justify-content:center;
}
.final-cta .eyebrow::before{
  background:var(--orange);
}
.final-cta h2{
  margin:18px auto 16px;
  color:#FFFFFF;
}
.final-cta p{
  color:rgba(245,247,253,0.65);
  margin:0 auto 36px;
  font-size:21px;
  max-width:580px;
}

/* Footer — dark navy */
footer{
  background: #0A1128;
  border-top:1px solid rgba(245,247,253,0.07);
  padding:32px 0;
}
footer .wrap{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:12px;
}
footer .logo{
  color:#F5F7FD;
}
footer .logo span{
  color:var(--orange);
}
footer .mono{
  font-size:17px;
  font-weight:600;
  color:rgba(245,247,253,0.9);
}
footer .footer-tagline{
  font-size:17px;
  font-weight:600;
  color:rgba(245,247,253,0.65);
  margin:0;
  width:100%;
}

/* How it works — card grid */
.how-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:20px;
}
.how-card{
  grid-column:span 2;
}
.how-grid .how-card:nth-child(4){
  grid-column:2 / span 2;
}
.how-grid .how-card:nth-child(5){
  grid-column:4 / span 2;
}
.how-grid .how-card:nth-child(4):last-child{
  grid-column:3 / span 2;
}
.how-grid-2x2{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
}
.how-grid-2x2 .how-card{
  grid-column:span 1;
}
@media(max-width:860px){
  .how-grid-2x2{grid-template-columns:1fr;}
}
.how-card{
  background:#FFFFFF;
  border:1px solid rgba(35,85,216,0.12);
  border-radius:var(--radius);
  padding:28px 24px;
}

.how-card-header{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:12px;
}
.how-icon{
  width:52px;
  height:52px;
  background:var(--accent-soft);
  border:1.5px solid rgba(35,85,216,0.2);
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex:none;
  color:var(--accent);
}
.how-icon svg{
  width:28px;
  height:28px;
}
.how-card p{
  font-size:15.5px;
  margin:0;
}
.how-tags{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:16px;
}
.how-tags span{
  font-family:'IBM Plex Mono',monospace;
  font-size:11px;
  font-weight:600;
  letter-spacing:0.02em;
  color:var(--orange);
  background:var(--orange-soft);
  border:1px solid rgba(240,92,14,0.22);
  border-radius:999px;
  padding:4px 10px;
}
@media(max-width:860px){
  .how-grid{grid-template-columns:repeat(4,1fr);}
  .how-card{grid-column:span 2;}
  .how-card:nth-child(4),.how-card:nth-child(5){grid-column:span 2;}
}
@media(max-width:560px){
  .how-grid{grid-template-columns:1fr;}
  .how-card,.how-card:nth-child(4),.how-card:nth-child(5),.how-card:nth-child(4):last-child{grid-column:span 1;}
}

/* About CTA note */
.about-cta-note{
  font-size:15.5px;
  margin:8px 0 0;
  font-style:italic;
}

/* FAQ */
.faq-list{
  display:grid;
  gap:14px;
}
.faq-item{
  padding:24px 28px;
  border-radius:var(--radius);
  background:#F0F5FF;
  border:1px solid rgba(35,85,216,0.18);
}
.faq-item h4{
  font-family:'Inter',sans-serif;
  font-size:15.5px;
  font-weight:600;
  color:var(--paper);
  margin:0 0 10px;
}
.faq-item p{
  font-size:15.5px;
  margin:0;
}

@media (max-width: 860px){
  .hero-grid{grid-template-columns:1fr; gap:48px;}
  .cards{grid-template-columns:1fr;}
  .steps{grid-template-columns:1fr;}
  .hero h1{font-size:36px;}
}

@media (max-width: 560px){
  nav{position:static;}
  nav .wrap{gap:12px;}
  .logo{font-size:20px;}
  .nav-motto{font-size:11px;}
  nav .nav-actions .btn-primary{display:none;}
  .nav-link{font-size:13px;}
}

/* ===== Nav text link (Blog, etc.) ===== */
.nav-link{
  font-family:'Inter',sans-serif;
  font-size:14px;
  font-weight:600;
  text-decoration:none;
  color:var(--paper);
  padding:6px 4px;
}
.nav-link:hover{ color:var(--accent); }

/* ===== Blog index ===== */
.blog-hero{ padding:72px 0 64px; }
.blog-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
}
.blog-card{
  display:block;
  background:#FFFFFF;
  border:1px solid rgba(35,85,216,0.12);
  border-radius:var(--radius);
  padding:28px 24px;
  text-decoration:none;
  transition: box-shadow .2s ease, transform .2s ease;
}
.blog-card:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 32px rgba(35,85,216,0.15);
}
.blog-card-tag{ margin-bottom:14px; }
.blog-card h3{
  font-size:23px;
  margin:0 0 10px;
  color:var(--paper);
}
.blog-card p{
  font-size:15px;
  margin:0 0 16px;
}
.blog-card-meta{
  font-family:'IBM Plex Mono',monospace;
  font-size:12.5px;
  color:var(--slate);
  display:block;
  margin-bottom:10px;
}
.blog-card-link{
  font-family:'IBM Plex Mono',monospace;
  font-size:13px;
  font-weight:600;
  color:var(--accent);
}
.blog-empty{
  grid-column:1 / -1;
  text-align:center;
  padding:56px 28px;
  border-radius:var(--radius);
  background:#F0F5FF;
  border:1px dashed rgba(35,85,216,0.28);
}
.blog-empty p{ margin:0; }
.blog-empty p:first-child{
  color:var(--paper);
  font-weight:600;
  margin-bottom:8px;
}

/* ===== Blog post (article) ===== */
header.hero.post-hero{ padding:64px 0 48px; }
.breadcrumb{
  font-family:'IBM Plex Mono',monospace;
  font-size:13px;
  font-weight:600;
  color:var(--accent);
  text-decoration:none;
  display:inline-block;
  margin-bottom:20px;
}
.breadcrumb:hover{ text-decoration:underline; }
.post-meta{
  font-family:'IBM Plex Mono',monospace;
  font-size:13px;
  color:var(--slate);
  margin-top:16px;
}
.post-wrap{
  max-width:800px;
  margin:0 auto;
  padding:0 28px;
}
.post-body h2{
  font-size:27px;
  margin:44px 0 16px;
}
.post-body h3{
  font-family:'Inter',sans-serif;
  font-size:20px;
  font-weight:600;
  letter-spacing:normal;
  color:var(--paper);
  margin:32px 0 12px;
}
.post-body p{ font-size:17px; }
.post-body ul,.post-body ol{
  margin:0 0 20px;
  padding-left:0;
  list-style:none;
}
.post-body ul li,.post-body ol li{
  position:relative;
  padding-left:26px;
  color:var(--slate);
  font-size:17px;
  line-height:1.65;
  margin-bottom:10px;
}
.post-body ul li::before{
  content:"";
  position:absolute;
  left:6px;
  top:11px;
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--accent);
}
.post-body ol{ counter-reset:post-ol; }
.post-body ol li{ counter-increment:post-ol; }
.post-body ol li::before{
  content:counter(post-ol) ".";
  position:absolute;
  left:0;
  top:0;
  font-family:'IBM Plex Mono',monospace;
  font-size:14px;
  font-weight:600;
  color:var(--accent);
}
.post-body blockquote{
  margin:24px 0;
  padding:4px 0 4px 20px;
  border-left:3px solid var(--accent);
}
.post-body blockquote p{
  font-family:'DM Serif Display',serif;
  font-style:italic;
  font-size:20px;
  color:var(--paper);
  margin:0;
}
.post-body img{
  border-radius:var(--radius);
  margin:8px 0 28px;
}
.post-body hr{
  border:none;
  border-top:1px solid var(--divider);
  margin:40px 0;
}
.post-body a{
  color:var(--accent);
  text-decoration:underline;
}
.post-cta{
  margin:44px 0;
  padding:28px 26px;
  border-radius:var(--radius);
  background:#F0F5FF;
  border:1px solid rgba(35,85,216,0.18);
  text-align:center;
}
.post-cta p{ margin:0 0 16px; }
.post-cta p:first-child{
  font-family:'Inter',sans-serif;
  font-weight:600;
  color:var(--paper);
}

@media (max-width: 860px){
  .blog-grid{grid-template-columns:1fr;}
}
@media (max-width: 560px){
  .post-body h2{font-size:23px;}
  .post-body p,.post-body ul li,.post-body ol li{font-size:16px;}
}

/* ===== TanitCertification-specific: pull-quote ===== */
.pull-quote{
  max-width:680px;
  margin:0 auto;
  text-align:center;
  padding:8px 0;
}
.pull-quote p{
  font-family:'DM Serif Display',serif;
  font-style:italic;
  font-size:28px;
  line-height:1.4;
  color:var(--paper);
}
.pull-quote p em{
  color:var(--orange);
  font-style:italic;
}

/* ===== Comparison block ===== */
.compare-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
  max-width:800px;
  margin:0 auto;
}
.compare-col{
  background:#FFFFFF;
  border:1px solid var(--divider);
  border-radius:var(--radius);
  padding:28px 26px;
}
.compare-col h3{
  font-family:'Inter',sans-serif;
  font-size:16px;
  font-weight:600;
  letter-spacing:0.01em;
  color:var(--slate);
  margin:0 0 16px;
}
.compare-col.is-highlight{
  background: linear-gradient(160deg, #FEF2E8 0%, #FDE5D0 100%);
  border:2px solid var(--orange);
}
.compare-col.is-highlight h3{ color:var(--orange); }
.compare-col ul{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:12px;
}
.compare-col li{
  position:relative;
  padding-left:26px;
  font-size:15px;
  color:var(--slate);
  line-height:1.5;
}
.compare-col li::before{
  content:"✕";
  position:absolute;
  left:0;
  top:1px;
  font-size:13px;
  color:var(--slate);
  opacity:0.4;
}
.compare-col.is-highlight li::before{
  content:"✓";
  color:var(--orange);
  opacity:1;
  font-weight:700;
}
@media (max-width:700px){
  .compare-grid{grid-template-columns:1fr;}
}

/* ===== Value stack (list, then price reveal) ===== */
.stack-list{
  list-style:none;
  margin:0 auto 32px;
  padding:0;
  max-width:560px;
  display:grid;
  gap:0;
}
.stack-list li{
  display:flex;
  justify-content:space-between;
  align-items:baseline;
  gap:16px;
  padding:14px 0;
  border-bottom:1px solid var(--divider);
}
.stack-list li span:first-child{
  font-size:15.5px;
  color:var(--paper);
}
.stack-list li span.val{
  font-family:'IBM Plex Mono',monospace;
  font-size:13.5px;
  color:var(--slate);
  white-space:nowrap;
}
.stack-total{
  max-width:560px;
  margin:0 auto;
  display:flex;
  justify-content:space-between;
  align-items:baseline;
  padding-top:16px;
  font-weight:700;
}
.stack-total span:first-child{
  font-family:'Inter',sans-serif;
  color:var(--paper);
}
.stack-total span.val{
  font-family:'IBM Plex Mono',monospace;
  color:var(--orange);
}

/* ===== Simple accordion (FAQ) ===== */
.accordion{
  max-width:720px;
  margin:0 auto;
}
.accordion details{
  border-bottom:1px solid var(--divider);
  padding:18px 0;
}
.accordion summary{
  cursor:pointer;
  font-family:'Inter',sans-serif;
  font-weight:600;
  color:var(--paper);
  font-size:16px;
  list-style:none;
}
.accordion summary::-webkit-details-marker{ display:none; }
.accordion summary::after{
  content:"+";
  float:right;
  color:var(--accent);
  font-weight:400;
}
.accordion details[open] summary::after{ content:"–"; }
.accordion details p{
  margin:12px 0 0;
  font-size:15px;
}

/* ===== Guarantee strip ===== */
.guarantee-strip{
  max-width:560px;
  margin:28px auto 0;
  text-align:center;
  padding:20px 24px;
  border:1.5px dashed rgba(240,92,14,0.4);
  border-radius:var(--radius);
}
.guarantee-strip p{
  margin:0;
  font-size:14.5px;
  color:var(--slate);
}
.guarantee-strip strong{ color:var(--orange); }
