:root {
  --ink: #111719;
  --ink-soft: #273033;
  --ink-muted: #5c6667;
  --paper: #f4f0e7;
  --paper-bright: #fffdf8;
  --paper-muted: #e8e2d7;
  --line: rgba(17, 23, 25, 0.16);
  --line-dark: rgba(255, 255, 255, 0.16);
  --orange: #e95f2d;
  --orange-dark: #b93e18;
  --orange-soft: #ffd9c8;
  --teal: #287c70;
  --teal-soft: #cce9df;
  --yellow: #e5a72d;
  --danger: #c53d2d;
  --shadow: 0 26px 75px rgba(18, 25, 26, 0.15);
  --radius: 20px;
  --radius-small: 12px;
  --shell: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

button,
textarea,
input {
  font: inherit;
}

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

button {
  color: inherit;
}

a {
  color: inherit;
}

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

strong {
  font-weight: 720;
}

[hidden] {
  display: none !important;
}

.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-180%);
  padding: 11px 16px;
  border-radius: 8px;
  color: #fff;
  background: var(--ink);
  text-decoration: none;
}

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

:focus-visible {
  outline: 3px solid #ff9b70;
  outline-offset: 3px;
}

.trust-strip {
  position: relative;
  z-index: 20;
  color: rgba(255, 255, 255, 0.76);
  background: #0b1012;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 0.74rem;
  letter-spacing: 0.02em;
}

.trust-strip__inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
}

.trust-strip__inner span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.trust-strip strong {
  color: #fff;
}

.status-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  display: inline-block;
  border-radius: 50%;
  background: #5cc7a9;
  box-shadow: 0 0 0 4px rgba(92, 199, 169, 0.12);
}

.site-header {
  position: relative;
  z-index: 15;
  color: #fff;
  background: var(--ink);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 760;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.brand > span:last-child > span {
  color: #ff8b5d;
}

.brand-mark {
  position: relative;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span {
  content: "";
  position: absolute;
  width: 3px;
  border-radius: 2px;
  background: #ff8b5d;
}

.brand-mark::before {
  height: 7px;
  transform: translateX(-7px);
}

.brand-mark span {
  height: 15px;
}

.brand-mark::after {
  height: 21px;
  transform: translateX(7px);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}

.desktop-nav a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
  font-weight: 620;
  text-decoration: none;
  transition: color 160ms ease;
}

.desktop-nav a:hover {
  color: #fff;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 720;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.button--small {
  min-height: 39px;
  padding: 9px 14px;
  font-size: 0.76rem;
}

.button--outline {
  color: rgba(255, 255, 255, 0.88);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

.button--outline:hover {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
}

.button--primary {
  color: #fff;
  background: var(--orange);
  box-shadow: 0 8px 24px rgba(185, 62, 24, 0.22);
}

.button--primary:hover {
  background: #d95121;
}

.button--outline-dark {
  border-color: rgba(17, 23, 25, 0.32);
  background: transparent;
}

.button--outline-dark:hover {
  border-color: var(--ink);
}

.button--ghost {
  background: rgba(17, 23, 25, 0.06);
}

.button--ghost:hover {
  background: rgba(17, 23, 25, 0.1);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  color: #fff;
  background:
    radial-gradient(circle at 16% 28%, rgba(42, 126, 114, 0.19), transparent 28%),
    linear-gradient(135deg, #111719 0%, #172022 58%, #101617 100%);
}

.hero::after {
  content: "";
  position: absolute;
  width: 410px;
  height: 410px;
  right: -170px;
  top: 160px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(255, 255, 255, 0.018), 0 0 0 180px rgba(255, 255, 255, 0.012);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.28) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.28) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(to right, #000, transparent 72%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  gap: 72px;
  align-items: start;
  padding-block: 70px 84px;
}

.hero-copy {
  padding-top: 42px;
}

.eyebrow,
.section-kicker,
.step-kicker {
  color: var(--orange-dark);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow {
  color: rgba(255, 255, 255, 0.58);
}

.eyebrow span {
  display: inline-block;
  margin-right: 9px;
  padding: 4px 8px;
  color: #ffd6c6;
  border: 1px solid rgba(255, 139, 93, 0.32);
  border-radius: 999px;
  letter-spacing: 0.08em;
}

.hero h1,
.section-heading h2,
.privacy-copy h2,
.ai-layout h2,
.results-topline h2 {
  margin: 20px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 5.2vw, 5.25rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.hero h1 em,
.section-heading h2 em,
.privacy-copy h2 em,
.ai-layout h2 em,
.results-topline h2 em {
  color: #ff8b5d;
  font-weight: 400;
}

.hero-lead {
  max-width: 520px;
  margin: 27px 0 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 1rem;
  line-height: 1.75;
}

.hero-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 40px 0 30px;
}

.hero-principles > div {
  min-width: 0;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-principles strong {
  display: block;
  margin-bottom: 6px;
  color: #ff8b5d;
  font-family: Georgia, serif;
  font-size: 1rem;
  font-weight: 400;
}

.hero-principles span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.72rem;
  line-height: 1.4;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}

.text-link span {
  color: #ff8b5d;
  font-size: 1.2rem;
}

.analyzer-card {
  color: var(--ink);
  background: var(--paper-bright);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.analyzer-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 28px 20px;
}

.step-kicker {
  display: block;
  margin-bottom: 6px;
}

.analyzer-head h2 {
  margin: 0;
  font-size: 1.27rem;
  letter-spacing: -0.03em;
}

.local-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  padding: 6px 9px;
  color: #27665e;
  background: var(--teal-soft);
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 780;
}

.local-badge i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
}

.analyzer-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-inline: 28px;
  border-bottom: 1px solid var(--line);
}

