:root {
  --ink: #13201d;
  --muted: #5f706a;
  --line: #d6e5df;
  --paper: #f4fbf6;
  --panel: #ffffff;
  --teal: #0c8f7f;
  --teal-dark: #063f3b;
  --mint: #d8f8ed;
  --gold: #f2b84b;
  --coral: #ee775c;
  --charcoal: #071312;
  --cyan: #78f4df;
  --shadow: 0 22px 60px rgba(8, 37, 32, 0.14);
  --shadow-soft: 0 12px 34px rgba(8, 37, 32, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 14% 8%, rgba(120, 244, 223, 0.22), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(242, 184, 75, 0.14), transparent 30%),
    linear-gradient(180deg, #f7fcf9 0%, var(--paper) 42%, #edf7f1 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(12, 143, 127, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12, 143, 127, 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 70%);
}

button,
input,
select,
textarea {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(247, 252, 249, 0.84);
  border-bottom: 1px solid rgba(214, 229, 223, 0.8);
  backdrop-filter: blur(18px);
}

.archive-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 14px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid rgba(214, 229, 223, 0.9);
  background:
    linear-gradient(90deg, rgba(216, 248, 237, 0.92), rgba(251, 253, 250, 0.94));
  box-shadow: 0 10px 28px rgba(8, 37, 32, 0.06);
}

