:root {
  color-scheme: light;
  --bg: #f8f9fb;
  --surface: #ffffff;
  --surface-2: #f1f5f9;
  --border: #e2e8f0;
  --text: #0f172a;
  --muted: #64748b;
  --accent: #16a34a;
  --accent-strong: #15803d;
  --accent-bg: #f0fdf4;
  --radius: 18px;
  --shadow-sm: 0 1px 3px rgba(15,23,42,.06), 0 1px 2px rgba(15,23,42,.04);
  --shadow: 0 4px 24px rgba(15,23,42,.07), 0 1px 3px rgba(15,23,42,.04);
  --shadow-lg: 0 20px 60px rgba(15,23,42,.10);
  --font: 'Inter', system-ui, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--bg); color: var(--text); -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button, a { font: inherit; }
ul { padding-left: 1.2em; margin: 0; }
li { margin-bottom: 4px; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  border-radius: 9999px; padding: 12px 22px; font-weight: 600; font-size: 14px;
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--sm { padding: 8px 16px; font-size: 13px; }
.btn--lg { padding: 14px 28px; font-size: 15px; }
.btn--primary { background: var(--accent); color: #fff; box-shadow: 0 4px 14px rgba(22,163,74,.35); }
.btn--primary:hover { background: var(--accent-strong); box-shadow: 0 6px 20px rgba(22,163,74,.45); }
.btn--outline { background: #fff; border-color: var(--border); color: var(--text); }
.btn--outline:hover { border-color: #94a3b8; background: var(--surface-2); }
.btn--white { background: #fff; color: var(--accent); font-weight: 700; }
.btn--white:hover { background: #f0fdf4; }

/* ── Site Header ── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(248,249,251,.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.site-header__inner {
  max-width: 1200px; margin: 0 auto; padding: 0 28px;
  height: 60px; display: flex; align-items: center; gap: 32px;
}
.brand-mark {
  display: flex; align-items: center; gap: 9px;
  font-size: 17px; font-weight: 800; letter-spacing: -.03em;
}
.brand-icon { width: 28px; height: 28px; flex-shrink: 0; }
.site-nav { display: flex; gap: 24px; margin-left: 8px; flex: 1; }
.site-nav a { font-size: 14px; font-weight: 500; color: var(--muted); transition: color .15s; }
.site-nav a:hover { color: var(--text); }

/* ── Hero ── */
.hero {
  max-width: 1200px; margin: 0 auto;
  padding: 72px 28px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.badge {
  display: inline-flex; align-items: center;
  background: var(--accent-bg); color: var(--accent);
  font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 9999px; margin-bottom: 22px;
  border: 1px solid rgba(22,163,74,.18);
}
.hero h1 {
  font-size: clamp(2.4rem, 3.5vw, 3.6rem);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -.03em;
  margin: 0 0 20px;
}
.hero__sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 30px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 18px; }
.hero__note { font-size: 12px; color: var(--muted); margin: 0; }

/* Schedule card preview */
.schedule-card-preview {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--shadow-lg);
}
.scp__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.scp__title { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--text); }
.scp__dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; flex-shrink: 0; }
.scp__badge { font-size: 11px; font-weight: 700; background: var(--accent-bg); color: var(--accent); padding: 3px 10px; border-radius: 9999px; }
.scp__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 16px; }
.scp__day-label { font-size: 11px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 6px; }
.scp__shift {
  padding: 7px 9px; border-radius: 8px; font-size: 11px; font-weight: 500;
  line-height: 1.4; margin-bottom: 5px;
}
.scp__shift--filled { background: #f0fdf4; color: #166534; border: 1px solid rgba(22,163,74,.14); }
.scp__shift--warn { background: #fef9c3; color: #92400e; border: 1px solid rgba(234,179,8,.2); }
.scp__shift--empty { background: var(--surface-2); color: var(--muted); border: 1px dashed var(--border); }
.scp__footer { display: flex; gap: 10px; padding-top: 12px; border-top: 1px solid var(--border); }
.scp__stat { font-size: 12px; font-weight: 600; color: var(--muted); }
.scp__stat--warn { color: #d97706; }

/* ── Proof bar ── */
.proof-bar { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.proof-bar__inner {
  max-width: 1200px; margin: 0 auto; padding: 20px 28px;
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.proof-item { padding: 10px 28px; text-align: center; }
.proof-item strong { display: block; font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.proof-item span { font-size: 12px; color: var(--muted); }
.proof-divider { width: 1px; height: 40px; background: var(--border); flex-shrink: 0; }

/* ── Sections ── */
.section { max-width: 1200px; margin: 0 auto; padding: 80px 28px; }
.section--alt { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); max-width: 100%; }
.section--alt > * { max-width: 1200px; margin-left: auto; margin-right: auto; padding-left: 28px; padding-right: 28px; }
.section--alt .section__label,
.section--alt .section__title,
.section--alt .steps { max-width: 1200px; margin-left: auto; margin-right: auto; }
.section__label {
  text-transform: uppercase; letter-spacing: .14em; font-size: 12px; font-weight: 700;
  color: var(--accent); margin-bottom: 16px;
}
.section__title {
  font-size: clamp(1.9rem, 2.6vw, 2.8rem); font-weight: 800; line-height: 1.1;
  letter-spacing: -.025em; margin: 0 0 48px;
}

/* ── Features grid ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
}
.feature-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.feature-card__icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--accent-bg); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.feature-card__icon svg { width: 22px; height: 22px; }
.feature-card h3 { font-size: 15px; font-weight: 700; margin: 0 0 10px; }
.feature-card p { margin: 0; font-size: 13.5px; color: var(--muted); line-height: 1.7; }

/* ── Steps ── */
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: flex; gap: 24px; align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
.step__num {
  flex-shrink: 0; width: 40px; height: 40px;
  border-radius: 50%; background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 800;
}
.step h4 { margin: 0 0 8px; font-size: 16px; font-weight: 700; line-height: 1.3; }
.step p { margin: 0; color: var(--muted); line-height: 1.7; font-size: 14px; }

/* ── Industries ── */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.industry-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}
.industry-card__icon { font-size: 28px; margin-bottom: 14px; display: block; }
.industry-card h3 { margin: 0 0 12px; font-size: 16px; font-weight: 700; }
.industry-card > p { margin: 0 0 16px; color: var(--muted); line-height: 1.7; font-size: 14px; }
.industry-card li { font-size: 13px; color: var(--muted); line-height: 1.6; }

.section--premium {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.premium-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items: start;
  margin-top: 24px;
}
.premium-copy p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 620px;
  margin: 0 0 24px;
}
.premium-list {
  padding-left: 1.2em;
  margin: 0;
  list-style-type: disc;
}
.premium-list li {
  margin-bottom: 14px;
  font-size: 1rem;
  line-height: 1.7;
}
.premium-list strong {
  color: var(--text);
}
.premium-card {
  background: var(--accent-bg);
  border: 1px solid rgba(22,163,74,.16);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.premium-card__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
}
.premium-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(22,163,74,.1);
  padding: 7px 14px;
  border-radius: 9999px;
}
.premium-coming-soon-badge {
  display: inline-block;
  font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  background: #f59e0b; color: #fff;
  padding: 5px 14px; border-radius: 9999px; margin-bottom: 4px;
}
.premium-status {
  font-size: 13px;
  color: var(--text);
  opacity: .82;
}
.premium-card__body {
  display: grid;
  gap: 14px;
}
.premium-feature {
  background: #fff;
  border: 1px solid rgba(15,23,42,.06);
  border-radius: 18px;
  padding: 18px 20px;
}
.premium-feature span {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
}
.premium-feature p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}
.premium-card__footer {
  margin-top: 22px;
}

/* ── CTA band ── */
.cta-band {
  background: linear-gradient(135deg, #15803d 0%, #16a34a 60%, #22c55e 100%);
  color: #fff;
}
.cta-band__inner {
  max-width: 1200px; margin: 0 auto; padding: 60px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  flex-wrap: wrap;
}
.cta-band h2 { font-size: clamp(1.6rem, 2vw, 2.2rem); font-weight: 800; margin: 0 0 10px; line-height: 1.2; }
.cta-band p { margin: 0; opacity: .8; max-width: 480px; line-height: 1.65; font-size: 15px; }

/* ── Site footer ── */
.site-footer { border-top: 1px solid var(--border); background: var(--surface); }
.site-footer__inner {
  max-width: 1200px; margin: 0 auto; padding: 28px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.site-footer p { margin: 0; font-size: 13px; color: var(--muted); }

/* ── Responsive ── */
@media (max-width: 1020px) {
  .hero { grid-template-columns: 1fr; }
  .hero__content { max-width: 600px; }
  .features-grid, .premium-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .hero { padding: 48px 20px 56px; }
  .section { padding: 56px 20px; }
  .site-header__inner { padding: 0 20px; }
  .site-nav { display: none; }
  .hero__actions { flex-direction: column; align-items: stretch; text-align: center; }
  .features-grid, .industries-grid, .premium-grid { grid-template-columns: 1fr; }
  .scp__grid { grid-template-columns: repeat(2, 1fr); }
  .proof-bar__inner { gap: 0; }
  .proof-divider { display: none; }
  .cta-band__inner { flex-direction: column; text-align: center; }
  .site-footer__inner { flex-direction: column; text-align: center; }
}