/* GoodBooks — Public Marketing Site Styles */
/* www.dogoodbooks.org */

/* ── Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ── Design Tokens ── */
:root {
  --navy:      #1a3a4a;
  --cream:     #fdf6e3;
  --teal:      #539592;
  --teal-dark: #3d7370;
  --clay:      #ce7459;
  --slate:     #4c585a;
  --white:     #ffffff;
  --shadow:    rgba(26, 58, 74, 0.10);

  --serif: 'Lora', Georgia, serif;
  --sans:  'Inter', system-ui, sans-serif;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--slate);
  background-color: var(--cream);
}
img { display: block; max-width: 100%; }
a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-dark); }

/* ── Typography ── */
h1, h2, h3 {
  font-family: var(--serif);
  color: var(--navy);
  line-height: 1.25;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.55rem); font-weight: 600; }
p  { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* ── Layout helpers ── */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 56px 0; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
  border: 2px solid transparent;
  text-decoration: none;
  line-height: 1;
}
.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--cream);
}
.btn-outline-light {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}
.btn-outline-light:hover {
  background: var(--cream);
  color: var(--navy);
}

/* ─────────────────────────────────────────
   NAV
───────────────────────────────────────── */
.site-nav {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo img {
  display: block;
  /* Invert dark-navy mark to cream on the dark nav background */
  filter: brightness(0) invert(1);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: rgba(253, 246, 227, 0.78);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 150ms;
  text-decoration: none;
}
.nav-links a:hover { color: var(--cream); }
.nav-cta { margin-left: 8px; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
}

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
  background: var(--navy);
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0; right: 0;
  height: 60px;
  background: var(--cream);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-tagline {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 20px;
}
.hero h1 {
  color: var(--cream);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(253, 246, 227, 0.82);
  margin-bottom: 36px;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-note {
  font-size: 0.82rem;
  color: rgba(253, 246, 227, 0.5);
  margin-top: 14px;
}
/* Hero illustration placeholder */
.hero-art {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-art svg {
  width: 100%;
  max-width: 340px;
  opacity: 0.92;
}

/* ─────────────────────────────────────────
   PROBLEM
───────────────────────────────────────── */
.problem { background: var(--cream); }
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.problem-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 16px;
}
.problem-list {
  list-style: none;
  margin-top: 24px;
}
.problem-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 1rem;
  color: var(--slate);
}
.problem-list li::before {
  content: '→';
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.problem-callout {
  background: var(--navy);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
}
.problem-callout::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 28px;
  font-size: 6rem;
  font-family: var(--serif);
  color: var(--clay);
  line-height: 1;
  opacity: 0.6;
}
.problem-callout blockquote {
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--cream);
  margin-bottom: 20px;
  padding-top: 24px;
}
.problem-callout cite {
  font-size: 0.85rem;
  color: rgba(253, 246, 227, 0.6);
  font-style: normal;
}

/* ─────────────────────────────────────────
   FEATURES
───────────────────────────────────────── */
.features { background: var(--white); }
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}
.section-header p {
  font-size: 1.05rem;
  color: var(--slate);
  margin-top: 12px;
}
.clay-rule {
  width: 48px;
  height: 3px;
  background: var(--clay);
  border-radius: 2px;
  margin: 16px auto 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.feature-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: 0 2px 12px var(--shadow);
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px var(--shadow);
}
.feature-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  color: var(--teal);
}
.feature-card h3 { margin-bottom: 10px; }
.feature-card p  { font-size: 0.97rem; }

/* ─────────────────────────────────────────
   HOW IT WORKS
───────────────────────────────────────── */
.how-it-works { background: var(--cream); }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 2px;
  background: var(--teal);
  opacity: 0.25;
}
.step { text-align: center; }
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}
.step h3 { margin-bottom: 8px; }
.step p   { font-size: 0.95rem; }

/* ─────────────────────────────────────────
   PRICING
───────────────────────────────────────── */
.pricing { background: var(--white); }
.pricing-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.pricing-badge {
  display: inline-block;
  background: var(--clay);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.pricing-list {
  list-style: none;
  margin-top: 24px;
}
.pricing-list li {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.97rem;
}
.pricing-list li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
}
.pricing-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  text-align: center;
  color: var(--cream);
}
.pricing-card h3 {
  color: var(--cream);
  margin-bottom: 8px;
}
.pricing-price {
  font-family: var(--serif);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--cream);
  margin: 20px 0 4px;
  line-height: 1;
}
.pricing-price span {
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.6;
}
.pricing-note {
  font-size: 0.85rem;
  opacity: 0.55;
  margin-bottom: 28px;
}

