/* ═══════════════════════════════════════════════════
   ETHUM GROUP — MAIN STYLESHEET
   Design System: Sora + Inter, warm neutrals + blue-teal
═══════════════════════════════════════════════════ */

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

:root {
  --bg: #faf9f6;
  --bg-card: #ffffff;
  --bg-alt: #f3f2ef;
  --text: #1a1a1a;
  --text-muted: #6b6b6b;
  --text-light: #999;
  --accent: #1a8fe3;
  --accent-hover: #1679c7;
  --accent-secondary: #00c9a7;
  --accent-gradient: linear-gradient(135deg, #1a8fe3 0%, #00c9a7 100%);
  --border: rgba(0,0,0,0.08);
  --border-mid: rgba(0,0,0,0.12);
  --nav-h: 64px;
  --r: 12px;
  --r-sm: 8px;
  --max-w: 1100px;
  --transition: 0.15s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 {
  font-family: 'Sora', sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

a { color: inherit; }

/* ── NAV ── */
#main-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(250,249,246,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 0.5px solid var(--border);
  display: grid; grid-template-columns: auto 1fr auto; align-items: center;
  padding: 0 2rem;
  column-gap: 1rem;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-text {
  font-family: 'Sora', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1;
}
.nav-links { display: flex; align-items: center; justify-content: center; gap: 0.25rem; }
.nav-links a {
  font-size: 14px; font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.4rem 0.75rem;
  border-radius: var(--r-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-links a:hover { color: var(--text); background: rgba(0,0,0,0.04); }
.nav-links a.active { color: var(--text); background: rgba(0,0,0,0.05); }
.nav-actions { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  width: 36px; height: 36px; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 0; border-radius: var(--r-sm);
  transition: background var(--transition);
}
.hamburger:hover { background: rgba(0,0,0,0.05); }
.hamburger span {
  display: block; width: 20px; height: 1.5px;
  background: var(--text); border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed; top: var(--nav-h); left: 0; right: 0; z-index: 99;
  background: var(--bg);
  border-bottom: 0.5px solid var(--border);
  padding: 1rem 2rem 1.5rem;
  flex-direction: column; gap: 0.25rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 15px; font-weight: 500; color: var(--text-muted);
  text-decoration: none; padding: 0.65rem 0.75rem;
  border-radius: var(--r-sm); transition: all var(--transition);
}
.mobile-menu a:hover { color: var(--text); background: rgba(0,0,0,0.04); }
.mobile-menu a.active { color: var(--text); background: rgba(0,0,0,0.05); }
.mobile-menu-cta {
  margin-top: 0.75rem; padding-top: 0.75rem;
  border-top: 0.5px solid var(--border);
  display: flex; gap: 0.5rem; flex-wrap: wrap;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  text-decoration: none; border-radius: var(--r-sm);
  font-size: 14px; font-weight: 500;
  transition: all var(--transition);
  cursor: pointer; border: none; font-family: 'Inter', sans-serif;
  line-height: 1;
}
.btn-ghost { padding: 0.5rem 1rem; color: var(--text-muted); background: transparent; }
.btn-ghost:hover { color: var(--text); background: rgba(0,0,0,0.04); }
.btn-outline { padding: 0.5rem 1rem; color: var(--text); background: transparent; border: 0.5px solid var(--border-mid); }
.btn-outline:hover { background: rgba(0,0,0,0.04); }
.btn-primary { padding: 0.55rem 1.1rem; background: var(--accent-gradient); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); filter: brightness(1.05); }
.btn-accent { padding: 0.75rem 1.5rem; background: var(--accent-gradient); color: #fff; border-radius: var(--r-sm); font-size: 15px; font-weight: 600; }
.btn-accent:hover { filter: brightness(1.08); transform: translateY(-1px); }
.btn-large { padding: 1rem 2rem; font-size: 16px; border-radius: var(--r); }
.btn-white { background: #fff; color: var(--text); padding: 0.8rem 1.75rem; border-radius: var(--r-sm); font-weight: 600; font-size: 15px; text-decoration: none; transition: all var(--transition); display: inline-flex; align-items: center; }
.btn-white:hover { background: #f0f0f0; }
.btn-ghost-white {
  background: transparent; border: 0.5px solid rgba(255,255,255,0.3);
  color: #fff; padding: 0.8rem 1.75rem; border-radius: var(--r-sm);
  font-weight: 500; font-size: 15px; text-decoration: none;
  transition: all var(--transition); display: inline-flex; align-items: center;
}
.btn-ghost-white:hover { background: rgba(255,255,255,0.08); }

/* ── LAYOUT ── */
section { padding: 6rem 2rem; }
.container { max-width: var(--max-w); margin: 0 auto; }
.bg-alt { background: var(--bg-alt); }

.section-label {
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 0.75rem;
  display: block;
}
.section-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 700; letter-spacing: -0.025em;
  line-height: 1.2; margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.05rem; color: var(--text-muted);
  max-width: 560px; line-height: 1.7;
}
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.two-col.flip { direction: rtl; }
.two-col.flip > * { direction: ltr; }

/* ── HERO ── */
.hero {
  padding-top: calc(var(--nav-h) + 5rem);
  padding-bottom: 5rem;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}
.hero h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700; letter-spacing: -0.03em; line-height: 1.1;
  margin-bottom: 1.25rem; color: var(--text);
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero p {
  font-size: 1.1rem; color: var(--text-muted);
  max-width: 560px; margin: 0 auto 2.5rem; line-height: 1.7;
}
.hero-ctas { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }

/* Page hero (inner pages) */
.page-hero {
  padding-top: calc(var(--nav-h) + 4rem);
  padding-bottom: 4rem;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}
.page-hero h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700; letter-spacing: -0.03em; line-height: 1.1;
  margin-bottom: 1.25rem;
}
.page-hero h1 em { font-style: normal; color: var(--accent); }
.page-hero p {
  font-size: 1.1rem; color: var(--text-muted);
  max-width: 540px; margin: 0 auto 2.5rem; line-height: 1.7;
}

/* ── TRUST BAR ── */
.trust-bar {
  display: flex; align-items: center; justify-content: center; gap: 2rem;
  flex-wrap: wrap;
  border-top: 0.5px solid var(--border);
  padding-top: 2rem;
  color: var(--text-muted); font-size: 13px;
}
.trust-bar strong { color: var(--text); }
.rating { display: flex; align-items: center; gap: 4px; }
.stars { color: #f59e0b; }

/* ── LOGO SCROLL ── */
.logo-scroll-section { padding: 3rem 0; overflow: hidden; position: relative; }
.logo-scroll-section::before, .logo-scroll-section::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none;
}
.logo-scroll-section::before { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.logo-scroll-section::after { right: 0; background: linear-gradient(to left, var(--bg), transparent); }
.scroll-label { text-align: center; font-size: 13px; color: var(--text-light); margin-bottom: 1.5rem; letter-spacing: 0.05em; text-transform: uppercase; }
.logo-track { display: flex; gap: 3rem; align-items: center; width: max-content; animation: scroll-logos 30s linear infinite; }
.logo-track:hover { animation-play-state: paused; }
@keyframes scroll-logos {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.logo-item {
  font-family: 'Sora', sans-serif; font-weight: 600; font-size: 15px;
  color: var(--text-light); white-space: nowrap; letter-spacing: -0.01em; transition: color 0.2s;
}
.logo-item:hover { color: var(--text); }

/* ── FEATURE VISUAL ── */
.feature-visual {
  background: var(--bg-card);
  border: 0.5px solid var(--border-mid);
  border-radius: var(--r);
  overflow: hidden; aspect-ratio: 4/3;
  position: relative; display: flex; align-items: center; justify-content: center;
}
.feature-visual .mock {
  width: 90%; background: #f5f5f2; border-radius: var(--r-sm);
  padding: 1.25rem; border: 0.5px solid var(--border);
}
.mock-row { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 0.5px solid var(--border); font-size: 13px; }
.mock-row:last-child { border-bottom: none; }
.mock-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.mock-dot.green { background: #22c55e; }
.mock-dot.amber { background: #f59e0b; }
.mock-dot.blue { background: #3b82f6; }
.mock-dot.red { background: #ef4444; }
.mock-name { font-weight: 500; color: var(--text); flex: 1; }
.mock-tag { font-size: 11px; padding: 2px 8px; border-radius: 20px; font-weight: 500; }
.tag-green { background: #dcfce7; color: #15803d; }
.tag-amber { background: #fef9c3; color: #92400e; }
.tag-blue { background: #dbeafe; color: #1d4ed8; }
.mock-stat { font-size: 12px; color: var(--text-muted); }

/* ── BADGE ── */
.badge { display: inline-block; padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.badge-stat { background: #e8f5e9; color: #2e7d32; }
.badge-accent { background: rgba(26,143,227,0.12); color: var(--accent); }

/* ── FEATURE BULLETS ── */
.feature-bullets { list-style: none; margin: 1.5rem 0; display: flex; flex-direction: column; gap: 0.75rem; }
.feature-bullets li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; color: var(--text-muted); }
.feature-bullets li::before {
  content: ''; display: block; width: 18px; height: 18px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0; margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3E%3Cpath d='M13.5 3.5l-7 7-3-3' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-size: 12px; background-repeat: no-repeat; background-position: center;
}
.feature-bullets li strong { color: var(--text); }
.feature-link { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: var(--accent); text-decoration: none; margin-top: 0.5rem; }
.feature-link:hover { text-decoration: underline; }

/* ── INLINE STAT ── */
.inline-stat { display: inline-block; background: #fff; border: 0.5px solid var(--border-mid); border-radius: var(--r-sm); padding: 0.5rem 1rem; margin-bottom: 1.5rem; }
.inline-stat strong { font-family: 'Sora', sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--text); }
.inline-stat span { font-size: 13px; color: var(--text-muted); margin-left: 6px; }

/* ── OFFERINGS GRID ── */
.offerings-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.offer-card {
  background: var(--bg-card); border: 0.5px solid var(--border-mid);
  border-radius: var(--r); padding: 1.75rem; position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.offer-card:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.06); }
.offer-card.featured { border: 2px solid #1a8fe3; }
.offer-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent-gradient); color: #fff; font-size: 11px; font-weight: 700; padding: 3px 12px; border-radius: 20px; letter-spacing: 0.05em; white-space: nowrap; }
.offer-label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-light); margin-bottom: 0.5rem; }
.offer-title { font-family: 'Sora', sans-serif; font-size: 1.25rem; font-weight: 700; margin-bottom: 0.75rem; }
.offer-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 1.5rem; }
.offer-rating { font-size: 12px; color: var(--text-light); display: flex; align-items: center; gap: 4px; margin-top: 1rem; }

/* ── STATS GRID ── */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 0.5px solid var(--border-mid); border-radius: var(--r); overflow: hidden; }
.stat-cell { background: var(--bg-card); padding: 2rem 1.5rem; text-align: center; }
.stat-num { font-family: 'Sora', sans-serif; font-size: 2.5rem; font-weight: 700; color: var(--text); letter-spacing: -0.03em; }
.stat-num span { color: var(--accent); }
.stat-label { font-size: 13px; color: var(--text-muted); margin-top: 4px; }

/* ── TESTIMONIALS ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 3rem; }
.testi-card {
  background: var(--bg-card); border: 0.5px solid var(--border-mid);
  border-radius: var(--r); padding: 1.5rem;
  display: flex; flex-direction: column; gap: 1rem;
}
.testi-logo { font-family: 'Sora', sans-serif; font-size: 13px; font-weight: 700; color: var(--text-light); letter-spacing: -0.01em; }
.testi-quote { font-size: 14px; color: var(--text); line-height: 1.65; flex: 1; }
.testi-person { display: flex; align-items: center; gap: 10px; }
.testi-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: #fff; flex-shrink: 0; }
.testi-name { font-size: 13px; font-weight: 600; }
.testi-role { font-size: 12px; color: var(--text-muted); }

/* ── FAQ ── */
.faq-list { margin-top: 3rem; display: flex; flex-direction: column; gap: 0; border: 0.5px solid var(--border-mid); border-radius: var(--r); overflow: hidden; }
.faq-item { border-bottom: 0.5px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  width: 100%; text-align: left; background: var(--bg-card); border: none;
  padding: 1.25rem 1.5rem; font-size: 15px; font-weight: 600; color: var(--text);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  transition: background var(--transition); font-family: 'Inter', sans-serif;
}
.faq-q:hover { background: rgba(0,0,0,0.02); }
.faq-q .arrow { font-size: 18px; color: var(--text-muted); transition: transform 0.2s; flex-shrink: 0; margin-left: 1rem; }
.faq-q[aria-expanded="true"] .arrow { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 1.5rem 1.25rem; font-size: 14px; color: var(--text-muted); line-height: 1.7; background: var(--bg-card); }
.faq-a.open { display: block; }

/* ── CTA SECTION ── */
.cta-section {
  background: var(--text); color: #fff;
  border-radius: var(--r); padding: 4rem 3rem;
  text-align: center; margin: 0 2rem 4rem;
  max-width: var(--max-w);
}
.cta-wrap { padding: 0 2rem 4rem; }
.cta-section h2 { font-family: 'Sora', sans-serif; font-size: clamp(1.6rem, 3vw, 2.5rem); font-weight: 700; letter-spacing: -0.025em; margin-bottom: 0.75rem; }
.cta-section p { color: rgba(255,255,255,0.65); margin-bottom: 2rem; font-size: 1rem; }
.cta-btns { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }

/* ── SECURITY GRID ── */
.security-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.25rem; margin-top: 3rem; }
.sec-card { background: var(--bg-card); border: 0.5px solid var(--border); border-radius: var(--r-sm); padding: 1.5rem 1rem; text-align: center; }
.sec-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.sec-title { font-size: 13px; font-weight: 700; margin-bottom: 4px; }
.sec-desc { font-size: 12px; color: var(--text-muted); line-height: 1.5; }

/* ── BOOK PROMO ── */
.book-promo { background: var(--bg-card); border: 0.5px solid var(--border-mid); border-radius: var(--r); padding: 2.5rem; display: flex; gap: 2.5rem; align-items: center; margin-top: 3rem; }
.book-cover { width: 120px; flex-shrink: 0; background: var(--accent-gradient); border-radius: var(--r-sm); aspect-ratio: 2/3; display: flex; align-items: center; justify-content: center; text-align: center; padding: 1rem; }
.book-cover-text { color: #fff; font-family: 'Sora', sans-serif; font-size: 13px; font-weight: 700; line-height: 1.3; }
.book-info h3 { font-family: 'Sora', sans-serif; font-size: 1.2rem; font-weight: 700; margin-bottom: 0.5rem; }
.book-info p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 1rem; }
.amazon-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text-muted); font-weight: 500; }
.amazon-text { font-size: 13px; font-weight: 700; color: #FF9900; }

/* ── PRICING ── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.pricing-card {
  background: var(--bg-card); border: 0.5px solid var(--border-mid);
  border-radius: var(--r); padding: 2rem; position: relative;
  display: flex; flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.pricing-card:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.07); }
.pricing-card.featured {
  border: 2px solid var(--accent-secondary);
  box-shadow: 0 4px 24px rgba(0,201,167,0.12);
  background: rgba(0,201,167,0.025);
}
.pricing-badge {
  display: inline-block;
  background: var(--accent-gradient);
  color: #fff; font-size: 11px; font-weight: 700;
  padding: 4px 14px; border-radius: 20px;
  letter-spacing: 0.06em; white-space: nowrap;
  margin-bottom: 0.85rem;
  text-transform: uppercase;
}
.pricing-label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-light); margin-bottom: 0.4rem; }
.pricing-name { font-family: 'Sora', sans-serif; font-size: 1.3rem; font-weight: 700; margin-bottom: 0.5rem; }
.pricing-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 1.5rem; }
.pricing-price { margin-bottom: 0.5rem; }
.pricing-price .amount { font-family: 'Sora', sans-serif; font-size: 2.75rem; font-weight: 700; letter-spacing: -0.04em; color: var(--accent); }
.pricing-price .currency { font-size: 1.1rem; font-weight: 600; vertical-align: super; line-height: 1; color: var(--accent); }
.pricing-price .period { font-size: 14px; color: var(--text-muted); }
.pricing-card.featured .pricing-price .amount,
.pricing-card.featured .pricing-price .currency { color: var(--accent-secondary); }
.pricing-note { font-size: 12px; color: var(--text-muted); margin-bottom: 1.5rem; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 2rem; flex: 1; }
.pricing-features li { display: flex; gap: 8px; align-items: flex-start; font-size: 14px; color: var(--text-muted); }
.pricing-features li::before {
  content: ''; display: block; width: 16px; height: 16px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0; margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3E%3Cpath d='M13.5 3.5l-7 7-3-3' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-size: 10px; background-repeat: no-repeat; background-position: center;
}
.pricing-divider { border: none; border-top: 0.5px solid var(--border); margin: 1.5rem 0; }
.pricing-compare { margin-top: 4rem; }
.pricing-compare h3 { font-family: 'Sora', sans-serif; font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 2rem; text-align: center; }
.compare-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.compare-table th { font-weight: 600; padding: 0.75rem 1rem; text-align: left; border-bottom: 1px solid var(--border-mid); color: var(--text-muted); font-size: 13px; }
.compare-table td { padding: 0.75rem 1rem; border-bottom: 0.5px solid var(--border); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table .check { color: var(--accent); font-size: 16px; }
.compare-table .dash { color: var(--text-light); }
.compare-table .feature-name { font-weight: 500; color: var(--text); }

/* ── BLOG ── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.blog-card {
  background: var(--bg-card); border: 0.5px solid var(--border-mid);
  border-radius: var(--r); overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  text-decoration: none; color: inherit; display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.06); }
.blog-card-image {
  aspect-ratio: 16/9; background: var(--bg-alt);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; border-bottom: 0.5px solid var(--border);
}
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-tag { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.5rem; }
.blog-title { font-family: 'Sora', sans-serif; font-size: 1.05rem; font-weight: 700; line-height: 1.35; margin-bottom: 0.5rem; letter-spacing: -0.01em; }
.blog-excerpt { font-size: 13px; color: var(--text-muted); line-height: 1.6; flex: 1; margin-bottom: 1rem; }
.blog-meta { display: flex; align-items: center; gap: 0.5rem; font-size: 12px; color: var(--text-light); margin-top: auto; }
.blog-avatar { width: 24px; height: 24px; border-radius: 50%; background: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; color: #fff; flex-shrink: 0; }
.blog-filters { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 0; }
.blog-filter { font-size: 13px; font-weight: 500; padding: 0.4rem 1rem; border-radius: 20px; border: 0.5px solid var(--border-mid); background: transparent; color: var(--text-muted); cursor: pointer; transition: all var(--transition); }
.blog-filter:hover, .blog-filter.active { background: var(--text); color: #fff; border-color: var(--text); }

/* ── ABOUT PAGE ── */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem; }
.team-card {
  background: var(--bg-card); border: 0.5px solid var(--border-mid);
  border-radius: var(--r); padding: 1.5rem; text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.team-card:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.06); }
.team-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--accent); display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 700; color: #fff; margin: 0 auto 1rem;
  font-family: 'Sora', sans-serif;
}
.team-name { font-family: 'Sora', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 0.25rem; }
.team-role { font-size: 13px; color: var(--text-muted); margin-bottom: 0.75rem; }
.team-bio { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.value-card {
  background: var(--bg-card); border: 0.5px solid var(--border-mid);
  border-radius: var(--r); padding: 1.75rem;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}
.value-card:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.06); border-color: rgba(26,143,227,0.2); }
.value-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.value-title { font-family: 'Sora', sans-serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
.value-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.timeline { display: flex; flex-direction: column; gap: 0; margin-top: 3rem; position: relative; }
.timeline::before { content: ''; position: absolute; left: 15px; top: 24px; bottom: 24px; width: 1px; background: var(--border-mid); }
.timeline-item { display: flex; gap: 2rem; align-items: flex-start; padding-bottom: 2.5rem; position: relative; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot { width: 32px; height: 32px; border-radius: 50%; background: var(--accent); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #fff; font-size: 12px; font-weight: 700; z-index: 1; }
.timeline-content {
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  border: 0.5px solid var(--border-mid);
  border-radius: var(--r-sm);
  border-left: 3px solid var(--accent);
  flex: 1;
  transition: box-shadow 0.2s;
}
.timeline-content:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.timeline-year { font-size: 12px; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.25rem; }
.timeline-title { font-family: 'Sora', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 0.35rem; }
.timeline-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ── CONTACT PAGE ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon { width: 40px; height: 40px; border-radius: var(--r-sm); background: rgba(26,143,227,0.1); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.contact-item-label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-light); margin-bottom: 0.25rem; }
.contact-item-value { font-size: 15px; color: var(--text); font-weight: 500; text-decoration: none; }
.contact-item-value:hover { color: var(--accent); }
.contact-form { background: var(--bg-card); border: 0.5px solid var(--border-mid); border-radius: var(--r); padding: 2.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.25rem; }
.form-group:last-of-type { margin-bottom: 0; }
.form-label { font-size: 13px; font-weight: 600; color: var(--text); }
.form-input, .form-select, .form-textarea {
  padding: 0.7rem 1rem; border: 0.5px solid var(--border-mid);
  border-radius: var(--r-sm); font-family: 'Inter', sans-serif;
  font-size: 14px; color: var(--text); background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none; width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--accent); box-shadow: 0 0 0 3px rgba(26,143,227,0.12);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-light); }
.form-textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
.form-submit { width: 100%; margin-top: 1.5rem; padding: 0.9rem; font-size: 15px; font-weight: 600; transition: background 0.2s, filter 0.2s, transform 0.15s; }
.form-submit:hover:not(:disabled) { filter: brightness(1.08); transform: translateY(-1px); }
.form-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
.form-note { font-size: 12px; color: var(--text-light); text-align: center; margin-top: 0.75rem; }
.form-success-banner {
  margin-bottom: 1.25rem; padding: 1rem 1.25rem;
  background: #dcfce7; border: 0.5px solid #86efac; border-radius: var(--r-sm);
  font-size: 14px; color: #15803d; font-weight: 500; line-height: 1.5;
}
.form-error-banner {
  margin-bottom: 1.25rem; padding: 1rem 1.25rem;
  background: #fef2f2; border: 0.5px solid #fca5a5; border-radius: var(--r-sm);
  font-size: 14px; color: #dc2626; font-weight: 500; line-height: 1.5;
}
/* Formspree SDK hides these with aria-hidden="true" until triggered */
[data-fs-success][aria-hidden="true"],
[data-fs-error][aria-hidden="true"] { display: none; }

/* ── SERVICE PAGES ── */
.service-breadcrumb { font-size: 13px; color: var(--text-muted); margin-bottom: 1.25rem; display: flex; align-items: center; gap: 0.5rem; justify-content: center; }
.service-breadcrumb a { color: var(--text-muted); text-decoration: none; }
.service-breadcrumb a:hover { color: var(--text); }
.service-breadcrumb span { color: var(--text-light); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem; }
.process-card {
  background: var(--bg-card); border: 0.5px solid var(--border-mid);
  border-radius: var(--r); padding: 1.75rem; position: relative;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}
.process-card:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.06); border-color: rgba(26,143,227,0.2); }
.process-number {
  font-family: 'Sora', sans-serif; font-size: 2.5rem; font-weight: 700;
  color: rgba(26,143,227,0.18); letter-spacing: -0.05em; margin-bottom: 0.75rem; line-height: 1;
}
.process-title { font-family: 'Sora', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.process-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.result-card {
  background: var(--bg-card); border: 0.5px solid var(--border-mid);
  border-radius: var(--r); padding: 2rem; text-align: center;
}
.result-num { font-family: 'Sora', sans-serif; font-size: 2.8rem; font-weight: 700; letter-spacing: -0.03em; color: var(--text); margin-bottom: 0.25rem; }
.result-num span { color: var(--accent); }
.result-label { font-size: 14px; color: var(--text-muted); }

/* ── FOOTER ── */
#main-footer { border-top: 0.5px solid var(--border); padding: 4rem 2rem 2rem; }
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .nav-logo { display: block; }
.footer-brand p { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 1rem; max-width: 240px; }
.social-links { display: flex; gap: 0.5rem; }
.social-link { width: 32px; height: 32px; border-radius: var(--r-sm); background: rgba(0,0,0,0.06); display: flex; align-items: center; justify-content: center; text-decoration: none; color: var(--text-muted); font-size: 13px; transition: background var(--transition); font-weight: 600; }
.social-link:hover { background: rgba(0,0,0,0.1); color: var(--text); }
.footer-col h4 { font-size: 13px; font-weight: 700; margin-bottom: 0.75rem; letter-spacing: 0.01em; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
.footer-col ul a { font-size: 13px; color: var(--text-muted); text-decoration: none; transition: color var(--transition); }
.footer-col ul a:hover { color: var(--text); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 1.5rem; border-top: 0.5px solid var(--border); flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom p { font-size: 12px; color: var(--text-light); }
.footer-bottom a { color: var(--text-muted); text-decoration: none; }
.footer-bottom a:hover { color: var(--text); }

/* ── FADE-IN ANIMATION ── */
.fade-in {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* ── HERO ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.hero h1 { animation: fadeUp 0.6s ease both; }
.hero p { animation: fadeUp 0.6s ease 0.1s both; }
.hero-ctas { animation: fadeUp 0.6s ease 0.2s both; }
.trust-bar { animation: fadeUp 0.6s ease 0.3s both; }
.page-hero h1 { animation: fadeUp 0.6s ease both; }
.page-hero p { animation: fadeUp 0.6s ease 0.1s both; }
.page-hero .hero-ctas { animation: fadeUp 0.6s ease 0.2s both; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .two-col.flip { direction: ltr; }
  .offerings-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .security-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-actions { display: none; }
  .hamburger { display: flex; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .results-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  #featured-post { grid-template-columns: 1fr !important; }
  #featured-post > div:first-child { border-right: none !important; border-bottom: 0.5px solid var(--border); }
}

@media (max-width: 600px) {
  section { padding: 4rem 1.25rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .security-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; }
  .cta-section { padding: 2.5rem 1.5rem; margin: 0 1rem 3rem; }
  .blog-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .book-promo { flex-direction: column; }
  .hero { padding-top: calc(var(--nav-h) + 3rem); }
  .page-hero { padding-top: calc(var(--nav-h) + 3rem); }
  .nav-logo-text { font-size: 15px; }
}

/* ── LANDING (Revenue Plan Stress Test) — layout only, site tokens ── */
.landing-hero-proof {
  max-width: 560px; margin: 1.75rem auto 0; padding: 1rem 1.25rem;
  background: var(--bg-card); border: 0.5px solid var(--border-mid);
  border-radius: var(--r); font-size: 14px; color: var(--text-muted); line-height: 1.65; text-align: left;
}
.landing-hero-proof strong { color: var(--text); font-weight: 600; }
.landing-two-col-wide { display: grid; grid-template-columns: 1fr 1fr; gap: 1.75rem; margin-top: 2.5rem; align-items: start; }
.landing-deliverables { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border-mid); border: 0.5px solid var(--border-mid); border-radius: var(--r); overflow: hidden; margin-top: 2rem; }
.landing-deliverable { background: var(--bg-card); padding: 1.4rem 1.6rem; transition: background var(--transition); }
.landing-deliverable:hover { background: #f9f8f5; }
.landing-deliverable h3 {
  font-family: 'Sora', sans-serif; font-size: 0.975rem; font-weight: 700;
  margin-bottom: 0.4rem; color: var(--text);
  display: flex; align-items: center; gap: 0.5rem;
}
.landing-deliverable h3 .check { color: var(--accent-secondary); font-size: 1rem; }
.landing-deliverable p { font-size: 13.5px; color: var(--text-muted); line-height: 1.65; margin: 0; }
.landing-dist-box { margin-top: 2rem; background: var(--bg-alt); border-radius: var(--r); padding: 1.6rem 1.75rem; border: 0.5px solid var(--border-mid); }
.landing-dist-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 0.65rem; font-size: 14px; }
.landing-dist-row:last-of-type { margin-bottom: 0; }
.landing-dist-name { width: 90px; font-weight: 600; color: var(--text); flex-shrink: 0; font-size: 13.5px; }
.landing-dist-track { flex: 1; height: 7px; background: rgba(0,0,0,0.07); border-radius: 4px; overflow: hidden; }
.landing-dist-fill { height: 100%; border-radius: 4px; background: var(--accent); }
.landing-dist-pct { width: 42px; text-align: right; font-weight: 700; color: var(--text); flex-shrink: 0; font-size: 13px; }
.landing-dist-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em; color: var(--text-muted); margin-bottom: 1.1rem; }
.landing-dist-note { font-size: 13px; color: var(--text-muted); margin-top: 1rem; font-style: italic; line-height: 1.6; margin-bottom: 0; }
.sample-risk-row { display: grid; grid-template-columns: minmax(0, 180px) 1fr 40px; align-items: center; gap: 0.75rem; font-size: 13px; padding: 0.35rem 0; border-bottom: 0.5px solid var(--border); }
.sample-risk-row:last-of-type { border-bottom: none; }
.sample-risk-bar { height: 5px; background: rgba(0,0,0,0.08); border-radius: 3px; overflow: hidden; }
.sample-risk-bar span { display: block; height: 100%; border-radius: 3px; background: var(--accent); }
.landing-deliverable-span { grid-column: 1 / -1; }
.landing-section-dark {
  background: var(--text);
  color: #fff;
}
.landing-section-dark .section-label { color: var(--accent-secondary); }
.landing-section-dark .section-title { color: #fff; }
.landing-section-dark .section-sub { color: rgba(255,255,255,0.72); max-width: 560px; }
.landing-sample-wrap {
  margin-top: 2.5rem;
  border-radius: var(--r);
  overflow: hidden;
  border: 0.5px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.04);
}
.landing-sample-head {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 0.5px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.2);
}
.landing-sample-head-label {
  font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--accent-secondary); display: block; margin-bottom: 4px;
}
.landing-sample-head-meta { font-size: 15px; color: rgba(255,255,255,0.9); }
.landing-sample-score { text-align: right; }
.landing-sample-score-val {
  font-family: 'Sora', sans-serif; font-size: 2.75rem; font-weight: 700;
  color: #c9a227; line-height: 1; letter-spacing: -0.03em;
}
.landing-sample-score-sub { font-size: 11px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.06em; }
.landing-sample-body { padding: 1.5rem; }
.sample-domain-label { color: rgba(255,255,255,0.65); }
.sample-domain-val { font-weight: 600; text-align: right; color: rgba(255,255,255,0.95); }
.sample-risk-row { border-bottom-color: rgba(255,255,255,0.1); }
.sample-risk-bar { background: rgba(255,255,255,0.12); }
.sample-risk-bar span { background: var(--accent); border-radius: 3px; }
.sample-risk-fill--high { background: #c73232 !important; }
.sample-risk-fill--mid { background: #ba7517 !important; }
.sample-risk-fill--low { background: #0d9488 !important; }
.sample-val--high { color: #f87171 !important; }
.sample-val--mid { color: #eab308 !important; }
.sample-val--low { color: #2dd4bf !important; }
.landing-sample-finding {
  margin-top: 1.25rem; padding-top: 1.1rem;
  border-top: 0.5px solid rgba(255,255,255,0.12);
}
.landing-finding-label {
  font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em;
  color: #c9a227; margin-bottom: 0.5rem;
}
.landing-finding-text { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.65; margin: 0; }
.landing-finding-text strong { color: #5eead4; font-weight: 600; }
.landing-sample-foot {
  padding: 0.85rem 1.5rem;
  border-top: 0.5px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.15);
}
.landing-sample-foot p { margin: 0; font-size: 13px; color: rgba(255,255,255,0.55); font-style: italic; line-height: 1.55; }
.landing-steps-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.landing-step-num {
  width: 36px; height: 36px; border-radius: 50%; border: 1.5px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 600; color: var(--accent); margin-bottom: 1rem;
}
.landing-step-title { font-family: 'Sora', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; }
.landing-step-desc { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin: 0; }
.landing-price-card .pricing-divider { border: none; border-top: 0.5px solid var(--border); margin: 1.35rem 0; }
.landing-price-outcome {
  font-family: 'Sora', sans-serif;
  font-size: 1.3rem; font-weight: 700;
  line-height: 1.25; margin-bottom: 0.6rem;
  color: var(--text);
}
.landing-price-meta { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 0; }
.landing-price-icp { font-size: 13px; font-weight: 600; color: var(--accent-secondary); margin-bottom: 0.3rem; }
.landing-price-card.featured .landing-price-icp { color: var(--accent-secondary); }
.landing-price-window { font-size: 12px; color: var(--text-light); }
.landing-price-card .pricing-desc { flex: 1; font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.landing-domain-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2.5rem;
}
.landing-domain-card {
  background: rgba(255,255,255,0.06);
  border: 0.5px solid rgba(255,255,255,0.12);
  border-radius: var(--r-sm);
  padding: 1.25rem;
  transition: background 0.2s, border-color 0.2s;
}
.landing-domain-card:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.22); }
.landing-domain-num {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent-secondary); margin-bottom: 0.5rem;
}
.landing-domain-name { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 0.45rem; }
.landing-domain-q { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.6; font-style: italic; margin: 0; }
.landing-founder-grid {
  display: grid; grid-template-columns: 280px 1fr; gap: 3rem; margin-top: 2.5rem; align-items: start;
}
.landing-founder-photo {
  width: 140px; height: 140px; border-radius: 50%; overflow: hidden;
  border: 3px solid var(--accent);
  background: var(--bg-alt); display: flex; align-items: center; justify-content: center;
}
.landing-founder-photo svg { width: 60px; opacity: 0.35; }
.landing-founder-name { font-family: 'Sora', sans-serif; font-size: 1.4rem; font-weight: 700; margin-top: 1.25rem; }
.landing-founder-role { font-size: 14px; color: var(--text-muted); margin-top: 4px; }
.landing-founder-link { font-size: 14px; font-weight: 600; color: var(--accent); text-decoration: none; display: inline-block; margin-top: 0.5rem; }
.landing-founder-link:hover { text-decoration: underline; }
.landing-founder-stats {
  margin-top: 1.25rem; padding: 1.25rem;
  background: var(--bg-card); border: 0.5px solid var(--border-mid); border-radius: var(--r-sm);
  display: flex; flex-direction: column; gap: 0.85rem;
}
.landing-fstat-val { font-family: 'Sora', sans-serif; font-size: 1.65rem; font-weight: 700; color: var(--accent); line-height: 1; }
.landing-fstat-lbl { font-size: 12px; color: var(--text-muted); line-height: 1.4; margin-top: 4px; }
.landing-founder-body { font-size: 15px; color: var(--text-muted); line-height: 1.75; margin: 0 0 1rem; }
.landing-founder-body:last-of-type { margin-bottom: 0; }
.landing-cred-box {
  margin: 1rem 0; padding: 1.25rem;
  background: var(--bg-card); border: 0.5px solid var(--border-mid); border-radius: var(--r-sm);
  display: flex; flex-direction: column; gap: 0.75rem;
}
.landing-cred-row { display: flex; gap: 0.65rem; align-items: flex-start; font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.landing-cred-row::before { content: '◆'; color: var(--accent); font-size: 10px; margin-top: 5px; flex-shrink: 0; }
.landing-cred-row strong { color: var(--text); font-weight: 600; }
.landing-founder-honest {
  background: var(--text); border-radius: var(--r-sm); padding: 1.5rem; margin-top: 0.75rem;
}
.landing-founder-honest-label {
  font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--accent-secondary); margin-bottom: 0.5rem;
}
.landing-founder-honest-text { font-size: 14px; color: rgba(255,255,255,0.72); line-height: 1.7; font-style: italic; margin: 0; }
.landing-guar-box {
  margin-top: 2rem;
  background: var(--bg-card);
  border: 0.5px solid var(--border-mid);
  border-radius: var(--r);
  padding: 2.25rem 2.5rem;
  border-top: 3px solid var(--accent-secondary);
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}
.landing-guar-statement {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  font-weight: 600; line-height: 1.5; color: var(--text); margin-bottom: 1.75rem;
}
.landing-guar-statement em { font-style: italic; color: var(--accent-secondary); }
.landing-guar-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem 2.5rem; }
.landing-guar-clause { display: flex; gap: 0.65rem; align-items: flex-start; font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.landing-guar-clause strong { color: var(--text); font-weight: 600; }
.landing-guar-icon {
  width: 20px; height: 20px; border-radius: 50%; background: var(--accent-secondary);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 11px; flex-shrink: 0; margin-top: 2px; font-weight: 700;
  flex-shrink: 0;
}
.landing-path-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2.5rem; }
.landing-path-card {
  background: var(--bg-card); border: 0.5px solid var(--border-mid);
  border-radius: var(--r); padding: 1.85rem 1.75rem; text-align: center;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
  display: flex; flex-direction: column; align-items: center;
}
.landing-path-card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,0,0,0.07); }
.landing-path-stripe {
  height: 4px; width: 44px; margin: 0 auto 1.25rem; border-radius: 2px;
}
.landing-path-name { font-family: 'Sora', sans-serif; font-size: 1.5rem; font-weight: 700; margin-bottom: 0.25rem; letter-spacing: -0.02em; }
.landing-path-who {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.09em;
  color: var(--text-light); margin-bottom: 0.85rem; font-weight: 500;
}
.landing-path-desc { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin-bottom: 1.1rem; flex: 1; }
.landing-path-pill--secondary { background: rgba(0,201,167,0.12); color: var(--accent-secondary); }
.landing-credit-standalone {
  background: rgba(26,143,227,0.06);
  border: 0.5px solid rgba(26,143,227,0.2);
  border-radius: var(--r);
  padding: 1.75rem;
  font-size: 15px; line-height: 1.75; color: var(--text-muted);
}
.landing-credit-forward {
  border-left: 3px solid var(--accent-secondary);
  background: rgba(0,201,167,0.06);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 1.75rem;
  font-size: 15px; line-height: 1.75; color: var(--text-muted);
}
.landing-credit-forward strong { color: var(--text); font-weight: 600; }
.landing-pricing-chip {
  display: inline-block; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  background: var(--accent-gradient); color: #fff;
  padding: 4px 10px; border-radius: var(--r-sm); margin-bottom: 0.75rem;
}
.landing-step-book { margin-top: 0.85rem; margin-bottom: 0; }
.hero-calendly-note {
  text-align: center; font-size: 15px; color: var(--text-muted);
  margin: -1.25rem auto 0; max-width: 560px; line-height: 1.5;
}
.hero-calendly-note a { color: var(--accent); font-weight: 600; text-decoration: none; }
.hero-calendly-note a:hover { text-decoration: underline; }
.landing-calendly {
  background: var(--bg-card); border: 0.5px solid var(--border-mid);
  border-radius: var(--r); overflow: hidden; min-height: 720px;
}
.landing-calendly .calendly-inline-widget { min-width: 320px; height: 720px; }
.landing-calendly-fallback { text-align: center; margin-top: 1rem; font-size: 14px; color: var(--text-muted); }
.landing-path-stripe--amber { background: #ba7517 !important; opacity: 1 !important; }
.landing-path-stripe--teal { background: #0d9488 !important; opacity: 1 !important; }
.landing-path-stripe--blue { background: #185fa5 !important; opacity: 1 !important; }
.landing-path-name--amber { color: #ba7517; }
.landing-path-name--teal { color: #0d9488; }
.landing-path-name--blue { color: #185fa5; }
/* Base pill — modifiers below add color */
.landing-path-pill {
  display: inline-block;
  padding: 0.32rem 0.9rem;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-top: 0.25rem;
}
.landing-path-pill--amber { background: #faeeda; color: #633806; }
.landing-path-pill--teal { background: #e1f5ee; color: #085041; }
.landing-path-pill--blue { background: #e6f1fb; color: #0c447c; }
.landing-dist-fill--amber { background: #ba7517 !important; }
.landing-dist-fill--teal { background: #0d9488 !important; }
.landing-dist-fill--blue { background: #185fa5 !important; }
.landing-dist-pct--amber { color: #ba7517; }
.landing-dist-pct--teal { color: #0d9488; }
.landing-dist-pct--blue { color: #185fa5; }
@media (max-width: 900px) {
  .landing-two-col-wide { grid-template-columns: 1fr; }
  .landing-deliverables { grid-template-columns: 1fr; }
  .sample-risk-row { grid-template-columns: 1fr; gap: 0.35rem; }
  .sample-risk-row .sample-domain-val { text-align: left; }
  .landing-steps-3 { grid-template-columns: 1fr; }
  .landing-domain-grid { grid-template-columns: 1fr; }
  .landing-founder-grid { grid-template-columns: 1fr; }
  .landing-guar-grid { grid-template-columns: 1fr; }
  .landing-path-grid { grid-template-columns: 1fr; }
}

/* ── BLOG ARTICLE PAGES ── */
.article-header {
  padding-top: calc(var(--nav-h) + 4rem);
  padding-bottom: 2.5rem;
  max-width: 760px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}
.article-breadcrumb {
  font-size: 13px; color: var(--text-muted);
  margin-bottom: 1.25rem; display: flex; align-items: center; gap: 0.5rem;
}
.article-breadcrumb a { color: var(--text-muted); text-decoration: none; }
.article-breadcrumb a:hover { color: var(--text); }
.article-breadcrumb span { color: var(--text-light); }
.article-tag {
  display: inline-block; background: rgba(26,143,227,0.1);
  color: var(--accent); font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 20px; margin-bottom: 1rem;
}
.article-header h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700; letter-spacing: -0.03em; line-height: 1.15;
  margin-bottom: 1.25rem;
}
.article-meta-bar {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  margin-top: 1.5rem; font-size: 13px; color: var(--text-muted);
  padding-top: 1.25rem; border-top: 0.5px solid var(--border);
}
.article-author-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--accent-gradient); display: flex; align-items: center;
  justify-content: center; font-size: 12px; font-weight: 700; color: #fff; flex-shrink: 0;
}
.article-meta-bar .sep { color: var(--border-mid); }
.article-featured-image {
  background: var(--bg-alt); border: 0.5px solid var(--border-mid);
  border-radius: var(--r); padding: 4rem 2rem;
  text-align: center; font-size: 4rem;
  max-width: 760px; margin: 0 auto 0; padding-left: 2rem; padding-right: 2rem;
}
.article-body {
  max-width: 720px; margin: 0 auto; padding: 2.5rem 2rem 5rem;
}
.article-body h2 {
  font-family: 'Sora', sans-serif; font-size: 1.45rem; font-weight: 700;
  letter-spacing: -0.02em; line-height: 1.25; margin: 2.75rem 0 1rem; color: var(--text);
}
.article-body h2:first-child { margin-top: 0; }
.article-body h3 {
  font-family: 'Sora', sans-serif; font-size: 1.1rem; font-weight: 700;
  line-height: 1.3; margin: 2rem 0 0.65rem; color: var(--text);
}
.article-body p {
  font-size: 16px; line-height: 1.8; color: var(--text);
  margin-bottom: 1.25rem;
}
.article-body ul, .article-body ol {
  margin: 0 0 1.5rem 1.4rem;
}
.article-body li {
  font-size: 16px; line-height: 1.75; color: var(--text); margin-bottom: 0.5rem;
}
.article-body strong { color: var(--text); font-weight: 600; }
.article-body a { color: var(--accent); text-decoration: none; }
.article-body a:hover { text-decoration: underline; }
.article-body blockquote {
  border-left: 3px solid var(--accent); padding: 0.85rem 1.25rem;
  margin: 1.75rem 0; background: var(--bg-alt);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}
.article-body blockquote p { margin: 0; font-style: italic; color: var(--text-muted); }
.article-callout {
  background: rgba(26,143,227,0.06); border: 1px solid rgba(26,143,227,0.2);
  border-radius: var(--r); padding: 1.25rem 1.5rem; margin: 1.75rem 0;
}
.article-callout-title { font-weight: 700; font-size: 13px; color: var(--accent); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.5rem; }
.article-callout p { margin: 0; font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.article-stat-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 1.75rem 0;
}
.article-stat {
  background: var(--bg-card); border: 0.5px solid var(--border-mid);
  border-radius: var(--r-sm); padding: 1.25rem; text-align: center;
}
.article-stat-num {
  font-family: 'Sora', sans-serif; font-size: 1.75rem; font-weight: 700;
  color: var(--accent); letter-spacing: -0.03em;
}
.article-stat-label { font-size: 12px; color: var(--text-muted); margin-top: 4px; }
.article-cta {
  background: var(--text); color: #fff; border-radius: var(--r);
  padding: 3rem 2.5rem; text-align: center; margin: 3.5rem 0 0;
}
.article-cta h2 {
  font-family: 'Sora', sans-serif; font-size: 1.6rem; font-weight: 700;
  letter-spacing: -0.02em; margin-bottom: 0.75rem;
}
.article-cta p { color: rgba(255,255,255,0.65); margin-bottom: 1.75rem; font-size: 1rem; }
.article-related {
  margin-top: 3rem; padding-top: 3rem; border-top: 0.5px solid var(--border);
}
.article-related h3 {
  font-family: 'Sora', sans-serif; font-size: 1.1rem; font-weight: 700;
  margin-bottom: 1.25rem; color: var(--text);
}
.article-related-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.article-related-card {
  background: var(--bg-card); border: 0.5px solid var(--border-mid);
  border-radius: var(--r-sm); padding: 1.25rem; text-decoration: none; color: inherit;
  transition: box-shadow 0.2s, transform 0.2s;
}
.article-related-card:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.article-related-card .blog-tag { margin-bottom: 0.4rem; }
.article-related-card-title { font-size: 14px; font-weight: 600; line-height: 1.4; color: var(--text); }

@media (max-width: 600px) {
  .article-stat-row { grid-template-columns: 1fr 1fr; }
  .article-related-grid { grid-template-columns: 1fr; }
  .article-cta { padding: 2rem 1.5rem; }
}