.analyzer-tab {
  position: relative;
  padding: 11px 12px 12px;
  border: 0;
  color: var(--ink-muted);
  background: transparent;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 720;
}

.analyzer-tab::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  background: var(--orange);
  transition: transform 160ms ease;
}

.analyzer-tab.is-active {
  color: var(--ink);
}

.analyzer-tab.is-active::after {
  transform: scaleX(1);
}

.tab-panel {
  padding: 20px 28px 0;
}

.field-label {
  display: block;
  margin-bottom: 8px;
  color: var(--ink-soft);
  font-size: 0.73rem;
  font-weight: 760;
}

.field-label--spaced {
  margin-top: 16px;
}

textarea {
  width: 100%;
  min-height: 126px;
  display: block;
  resize: vertical;
  padding: 14px 15px;
  border: 1px solid rgba(17, 23, 25, 0.2);
  border-radius: 10px;
  color: var(--ink);
  background: #fff;
  font-size: 0.87rem;
  line-height: 1.55;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

textarea::placeholder {
  color: #8d9594;
}

textarea:focus {
  border-color: var(--teal);
  outline: none;
  box-shadow: 0 0 0 3px rgba(40, 124, 112, 0.13);
}

.field-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding-top: 7px;
  color: #737c7c;
  font-size: 0.64rem;
}

.field-meta span:first-child {
  max-width: 78%;
}

.upload-zone {
  position: relative;
  min-height: 126px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border: 1px dashed rgba(17, 23, 25, 0.3);
  border-radius: 12px;
  cursor: pointer;
  background: #f8f6f0;
  text-align: center;
  transition: border-color 160ms ease, background 160ms ease;
}

.upload-zone:hover,
.upload-zone.is-dragging,
.upload-zone:focus-within {
  border-color: var(--teal);
  background: #f0f6f2;
}

.file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.upload-zone strong {
  margin-top: 3px;
  font-size: 0.82rem;
}

.upload-zone small {
  margin-top: 3px;
  color: #747d7d;
  font-size: 0.65rem;
}

.upload-icon {
  color: var(--orange);
  font-size: 1.7rem;
  line-height: 1;
}

.image-workspace {
  margin-top: 14px;
}

.image-preview-wrap {
  position: relative;
  max-height: 210px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #edf0ed;
}

.image-preview-wrap img {
  max-height: 210px;
  object-fit: contain;
}

.icon-button {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  color: #fff;
  background: rgba(17, 23, 25, 0.86);
  font-size: 1.3rem;
  line-height: 1;
}

