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

:root {
  --bg: #FAFAF7;
  --fg: #1A1F16;
  --fg-muted: #6B6B5A;
  --accent: #6B7F5E;
  --accent-dark: #4A5E3A;
  --accent-light: #E8EDE4;
  --border: #E0E4D8;
  --white: #FFFFFF;
}

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

/* Navigation */
.nav {
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.3px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  padding-left: 16px;
  border-left: 1px solid var(--border);
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 80px 48px 80px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.12;
  color: var(--fg);
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}
.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
}
.hero-portals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.portal-card {
  padding: 16px 20px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.portal-employee { border-left: 3px solid var(--accent); }
.portal-employer { border-left: 3px solid var(--accent-dark); }
.portal-label { font-size: 13px; font-weight: 600; color: var(--fg); }
.portal-desc { font-size: 12px; color: var(--fg-muted); line-height: 1.4; }

/* Hero Illustration */
.hero-illustration {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
.il-track {
  position: relative;
  width: 100%;
  padding: 24px 0;
}
.il-track-line {
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  height: 2px;
  background: var(--border);
  transform: translateY(-50%);
}
.il-track-node {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--border);
  border: 2px solid var(--bg);
}
.il-node-1 { left: 15%; background: var(--accent); }
.il-node-2 { left: 38%; background: var(--accent); }
.il-node-3 { left: 62%; background: var(--accent); }
.il-node-4 { left: 85%; }
.il-node-active { width: 16px; height: 16px; background: var(--accent); }
.il-node-label {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 600;
  color: var(--fg-muted);
  white-space: nowrap;
}
.il-progress-bar {
  width: 100%;
  height: 4px;
  background: var(--accent-light);
  border-radius: 2px;
  overflow: hidden;
}
.il-progress-fill {
  height: 100%;
  width: 75%;
  background: var(--accent);
  border-radius: 2px;
}
.il-caption {
  font-size: 13px;
  color: var(--fg-muted);
  text-align: center;
}

/* Stat Bar */
.statbar {
  background: var(--accent-dark);
  padding: 36px 48px;
}
.statbar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
}
.stat-item { text-align: center; }
.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.4;
  max-width: 200px;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.2);
}

/* Assessment Section */
.assessment {
  padding: 100px 48px;
  background: var(--white);
}
.assessment-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.3px;
}
.section-body {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}
.assessment-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.assessment-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--fg);
}
.check-icon { flex-shrink: 0; }

/* Assessment Card */
.assessment-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ac-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ac-title { font-size: 14px; font-weight: 600; color: var(--fg); }
.ac-badge {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-light);
  padding: 3px 10px;
  border-radius: 20px;
}
.ac-bar-group { display: flex; flex-direction: column; gap: 14px; }
.ac-bar-row { display: flex; flex-direction: column; gap: 6px; }
.ac-bar-label { font-size: 12px; color: var(--fg-muted); }
.ac-bar {
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}
.ac-bar-fill {
  height: 100%;
  width: 72%;
  background: var(--fg-muted);
  border-radius: 3px;
}
.ac-bar-olive { background: var(--accent); }
.ac-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  background: var(--accent);
  border-radius: 8px;
  cursor: pointer;
}
.ac-action-text { font-size: 13px; font-weight: 600; color: var(--white); }
.ac-arrow { font-size: 16px; color: rgba(255,255,255,0.8); }

/* Portals Section */
.portals {
  padding: 100px 48px;
  background: var(--accent-light);
}
.portals-header {
  max-width: 680px;
  margin: 0 auto 64px;
  text-align: center;
}
.portals-header .section-eyebrow { margin-bottom: 14px; }
.portals-header .section-body { margin-bottom: 0; }
.portals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.portal-box {
  background: var(--white);
  border-radius: 12px;
  padding: 36px 32px;
  border-top: 3px solid var(--accent);
}
.portal-box-employer { border-top-color: var(--accent-dark); }
.portal-box-icon { margin-bottom: 20px; }
.portal-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--fg);
}
.portal-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.portal-list li {
  font-size: 14px;
  color: var(--fg-muted);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.portal-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

/* Features */
.features {
  padding: 100px 48px;
  background: var(--white);
}
.features-inner { max-width: 1200px; margin: 0 auto; }
.features-inner > .section-eyebrow { margin-bottom: 14px; }
.features-inner > .section-heading { margin-bottom: 56px; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 48px;
}
.feature-item { display: flex; flex-direction: column; gap: 12px; }
.feature-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-item h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
}
.feature-item p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* Closing */
.closing { padding: 80px 48px 100px; background: var(--bg); }
.closing-inner { max-width: 860px; margin: 0 auto; text-align: center; }
.closing-rule {
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 48px;
}
.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.3;
  margin-bottom: 24px;
  letter-spacing: -0.3px;
}
.closing-body {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto;
}

/* Footer */
.footer {
  padding: 40px 48px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-brand { display: flex; flex-direction: column; gap: 4px; }
.footer-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
}
.footer-desc { font-size: 13px; color: var(--fg-muted); }
.footer-note p { font-size: 13px; color: var(--fg-muted); font-style: italic; }

/* Responsive */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .hero { grid-template-columns: 1fr; padding: 48px 24px; gap: 48px; }
  .hero-right { display: none; }
  .statbar { padding: 28px 24px; }
  .statbar-inner { flex-direction: column; gap: 24px; }
  .stat-divider { display: none; }
  .assessment { padding: 60px 24px; }
  .assessment-inner { grid-template-columns: 1fr; gap: 40px; }
  .assessment-visual { display: none; }
  .portals { padding: 60px 24px; }
  .portals-grid { grid-template-columns: 1fr; }
  .features { padding: 60px 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .closing { padding: 60px 24px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
}