/* ─────────────────────────────────────────
   ABOUT
───────────────────────────────────────── */
.about { background: var(--cream); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-avatar {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.founder-photo {
  width: 450px;
  height: 450px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 4px 24px rgba(26, 58, 74, 0.15);
}

/* ─────────────────────────────────────────
   WAITLIST / CTA
───────────────────────────────────────── */
.waitlist {
  background: var(--teal);
  padding: 80px 0;
  text-align: center;
}
.waitlist h2 { color: var(--white); margin-bottom: 12px; }
.waitlist p  { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 36px; }
.waitlist-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
  justify-content: center;
}
.waitlist-form input[type="email"] {
  flex: 1;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.15);
  color: var(--white);
  font-family: var(--sans);
  font-size: 1rem;
  outline: none;
  transition: border-color 150ms;
}
.waitlist-form input[type="email"]::placeholder { color: rgba(255,255,255,0.55); }
.waitlist-form input[type="email"]:focus { border-color: var(--white); }
.btn-white {
  background: var(--white);
  color: var(--teal);
  border: 2px solid var(--white);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--teal-dark);
}
.waitlist-reassure {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin-top: 14px;
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  padding: 56px 0 32px;
  color: var(--cream);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(253, 246, 227, 0.12);
  margin-bottom: 32px;
}
.footer-brand img {
  filter: brightness(0) invert(1);
}
.footer-brand p {
  color: rgba(253, 246, 227, 0.55);
  font-size: 0.92rem;
  margin-top: 12px;
  max-width: 280px;
  line-height: 1.6;
}
.footer-logo-text {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--cream);
}
.footer-col h4 {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(253, 246, 227, 0.45);
  margin-bottom: 16px;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  color: rgba(253, 246, 227, 0.7);
  font-size: 0.92rem;
  text-decoration: none;
  transition: color 150ms;
}
.footer-col ul a:hover { color: var(--cream); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(253, 246, 227, 0.35);
}
.footer-bottom a {
  color: rgba(253, 246, 227, 0.45);
  text-decoration: none;
}
.footer-bottom a:hover { color: rgba(253, 246, 227, 0.7); }

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 860px) {
  .hero-inner,
  .problem-grid,
  .pricing-inner,
  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero { padding: 64px 0 72px; }
  .hero-art { order: -1; }
  .hero-art svg { max-width: 220px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .steps::before { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .about-inner { grid-template-columns: 1fr; }
  .about-avatar { order: -1; }
}

@media (max-width: 600px) {
  .section-pad { padding: 56px 0; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .waitlist-form {
    flex-direction: column;
  }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .pricing-inner { grid-template-columns: 1fr; }
  h1 { font-size: 2rem; }
}

/* ─────────────────────────────────────────
   PAGE HERO  (features, resources, etc.)
───────────────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: 72px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0; right: 0;
  height: 48px;
  background: var(--cream);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero.next-white::after { background: var(--white); }
.page-breadcrumb { margin-bottom: 20px; }
.page-breadcrumb a {
  font-size: 0.82rem;
  color: rgba(253,246,227,0.5);
  text-decoration: none;
}
.page-breadcrumb a:hover { color: rgba(253,246,227,0.8); }
.page-breadcrumb .sep { color: rgba(253,246,227,0.25); margin: 0 8px; font-size: 0.82rem; }
.page-breadcrumb .current { font-size: 0.82rem; color: rgba(253,246,227,0.7); }
.page-hero h1 { color: var(--cream); margin-bottom: 20px; }
.page-hero .lead {
  font-size: 1.12rem;
  color: rgba(253,246,227,0.78);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.65;
}
.page-hero-actions { margin-top: 32px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ─────────────────────────────────────────
   FEATURE DEEP ROWS
───────────────────────────────────────── */
.feature-row {
  padding: 80px 0;
  background: var(--white);
}
.feature-row:nth-child(even) { background: var(--cream); }
.feature-row + .feature-row {
  border-top: 1px solid rgba(26,58,74,0.07);
}
/* The actual 2-col grid lives on the inner wrapper so .container can constrain width */
.feature-row-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.feature-row.flipped .feature-row-inner > .feature-row-content { order: 2; }
.feature-row.flipped .feature-row-inner > .feature-row-visual  { order: 1; }
.feature-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 12px;
}
.feature-row h2 { margin-bottom: 16px; }
.benefit-list { list-style: none; margin-top: 20px; }
.benefit-list li {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.97rem;
  color: var(--slate);
  line-height: 1.55;
}
.benefit-list li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Mock UI blocks */
.mock-ui {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: 0 6px 28px rgba(26,58,74,0.13);
}
.mock-ui-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(26,58,74,0.07);
}
.mock-dot { width: 10px; height: 10px; border-radius: 50%; }
.mock-dot-r { background: #f28779; }
.mock-dot-a { background: #f9bb2d; }
.mock-dot-g { background: #96d07f; }
.mock-title {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-left: auto;
}
.mock-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(26,58,74,0.06);
  font-size: 0.85rem;
  gap: 10px;
}
.mock-row:last-child { border-bottom: none; }
.mock-row-label { color: var(--slate); }
.mock-row-val { font-weight: 700; color: var(--navy); }
.mock-row-val.pos { color: var(--teal); }
.mock-row-val.neg { color: var(--clay); }
.mock-badge {
  display: inline-block;
  font-size: 0.67rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.badge-restricted { background: rgba(206,116,89,0.12); color: var(--clay); }
.badge-unres      { background: rgba(83,149,146,0.12); color: var(--teal); }
.badge-designated { background: rgba(26,58,74,0.1);    color: var(--navy); }
.mock-section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(76,88,90,0.45);
  padding: 12px 0 6px;
}
.mock-progress-wrap { margin: 10px 0; }
.mock-progress-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--slate);
  margin-bottom: 5px;
}
.mock-bar {
  height: 7px;
  background: rgba(26,58,74,0.08);
  border-radius: 4px;
  overflow: hidden;
}
.mock-fill {
  height: 100%;
  border-radius: 4px;
  background: var(--teal);
}
.mock-fill.over { background: var(--clay); }
.mock-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mock-role-badge {
  font-size: 0.67rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  text-transform: uppercase;
}
.role-admin    { background: rgba(26,58,74,0.1); color: var(--navy); }
.role-treasurer{ background: rgba(83,149,146,0.12); color: var(--teal); }
.role-viewer   { background: rgba(76,88,90,0.1); color: var(--slate); }

/* Mock UI header/total rows */
.mock-row-header {
  font-size: 0.72rem !important;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(76,88,90,0.5) !important;
  padding-top: 0 !important;
}
.mock-row-total {
  font-weight: 700;
  color: var(--navy) !important;
  border-top: 2px solid rgba(26,58,74,0.12) !important;
  border-bottom: none !important;
  margin-top: 4px;
}

/* Additional features grid */
.add-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.add-feature-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 28px;
}
.add-feature-icon {
  width: 40px;
  height: 40px;
  color: var(--teal);
  margin-bottom: 16px;
}
.add-feature-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.add-feature-card p  { font-size: 0.9rem; }