.image-preview-wrap .icon-button {
  position: absolute;
  top: 9px;
  right: 9px;
}

.ocr-note {
  margin-top: 8px;
  padding: 9px 11px;
  border-left: 3px solid var(--teal);
  color: #52605f;
  background: #eef5f1;
  font-size: 0.68rem;
}

.ocr-note:empty {
  display: none;
}

.ocr-progress {
  margin-top: 9px;
  padding: 11px;
  border: 1px solid rgba(40, 124, 112, 0.2);
  border-radius: 10px;
  background: #f7faf8;
}

.ocr-progress__head,
.ocr-progress__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.ocr-progress__head {
  color: #344846;
  font-size: 0.68rem;
  font-weight: 720;
}

.ocr-progress__head span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.ocr-progress__head strong {
  flex: 0 0 auto;
  color: var(--teal);
  font-size: 0.66rem;
}

.ocr-progress__track {
  height: 7px;
  overflow: hidden;
  margin-top: 9px;
  border-radius: 999px;
  background: #dfe8e3;
}

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

.ocr-progress__actions {
  margin-top: 9px;
}

.ocr-progress__actions small {
  color: #6b7775;
  font-size: 0.6rem;
}

.ocr-progress__actions button {
  min-height: 34px;
  flex: 0 0 auto;
  padding: 6px 10px;
  border: 1px solid rgba(17, 23, 25, 0.18);
  border-radius: 8px;
  cursor: pointer;
  color: #3d4a48;
  background: #fff;
  font: inherit;
  font-size: 0.63rem;
  font-weight: 730;
}

.ocr-progress__actions button:hover,
.ocr-progress__actions button:focus-visible {
  border-color: var(--teal);
  outline: none;
  color: var(--teal);
}

.incident-fieldset {
  margin: 18px 28px 0;
  padding: 0;
  border: 0;
}

.incident-fieldset legend {
  margin-bottom: 8px;
  color: var(--ink-soft);
  font-size: 0.73rem;
  font-weight: 760;
}

.incident-options {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.incident-options label {
  position: relative;
  cursor: pointer;
}

.incident-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.incident-options span {
  min-height: 33px;
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border: 1px solid rgba(17, 23, 25, 0.16);
  border-radius: 999px;
  color: #586160;
  background: #fff;
  font-size: 0.64rem;
  font-weight: 680;
}

.incident-options input:checked + span {
  color: #1b5e56;
  border-color: rgba(40, 124, 112, 0.45);
  background: #e5f2ed;
}

.incident-options input:focus-visible + span {
  outline: 3px solid #ff9b70;
  outline-offset: 2px;
}

.example-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  padding: 14px 28px 0;
  color: #7a8281;
  font-size: 0.64rem;
}

.example-row button {
  padding: 2px 0;
  border: 0;
  border-bottom: 1px dotted #777;
  cursor: pointer;
  color: #485352;
  background: transparent;
  font-size: inherit;
  font-weight: 680;
}

.privacy-preview {
  margin: 16px 28px 0;
  border: 1px solid rgba(40, 124, 112, 0.22);
  border-radius: 10px;
  background: #f2f7f4;
}

.privacy-preview summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  cursor: pointer;
  color: #36635d;
  font-size: 0.66rem;
  font-weight: 720;
  list-style: none;
}

.privacy-preview summary::-webkit-details-marker {
  display: none;
}

.privacy-preview summary span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.privacy-preview summary i {
  width: 8px;
  height: 8px;
  border: 2px solid var(--teal);
  border-radius: 50%;
}

#detectedCount {
  color: #6c7775;
  font-weight: 620;
}

.privacy-preview__body {
  padding: 0 12px 12px;
}

.privacy-preview__body p {
  margin: 0 0 8px;
  color: #697370;
  font-size: 0.63rem;
}

.privacy-preview pre {
  max-height: 150px;
  overflow: auto;
  margin: 0;
  padding: 10px;
  white-space: pre-wrap;
  word-break: break-word;
  border-radius: 7px;
  color: #394443;
  background: #e7efeb;
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.66rem;
}

.analyzer-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 28px 26px;
}

