/* WakeWork — dark/amber landing page */

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

:root {
  --bg-deep: #070b14;
  --bg-mid: #0d1320;
  --bg-card: #111827;
  --amber: #f59e0b;
  --amber-glow: rgba(245, 158, 11, 0.15);
  --amber-soft: #fbbf24;
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --border: rgba(148, 163, 184, 0.08);
}

body {
  font-family: 'DM Sans', -apple-system, sans-serif;
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', -apple-system, sans-serif;
}

/* Ambient glow */
.glow-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}
.glow-orb.top-right {
  width: 500px; height: 500px;
  top: -150px; right: -100px;
  background: radial-gradient(circle, rgba(245,158,11,0.08) 0%, transparent 70%);
}
.glow-orb.bottom-left {
  width: 600px; height: 600px;
  bottom: -200px; left: -150px;
  background: radial-gradient(circle, rgba(59,130,246,0.05) 0%, transparent 70%);
}

/* Nav */
nav {
  position: relative; z-index: 10;
  padding: 28px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--text-primary);
  letter-spacing: -0.5px;
  text-decoration: none;
}
.logo span { color: var(--amber); }
.nav-cta {
  background: var(--amber);
  color: #000;
  padding: 10px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.2s;
}
.nav-cta:hover { background: var(--amber-soft); transform: translateY(-1px); }

/* Hero */
.hero {
  position: relative; z-index: 1;
  text-align: center;
  padding: 120px 40px 80px;
  max-width: 760px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-block;
  background: var(--amber-glow);
  border: 1px solid rgba(245,158,11,0.3);
  color: var(--amber);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero h1 span { color: var(--amber); }
.hero p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--amber);
  color: #000;
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
}
.btn-primary:hover { background: var(--amber-soft); transform: translateY(-2px); }
.btn-secondary {
  border: 1px solid var(--border);
  color: var(--text-secondary);
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
}
.btn-secondary:hover { border-color: var(--amber); color: var(--amber); }

/* Features section */
.features {
  position: relative; z-index: 1;
  padding: 80px 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber);
  font-weight: 600;
  text-align: center;
  margin-bottom: 16px;
}
.features h2 {
  text-align: center;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 60px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: border-color 0.2s;
}
.feature-card:hover { border-color: rgba(245,158,11,0.3); }
.feature-icon {
  width: 48px; height: 48px;
  background: var(--amber-glow);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.feature-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* Footer */
footer {
  position: relative; z-index: 1;
  text-align: center;
  padding: 40px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.8rem;
}
footer a { color: var(--text-secondary); text-decoration: none; }
footer a:hover { color: var(--amber); }

/* Responsive */
@media (max-width: 768px) {
  nav { padding: 20px; }
  .hero { padding: 80px 20px 60px; }
  .features { padding: 60px 20px; }
}