/* Runjo Design System Tokens */
:root {
  --tar: #1A1A1A;
  --gravel: #4A4A4A;
  --concrete: #7A7A7A;
  --dust: #B0AAA0;
  --drywall: #D4CFC5;
  --mortar: #E8E4DC;
  --site-white: #F2F0EB;
  --clean-white: #FAFAF8;
  --orange: #FF6B00;
  --orange-hover: #E86000;
  --orange-text: #CC5500;
  --orange-pale: #FFF3E8;
  --orange-glow: rgba(255, 107, 0, 0.12);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  background: var(--site-white);
  color: var(--tar);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Nav */
.nav {
  padding: 20px 0;
  position: sticky;
  top: 0;
  background: var(--site-white);
  z-index: 100;
  border-bottom: 1px solid var(--mortar);
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 28px;
  color: var(--tar);
  text-decoration: none;
  letter-spacing: -0.04em;
}
.logo-j { color: var(--orange); }
.nav-links { display: flex; gap: 24px; }
.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--gravel);
  text-decoration: none;
}
.nav-links a:hover { color: var(--tar); }

/* Labels */
.label {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange-text);
  margin-bottom: 16px;
}

/* Hero */
.hero {
  padding: 100px 0 80px;
}
h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 52px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}
.text-orange { color: var(--orange); }
.hero-sub {
  font-size: 18px;
  color: var(--gravel);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.hero-cta { display: flex; gap: 16px; }

/* Buttons */
.btn {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.15s ease;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--orange);
  color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(255, 107, 0, 0.25);
}
.btn-primary:hover {
  background: var(--orange-hover);
  box-shadow: 0 4px 16px rgba(255, 107, 0, 0.3);
  transform: translateY(-1px);
}

/* Features */
.features {
  padding: 80px 0;
}
h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 48px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--clean-white);
  border: 1px solid var(--mortar);
  border-radius: 12px;
  padding: 32px;
}
.feature-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
.feature-card p {
  color: var(--gravel);
  font-size: 15px;
  line-height: 1.6;
}

/* Built By */
.built-by {
  padding: 80px 0;
  background: var(--mortar);
}
.built-by-text {
  font-size: 18px;
  color: var(--gravel);
  max-width: 640px;
  line-height: 1.7;
}
.built-by-text strong { color: var(--tar); }

/* Footer */
.footer {
  padding: 48px 0;
  border-top: 1px solid var(--mortar);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-tagline {
  color: var(--concrete);
  font-size: 14px;
  margin-top: 4px;
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-size: 14px;
  color: var(--gravel);
  text-decoration: none;
}
.footer-links a:hover {
  color: var(--orange-text);
}
.footer-copy {
  font-size: 12px;
  color: var(--concrete);
  margin-top: 8px;
}

/* Legal Pages */
.legal {
  padding: 60px 0 80px;
}
.legal h1 {
  font-size: 36px;
  margin-bottom: 8px;
}
.legal .last-updated {
  font-size: 14px;
  color: var(--concrete);
  margin-bottom: 40px;
}
.legal h2 {
  font-size: 22px;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 16px;
}
.legal p, .legal li {
  color: var(--gravel);
  line-height: 1.7;
  margin-bottom: 12px;
}
.legal ul {
  padding-left: 24px;
  margin-bottom: 16px;
}
.legal li { margin-bottom: 8px; }
.legal a {
  color: var(--orange-text);
  text-decoration: none;
}
.legal a:hover { text-decoration: underline; }

/* Responsive */
@media (max-width: 768px) {
  h1 { font-size: 32px; }
  h2 { font-size: 26px; }
  .hero { padding: 60px 0 48px; }
  .feature-grid { grid-template-columns: 1fr; }
  .footer-links { flex-direction: column; gap: 12px; }
  .nav-links { gap: 16px; }
}