.analyzer-actions .button {
  flex: 1;
}

.zero-cost {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  color: #727b7a;
  font-size: 0.65rem;
  font-weight: 680;
}

.zero-cost i {
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(40, 124, 112, 0.35);
  border-radius: 50%;
  color: var(--teal);
  font-style: normal;
  font-size: 0.6rem;
}

.form-error {
  margin: -12px 28px 24px;
  padding: 9px 11px;
  border-left: 3px solid var(--danger);
  color: #78271d;
  background: #fae8e4;
  font-size: 0.7rem;
}

.results-section {
  padding: 88px 0;
  background: #ede8de;
}

.results-topline {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 38px;
}

.results-topline h2,
.section-heading h2,
.privacy-copy h2,
.ai-layout h2 {
  margin-top: 12px;
  font-size: clamp(2.55rem, 4.3vw, 4.4rem);
  color: var(--ink);
}

.results-topline h2 em,
.section-heading h2 em,
.ai-layout h2 em {
  color: var(--orange-dark);
}

.results-actions {
  display: flex;
  gap: 8px;
}

.result-grid {
  display: grid;
  grid-template-columns: 0.83fr 1.17fr;
  gap: 18px;
}

.risk-card,
.signals-card {
  min-height: 390px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.risk-card {
  padding: 27px;
  color: #fff;
  background: var(--ink);
  border-color: transparent;
}

.risk-card.is-low {
  background: #173934;
}

.risk-card.is-moderate {
  background: #4a3919;
}

.risk-card.is-high,
.risk-card.is-critical {
  background: #48221e;
}

.risk-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.64rem;
  font-weight: 680;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.risk-gauge {
  position: relative;
  margin: 34px 0 24px;
}

.risk-gauge__track {
  height: 8px;
  overflow: hidden;
  margin-bottom: 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
}

.risk-gauge__track span {
  width: 0;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: #ff8b5d;
  transition: width 600ms cubic-bezier(.2,.8,.2,1);
}

.risk-gauge > strong {
  font-family: Georgia, serif;
  font-size: 4.6rem;
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.risk-gauge > small {
  margin-left: 5px;
  color: rgba(255, 255, 255, 0.42);
}

.risk-card h3 {
  margin: 0 0 9px;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.risk-card > p {
  min-height: 50px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.83rem;
}

.risk-disclaimer {
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.66rem;
}

.signals-card {
  padding: 27px;
  background: var(--paper-bright);
}

.card-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--line);
}

.card-title-row h3 {
  margin: 4px 0 0;
  font-size: 1.22rem;
  letter-spacing: -0.03em;
}

.count-pill {
  padding: 5px 8px;
  white-space: nowrap;
  border-radius: 999px;
  color: #6b4540;
  background: var(--orange-soft);
  font-size: 0.63rem;
  font-weight: 740;
}

.signal-list {
  display: grid;
  gap: 10px;
  padding-top: 16px;
}

.signal-item {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
  padding: 11px 0;
  border-bottom: 1px solid rgba(17, 23, 25, 0.09);
}

.signal-item:last-child {
  border-bottom: 0;
}

.signal-item__icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--orange-dark);
  background: var(--orange-soft);
  font-size: 0.78rem;
  font-weight: 800;
}

.signal-item h4 {
  margin: 0 0 3px;
  font-size: 0.78rem;
}

.signal-item p {
  margin: 0;
  color: #66706f;
  font-size: 0.68rem;
  line-height: 1.45;
}

.signal-item__weight {
  padding-top: 4px;
  color: #8c4c3b;
  font-size: 0.62rem;
  font-weight: 760;
}

.empty-signal {
  margin: 12px 0 0;
  padding: 20px;
  border: 1px dashed rgba(17, 23, 25, 0.2);
  border-radius: 12px;
  color: #596461;
  background: #f5f4ee;
  font-size: 0.76rem;
}

.action-plan {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 55px;
  margin-top: 18px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-bright);
}

