:root {
  --bg: #f5ede0;
  --surface: #ffffff;
  --teal: #1a4a4a;
  --teal-light: #2a6666;
  --amber: #c86d2a;
  --amber-light: #e08a40;
  --sand-dark: #d9cec0;
  --text: #1a1a1a;
  --text-mid: #4a4a4a;
  --text-light: #7a7a7a;
  --ready: #2d7a4f;
  --action: #b85c1a;
  --radius: 12px;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Navigation ── */
.nav {
  padding: 20px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-inner {
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--teal);
}
.nav-tagline {
  font-size: 13px;
  color: var(--text-light);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── Hero ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding: 64px 48px 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 24px;
}
.hero-lede {
  font-size: 17px;
  color: var(--text-mid);
  max-width: 440px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-stats {
  display: flex;
  gap: 40px;
}
.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 12px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Dashboard card */
.dashboard-card {
  background: var(--surface);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 40px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.06);
}
.dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.dash-title {
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
}
.dash-badge {
  background: var(--ready);
  color: white;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
}
.dash-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.dash-label {
  font-size: 12px;
  color: var(--text-light);
  white-space: nowrap;
  width: 100px;
}
.readiness-bar {
  flex: 1;
  height: 6px;
  background: #e8e0d5;
  border-radius: 4px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  background: var(--teal);
  border-radius: 4px;
}
.dash-score {
  font-weight: 600;
  font-size: 13px;
  color: var(--teal);
  width: 36px;
  text-align: right;
}
.dash-properties {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.prop {
  display: grid;
  grid-template-columns: 10px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 8px;
  background: var(--bg);
}
.prop-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ready);
}
.prop-ready .prop-dot { background: var(--ready); }
.prop-action .prop-dot { background: var(--amber); }
.prop-name {
  font-size: 12px;
  font-weight: 500;
  color: var(--text);
}
.prop-status {
  font-size: 11px;
  color: var(--text-light);
}
.dash-vendors { margin-top: 4px; }
.vendors-label {
  font-size: 11px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 8px;
}
.vendor-chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.vendor-chip {
  background: var(--teal);
  color: white;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 500;
}

/* ── Workflow ── */
.workflow {
  background: var(--teal);
  color: white;
  padding: 80px 48px;
}
.section-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber-light);
  font-weight: 600;
  margin-bottom: 16px;
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.2;
  color: white;
  margin-bottom: 56px;
}
.workflow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.step-num {
  font-family: var(--font-display);
  font-size: 56px;
  color: rgba(255,255,255,0.15);
  line-height: 1;
  margin-bottom: 20px;
}
.step h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: white;
}
.step p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
}

/* ── Readiness Score ── */
.readiness-section {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  padding: 80px 48px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.readiness-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.score-ring-wrap {
  position: relative;
  width: 160px;
  height: 160px;
}
.score-ring {
  width: 100%;
  height: 100%;
}
.score-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.score-big {
  font-family: var(--font-display);
  font-size: 44px;
  color: var(--teal);
  line-height: 1;
}
.score-sub {
  font-size: 13px;
  color: var(--text-light);
}
.score-breakdown {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.breakdown-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-mid);
  padding: 8px 12px;
  background: var(--surface);
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.06);
}
.break-val { color: var(--text-mid); }
.break-val.complete { color: var(--ready); font-weight: 600; }
.readiness-text .section-heading { color: var(--text); }
.section-body {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 480px;
}
.readiness-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag {
  background: var(--teal);
  color: white;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 500;
}

/* ── Closing ── */
.closing {
  background: var(--bg);
  padding: 80px 48px;
  text-align: center;
}
.closing-inner {
  max-width: 640px;
  margin: 0 auto;
}
.closing-quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 32px);
  color: var(--text);
  line-height: 1.4;
  font-style: italic;
  margin-bottom: 32px;
}
.closing-pill {
  display: inline-block;
  background: var(--teal);
  color: white;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 24px;
  border-radius: 40px;
}

/* ── Footer ── */
.footer {
  background: var(--teal);
  padding: 32px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 18px;
  color: white;
}
.footer-desc {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}
.footer-meta span {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .hero { grid-template-columns: 1fr; padding: 40px 24px 60px; gap: 40px; }
  .hero-headline { font-size: 36px; }
  .workflow { padding: 60px 24px; }
  .workflow-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .readiness-section { grid-template-columns: 1fr; gap: 40px; padding: 60px 24px; }
  .readiness-visual { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .closing { padding: 60px 24px; }
  .footer { flex-direction: column; gap: 12px; text-align: center; }
  .auth-form { padding: 40px 24px !important; max-width: 100% !important; }
}
