* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #1C1C1C;
  --surface: #2C2C28;
  --surface-light: #3A3A35;
  --thermal: #F5F0E6;
  --stamp: #D4442A;
  --faded: #5C5850;
  --text-faded: #A39882;
  --mono: 'Courier Prime', 'Courier New', monospace;
  --body: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  background: var(--bg);
  color: var(--thermal);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(28, 28, 28, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(90, 88, 80, 0.15);
  padding: 14px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 18px;
  color: var(--stamp);
  text-decoration: none;
  letter-spacing: 1px;
  transform: rotate(-1deg);
  display: inline-block;
}
.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
}
.nav-links a {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--faded);
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--thermal); }
.nav-links a.active { color: var(--thermal); }

/* SECTIONS */
section { padding: 120px 24px 80px; max-width: 800px; margin: 0 auto; }
.hero-section { padding-top: 180px; text-align: center; max-width: 900px; margin: 0 auto; }

/* HERO */
.hero-section { position: relative; overflow: visible; }
.ghost-stamp {
  position: absolute;
  border: 1.5px solid var(--stamp);
  padding: 3px 10px;
  border-radius: 1px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  color: var(--stamp);
  letter-spacing: 1.5px;
  pointer-events: none;
}
.gs1 { top: 100px; right: 0; transform: rotate(12deg); opacity: 0.06; }
.gs2 { top: 200px; left: -20px; transform: rotate(-8deg); opacity: 0.04; }
.gs3 { top: 350px; right: 40px; transform: rotate(-14deg); opacity: 0.05; }
.gs4 { bottom: 60px; left: 10px; transform: rotate(6deg); opacity: 0.04; }
.gs5 { top: 280px; left: 60px; transform: rotate(18deg); opacity: 0.03; }

.hero-brand {
  font-family: var(--mono);
  font-weight: 700;
  font-size: clamp(48px, 10vw, 80px);
  color: var(--stamp);
  letter-spacing: 4px;
  transform: rotate(-2deg);
  display: inline-block;
  margin-bottom: 16px;
}
.hero-tagline {
  font-family: var(--mono);
  font-size: clamp(13px, 2.5vw, 16px);
  color: var(--faded);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.hero-desc {
  font-size: 18px;
  color: var(--thermal);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.7;
  opacity: 0.85;
}

/* Feature stamps row */
.stamp-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.stamp-pill {
  border: 2px solid var(--stamp);
  padding: 6px 16px;
  border-radius: 2px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--stamp);
  letter-spacing: 1.5px;
}
.stamp-pill:nth-child(1) { transform: rotate(-3deg); }
.stamp-pill:nth-child(2) { transform: rotate(2deg); }
.stamp-pill:nth-child(3) { transform: rotate(-1deg); }
.stamp-pill:nth-child(4) { transform: rotate(4deg); }

/* Download buttons */
.download-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.download-btn {
  display: inline-block;
  background: var(--stamp);
  color: var(--bg);
  font-family: var(--mono);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 2px;
  transition: opacity 0.2s;
}
.download-btn:hover { opacity: 0.85; }
.download-btn-secondary {
  background: transparent;
  border: 2px solid var(--thermal);
  color: var(--thermal);
}

/* HOW IT WORKS */
.steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px;
}
.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.step-num {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 32px;
  color: var(--stamp);
  min-width: 50px;
  line-height: 1;
  transform: rotate(-3deg);
  display: inline-block;
}
.step-content h3 {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 16px;
  color: var(--thermal);
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}
.step-content p {
  font-size: 15px;
  color: var(--text-faded);
  line-height: 1.6;
}

/* SECTION HEADERS */
.section-label {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--faded);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.section-title {
  font-family: var(--mono);
  font-weight: 700;
  font-size: clamp(24px, 5vw, 36px);
  color: var(--thermal);
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-title span { color: var(--stamp); }

/* FEATURES GRID */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 40px;
}
.feature-card {
  background: var(--surface);
  border-radius: 4px;
  padding: 20px;
  border-left: 3px solid var(--stamp);
}
.feature-card h3 {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 14px;
  color: var(--thermal);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.feature-card p {
  font-size: 14px;
  color: var(--text-faded);
  line-height: 1.5;
}

/* CTA SECTION */
.cta-section {
  text-align: center;
  padding: 80px 24px 120px;
}
.cta-brand {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 48px;
  color: var(--stamp);
  letter-spacing: 3px;
  transform: rotate(-2deg);
  display: inline-block;
  margin-bottom: 16px;
}

/* DIVIDER */
.divider {
  border-top: 1px dashed var(--faded);
  opacity: 0.2;
  max-width: 800px;
  margin: 0 auto;
}

/* LEGAL PAGES */
.legal-section {
  padding-top: 140px;
}
.legal-section h1 {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 28px;
  color: var(--thermal);
  margin-bottom: 8px;
}
.legal-section .last-updated {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--faded);
  margin-bottom: 32px;
}
.legal-section h2 {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 16px;
  color: var(--thermal);
  margin-top: 32px;
  margin-bottom: 8px;
}
.legal-section p, .legal-section li {
  font-size: 15px;
  color: var(--text-faded);
  line-height: 1.7;
  margin-bottom: 12px;
}
.legal-section ul {
  padding-left: 20px;
  margin-bottom: 16px;
}
.legal-section a {
  color: var(--stamp);
  text-decoration: none;
}
.legal-section a:hover { text-decoration: underline; }

/* FOOTER */
footer {
  border-top: 1px dashed rgba(92, 88, 80, 0.2);
  padding: 40px 24px;
  text-align: center;
}
.footer-brand {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 14px;
  color: var(--stamp);
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.footer-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.footer-links a {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--faded);
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.footer-links a:hover { color: var(--thermal); }
.footer-copy {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--faded);
  opacity: 0.6;
}

/* MOBILE */
@media (max-width: 600px) {
  nav { padding: 12px 16px; }
  .nav-links { gap: 14px; }
  .nav-links a { font-size: 10px; }
  section { padding: 100px 16px 60px; }
  .hero-section { padding-top: 140px; }
  .step { flex-direction: column; gap: 8px; }
  .stamp-row { gap: 6px; }
  .stamp-pill { font-size: 9px; padding: 4px 10px; }
}