.action-plan h3 {
  margin: 7px 0 10px;
  font-family: Georgia, serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.action-plan__intro p {
  margin: 0;
  color: #66706f;
  font-size: 0.78rem;
}

.action-steps {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: actions;
}

.action-steps li {
  position: relative;
  min-height: 60px;
  padding: 2px 0 17px 48px;
  border-bottom: 1px solid rgba(17, 23, 25, 0.11);
  counter-increment: actions;
}

.action-steps li + li {
  padding-top: 16px;
}

.action-steps li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.action-steps li::before {
  content: counter(actions, decimal-leading-zero);
  position: absolute;
  top: 2px;
  left: 0;
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(17, 23, 25, 0.2);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 0.66rem;
}

.action-steps li + li::before {
  top: 16px;
}

.action-steps strong {
  display: block;
  margin-bottom: 3px;
  font-size: 0.79rem;
}

.action-steps span {
  display: block;
  color: #66706f;
  font-size: 0.68rem;
}

.result-footnote {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 18px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: transparent;
}

.result-footnote div {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  font-size: 0.72rem;
}

.result-footnote div span {
  color: var(--teal);
  font-size: 1.2rem;
}

.result-footnote p {
  max-width: 570px;
  margin: 0;
  color: #6c7574;
  font-size: 0.65rem;
  text-align: right;
}

.comparison-section,
.method-section,
.ai-section,
.sources-section,
.faq-section {
  padding: 105px 0;
}

.comparison-section {
  background: var(--paper-bright);
}

.section-heading {
  margin-bottom: 48px;
}

.section-heading--split {
  display: grid;
  grid-template-columns: 1fr 0.62fr;
  align-items: end;
  gap: 80px;
}

.section-heading--split > p {
  margin: 0 0 6px;
  color: #697272;
  font-size: 0.88rem;
  line-height: 1.75;
}

.comparison-table {
  border-top: 1px solid var(--ink);
}

.comparison-row {
  display: grid;
  grid-template-columns: 0.72fr 1fr 1.15fr;
  gap: 22px;
  align-items: center;
  min-height: 72px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
}

.comparison-row > * {
  font-size: 0.76rem;
}

.comparison-row > span {
  color: #66706f;
}

.comparison-row > span:last-child {
  color: var(--ink);
  font-weight: 680;
}

.comparison-row--head {
  min-height: 45px;
  color: #727b7a;
  background: #efede7;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.comparison-row--head span {
  font-size: 0.6rem;
  font-weight: 760;
}

.mini-check {
  width: 21px;
  height: 21px;
  display: inline-grid;
  place-items: center;
  margin-right: 8px;
  border-radius: 50%;
  color: #fff;
  background: var(--teal);
  font-size: 0.65rem;
  font-style: normal;
}

.method-section {
  background: var(--paper);
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ink);
}

.method-grid article {
  position: relative;
  min-height: 325px;
  padding: 28px 24px 25px;
  border-right: 1px solid var(--line);
}

.method-grid article:first-child {
  border-left: 1px solid var(--line);
}

.method-number {
  display: block;
  color: #858d8b;
  font-family: Georgia, serif;
  font-size: 0.8rem;
}

.method-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin: 40px 0 24px;
  border: 1px solid rgba(17, 23, 25, 0.25);
  border-radius: 50%;
  color: var(--orange-dark);
  font-size: 1.4rem;
}

.method-grid h3 {
  margin: 0 0 10px;
  font-size: 1rem;
}

.method-grid p {
  margin: 0;
  color: #687270;
  font-size: 0.72rem;
  line-height: 1.6;
}

.method-tag {
  position: absolute;
  bottom: 25px;
  left: 24px;
  padding: 5px 8px;
  border: 1px solid rgba(17, 23, 25, 0.16);
  border-radius: 999px;
  color: #6a7371;
  font-size: 0.58rem;
  font-weight: 690;
}

.privacy-section {
  padding: 110px 0;
  color: #fff;
  background: var(--ink);
}

.privacy-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 95px;
  align-items: center;
}

.section-kicker--light {
  color: #ff9a72;
}

.privacy-copy h2 {
  color: #fff;
}

.privacy-copy h2 em {
  color: #ff8b5d;
}

.privacy-copy > p {
  max-width: 530px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.privacy-checks {
  display: grid;
  gap: 0;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-dark);
}