.archive-panel span {
  display: block;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.archive-panel strong {
  display: block;
  color: var(--ink);
  font-size: 20px;
}

.archive-panel p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.archive-actions {
  display: grid;
  grid-template-columns: minmax(170px, 220px) repeat(3, auto);
  gap: 8px;
  align-items: center;
}

.archive-actions input {
  height: 42px;
  background: #fff;
}

.archive-status {
  grid-column: 1 / -1;
  margin: -8px 0 0;
  color: var(--teal-dark) !important;
}

body.archive-locked main,
body.archive-locked .site-footer {
  display: none;
}

.archive-panel.archive-gate {
  width: min(760px, calc(100% - 36px));
  margin: 52px auto;
  padding: 30px;
  border: 1px solid rgba(214, 229, 223, 0.9);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.archive-panel.archive-gate strong {
  font-size: clamp(26px, 4vw, 42px);
}

.archive-panel.archive-gate .archive-actions {
  grid-template-columns: minmax(0, 1fr) auto auto;
}

.archive-reports-panel {
  width: min(1180px, calc(100% - 36px));
  margin: 26px auto 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.archive-report-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.archive-report-card {
  min-height: 160px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbf9;
}

.archive-report-card.ready {
  border-color: rgba(15, 118, 110, 0.28);
  background: linear-gradient(135deg, rgba(232, 250, 243, 0.95), #fff);
}

.archive-report-card span {
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.archive-report-card.empty span {
  color: var(--muted);
}

.archive-report-card p {
  color: var(--muted);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  box-shadow: 0 0 0 4px rgba(12, 143, 127, 0.1), 0 14px 28px rgba(6, 63, 59, 0.18);
  font-size: 13px;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a:hover,
.header-action:hover {
  color: var(--teal);
}

.header-action {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--teal);
  font-weight: 900;
}

.text-link.light {
  color: #9ee8d9;
}

.hero {
  position: relative;
  min-height: 690px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(3, 18, 17, 0.9) 0%, rgba(5, 38, 35, 0.8) 38%, rgba(5, 38, 35, 0.36) 72%, rgba(5, 38, 35, 0.1) 100%),
    linear-gradient(0deg, rgba(3, 18, 17, 0.86), rgba(3, 18, 17, 0.08) 44%);
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(158, 232, 217, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(158, 232, 217, 0.08) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.7;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(740px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 92px);
  padding: 90px 0 120px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #9ee8d9;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(52px, 8vw, 96px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 5vw, 56px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
}

.hero-actions,
.form-actions,
.pitch-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
}

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--teal), #12a58f);
  box-shadow: 0 14px 34px rgba(12, 143, 127, 0.26);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  border-color: var(--line);
}

.button.small {
  min-height: 42px;
  padding-inline: 14px;
  font-size: 14px;
}

section {
  padding: 92px clamp(18px, 5vw, 70px);
}

.page-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 34px;
  align-items: end;
  min-height: 430px;
  padding-top: 96px;
  color: #fff;
  background:
    radial-gradient(circle at 72% 22%, rgba(120, 244, 223, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(5, 20, 19, 0.97), rgba(12, 143, 127, 0.86)),
    url("assets/hero-venture-credibility.png") center / cover;
}

.page-hero > * {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 920px;
  font-size: clamp(46px, 7vw, 76px);
}

.page-hero .hero-copy {
  max-width: 760px;
}

.student-hero {
  background:
    radial-gradient(circle at 76% 22%, rgba(120, 244, 223, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(5, 39, 36, 0.98), rgba(12, 143, 127, 0.72), rgba(238, 119, 92, 0.34)),
    url("assets/hero-venture-credibility.png") center / cover;
}

.investor-hero {
  background:
    radial-gradient(circle at 76% 22%, rgba(120, 244, 223, 0.2), transparent 34%),
    linear-gradient(135deg, rgba(5, 20, 19, 0.98), rgba(12, 143, 127, 0.66)),
    url("assets/hero-venture-credibility.png") center / cover;
}

.profile-hero,
.matching-hero {
  background:
    radial-gradient(circle at 76% 22%, rgba(242, 184, 75, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(5, 20, 19, 0.98), rgba(12, 143, 127, 0.56), rgba(242, 184, 75, 0.22)),
    url("assets/hero-venture-credibility.png") center / cover;
}

.hero-quote {
  width: min(580px, 100%);
  margin: 24px 0 0;
  padding: 18px 20px;
  border: 1px solid rgba(158, 232, 217, 0.28);
  border-left: 3px solid var(--cyan);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.hero-quote blockquote {
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 17px;
  font-weight: 800;
}

.hero-quote figcaption {
  margin-top: 8px;
  color: #9ee8d9;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-quote-dark {
  background: rgba(5, 39, 36, 0.42);
}

.hero-metrics,
.preference-card {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.hero-workspace {
  display: grid;
  gap: 18px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08)),
    rgba(5, 39, 36, 0.28);
  backdrop-filter: blur(18px);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
}

.hero-workspace p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.workspace-topline {
  display: grid;
  gap: 6px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.workspace-topline span {
  color: #9ee8d9;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.workspace-topline strong {
  color: #fff;
  font-size: 30px;
  line-height: 1.1;
}

.workspace-checklist {
  display: grid;
  gap: 8px;
}

.workspace-checklist span {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 800;
}

.workspace-checklist span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.workspace-score-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.workspace-score-row div,
.mini-score-card,
.flow-status-grid div {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.workspace-score-row div {
  display: grid;
  gap: 6px;
  padding: 14px;
}

.workspace-score-row span,
.mini-score-card span,
.flow-status-grid span,
.workspace-empty {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.workspace-score-row strong {
  color: #fff;
  font-size: 22px;
  line-height: 1.1;
}

.workspace-mini-scores {
  display: grid;
  gap: 10px;
}

.mini-score-card {
  display: grid;
  gap: 10px;
  padding: 12px;
}

.mini-score-card div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.mini-score-card strong {
  color: #fff;
  white-space: nowrap;
}

.mini-score-card .meter {
  height: 8px;
  background: rgba(255, 255, 255, 0.18);
}

.mini-score-card .meter span {
  background: #9ee8d9;
}

.workspace-empty {
  margin: 0;
  padding: 12px;
  border: 1px dashed rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  text-transform: none;
}

.flow-status-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.flow-status-grid div {
  display: grid;
  gap: 8px;
  padding: 14px;
  color: #fff;
}

.flow-status-grid div[data-status="done"] {
  border-color: rgba(158, 232, 217, 0.6);
  background: rgba(15, 118, 110, 0.28);
}

.flow-status-grid div[data-status="current"] {
  border-color: rgba(242, 184, 75, 0.72);
  background: rgba(242, 184, 75, 0.18);
}

.flow-status-grid div[data-status="locked"] {
  opacity: 0.62;
}

.flow-status-grid strong {
  font-size: 15px;
  line-height: 1.2;
}

.hero-metrics div {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 14px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-metrics div:last-child {
  border-bottom: 0;
}

.hero-metrics strong {
  font-size: 42px;
  line-height: 1;
}

.hero-metrics span,
.preference-card h3 {
  color: rgba(255, 255, 255, 0.84);
}

.compact-score {
  min-height: 260px;
}

.hero-match {
  width: 150px;
  height: 150px;
  justify-self: end;
  font-size: 46px;
}

.section-band {
  background:
    radial-gradient(circle at 10% 8%, rgba(120, 244, 223, 0.14), transparent 26%),
    linear-gradient(180deg, rgba(238, 248, 242, 0.94), rgba(229, 244, 237, 0.94));
}

.section-heading {
  max-width: 980px;
  margin: 0 auto 34px;
}

.section-heading.split {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 26px;
  max-width: 1180px;
}

.section-heading.split > p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
}

.problem-grid,
.workflow,
.score-dimensions,
.coach-grid,
.profile-layout,
.dashboard-layout,
.match-layout {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.section-heading.centered {
  width: min(980px, 100%);
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered h2 {
  margin-inline: auto;
}

.section-heading.centered > p:last-child {
  max-width: 660px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 18px;
}

.interface-section {
  padding-top: 110px;
}

.interface-grid {
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  width: min(1180px, 100%);
  gap: 24px;
}

.interface-grid .problem-panel {
  min-height: 380px;
  padding: 34px;
}

.interface-grid .problem-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--teal), var(--cyan));
}

.interface-grid .problem-panel:nth-child(2)::before {
  background: linear-gradient(90deg, var(--gold), var(--teal));
}

.interface-grid .problem-panel:nth-child(3)::before {
  background: linear-gradient(90deg, var(--cyan), var(--gold));
}

.interface-grid .panel-icon {
  width: 58px;
  height: 58px;
}

.interface-grid h3 {
  margin-top: 28px;
  font-size: 28px;
}

.interface-grid p {
  max-width: 520px;
  font-size: 18px;
  line-height: 1.6;
}

.demo-video-section {
  padding-top: 96px;
  padding-bottom: 110px;
  background: #fbfdfb;
}

.demo-video-frame {
  width: min(1080px, 100%);
  margin: 0 auto;
  border: 1px solid rgba(214, 229, 223, 0.95);
  border-radius: 8px;
  overflow: hidden;
  background: #071412;
  box-shadow: var(--shadow);
}

.demo-video-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #071412;
}

.instructor-hero {
  background:
    linear-gradient(115deg, rgba(22, 99, 84, 0.92), rgba(13, 23, 20, 0.74)),
    url("assets/hero-venture-credibility.png") center/cover;
  color: #fff;
}

.instructor-section {
  padding-top: 72px;
}

.instructor-gate,
.instructor-workspace {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.instructor-gate {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 32px;
  align-items: center;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.instructor-gate h2,
.instructor-toolbar h2 {
  margin: 8px 0 10px;
  color: var(--ink);
}

.instructor-access-form {
  display: grid;
  gap: 14px;
}

.instructor-access-form input,
.instructor-toolbar input {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  background: #fff;
}

.instructor-toolbar {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(420px, 1fr);
  gap: 34px;
  align-items: stretch;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.instructor-toolbar-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.instructor-toolbar-copy h2 {
  max-width: 620px;
  font-size: clamp(42px, 5vw, 78px);
  line-height: 0.96;
}

.instructor-toolbar-copy p:not(.eyebrow) {
  max-width: 520px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.instructor-open-card {
  display: grid;
  gap: 14px;
  align-content: center;
  padding: 22px;
  border: 1px solid rgba(22, 99, 84, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(239, 250, 246, 0.82), rgba(255, 255, 255, 0.96));
}

.instructor-open-card label {
  display: grid;
  gap: 8px;
}

.instructor-open-card label span {
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.instructor-open-card input {
  min-height: 64px;
  border: 2px solid rgba(22, 99, 84, 0.32);
  box-shadow: 0 0 0 5px rgba(121, 224, 205, 0.16);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.instructor-open-card input:focus {
  border-color: var(--teal);
  outline: none;
  box-shadow: 0 0 0 6px rgba(121, 224, 205, 0.26);
}

.instructor-open-card .button {
  width: 100%;
  min-height: 58px;
  font-size: 17px;
}

.instructor-open-card .archive-status {
  min-height: 22px;
  margin: 0;
  color: var(--teal-dark);
  font-weight: 800;
}

.instructor-summary-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 18px 0 42px;
}

.instructor-summary-grid article,
.empty-report-card {
  min-height: 126px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(24, 58, 50, 0.06);
}

.instructor-summary-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.instructor-summary-grid strong {
  display: block;
  color: var(--ink);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.1;
}

.instructor-summary-grid p,
.empty-report-card p {
  margin: 8px 0 0;
  color: var(--muted);
}

.instructor-report-block {
  margin-top: 48px;
}

.instructor-feedback-slot {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(45, 71, 65, 0.14);
}

.instructor-feedback-thread {
  display: grid;
  gap: 10px;
}

.instructor-feedback-note {
  padding: 12px 14px;
  border: 1px solid rgba(219, 165, 62, 0.45);
  border-radius: 8px;
  background: #fff8e6;
}

.instructor-feedback-note strong {
  display: block;
  margin-bottom: 6px;
  color: #71500f;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.instructor-feedback-note p {
  margin: 0;
  color: var(--ink);
}

.instructor-feedback-note span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
}

.feedback-toggle {
  justify-self: start;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(22, 99, 84, 0.22);
  border-radius: 8px;
  color: var(--teal-dark);
  font-weight: 800;
  background: #eff8f5;
  cursor: pointer;
}

.instructor-feedback-form {
  display: grid;
  gap: 10px;
}

.instructor-feedback-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  resize: vertical;
}

.instructor-feedback-form > div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}


.problem-panel,
.workflow article,
.diagnosis-panel,
.score-panel,
.coach-panel,
.project-profile,
.brief-panel,
.filters,
.project-card,
.match-card,
.feedback-panel {
  position: relative;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.problem-panel {
  position: relative;
  overflow: hidden;
  min-height: 245px;
  padding: 28px;
}

.problem-panel::after,
.feature-card::after,
.directory-card::after,
.upload-panel::after,
.question-item::after,
.feedback-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(120, 244, 223, 0.12), transparent 42%);
  opacity: 0;
  transition: opacity 160ms ease;
}

.problem-panel:hover::after,
.feature-card:hover::after,
.directory-card:hover::after,
.upload-panel:hover::after,
.question-item:hover::after,
.feedback-panel:hover::after {
  opacity: 1;
}

.problem-panel p,
.workflow p,
.diagnosis-panel p,
.score-panel p,
.coach-panel p,
.project-profile p,
.brief-panel p,
.match-card p,
.feedback-panel p {
  color: var(--muted);
}

.problem-panel.solution {
  background:
    radial-gradient(circle at 20% 16%, rgba(120, 244, 223, 0.18), transparent 34%),
    var(--charcoal);
  color: #fff;
  border-color: transparent;
}

.problem-panel.solution p {
  color: rgba(255, 255, 255, 0.74);
}

.panel-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  border-radius: 8px;
  color: var(--teal);
  background: var(--mint);
}

.panel-icon svg,
.search-box svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.workflow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.feature-grid.two-column {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-card {
  position: relative;
  overflow: hidden;
  display: block;
  min-height: 285px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
  transition: transform 160ms ease, border-color 160ms ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 118, 110, 0.42);
}

.feature-card p {
  color: var(--muted);
}

.feature-card.admin-card {
  background:
    radial-gradient(circle at 18% 12%, rgba(120, 244, 223, 0.16), transparent 30%),
    var(--charcoal);
  color: #fff;
  border-color: transparent;
}

.feature-card.admin-card p {
  color: rgba(255, 255, 255, 0.74);
}

.screening-flow-grid {
  position: relative;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.screening-flow-grid::before {
  content: "";
  position: absolute;
  left: 11%;
  right: 11%;
  top: 62px;
  height: 2px;
  background:
    linear-gradient(90deg, transparent, rgba(12, 143, 127, 0.45), rgba(120, 244, 223, 0.75), rgba(12, 143, 127, 0.45), transparent);
}

.screening-flow-card {
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  gap: 14px;
  min-height: 360px;
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 253, 250, 0.88)),
    radial-gradient(circle at 16% 18%, rgba(120, 244, 223, 0.16), transparent 34%);
}

.screening-flow-card.current {
  border-color: rgba(12, 143, 127, 0.62);
  box-shadow: 0 24px 70px rgba(12, 143, 127, 0.18);
}

.screening-flow-card .step-number {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  margin: 0 0 18px;
  border: 1px solid rgba(238, 119, 92, 0.28);
  border-radius: 8px;
  background: rgba(238, 119, 92, 0.12);
  color: var(--coral);
  font-size: 28px;
  line-height: 1;
}

.screening-flow-card.current .step-number {
  border-color: rgba(120, 244, 223, 0.54);
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  color: #fff;
  box-shadow: 0 16px 38px rgba(12, 143, 127, 0.25);
}

.flow-card-kicker,
.flow-card-action {
  width: fit-content;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.flow-card-kicker {
  padding: 6px 9px;
  color: var(--teal-dark);
  background: rgba(120, 244, 223, 0.18);
}

.screening-flow-card h3 {
  margin: 0;
  font-size: 26px;
}

.screening-flow-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
}

.flow-card-action {
  align-self: end;
  margin-top: 8px;
  padding-top: 14px;
  color: var(--teal);
  border-top: 1px solid var(--line);
}

.directory-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  width: min(1320px, 100%);
  margin: 0 auto;
}

.directory-card {
  position: relative;
  overflow: hidden;
  display: block;
  min-height: 320px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
  transition: transform 160ms ease, border-color 160ms ease;
}

.directory-card:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 118, 110, 0.42);
}

.directory-card.active {
  color: #fff;
  background:
    radial-gradient(circle at 20% 16%, rgba(120, 244, 223, 0.18), transparent 32%),
    linear-gradient(135deg, var(--teal-dark), var(--teal));
  border-color: transparent;
}

.directory-card.active p {
  color: rgba(255, 255, 255, 0.78);
}

.directory-card.placeholder {
  background: #f4f8f5;
}

.directory-card p {
  color: var(--muted);
}

.empty-state {
  width: min(900px, 100%);
  margin: 0 auto;
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.empty-state p {
  color: var(--muted);
}

.compact-page-hero {
  min-height: 330px;
}

.screening-hero {
  min-height: 420px;
}

.workflow article {
  min-height: 240px;
  padding: 26px;
}

.step-number {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--coral);
  font-size: 34px;
  font-weight: 900;
}

.portal-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 18px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.upload-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 18px;
  align-items: center;
  width: min(1180px, 100%);
  margin: 0 auto 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.upload-panel h3 {
  font-size: 24px;
}

.upload-panel p {
  color: var(--muted);
}

.upload-actions {
  display: grid;
  gap: 10px;
}

.upload-actions input[type="file"] {
  height: auto;
  padding: 12px;
}

.evidence-upload-panel {
  align-items: start;
}

.evidence-note-label {
  color: var(--muted);
}

.evidence-note-label textarea {
  min-height: 120px;
}

.evidence-file-list {
  display: grid;
  grid-column: 1 / -1;
  gap: 8px;
  padding-top: 4px;
}

.evidence-file-item {
  display: grid;
  gap: 3px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcf9;
}

.evidence-file-item strong {
  color: var(--ink);
  font-size: 13px;
  overflow-wrap: anywhere;
}

.evidence-file-item span {
  color: var(--muted);
  font-size: 12px;
}

.form-steps,
.venture-form {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.form-steps {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 12px;
}

.step-tab {
  min-height: 44px;
  padding: 0 14px;
  border: 0;
  border-radius: 8px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-weight: 800;
}

.step-tab.active {
  color: #fff;
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  box-shadow: 0 12px 28px rgba(12, 143, 127, 0.2);
}

.venture-form {
  padding: 28px;
}

.form-page {
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-page.active {
  display: grid;
}

.form-page h3 {
  grid-column: 1 / -1;
  margin-bottom: 4px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.field-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.field-label-text {
  min-width: 0;
}

.field-help {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 1px solid rgba(12, 143, 127, 0.28);
  border-radius: 50%;
  color: var(--teal);
  background: rgba(120, 244, 223, 0.16);
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.field-help:hover,
.field-help[aria-expanded="true"] {
  color: #fff;
  background: var(--teal);
  border-color: var(--teal);
}

.field-explanation {
  margin: 0;
  padding: 10px 12px;
  border-left: 3px solid var(--teal);
  border-radius: 8px;
  background: rgba(120, 244, 223, 0.12);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(251, 253, 250, 0.86);
  color: var(--ink);
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(120, 244, 223, 0.42);
  border-color: rgba(12, 143, 127, 0.58);
  box-shadow: 0 0 0 4px rgba(12, 143, 127, 0.08);
}

input,
select {
  height: 44px;
  padding: 0 12px;
}

textarea {
  min-height: 108px;
  resize: vertical;
  padding: 12px;
}

.builder-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: 18px;
  width: min(1180px, 100%);
  margin: 0 auto 18px;
}

.diagnosis-panel,
.score-panel,
.coach-panel {
  padding: 28px;
}

.panel-topline,
.project-head,
.project-card-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 18px;
}

.status-pill {
  white-space: nowrap;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--teal-dark);
  background: var(--mint);
  font-size: 12px;
  font-weight: 900;
}

.recommendation-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.recommendation-list div,
.evidence-grid div {
  display: grid;
  gap: 6px;
  padding: 14px;
  border-radius: 8px;
  background: #f4f8f5;
}

.recommendation-list strong,
.evidence-grid strong {
  color: var(--teal-dark);
  font-size: 13px;
}

.recommendation-list span,
.evidence-grid span {
  color: var(--muted);
  font-size: 14px;
}

.score-panel {
  display: grid;
  place-items: center;
  text-align: center;
}

.score-ring {
  --angle: calc(var(--score) * 3.6deg);
  display: grid;
  place-items: center;
  width: 164px;
  height: 164px;
  margin-bottom: 18px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #fff 0 58%, transparent 59%),
    conic-gradient(var(--teal) 0 var(--angle), #e7eee9 0);
}

.score-ring span {
  font-size: 48px;
  font-weight: 900;
}

.score-ring small {
  margin-top: 52px;
  color: var(--muted);
  position: absolute;
}

.score-dimensions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.dimension {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.dimension-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-weight: 900;
}

.meter {
  height: 8px;
  margin: 14px 0 10px;
  border-radius: 999px;
  background: #e7eee9;
  overflow: hidden;
}

.meter span {
  display: block;
  height: 100%;
  width: var(--value);
  border-radius: inherit;
  background: var(--teal);
}

.dimension p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.dimension .score-note {
  color: var(--teal-dark);
  font-weight: 900;
}

.coach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.chip {
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: #fff;
  cursor: pointer;
  font-weight: 800;
}

.chip.active {
  color: #fff;
  background: var(--charcoal);
}

.qa-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.profile-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 18px;
}

.project-profile,
.brief-panel,
.filters,
.project-card,
.match-card,
.feedback-panel {
  padding: 26px;
}

.project-field {
  margin: 0 0 6px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
}

.project-head h3 {
  font-size: 34px;
}

.project-score,
.match-score {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 8px;
  color: #fff;
  background: var(--teal-dark);
  font-size: 28px;
  font-weight: 900;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0;
}

.tag-row span {
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
}

.tag-row.compact {
  margin-bottom: 0;
}

.evidence-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.brief-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
}

.brief-actions button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  font-weight: 800;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  width: min(360px, 100%);
  height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
}

