/* ReclaimOS Theme */

:root {
  --navy: #0a1628;
  --navy-mid: #132040;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-dim: rgba(201, 168, 76, 0.15);
  --bg: #faf8f4;
  --bg-dark: #0f1e35;
  --text: #1a1a2e;
  --text-muted: #5a6478;
  --text-light: #8a94a8;
  --border: rgba(10, 22, 40, 0.1);
  --white: #ffffff;
  --radius: 4px;
  --radius-lg: 12px;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAVBAR */
.navbar {
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-logo {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.5px;
}
.navbar-tagline {
  font-size: 12px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* HERO */
.hero {
  padding: 80px 48px 64px;
  background: var(--bg);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Fraunces', serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}
.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 480px;
}

/* Hero Window */
.hero-window {
  background: var(--navy);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(10, 22, 40, 0.2);
}
.window-bar {
  background: var(--navy-mid);
  padding: 12px 16px;
  display: flex;
  gap: 6px;
  align-items: center;
}
.dot { width: 12px; height: 12px; border-radius: 50%; display: inline-block; }
.dot-red { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green { background: #28c840; }
.window-content { padding: 24px; }
.metric-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.metric-row:last-child { border-bottom: none; }
.metric-label { font-size: 13px; color: rgba(255,255,255,0.5); font-weight: 400; }
.metric-value { font-size: 18px; font-weight: 600; color: #ffffff; }
.metric-value.highlight { color: var(--gold-light); }

/* STATS BAR */
.statsbar {
  background: var(--navy);
  padding: 48px;
}
.statsbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.stat { text-align: center; }
.stat-number {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 6px;
}
.stat-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* FEATURES */
.features {
  padding: 96px 48px;
  background: var(--bg);
}
.features-inner { max-width: 1200px; margin: 0 auto; }
.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-heading {
  font-family: 'Fraunces', serif;
  font-size: 40px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 56px;
  letter-spacing: -1px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.feature-card {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(10, 22, 40, 0.08);
}
.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-dim);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 20px;
}
.feature-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.feature-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* PROCESS */
.process {
  padding: 96px 48px;
  background: var(--bg-dark);
}
.process-inner { max-width: 1200px; margin: 0 auto; }
.process .section-eyebrow { color: var(--gold); }
.process .section-heading { color: var(--white); }
.process-flow {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 64px;
}
.process-step {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.step-number {
  display: inline-block;
  font-family: 'Fraunces', serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 16px;
  letter-spacing: 1px;
}
.step-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}
.step-desc { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; }
.process-arrow { color: var(--gold); flex-shrink: 0; }

/* CLOSING */
.closing { padding: 96px 48px; background: var(--bg); }
.closing-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.closing-statement {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-style: italic;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 24px;
}
.closing-attr { font-size: 14px; color: var(--text-muted); }

/* FOOTER */
.footer { padding: 40px 48px; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.footer-brand { display: flex; align-items: center; gap: 16px; }
.footer-logo {
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
}
.footer-meta { font-size: 12px; color: var(--text-muted); }
.footer-note { font-size: 13px; color: var(--text-light); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-window { max-width: 500px; margin: 0 auto; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .statsbar-inner { flex-wrap: wrap; justify-content: center; }
  .stat-divider { display: none; }
}
@media (max-width: 768px) {
  .navbar, .hero, .features, .process, .closing, .footer { padding-left: 24px; padding-right: 24px; }
  .hero-headline { font-size: 36px; }
  .section-heading { font-size: 28px; }
  .feature-grid { grid-template-columns: 1fr; }
  .process-flow { flex-direction: column; }
  .process-arrow { transform: rotate(90deg); }
  .stat-number { font-size: 24px; }
  .footer-inner { flex-direction: column; gap: 16px; }
  .statsbar { padding: 32px 24px; }
}