@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@500;600;700;800;900&display=swap');

:root {
  --bg: #f4f7f2;
  --surface: rgba(255, 255, 255, .72);
  --surface-strong: #ffffff;
  --ink: #14211c;
  --muted: #4b5563;
  --line: rgba(30, 62, 48, .10);
  --green: #167457;
  --green-dark: #0f4e3d;
  --mint: #cfeee2;
  --blue: #235d8f;
  --yellow: #a66f00;
  --red: #b42318;
  --shadow: 0 18px 52px rgba(23, 33, 28, .09);
  --soft-shadow: 0 10px 28px rgba(23, 33, 28, .06);
}

* { box-sizing: border-box; }

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(22, 101, 52, .10), transparent 45%),
    radial-gradient(circle at 90% 18%, rgba(35, 93, 143, .08), transparent 34%),
    linear-gradient(145deg, #f7faf5 0%, var(--bg) 52%, #edf4ef 100%);
  color: var(--ink);
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

:focus-visible {
  outline: 3px solid rgba(22, 116, 87, .35);
  outline-offset: 3px;
}

.ambient {
  position: fixed;
  z-index: -1;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(18px);
  opacity: .55;
}

.ambient-one {
  width: 360px;
  height: 360px;
  left: -180px;
  top: 160px;
  background: rgba(22, 116, 87, .18);
}

.ambient-two {
  width: 300px;
  height: 300px;
  right: -130px;
  bottom: 60px;
  background: rgba(35, 93, 143, .12);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(16px, 4vw, 52px);
  background: rgba(247, 250, 245, .58);
  border-bottom: 1px solid rgba(30, 62, 48, .07);
  backdrop-filter: blur(14px);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 24px 16px 36px;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 700;
}

.site-footer a, .text-link, .fine-print a {
  color: var(--green-dark);
  font-weight: 900;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: white;
  box-shadow: 0 12px 26px rgba(22, 116, 87, .25);
}

.brand-name { letter-spacing: 0; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(30, 62, 48, .1);
  border-radius: 14px;
  background: rgba(255, 255, 255, .48);
}

.site-nav a, .logout-form button {
  padding: 9px 11px;
  border-radius: 10px;
  color: var(--muted);
  font-weight: 800;
}

.site-nav a:hover, .logout-form button:hover {
  background: #eef6f1;
  color: var(--ink);
}

.nav-toggle, .hamburger { display: none; }

.page-shell {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(28px, 6vw, 72px) 0;
}

.hero, .form-layout, .result-layout, .auth-layout, .demo-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(310px, .75fr);
  gap: clamp(22px, 5vw, 52px);
  align-items: center;
}

.dashboard-hero {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.dashboard-hero h1 {
  margin: 0;
  font-size: clamp(2.1rem, 5vw, 4.2rem);
  line-height: 1;
  text-wrap: balance;
}

.hero-content {
  padding: clamp(8px, 2vw, 18px) 0;
}

.hero h1, .form-intro h1, .result-card h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(2.6rem, 6.8vw, 5.8rem);
  line-height: .96;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-copy, .form-intro p, .result-card p {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.16rem);
  font-weight: 600;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin: 0 0 14px;
  padding: 6px 10px;
  border: 1px solid rgba(22, 116, 87, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .7);
  color: var(--green-dark);
  font-weight: 900;
  text-transform: uppercase;
  font-size: .72rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.primary-action, .secondary-action {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  padding: 13px 18px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: white;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(22, 116, 87, .2);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.primary-action:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(22, 116, 87, .24);
}

.secondary-action {
  background: rgba(255, 255, 255, .74);
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: none;
}

.secondary-action:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, .9);
}

.compact-action {
  min-height: 40px;
  padding: 10px 16px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.trust-strip span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .62);
  color: var(--muted);
  font-size: .88rem;
  font-weight: 800;
}

.summary-panel, .info-card, .checkup-form, .result-card, .actions-panel, .metrics-band article, .demo-card, .pricing-card {
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 18px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.summary-panel, .info-card, .checkup-form, .result-card, .actions-panel {
  padding: clamp(20px, 3vw, 32px);
}

.premium-panel {
  position: relative;
  overflow: hidden;
}

.premium-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(22, 116, 87, .12), transparent 48%);
  pointer-events: none;
}

