/* Report page — PDF-style document aesthetic */

.report-body {
  background: #f8f7f4;
  color: #1a1a2e;
  font-family: 'DM Sans', system-ui, sans-serif;
  min-height: 100vh;
}

/* Header */
.report-header {
  background: #0B1426;
  color: #E8ECF4;
  padding: 1.25rem 0;
}

.report-header-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.report-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand-mark {
  color: #00D4AA;
  font-size: 1.3rem;
  font-weight: 700;
}

.brand-name {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
}

.report-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
}

.report-label {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #00D4AA;
  letter-spacing: 0.04em;
}

.report-date {
  font-size: 0.8rem;
  color: #8B95AD;
}

/* Score Hero */
.report-score-hero {
  background: #0B1426;
  padding: 4rem 2rem 5rem;
}

.score-container {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;
  align-items: center;
}

.score-circle {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: conic-gradient(var(--color) var(--pct), rgba(255,255,255,0.08) var(--pct));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.score-inner {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: #0B1426;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.score-number {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.04em;
}

.score-label {
  font-size: 1rem;
  color: #8B95AD;
  margin-top: 0.2rem;
}

.score-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.risk-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--rc);
  padding: 0.35rem 0.9rem;
  background: color-mix(in srgb, var(--rc) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--rc) 30%, transparent);
  border-radius: 100px;
  width: fit-content;
}

.risk-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rc);
  flex-shrink: 0;
}

.score-title {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.score-desc {
  font-size: 1rem;
  color: #8B95AD;
  line-height: 1.6;
  max-width: 460px;
}

.score-bar-wrap {
  margin-top: 0.5rem;
}

.score-bar-track {
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 0.4rem;
}

.score-bar-fill {
  height: 100%;
  border-radius: 100px;
  transition: width 1s ease;
}

.score-bar-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  color: #5A6580;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* Context Strip */
.context-strip {
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.context-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.context-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0 2rem;
  flex: 1;
  min-width: 160px;
}

.ctx-divider {
  width: 1px;
  height: 36px;
  background: rgba(0,0,0,0.08);
  flex-shrink: 0;
}

.ctx-label {
  font-size: 0.72rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.ctx-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a1a2e;
  line-height: 1.4;
}

/* Report Sections */
.report-section {
  padding: 4rem 2rem;
}

.section-dark {
  background: #0B1426;
  color: #E8ECF4;
}

.section-accent {
  background: #f0f9f6;
}

.section-inner {
  max-width: 960px;
  margin: 0 auto;
}

.section-tag {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #00D4AA;
  margin-bottom: 1rem;
}

.section-dark .section-tag {
  color: #00A888;
}

.section-title {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: inherit;
}

.section-dark .section-title {
  color: #fff;
}

/* Frameworks */
.frameworks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}

.fw-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 10px;
  padding: 1.25rem;
  transition: border-color 0.2s;
}

.fw-card:hover {
  border-color: rgba(0,212,170,0.3);
}

.fw-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.fw-name {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a1a2e;
}

.fw-status {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  letter-spacing: 0.04em;
}

.fw-applicable {
  background: #fff0f0;
  color: #c0392b;
}

.fw-recommended {
  background: #f0f9f6;
  color: #00A888;
}

.fw-detail {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.6;
}

/* Executive Summary */
.summary-text {
  font-size: 1rem;
  color: #8B95AD;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 640px;
}

.summary-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.summary-stat {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
}

.ss-number {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 0.5rem;
}