/* ─────────────────────────────────────────
   COMPARISON TABLE
───────────────────────────────────────── */
.compare-section { background: var(--navy); }
.compare-section .section-header h2 { color: var(--cream); }
.compare-section .section-header p  { color: rgba(253,246,227,0.65); }
.compare-wrap { overflow-x: auto; margin-top: 40px; border-radius: var(--radius-md); overflow: hidden; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 540px;
}
.compare-table thead th {
  padding: 16px 20px;
  text-align: left;
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 700;
}
.th-feature { background: rgba(253,246,227,0.06); color: rgba(253,246,227,0.5); width: 36%; }
.th-gb      { background: var(--teal); color: var(--white); text-align: center; }
.th-qb      { background: rgba(253,246,227,0.08); color: rgba(253,246,227,0.65); text-align: center; }
.th-sheets  { background: rgba(253,246,227,0.04); color: rgba(253,246,227,0.5); text-align: center; }
.compare-table tbody td {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(253,246,227,0.06);
  font-size: 0.9rem;
}
.compare-table tbody tr:last-child td { border-bottom: none; }
.td-feature { color: rgba(253,246,227,0.8); font-weight: 500; }
.td-gb, .td-qb, .td-sheets { text-align: center; }
.td-gb      { background: rgba(83,149,146,0.08); }
.compare-table tbody tr:nth-child(odd) .td-gb { background: rgba(83,149,146,0.12); }
.check-yes  { color: #7ecfb3; font-weight: 700; font-size: 1rem; }
.check-no   { color: rgba(253,246,227,0.3); font-size: 1rem; }
.check-partial { color: #f9bb2d; font-size: 0.78rem; font-weight: 600; }

/* ─────────────────────────────────────────
   FAQ
───────────────────────────────────────── */
.faq-section { background: var(--cream); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(26,58,74,0.1); }
.faq-item:first-child { border-top: 1px solid rgba(26,58,74,0.1); }
.faq-toggle {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 0;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  line-height: 1.4;
}
.faq-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid var(--teal);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 220ms, background 220ms, color 220ms;
}
.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
  background: var(--teal);
  color: var(--white);
}
.faq-body { max-height: 0; overflow: hidden; transition: max-height 320ms ease; }
.faq-item.is-open .faq-body { max-height: 600px; }
.faq-body p { padding-bottom: 22px; color: var(--slate); font-size: 0.97rem; line-height: 1.7; }