.privacy-checks li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-dark);
}

.privacy-checks li > span {
  color: #ff8b5d;
  font-family: Georgia, serif;
  font-size: 0.72rem;
}

.privacy-checks strong,
.privacy-checks small {
  display: block;
}

.privacy-checks strong {
  font-size: 0.77rem;
}

.privacy-checks small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.65rem;
}

.data-flow {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 85px 1fr;
  grid-template-rows: auto 78px auto;
  align-items: center;
}

.flow-card {
  position: relative;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
}

.flow-card > span {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.6);
  font-family: Georgia, serif;
  font-size: 0.65rem;
}

.flow-card strong {
  font-size: 0.82rem;
}

.flow-card small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.47);
  font-size: 0.63rem;
}

.flow-card--source {
  grid-column: 1;
  grid-row: 1;
}

.flow-card--process {
  grid-column: 3;
  grid-row: 1;
  border-color: rgba(255, 139, 93, 0.4);
  background: rgba(233, 95, 45, 0.08);
}

.flow-card--result {
  grid-column: 3;
  grid-row: 3;
  border-color: rgba(92, 199, 169, 0.34);
  background: rgba(40, 124, 112, 0.1);
}

.flow-arrow {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #ff8b5d;
  font-size: 1.2rem;
}

.flow-arrow span {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.37);
  font-size: 0.53rem;
}

.flow-blocked {
  grid-column: 1 / 3;
  grid-row: 3;
  align-self: center;
  padding-right: 25px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.64rem;
  text-align: right;
}

.flow-blocked span {
  width: 23px;
  height: 23px;
  display: inline-grid;
  place-items: center;
  margin-right: 7px;
  border: 1px solid rgba(255, 139, 93, 0.5);
  border-radius: 50%;
  color: #ff8b5d;
}

.ai-section {
  background: var(--paper-bright);
}

.ai-layout {
  display: grid;
  grid-template-columns: 1fr 0.76fr;
  gap: 105px;
  align-items: center;
}

.ai-layout > div:first-child > p {
  max-width: 600px;
  margin: 24px 0 0;
  color: #697270;
  font-size: 0.9rem;
  line-height: 1.75;
}

.budget-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f0eee8;
  box-shadow: 15px 15px 0 #dcd6cb;
}

.budget-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #6d7674;
  font-size: 0.65rem;
  font-weight: 730;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.disabled-pill {
  padding: 5px 8px;
  color: #2e625b;
  border-radius: 999px;
  background: var(--teal-soft);
  font-size: 0.55rem;
  letter-spacing: 0.05em;
}

.budget-card > strong {
  display: block;
  margin: 30px 0 11px;
  font-family: Georgia, serif;
  font-size: 3.4rem;
  font-weight: 400;
  letter-spacing: -0.06em;
}

.budget-bar {
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: #d8d4cb;
}

.budget-bar span {
  width: 3%;
  height: 100%;
  display: block;
  background: var(--teal);
}

.budget-card ul {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.budget-card li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: #5f6866;
  font-size: 0.69rem;
}

.budget-card li strong {
  color: var(--ink);
}

.budget-card > p {
  margin: 18px 0 0;
  color: #747c7a;
  font-size: 0.61rem;
}

.sources-section {
  background: var(--paper);
}

.source-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
}

.source-grid a {
  position: relative;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px 55px 22px 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: background 160ms ease;
}

.source-grid a:nth-child(3n + 1) {
  border-left: 1px solid var(--line);
}

.source-grid a:hover {
  background: var(--paper-bright);
}

.source-grid a span {
  margin-bottom: 5px;
  color: var(--orange-dark);
  font-size: 0.62rem;
  font-weight: 780;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.source-grid a strong {
  font-size: 0.78rem;
}

.source-grid a i {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #7b8481;
  font-style: normal;
}

.emergency-note {
  display: grid;
  grid-template-columns: 0.48fr 1fr;
  gap: 35px;
  align-items: center;
  margin-top: 28px;
  padding: 20px 22px;
  color: #fff;
  border-radius: 12px;
  background: var(--ink);
}

.emergency-note strong {
  color: #ff9a72;
  font-size: 0.76rem;
}

.emergency-note span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.72rem;
}