.ss-label {
  font-size: 0.8rem;
  color: #5A6580;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Gap Cards */
.gaps-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.gap-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px;
  padding: 1.75rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.gap-card:hover {
  border-color: rgba(0,212,170,0.3);
  box-shadow: 0 4px 20px rgba(0,212,170,0.06);
}

.gap-number {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #00D4AA;
  opacity: 0.4;
  min-width: 48px;
  line-height: 1;
  padding-top: 2px;
}

.gap-content {
  flex: 1;
}

.gap-title {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.gap-desc {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.65;
  margin-bottom: 1rem;
}

.gap-rec {
  background: #f0f9f6;
  border-left: 3px solid #00D4AA;
  padding: 0.75rem 1rem;
  border-radius: 0 8px 8px 0;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.rec-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: #00A888;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.rec-text {
  font-size: 0.85rem;
  color: #2a6b5a;
  line-height: 1.5;
}

/* Steps */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.step-item:last-child {
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.step-num {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #00D4AA;
  min-width: 44px;
  line-height: 1;
  padding-top: 2px;
}

.step-body {
  flex: 1;
}

.step-priority {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.step-priority.immediate { background: #fff0f0; color: #c0392b; }
.step-priority.urgent    { background: #fff3e0; color: #b45309; }
.step-priority.this_week { background: #fff8e1; color: #8b5e00; }
.step-priority.this_month { background: #f0f9f6; color: #00A888; }
.step-priority.foundation { background: #e8f4fd; color: #1565c0; }
.step-priority.recommended { background: #f3f4f6; color: #4b5563; }

.step-action {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.step-reason {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.65;
}

/* CTA */
.report-cta {
  background: #0B1426;
  padding: 5rem 2rem;
}

.cta-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}

.cta-tag {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #00D4AA;
  margin-bottom: 1rem;
}

.cta-title {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.cta-sub {
  font-size: 0.95rem;
  color: #8B95AD;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 500px;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.cta-btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 0.9rem 1.75rem;
  background: #00D4AA;
  color: #0B1426;
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
}

.cta-btn-primary:hover {
  background: #00f0c0;
}

.cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 0.9rem 1.75rem;
  background: transparent;
  color: #8B95AD;
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.cta-btn-secondary:hover {
  border-color: rgba(255,255,255,0.3);
  color: #E8ECF4;
}

.cta-note {
  font-size: 0.82rem;
  color: #5A6580;
  line-height: 1.6;
  max-width: 460px;
}

.cta-divider {
  width: 1px;
  height: 120px;
  background: rgba(255,255,255,0.06);
  flex-shrink: 0;
}

.contact-card {
  text-align: center;
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  min-width: 200px;
}

.contact-card .brand-name {
  color: #fff;
}

.contact-tagline {
  font-size: 0.85rem;
  color: #5A6580;
  margin: 0.75rem 0;
  line-height: 1.5;
}

.contact-email {
  display: block;
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #00D4AA;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-email:hover {
  color: #00f0c0;
}

/* Report Footer */
.report-footer {
  background: #f0efe9;
  border-top: 1px solid rgba(0,0,0,0.06);
  padding: 1rem 0;
}

.report-footer-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: #888;
}

/* Lead form */
.lead-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.lead-field {
  display: flex;
  flex-direction: column;
}

.lead-input {
  width: 100%;
  padding: 0.85rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--fg);
  font-size: 0.95rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.lead-input::placeholder {
  color: var(--fg-dim);
}

.lead-input:focus {
  border-color: var(--border-accent);
  background: var(--bg-elevated);
}
.assessment-hero {
  padding: 8rem 2rem 4rem;
  background: linear-gradient(180deg, var(--bg) 0%, #0D1830 100%);
  position: relative;
  overflow: hidden;
}

.assessment-hero::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

.assessment-hero-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.assessment-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.4rem 1.1rem;
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.assessment-hero h1 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  color: var(--fg);
}

.assessment-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.assessment-meta {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--fg-muted);
  padding: 0.4rem 0.9rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
}

.meta-pill svg { flex-shrink: 0; }

/* Quiz Container */
.quiz-section {
  padding: 3rem 2rem 5rem;
  background: var(--bg);
}

.quiz-container {
  max-width: 620px;
  margin: 0 auto;
}

.quiz-progress {
  margin-bottom: 2rem;
}

.progress-bar {
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.progress-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 100px;
  transition: width 0.4s ease;
  width: 0%;
}

.progress-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 500;
}

.quiz-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
  margin-bottom: 1.5rem;
  min-height: 280px;
}

.q-number {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.q-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.q-sub {
  font-size: 0.88rem;
  color: var(--fg-muted);
  margin-bottom: 1.5rem;
}

.q-options {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.option-btn {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.85rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--fg-muted);
  font-size: 0.92rem;
  font-family: var(--font-body);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.option-btn:hover {
  border-color: var(--border-accent);
  color: var(--fg);
  background: var(--bg-elevated);
}

.option-btn.selected {
  border-color: var(--accent);
  background: var(--accent-glow);
  color: var(--accent);
}

.quiz-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1.2rem;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--fg-muted);
  font-size: 0.88rem;
  font-family: var(--font-body);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.btn-back:hover {
  border-color: var(--fg-muted);
  color: var(--fg);
}

.btn-next {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s;
  margin-left: auto;
}

.btn-next:hover:not(:disabled) {
  background: #00f0c0;
}

.btn-next:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* Report Preview */
.report-preview {
  padding: 4rem 2rem;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
}

.report-preview-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.preview-header h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  color: var(--fg);
}

.preview-header p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  margin-bottom: 2.5rem;
}

.preview-list {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.preview-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.preview-icon {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.preview-item h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.25rem;
}

.preview-item p {
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* Print styles */
@media print {
  .report-cta .cta-actions { gap: 0.5rem; }
  .cta-btn-primary, .cta-btn-secondary { color: #0B1426 !important; }
  .report-score-hero { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  .score-circle { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
}

@media (max-width: 768px) {
  .score-container { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .score-circle { margin: 0 auto; }
  .score-bar-wrap { max-width: 300px; margin: 0 auto; }
  .summary-stats { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { grid-template-columns: 1fr; gap: 2rem; }
  .cta-divider { display: none; }
  .context-inner { gap: 1rem; }
  .ctx-divider { display: none; }
  .assessment-hero h1 { font-size: 2rem; }
  .quiz-card { padding: 1.75rem; }
  .report-header-inner { flex-direction: column; gap: 0.5rem; align-items: flex-start; }
  .report-meta { align-items: flex-start; }
}