.search-box input {
  height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  outline: 0;
}

.dashboard-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.filters {
  position: sticky;
  top: 86px;
  display: grid;
  gap: 16px;
}

.filters h3 {
  margin-bottom: 0;
}

#scoreOutput {
  width: max-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--teal-dark);
  font-weight: 900;
}

.project-list {
  display: grid;
  gap: 14px;
}

.project-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 118px;
  gap: 20px;
}

.project-card h3 {
  font-size: 24px;
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.project-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.project-actions button {
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.project-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 10px;
  border-radius: 8px;
  color: #fff;
  background: var(--teal);
  font-size: 13px;
  font-weight: 800;
}

.card-score {
  align-self: start;
  display: grid;
  place-items: center;
  min-height: 92px;
  border-radius: 8px;
  background: #f4f8f5;
  color: var(--teal-dark);
  text-align: center;
  font-weight: 900;
}

.card-score strong {
  font-size: 30px;
  line-height: 1;
}

.match-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
}

.home-signal-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(620px, 100%);
  margin-top: 20px;
}

.home-signal-strip div,
.command-metrics div {
  padding: 14px;
  border: 1px solid rgba(214, 229, 223, 0.36);
  border-radius: 8px;
  background: rgba(251, 253, 250, 0.16);
  backdrop-filter: blur(14px);
}

