:root {
  color-scheme: light;
  --bg: #f4f7fb;
  --surface: #ffffff;
  --surface-muted: #edf3fb;
  --surface-strong: #0d1b2f;
  --text: #102033;
  --text-muted: #5d6d80;
  --border: #d7e0ec;
  --border-strong: #afbdd0;
  --primary: #1769e0;
  --primary-hover: #0e55bd;
  --primary-soft: #e3efff;
  --accent: #9ed0ff;
  --accent-ink: #0b2a4a;
  --danger: #a9362d;
  --danger-soft: #ffebe8;
  --warning: #8a5900;
  --warning-soft: #fff2ce;
  --success: #116b46;
  --success-soft: #e1f6eb;
  --info: #265e85;
  --info-soft: #e7f3fb;
  --focus: #245bd6;
  --shadow-sm: 0 8px 20px rgba(11, 42, 74, 0.07);
  --shadow-md: 0 20px 60px rgba(11, 42, 74, 0.12);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --content: 1180px;
  --font-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

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

button,
a,
input,
select {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  line-height: 1.08;
  letter-spacing: -0.035em;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  transform: translateY(-150%);
  border-radius: 8px;
  background: var(--surface-strong);
  color: #ffffff;
  padding: 10px 14px;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.section-wrap {
  width: min(calc(100% - 32px), var(--content));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(215, 224, 236, 0.88);
  background: rgba(244, 247, 251, 0.94);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  width: min(calc(100% - 24px), var(--content));
  min-height: 72px;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 13px;
  background: var(--surface-strong);
  color: var(--accent);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -0.08em;
}

.brand-copy {
  display: grid;
  line-height: 1.1;
}

.brand-copy strong {
  font-size: 16px;
  letter-spacing: -0.02em;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 11px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.price-pill {
  display: none;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  padding: 8px 12px;
  color: var(--text-muted);
  font-size: 13px;
  white-space: nowrap;
}

.price-pill strong {
  color: var(--text);
  font-variant-numeric: tabular-nums;
}

.text-link {
  display: none;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.text-link:hover {
  color: var(--primary);
}

.hero {
  display: grid;
  gap: 32px;
  padding-block: 48px 56px;
}

.hero-copy {
  align-self: center;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(42px, 11vw, 76px);
  font-weight: 820;
  letter-spacing: -0.065em;
}

.hero h1 span {
  position: relative;
  white-space: nowrap;
}

.hero h1 span::after {
  position: absolute;
  z-index: -1;
  right: -4px;
  bottom: 5px;
  left: -4px;
  height: 18px;
  border-radius: 999px;
  background: var(--accent);
  content: "";
  transform: rotate(-1.5deg);
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 28px;
  color: var(--text-muted);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 13px;
  padding: 11px 18px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button:hover:not(:disabled) {
  transform: translateY(-1px);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.button-primary {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(23, 105, 224, 0.22);
}

.button-primary:hover:not(:disabled) {
  background: var(--primary-hover);
}

.button-secondary {
  border-color: var(--border-strong);
  background: var(--surface);
  color: var(--text);
}

.button-secondary:hover:not(:disabled) {
  border-color: var(--primary);
  color: var(--primary);
}

.button-ghost {
  border-color: var(--border);
  background: transparent;
  color: var(--text-muted);
}

.button-ghost:hover:not(:disabled) {
  border-color: var(--border-strong);
  background: var(--surface);
  color: var(--text);
}

.button-wide {
  width: 100%;
}

.button-small {
  min-height: 42px;
  padding: 8px 13px;
  font-size: 13px;
}

.button.is-loading::before {
  width: 15px;
  height: 15px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  content: "";
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.hero-proof {
  display: flex;
  margin-top: 24px;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  background: var(--surface-muted);
  padding: 7px 10px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
}

.hero-proof span::before {
  color: var(--success);
  content: "✓";
  font-weight: 900;
}

.hero-card {
  align-self: center;
  overflow: hidden;
  border: 1px solid #263f36;
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
  color: #ffffff;
  box-shadow: var(--shadow-md);
  padding: 24px;
}

.hero-card-topline {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #dce9e3;
  font-size: 13px;
}

.hero-card-topline strong {
  flex: 1;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.status-dot-warning {
  background: #ffbd4a;
  box-shadow: 0 0 0 5px rgba(255, 189, 74, 0.12);
}

.micro-tag {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 4px 8px;
  color: #bcd0c7;
  font-size: 11px;
}

.sample-score {
  margin-block: 28px 24px;
}

.sample-score > div {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.sample-score span {
  color: #bcd0c7;
  font-size: 13px;
}

.sample-score strong {
  color: var(--accent);
  font-size: 48px;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

progress {
  width: 100%;
  height: 9px;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  background: var(--surface-muted);
  accent-color: var(--primary);
}

progress::-webkit-progress-bar {
  border-radius: 999px;
  background: var(--surface-muted);
}

progress::-webkit-progress-value {
  border-radius: 999px;
  background: var(--primary);
}

progress::-moz-progress-bar {
  border-radius: 999px;
  background: var(--primary);
}

.hero-card progress {
  margin-top: 10px;
  background: rgba(255, 255, 255, 0.12);
  accent-color: var(--accent);
}

.hero-card progress::-webkit-progress-bar {
  background: rgba(255, 255, 255, 0.12);
}

.hero-card progress::-webkit-progress-value,
.hero-card progress::-moz-progress-bar {
  background: var(--accent);
}

.sample-findings {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 10px;
  list-style: none;
}

.sample-findings li {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  padding: 12px;
}

.finding-icon {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 900;
}

.finding-icon-danger,
.severity-danger .finding-icon {
  background: var(--danger-soft);
  color: var(--danger);
}

.finding-icon-warning,
.severity-warning .finding-icon {
  background: var(--warning-soft);
  color: var(--warning);
}

.finding-icon-positive,
.severity-positive .finding-icon {
  background: var(--success-soft);
  color: var(--success);
}

.severity-info .finding-icon {
  background: var(--info-soft);
  color: var(--info);
}

.sample-findings strong,
.sample-findings small {
  display: block;
}

.sample-findings strong {
  font-size: 13px;
}

.sample-findings small {
  margin-top: 3px;
  color: #aabfb6;
  font-size: 11px;
}

.sample-outcome {
  display: grid;
  margin: 18px -24px -24px;
  gap: 3px;
  background: var(--accent);
  color: var(--accent-ink);
  padding: 18px 24px;
}

.sample-outcome span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sample-outcome strong {
  font-size: 13px;
}

.trust-band {
  border-block: 1px solid var(--border);
  background: var(--surface);
}

.trust-band-inner {
  display: grid;
  gap: 4px;
  padding-block: 18px;
  text-align: center;
}

.trust-band-inner strong {
  color: var(--primary);
}

.trust-band-inner span {
  color: var(--text-muted);
  font-size: 14px;
}

.checker-section {
  padding-block: 72px;
}

.section-heading {
  display: grid;
  margin-bottom: 28px;
  gap: 12px;
}

.section-heading h2 {
  max-width: 720px;
  margin-bottom: 0;
  font-size: clamp(32px, 8vw, 52px);
}

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

.checker-shell {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.stepper {
  display: grid;
  margin: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--border);
  background: #f8faf7;
  padding: 0;
  list-style: none;
}

.stepper-item {
  position: relative;
  display: grid;
  min-height: 74px;
  place-items: center;
  gap: 4px;
  color: var(--text-muted);
  text-align: center;
}

.stepper-item::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  background: transparent;
  content: "";
}

.stepper-item span {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  background: var(--surface);
  font-size: 11px;
  font-weight: 900;
}

.stepper-item strong {
  font-size: 11px;
}

.stepper-item.is-active {
  color: var(--primary);
}

.stepper-item.is-active::after {
  background: var(--primary);
}

.stepper-item.is-active span {
  border-color: var(--primary);
  background: var(--primary);
  color: #ffffff;
}

.stepper-item.is-complete span {
  border-color: var(--success);
  background: var(--success-soft);
  color: var(--success);
}

.form-error {
  margin: 20px 20px 0;
  border: 1px solid #e8b5b0;
  border-radius: var(--radius-sm);
  background: var(--danger-soft);
  color: #78251f;
  padding: 14px 16px;
  font-weight: 700;
}

.form-step,
.preview-panel {
  padding: 24px 20px;
}

.form-step-heading {
  margin-bottom: 24px;
}

.form-step-heading h3 {
  margin-bottom: 8px;
  font-size: 28px;
}

.form-step-heading p {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--text-muted);
}

.step-kicker {
  display: block;
  margin-bottom: 7px;
  color: var(--primary);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-grid {
  display: grid;
  gap: 18px;
}

.field,
.choice-field {
  display: grid;
  min-width: 0;
  margin: 0;
  gap: 8px;
}

.field > span,
.choice-field legend {
  color: var(--text);
  font-size: 14px;
  font-weight: 750;
}

.field em {
  color: var(--text-muted);
  font-size: 11px;
  font-style: normal;
  font-weight: 500;
}

.field small {
  color: var(--text-muted);
  font-size: 12px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--border-strong);
  border-radius: 11px;
  background: #ffffff;
  color: var(--text);
  padding: 11px 12px;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

input:hover,
select:hover,
textarea:hover {
  border-color: #8ea298;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--focus);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(36, 91, 214, 0.15);
}

input::placeholder {
  color: #9aa69f;
}

.choice-field {
  border: 0;
  padding: 0;
}

.choice-field legend {
  margin-bottom: 9px;
  padding: 0;
}

.segmented-choice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.segmented-choice label {
  position: relative;
}

.segmented-choice input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.segmented-choice span {
  display: grid;
  min-height: 48px;
  place-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 11px;
  background: var(--surface);
  font-weight: 750;
}

.segmented-choice input:checked + span {
  border-color: var(--primary);
  background: var(--primary-soft);
  color: var(--primary);
  box-shadow: inset 0 0 0 1px var(--primary);
}

.segmented-choice input:focus-visible + span {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.step-actions {
  display: flex;
  margin-top: 30px;
  flex-direction: column-reverse;
  gap: 10px;
}

.step-actions-end {
  align-items: stretch;
}

.privacy-note {
  display: flex;
  margin-bottom: 20px;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid #b9d9cb;
  border-radius: var(--radius-sm);
  background: var(--primary-soft);
  padding: 14px;
  color: #134c39;
}

.privacy-note > span {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: #ffffff;
}

.privacy-note strong {
  display: block;
  margin-bottom: 2px;
}

.privacy-note p {
  margin-bottom: 0;
  font-size: 13px;
}

.evidence-grid {
  display: grid;
  gap: 12px;
}

.evidence-card {
  border: 1px solid var(--border);
  border-radius: 15px;
  background: #fbfcfa;
  padding: 14px;
  transition: border-color 150ms ease, background 150ms ease;
}

.evidence-card.is-ready {
  border-color: #8ac3a9;
  background: #f4fcf7;
}

.evidence-card.is-error {
  border-color: #e5aaa4;
  background: #fff7f6;
}

.evidence-card.is-processing {
  border-color: #94b8d1;
  background: #f5faff;
}

.evidence-card-top {
  display: flex;
  margin-bottom: 13px;
  align-items: flex-start;
  gap: 11px;
}

.evidence-number {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 9px;
  background: var(--surface-muted);
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 900;
}

.evidence-card-top strong {
  display: block;
  font-size: 14px;
}

.evidence-card-top p {
  margin: 3px 0 0;
  color: var(--text-muted);
  font-size: 12px;
}

.upload-zone {
  position: relative;
  display: grid;
  min-height: 104px;
  place-items: center;
  border: 1px dashed #9fb0a7;
  border-radius: 12px;
  background: #ffffff;
  color: var(--text-muted);
  padding: 14px;
  text-align: center;
  cursor: pointer;
}

.upload-zone:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.upload-zone input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.upload-zone:has(input:focus-visible) {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.upload-zone .upload-icon {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 9px;
  background: var(--surface-muted);
  color: var(--primary);
  font-size: 20px;
  font-weight: 500;
}

.upload-zone strong {
  font-size: 13px;
}

.upload-zone small {
  font-size: 11px;
}

.evidence-status {
  margin: 10px 0 0;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 650;
}

.evidence-card.is-ready .evidence-status {
  color: var(--success);
}

.evidence-card.is-error .evidence-status {
  color: var(--danger);
}

.consent-field {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: 11px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #f8faf7;
  padding: 14px;
  cursor: pointer;
}

.consent-field input {
  width: 20px;
  min-height: 20px;
  margin: 2px 0 0;
  accent-color: var(--primary);
}

.consent-field span {
  color: var(--text-muted);
  font-size: 13px;
}

.empty-state {
  margin: 0;
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  padding: 20px;
  text-align: center;
}

.preview-panel {
  background: #fbfcfa;
}

.preview-header {
  display: flex;
  margin-bottom: 22px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.preview-header h3 {
  margin-bottom: 0;
  font-size: 30px;
}

.status-badge {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface-muted);
  color: var(--text-muted);
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.status-badge.is-danger {
  border-color: #e2aaa5;
  background: var(--danger-soft);
  color: var(--danger);
}

.status-badge.is-warning {
  border-color: #e8d194;
  background: var(--warning-soft);
  color: var(--warning);
}

.status-badge.is-positive {
  border-color: #a6d4bc;
  background: var(--success-soft);
  color: var(--success);
}

.preview-headline {
  max-width: 800px;
  margin-bottom: 24px;
  font-size: 19px;
  font-weight: 680;
}

.score-grid {
  display: grid;
  gap: 12px;
}

.score-card {
  display: grid;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: var(--surface);
  padding: 16px;
}

.score-card > span {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 750;
}

.score-card > strong {
  font-size: 34px;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.score-card > p {
  margin: 2px 0 0;
  color: var(--text-muted);
  font-size: 12px;
}

.preview-findings {
  margin-top: 28px;
}

.preview-findings h4 {
  margin-bottom: 12px;
  font-size: 18px;
}

#preview-findings-list,
.findings-list {
  display: grid;
  gap: 10px;
}

.finding-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  padding: 14px;
}

.finding-row strong {
  display: block;
  font-size: 14px;
}

.finding-row p {
  margin: 4px 0 0;
  color: var(--text-muted);
  font-size: 12px;
}

.finding-row.severity-danger {
  border-left: 4px solid var(--danger);
}

.finding-row.severity-warning {
  border-left: 4px solid var(--warning);
}

.finding-row.severity-info {
  border-left: 4px solid var(--info);
}

.finding-row.severity-positive {
  border-left: 4px solid var(--success);
}

.unlock-card {
  display: grid;
  margin-block: 30px 18px;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--surface-strong);
  color: #ffffff;
}

.unlock-copy,
.unlock-action {
  padding: 22px;
}

.unlock-copy h4 {
  margin: 8px 0 6px;
  font-size: 25px;
}

.unlock-copy > p {
  color: #bcd0c7;
}

.unlock-price {
  display: inline-flex;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-ink);
  padding: 6px 10px;
  font-size: 13px;
  font-weight: 900;
}

.unlock-copy ul {
  display: grid;
  margin: 18px 0 0;
  padding: 0;
  gap: 7px;
  list-style: none;
}

.unlock-copy li {
  position: relative;
  padding-left: 22px;
  color: #d9e7e0;
  font-size: 13px;
}

.unlock-copy li::before {
  position: absolute;
  left: 0;
  color: var(--accent);
  content: "✓";
  font-weight: 900;
}

.unlock-action {
  display: grid;
  align-content: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
}

.unlock-action small {
  color: #bcd0c7;
  font-size: 11px;
  text-align: center;
}

.how-section {
  background: var(--surface-strong);
  color: #ffffff;
  padding-block: 72px;
}

.how-section .eyebrow {
  color: var(--accent);
}

.how-grid {
  display: grid;
  gap: 12px;
}

.how-grid article {
  min-height: 220px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.055);
  padding: 24px;
}

.how-grid article > span {
  display: block;
  margin-bottom: 36px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
}

.how-grid h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

.how-grid p {
  margin-bottom: 0;
  color: #bcd0c7;
  font-size: 14px;
}

.disclaimer-section {
  padding-block: 72px;
}

.disclaimer-card {
  display: grid;
  gap: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: 28px;
}

.disclaimer-card h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 7vw, 48px);
}

.disclaimer-card > p {
  align-self: end;
  margin-bottom: 0;
  color: var(--text-muted);
}

.site-footer {
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.footer-inner {
  display: grid;
  padding-block: 24px;
  gap: 16px;
}

.footer-inner p {
  margin: 0;
  color: var(--text-muted);
  font-size: 12px;
}

.brand-footer .brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 11px;
}

.live-region {
  position: fixed;
  z-index: 100;
  right: 16px;
  bottom: 16px;
  max-width: min(360px, calc(100% - 32px));
  border-radius: 12px;
  background: var(--surface-strong);
  color: #ffffff;
  box-shadow: var(--shadow-md);
  padding: 12px 14px;
  font-size: 13px;
  pointer-events: none;
}

.live-region:empty {
  display: none;
}

/* Report */
.report-body {
  background: #e9ece8;
}

.report-header {
  background: rgba(255, 255, 255, 0.94);
}

.report-wrap {
  width: min(calc(100% - 20px), 1040px);
  margin-inline: auto;
  padding-block: 24px 56px;
}

.loading-card,
.report-error {
  display: grid;
  min-height: 420px;
  place-items: center;
  align-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: 32px;
  text-align: center;
}

.loading-card h1,
.report-error h1 {
  margin: 18px 0 8px;
}

.loading-card p,
.report-error p {
  color: var(--text-muted);
}

.loader {
  width: 44px;
  height: 44px;
  border: 4px solid var(--border);
  border-right-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

.report-document {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.report-title-block {
  display: grid;
  gap: 24px;
  background: var(--surface-strong);
  color: #ffffff;
  padding: 28px 22px;
}

.report-title-block .eyebrow {
  color: var(--accent);
}

.report-title-block h1 {
  margin-bottom: 12px;
  font-size: clamp(34px, 8vw, 58px);
}

.report-meta {
  display: flex;
  margin: 0;
  flex-wrap: wrap;
  gap: 7px;
  color: #bcd0c7;
  font-size: 11px;
}

.report-meta span {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  padding: 5px 8px;
}

.report-status-block {
  display: grid;
  justify-items: start;
}

.report-status-block > strong {
  margin-top: 12px;
  color: var(--accent);
  font-size: 64px;
  font-variant-numeric: tabular-nums;
  line-height: 0.95;
}

.report-status-block > small {
  margin-top: 5px;
  color: #bcd0c7;
}

.demo-banner {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  border-bottom: 1px solid #e8d194;
  background: var(--warning-soft);
  color: var(--warning);
  padding: 12px 22px;
  font-size: 12px;
}

.report-summary,
.report-section {
  padding: 26px 22px;
}

.report-summary {
  border-bottom: 1px solid var(--border);
  background: #f8faf7;
}

.report-summary h2,
.report-section h2 {
  font-size: 25px;
}

.report-headline {
  max-width: 820px;
  font-size: 19px;
  font-weight: 680;
}

.recommendation-box {
  border-left: 4px solid var(--primary);
  border-radius: 0 12px 12px 0;
  background: var(--primary-soft);
  padding: 14px 16px;
}

.recommendation-box strong {
  display: block;
  margin-bottom: 4px;
  color: var(--primary);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.recommendation-box p {
  margin: 0;
  color: #194b3a;
}

.report-section + .report-section {
  border-top: 1px solid var(--border);
}

.report-section-heading {
  display: grid;
  margin-bottom: 20px;
  gap: 8px;
}

.report-section-heading > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.report-section-heading > div > span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 9px;
  background: var(--surface-strong);
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
}

.report-section-heading h2 {
  margin: 0;
}

.report-section-heading > p {
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
}

.compact-heading {
  margin-bottom: 14px;
}

.report-score-card > strong {
  font-size: 38px;
}

.finding-title-line {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 6px 14px;
}

.finding-title-line small {
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.report-two-column {
  display: grid;
  gap: 30px;
}

.detail-list {
  display: grid;
  margin: 0;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fbfcfa;
}

.detail-row {
  display: grid;
  grid-template-columns: minmax(110px, 0.8fr) minmax(0, 1.2fr);
  gap: 12px;
  padding: 11px 13px;
}

.detail-row + .detail-row {
  border-top: 1px solid var(--border);
}

.detail-row dt {
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 700;
}

.detail-row dd {
  margin: 0;
  overflow-wrap: anywhere;
  font-size: 12px;
  font-weight: 650;
}

.evidence-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 14px;
}

.evidence-table {
  width: 100%;
  border-collapse: collapse;
  background: #fbfcfa;
  font-size: 11px;
}

.evidence-table th,
.evidence-table td {
  border-bottom: 1px solid var(--border);
  padding: 11px 12px;
  text-align: left;
  white-space: nowrap;
}

.evidence-table tr:last-child td {
  border-bottom: 0;
}

.evidence-table th {
  color: var(--text-muted);
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.help-kit-section {
  background: #f8faf7;
}

.action-checklist {
  margin-bottom: 20px;
  border: 1px solid #bad8ca;
  border-radius: 14px;
  background: var(--primary-soft);
  padding: 18px;
}

.action-checklist h3 {
  margin-bottom: 12px;
  color: var(--primary);
  font-size: 17px;
}

.action-checklist ol {
  display: grid;
  margin: 0;
  padding-left: 20px;
  gap: 7px;
  color: #1c4c3d;
  font-size: 13px;
}

.template-grid {
  display: grid;
  gap: 12px;
}

.template-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
}

.template-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--border);
  background: #f4f7fb;
  padding: 12px 14px;
}

.template-card-header span {
  display: block;
  color: var(--primary);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.template-card-header h3 {
  margin: 3px 0 0;
  font-size: 15px;
}

.copy-button {
  min-height: 38px;
  border: 1px solid var(--border-strong);
  border-radius: 9px;
  background: var(--surface);
  color: var(--text-muted);
  padding: 7px 10px;
  font-size: 11px;
  font-weight: 800;
}

.copy-button:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.template-card pre {
  max-height: 440px;
  overflow: auto;
  margin: 0;
  background: #ffffff;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 12px;
  line-height: 1.65;
  padding: 16px;
  white-space: pre-wrap;
  word-break: break-word;
}

.limitation-section ul {
  display: grid;
  padding-left: 20px;
  gap: 8px;
  color: var(--text-muted);
  font-size: 13px;
}

.legal-disclaimer {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #f4f7fb;
  color: var(--text-muted);
  padding: 14px;
  font-size: 11px;
}

.report-footer {
  display: grid;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border);
  background: #f4f7fb;
  padding: 20px 22px;
}

.report-footer p {
  margin: 0;
  color: var(--text-muted);
  font-size: 10px;
}


/* Teyitçe marka, taslak ve rapor geçmişi geliştirmeleri */
.brand-logo-frame {
  display: inline-flex;
  min-width: 112px;
  min-height: 32px;
  align-items: center;
}

.brand-logo {
  width: auto;
  height: 32px;
  max-width: 154px;
  object-fit: contain;
  object-position: left center;
}

.brand-logo-fallback {
  color: var(--surface-strong);
  font-size: 27px;
  font-weight: 850;
  letter-spacing: -0.06em;
  line-height: 1;
}

.brand-context {
  display: none;
  max-width: 150px;
  border-left: 1px solid var(--border);
  color: var(--text-muted);
  padding-left: 10px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
}

.brand-footer .brand-logo {
  height: 28px;
  max-width: 140px;
}

.draft-toolbar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, var(--primary-soft), #ffffff);
  color: var(--text-muted);
  padding: 12px 18px;
  font-size: 12px;
}

.draft-clear {
  min-height: 36px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 800;
}

.draft-clear:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.recent-reports-section {
  padding-block: 36px 72px;
}

.recent-heading {
  margin-bottom: 22px;
}

.recent-reports-grid {
  display: grid;
  gap: 14px;
}

.recent-report-card {
  display: grid;
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  padding: 18px;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.recent-report-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.recent-report-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.recent-report-card h3 {
  overflow: hidden;
  margin: 16px 0 7px;
  font-size: 20px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.recent-risk {
  color: var(--text);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}

.recent-report-meta {
  margin: 0;
  color: var(--text-muted);
  font-size: 12px;
}

.recent-report-action {
  margin-top: 16px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 850;
}

@media (min-width: 560px) {
  .draft-toolbar {
    flex-direction: row;
    align-items: center;
  }

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

@media (min-width: 760px) {
  .brand-logo {
    height: 38px;
    max-width: 190px;
  }

  .brand-context {
    display: inline-block;
  }
}

@media (min-width: 1040px) {
  .recent-reports-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 560px) {
  .price-pill {
    display: inline-flex;
  }

  .hero-actions {
    flex-direction: row;
  }

  .step-actions {
    flex-direction: row;
    justify-content: space-between;
  }

  .step-actions-end {
    justify-content: flex-end;
  }

  .form-step,
  .preview-panel {
    padding: 32px;
  }

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

  .field-full,
  .choice-field.field-full,
  .consent-field.field-full {
    grid-column: 1 / -1;
  }

  .evidence-grid,
  .score-grid-compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .report-title-block {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
  }

  .report-status-block {
    justify-items: end;
    text-align: right;
  }

  .report-status-block .status-badge {
    justify-self: end;
  }

  .report-footer {
    grid-template-columns: auto 1fr;
  }

  .report-footer p {
    text-align: right;
  }
}

@media (min-width: 760px) {
  .section-wrap {
    width: min(calc(100% - 48px), var(--content));
  }

  .header-inner {
    width: min(calc(100% - 48px), var(--content));
  }

  .text-link {
    display: inline-flex;
  }

  .hero {
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.72fr);
    gap: 48px;
    padding-block: 78px 84px;
  }

  .hero h1 {
    font-size: clamp(58px, 7vw, 86px);
  }

  .trust-band-inner {
    display: flex;
    justify-content: center;
    gap: 8px;
    text-align: left;
  }

  .checker-heading,
  .section-heading {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
    align-items: end;
  }

  .stepper-item {
    display: flex;
    min-height: 68px;
    justify-content: center;
    gap: 8px;
  }

  .stepper-item strong {
    font-size: 13px;
  }

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

  .unlock-card {
    grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  }

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

  .disclaimer-card {
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    align-items: end;
    padding: 42px;
  }

  .footer-inner {
    grid-template-columns: auto 1fr;
    align-items: center;
  }

  .footer-inner p {
    text-align: right;
  }

  .report-wrap {
    width: min(calc(100% - 48px), 1040px);
    padding-block: 42px 72px;
  }

  .report-title-block,
  .report-summary,
  .report-section {
    padding-inline: 42px;
  }

  .report-section-heading {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.65fr);
    align-items: center;
  }

  .compact-heading {
    grid-template-columns: 1fr;
  }

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

  .report-two-column {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  }

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

  .template-card-wide {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1040px) {
  .form-step,
  .preview-panel {
    padding: 44px 52px;
  }

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

  .report-score-card:nth-child(4),
  .report-score-card:nth-child(5) {
    grid-column: span 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  @page {
    size: A4;
    margin: 12mm;
  }

  :root {
    --text: #111111;
    --text-muted: #444444;
    --border: #c9c9c9;
  }

  body,
  .report-body {
    background: #ffffff;
    color: #111111;
    font-size: 10pt;
  }

  .no-print,
  .live-region,
  .copy-button {
    display: none !important;
  }

  .report-wrap {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .report-document {
    overflow: visible;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .report-title-block {
    background: #ffffff;
    color: #111111;
    padding: 0 0 8mm;
  }

  .report-title-block .eyebrow,
  .report-status-block > strong {
    color: #111111;
  }

  .report-meta,
  .report-status-block > small {
    color: #444444;
  }

  .report-meta span {
    border-color: #bdbdbd;
  }

  .status-badge {
    border-color: #777777 !important;
    background: #ffffff !important;
    color: #111111 !important;
  }

  .demo-banner {
    border: 1px solid #777777;
    background: #ffffff;
    color: #111111;
  }

  .report-summary,
  .report-section,
  .report-footer {
    background: #ffffff;
    padding-inline: 0;
  }

  .score-card,
  .finding-row,
  .detail-list,
  .evidence-table-wrap,
  .template-card,
  .action-checklist,
  .legal-disclaimer {
    break-inside: avoid;
    background: #ffffff !important;
    box-shadow: none;
  }

  .template-card pre {
    max-height: none;
    overflow: visible;
    font-size: 8.5pt;
  }

  progress {
    border: 1px solid #777777;
  }

  .report-section-heading > div > span,
  .brand-mark {
    border: 1px solid #111111;
    background: #ffffff;
    color: #111111;
  }
}

/* Teyitçe v0.3 — rapor doğrulama */
.verify-page { min-height: 100vh; background: #f5f8fc; }
.verify-main { padding-top: 64px; padding-bottom: 80px; }
.verify-hero { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 40px; padding: 34px 0 40px; }
.verify-hero h1 { max-width: 780px; margin: 8px 0 16px; font-size: clamp(2.2rem, 5vw, 4.3rem); line-height: 1.02; letter-spacing: -0.06em; }
.verify-hero p:not(.eyebrow) { max-width: 720px; color: var(--muted); font-size: 1.05rem; line-height: 1.7; }
.verify-shield { width: 140px; height: 140px; display: grid; place-items: center; border: 17px solid #dce9fb; border-radius: 50%; background: #1768e5; box-shadow: 0 22px 50px rgba(23,104,229,0.22); }
.verify-shield span { color: #fff; font-size: 4rem; font-weight: 800; transform: translateY(-3px); }
.verify-search-card { display: grid; grid-template-columns: minmax(250px, 0.85fr) minmax(350px, 1.15fr); align-items: end; gap: 30px; padding: 28px; border: 1px solid var(--border); border-radius: 22px; background: #fff; box-shadow: var(--shadow-sm); }
.verify-search-card h2 { margin: 0 0 8px; font-size: 1.45rem; }
.verify-search-card p { margin: 0; color: var(--muted); line-height: 1.55; }
.verify-form { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 10px; }
.verify-form input { width: 100%; min-height: 50px; border: 1px solid var(--border); border-radius: 11px; padding: 10px 14px; font: inherit; text-transform: uppercase; letter-spacing: 0.04em; }
.verify-form input:focus { border-color: var(--primary); outline: 3px solid rgba(23,104,229,0.14); }
.verify-message { grid-column: 1 / -1; margin-top: 16px; padding: 12px 14px; border-radius: 10px; }
.verify-message.is-error { color: #922c23; background: #ffefed; border: 1px solid #f3c7c1; }
.verify-result { margin-top: 22px; padding: 30px; border: 1px solid #cfe1f9; border-radius: 22px; background: #fff; box-shadow: 0 18px 50px rgba(13,27,47,0.08); scroll-margin-top: 110px; }
.verify-result-head { display: flex; align-items: center; gap: 16px; padding-bottom: 22px; border-bottom: 1px solid var(--border); }
.verify-result-icon { width: 58px; height: 58px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; color: #fff; background: #1768e5; font-size: 1.8rem; font-weight: 800; }
.verify-result-head h2 { margin: 5px 0 3px; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: clamp(1.15rem,3vw,1.65rem); }
.verify-result-head p { margin: 0; color: var(--muted); }
.verify-result-grid { display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); gap: 12px; margin-top: 22px; }
.verify-detail { padding: 15px; border: 1px solid var(--border); border-radius: 12px; background: #f8fafc; }
.verify-detail span { display: block; color: var(--muted); font-size: 0.76rem; }
.verify-detail strong { display: block; margin-top: 7px; overflow-wrap: anywhere; }
.verify-review { margin-top: 18px; padding: 18px; border: 1px solid #d9e5f5; border-radius: 14px; background: #f4f8fe; }
.verify-review-heading { display: flex; justify-content: space-between; gap: 14px; }
.verify-review-heading span { color: var(--primary); font-weight: 700; }
.verify-review p { margin: 12px 0 0; }
.verify-review blockquote { margin: 14px 0 0; padding: 13px 15px; border-left: 4px solid var(--primary); background: #fff; }
.verify-disclaimer { margin: 18px 0 0; color: var(--muted); font-size: 0.83rem; line-height: 1.55; }
.verify-info-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 16px; margin-top: 24px; }
.verify-info-grid article { padding: 21px; border: 1px solid var(--border); border-radius: 16px; background: #fff; }
.verify-info-grid p { margin: 8px 0 0; color: var(--muted); line-height: 1.6; }
@media (max-width: 900px) {
  .verify-search-card { grid-template-columns: 1fr; align-items: stretch; }
  .verify-result-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .verify-info-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .verify-main { padding-top: 28px; }
  .verify-hero { grid-template-columns: 1fr; }
  .verify-shield { width: 90px; height: 90px; border-width: 11px; }
  .verify-shield span { font-size: 2.6rem; }
  .verify-search-card, .verify-result { padding: 20px; }
  .verify-form { grid-template-columns: 1fr; }
  .verify-result-grid { grid-template-columns: 1fr; }
  .verify-review-heading { flex-direction: column; }
}

/* Teyitçe v0.3 — çalışma zamanı duyurusu, uzman ve geri bildirim */
.announcement-band { border-bottom: 1px solid #d4e2f6; background: #edf5ff; color: #17395f; }
.announcement-band .section-wrap { display: flex; align-items: center; gap: 12px; min-height: 44px; font-size: 0.88rem; }
.announcement-band strong { color: var(--primary); white-space: nowrap; }
.footer-links { display: flex; align-items: center; gap: 16px; }
.expert-review-shell { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 28px; align-items: center; padding: 26px; border: 1px solid #cee0f8; border-radius: 18px; background: linear-gradient(135deg, #f8fbff, #eef5ff); }
.expert-review-copy h3 { margin: 10px 0 8px; font-size: 1.25rem; }
.expert-review-copy > p { margin: 0; color: var(--muted); line-height: 1.65; }
.expert-review-status { display: inline-flex; min-height: 28px; align-items: center; padding: 5px 10px; border-radius: 99px; background: #fff; border: 1px solid var(--border); color: var(--muted); font-size: 0.78rem; font-weight: 750; }
.expert-review-status.is-positive { color: #126347; background: #e7f8f1; border-color: #bfe9d9; }
.expert-review-status.is-warning { color: #805000; background: #fff3dc; border-color: #f0d9a9; }
.expert-review-status.is-danger { color: #942c23; background: #ffefed; border-color: #f2c8c3; }
.expert-review-action { min-width: 210px; display: grid; justify-items: end; gap: 4px; }
.expert-review-action strong { font-size: 1.65rem; letter-spacing: -0.04em; }
.expert-review-action > span { color: var(--muted); font-size: 0.8rem; }
.expert-review-action .button { margin-top: 10px; }
.expert-review-history { display: grid; gap: 8px; margin-top: 18px; }
.expert-review-history-row { display: grid; grid-template-columns: 145px minmax(120px,0.5fr) minmax(0,1fr); gap: 12px; padding: 10px 12px; border-radius: 10px; background: #fff; font-size: 0.8rem; }
.expert-review-history-row time, .expert-review-history-row span { color: var(--muted); }
.feedback-form { display: grid; gap: 20px; padding: 24px; border: 1px solid var(--border); border-radius: 18px; background: #fff; }
.feedback-form fieldset { margin: 0; padding: 0; border: 0; }
.feedback-form legend { margin-bottom: 12px; font-weight: 750; }
.rating-options { display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); gap: 9px; }
.rating-options label { position: relative; display: grid; justify-items: center; gap: 4px; padding: 13px 8px; border: 1px solid var(--border); border-radius: 11px; cursor: pointer; background: #fff; }
.rating-options label:has(input:checked) { color: var(--primary); border-color: var(--primary); background: #eef5ff; box-shadow: 0 0 0 3px rgba(23,104,229,0.09); }
.rating-options input { position: absolute; opacity: 0; pointer-events: none; }
.rating-options span { font-size: 1.25rem; font-weight: 800; }
.rating-options small { color: var(--muted); font-size: 0.7rem; }
.feedback-comment { display: grid; gap: 8px; }
.feedback-comment > span { font-weight: 700; }
.feedback-comment em { color: var(--muted); font-weight: 500; }
.feedback-comment textarea { width: 100%; min-height: 95px; resize: vertical; border: 1px solid var(--border); border-radius: 11px; padding: 12px; font: inherit; }
.feedback-comment textarea:focus { border-color: var(--primary); outline: 3px solid rgba(23,104,229,0.12); }
.feedback-actions { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.feedback-actions span { color: var(--muted); font-size: 0.83rem; }
@media (max-width: 760px) {
  .announcement-band .section-wrap { align-items: flex-start; flex-direction: column; gap: 2px; padding-top: 9px; padding-bottom: 9px; }
  .expert-review-shell { grid-template-columns: 1fr; }
  .expert-review-action { justify-items: start; min-width: 0; }
  .expert-review-history-row { grid-template-columns: 1fr; gap: 3px; }
  .rating-options { grid-template-columns: repeat(5,minmax(54px,1fr)); overflow-x: auto; }
  .feedback-actions { align-items: stretch; flex-direction: column; }
  .feedback-actions .button { width: 100%; }
  .footer-links { width: 100%; justify-content: center; }
}
