/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #080c14;
  --bg-surface: #0d1520;
  --fg: #e8e0d0;
  --fg-muted: #8a8278;
  --gold: #c9a84c;
  --gold-dim: rgba(201, 168, 76, 0.15);
  --gold-glow: rgba(201, 168, 76, 0.08);
  --navy: #0b1422;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* === NAVIGATION === */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem 3rem;
  display: flex;
  align-items: center;
  background: linear-gradient(to bottom, rgba(8,12,20,0.95) 0%, transparent 100%);
  backdrop-filter: blur(8px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 8rem 4rem 4rem;
  max-width: 1400px;
  margin: 0 auto;
  gap: 4rem;
  position: relative;
}

.hero-label {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  padding: 0.35rem 1rem;
  border-radius: 2rem;
  margin-bottom: 1.75rem;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 1.5rem;
  max-width: 560px;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.meta-value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--fg);
}

.meta-label {
  font-size: 0.72rem;
  color: var(--fg-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.meta-divider {
  width: 1px;
  height: 40px;
  background: var(--gold-dim);
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 420px;
}

.glow-orb {
  position: absolute;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.signal-rings {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.12);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
}

.ring-1 { width: 160px; height: 160px; animation: pulse-ring 4s ease-in-out infinite; }
.ring-2 { width: 240px; height: 240px; animation: pulse-ring 4s ease-in-out infinite 0.8s; }
.ring-3 { width: 340px; height: 340px; animation: pulse-ring 4s ease-in-out infinite 1.6s; }

@keyframes pulse-ring {
  0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.03); }
}

.center-icon {
  position: relative;
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* === SECTION COMMON === */
.section-eyebrow {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--fg);
  line-height: 1.2;
}

/* === WHAT IT DOES === */
.what-it-does {
  padding: 6rem 4rem;
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 4rem;
}

.employee-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.08);
  border-radius: 4px;
  overflow: hidden;
}

.employee-card {
  background: var(--bg-surface);
  padding: 2.5rem 2rem;
  transition: background 0.3s;
}

.employee-card:hover {
  background: #101d2e;
}

.card-icon {
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.employee-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.75rem;
}

.employee-card p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* === DAILY RHYTHM === */
.daily-rhythm {
  padding: 6rem 4rem;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: start;
}

.rhythm-content {}

.rhythm-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--fg);
  line-height: 1.25;
  margin-bottom: 1.25rem;
}

.rhythm-body {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold-dim), transparent);
}

.timeline-item {
  position: relative;
  padding-bottom: 2.5rem;
}

.timeline-item:last-child { padding-bottom: 0; }

.time-dot {
  position: absolute;
  left: -2rem;
  top: 0.4rem;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateX(-3.5px);
  box-shadow: 0 0 12px rgba(201,168,76,0.4);
}

.time-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.3rem;
}

.time-content h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.4rem;
}

.time-content p {
  font-size: 0.8rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* === RESULTS === */
.results {
  padding: 6rem 4rem;
  max-width: 1400px;
  margin: 0 auto;
}

.results-header { margin-bottom: 3rem; }

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(201,168,76,0.05);
  border: 1px solid rgba(201,168,76,0.05);
  border-radius: 4px;
  overflow: hidden;
}

.result-item {
  background: var(--bg-surface);
  padding: 3rem 2rem;
  text-align: center;
}

.result-stat {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.result-label {
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* === MANIFESTO === */
.manifesto {
  padding: 8rem 4rem;
  background: linear-gradient(to bottom, var(--bg), #060a10);
  position: relative;
  overflow: hidden;
}

.manifesto::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.3), transparent);
}

.manifesto-inner {
  max-width: 760px;
  margin: 0 auto;
}

.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-style: italic;
  color: var(--fg);
  line-height: 1.45;
  margin-bottom: 2.5rem;
  padding-left: 1.5rem;
  border-left: 2px solid var(--gold);
}

.manifesto-body {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

/* === CLOSING === */
.closing {
  padding: 8rem 4rem;
  text-align: center;
  background: var(--bg);
}

.closing-inner { max-width: 680px; margin: 0 auto; }

.closing-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--fg);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.closing-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* === FOOTER === */
.site-footer {
  padding: 3rem 4rem;
  border-top: 1px solid rgba(201,168,76,0.08);
  background: #060a10;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold);
}

.footer-tagline {
  font-size: 0.75rem;
  color: var(--fg-muted);
}

.footer-copy {
  font-size: 0.72rem;
  color: rgba(138,130,120,0.5);
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 7rem 2rem 4rem;
    text-align: center;
  }

  .hero-sub { margin: 0 auto 2.5rem; }
  .hero-meta { justify-content: center; }
  .hero-visual { display: none; }

  .employee-grid { grid-template-columns: 1fr 1fr; }
  .daily-rhythm { grid-template-columns: 1fr; gap: 3rem; }
  .results-grid { grid-template-columns: 1fr 1fr; }

  .what-it-does, .daily-rhythm, .results, .manifesto, .closing { padding: 4rem 2rem; }
  .site-footer { padding: 2rem; }
  .footer-inner { flex-direction: column; gap: 1rem; text-align: center; }
}

@media (max-width: 600px) {
  .employee-grid, .results-grid { grid-template-columns: 1fr; }
  .hero-meta { flex-direction: column; gap: 1rem; }
  .meta-divider { display: none; }
}