.home-signal-strip strong,
.command-metrics strong {
  display: block;
  color: #fff;
  font-size: 24px;
  line-height: 1;
}

.home-signal-strip span,
.command-metrics span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.investor-command-card,
.preference-card {
  align-self: end;
  width: min(420px, 100%);
  padding: 24px;
  border: 1px solid rgba(214, 229, 223, 0.42);
  border-radius: 8px;
  background: rgba(7, 19, 18, 0.58);
  color: #fff;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.investor-command-card h3,
.preference-card h3 {
  color: #fff;
  font-size: 28px;
}

.command-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.investor-dashboard-grid,
.investor-preview-grid,
.pipeline-grid,
.investor-card-grid,
.screening-stats,
.memo-grid,
.diligence-grid,
.composer-grid,
.investor-action-grid,
.match-reason-grid {
  display: grid;
  gap: 14px;
}

.investor-dashboard-grid {
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
  width: min(1180px, 100%);
  margin: 0 auto;
}

.investor-work-panel,
.preview-panel,
.memo-card,
.diligence-grid article,
.composer-grid article,
.investor-action-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(251, 253, 250, 0.92);
  box-shadow: 0 18px 40px rgba(11, 54, 46, 0.08);
}

.pipeline-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pipeline-grid div,
.investor-card-grid div,
.match-reason-grid div {
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid rgba(214, 229, 223, 0.84);
  border-radius: 8px;
  background: #f6fbf7;
}

