/* Fonts */
@font-face {
  font-family: 'Inter';
  src: url('fonts/InterVariable-latin.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* Variables */
:root {
  --bg: #0a0a0a;
  --bg-alt: #0d0d0d;
  --card: #141414;
  --border: #1f1f1f;
  --border-mid: #2a2a2c;
  --text: #f5f5f7;
  --text-muted: #86868b;
  --text-dim: #48484a;
  --accent: #cc6600;
  --accent-hover: #e07000;
  --card-raised: #1c1c1e;
  --border-focus: #555555;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Avenir Next', 'Avenir', 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }

/* Nav */
nav.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 100;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo img { height: 32px; width: 32px; border-radius: 7px; }
.nav-logo-name { font-size: 17px; font-weight: 600; letter-spacing: -0.3px; color: var(--text); }
.nav-cta {
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 20px;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--accent-hover); }
.nav-cta:focus-visible,
.dl-windows:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.dl-badge:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 8px;
}
.footer-links a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Section helpers */
.section-eyebrow {
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-heading {
  text-align: center;
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--text);
  margin-bottom: 52px;
}

/* Hero */
.hero {
  text-align: center;
  padding: 96px 24px 80px;
  max-width: 820px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(44px, 7.5vw, 76px);
  font-weight: 700;
  letter-spacing: -2.5px;
  line-height: 1.04;
  margin-bottom: 22px;
  color: var(--text);
}
.hero-title em { font-style: normal; color: var(--accent); }
.hero-subtitle {
  font-size: 19px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 52px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero screenshot */
.hero-screenshot {
  margin-top: 56px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.hero-screenshot img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
}

/* Download buttons row */
.download-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}
.dl-badge { display: inline-block; line-height: 0; }
.dl-badge img { height: 40px; width: auto; }
.dl-windows {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 16px;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 8px;
  color: var(--text);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.1px;
  transition: border-color 0.2s;
}
.dl-windows:hover { border-color: var(--border-focus); }
.dl-windows svg { flex-shrink: 0; }

/* Features */
.features {
  padding: 80px 24px;
  max-width: 1020px;
  margin: 0 auto;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
}
.feature-icon { font-size: 30px; margin-bottom: 16px; line-height: 1; }
.feature-title { font-size: 17px; font-weight: 600; margin-bottom: 10px; letter-spacing: -0.3px; }
.feature-desc { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* Screenshots */
.screenshots {
  padding: 80px 24px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.screenshot-strip {
  display: flex;
  gap: 16px;
  justify-content: center;
  overflow-x: auto;
  padding-bottom: 4px;
  margin-top: 8px;
}
.screenshot-strip picture { display: contents; }
.screenshot-strip img {
  height: 400px;
  width: auto;
  max-width: 600px;
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--card);
}
.screenshot-ph {
  width: 220px;
  min-width: 220px;
  height: 400px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--card);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 12px;
  color: var(--border-mid);
}
.screenshot-ph span { font-size: 28px; }

/* Download repeat */
.download-section {
  text-align: center;
  padding: 80px 24px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.download-section .section-heading { margin-bottom: 12px; }
.download-section p { font-size: 17px; color: var(--text-muted); margin-bottom: 40px; }

/* Policy pages */
.policy-wrap {
  max-width: 720px;
  margin: 60px auto 80px;
  padding: 0 24px;
}
.policy-wrap h1 { font-size: 36px; font-weight: 700; letter-spacing: -1px; margin-bottom: 8px; }
.policy-updated { font-size: 13px; color: var(--text-muted); margin-bottom: 48px; }
.policy-wrap h2 { font-size: 18px; font-weight: 600; margin: 36px 0 10px; }
.policy-wrap p, .policy-wrap ul {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 14px;
}
.policy-wrap ul { padding-left: 22px; }
.policy-wrap a { color: var(--accent); }

/* Footer */
footer {
  padding: 28px 48px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 13px; color: var(--text-dim); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 13px; color: var(--text-dim); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--text-muted); }
a.footer-link { color: var(--text-dim); text-decoration: none; transition: color 0.2s; }
a.footer-link:hover { color: var(--accent-hover); }

/* Responsive */
@media (max-width: 768px) {
  nav.site-nav { padding: 16px 20px; }
  .hero { padding: 64px 20px 60px; }
  .hero-title { letter-spacing: -1.5px; }
  .hero-subtitle { font-size: 17px; }
  .feature-grid { grid-template-columns: 1fr; }
  .features, .screenshots, .download-section { padding: 60px 20px; }
  footer { padding: 24px 20px; flex-direction: column; align-items: flex-start; }
  .screenshot-strip { justify-content: flex-start; }
}
