/* ============================================
   CLAW ECOSYSTEM — Shared Stylesheet
   Font: Lora (display) + system-ui (body)
   Accent: #0C6B58 (deep teal)
   BG: #FAFAF8 (warm white)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* === TOKENS === */
:root {
  --bg:         #FAFAF8;
  --bg-alt:     #F2F0EC;
  --bg-dark:    #0F1F1B;
  --text:       #1A1A18;
  --text-muted: #5C5C58;
  --accent:     #0C6B58;
  --accent-mid: #0E8A70;
  --accent-lt:  #DCF0EB;
  --warn:       #E05C27;
  --border:     #DDD9D2;
  --radius:     8px;
  --radius-lg:  16px;
  --max-w:      680px;
  --max-w-wide: 900px;
  --font-display: 'Lora', Georgia, serif;
  --font-body:  -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:  0 8px 32px rgba(0,0,0,.13);
  --transition: 180ms ease;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--accent-mid); }
ul { padding-left: 1.25rem; }
li { margin-bottom: .35rem; }

/* === LAYOUT === */
.container     { width: 100%; max-width: var(--max-w);      margin-inline: auto; padding-inline: 20px; }
.container-wide{ width: 100%; max-width: var(--max-w-wide); margin-inline: auto; padding-inline: 20px; }
main { flex: 1; }

/* === HEADER === */
.site-header {
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: sticky; top: 0; z-index: 100;
}
.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 14px;
  max-width: var(--max-w-wide);
  margin-inline: auto;
  padding-inline: 20px;
}
.site-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -.01em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.site-logo span.claw-icon {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: .7rem;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: .05em;
  padding: 2px 7px;
  border-radius: 4px;
}
.site-logo:hover { color: var(--accent); }
.header-cta-sm {
  background: var(--accent);
  color: #fff !important;
  text-decoration: none;
  font-size: .85rem;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}
.header-cta-sm:hover { background: var(--accent-mid); transform: translateY(-1px); color: #fff !important; }

/* === FOOTER === */
.site-footer {
  background: var(--bg-dark);
  color: #a8b4b1;
  font-size: .85rem;
  padding-block: 48px 32px;
  margin-top: auto;
}
.footer-inner {
  max-width: var(--max-w-wide);
  margin-inline: auto;
  padding-inline: 20px;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-bottom: 32px;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.footer-brand-block p { line-height: 1.6; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  align-items: flex-start;
}
.footer-links a {
  color: #a8b4b1;
  text-decoration: none;
  font-size: .85rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  font-size: .8rem;
  color: #6e7c79;
}

/* === HERO === */
.hero {
  background: var(--bg-dark);
  color: #fff;
  padding-block: 72px 64px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(12,107,88,.45) 0%, transparent 70%);
  pointer-events: none;
}
.hero .container { position: relative; text-align: center; }
.hero-eyebrow {
  display: inline-block;
  background: rgba(12,107,88,.35);
  border: 1px solid rgba(12,107,88,.6);
  color: #7EDEC8;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #fff;
  letter-spacing: -.02em;
}
.hero h1 em { font-style: italic; color: #7EDEC8; }
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: #b0c4bf;
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: 36px;
}
.hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 28px;
  font-size: .85rem;
  color: #7a9993;
}
.hero-meta span { display: flex; align-items: center; gap: 6px; }

/* === CTA BUTTONS === */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  border: none;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 2px 12px rgba(12,107,88,.4);
}
.btn-primary:hover {
    background: var(--accent-mid);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(12,107,88,.45);
    color: #FFFFFF;
    font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif;
}
.btn-secondary {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.35);
  color: #fff;
}
.btn-secondary:hover {
  background: rgba(255,255,255,.08);
  color: #fff;
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--accent);
  color: var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-1px);
}
.btn-lg { padding: 16px 38px; font-size: 1.1rem; }
.btn-block { display: block; width: 100%; text-align: center; }
.btn-group { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* === SECTION STYLES === */
.section { padding-block: 64px; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--bg-dark); color: #fff; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: 8px;
  line-height: 1.25;
}
.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 40px;
}
.section-dark .section-title { color: #fff; }
.section-dark .section-subtitle { color: #9bb4af; }

/* === WHAT'S INSIDE CARDS === */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 580px) {
  .feature-grid { grid-template-columns: 1fr 1fr; }
}
.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.feature-card-icon {
  font-size: 1.6rem;
  margin-bottom: 12px;
  display: block;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.feature-card p { font-size: .9rem; color: var(--text-muted); }

/* === FOR YOU / NOT FOR YOU === */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 580px) {
  .two-col { grid-template-columns: 1fr 1fr; }
}
.check-list { list-style: none; padding: 0; }
.check-list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  padding-left: 28px;
  position: relative;
  font-size: .95rem;
}
.check-list li::before {
  position: absolute; left: 0;
  font-size: .95rem;
}
.check-list.yes li::before  { content: '✓'; color: var(--accent); font-weight: 700; }
.check-list.no  li::before  { content: '✗'; color: var(--warn); }

/* === FAQ === */
.faq-list { list-style: none; padding: 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding-block: 20px;
}
.faq-q {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--text);
}
.faq-a { color: var(--text-muted); font-size: .95rem; line-height: 1.65; }

/* === AUTHOR BLOCK === */
.author-block {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.author-avatar {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: var(--accent-lt);
  border: 3px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}
.author-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 4px;
}
.author-title { font-size: .85rem; color: var(--accent); font-weight: 600; margin-bottom: 10px; }
.author-bio { font-size: .95rem; color: var(--text-muted); line-height: 1.65; }

/* === PRICE BOX === */
.price-box {
  background: var(--bg);
  border: 2px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  max-width: 480px;
  margin-inline: auto;
}
.price-box .price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}
.price-box .price-label { font-size: .85rem; color: var(--text-muted); margin-bottom: 20px; }
.price-box .guarantee {
  margin-top: 14px;
  font-size: .82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* === BADGE / PILL === */
.badge {
  display: inline-block;
  background: var(--accent-lt);
  color: var(--accent);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
}

/* === PROSE (legal pages) === */
.prose { max-width: var(--max-w); margin-inline: auto; }
.prose h1 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -.02em;
}
.prose .effective { font-size: .85rem; color: var(--text-muted); margin-bottom: 32px; }
.prose h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 10px;
}
.prose p, .prose li { font-size: .97rem; color: #333330; line-height: 1.75; }
.prose p + p { margin-top: 12px; }
.prose ul { margin-block: 10px; }
.prose a { color: var(--accent); }

/* === PAGE HERO (inner pages) === */
.page-hero {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  padding-block: 48px 40px;
}
.page-hero .badge { margin-bottom: 14px; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: 10px;
}
.page-hero p { color: var(--text-muted); font-size: 1.05rem; }

/* === DIVIDER === */
.divider { border: none; border-top: 1px solid var(--border); margin-block: 40px; }

/* === NOTICE BOX === */
.notice {
  background: var(--accent-lt);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  font-size: .92rem;
  color: var(--text);
  margin-block: 24px;
}

/* === FORM === */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: .88rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  font-family: var(--font-body);
  font-size: .97rem;
  color: var(--text);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(12,107,88,.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: .8rem; color: var(--text-muted); margin-top: 5px; }

/* === UTILITIES === */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: 4px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* === RESPONSIVE === */
@media (max-width: 480px) {
  .hero { padding-block: 48px 44px; }
  .section { padding-block: 48px; }
  .price-box { padding: 24px 20px; }
  .author-block { flex-direction: column; gap: 16px; }
  .footer-top { flex-direction: column; gap: 24px; }
}
