:root {
  --bg: #f5f7fa;
  --surface: #ffffff;
  --surface-2: #eef3f6;
  --ink: #17212f;
  --muted: #637082;
  --line: #dbe3ea;
  --teal: #0f8f8a;
  --teal-dark: #086b68;
  --amber: #e8a23c;
  --shadow: 0 18px 46px rgba(18, 35, 54, 0.1);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  letter-spacing: 0;
}

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

.app-shell {
  min-height: 100vh;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 32px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 7px;
  background: var(--teal);
  color: #fff;
  font-weight: 900;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-2);
}

.main-nav a {
  min-width: 96px;
  padding: 9px 12px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
  text-align: center;
  text-decoration: none;
}

.main-nav a.active,
.main-nav a:hover {
  background: var(--surface);
  color: var(--ink);
  box-shadow: 0 5px 16px rgba(20, 34, 48, 0.08);
}

.ghost-button,
.primary-button,
.primary-link {
  min-height: 42px;
  border: 0;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 850;
  cursor: pointer;
}

.ghost-button {
  padding: 0 18px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
}

.primary-button,
.primary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 32px;
  align-items: end;
  max-width: 1240px;
  margin: 0 auto;
  padding: 56px 32px 26px;
}

.product-name,
.panel-heading p,
.report-actions p {
  margin: 0 0 8px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 840px;
  margin: 0 0 14px;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.02;
}

.hero-copy > p:not(.product-name) {
  max-width: 850px;
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}

.hero-copy .trust-line {
  margin-top: 14px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 850;
}

.hero-copy .signal-definition {
  margin-top: 7px;
  color: var(--muted);
  font-size: 14px;
}

.hero-copy .role-trust {
  margin-top: 12px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 850;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
}

.hero-actions span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.hero-card {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow);
}

.mini-score {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px;
  background: var(--surface);
}

.mini-score span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.mini-score strong {
  font-size: 30px;
}

.preview-micro {
  margin: 0;
  padding: 16px 18px;
  background: var(--surface);
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.45;
}

.supporting-copy {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px 20px;
}

.supporting-copy h2 {
  margin: 0;
  padding: 20px 20px 0;
  border: 1px solid var(--line);
  border-bottom: 0;
  border-radius: var(--radius) var(--radius) 0 0;
  background: var(--surface);
  font-size: 22px;
}

.supporting-copy p {
  margin: 0;
  padding: 8px 20px 20px;
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: var(--radius);
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background: var(--surface);
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.supporting-copy .audience-line {
  padding-top: 0;
  border-top: 0;
  border-radius: 0 0 var(--radius) var(--radius);
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 850;
}

.supporting-copy p:not(.audience-line) {
  border-bottom: 0;
  border-radius: 0;
}

.supporting-copy strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 16px;
}

.compact-copy {
  max-width: 1040px;
  padding-bottom: 18px;
}

.compact-copy h2 {
  padding-top: 18px;
  font-size: 19px;
}

.compact-copy p:not(.audience-line) {
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 var(--radius) var(--radius);
}

.assessment-layout {
  display: grid;
  grid-template-columns: minmax(320px, 520px) minmax(320px, 1fr);
  gap: 18px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 18px 32px 18px;
}

.impact-builder {
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 32px 28px;
}

.secondary-tool.impact-builder {
  padding-top: 0;
  padding-bottom: 34px;
}

.secondary-tool > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 62px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 26px rgba(24, 42, 58, 0.05);
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}

.secondary-tool > summary::-webkit-details-marker {
  display: none;
}

.secondary-tool > summary span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.35;
}

.secondary-tool > summary strong {
  color: var(--ink);
}