.faq-section {
  background: var(--paper-bright);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.66fr 1fr;
  gap: 90px;
}

.faq-list {
  border-top: 1px solid var(--ink);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 20px 42px 20px 0;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 720;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 18px;
  right: 3px;
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  max-width: 650px;
  margin: -5px 0 20px;
  color: #66706e;
  font-size: 0.73rem;
  line-height: 1.65;
}

.site-footer {
  padding: 42px 0;
  color: #fff;
  background: #0b1012;
}

.footer-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.brand--footer {
  margin-bottom: 10px;
}

.footer-inner p,
.footer-status {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.67rem;
}

.footer-status {
  display: flex;
  align-items: center;
  gap: 28px;
}

.footer-status span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.privacy-dialog {
  width: min(calc(100% - 32px), 690px);
  max-height: min(88vh, 700px);
  padding: 0;
  overflow: auto;
  border: 0;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--paper-bright);
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.35);
}

.privacy-dialog::backdrop {
  background: rgba(7, 12, 13, 0.76);
  backdrop-filter: blur(4px);
}

.dialog-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 30px 24px;
  color: #fff;
  background: var(--ink);
}

.dialog-head h2 {
  margin: 5px 0 0;
  font-family: Georgia, serif;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.icon-button--dark {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
}

.dialog-content {
  padding: 26px 30px 30px;
}

.dialog-content > p {
  margin: 0;
  color: #616b69;
  font-size: 0.78rem;
  line-height: 1.65;
}

.dialog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 24px 0;
}

.dialog-grid div {
  min-height: 104px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #f2f0ea;
}

.dialog-grid strong,
.dialog-grid span {
  display: block;
}

.dialog-grid strong {
  margin-bottom: 6px;
  font-size: 0.72rem;
}

.dialog-grid span {
  color: #67706e;
  font-size: 0.64rem;
}

.dialog-note {
  padding-top: 17px;
  border-top: 1px solid var(--line);
  font-size: 0.66rem !important;
}