.pipeline-grid span,
.memo-card span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.pipeline-grid strong,
.investor-card-grid strong,
.match-reason-grid strong {
  color: var(--teal-dark);
  font-size: 13px;
  text-transform: uppercase;
}

.pipeline-grid p,
.investor-card-grid span,
.match-reason-grid span {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.button.full-width {
  justify-content: center;
  width: 100%;
  margin-top: 18px;
}

.screening-stats {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(1180px, 100%);
  margin: 0 auto 18px;
}

.screening-stats div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.screening-stats span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.screening-stats strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
}

.investor-project-card {
  grid-template-columns: minmax(0, 1fr) 132px;
}

.investor-project-card .project-card-head {
  margin-bottom: 12px;
}

.risk-pill {
  padding: 6px 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--teal);
  font-size: 12px;
  font-weight: 900;
}

.risk-pill.low {
  background: #2f9d7e;
}

.risk-pill.medium {
  background: #d8a530;
}

.risk-pill.high {
  background: #9b3d35;
}

.card-score em {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

.investor-preview-grid {
  grid-template-columns: 1.3fr 0.85fr 0.85fr;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.preview-panel.large {
  background:
    linear-gradient(135deg, rgba(12, 143, 127, 0.11), rgba(120, 244, 223, 0.08)),
    #fff;
}

.preview-panel.accent {
  background: rgba(242, 184, 75, 0.12);
}

.brief-verdict {
  display: grid;
  gap: 6px;
  margin-top: 18px;
  padding: 16px;
  border-left: 4px solid var(--teal);
  border-radius: 8px;
  background: rgba(120, 244, 223, 0.12);
}

.brief-verdict span {
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.brief-verdict strong {
  color: var(--ink);
  font-size: 18px;
}

.memo-grid,
.diligence-grid,
.composer-grid,
.investor-action-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1180px, 100%);
  margin: 0 auto;
}

.memo-card p {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 850;
  line-height: 1.38;
}

.memo-card.strong {
  border-color: rgba(47, 157, 126, 0.34);
  background: rgba(216, 248, 237, 0.72);
}

.memo-card.caution {
  border-color: rgba(216, 165, 48, 0.36);
  background: rgba(242, 184, 75, 0.14);
}

.diligence-grid h3,
.composer-grid h3,
.investor-action-grid h3 {
  margin-top: 14px;
  font-size: 22px;
}

.composer-grid article {
  background: #fff;
}

.ai-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.35fr) minmax(0, 0.65fr);
  gap: 18px;
  width: min(1180px, 100%);
  margin: 0 auto;
  align-items: start;
}

.generation-progress {
  width: min(1180px, 100%);
  margin: 0 auto 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.generation-progress.compact {
  grid-column: 1 / -1;
  width: 100%;
  margin: 0;
  background: #f4f8f5;
  box-shadow: none;
}

.generation-progress.hidden {
  display: none;
}

.hidden {
  display: none !important;
}

.progress-topline {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
}

.progress-track {
  height: 10px;
  border-radius: 999px;
  background: #e7eee9;
  overflow: hidden;
}

.progress-track span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transition: width 420ms ease;
}

