:root {
  --cream: #FAF6F0;
  --cream-dark: #F2EBE0;
  --terracotta: #C4693A;
  --terracotta-light: #E8956A;
  --terracotta-pale: #FDF0E8;
  --rose: #B5595A;
  --text: #1A1A1A;
  --text-mid: #3D3530;
  --muted: #7A6E68;
  --border: #E2D8CE;
  --card: #FFFFFF;
  --green: #3A8C5C;
  --green-pale: #EDF7F2;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Georgia', serif; background: var(--cream); color: var(--text); line-height: 1.6; }

/* NAV */
.nav { position: sticky; top: 0; z-index: 100; background: rgba(250,246,240,0.95); backdrop-filter: blur(8px); border-bottom: 1px solid var(--border); padding: 0 32px; display: flex; align-items: center; justify-content: space-between; height: 64px; }
.nav-brand { font-size: 18px; color: var(--text); text-decoration: none; }
.nav-brand span { color: var(--terracotta); }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a { font-family: sans-serif; font-size: 14px; color: var(--muted); text-decoration: none; }
.nav-links a:hover { color: var(--terracotta); }
.nav-cta { background: var(--terracotta) !important; color: white !important; padding: 9px 20px; border-radius: 6px; font-weight: 600; }

/* HERO SPLIT */
.hero-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 520px; }
.hero-image { position: relative; overflow: hidden; background: var(--text); }
.hero-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.avatar-fallback { display: none; width: 100%; height: 100%; align-items: center; justify-content: center; font-size: 120px; color: rgba(255,255,255,0.3); font-family: Georgia, serif; }
.hero-content { padding: 60px 52px; display: flex; flex-direction: column; justify-content: center; background: var(--cream); }
.persona-badge { display: inline-block; background: var(--terracotta-pale); color: var(--terracotta); font-family: sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 6px 14px; border-radius: 20px; margin-bottom: 18px; width: fit-content; border: 1px solid rgba(196,105,58,0.2); }
.hero-content h1 { font-size: 52px; font-weight: normal; margin-bottom: 14px; letter-spacing: -1px; line-height: 1.1; }
.tagline { font-size: 17px; color: var(--text-mid); margin-bottom: 16px; line-height: 1.5; }
.desc { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 28px; font-family: sans-serif; }
.cta-group { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 14px; }
.btn-free { background: transparent; color: var(--text); border: 1.5px solid var(--border); padding: 12px 22px; border-radius: 8px; text-decoration: none; font-family: sans-serif; font-size: 14px; font-weight: 600; transition: all 0.2s; }
.btn-free:hover { border-color: var(--terracotta); color: var(--terracotta); }
.btn-paid { background: var(--terracotta); color: white; padding: 12px 22px; border-radius: 8px; text-decoration: none; font-family: sans-serif; font-size: 14px; font-weight: 700; transition: all 0.2s; }
.btn-paid:hover { background: var(--rose); }
.paid-note { font-size: 12px; color: var(--muted); font-family: sans-serif; line-height: 1.5; }
.install-hint { font-family: sans-serif; font-size: 12px; color: var(--muted); margin-top: 8px; }
.vetted-badge { display: inline-block; background: #3A8C5C; color: white; font-family: sans-serif; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 3px 10px; border-radius: 20px; margin-left: 8px; vertical-align: middle; }

@media (max-width: 768px) { .hero-split { grid-template-columns: 1fr; } .hero-image { height: 300px; } .hero-content { padding: 32px 24px; } .hero-content h1 { font-size: 36px; } }

/* DETAILS */
.details { background: var(--card); border-top: 1px solid var(--border); }
.details-inner { max-width: 1000px; margin: 0 auto; padding: 72px 32px; }

/* WHAT GRID */
.what-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-bottom: 64px; }
.what-card { border: 1px solid var(--border); border-radius: 10px; padding: 24px; }
.what-icon { font-size: 28px; margin-bottom: 12px; }
.what-card h3 { font-size: 16px; font-weight: normal; margin-bottom: 8px; }
.what-card p { font-size: 14px; color: var(--muted); line-height: 1.7; font-family: sans-serif; }
@media (max-width: 640px) { .what-grid { grid-template-columns: 1fr; } }

/* INCLUDES */
.includes-section h2 { font-size: 28px; font-weight: normal; margin-bottom: 24px; }
.includes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 48px; }
@media (max-width: 640px) { .includes-grid { grid-template-columns: 1fr; } }
.include-col { border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.col-header { padding: 14px 20px; font-family: sans-serif; font-size: 13px; font-weight: 700; }
.free-header { background: var(--cream-dark); color: var(--text-mid); }
.paid-header { background: var(--terracotta); color: white; }
.include-col ul { list-style: none; padding: 20px; }
.include-col li { font-family: sans-serif; font-size: 13px; color: var(--text-mid); padding: 6px 0; border-bottom: 1px solid var(--border); line-height: 1.5; }
.include-col li:last-child { border-bottom: none; }
.include-col li::before { content: "✓ "; color: var(--green); font-weight: 700; }
.include-btn { display: block; margin: 0 20px 20px; padding: 12px; border-radius: 8px; text-align: center; text-decoration: none; font-family: sans-serif; font-size: 14px; font-weight: 700; transition: all 0.2s; }
.free-btn { background: var(--cream-dark); color: var(--text-mid); border: 1px solid var(--border); }
.free-btn:hover { border-color: var(--terracotta); color: var(--terracotta); }
.paid-btn { background: var(--terracotta); color: white; }
.paid-btn:hover { background: var(--rose); }

/* BUILT BY */
.built-by { display: flex; align-items: flex-start; gap: 18px; background: var(--cream-dark); border-radius: 10px; padding: 24px; }
.built-by-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--terracotta); display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.built-by-name { font-size: 15px; font-weight: normal; margin-bottom: 6px; }
.built-by-desc { font-size: 14px; color: var(--muted); line-height: 1.7; font-family: sans-serif; }

/* MORE PERSONAS */
.more-personas { background: var(--cream-dark); border-top: 1px solid var(--border); padding: 48px 32px; text-align: center; }
.more-personas h2 { font-size: 22px; font-weight: normal; margin-bottom: 24px; }
.persona-mini-grid { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.persona-mini { display: flex; flex-direction: column; align-items: center; gap: 4px; background: white; border: 1px solid var(--border); border-radius: 10px; padding: 16px 20px; text-decoration: none; color: var(--text); min-width: 100px; transition: all 0.2s; }
.persona-mini:hover { border-color: var(--terracotta); transform: translateY(-2px); }
.persona-mini span:first-child { font-size: 24px; }
.persona-mini strong { font-size: 15px; font-weight: normal; }
.mini-desc { font-size: 11px; color: var(--muted); font-family: sans-serif; }

/* FOOTER */
.footer { border-top: 1px solid var(--border); padding: 28px 32px; text-align: center; font-family: sans-serif; font-size: 13px; color: var(--muted); }
.footer a { color: var(--terracotta); text-decoration: none; }
