/* ================================================
   PathFinder Marketing Website — styles.css
   Design: Warm Light palette, clean & minimal
   ================================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #FAFAF8;
  --bg-alt: #F5F0E8;
  --surface: #FFFFFF;
  --border: #E8E4DC;
  --text: #1A1A1E;
  --text-secondary: #6B6B70;
  --text-tertiary: #9B9B9F;
  --accent: #C48A2A;
  --accent-hover: #A87420;
  --accent-light: #F5EDD8;
  --dark-bg: #0A0A0B;
  --dark-surface: #1A1A1E;
  --dark-border: #2A2A2E;
  --dark-text: #F0F0ED;
  --dark-text-secondary: #8A8A8E;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 118px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Announcement Banner --- */
.announcement-banner {
  background: var(--dark-bg);
  color: var(--dark-text);
  text-align: center;
  padding: 10px 0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.announcement-banner a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.announcement-banner a:hover {
  color: #E8B84A;
}

/* --- Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-sm { font-size: 14px; padding: 8px 18px; }
.btn-lg { font-size: 16px; padding: 14px 28px; }
.btn-full { width: 100%; }
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-outline:hover { border-color: var(--text-secondary); }
.btn-ghost {
  background: rgba(255,255,255,0.1);
  color: var(--dark-text);
  border: 1px solid var(--dark-border);
}
.btn-ghost:hover { background: rgba(255,255,255,0.15); }

/* --- Waitlist Form --- */
.waitlist-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  max-width: 460px;
  margin: 0 auto;
}
.waitlist-form input[type="email"] {
  flex: 1;
  padding: 14px 18px;
  font-family: inherit;
  font-size: 15px;
  border: 1px solid var(--dark-border);
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  color: var(--dark-text);
  outline: none;
  transition: border-color 0.2s;
}
.waitlist-form input[type="email"]::placeholder {
  color: var(--dark-text-secondary);
}
.waitlist-form input[type="email"]:focus {
  border-color: var(--accent);
}
.waitlist-form-stacked input[type="email"] {
  background: var(--surface);
  border-color: var(--border);
  color: var(--text);
}
.waitlist-form-stacked input[type="email"]::placeholder {
  color: var(--text-tertiary);
}
.waitlist-note {
  font-size: 13px;
  color: var(--dark-text-secondary);
  margin-top: 12px;
  text-align: center;
}
.waitlist-success {
  font-size: 15px;
  color: var(--accent);
  font-weight: 600;
  text-align: center;
  padding: 14px 0;
}

/* --- Section Headers --- */
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 12px;
}
.section-desc {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.6;
}
.section-header {
  margin-bottom: 56px;
}

/* ================================================
   NAVIGATION
   ================================================ */
.nav {
  position: fixed;
  top: 38px;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 250, 248, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.nav.scrolled-hero {
  background: rgba(250, 250, 248, 0.95);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 17px;
  color: var(--text);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  color: var(--text-secondary);
}
.nav-links a:hover { color: var(--text); }
.nav-signin { color: var(--text-secondary); }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: all 0.3s;
}

/* ================================================
   HERO
   ================================================ */
.hero {
  background: var(--dark-bg);
  padding: 178px 0 0;
  overflow: hidden;
}
.hero-content {
  text-align: center;
  margin-bottom: 56px;
}
.hero-headline {
  font-size: clamp(36px, 6vw, 60px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--dark-text);
  margin-bottom: 20px;
}
.hero-accent {
  background: linear-gradient(135deg, #E8B84A, #D4A040);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 18px;
  color: var(--dark-text-secondary);
  max-width: 540px;
  margin: 0 auto 32px;
  line-height: 1.6;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero Screenshot */
.hero-screenshot {
  max-width: 920px;
  margin: 0 auto;
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
}
.screenshot-dots {
  display: flex;
  gap: 7px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--dark-border);
}
.screenshot-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--dark-border);
}
.screenshot-inner {
  display: grid;
  grid-template-columns: 180px 1fr;
  height: 340px;
}

/* Sidebar */
.ss-sidebar {
  border-right: 1px solid var(--dark-border);
  padding: 16px 12px;
}
.ss-sidebar-item {
  height: 8px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  margin-bottom: 14px;
}
.ss-sidebar-item.active {
  background: var(--accent);
  opacity: 0.5;
}
.ss-sidebar-divider {
  height: 1px;
  background: var(--dark-border);
  margin: 12px 0;
}

/* Main Area */
.ss-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 16px;
}
.ss-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 16px;
}
.ss-card-header {
  height: 6px;
  width: 50%;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  margin-bottom: 14px;
}
.ss-card-header.short { width: 35%; }

/* Chart wheel */
.ss-chart-card { position: relative; }
.ss-chart-wheel {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 10px auto 0;
}
.ss-wheel-ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
}
.ss-wheel-ring.inner {
  inset: 20%;
}
.ss-wheel-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
}
.ss-wheel-dot.accent {
  background: var(--accent);
  opacity: 0.6;
}