.panel-label, .info-card span {
  position: relative;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.pulse-score {
  position: relative;
  display: grid;
  place-items: center;
  width: min(210px, 70vw);
  aspect-ratio: 1;
  margin: 22px auto;
  border-radius: 50%;
  background:
    radial-gradient(circle, white 0 46%, transparent 47%),
    conic-gradient(var(--green) 0 72%, #dbe7df 72% 100%);
  box-shadow:
    0 0 42px rgba(22, 116, 87, .16),
    inset 0 0 0 1px rgba(30, 62, 48, .08),
    var(--soft-shadow);
  animation: score-rise .75s ease-out both;
}

.pulse-score span {
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--green-dark);
}

.pulse-score small {
  margin-top: -18px;
  color: var(--muted);
  font-weight: 800;
}

.score-insight {
  position: relative;
  margin-bottom: 8px;
  padding: 14px;
  border: 1px solid rgba(22, 116, 87, .14);
  border-radius: 14px;
  background: rgba(255, 255, 255, .58);
}

.score-insight p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: .92rem;
}

.panel-row {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
}

.panel-row span { color: var(--muted); font-weight: 800; }

.metrics-band {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: 14px;
  margin: clamp(28px, 5vw, 52px) 0 22px;
}

.care-strip {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: clamp(24px, 4vw, 38px) 0 0;
  padding: 16px;
  border: 1px solid rgba(30, 62, 48, .1);
  border-radius: 18px;
  background: rgba(255, 255, 255, .58);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(14px);
}

.care-avatar {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(22, 116, 87, .16), rgba(35, 93, 143, .10)),
    #fff;
  border: 1px solid rgba(22, 116, 87, .14);
  color: var(--green-dark);
  font-weight: 900;
  font-size: 1.35rem;
}

.care-strip p {
  margin: 2px 0 0;
  color: var(--muted);
}

@keyframes score-rise {
  from {
    opacity: .55;
    transform: translateY(8px) scale(.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.metrics-band article {
  padding: 20px;
  box-shadow: var(--soft-shadow);
  position: relative;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}

.metrics-band article::after {
  content: "";
  position: absolute;
  width: 46px;
  height: 46px;
  right: -12px;
  top: -12px;
  border-radius: 50%;
  background: rgba(22, 116, 87, .08);
}

.metrics-band article:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(23, 33, 28, .08);
}

.metrics-band strong {
  display: block;
  font-size: 1.75rem;
  line-height: 1;
}

.metrics-band span { color: var(--muted); font-weight: 800; }

.demo-hero {
  align-items: stretch;
}

.demo-hero h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(2.45rem, 6vw, 5.2rem);
  line-height: .98;
  text-wrap: balance;
}

.demo-card {
  padding: clamp(20px, 3vw, 30px);
  box-shadow: var(--soft-shadow);
}

.demo-card > strong {
  display: block;
  margin: 14px 0 8px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  color: var(--green-dark);
}

.demo-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 650;
}

.demo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 16px;
  margin-top: 24px;
}

.demo-grid span {
  color: var(--green-dark);
  font-size: .82rem;
  font-weight: 900;
}

.demo-grid h2, .demo-section h2 {
  margin: 10px 0 8px;
}

.demo-section {
  margin-top: 32px;
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: 10px;
}

.flow-list a {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 14px;
  background: rgba(255, 255, 255, .62);
  color: var(--green-dark);
  font-weight: 900;
  box-shadow: var(--soft-shadow);
  transition: transform .18s ease, box-shadow .18s ease;
}

.flow-list a:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(23, 33, 28, .08);
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
  gap: 16px;
  margin-top: 24px;
}

.info-card {
  box-shadow: var(--soft-shadow);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, rgba(22, 116, 87, .7), rgba(35, 93, 143, .28));
  opacity: .55;
}

.info-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, .7);
  box-shadow: 0 16px 40px rgba(23, 33, 28, .08);
}

.info-card h2, .actions-panel h2 { margin: 10px 0 8px; }
.info-card p, .actions-panel p { color: var(--muted); margin-bottom: 0; font-weight: 600; }

.history-section { margin-top: 46px; }
.section-title h2 { margin-top: 0; }
.record-list { display: grid; gap: 10px; }
.record-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 12px;
  align-items: center;
  padding: 16px 18px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 14px;
  box-shadow: var(--soft-shadow);
}

.checkup-form { display: grid; gap: 18px; }
.field-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: 14px;
}

label { display: grid; gap: 7px; font-weight: 800; }
input[type="text"], input[type="email"], input[type="number"], input[type="password"], select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, .78);
  padding: 10px 12px;
  color: var(--ink);
  font: inherit;
  font-weight: 600;
  outline: none;
}

.filter-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 12px;
  margin-bottom: 20px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 18px;
  background: rgba(255, 255, 255, .72);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(8px);
}

.filter-panel label {
  min-width: min(260px, 100%);
}

input:focus {
  border-color: rgba(22, 116, 87, .5);
  box-shadow: 0 0 0 4px rgba(22, 116, 87, .12);
}

fieldset {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
}

legend { font-weight: 900; padding: 0 8px; }

.check-option, .consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
}

