@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Cormorant+Garamond:wght@600;700&display=swap');
:root{
  --bg:#ffffff;
  --bg-alt:#f8fafc;
  --fg:#0f172a;
  --muted:#475569;
  --brand:#111827;
  --card:#ffffff;
  --border:#e5e7eb;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{font-family:Inter,ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Arial;background:var(--bg);color:var(--fg);line-height:1.7}
.container{max-width:720px;padding:0 20px;margin:0 auto}
.skip-link{
  position:absolute;left:-10000px;top:auto;width:1px;height:1px;overflow:hidden
}
.skip-link:focus{left:16px;top:16px;width:auto;height:auto;padding:8px 12px;background:#fff;color:#000;border-radius:6px}
.site-header{position:sticky;top:0;background:#fff;border-bottom:1px solid var(--border);z-index:10}
.site-header .container{display:flex;align-items:center;justify-content:space-between;height:64px}
.brand{color:#0f172a;text-decoration:none;font-weight:700;font-size:16px;letter-spacing:.02em}
.nav{display:flex;gap:18px;list-style:none;margin:0;padding:0}
.nav a{color:#1f2937;text-decoration:none}
.nav a:hover{color:#000}
.hero{padding:96px 0 64px;background:var(--bg-alt);border-bottom:1px solid var(--border)}
.hero-inner{display:grid;grid-template-columns:1fr;gap:32px}
.hero-text{max-width:720px;margin:0 auto;text-align:center}
.eyebrow{color:#6b7280;font-weight:600;margin:0 0 8px}
h2{margin:0 0 12px}
h3{margin:0 0 8px}
h1{letter-spacing:-0.5px}
.eyebrow{text-transform:uppercase;letter-spacing:.14em;font-size:11px}
h1{line-height:1.05;margin:0 0 10px;font-size:56px;font-weight:700;color:#0f172a;font-family:'Cormorant Garamond', Georgia, serif}
.quote{font-style:italic;color:#334155}
.lede{color:#475569;max-width:60ch;margin:0 auto 14px}
.cta{display:inline-flex;gap:8px;align-items:center;color:#0f172a;text-decoration:none;font-weight:600}
.cta:hover{text-decoration:underline}
.cta .arrow{transition:transform .15s ease}
.cta:hover .arrow{transform:translateX(2px)}
.section{padding:56px 0}
.section.alt{background:#fff}
.card-grid{list-style:none;margin:20px 0 0;padding:0;display:grid;grid-template-columns:repeat(auto-fill,minmax(220px,1fr));gap:14px}
.card{background:#fff;border:1px solid var(--border);border-radius:10px;overflow:hidden}
.card a{display:block;color:inherit;text-decoration:none}
.card-body{padding:14px}
.card h3{margin:0 0 6px;font-size:17px}
.meta{color:#6b7280;font-size:14px}
.signup{display:flex;align-items:center;justify-content:space-between;gap:16px}
.signup form{display:flex;gap:8px}
input[type=email]{height:44px;padding:0 12px;border-radius:10px;border:1px solid var(--border);background:#ffffff;color:#0f172a;min-width:260px}
.site-footer{padding:24px 0;border-top:1px solid var(--border);background:#fff}
.footer-inner{display:flex;justify-content:space-between;align-items:center}
.footer-nav{list-style:none;margin:0;padding:0;display:flex;gap:16px}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
@media (max-width: 640px){
  .container{max-width:100%}
  h1{font-size:40px}
  .site-header .container{flex-direction:column;align-items:flex-start;justify-content:flex-start;gap:10px;height:auto;padding:12px 20px}
  .nav{flex-wrap:wrap;gap:12px}
  .signup{flex-direction:column;align-items:stretch}
  .signup form{flex-direction:column}
  input[type=email]{min-width:0;width:100%}
  .footer-inner{flex-direction:column;gap:10px;align-items:flex-start}
  .footer-nav{flex-wrap:wrap}
}