/* Text lines */
.ss-text-line {
  height: 5px;
  background: rgba(255,255,255,0.06);
  border-radius: 3px;
  margin-bottom: 8px;
}
.ss-text-line.w80 { width: 80%; }
.ss-text-line.w60 { width: 60%; }
.ss-text-line.w90 { width: 90%; }

/* Right column */
.ss-right-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Transit bars */
.ss-transit-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.ss-transit-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}
.ss-transit-dot.accent { background: var(--accent); opacity: 0.6; }
.ss-transit-bar {
  flex: 1;
  height: 5px;
  background: rgba(255,255,255,0.04);
  border-radius: 3px;
  overflow: hidden;
}
.ss-transit-fill {
  height: 100%;
  background: rgba(255,255,255,0.12);
  border-radius: 3px;
}
.ss-transit-fill.accent {
  background: var(--accent);
  opacity: 0.4;
}

/* ================================================
   SOCIAL PROOF
   ================================================ */
.proof {
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}
.proof-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.proof-item { text-align: center; }
.proof-number {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}
.proof-label {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 2px;
}
.proof-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ================================================
   FEATURES — BENTO GRID
   ================================================ */
.features {
  padding: 96px 0;
}
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.bento-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.bento-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.04);
}
.bento-large {
  grid-row: span 2;
}
.bento-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}
.bento-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.bento-visual {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
}
.bento-large .bento-visual {
  min-height: 160px;
}

/* Bento visuals */
.bento-steps {
  display: flex;
  align-items: center;
  gap: 0;
}
.bento-step {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
}
.bento-step.accent {
  background: var(--accent-light);
  border-color: var(--accent);
  color: var(--accent);
}
.bento-step-line {
  width: 16px;
  height: 1px;
  background: var(--border);
}

.bento-ai-lines { width: 100%; }
.bento-ai-line {
  height: 6px;
  background: var(--bg-alt);
  border-radius: 3px;
  margin-bottom: 8px;
}
.bento-ai-line.w80 { width: 80%; }
.bento-ai-line.w60 { width: 60%; }
.bento-ai-line.w70 { width: 70%; }
.bento-ai-line.w90 { width: 90%; }
.bento-ai-line.accent {
  background: var(--accent-light);
}

.bento-digest {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  width: 100%;
}
.bento-digest-dot {
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: 2px;
  flex-shrink: 0;
}
.bento-digest-lines { flex: 1; }

.bento-transit-bars { width: 100%; }
.bento-tbar {
  height: 6px;
  background: var(--bg-alt);
  border-radius: 3px;
  margin-bottom: 10px;
  overflow: hidden;
}
.bento-tfill {
  height: 100%;
  background: var(--border);
  border-radius: 3px;
}
.bento-tfill.accent {
  background: var(--accent);
  opacity: 0.5;
}

.bento-cal { width: 100%; }
.bento-cal-row {
  display: flex;
  gap: 6px;
  margin-bottom: 6px;
}
.bento-cal-day {
  flex: 1;
  height: 24px;
  background: var(--bg-alt);
  border-radius: 4px;
}
.bento-cal-day.active {
  background: var(--bg);
  border: 1px solid var(--border);
}
.bento-cal-day.accent {
  background: var(--accent-light);
}

/* ================================================
   METHOD
   ================================================ */
.method {
  padding: 96px 0;
  background: var(--bg-alt);
}
.method-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.method-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.method-num {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
}
.method-step h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}
.method-step p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ================================================
   PRICING
   ================================================ */