/* ─────────────────────────────────────────
   RESOURCE CARDS (resources page)
───────────────────────────────────────── */
.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.resource-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: 0 2px 12px var(--shadow);
  transition: transform 200ms, box-shadow 200ms;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.resource-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px var(--shadow);
}
.resource-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 14px;
  width: fit-content;
}
.tag-guide    { background: rgba(83,149,146,0.12); color: var(--teal); }
.tag-glossary { background: rgba(26,58,74,0.08);   color: var(--navy); }
.tag-template { background: rgba(206,116,89,0.12); color: var(--clay); }
.resource-card h3 { font-size: 1.05rem; line-height: 1.35; margin-bottom: 10px; }
.resource-card p  { font-size: 0.88rem; color: var(--slate); flex: 1; margin: 0; }
.resource-read {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal);
}
.resource-read::after { content: '→'; }
.resource-card:hover .resource-read { color: var(--teal-dark); }

/* ─────────────────────────────────────────
   GUIDE / LONG-FORM CONTENT
───────────────────────────────────────── */
.guide-block { background: var(--white); }
.guide-block.alt { background: var(--cream); }
.guide-max { max-width: 780px; margin: 0 auto; }
.guide-max h2 { margin-top: 52px; margin-bottom: 16px; }
.guide-max h2:first-child { margin-top: 0; }
.guide-max h3 { margin-top: 36px; margin-bottom: 10px; font-size: clamp(1.1rem,2vw,1.3rem); }
.guide-max p  { font-size: 1rem; line-height: 1.75; }
.guide-max ul, .guide-max ol { padding-left: 24px; margin: 0.5em 0 1em; }
.guide-max li { font-size: 1rem; line-height: 1.65; margin-bottom: 8px; }
.guide-callout {
  background: rgba(83,149,146,0.08);
  border-left: 4px solid var(--teal);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  margin: 28px 0;
}
.guide-callout p { margin: 0; color: var(--navy); font-size: 0.97rem; }
.guide-divider { border: none; border-top: 2px solid rgba(26,58,74,0.07); margin: 0; }

/* ─────────────────────────────────────────
   GLOSSARY
───────────────────────────────────────── */
.glossary-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.glossary-entry {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 22px 24px;
  box-shadow: 0 1px 6px var(--shadow);
}
.glossary-entry h4 {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.glossary-entry p { font-size: 0.88rem; color: var(--slate); margin: 0; }

/* ─────────────────────────────────────────
   RESPONSIVE — NEW SECTIONS
───────────────────────────────────────── */
@media (max-width: 860px) {
  .feature-row { padding: 52px 0; }
  .feature-row-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .feature-row.flipped .feature-row-inner > .feature-row-content,
  .feature-row.flipped .feature-row-inner > .feature-row-visual { order: unset; }
  .add-features-grid { grid-template-columns: 1fr 1fr; }
  .resource-grid { grid-template-columns: 1fr 1fr; }
  .glossary-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .page-hero { padding: 52px 0 64px; }
  .feature-row { padding: 40px 0; }
  .add-features-grid { grid-template-columns: 1fr; }
  .resource-grid { grid-template-columns: 1fr; }
  .compare-table { font-size: 0.82rem; }
  .compare-table thead th,
  .compare-table tbody td { padding: 10px 12px; }
  .pricing-grid { grid-template-columns: 1fr; gap: 20px; }
  .price-card.featured { transform: none; }
}

/* ─────────────────────────────────────────
   PRICING PAGE
───────────────────────────────────────── */
.pricing-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 16px;
}
.pricing-intro p { font-size: 1rem; color: rgba(253,246,227,0.75); margin-top: 12px; }
.pricing-founding {
  display: inline-block;
  background: rgba(206,116,89,0.2);
  border: 1px solid rgba(206,116,89,0.4);
  color: var(--clay);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  margin-top: 10px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  align-items: start;
}

