/* Focus Landing – dark, minimalist */
:root{
  --bg:#000; --fg:#fff; --muted:#b3b3b3; --border:#222;
  --accent:#ffffff; --accent-2:#999;
  --card:#0a0a0a; --card-2:#0e0e0e;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0; background:var(--bg); color:var(--fg);
  font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height:1.45;
}
.container{ max-width:1100px; margin:0 auto; padding:0 20px; }

/* Header */
.site-header{ position:sticky; top:0; z-index:10; backdrop-filter:saturate(180%) blur(8px); background:rgba(0,0,0,.5); border-bottom:1px solid var(--border); }
.site-header .container{ display:flex; align-items:center; justify-content:space-between; height:64px; gap:12px; }
.brand{ display:flex; align-items:center; gap:10px; color:var(--fg); text-decoration:none; font-weight:700; }
.logo{ display:inline-grid; place-items:center; width:20px; height:20px; background:#fff; color:#000; border-radius:50%; font-size:14px; }
.brand-text{ letter-spacing:.3px; }
.nav .menu{ list-style:none; display:flex; gap:16px; margin:0; padding:0; align-items:center; flex-wrap:nowrap; }
.nav .menu li{ flex:0 0 auto; }
.nav a{ color:var(--fg); text-decoration:none; opacity:.9; white-space:nowrap; }
.nav a:hover{ opacity:1 }
.hamburger{ display:none; background:transparent; border:1px solid var(--border); color:var(--fg); border-radius:8px; padding:8px 10px; }

/* Hero */
.hero{ position:relative; padding:86px 0; overflow:hidden; }
.hero-inner{ text-align:center; }
.hero h1{ font-size: clamp(36px, 4vw, 56px); margin:0 0 12px; }
.lead{ font-size: clamp(16px, 2.2vw, 20px); color:var(--muted); max-width:800px; margin:0 auto 24px; }
.cta-row{ display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }
.cta{ background:var(--accent); color:#000; border:1px solid #fff; border-radius:12px; padding:12px 18px; font-weight:700; text-decoration:none; }
.cta:hover{ filter:brightness(92%); }
.cta.secondary{ background:transparent; color:#fff; border-color:#444; }
.cta.small{ padding:8px 12px; border-radius:10px; font-weight:600; color: #000;}
.mini-note{ margin-top:12px; color:var(--muted); font-size:13px; }

/* Soft grid/noise bg */
.noise-bg{
  position:absolute; inset:-20%; pointer-events:none; opacity:.35;
  background:
    radial-gradient(1200px 600px at 50% -20%, rgba(255,255,255,.08), transparent 60%),
    radial-gradient(800px 400px at 90% 0%, rgba(255,255,255,.06), transparent 60%),
    radial-gradient(800px 400px at 10% 0%, rgba(255,255,255,.06), transparent 60%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.02) 0 1px, transparent 1px 4px);
}

/* Sections */
.section{ padding:70px 0; border-top:1px solid var(--border); }
.section.alt{ background:var(--card); }
.section h2{ font-size:28px; margin:0 0 18px; }

/* Features */
.features{ display:grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap:16px; }
.card{ background:var(--card-2); border:1px solid var(--border); border-radius:14px; padding:18px; }
.card .icon{ font-size:22px; margin-bottom:8px; }

/* Steps */
.steps{ display:grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap:16px; counter-reset: step; list-style:none; padding:0; margin:0; }
.steps li{ background:var(--card-2); border:1px solid var(--border); border-radius:14px; padding:18px; position:relative; }
.steps li::before{ counter-increment: step; content: counter(step); position:absolute; top:12px; right:12px; font-weight:700; color:#999; }
.steps h4{ margin:.2rem 0 .4rem; }
.steps p{ color:var(--muted); margin:0; }

/* Screens */
.screens{ display:grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap:16px; }
.shot{ margin:0; }
.shot-box{ height:180px; border:1px dashed #444; border-radius:12px; display:grid; place-items:center; color:#aaa; background:linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.0)); }
.shot figcaption{ color:var(--muted); font-size:13px; margin-top:8px; }
/* Real screenshots */
.shot img{
  width:100%;
  /* Enforce consistent frame size across all screenshots */
  aspect-ratio: 4 / 3;
  height:auto;
  /* Scale down to fit the box without cropping */
  object-fit: contain;
  object-position: center;
  display:block;
  border:1px solid var(--border);
  border-radius:12px;
  background:#0b0b0b;
}

/* Mindful points */
.points{ list-style:none; padding:0; margin:0; display:grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap:16px; }
.points li{ background:var(--card-2); border:1px solid var(--border); border-radius:14px; padding:16px; }
.points h4{ margin:.2rem 0 .35rem; }
.points p{ color:var(--muted); margin:0; }

/* Roadmap */
.roadmap{ list-style:none; padding:0; margin:0; display:grid; gap:12px; }
.roadmap li{ background:var(--card-2); border:1px solid var(--border); border-radius:12px; padding:14px; }
.roadmap .row{ display:flex; align-items:center; justify-content:space-between; gap:12px; margin-bottom:6px; }
.tag{ display:inline-block; font-size:12px; line-height:1; padding:6px 8px; border-radius:999px; border:1px solid #333; color:#ddd; background:#0b0b0b; }
.tag--planned{ border-color:#444; color:#aaa; }
.tag--inprogress{ border-color:#888; color:#fff; }
.tag--done{ border-color:#2e7d32; color:#bde5c8; }
.roadmap p{ color:var(--muted); margin:0; }

/* FAQ */
.faq details{ background:var(--card-2); border:1px solid var(--border); border-radius:12px; padding:12px 14px; margin-bottom:10px; }
.faq summary{ cursor:pointer; font-weight:600; }
.faq p{ color:var(--muted); margin:.5rem 0 0; }

/* Footer */
.site-footer{ border-top:1px solid var(--border); padding:24px 0; background:#050505; }
.footer-inner{ display:flex; align-items:center; justify-content:space-between; gap:12px; }
.site-footer a{ color:#bbb; text-decoration:none; }
.site-footer a:hover{ color:#fff; }

/* Footer link separation and clarity */
.site-footer .right a:hover, .site-footer .right a:focus{ text-decoration:underline; }
/* explicit separator elements between links */
.site-footer .right .sep{ color:#777; margin:0 10px; user-select:none; }

/* Responsive nav */
@media (max-width: 820px){
  .nav .menu{ display:none; position:absolute; right:20px; top:64px; background:#0b0b0b; border:1px solid var(--border); border-radius:12px; padding:10px; flex-direction:column; gap:8px; min-width:260px; }
  .hamburger{ display:block; }
  .menu.open{ display:flex; }
}

/* Keep nav on one line on mid widths by hiding brand text and tightening gaps */
@media (max-width: 980px){
  .brand-text{ display:none; }
  .nav .menu{ gap:12px; }
}