.pricing {
  padding: 96px 0;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 720px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
}
.pricing-card.featured {
  border: 2px solid var(--accent);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 6px;
}
.pricing-tier {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.pricing-price {
  margin-bottom: 4px;
}
.pricing-amount {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.pricing-period {
  font-size: 16px;
  color: var(--text-secondary);
  font-weight: 400;
}
.pricing-annual {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}
.pricing-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}
.pricing-features {
  margin-bottom: 28px;
}
.pricing-features li {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  padding-left: 20px;
  position: relative;
}
.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.5;
  transform: translateY(-50%);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-launch {
  font-size: 13px;
  color: var(--accent);
  text-align: center;
  margin-top: 12px;
}

/* ================================================
   COMPARISON
   ================================================ */
.comparison {
  padding: 96px 0;
  background: var(--bg-alt);
}
.comparison-table {
  max-width: 800px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.comp-row {
  display: grid;
  grid-template-columns: 140px repeat(3, 1fr);
  border-bottom: 1px solid var(--border);
}
.comp-row:last-child { border-bottom: none; }
.comp-row.comp-header {
  background: var(--bg-alt);
  font-size: 13px;
  font-weight: 600;
}
.comp-cell {
  padding: 14px 18px;
  font-size: 14px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
}
.comp-cell.label {
  font-weight: 600;
  color: var(--text);
  font-size: 13px;
}
.comp-cell.highlight {
  background: rgba(196, 138, 42, 0.04);
  color: var(--text);
  font-weight: 500;
}
.comp-header .comp-cell.highlight {
  color: var(--accent);
  font-weight: 700;
}

/* ================================================
   FAQ
   ================================================ */
.faq {
  padding: 96px 0;
}
.faq-list {
  max-width: 680px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  gap: 16px;
}
.faq-question:hover { color: var(--accent); }
.faq-icon {
  flex-shrink: 0;
  color: var(--text-tertiary);
  transition: transform 0.3s;
}
.faq-item.open .faq-icon {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer p {
  padding: 0 0 20px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ================================================
   FINAL CTA
   ================================================ */
.final-cta {
  padding: 96px 0;
  background: var(--bg-alt);
}
.cta-box {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.cta-box h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.cta-box p {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

/* ================================================
   LEGAL PAGES
   ================================================ */
.legal-page {
  padding: 140px 0 96px;
}
.legal-header {
  margin-bottom: 48px;
}
.legal-effective {
  font-size: 14px;
  color: var(--text-tertiary);
  margin-top: 8px;
}
.legal-content {
  max-width: 720px;
}
.legal-content h2 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.legal-content h3 {
  font-size: 16px;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 8px;
}
.legal-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 12px;
}
.legal-content ul {
  margin-bottom: 12px;
  padding-left: 20px;
}
.legal-content li {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 6px;
  list-style: disc;
}
.legal-content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-content a:hover {
  color: var(--accent-hover);
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
  padding: 64px 0 32px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand .nav-logo { margin-bottom: 12px; }
.footer-tagline {
  font-size: 14px;
  color: var(--text-secondary);
  max-width: 260px;
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text);
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 10px;
}
.footer-col a:hover { color: var(--text); }
.footer-contact {
  font-size: 14px;
  margin-top: 8px;
}
.footer-contact a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-contact a:hover {
  color: var(--accent-hover);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.footer-bottom p {
  font-size: 13px;
  color: var(--text-tertiary);
}
.footer-social {
  display: flex;
  gap: 16px;
}
.footer-social a {
  color: var(--text-tertiary);
  transition: color 0.2s;
}
.footer-social a:hover { color: var(--text); }

/* ================================================
   COMPARISON TABLE (semantic)
   ================================================ */
.comp-table {
  width: 100%;
  border-collapse: collapse;
}
.comp-table thead th {
  background: var(--bg-alt);
  font-size: 13px;
  font-weight: 600;
  padding: 14px 18px;
  text-align: left;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}
.comp-table thead th.highlight {
  color: var(--accent);
  font-weight: 700;
  background: rgba(196, 138, 42, 0.04);
}
.comp-table tbody th {
  font-weight: 600;
  color: var(--text);
  font-size: 13px;
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.comp-table tbody td {
  padding: 14px 18px;
  font-size: 14px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}
.comp-table tbody tr:last-child td,
.comp-table tbody tr:last-child th {
  border-bottom: none;
}
.comp-table td.highlight {
  background: rgba(196, 138, 42, 0.04);
  color: var(--text);
  font-weight: 500;
}

/* ================================================
   BLOG
   ================================================ */
.blog-page {
  padding: 140px 0 96px;
}
.blog-header {
  margin-bottom: 48px;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  max-width: 960px;
}
.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.04);
}
.blog-card-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.blog-card h2 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.blog-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
}
.blog-card-meta {
  font-size: 13px;
  color: var(--text-tertiary);
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.blog-post-header {
  margin-bottom: 40px;
}
.blog-post-meta {
  font-size: 14px;
  color: var(--text-tertiary);
  margin-top: 12px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.blog-post-meta a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.blog-post-meta a:hover {
  color: var(--accent-hover);
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 900px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bento-large { grid-row: span 1; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
  .comp-row { grid-template-columns: 100px repeat(3, 1fr); }
  .comp-cell { padding: 12px; font-size: 13px; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 102px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    align-items: stretch;
    box-shadow: 0 16px 48px rgba(0,0,0,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-links .btn { text-align: center; }
  .nav-toggle { display: flex; }

  .hero { padding: 158px 0 0; }
  .waitlist-form { flex-direction: column; }
  .waitlist-form .btn { width: 100%; }
  .hero-headline { font-size: clamp(32px, 8vw, 48px); }
  .hero-sub { font-size: 16px; }

  .screenshot-inner {
    grid-template-columns: 1fr;
    height: auto;
  }
  .ss-sidebar { display: none; }
  .ss-main {
    grid-template-columns: 1fr;
    height: 260px;
  }

  .bento-grid { grid-template-columns: 1fr; }
  .method-grid { grid-template-columns: 1fr; }
  .proof-grid { gap: 24px; }
  .proof-divider { display: none; }

  .comparison-table { overflow-x: auto; }
  .comp-table { min-width: 520px; }
  .blog-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .section-title { font-size: clamp(24px, 6vw, 32px); }
  .features, .method, .pricing, .comparison, .faq, .final-cta { padding: 72px 0; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; max-width: 280px; }
  .proof-grid { flex-direction: column; gap: 20px; }
}