.price-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px 32px;
  box-shadow: 0 3px 18px var(--shadow);
  position: relative;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px var(--shadow);
}
.price-card.featured {
  border-color: var(--teal);
  box-shadow: 0 8px 36px rgba(83,149,146,0.22);
  transform: scale(1.025);
}
.price-card.featured:hover {
  transform: scale(1.025) translateY(-4px);
}

.price-popular {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(83,149,146,0.4);
}

.price-tier {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 14px;
}

.price-amount {
  line-height: 1;
  margin-bottom: 6px;
}
.price-currency {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  vertical-align: 12px;
}
.price-number {
  font-family: var(--serif);
  font-size: 3.6rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.price-period {
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--slate);
  opacity: 0.65;
  margin-left: 2px;
}

.price-coming {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--slate);
  opacity: 0.45;
  line-height: 1;
  margin-bottom: 6px;
}

.price-desc {
  font-size: 0.88rem;
  color: var(--slate);
  line-height: 1.5;
  margin-top: 10px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(26,58,74,0.09);
  margin-bottom: 22px;
}

.price-features {
  list-style: none;
  flex: 1;
  margin-bottom: 28px;
}
.price-features li {
  display: flex;
  gap: 9px;
  font-size: 0.89rem;
  color: var(--slate);
  margin-bottom: 10px;
  line-height: 1.45;
}
.price-features li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.price-features li.off { opacity: 0.38; }
.price-features li.off::before { content: '–'; color: var(--slate); }

.price-cta { margin-top: auto; }
.price-cta .btn { width: 100%; text-align: center; display: block; }

.price-footnote {
  font-size: 0.75rem;
  color: var(--slate);
  opacity: 0.55;
  text-align: center;
  margin-top: 10px;
  line-height: 1.5;
}

/* Divider line with label */
.price-section-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 56px 0 40px;
  color: rgba(76,88,90,0.4);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.price-section-divider::before,
.price-section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(26,58,74,0.1);
}

/* Pricing feature comparison table */
.pricing-compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
}
.pricing-compare-table thead th {
  padding: 14px 20px;
  text-align: left;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 700;
  border-bottom: 2px solid rgba(26,58,74,0.1);
}
.pct-feature { width: 40%; color: var(--navy); }
.pct-free    { width: 20%; text-align: center; color: var(--slate); }
.pct-starter { width: 20%; text-align: center; color: var(--teal); }
.pct-pro     { width: 20%; text-align: center; color: var(--navy); }
.pricing-compare-table tbody td {
  padding: 13px 20px;
  border-bottom: 1px solid rgba(26,58,74,0.06);
  font-size: 0.88rem;
}
.pricing-compare-table tbody tr:last-child td { border-bottom: none; }
.pricing-compare-table tbody td:not(:first-child) { text-align: center; }
.pricing-compare-table tbody tr:nth-child(odd) { background: rgba(26,58,74,0.02); }
.pct-yes    { color: var(--teal); font-weight: 700; font-size: 1rem; }
.pct-no     { color: rgba(76,88,90,0.3); font-size: 1rem; }
.pct-partial { color: var(--clay); font-size: 0.78rem; font-weight: 600; }
.pct-row-group td {
  background: var(--navy) !important;
  color: rgba(253,246,227,0.55);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 20px;
}

/* Included everywhere strip */
.all-plans {
  background: rgba(83,149,146,0.06);
  border-top: 3px solid var(--teal);
  border-bottom: 3px solid var(--teal);
  padding: 40px 0;
}
.all-plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 28px;
}
.all-plan-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--slate);
}
.all-plan-item::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

@media (max-width: 860px) {
  .all-plans-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .all-plans-grid { grid-template-columns: 1fr; }
  .pricing-compare-table { font-size: 0.8rem; }
  .pricing-compare-table thead th,
  .pricing-compare-table tbody td { padding: 10px 12px; }
}