.secondary-tool > summary em {
  flex: 0 0 auto;
  color: var(--teal-dark);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.secondary-tool[open] > summary {
  margin-bottom: 16px;
}

.impact-heading {
  margin-bottom: 12px;
}

.impact-heading h2 {
  max-width: 760px;
  margin: 0;
  font-size: 28px;
  line-height: 1.15;
}

.impact-layout {
  display: grid;
  grid-template-columns: minmax(320px, 520px) minmax(320px, 1fr);
  gap: 18px;
}

.impact-input-card,
.impact-statement-card,
.impact-score-card,
.impact-gap-card {
  padding-bottom: 20px;
}

.impact-helper {
  margin: 0 20px 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.impact-input-card .primary-button,
.impact-gap-card .primary-button,
.impact-gap-card .ghost-button {
  width: calc(100% - 40px);
  margin: 0 20px;
}

.impact-gap-card .ghost-button {
  margin-top: 10px;
}

.impact-output-stack {
  display: grid;
  align-content: start;
  gap: 18px;
}

.impact-statement {
  margin: 0 20px 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fbfdfc;
  color: var(--ink);
  font-size: 16px;
  font-weight: 750;
  line-height: 1.55;
}

.detected-signals {
  margin: 0 20px 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.detected-signals strong {
  color: var(--teal-dark);
}

.impact-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 20px;
}

.impact-score-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  padding: 0 20px;
}

.impact-score-grid > div {
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface-2);
}

.impact-score-grid span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
}

.impact-score-grid strong {
  display: block;
  margin-top: 5px;
  font-size: 22px;
}

.impact-score-grid em {
  display: inline-block;
  margin: 7px 0 6px;
  color: var(--teal-dark);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.impact-score-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.impact-score-grid .score-low {
  border-top: 4px solid #c16a4a;
}

.impact-score-grid .score-mid {
  border-top: 4px solid var(--amber);
}

.impact-score-grid .score-high {
  border-top: 4px solid var(--teal);
}

.impact-gap-list {
  display: grid;
  gap: 8px;
  margin: 0 20px 14px;
}

.impact-gap-list p {
  margin: 0;
  padding: 11px 12px;
  border-left: 3px solid var(--amber);
  border-radius: 6px;
  background: #fff8eb;
  color: #745225;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.score-improvement {
  margin: 0 20px 14px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
}

.impact-refinement {
  display: grid;
  gap: 12px;
  margin: 4px 20px 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface-2);
}

.impact-refinement h3 {
  margin: 0;
  font-size: 16px;
}

.impact-refinement label {
  padding: 0;
}

.impact-refinement .primary-button {
  width: 100%;
  margin: 0;
}

.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 26px rgba(24, 42, 58, 0.06);
}

.panel-heading {
  padding: 20px 20px 10px;
}

.panel-heading h2,
.report-actions h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
}

.assessment-form {
  display: grid;
  gap: 14px;
  align-self: start;
  padding-bottom: 20px;
}

.progress-wrap {
  margin: 0 20px 4px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface-2);
}

.progress-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.progress-copy strong {
  color: var(--teal-dark);
}

.progress-bar {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #d8e1e8;
}

.progress-bar span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--teal);
  transition: width 180ms ease;
}

label {
  display: grid;
  gap: 7px;
  padding: 0 20px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.field-feedback {
  margin: -5px 20px 2px;
  padding: 10px 12px;
  border-left: 3px solid var(--teal);
  border-radius: 6px;
  background: #f2fbf8;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.4;
}

.optional-field {
  margin: 2px 20px 0;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface-2);
}

.optional-field summary {
  padding: 13px 14px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
}

.optional-field label {
  padding: 0 14px 0;
}

.optional-field p {
  margin: 8px 14px 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.45;
}

select,
input,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  color: var(--ink);
  font-size: 14px;
}

textarea {
  padding-top: 11px;
  line-height: 1.45;
  resize: vertical;
}

.results-stack {
  display: grid;
  align-content: start;
  gap: 18px;
}

.preview-panel,
.capture-panel {
  padding-bottom: 20px;
}

.insight {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.score-grid,
.report-score-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 0 20px 18px;
}

.score-card,
.report-score-grid div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface-2);
}

.score-card span,
.report-score-grid span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.score-card strong,
.report-score-grid strong {
  display: block;
  margin-top: 6px;
  font-size: 24px;
}

.report-score-grid em {
  display: inline-block;
  margin: 8px 0 7px;
  color: var(--teal-dark);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.report-score-grid p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
}

.report-score-grid .mini-action {
  margin-top: 12px;
}

.report-score-grid .score-low {
  border-top: 4px solid #c16a4a;
}

