/* === TOKENS === */
:root {
  --bg: #0f1923;
  --bg-2: #16202e;
  --bg-3: #1c2a3a;
  --amber: #e8a54b;
  --amber-dim: rgba(232, 165, 75, 0.15);
  --sage: #a8c5b5;
  --sage-dim: rgba(168, 197, 181, 0.15);
  --fg: #f0ece4;
  --fg-2: #b8b4ac;
  --fg-3: #7a756d;
  --border: #2a3d52;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--amber); color: var(--bg); }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

/* === NAV === */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 20px 40px;
  background: rgba(15, 25, 35, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--fg);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* === HERO === */
.hero {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  padding: 80px 40px 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 70% 40%, rgba(232, 165, 75, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 500;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--fg);
}

.hero-headline em {
  font-style: italic;
  color: var(--amber);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-2);
  line-height: 1.7;
  max-width: 480px;
}

.hero-cta-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--sage);
}

.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.house-svg {
  width: 100%;
  max-width: 320px;
  filter: drop-shadow(0 0 40px rgba(232, 165, 75, 0.08));
}

.label {
  position: absolute;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  background: var(--bg-3);
  border: 1px solid var(--border);
}

.label-hvac { top: 28%; right: 8%; color: var(--amber); }
.label-water { bottom: 22%; left: 6%; color: var(--sage); }
.label-roof { top: 12%; left: 50%; transform: translateX(-50%); color: var(--fg-3); }
.label-alert { top: 38%; left: 12%; color: var(--amber); }

/* === SECTION COMMON === */
.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 500;
  margin-bottom: 16px;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fg);
}

/* === HOW IT WORKS === */
.how-it-works {
  padding: 100px 40px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.how-it-works-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.how-it-works .section-heading {
  margin-bottom: 64px;
  max-width: 540px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  padding: 40px 0;
  border-top: 1px solid var(--border);
  position: relative;
}

.step:last-child {
  border-bottom: 1px solid var(--border);
}

.step-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--amber);
  opacity: 0.5;
  line-height: 1;
  padding-top: 4px;
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
}

.step-content p {
  color: var(--fg-2);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 560px;
}

/* === FEATURES === */
.features {
  padding: 100px 40px;
  background: var(--bg);
}

.features-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.features .section-heading {
  margin-bottom: 56px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.feature {
  padding: 36px 32px;
  background: var(--bg-2);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.2s;
}

.feature:hover {
  background: var(--bg-3);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--amber-dim);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--fg);
}

.feature p {
  font-size: 0.88rem;
  color: var(--fg-2);
  line-height: 1.65;
}

/* === STATS === */
.stats {
  padding: 80px 40px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
}

.stat-block {
  flex: 1;
  text-align: center;
  padding: 20px 32px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 12px;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--fg-2);
  line-height: 1.5;
}

.stat-divider {
  width: 1px;
  height: 80px;
  background: var(--border);
  flex-shrink: 0;
}

