body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #F3F4F6;
  color: #0F172A;
  text-align: center;
}

.container {
  max-width: 650px;
  margin: auto;
  padding: 60px 20px;
}

/* ---- TITLES ---- */

h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 12px;
}

.subtitle {
  color: #64748B;
  margin-bottom: 35px;
  font-size: 18px;
}

/* ---- FORM CARD ---- */

form {
  background: white;
  padding: 35px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* ---- INPUTS ---- */

form input {
  width: 100%;
  padding: 15px;
  margin-bottom: 16px;
  border-radius: 10px;
  border: 1px solid #E5E7EB;
  background: #FFFFFF;
  color: #0F172A;
  font-size: 16px;
  box-sizing: border-box;
  transition: border 0.2s, box-shadow 0.2s;
}

form input:focus {
  outline: none;
  border-color: #2563EB;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
}

/* ---- BUTTONS ---- */

.cta {
  width: 100%;
  padding: 16px;
  background: #2563EB;
  border: none;
  border-radius: 10px;
  color: white;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: 0.25s;
}

.cta:hover {
  background: #1D4ED8;
  transform: translateY(-1px);
}

.cta.secondary {
  background: #22C55E;
  margin-top: 30px;
}

.cta.secondary:hover {
  background: #16A34A;
}

/* ---- TRUST TEXT ---- */

.trust {
  margin-top: 16px;
  font-size: 14px;
  color: #64748B;
}

.hidden {
  display: none;
}

/* ---- LOADING ---- */

.progress-bar {
  width: 100%;
  height: 18px;
  background: #E5E7EB;
  border-radius: 10px;
  margin-top: 25px;
  overflow: hidden;
}

.progress {
  height: 100%;
  width: 0;
  background: #2563EB;
  transition: width 0.4s;
}

/* ---- SCORE CIRCLE ---- */

.score-circle {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: white;
  margin: 35px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 42px;
  font-weight: 700;
  border: 7px solid #2563EB;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: border-color 0.5s;
}

/* ---- SECTION TITLES ---- */

.section-title {
  font-size: 18px;
  color: #64748B;
  text-align: left;
  margin: 35px 0 12px;
}

/* ---- MODULES ---- */

.module {
  background: white;
  padding: 22px;
  border-radius: 12px;
  margin-top: 16px;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0,0,0,0.06);
}

.module h3 {
  margin: 0 0 10px;
  font-size: 16px;
}

.module-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.module-header h3 {
  margin: 0;
}

.module-score {
  font-weight: 600;
  font-size: 15px;
  color: #0F172A;
  white-space: nowrap;
}

/* ---- MODULE BARS ---- */

.module-bar-bg {
  width: 100%;
  height: 8px;
  background: #E5E7EB;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 8px;
}

.module-bar {
  height: 100%;
  border-radius: 4px;
  transition: width 0.6s ease;
  background: #2563EB;
}

.module-status {
  font-size: 13px;
  color: #64748B;
  margin: 0;
}

/* ---- AI REPORT ---- */

.ai-section {
  border-left: 4px solid #2563EB;
}

.ai-section.critical {
  border-left-color: #EF4444;
}

.ai-section.opportunities {
  border-left-color: #22C55E;
}

.ai-section.urgency {
  border-left-color: #F59E0B;
  background: #FFF7ED;
}

.ai-section ul,
.ai-section ol {
  margin: 8px 0 0 0;
  padding-left: 20px;
  color: #475569;
  font-size: 14px;
  line-height: 1.7;
}

.ai-section p {
  color: #475569;
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}