:root {
  /* Book Club Buddy — Teal gradient theme (based on Recraft mock + Coolors palette) */

  /* Background + text */
  --bg: #eef6f6; /* page base */
  --ink: #0f2a33; /* primary text */
  --muted: #4c6970; /* secondary text */

  /* Palette */
  --teal: #349698; /* highlights + headings + primary buttons */
  --teal-dark: #307c8a; /* hover / strong CTA */
  --teal-base: #6c8b93; /* teal wash used in background */
  --teal-soft: #98c2bb; /* subtle accents / icons */
  --orange: #edab8f; /* warm accent */
  --orange-soft: rgba(237, 171, 143, 0.22);
  --peach: #fff3ea; /* warm background tint */

  /* Surfaces */
  --card: rgba(255, 255, 255, 0.1);
  --border: rgba(52, 150, 152, 0.4);
  --shadow: 0 4px 10px rgba(15, 23, 42, 0.06);

  /* Helpers */
  --accent-soft: rgba(52, 150, 152, 0.1);
  --accent-soft-2: rgba(152, 194, 187, 0.18);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  /* primary teal glow */
  background:
    radial-gradient(900px 520px at 78% 40%, rgba(52, 150, 152, 0.35) 0%, rgba(52, 150, 152, 0.16) 40%, transparent 70%),
    /* soft secondary teal wash */
    radial-gradient(1200px 700px at 50% 115%, rgba(152, 194, 187, 0.28) 0%, transparent 65%),
    /* base vertical gradient */
    linear-gradient(180deg, #eaf8fb 0%, var(--bg) 38%, #ffffff 100%);

  color: var(--ink);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.topbar {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.logo {
  height: 36px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-weight: 600;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--ink);
}

.hero {
  padding: 70px 20px 40px;
}

.hero-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.hero-copy h1,
.hero-inner h1 {
  font-size: clamp(44px, 7vw, 64px);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero-copy {
  max-width: 520px;
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 720px;
  margin-bottom: 24px;
}

.pill {
  border: 2px solid var(--border);
  padding: 6px 12px;
  border-radius: 999px;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-row-center {
  display: flex;
  gap: 12px;
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
  margin: 48px 0;
}

.cta {
  border-radius: 12px;
  padding: 14px 20px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cta.primary {
  background: var(--teal);
  color: white;
}

.cta.primary:hover {
  background: var(--teal-dark);
}

.cta.ghost {
  border: 2px solid rgba(52, 150, 152, 0.38);
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.cta.ghost:hover {
  background: var(--accent-soft);
  border-color: rgba(48, 124, 138, 0.7);
  color: var(--ink);
}

.cta.small {
  padding: 10px 14px;
}

.cta.large {
  padding: 18px 26px;
  font-size: 16px;
}

.cta.pill {
  border-radius: 999px;
}

.hero-media {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.hero-media-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
  object-fit: cover;
}

.image-placeholder {
  height: 320px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(152, 194, 187, 0.35), rgba(237, 171, 143, 0.22), rgba(255, 255, 255, 0.95));
  border: 1px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-weight: 600;
  text-align: center;
  padding: 20px;
}

.stat-row {
  max-width: 1100px;
  margin: 32px auto 0;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.stat {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 24px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.stat strong {
  display: block;
  font-size: 20px;
}

.stat span {
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 50px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.section.narrow {
  max-width: 880px;
}

.section.soft {
  background: #fffefd;
  border-radius: 40px;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: 32px;
  margin-bottom: 8px;
}

.section-header p {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: center;
  margin-bottom: 48px;
}

.split.narrow {
  max-width: 880px;
  margin: 0 auto 48px;
}

.split.reverse {
  direction: rtl;
}

.split.reverse > * {
  direction: ltr;
}

.split-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.step {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
}

.step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--orange);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 12px;
  margin-right: 8px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.feature {
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: 20px;
  padding: 28px;
}

.spotlight-text {
  background: linear-gradient(120deg, #0b5a5e 0%, #1fa3a0 45%, #12b886 70%, #e07a17 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.35),
    0 10px 24px rgba(14, 116, 144, 0.15);
}

.how-it-works {
  position: relative;
}

.how-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.how-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.how-item {
  appearance: none;
  background: var(--bg);
  border: 1px solid rgba(52, 150, 152, 0.4);
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.06);
  border-radius: 22px;
  padding: 18px 20px;
  display: flex;
  gap: 16px;
  align-items: center;
  text-align: left;
  cursor: pointer;
  transition:
    background 160ms ease,
    border-color 160ms ease;
}

.how-item:hover {
  border-color: rgba(52, 150, 152, 0.8);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
  transform: translateY(-1px);
}

.how-item.is-active {
  border-color: #2c8283;
  background: rgba(185, 221, 215, 0.6);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.18);
  align-items: flex-start;
  padding: 22px 22px 20px;
}

.how-item h3 {
  margin: 0 0 6px;
  font-size: 20px;
}

.how-item p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  display: none;
}

.how-item.is-active p {
  display: block;
}

.how-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  color: white;
  background: rgba(237, 171, 143, 0.95);
  flex-shrink: 0;
}

.how-item.is-active .how-item-icon {
  background: var(--teal-dark);
}

.how-media-frame {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.how-media-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 26px;
  object-fit: cover;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.gallery-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 18px;
}

.gallery-card .image-placeholder {
  height: 180px;
  margin-bottom: 12px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.price-card {
  /* background: var(--card); */
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.price-card.highlight {
  border: 2px solid var(--teal);
  box-shadow: var(--shadow);
  background: var(--card);
}

.price-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(152, 194, 187, 0.22);
  color: var(--teal-dark);
  border: 1px solid rgba(152, 194, 187, 0.35);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.price-tag {
  font-size: 28px;
  font-weight: 700;
}

.price-tag-secondary {
  font-size: 16px;
  font-weight: 500;
  color: var(--muted);
}

.price-note {
  color: var(--muted);
  font-size: 14px;
}

.price-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--muted);
  display: grid;
  gap: 10px;
}

.price-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.price-list li::before {
  content: "✓";
  color: #16a34a;
  font-weight: 700;
  margin-top: 1px;
}

.faq {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 22px 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
}

.faq-item h3 {
  margin: 0;
  font-size: 18px;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
}

.cta-section {
  text-align: center;
  padding: 30px 20px;
  /* background: linear-gradient(180deg, #ffffff 0%, #fff6ed 60%); */
}

.footer {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
  color: var(--muted);
}

.logos {
  padding: 40px 20px;
  text-align: center;
}

.logos-title {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
}

.logo-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.logo-placeholder {
  width: 100px;
  height: 32px;
  background: rgba(108, 139, 147, 0.18);
  border-radius: 6px;
}

.policy-hero {
  padding: 72px 20px 32px;
}

.policy-hero .hero-sub {
  margin-bottom: 16px;
}

.policy-meta {
  font-size: 14px;
  color: var(--muted);
}

.policy-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.policy-card h2 {
  margin-top: 28px;
  font-size: 20px;
}

.policy-card h3 {
  margin-top: 18px;
  font-size: 15px;
  color: var(--muted);
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.policy-card ul {
  padding-left: 22px;
}

.policy-card li {
  margin: 6px 0;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .hero-grid {
    text-align: center;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .split.reverse {
    direction: ltr;
  }

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

  .how-media {
    order: -1;
  }
}
