:root {
  --bg: #F7F5F2;
  --bg-alt: #EEE9E2;
  --fg: #1A1A1A;
  --fg-muted: #6B6560;
  --teal: #0F4C5C;
  --teal-light: #0F4C5C15;
  --amber: #E89B3B;
  --amber-light: #E89B3B20;
  --amber-mid: #E89B3B50;
  --white: #FFFFFF;
  --border: #D8D0C8;
  --green: #3D9E6B;
  --green-light: #3D9E6B20;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  line-height: 1.15;
}

a { color: inherit; text-decoration: none; }

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--teal);
}
.nav-links {
  display: flex;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg-muted);
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--fg); }

/* HERO */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber);
  margin-bottom: 1.25rem;
}
.hero-headline {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 1.5rem;
  line-height: 1.05;
}
.hero-headline em {
  font-style: italic;
  color: var(--teal);
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 2.5rem;
  max-width: 440px;
}
.hero-stat-row {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.hero-stat-num {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--teal);
}
.hero-stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--fg-muted);
  margin-top: 0.25rem;
  max-width: 120px;
  line-height: 1.4;
}

/* HERO WIDGET */
.hero-right { display: flex; justify-content: center; }
.hero-widget {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 4px 24px rgba(15,76,92,0.08);
}
.widget-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
.widget-title {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--fg);
}
.widget-live {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--green);
  background: var(--green-light);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
}
.widget-shift {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.875rem 1rem;
  margin-bottom: 0.625rem;
}
.widget-shift.filled { background: var(--teal-light); border-color: #0F4C5C30; }
.shift-time {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--fg-muted);
  margin-bottom: 0.2rem;
}
.shift-client {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.35rem;
}
.shift-status {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
}
.shift-status.open { color: var(--amber); }
.shift-status.filled { color: var(--green); }
.shift-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
  margin-top: 0.35rem;
}
.filled-badge { background: var(--green-light); color: var(--green); }
.widget-footer {
  margin-top: 1rem;
  padding: 0.75rem 0;
  border-top: 1px solid var(--border);
  font-size: 0.7rem;
  color: var(--fg-muted);
  line-height: 1.4;
}

/* HOW IT WORKS */
.how-it-works {
  background: var(--white);
  padding: 5rem 2rem;
}
.section-header {
  max-width: 1200px;
  margin: 0 auto 3.5rem;
}
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber);
  margin-bottom: 0.875rem;
}
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 540px;
  line-height: 1.65;
}
.process-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.process-step { padding: 0; }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.step-title {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 0.75rem;
}
.step-desc {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* FEATURES */
.features {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
  border-color: var(--teal);
  box-shadow: 0 4px 20px rgba(15,76,92,0.08);
}
.feature-icon {
  margin-bottom: 1.25rem;
}
.feature-title {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 0.75rem;
}
.feature-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* OUTCOMES */
.outcomes {
  background: var(--teal);
  color: var(--white);
  padding: 5rem 2rem;
}
.outcomes-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.outcomes .section-eyebrow { color: var(--amber); }
.outcomes .section-title { color: var(--white); }
.outcomes-headline {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}
.outcomes-headline em { color: var(--amber); font-style: italic; }
.outcomes-body {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.outcome-list { display: flex; flex-direction: column; gap: 1.25rem; }
.outcome-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.outcome-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  background: var(--amber);
  color: var(--teal);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 0.15rem;
}
.outcome-item strong { display: block; font-size: 0.9rem; margin-bottom: 0.2rem; }
.outcome-item p { font-size: 0.85rem; color: rgba(255,255,255,0.65); line-height: 1.5; }

.outcomes-right { display: flex; flex-direction: column; gap: 1rem; padding-top: 2rem; }
.outcome-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}
.outcome-card.highlight { background: rgba(232,155,59,0.2); border-color: var(--amber); }
.outcome-number {
  font-family: 'Fraunces', serif;
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--amber);
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.outcome-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}

/* CLOSING */
.closing {
  padding: 5rem 2rem;
  text-align: center;
  background: var(--bg-alt);
}
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-headline {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}
.closing-body {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--teal);
}
.footer-tagline { font-size: 0.75rem; color: var(--fg-muted); margin-top: 0.2rem; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 0.8rem; color: var(--fg-muted); transition: color 0.15s; }
.footer-links a:hover { color: var(--fg); }
.footer-copy { font-size: 0.75rem; color: var(--fg-muted); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 2.5rem; padding-top: 3rem; }
  .hero-right { display: none; }
  .process-grid { grid-template-columns: 1fr; gap: 2rem; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .outcomes-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-stat-row { gap: 1.5rem; }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}