/* === WHY STRIP === */
.why-strip {
  padding: 56px 40px 40px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.why-strip-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.why-strip .section-label {
  margin-bottom: 24px;
}

.why-badges {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

a.trust-badge {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* === CLOSING === */
.closing {
  padding: 120px 40px;
  background: var(--bg);
  text-align: center;
}

.closing-inner {
  max-width: 680px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 28px;
}

.closing p {
  font-size: 1rem;
  color: var(--fg-2);
  line-height: 1.8;
}

/* === FOOTER === */
.footer {
  padding: 40px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--fg-3);
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--fg-3);
}

/* === NAV ACTIONS === */
.nav-actions { margin-left: auto; }
.nav-cta {
  background: var(--amber);
  color: var(--bg);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 8px;
  transition: opacity 0.15s;
}
.nav-cta:hover { opacity: 0.85; }

/* === HERO WAITLIST FORM === */
.waitlist-form {
  display: flex;
  gap: 10px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.waitlist-form input {
  flex: 1;
  min-width: 200px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--fg);
  padding: 12px 16px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: border-color 0.15s;
}
.waitlist-form input:focus { outline: none; border-color: var(--amber); }
.waitlist-form input::placeholder { color: var(--fg-3); }
.waitlist-note { font-size: 0.78rem; color: var(--fg-3); margin-top: 10px; }
.waitlist-success { font-size: 0.9rem; color: var(--sage); margin-top: 8px; }

/* === CTA BUTTONS === */
.btn-cta {
  background: var(--amber);
  color: var(--bg);
  border: none;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.15s;
  font-family: var(--font-body);
}
.btn-cta:hover { opacity: 0.85; }
.btn-cta:disabled { opacity: 0.5; cursor: not-allowed; }
.btn-cta-large { padding: 16px 40px; font-size: 1.05rem; }

/* === CLOSING CTA === */
.closing-cta {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.closing-note { font-size: 0.78rem; color: var(--fg-3); }
.closing-secondary { font-size: 0.92rem; color: var(--fg-2); margin-top: 6px; }
.closing-secondary .text-link { color: var(--amber); }

/* === PRICING === */
.pricing-hero {
  padding: 100px 40px 60px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.pricing-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 30%, rgba(232, 165, 75, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.pricing-hero-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.pricing-hero .section-label {
  margin-bottom: 16px;
}

.pricing-hero .section-heading {
  margin-bottom: 20px;
}

.pricing-sub {
  font-size: 1.05rem;
  color: var(--fg-2);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}

.pricing-tiers {
  padding: 40px 40px 80px;
  background: var(--bg);
}

.pricing-tiers-inner {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.tier {
  flex: 1;
  padding: 40px 32px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: border-color 0.15s, background 0.15s;
}

.tier:hover {
  background: var(--bg-3);
  border-color: var(--amber-dim);
}

.tier-pro {
  border-top: 3px solid var(--amber);
  background: var(--bg-3);
}

.tier-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.01em;
}

.tier-pro .tier-name {
  color: var(--amber);
}

.tier-tagline {
  font-size: 0.9rem;
  color: var(--fg-2);
  line-height: 1.5;
  margin-top: -8px;
}

.tier-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding: 12px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.tier-amount {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
  letter-spacing: -0.02em;
}

.tier-period {
  font-size: 0.85rem;
  color: var(--fg-3);
}

.tier-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.tier-features li {
  font-size: 0.95rem;
  color: var(--fg-2);
  line-height: 1.5;
  padding-left: 24px;
  position: relative;
}

.tier-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--sage);
  font-weight: 700;
}

.tier .btn-cta {
  align-self: flex-start;
  margin-top: 8px;
}

.pricing-trust {
  padding: 40px 40px 80px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.trust-grid {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.trust-badge {
  padding: 24px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background 0.15s, border-color 0.15s;
}

.trust-badge:hover {
  background: var(--bg-3);
  border-color: var(--amber-dim);
}

.trust-badge-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--amber);
  letter-spacing: -0.01em;
}

.trust-badge-body {
  font-size: 0.88rem;
  color: var(--fg-2);
  line-height: 1.55;
}

.pricing-compare-section {
  padding: 60px 40px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pricing-compare-inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-compare {
  font-size: 1.05rem;
  color: var(--fg-2);
  line-height: 1.7;
  text-align: center;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-visual {
    order: -1;
  }

  .house-svg {
    max-width: 240px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .stats-inner {
    flex-direction: column;
    gap: 32px;
  }

  .stat-divider {
    width: 60px;
    height: 1px;
  }

  .step {
    grid-template-columns: 56px 1fr;
    gap: 24px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .pricing-tiers-inner {
    flex-direction: column;
    gap: 20px;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-badges { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .nav { padding: 16px 20px; }
  .hero { padding: 48px 20px 40px; }
  .how-it-works { padding: 60px 20px; }
  .features { padding: 60px 20px; }
  .stats { padding: 60px 20px; }
  .closing { padding: 80px 20px; }
  .footer { padding: 32px 20px; }

  .stat-block { padding: 12px 16px; }
  .waitlist-form { flex-direction: column; }
  .waitlist-form input { min-width: unset; width: 100%; }
  .closing-cta { margin-top: 28px; }

  .pricing-hero { padding: 60px 20px 40px; }
  .pricing-tiers { padding: 24px 20px 56px; }
  .pricing-trust { padding: 32px 20px 56px; }
  .pricing-compare-section { padding: 40px 20px; }
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .why-strip { padding: 40px 20px 28px; }
  .why-badges { grid-template-columns: 1fr; gap: 12px; }
}

/* === TRUST / FAQ === */
.trust-hero {
  padding: 100px 40px 60px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.trust-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 30%, rgba(232, 165, 75, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.trust-hero-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.trust-hero .section-label { margin-bottom: 16px; }
.trust-hero .section-heading { margin-bottom: 20px; }

.trust-sub {
  font-size: 1.05rem;
  color: var(--fg-2);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}

.trust-faq {
  padding: 40px 40px 100px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-faq-inner {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.15s;
}

.faq-item[open] {
  border-color: var(--amber-dim);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-q {
  padding: 18px 22px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.15s;
}

.faq-q::after {
  content: '+';
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--amber);
  line-height: 1;
  flex-shrink: 0;
}

.faq-item[open] .faq-q::after { content: '−'; }

.faq-q:hover, .faq-q:focus-visible {
  color: var(--amber);
  outline: none;
}

.faq-a {
  padding: 0 22px 18px;
  color: var(--fg-2);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: none;
}

.text-link {
  color: var(--amber);
  text-decoration: none;
}
.text-link:hover { text-decoration: underline; }

.waitlist-secondary {
  margin-top: 14px;
  font-size: 0.9rem;
  color: var(--fg-2);
}

@media (max-width: 600px) {
  .trust-hero { padding: 60px 20px 40px; }
  .trust-faq { padding: 32px 20px 60px; }
  .faq-q { padding: 16px 18px; font-size: 0.95rem; }
  .faq-a { padding: 0 18px 16px; font-size: 0.9rem; }
}

/* === COMPARE === */
.compare-hero {
  padding: 100px 40px 40px;
  background: var(--bg);
  text-align: center;
}
.compare-hero-inner {
  max-width: 820px;
  margin: 0 auto;
}
.compare-sub {
  font-size: 1.05rem;
  color: var(--fg-2);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}
.compare-table-section {
  padding: 40px 40px 80px;
}
.compare-table-inner {
  max-width: 1140px;
  margin: 0 auto;
}
.compare-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--bg-2);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
  font-family: var(--font-body);
}
.compare-table thead th {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--amber);
  text-align: left;
  padding: 22px 22px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-3);
  letter-spacing: -0.01em;
}
.compare-table tbody th[scope="row"] {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--fg);
  text-align: left;
  padding: 22px;
  vertical-align: top;
  width: 24%;
  border-bottom: 1px solid var(--border);
}
.compare-table tbody td {
  font-size: 0.9rem;
  color: var(--fg-2);
  line-height: 1.55;
  padding: 22px;
  vertical-align: top;
  border-bottom: 1px solid var(--border);
  width: 25.33%;
}
.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td {
  border-bottom: none;
}
.compare-clearpath {
  background: rgba(232, 165, 75, 0.06);
}
.compare-pricing-row td { font-weight: 500; }
.compare-cta-section {
  padding: 40px 40px 100px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.compare-cta-inner {
  max-width: 720px;
  margin: 0 auto;
}
.compare-cta-lead {
  font-size: 1rem;
  color: var(--fg-2);
  margin-bottom: 22px;
}
.compare-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
@media (max-width: 900px) {
  .compare-hero { padding: 60px 20px 20px; }
  .compare-table-section { padding: 24px 20px 56px; }
  .compare-cta-section { padding: 32px 20px 60px; }
}

/* === BLOG === */
.blog-hero {
  padding: 100px 40px 40px;
  background: var(--bg);
  text-align: center;
}
.blog-hero-inner {
  max-width: 820px;
  margin: 0 auto;
}
.blog-sub {
  font-size: 1.05rem;
  color: var(--fg-2);
  line-height: 1.7;
  max-width: 640px;
  margin: 20px auto 0;
}
.blog-list {
  padding: 40px 40px 80px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.blog-list-inner {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
a.blog-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px 32px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s, background 0.15s;
  position: relative;
}
a.blog-card:hover {
  border-color: var(--amber-dim);
  background: var(--bg);
}
.blog-card-date {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-3);
  font-weight: 500;
}
.blog-card-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--fg);
  line-height: 1.25;
}
a.blog-card:hover .blog-card-title { color: var(--amber); }
.blog-card-excerpt {
  font-size: 0.95rem;
  color: var(--fg-2);
  line-height: 1.65;
}
.blog-card-link {
  font-size: 0.85rem;
  color: var(--amber);
  margin-top: 4px;
  font-weight: 500;
}
.blog-post-wrap {
  max-width: 720px;
}
.blog-post-back {
  font-size: 0.9rem;
  margin-bottom: 24px;
}
.blog-post-body p {
  font-size: 1.05rem;
  color: var(--fg-2);
  line-height: 1.85;
  margin-bottom: 22px;
}
.blog-post-body p:last-child { margin-bottom: 0; }
@media (max-width: 900px) {
  .blog-hero { padding: 60px 20px 20px; }
  .blog-list { padding: 32px 20px 60px; }
  a.blog-card { padding: 24px 24px; }
  .blog-card-title { font-size: 1.2rem; }
}