.report-score-grid .score-mid {
  border-top: 4px solid var(--amber);
}

.report-score-grid .score-high {
  border-top: 4px solid var(--teal);
}

.value-score-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.value-score-grid > div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface-2);
}

.value-score-grid span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.value-score-grid strong {
  display: block;
  margin-top: 6px;
  font-size: 24px;
}

.value-score-grid em {
  display: inline-block;
  margin: 8px 0 7px;
  color: var(--teal-dark);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.value-score-grid p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
}

.value-score-grid .score-low {
  border-top: 4px solid #c16a4a;
}

.value-score-grid .score-mid {
  border-top: 4px solid var(--amber);
}

.value-score-grid .score-high {
  border-top: 4px solid var(--teal);
}

.score-guidance {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.score-guidance div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fbfdfc;
}

.score-guidance strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 13px;
}

.score-guidance p {
  font-size: 13px;
  line-height: 1.45;
}

.bar {
  height: 8px;
  margin-top: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #d8e1e8;
}

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

.preview-panel .primary-button,
.capture-panel .primary-button {
  width: calc(100% - 40px);
  margin: 0 20px;
}

.report-label,
.capture-note,
.momentum-line {
  margin: 0 20px 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.momentum-line {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 15px;
}

.capture-note {
  margin-bottom: 18px;
}

.tag-line {
  margin: 2px 20px 16px;
  color: var(--muted);
  font-size: 13px;
}

.tag-line strong {
  color: var(--teal-dark);
}

.report-section {
  max-width: 1040px;
  margin: 0 auto 56px;
  padding: 0 32px;
  scroll-margin-top: 92px;
}

.privacy-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(320px, 1fr);
  gap: 14px;
  max-width: 1040px;
  margin: 0 auto 28px;
  padding: 0 32px;
  scroll-margin-top: 96px;
}

.privacy-section:not(:target) {
  display: none;
}

.privacy-copy,
.privacy-form {
  align-self: start;
}

.privacy-copy {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 26px rgba(24, 42, 58, 0.05);
}

.privacy-copy h2 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.15;
}

.privacy-copy p:not(.product-name),
.privacy-copy .policy-block p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.policy-date {
  margin-bottom: 16px !important;
  color: var(--teal-dark) !important;
  font-weight: 850;
}

.policy-block {
  padding-top: 14px;
  margin-top: 14px;
  border-top: 1px solid var(--line);
}

.policy-block h3 {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.25;
}

.privacy-form {
  display: grid;
  gap: 14px;
  padding-bottom: 20px;
}

.privacy-note,
.privacy-confirmation {
  margin: 0 20px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.request-options {
  display: grid;
  gap: 10px;
  margin: 0 20px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface-2);
}

.request-options legend {
  padding: 0 5px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.request-options label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 0;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.35;
}

.request-options input {
  width: 16px;
  min-width: 16px;
  height: 16px;
  min-height: 16px;
  margin-top: 1px;
  accent-color: var(--teal);
}

.privacy-form .primary-button {
  width: calc(100% - 40px);
  margin: 0 20px;
}

.privacy-confirmation {
  min-height: 20px;
  color: var(--teal-dark);
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 32px 34px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.site-footer a {
  color: var(--teal-dark);
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.hidden {
  display: none;
}

.report-actions {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.report-card {
  display: grid;
  gap: 14px;
  border-radius: var(--radius);
}

.report-card section {
  position: relative;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 26px rgba(24, 42, 58, 0.05);
}

.report-card h3 {
  margin: 0 0 9px;
  font-size: 17px;
}

.report-card .section-kicker {
  margin: 0 0 7px;
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.report-hero {
  display: grid;
  gap: 16px;
  padding: 26px;
  background: #fbfdfc;
}

.report-hero h3 {
  font-size: 28px;
  line-height: 1.12;
}

.report-hero .hero-insight {
  max-width: 820px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.55;
}

.report-tool-row,
.section-tool-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.section-tool-row {
  margin-top: 16px;
}

.mini-action {
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface);
  color: var(--ink);
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
}

.mini-action:hover {
  border-color: #b9c7d2;
  background: var(--surface-2);
}

.practice-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin-top: 14px;
  padding: 0 14px;
  border-radius: 7px;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
}

.practice-link:hover {
  background: #263244;
}

.report-card p,
.report-card li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.report-card p {
  margin: 0;
}

.report-card ol {
  margin: 0;
  padding-left: 22px;
}

.report-card ul {
  margin: 0;
  padding-left: 20px;
}

.report-card section > p + p {
  margin-top: 10px;
}

.value-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.value-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.value-card {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface-2);
}

.value-card strong {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 14px;
}

.value-card p {
  font-size: 13px;
  line-height: 1.45;
}

.value-chip-row span {
  padding: 7px 9px;
  border-radius: 6px;
  background: #e6f5f3;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 850;
}

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.before-after div {
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface-2);
}