.check-option input, .consent input { margin-top: 5px; }

.logout-form { margin: 0; }
.logout-form button {
  min-height: 40px;
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.alert {
  padding: 14px 16px;
  border-radius: 14px;
  background: #eef6f1;
  border: 1px solid var(--line);
  color: var(--muted);
}

.alert-error { background: #fff1f0; color: var(--red); border-color: #ffd2ce; }

.result-layout { grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr); align-items: start; }
.score {
  margin: 18px 0;
  width: 108px;
  height: 108px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eef6f1;
  color: var(--green);
  font-size: 2.15rem;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(30, 62, 48, .08);
}

.risk-high .score { color: var(--yellow); background: #fff7e6; }
.risk-immediate .score { color: var(--red); background: #fff1f0; }
.action-list { display: grid; gap: 12px; margin-bottom: 16px; }
.action-list article {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 14px;
  background: rgba(255, 255, 255, .72);
  backdrop-filter: blur(8px);
  transition: transform .18s ease, box-shadow .18s ease;
}

.action-list article:hover {
  transform: translateY(-2px);
  box-shadow: var(--soft-shadow);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(280px, 1.1fr) minmax(240px, .8fr);
  gap: 16px;
  align-items: stretch;
}

.manager-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: 16px;
}

.saas-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 14px;
  align-items: stretch;
  margin-bottom: 22px;
}

.saas-summary article, .saas-actions {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 18px;
  background: rgba(255, 255, 255, .72);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(8px);
}

.saas-summary strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1;
}

.saas-summary p {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.saas-actions {
  display: grid;
  align-content: center;
  gap: 10px;
}

.usage-track {
  height: 10px;
  margin-top: 14px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(22, 116, 87, .10);
}

.usage-track i {
  display: block;
  height: 100%;
  min-width: 8px;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--blue));
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.pricing-card {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: clamp(20px, 3vw, 30px);
  box-shadow: var(--soft-shadow);
}

.pricing-card h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
}

.pricing-card > strong {
  font-size: clamp(2.2rem, 5vw, 3.3rem);
  line-height: 1;
  color: var(--green-dark);
}

.pricing-card small {
  color: var(--muted);
  font-size: .9rem;
}

.pricing-card p, .pricing-card li {
  color: var(--muted);
  font-weight: 700;
}

.pricing-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
}

.pricing-card form {
  margin-top: auto;
}

.active-plan {
  border-color: rgba(22, 116, 87, .45);
  box-shadow: 0 18px 42px rgba(22, 116, 87, .13);
}

button[disabled] {
  cursor: not-allowed;
  opacity: .72;
}

