:root {
  --bg:#1a1510; --bg-2:#1f1812; --card:#2a1f17; --card-2:#241a13;
  --nav:#241a13; --border:#3d2e22; --gold:#d4a574; --gold-soft:#c9a86c;
  --text:#e8ddd0; --text-hi:#f5ebe0; --muted:#c9b99a; --faint:#6b5a45;
}
* { margin:0; padding:0; box-sizing:border-box; }
body { font-family:'Inter',system-ui,sans-serif; background:var(--bg); color:var(--text); min-height:100vh; -webkit-font-smoothing:antialiased; }

nav { background:rgba(36,26,19,0.85); backdrop-filter:blur(10px); border-bottom:1px solid var(--border); padding:14px 24px; display:flex; justify-content:space-between; align-items:center; position:sticky; top:0; z-index:100; }
.nav-brand { font-family:'Cormorant Garamond',serif; font-size:1.3rem; font-weight:600; color:var(--gold); text-decoration:none; }
.nav-links { display:flex; gap:24px; list-style:none; align-items:center; }
.nav-links a { color:var(--muted); text-decoration:none; font-size:0.875rem; font-weight:500; transition:color .2s; }
.nav-links a:hover { color:var(--gold); }

.eyebrow { font-size:0.78rem; font-weight:600; letter-spacing:0.22em; text-transform:uppercase; color:var(--gold); margin-bottom:14px; }

.btn { display:inline-block; padding:12px 24px; border-radius:8px; font-size:0.9rem; font-weight:600; text-decoration:none; cursor:pointer; border:none; font-family:inherit; transition:all .2s; }
.btn-primary { background:var(--gold); color:var(--bg); }
.btn-primary:hover { background:var(--gold-soft); transform:translateY(-1px); }
.btn-ghost { color:var(--text-hi); border:1.5px solid rgba(245,235,224,0.35); background:transparent; }
.btn-ghost:hover { border-color:var(--gold); color:var(--gold); }

/* ---------- per-app hero ---------- */
.app-hero { max-width:1000px; margin:0 auto; padding:64px 24px 40px; display:grid; grid-template-columns:1.1fr 0.9fr; gap:40px; align-items:center; }
.app-hero-text h1 { font-family:'Cormorant Garamond',serif; font-size:clamp(2.6rem,6vw,4rem); font-weight:600; color:var(--text-hi); line-height:1.05; margin-bottom:18px; }
.app-hero-text .lead { font-size:1.08rem; line-height:1.7; color:var(--muted); margin-bottom:28px; }
.hero-actions { display:flex; gap:12px; flex-wrap:wrap; }
.app-hero-img { width:100%; border-radius:14px; border:1px solid var(--border); }

/* ---------- features band ---------- */
.feats-band { background:var(--bg-2); border-top:1px solid var(--border); border-bottom:1px solid var(--border); padding:40px 24px; }
.feats { max-width:900px; margin:0 auto; list-style:none; display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:14px 32px; }
.feats li { font-size:0.98rem; color:var(--text); padding-left:24px; position:relative; }
.feats li::before { content:'✦'; position:absolute; left:0; color:var(--gold); font-size:0.85rem; }

/* ---------- self-host ---------- */
.self-host { padding:64px 24px; }
.self-host-inner { max-width:820px; margin:0 auto; display:grid; grid-template-columns:0.8fr 1.2fr; gap:40px; align-items:start; }
.price-block { padding-top:12px; }
.price { font-size:1rem; color:var(--muted); }
.price strong { font-family:'Cormorant Garamond',serif; font-size:3rem; font-weight:600; color:var(--gold); display:block; }
.price span { font-size:0.95rem; }
.price-trial { display:inline-block; margin-top:12px; padding:5px 12px; border:1px solid var(--gold); border-radius:999px; font-size:0.9rem; color:var(--gold); }
.price-trial strong { font-weight:600; }
.price-note { font-size:0.88rem; color:var(--muted); margin-top:10px; line-height:1.6; }
.host-form { background:var(--card); border:1px solid var(--border); border-radius:16px; padding:28px; }
.host-form h3 { font-family:'Cormorant Garamond',serif; font-size:1.5rem; color:var(--text-hi); margin-bottom:6px; }
.host-sub { font-size:0.9rem; color:var(--muted); margin-bottom:18px; }
.host-form label { display:block; font-size:0.82rem; font-weight:600; color:var(--muted); margin-bottom:6px; }
.host-form input { width:100%; padding:12px 14px; background:var(--bg); border:1px solid var(--border); border-radius:8px; color:var(--text-hi); font-size:0.95rem; font-family:inherit; margin-bottom:16px; }
.host-form input:focus { outline:none; border-color:var(--gold); }
.host-form .btn { width:100%; }
.host-msg { font-size:0.88rem; margin-bottom:14px; display:none; }

/* ---------- how ---------- */
.how { background:var(--bg-2); border-top:1px solid var(--border); padding:56px 24px; text-align:center; }
.how-inner { max-width:820px; margin:0 auto; }
.how h3 { font-family:'Cormorant Garamond',serif; font-size:1.9rem; color:var(--text-hi); margin-bottom:28px; }
.how-steps { display:grid; gap:24px; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); text-align:left; }
.how-step .n { font-family:'Cormorant Garamond',serif; font-size:1.5rem; color:var(--gold); margin-bottom:8px; }
.how-step p { font-size:0.92rem; line-height:1.6; color:var(--muted); }

.footer { text-align:center; padding:32px 20px; background:var(--bg); border-top:1px solid var(--card); }
.footer-text { font-size:12px; color:var(--faint); line-height:1.6; }

@media (max-width:760px) {
  .app-hero { grid-template-columns:1fr; }
  .app-hero-img { order:-1; }
  .self-host-inner { grid-template-columns:1fr; gap:24px; }
}