.before-after span {
  display: block;
  margin-bottom: 8px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.refinement-prompt {
  margin-top: 12px !important;
  padding: 11px 12px;
  border-left: 3px solid var(--amber);
  border-radius: 6px;
  background: #fff8eb;
  color: #745225 !important;
  font-size: 13px !important;
  font-weight: 800;
}

.transfer-list,
.day-plan,
.visibility-actions {
  display: grid;
  gap: 7px;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  padding: 0;
  list-style: none;
}

.area-list li {
  padding: 7px 9px;
  border-radius: 6px;
  background: #e6f5f3;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 850;
}

.linkedin-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.linkedin-grid div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface-2);
}

.linkedin-grid span {
  display: block;
  margin-bottom: 6px;
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.rewrite-block {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.rewrite-block div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fbfdfc;
}

.rewrite-block strong {
  display: block;
  margin-bottom: 6px;
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  transform: translateY(90px);
  max-width: 360px;
  padding: 14px 16px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  font-weight: 750;
  opacity: 0;
  transition: 180ms ease;
  box-shadow: var(--shadow);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

@media print {
  .topbar,
  .hero,
  .supporting-copy,
  .assessment-layout,
  .impact-builder,
  .report-actions .ghost-button,
  .toast {
    display: none;
  }

  body {
    background: #fff;
  }

  .report-section {
    display: block !important;
    max-width: none;
    margin: 0;
    padding: 0;
  }

  .report-card {
    border: 0;
    box-shadow: none;
  }
}

@media (max-width: 920px) {
  .hero,
  .assessment-layout,
  .impact-layout,
  .privacy-section {
    grid-template-columns: 1fr;
  }

  .impact-score-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  html,
  body,
  .app-shell,
  main,
  .topbar,
  .hero,
  .supporting-copy,
  .impact-builder,
  .assessment-layout,
  .report-section {
    width: 100%;
    max-width: 100vw;
  }

  .privacy-section {
    width: 100%;
    max-width: 100vw;
  }

  .topbar {
    position: static;
    display: grid;
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .main-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 240px;
    max-width: 340px;
    overflow: hidden;
  }

  .main-nav a {
    min-width: 0;
    padding-inline: 2px;
    font-size: 12px;
  }

  .topbar .ghost-button {
    display: none;
  }

  .hero,
  .supporting-copy,
  .impact-builder,
  .assessment-layout,
  .report-section,
  .privacy-section {
    padding-inline: 16px;
  }

  .hero {
    padding-top: 34px;
    display: block;
  }

  .hero-copy {
    min-width: 0;
  }

  .hero h1 {
    width: 100%;
    font-size: 40px;
    max-width: 340px;
    overflow-wrap: anywhere;
  }

  .hero-copy > p:not(.product-name),
  .supporting-copy p,
  .impact-heading,
  .impact-layout,
  .hero-card,
  .panel,
  .report-card,
  .privacy-copy {
    max-width: 340px;
    overflow-wrap: anywhere;
  }

  .mini-score {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .secondary-tool > summary {
    align-items: flex-start;
    flex-direction: column;
  }

  .score-grid,
  .report-score-grid,
  .impact-score-grid,
  .value-score-grid,
  .score-guidance,
  .value-card-grid,
  .linkedin-grid {
    grid-template-columns: 1fr;
  }

  .before-after {
    grid-template-columns: 1fr;
  }

  .report-actions {
    align-items: stretch;
    flex-direction: column;
  }
}