.analytics-panel, .legal-page {
  margin-top: 28px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 18px;
  background: rgba(255, 255, 255, .72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.legal-page {
  max-width: 860px;
}

.legal-page h1 {
  margin: 0 0 16px;
  font-size: clamp(2.2rem, 6vw, 4.8rem);
  line-height: 1;
}

.legal-page p {
  color: var(--muted);
  font-weight: 600;
  font-size: 1.05rem;
}

.legal-page h2 {
  margin: 28px 0 8px;
}

.metric-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  border-radius: 12px;
  background: rgba(22, 116, 87, .1);
  color: var(--green-dark);
  font-weight: 900;
}

.risk-bars {
  display: grid;
  gap: 14px;
}

.risk-bar-row {
  display: grid;
  grid-template-columns: 120px minmax(120px, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.risk-bar-row span, .risk-bar-row strong {
  font-weight: 900;
}

.risk-bar-track {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(22, 116, 87, .09);
}

.risk-bar-track i {
  display: block;
  height: 100%;
  min-width: 8px;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--blue));
}

.fine-print {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 700;
}

.score-card, .next-actions-card, .status-card, .empty-dashboard {
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 18px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
  padding: clamp(20px, 3vw, 30px);
}

.status-card > strong {
  display: block;
  margin-top: 16px;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1;
}

.status-card > p {
  color: var(--muted);
  font-weight: 600;
}

.score-card p {
  color: var(--muted);
  font-weight: 600;
}

.evidence-list {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.evidence-list div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 12px;
  background: rgba(255, 255, 255, .58);
}

.evidence-list span {
  padding: 4px 7px;
  border-radius: 999px;
  background: rgba(22, 116, 87, .1);
  color: var(--green-dark);
  font-size: .7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.evidence-list strong {
  min-width: 0;
  font-size: .9rem;
}

.evidence-list small {
  color: var(--muted);
  font-weight: 900;
}

.compact-evidence div {
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.score-ring {
  display: grid;
  place-items: center;
  width: 170px;
  aspect-ratio: 1;
  margin: 22px auto;
  border-radius: 50%;
  background:
    radial-gradient(circle, white 0 46%, transparent 47%),
    conic-gradient(var(--green) 0 72%, #dbe7df 72% 100%);
  box-shadow: 0 0 38px rgba(22, 116, 87, .14), inset 0 0 0 1px rgba(30, 62, 48, .08);
}

.score-ring strong {
  font-size: 3rem;
  line-height: 1;
  color: var(--green-dark);
}

.score-ring span {
  margin-top: -16px;
  color: var(--muted);
  font-weight: 900;
  font-size: .82rem;
}

.action-stack {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.mini-action {
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 14px;
  background: rgba(255, 255, 255, .62);
}

.mini-action span {
  width: fit-content;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(22, 116, 87, .1);
  color: var(--green-dark);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.status-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.status-list div {
  padding: 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .56);
  border: 1px solid rgba(255, 255, 255, .45);
}

.status-list strong {
  display: block;
  font-size: 1.5rem;
}

.status-list span, .empty-state {
  color: var(--muted);
  font-weight: 700;
}

.empty-dashboard {
  display: grid;
  justify-items: start;
  gap: 12px;
  max-width: 720px;
}

.empty-dashboard h2 {
  margin: 0;
  font-size: clamp(1.8rem, 5vw, 3rem);
  line-height: 1.05;
}

.empty-dashboard p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.empty-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: white;
  font-size: 1.7rem;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(22, 116, 87, .2);
}

@media (max-width: 900px) {
  .site-header { align-items: flex-start; }
  .hamburger {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255, 255, 255, .72);
    cursor: pointer;
  }
  .hamburger span, .hamburger span::before, .hamburger span::after {
    content: "";
    display: block;
    width: 20px;
    height: 2px;
    background: var(--ink);
    position: relative;
  }
  .hamburger span::before { position: absolute; top: -7px; }
  .hamburger span::after { position: absolute; top: 7px; }
  .site-nav {
    display: none;
    position: absolute;
    top: 66px;
    left: 16px;
    right: 16px;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    background: rgba(255, 255, 255, .96);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
  }
  .nav-toggle:checked ~ .site-nav { display: flex; }
  .metrics-band article:last-child {
    grid-column: 1 / -1;
  }
  .dashboard-hero {
    align-items: start;
    flex-direction: column;
  }
  .dashboard-grid {
    grid-template-columns: 1fr 1fr;
  }
  .saas-summary, .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
  .saas-actions {
    grid-column: 1 / -1;
  }
  .score-card {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .page-shell { width: min(100% - 24px, 1160px); }
  .hero, .form-layout, .result-layout, .auth-layout, .demo-hero { grid-template-columns: 1fr; }
  .hero {
    gap: 26px;
  }
  .hero h1, .form-intro h1, .result-card h1 {
    font-size: clamp(2.35rem, 11vw, 3.25rem);
    line-height: 1;
  }
  .hero-copy {
    font-size: 1rem;
    margin-bottom: 0;
  }
  .hero-actions {
    margin-top: 22px;
    gap: 10px;
  }
  .record-row { grid-template-columns: 1fr; }
  .primary-action { width: 100%; }
  .secondary-action {
    width: auto;
    align-self: center;
  }
  .compact-action {
    min-height: 38px;
    padding: 9px 18px;
  }
  .trust-strip {
    gap: 7px;
    margin-top: 20px;
  }
  .trust-strip span {
    padding: 7px 10px;
    font-size: .82rem;
  }
  .summary-panel {
    padding: 20px;
  }
  .premium-panel {
    min-height: auto;
  }
  .pulse-score {
    width: min(172px, 64vw);
    margin: 18px auto 20px;
  }
  .pulse-score span {
    font-size: 2.7rem;
  }
  .pulse-score small {
    margin-top: -14px;
    font-size: .78rem;
  }
  .panel-row {
    padding: 11px 0;
    font-size: .92rem;
  }
  .metrics-band {
    margin-top: 30px;
    grid-template-columns: 1fr 1fr;
  }
  .metrics-band article {
    padding: 16px;
  }
  .metrics-band strong {
    font-size: 1.45rem;
  }
  .metrics-band article:last-child {
    grid-column: 1 / -1;
  }
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
  .saas-summary, .pricing-grid {
    grid-template-columns: 1fr;
  }
  .saas-actions {
    grid-column: auto;
  }
  .risk-bar-row {
    grid-template-columns: 1fr;
  }
  .score-card {
    grid-column: auto;
  }
  .dashboard-hero .primary-action {
    width: 100%;
  }
  .evidence-list div {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .site-header {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .brand-mark {
    width: 34px;
    height: 34px;
  }
  .care-strip {
    align-items: flex-start;
    padding: 14px;
  }
}