.progress-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.report-generation-panel {
  display: grid;
  gap: 16px;
  width: min(860px, 100%);
  margin: 22px auto;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.report-generation-panel h3 {
  max-width: 680px;
  font-size: 30px;
}

.report-generation-panel p {
  max-width: 700px;
  color: var(--muted);
}

.report-generation-panel .generation-progress {
  width: 100%;
}

.processing-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.processing-steps span {
  min-height: 42px;
  display: grid;
  place-items: center;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f4f8f5;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.ai-sidebar,
.ai-question-form,
.question-item,
.result-score,
.result-kpis,
.confidence-panel {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.ai-sidebar,
.ai-question-form,
.question-item,
.confidence-panel {
  padding: 24px;
}

.claim-list,
.question-list {
  display: grid;
  gap: 12px;
}

.claim-item {
  display: grid;
  gap: 6px;
  padding: 14px;
  border-radius: 8px;
  background: #f4f8f5;
}

.claim-item p {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
}

.claim-meta {
  display: grid;
  gap: 6px;
  margin: 4px 0;
}

.claim-meta div {
  display: grid;
  grid-template-columns: minmax(112px, 0.38fr) minmax(0, 1fr);
  gap: 8px;
  align-items: baseline;
}

.claim-meta dt,
.claim-meta dd {
  margin: 0;
  font-size: 12px;
}

.claim-meta dt {
  color: var(--muted);
  font-weight: 900;
}

.claim-meta dd {
  color: var(--ink);
  font-weight: 800;
}

.claim-item span,
.muted-text {
  color: var(--muted);
  font-size: 13px;
}

.question-item {
  box-shadow: none;
}

.question-topline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
}

.question-item h3 {
  font-size: 22px;
}

.question-item p {
  color: var(--muted);
}

.result-overview {
  display: grid;
  grid-template-columns: minmax(260px, 0.35fr) minmax(0, 0.65fr);
  gap: 18px;
  width: min(1180px, 100%);
  margin: 0 auto 18px;
}

.result-score {
  display: grid;
  align-content: center;
  min-height: 260px;
  padding: 28px;
  color: #fff;
  background: var(--charcoal);
}

.result-score.green {
  background: var(--teal-dark);
}

.result-score.yellow {
  background: #8a6415;
}

.result-score.orange {
  background: #9a4e35;
}

.result-score.red {
  background: #7f1d1d;
}

.result-score span {
  font-weight: 900;
  text-transform: uppercase;
}

.result-score strong {
  font-size: 86px;
  line-height: 1;
}

.result-score p {
  color: rgba(255, 255, 255, 0.82);
}

.result-kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
}

.result-kpis div {
  display: grid;
  align-content: center;
  min-height: 126px;
  padding: 22px;
  background: #fff;
}

.result-kpis strong {
  color: var(--teal-dark);
  font-size: 34px;
  line-height: 1;
}

.result-kpis span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.confidence-panel,
.result-grid {
  width: min(1180px, 100%);
  margin: 0 auto 18px;
}

.confidence-panel p {
  margin-bottom: 0;
  color: var(--muted);
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.growth-report {
  display: grid;
  gap: 18px;
}

.growth-diagnosis,
.growth-card-grid,
.growth-plan {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.growth-diagnosis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.growth-diagnosis article,
.growth-advice-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.growth-diagnosis span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.growth-diagnosis p {
  margin-bottom: 0;
  color: var(--ink);
  font-weight: 800;
}

.growth-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.growth-advice-card {
  display: grid;
  gap: 16px;
  box-shadow: none;
}

.growth-advice-card p {
  margin: 0;
  color: var(--muted);
}

.growth-advice-card dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.growth-advice-card dt {
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.growth-advice-card dd {
  margin: 0 0 8px;
  color: var(--ink);
}

.growth-plan {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.growth-report-hero,
.growth-section-heading,
.growth-stage-roadmap {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.growth-report-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 20px;
  align-items: stretch;
  padding: 28px;
  border: 1px solid rgba(12, 143, 127, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(120, 244, 223, 0.22), rgba(255, 255, 255, 0.92) 52%),
    #fff;
  box-shadow: var(--shadow);
}

.growth-report-hero h2 {
  margin-bottom: 10px;
}

.growth-report-hero p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.priority-legend {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(251, 253, 250, 0.78);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.priority-legend strong {
  color: var(--ink);
  font-size: 14px;
}

.priority-legend span {
  display: flex;
  gap: 8px;
  align-items: center;
}

.priority-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--teal);
}

.priority-dot.high {
  background: #e8755e;
}

.priority-dot.medium {
  background: #d8a530;
}

.priority-dot.low {
  background: #2f9d7e;
}

.growth-section-heading {
  display: grid;
  gap: 4px;
  margin-top: 10px;
}

.growth-section-heading h3 {
  margin: 0;
  font-size: clamp(28px, 4vw, 48px);
}

.growth-card-grid {
  grid-template-columns: 1fr;
}

.growth-advice-card {
  gap: 18px;
  padding: 28px;
}

.growth-card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.growth-card-topline strong {
  color: var(--teal-dark);
  font-size: 18px;
  text-align: right;
}

.priority-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.priority-pill.high {
  background: #e8755e;
}

.priority-pill.medium {
  background: #d8a530;
}

.priority-pill.low {
  background: #2f9d7e;
}

.priority-pill.unknown {
  background: var(--muted);
}

.priority-meaning {
  margin: -6px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.growth-card-summary {
  padding: 16px 18px;
  border-left: 4px solid var(--teal);
  border-radius: 8px;
  background: rgba(120, 244, 223, 0.12);
  color: var(--ink) !important;
  font-weight: 800;
}

.growth-action-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  align-items: start;
}

.growth-action-grid section {
  min-height: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(251, 253, 250, 0.88);
  overflow-wrap: break-word;
}

.growth-action-grid h4 {
  margin-bottom: 10px;
  color: var(--teal-dark);
  font-size: 12px;
  text-transform: uppercase;
}

.growth-action-grid p {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.55;
  overflow-wrap: break-word;
}

.growth-stage-roadmap {
  display: grid;
  gap: 14px;
}

.growth-stage-card {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 18px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(11, 54, 46, 0.08);
}

.stage-index {
  display: grid;
  place-items: center;
  min-height: 100%;
  border-radius: 8px;
  background: rgba(12, 143, 127, 0.1);
  color: var(--teal-dark);
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
}

.growth-stage-card h4 {
  margin-bottom: 8px;
  font-size: 22px;
}

.growth-stage-card p {
  margin-bottom: 12px;
  color: var(--muted);
  font-weight: 800;
}

.growth-stage-card ul {
  display: grid;
  gap: 6px;
  margin: 0 0 14px 18px;
  color: var(--ink);
  font-weight: 700;
}

.stage-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.stage-checks span {
  display: grid;
  gap: 4px;
  padding: 12px;
  border-radius: 8px;
  background: rgba(233, 246, 241, 0.82);
  color: var(--muted);
  font-weight: 700;
}

.stage-checks strong {
  color: var(--teal-dark);
  font-size: 12px;
  text-transform: uppercase;
}

.mentor-ask-panel {
  border-color: rgba(12, 143, 127, 0.28);
  background: rgba(120, 244, 223, 0.1);
}

.pitch-material-workspace,
.pitch-simulation,
.pitch-report,
.pitch-module-grid,
.pitch-report-sections,
.pitch-report-actions {
  width: min(1180px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.pitch-upload-panel {
  width: 100%;
}

.pitch-paste-label {
  grid-column: 1 / -1;
}

.pitch-paste-label textarea {
  min-height: 180px;
}

.pitch-simulation {
  display: grid;
  grid-template-columns: minmax(260px, 0.32fr) minmax(0, 0.68fr);
  gap: 18px;
  align-items: start;
}

.pitch-defense-panel {
  display: grid;
  gap: 18px;
}

.pitch-defense-panel > .question-item,
.pitch-defense-panel form,
.pitch-assessment {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.pitch-defense-panel form label {
  display: grid;
  gap: 10px;
  color: var(--ink);
  font-weight: 900;
}

.pitch-defense-panel form textarea {
  min-height: 180px;
}

.answer-attachment-panel {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px dashed rgba(12, 143, 127, 0.34);
  border-radius: 8px;
  background: rgba(120, 244, 223, 0.1);
}

.answer-attachment-panel strong {
  color: var(--ink);
}

.answer-attachment-panel p {
  margin: 4px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.report-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(1180px, 100%);
  margin: 0 auto 18px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(251, 253, 250, 0.9);
}

.report-toolbar.compact {
  justify-content: flex-start;
  width: auto;
  margin: 18px 0 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.report-toolbar strong {
  color: var(--ink);
}

.screening-report,
.pitch-report {
  display: grid;
  gap: 18px;
}

.score-hero-card {
  display: grid;
  gap: 8px;
  align-content: center;
  min-height: 180px;
  padding: 22px;
  border-radius: 8px;
  color: #fff;
}

.score-hero-card.strong {
  background: linear-gradient(135deg, #0c8f7f, #2f9d7e);
}

.score-hero-card.promising {
  background: linear-gradient(135deg, #d8a530, #e8755e);
}

.score-hero-card.needs-proof,
.score-hero-card.high-risk {
  background: linear-gradient(135deg, #e8755e, #9b3d35);
}

.score-hero-card span {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.score-hero-card strong {
  font-size: clamp(54px, 8vw, 92px);
  line-height: 0.9;
}

.score-hero-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
}

.report-metric-grid,
.report-score-grid,
.report-module-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.report-metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.report-metric-grid article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(11, 54, 46, 0.08);
}

.report-metric-grid strong {
  display: block;
  color: var(--ink);
  font-size: 34px;
  line-height: 1;
}

.report-metric-grid span {
  display: block;
  margin-top: 6px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.report-metric-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.report-score-grid {
  display: grid;
  gap: 16px;
}

.report-score-card {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(11, 54, 46, 0.08);
}

.report-score-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.report-score-topline strong {
  color: var(--ink);
  font-size: 20px;
}

.report-score-card h4 {
  margin: 0;
  font-size: 24px;
}

.score-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.score-pill.strong {
  background: #2f9d7e;
}

.score-pill.promising {
  background: #d8a530;
}

.score-pill.needs-proof {
  background: #e8755e;
}

.score-pill.high-risk {
  background: #9b3d35;
}

.growth-action-grid.compact {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.growth-action-grid.compact.two {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.growth-action-grid.compact section {
  min-height: 0;
}

.report-module-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.report-list-card,
.report-wide-panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(11, 54, 46, 0.08);
  align-self: start;
}

.report-list-card h3,
.report-wide-panel h3 {
  margin-bottom: 16px;
}

.report-list-card .qa-list {
  font-size: 16px;
  line-height: 1.7;
}

.report-detail-grid {
  display: grid;
  gap: 14px;
}

.report-detail-card {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 18px;
  border: 1px solid rgba(12, 143, 127, 0.18);
  border-radius: 8px;
  background: rgba(251, 253, 250, 0.88);
}

.report-detail-card h4 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.35;
}

.pitch-report-sections {
  grid-template-columns: 1fr;
  align-items: start;
}

.pitch-round-status {
  display: grid;
  gap: 6px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.pitch-round-status span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.pitch-round-status strong {
  color: var(--ink);
}

.pitch-assessment {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  overflow: hidden;
}

.pitch-assessment div {
  padding: 18px;
  background: #fff;
}

.pitch-assessment span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.pitch-assessment p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.pitch-report {
  display: grid;
  gap: 18px;
}

.pitch-score-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.pitch-score-grid > div {
  display: grid;
  gap: 10px;
  padding: 18px;
  background: #fff;
}

.pitch-score-grid > div > div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.pitch-score-grid span,
.pitch-score-grid strong {
  color: var(--teal-dark);
  font-weight: 900;
}

.pitch-score-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.pitch-module-grid,
.pitch-report-sections {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.report-score-card .growth-action-grid,
.growth-advice-card .growth-action-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.report-detail-card .growth-action-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.score-detail-grid,
.pitch-advice-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.growth-advice-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.score-detail-grid > section,
.growth-advice-grid > section,
.pitch-advice-grid > section,
.detail-fields-2 > section,
.detail-fields-3 > section {
  display: grid;
  align-content: start;
}

.score-detail-grid > section:last-child:nth-child(odd),
.pitch-advice-grid > section:last-child:nth-child(odd),
.detail-fields-3 > section:last-child {
  grid-column: 1 / -1;
}

.detail-fields-1 {
  grid-template-columns: 1fr;
}

.detail-fields-2,
.detail-fields-3 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.report-detail-card .detail-fields-2,
.report-detail-card .detail-fields-3 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pitch-report-actions {
  display: flex;
  justify-content: flex-end;
}

.match-card {
  display: flex;
  align-items: start;
  gap: 22px;
}

.match-score {
  width: 92px;
  height: 92px;
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline div {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 12px;
  align-items: start;
}

.timeline span {
  width: 12px;
  height: 12px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--coral);
}

.timeline p {
  margin: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 34px clamp(18px, 5vw, 70px);
  color: rgba(255, 255, 255, 0.76);
  background: var(--charcoal);
}

.site-footer p {
  margin: 6px 0 0;
}

.site-footer a,
.site-footer strong {
  color: #fff;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .problem-grid,
  .workflow,
  .feature-grid,
  .screening-flow-grid,
  .feature-grid.two-column,
  .directory-grid,
  .score-dimensions,
  .coach-grid,
  .profile-layout,
  .dashboard-layout,
  .match-layout,
  .builder-grid,
  .page-hero,
  .ai-layout,
  .result-overview,
  .result-grid,
  .growth-report-hero,
  .growth-diagnosis,
  .growth-card-grid,
  .growth-action-grid,
  .growth-action-grid.compact,
  .growth-action-grid.compact.two,
  .growth-stage-card,
  .growth-plan,
  .report-metric-grid,
  .report-module-grid,
  .pitch-simulation,
  .pitch-assessment,
  .report-score-grid,
  .pitch-score-grid,
  .pitch-module-grid,
  .pitch-report-sections,
  .interface-grid,
  .home-signal-strip,
  .command-metrics,
  .investor-dashboard-grid,
  .investor-preview-grid,
  .pipeline-grid,
  .screening-stats,
  .memo-grid,
  .diligence-grid,
  .composer-grid,
  .investor-action-grid,
  .investor-project-card,
  .instructor-gate,
  .instructor-toolbar,
  .instructor-summary-grid {
    grid-template-columns: 1fr;
  }

  .result-kpis {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .upload-panel {
    grid-template-columns: 1fr;
  }

  .progress-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .growth-card-topline {
    align-items: start;
    flex-direction: column;
  }

  .growth-card-topline strong {
    text-align: left;
  }

  .stage-index {
    min-height: 72px;
  }

  .screening-flow-grid {
    gap: 16px;
  }

  .screening-flow-grid::before {
    left: 36px;
    right: auto;
    top: 30px;
    bottom: 30px;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, transparent, rgba(12, 143, 127, 0.45), rgba(120, 244, 223, 0.75), rgba(12, 143, 127, 0.45), transparent);
  }

  .screening-flow-card {
    min-height: 0;
    padding: 22px 22px 22px 88px;
  }

  .screening-flow-card .step-number {
    position: absolute;
    left: 22px;
    top: 22px;
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .screening-flow-card h3 {
    font-size: 22px;
  }

  .processing-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .workspace-score-row,
  .flow-status-grid {
    grid-template-columns: 1fr;
  }

  .section-heading.split {
    display: block;
  }

  .section-heading.split > p,
  .section-heading.split .search-box {
    margin-top: 18px;
  }

  .portal-layout {
    grid-template-columns: 1fr;
  }

  .form-steps {
    display: flex;
    overflow-x: auto;
  }

  .step-tab {
    white-space: nowrap;
  }

  .filters {
    position: static;
  }

  .hero-match {
    justify-self: start;
  }
}

@media (min-width: 760px) {
  .score-detail-grid,
  .growth-advice-grid,
  .pitch-advice-grid,
  .report-detail-card .detail-fields-2,
  .report-detail-card .detail-fields-3,
  .report-detail-card .growth-action-grid.compact.two.detail-fields-2,
  .report-detail-card .growth-action-grid.compact.two.detail-fields-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .growth-advice-card .growth-advice-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .score-detail-grid > section:last-child:nth-child(odd),
  .pitch-advice-grid > section:last-child:nth-child(odd),
  .report-detail-card .detail-fields-3 > section:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .site-header {
    align-items: start;
  }

  .header-action {
    display: none;
  }

  .hero {
    min-height: 680px;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin-left: 16px;
  }

  h1 {
    font-size: 50px;
  }

  section {
    padding-block: 68px;
  }

  .form-page,
  .recommendation-list,
  .evidence-grid,
  .brief-actions,
  .project-card,
  .result-kpis,
  .stage-checks {
    grid-template-columns: 1fr;
  }

  .project-head,
  .panel-topline,
  .match-card {
    display: block;
  }

  .project-score,
  .match-score {
    margin-top: 16px;
  }

  .project-card {
    grid-template-columns: 1fr;
  }

  .archive-panel,
  .archive-actions {
    grid-template-columns: 1fr;
  }

  .archive-actions .button {
    width: 100%;
  }

  .instructor-gate,
  .instructor-workspace {
    width: calc(100% - 32px);
  }

  .instructor-toolbar {
    padding: 22px;
  }

  .instructor-toolbar-copy h2 {
    font-size: 46px;
  }

  .instructor-open-card input {
    font-size: 20px;
  }
}

@media print {
  .site-header,
  .site-footer,
  .page-hero,
  .no-print,
  .generation-progress,
  .report-generation-panel,
  .pitch-material-workspace,
  .pitch-simulation,
  .ai-layout {
    display: none !important;
  }

  body {
    background: #fff !important;
  }

  main,
  section,
  .builder-section,
  .ai-workflow-section {
    padding: 0 !important;
    background: #fff !important;
  }

  .result-overview,
  .result-grid,
  .profile-layout,
  .growth-report,
  .growth-card-grid,
  .growth-stage-roadmap,
  .growth-plan,
  .pitch-report,
  .pitch-module-grid,
  .pitch-report-sections {
    width: 100% !important;
    box-shadow: none !important;
  }

  .feedback-panel,
  .growth-advice-card,
  .growth-stage-card,
  .dimension,
  .result-score,
  .result-kpis,
  .pitch-score-grid > div {
    break-inside: avoid;
    box-shadow: none !important;
  }
}