.toast {
  position: fixed;
  z-index: 1000;
  right: 22px;
  bottom: 22px;
  max-width: min(calc(100% - 44px), 420px);
  padding: 13px 17px;
  border-radius: 10px;
  color: #fff;
  background: var(--ink);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.26);
  font-size: 0.73rem;
  font-weight: 660;
}

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

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 45px;
    max-width: 760px;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero-lead {
    max-width: 620px;
  }

  .result-grid,
  .privacy-layout,
  .ai-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .privacy-layout,
  .ai-layout,
  .faq-layout {
    gap: 55px;
  }

  .method-grid {
    grid-template-columns: 1fr 1fr;
  }

  .method-grid article:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .method-grid article {
    border-bottom: 1px solid var(--line);
  }

  .source-grid {
    grid-template-columns: 1fr 1fr;
  }

  .source-grid a:nth-child(3n + 1) {
    border-left: 0;
  }

  .source-grid a:nth-child(2n + 1) {
    border-left: 1px solid var(--line);
  }

  .section-heading--split {
    grid-template-columns: 1fr 0.8fr;
    gap: 50px;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .trust-strip__inner {
    min-height: 39px;
    justify-content: flex-start;
    gap: 17px;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
  }

  .trust-strip__inner::-webkit-scrollbar {
    display: none;
  }

  .trust-strip__inner span {
    font-size: 0.62rem;
  }

  .header-inner {
    min-height: 68px;
  }

  .header-inner .button {
    padding-inline: 11px;
    font-size: 0.68rem;
  }

  .hero-layout {
    padding-block: 46px 58px;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.4rem);
  }

  .hero-lead {
    font-size: 0.89rem;
  }

  .hero-principles {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 30px;
  }

  .hero-principles > div {
    display: grid;
    grid-template-columns: 38px 1fr;
    align-items: center;
  }

  .hero-principles strong {
    margin: 0;
  }

  .hero-principles br {
    display: none;
  }

  .analyzer-head,
  .tab-panel {
    padding-inline: 19px;
  }

  .analyzer-tabs,
  .incident-fieldset,
  .privacy-preview {
    margin-inline: 19px;
  }

  .example-row,
  .analyzer-actions {
    padding-inline: 19px;
  }

  .analyzer-head {
    padding-top: 21px;
  }

  .local-badge {
    font-size: 0;
  }

  .local-badge::after {
    content: "Yerel";
    font-size: 0.62rem;
  }

  .incident-options span {
    font-size: 0.61rem;
  }

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

  .zero-cost {
    align-self: center;
  }

  .form-error {
    margin-inline: 19px;
  }

  .results-section,
  .comparison-section,
  .method-section,
  .privacy-section,
  .ai-section,
  .sources-section,
  .faq-section {
    padding-block: 72px;
  }

  .results-topline,
  .section-heading--split {
    display: block;
  }

  .results-actions {
    margin-top: 24px;
  }

  .results-actions .button {
    flex: 1;
    padding-inline: 12px;
  }

  .risk-card,
  .signals-card {
    min-height: 0;
    padding: 22px;
  }

  .risk-gauge > strong {
    font-size: 4rem;
  }

  .action-plan {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 24px;
  }

  .result-footnote {
    display: block;
  }

  .result-footnote div {
    white-space: normal;
  }

  .result-footnote p {
    margin-top: 10px;
    text-align: left;
  }

  .section-heading--split > p {
    margin-top: 25px;
  }

  .comparison-table {
    overflow-x: auto;
  }

  .comparison-row {
    min-width: 650px;
  }

  .method-grid {
    grid-template-columns: 1fr;
  }

  .method-grid article,
  .method-grid article:nth-child(3) {
    min-height: 285px;
    border-right: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .privacy-copy h2,
  .section-heading h2,
  .ai-layout h2,
  .results-topline h2 {
    font-size: clamp(2.6rem, 13vw, 3.65rem);
  }

  .data-flow {
    grid-template-columns: 1fr;
    grid-template-rows: auto 58px auto 72px auto;
  }

  .flow-card--source,
  .flow-card--process,
  .flow-card--result,
  .flow-arrow,
  .flow-blocked {
    grid-column: 1;
  }

  .flow-card--source { grid-row: 1; }
  .flow-arrow { grid-row: 2; transform: rotate(90deg); }
  .flow-arrow span { display: none; }
  .flow-card--process { grid-row: 3; }
  .flow-blocked { grid-row: 4; padding: 0; text-align: center; }
  .flow-card--result { grid-row: 5; }

  .budget-card {
    box-shadow: 8px 8px 0 #dcd6cb;
  }

  .source-grid {
    grid-template-columns: 1fr;
  }

  .source-grid a,
  .source-grid a:nth-child(2n + 1),
  .source-grid a:nth-child(3n + 1) {
    min-height: 125px;
    border-left: 1px solid var(--line);
  }

  .emergency-note {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .footer-inner,
  .footer-status {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-status {
    gap: 9px;
  }

  .dialog-grid {
    grid-template-columns: 1fr;
  }

  .dialog-grid div {
    min-height: 0;
  }
}

@media (max-width: 410px) {
  .brand {
    font-size: 0.95rem;
  }

  .brand-mark {
    width: 27px;
    height: 27px;
  }

  .header-inner .button {
    min-height: 35px;
  }

  .field-meta span:first-child {
    max-width: 70%;
  }

  .ocr-progress__actions {
    align-items: stretch;
    flex-wrap: wrap;
  }

  .ocr-progress__actions small {
    width: 100%;
  }

  .ocr-progress__actions button {
    min-width: 112px;
    min-height: 44px;
  }

  .privacy-preview summary {
    align-items: flex-start;
    flex-direction: column;
  }

  .risk-card__head {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .signal-item {
    grid-template-columns: 32px minmax(0, 1fr);
  }

  .signal-item__weight {
    grid-column: 2;
    padding: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (forced-colors: active) {
  .status-dot,
  .local-badge i,
  .risk-gauge__track span,
  .budget-bar span {
    background: CanvasText;
  }

  .mini-check,
  .signal-item__icon {
    border: 1px solid CanvasText;
  }
}
