/* Self-hosted brand fonts — no third-party calls (latin subset).
   Inter ships as a single variable woff2 (wght axis); Playfair as the 600 instance. */
@font-face{
  font-family:'Inter';font-style:normal;font-weight:100 900;font-display:swap;
  src:url('../fonts/inter.woff2') format('woff2');
}
@font-face{
  font-family:'Playfair Display';font-style:normal;font-weight:600;font-display:swap;
  src:url('../fonts/playfair-600.woff2') format('woff2');
}

:root{
  --navy:#1e3a5f; --gold:#c9a227; --bg:#fafaf8; --surface:#ffffff;
  --border:#e5e5e0; --text:#1a1a1a; --muted:#6b6b6b; --accent-light:#f5f0e8;
}
*{box-sizing:border-box} html,body{margin:0}
body{font-family:Inter,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;color:var(--text);background:var(--bg);line-height:1.5}
.wrap{max-width:1080px;margin:0 auto;padding:0 48px}
h1,h2,h3{font-family:'Playfair Display',Georgia,serif;font-weight:600;margin:0}

/* header — navy structural bar */
.site{background:var(--navy);color:#fff}
.brandbar{display:flex;align-items:center;justify-content:space-between;height:56px}
.n4s{font-weight:600;letter-spacing:1px}
.tagline{font-size:12px;color:#c9d3e0}

/* hero — warm light ground, real wordmark, gold CTAs */
.hero{padding:64px 0 72px;border-bottom:1px solid var(--border)}
.hero-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:48px;align-items:center}
.wordmark{width:300px;max-width:70%;height:auto;display:block;margin:0 0 24px}
.eyebrow{text-transform:uppercase;letter-spacing:3px;font-size:11px;font-weight:600;color:var(--muted);margin:0 0 8px}
.hero h1{font-size:48px;line-height:1.05;color:var(--navy);margin:0 0 18px}
.lede{font-size:16px;color:#3a4250;max-width:48ch;margin:0 0 28px}
.downloads{display:flex;gap:12px;flex-wrap:wrap;margin:0 0 14px}
.btn{display:inline-flex;align-items:center;gap:8px;padding:10px 20px;border-radius:6px;font-weight:500;font-size:14px;text-decoration:none;transition:background .15s ease}
.btn.gold{background:var(--gold);color:#fff}
.btn.gold:hover{background:#b08f1f}
.btn.match{box-shadow:0 0 0 3px rgba(201,162,39,.28)}
.trademark{font-size:11px;color:var(--muted);margin:10px 0 0}
.meta{font-size:12px;color:var(--muted);margin:6px 0 0}
.hero-shot{display:flex;justify-content:center}
.app-shot{width:100%;height:auto;display:block;border:1px solid var(--border);border-radius:8px;background:var(--surface)}

/* features — bordered cards, no shadow */
.features{padding:56px 0}
.feat-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.feat{background:var(--surface);border:1px solid var(--border);border-radius:8px;padding:16px}
.feat h3{font-size:16px;color:var(--navy);margin:0 0 8px}
.feat p{margin:0;color:var(--muted);font-size:14px}

/* footer — navy */
.site-foot{background:var(--navy);color:#c9d3e0;padding:20px 0;font-size:12px}
.site-foot .wrap{display:flex;justify-content:space-between;gap:16px;flex-wrap:wrap}

/* tablet / stacked hero */
@media(max-width:820px){
  .wrap{padding:0 24px}
  .hero{padding:48px 0 56px}
  .hero-grid{grid-template-columns:1fr;gap:32px}
  .hero h1{font-size:38px}
  .hero-copy{order:1}
  .hero-shot{order:2}
  .feat-grid{grid-template-columns:1fr;gap:16px}
}
/* phones */
@media(max-width:560px){
  .wrap{padding:0 18px}
  .brandbar{height:52px}
  .hero h1{font-size:32px}
  .wordmark{width:240px;max-width:64%}
  .downloads{flex-direction:column;gap:10px}
  .btn{justify-content:center;width:100%}
  .site-foot .wrap{flex-direction:column;gap:6px}
}
