:root {
  --canvas: #f7f2e8;
  --canvas-deep: #efe6d7;
  --paper: #fffdf9;
  --ink: #20231f;
  --muted: #696b65;
  --line: rgba(32, 35, 31, 0.14);
  --sage: #587064;
  --sage-dark: #3f574c;
  --sage-soft: #dfe8df;
  --clay: #9a5038;
  --clay-soft: #f1dacf;
  --gold-soft: #eadfbd;
  --shadow: 0 24px 70px rgba(62, 47, 31, 0.11);
  --radius-lg: 34px;
  --radius-md: 22px;
  --shell: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

svg {
  display: block;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--ink);
  color: white;
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid transparent;
  background: rgba(247, 242, 232, 0.9);
  backdrop-filter: blur(16px);
  transition: background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(32, 35, 31, 0.12);
  background: rgba(247, 242, 232, 0.96);
  box-shadow: 0 8px 24px rgba(62, 47, 31, 0.07);
}

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

.brand {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.035em;
  white-space: nowrap;
  text-decoration: none;
}

.brand-dot {
  color: var(--clay);
}

.brand-mark {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: var(--sage-dark);
  stroke-width: 2;
}

.brand-mark circle:last-child {
  fill: var(--clay);
  stroke: none;
}

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

.top-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 700;
  color: #50534d;
}

.top-nav a {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding-block: 8px;
  text-decoration: none;
  transition: color 180ms ease;
}

.top-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--clay);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.top-nav a:hover,
.top-nav a.is-active {
  color: var(--clay);
}

.top-nav a.is-active::after {
  transform: scaleX(1);
}

.language-switcher {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid rgba(63, 87, 76, 0.2);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.72);
}

.language-switcher a {
  min-width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.04em;
  line-height: 1;
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease;
}

.language-switcher a:hover {
  color: var(--sage-dark);
}

.language-switcher a[aria-current="page"] {
  background: var(--sage-dark);
  color: white;
}

.hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.75fr);
  gap: clamp(48px, 8vw, 110px);
  align-items: center;
  padding-block: 76px 94px;
}

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

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(48px, 6.4vw, 82px);
  font-weight: 860;
}

h1 em {
  color: var(--sage);
  font-style: normal;
}

h2 {
  max-width: 800px;
  margin-bottom: 22px;
  font-size: clamp(36px, 4.8vw, 62px);
  font-weight: 830;
}

h3 {
  margin-bottom: 13px;
  font-size: 23px;
}

.hero-lead,
.section-intro > p:last-child {
  max-width: 690px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

.hero-lead {
  max-width: 650px;
  margin: 0 0 24px;
}

.hero-status-sticker {
  position: relative;
  max-width: 660px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 15px;
  margin: 0 0 26px;
  padding: 18px 20px 17px 18px;
  border: 1px solid rgba(154, 80, 56, 0.34);
  border-radius: 20px 24px 22px 18px;
  background:
    radial-gradient(circle at 100% 0, rgba(241, 218, 207, 0.7), transparent 42%),
    rgba(255, 253, 249, 0.92);
  box-shadow: 0 13px 32px rgba(62, 47, 31, 0.09), 0 2px 0 rgba(255, 255, 255, 0.72) inset;
  transform: rotate(-0.35deg);
}

.status-sticker-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(63, 87, 76, 0.2);
  border-radius: 15px;
  background: var(--sage-soft);
  color: var(--sage-dark);
}

.status-sticker-mark svg {
  width: 29px;
  height: 29px;
}

.status-sticker-body > p {
  max-width: 530px;
  margin: 0;
}

.status-sticker-body .status-sticker-date {
  margin: 1px 20px 3px 0;
  color: var(--clay);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.status-sticker-body .status-sticker-title {
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 850;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.status-sticker-body > p:last-of-type {
  color: #5d605a;
  font-size: 14px;
  line-height: 1.5;
}

.status-sticker-links {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 17px;
  margin-top: 10px;
}

.status-sticker-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--sage-dark);
  font-size: 12px;
  font-weight: 800;
  text-decoration-color: rgba(63, 87, 76, 0.38);
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

.status-sticker-links a:hover {
  color: var(--clay);
  text-decoration-color: currentColor;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 24px;
  border: 1px solid var(--sage);
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

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

.button-primary {
  background: var(--sage);
  color: white;
}

.button-primary:hover {
  background: var(--sage-dark);
}

.button-secondary {
  background: transparent;
  color: var(--sage-dark);
}

.button-secondary:hover {
  background: var(--sage-soft);
}

.hero-visual {
  position: relative;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 10% -9% -8% 12%;
  z-index: -1;
  border-radius: 52% 48% 42% 58%;
  background: radial-gradient(circle at 30% 25%, rgba(183, 107, 77, 0.3), transparent 55%), var(--sage-soft);
  filter: blur(2px);
}

.hero-lens-card {
  overflow: hidden;
  margin-left: 18px;
  border: 1px solid rgba(32, 35, 31, 0.16);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 249, 0.94);
  box-shadow: var(--shadow);
}

.lens-head {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 25px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.live-label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.live-dot {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #4f866c;
  box-shadow: 0 0 0 5px #deebe2;
}

.mini-date {
  flex: 0 0 auto;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--canvas-deep);
  color: var(--muted);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.lens-scene {
  position: relative;
  height: 316px;
  overflow: hidden;
  background:
    linear-gradient(rgba(88, 112, 100, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(88, 112, 100, 0.06) 1px, transparent 1px),
    var(--paper);
  background-size: 34px 34px;
}

.lens-document {
  position: absolute;
  top: 49px;
  left: clamp(42px, 16%, 85px);
  width: 188px;
  height: 222px;
  padding: 30px 25px;
  border: 1px solid rgba(32, 35, 31, 0.18);
  border-radius: 12px;
  background: var(--paper);
  box-shadow: 0 18px 44px rgba(58, 44, 29, 0.13);
  transform: rotate(-4deg);
}

.lens-document::before {
  content: "OPENAI";
  position: absolute;
  top: 94px;
  left: 30px;
  color: rgba(154, 80, 56, 0.13);
  font-size: 29px;
  font-weight: 900;
  letter-spacing: 0.06em;
  transform: rotate(-12deg);
}

.document-line {
  display: block;
  height: 6px;
  margin-bottom: 13px;
  border-radius: 999px;
  background: #d9d7d0;
}

.document-line:nth-child(2) {
  width: 72%;
}

.document-line:nth-child(4) {
  width: 84%;
}

.document-line:nth-child(5) {
  width: 61%;
}

.scan-lens {
  position: absolute;
  top: 34px;
  right: clamp(34px, 11%, 60px);
  width: 214px;
  height: 214px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(88, 112, 100, 0.45);
  border-radius: 50%;
  background: rgba(223, 232, 223, 0.58);
  box-shadow: inset 0 0 0 15px rgba(255, 253, 249, 0.55), 0 20px 50px rgba(58, 44, 29, 0.16);
  backdrop-filter: blur(2px);
  animation: lens-breathe 9s ease-in-out infinite;
  transform-origin: center;
  will-change: transform;
}

@keyframes lens-breathe {
  0%,
  100% {
    transform: scale(0.99);
  }

  50% {
    transform: scale(1.01);
  }
}

.scan-lens::after {
  content: "";
  position: absolute;
  right: -67px;
  bottom: 11px;
  width: 92px;
  height: 16px;
  border-radius: 999px;
  background: var(--sage-dark);
  transform: rotate(44deg);
  transform-origin: left center;
}

.lens-eye {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 253, 249, 0.9);
  box-shadow: 0 10px 30px rgba(63, 87, 76, 0.14);
}

.lens-eye svg {
  width: 58px;
  color: var(--sage-dark);
}

.motion-ready [data-reveal],
.motion-ready [data-reveal-group] > * {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 460ms cubic-bezier(0.22, 1, 0.36, 1), transform 460ms cubic-bezier(0.22, 1, 0.36, 1);
}

.motion-ready [data-reveal-group] > * {
  transition-delay: var(--reveal-delay, 0ms);
}

.motion-ready [data-reveal-group] > :nth-child(2) {
  --reveal-delay: 70ms;
}

.motion-ready [data-reveal-group] > :nth-child(3) {
  --reveal-delay: 140ms;
}

.motion-ready [data-reveal-group] > :nth-child(4) {
  --reveal-delay: 210ms;
}

.motion-ready [data-reveal-group] > :nth-child(5) {
  --reveal-delay: 280ms;
}

.motion-ready [data-reveal].is-visible,
.motion-ready [data-reveal-group].is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

.motion-ready [data-reveal-group].is-visible > .source-card:hover {
  transform: translateY(-3px);
}

.section {
  padding-block: clamp(72px, 7vw, 104px);
}

.section-tinted {
  background: var(--canvas-deep);
}

.section-intro {
  margin-bottom: 54px;
}

.section-intro.narrow {
  max-width: 900px;
}

.answer-panel {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid rgba(88, 112, 100, 0.32);
  border-radius: var(--radius-lg);
  background: var(--sage-dark);
  color: #fff;
  box-shadow: var(--shadow);
}

.answer-panel p {
  max-width: 900px;
  margin: 0 0 13px;
  color: rgba(255, 255, 255, 0.78);
}

.answer-panel p:last-child {
  margin-bottom: 0;
}

.answer-panel .answer-lead {
  color: white;
  font-size: clamp(21px, 2.8vw, 30px);
  font-weight: 720;
  line-height: 1.35;
  letter-spacing: -0.025em;
}

.answer-source-link {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  margin-top: 12px;
  color: white;
  font-size: 14px;
  font-weight: 800;
  text-decoration-color: rgba(255, 255, 255, 0.42);
  text-underline-offset: 4px;
}

.answer-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  color: white;
  font-family: Georgia, serif;
  font-size: 20px;
  font-style: italic;
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.fact-card {
  position: relative;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
}

.fact-card {
  border-top-width: 4px;
}

.fact-confirmed {
  border-top-color: var(--sage);
}

.fact-unknown {
  border-top-color: var(--clay);
}

.fact-misread {
  border-top-color: #b49a4c;
}

.fact-label,
.source-type {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.fact-card p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.media-bento {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  grid-template-rows: repeat(2, minmax(205px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.media-bento-card {
  position: relative;
  overflow: hidden;
  min-height: 205px;
  display: flex;
  flex-direction: column;
  padding: 28px 30px;
  border: 1px solid rgba(32, 35, 31, 0.14);
  border-radius: 26px;
  background: var(--paper);
  box-shadow: 0 14px 44px rgba(62, 47, 31, 0.08);
}

.media-bento-featured {
  grid-row: 1 / 3;
  min-height: 430px;
  padding: 32px;
  background: var(--sage-dark);
  color: white;
  box-shadow: 0 24px 60px rgba(63, 87, 76, 0.22);
}

.media-bento-featured::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -90px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  box-shadow: inset 0 0 0 42px rgba(255, 255, 255, 0.035), inset 0 0 0 84px rgba(255, 255, 255, 0.035);
}

.media-bento-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

.media-bento-icon {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--sage-soft);
  color: var(--sage-dark);
}

.media-bento-icon-clay {
  background: var(--clay-soft);
  color: var(--clay);
}

.media-bento-icon-gold {
  background: var(--gold-soft);
  color: #6f5f2b;
}

.media-bento-icon svg {
  width: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.media-bento-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
  font-size: 23px;
}

.media-bento-card > p,
.media-bento-card > div > p:last-child {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.media-bento-featured > div > p:last-child {
  max-width: 430px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
}

.media-bento-takeaway,
.media-bento-action {
  padding-top: 17px;
  border-top: 1px solid var(--line);
}

.media-bento-takeaway {
  margin-top: auto !important;
}

.media-bento-action {
  margin-top: 24px !important;
}

.media-bento-featured .media-bento-takeaway {
  max-width: 430px;
  border-top-color: rgba(255, 255, 255, 0.18);
  color: white;
}

.media-bento-action strong,
.media-bento-takeaway strong {
  color: inherit;
}

.timeline {
  max-width: 960px;
  margin-left: auto;
}

.timeline-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 40px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
}

.timeline-date {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.timeline-body h3 {
  margin-bottom: 10px;
}

.timeline-body p {
  margin: 0;
  color: var(--muted);
}

.timeline-current .timeline-date {
  color: var(--clay);
}

.timeline-current .timeline-body h3::after {
  content: "Nu";
  display: inline-block;
  margin-left: 12px;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--clay-soft);
  color: #7b422e;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  vertical-align: middle;
}

.model-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.model-list li {
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.model-list small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 650;
}

.evidence-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 18px;
}

.evidence-links a {
  color: var(--sage-dark);
  font-size: 13px;
  font-weight: 800;
}

.source-callout {
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 26px 30px;
  border-radius: var(--radius-md);
  background: var(--paper);
  box-shadow: 0 10px 36px rgba(62, 47, 31, 0.06);
}

.source-callout p {
  max-width: 760px;
  margin: 0;
}

.source-callout > a {
  flex: 0 0 auto;
  color: var(--sage-dark);
  font-size: 14px;
  font-weight: 800;
}

.remove-section {
  position: relative;
  overflow: hidden;
  background: var(--sage-dark);
  color: white;
}

.remove-section::after {
  content: "";
  position: absolute;
  top: -20%;
  right: -8%;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 72px rgba(255, 255, 255, 0.035), 0 0 0 144px rgba(255, 255, 255, 0.02);
}

.remove-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: clamp(50px, 9vw, 120px);
}

.remove-section .section-intro > p:last-child {
  color: rgba(255, 255, 255, 0.68);
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  padding: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.steps li > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--clay);
  font-size: 13px;
  font-weight: 900;
}

.steps h3 {
  margin-bottom: 8px;
}

.steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
}

.own-text-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.7fr);
  gap: clamp(40px, 8vw, 100px);
  align-items: center;
  padding: clamp(34px, 6vw, 72px);
  border: 1px solid rgba(183, 107, 77, 0.28);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--paper), #f7e7dd);
  box-shadow: var(--shadow);
}

.own-text-card h2 {
  font-size: clamp(34px, 4.3vw, 54px);
}

.own-text-card > div:first-child > p {
  max-width: 650px;
  color: var(--muted);
}

.rewrite-demo {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  box-shadow: 0 18px 42px rgba(58, 44, 29, 0.11);
  transform: rotate(1.2deg);
}

.rewrite-demo::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--sage-dark), var(--clay));
}

.rewrite-demo-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 20px 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(230, 239, 232, 0.38);
}

.rewrite-check {
  width: 30px;
  height: 30px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--sage-dark);
  color: white;
  font-size: 14px;
  font-weight: 900;
}

.rewrite-tool {
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.rewrite-count {
  margin-left: auto;
  padding: 6px 8px;
  border-radius: 999px;
  background: var(--clay-soft);
  color: #7b422e;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.rewrite-demo-body {
  padding: 20px;
}

.rewrite-row {
  padding: 17px 18px;
  border-radius: 14px;
}

.rewrite-row-before {
  background: #faf6f1;
}

.rewrite-row-after {
  border: 1px solid rgba(77, 104, 91, 0.2);
  background: rgba(230, 239, 232, 0.52);
}

.rewrite-row p {
  margin: 9px 0 0;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
}

.rewrite-flow {
  height: 34px;
  display: flex;
  align-items: center;
  padding-left: 22px;
  color: var(--clay);
  font-size: 20px;
}

.demo-label {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.demo-label-good {
  color: var(--sage-dark);
}

.demo-error {
  padding: 1px 2px;
  border-radius: 4px;
  background: rgba(183, 107, 77, 0.12);
  text-decoration: underline wavy rgba(154, 80, 56, 0.8);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.demo-fix {
  padding: 1px 3px;
  border-radius: 4px;
  background: rgba(77, 104, 91, 0.14);
  color: var(--sage-dark);
  font-weight: 750;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1fr);
  gap: clamp(48px, 10vw, 130px);
}

.faq-heading {
  position: sticky;
  top: 120px;
  align-self: start;
}

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

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

.faq-list summary {
  position: relative;
  padding: 26px 42px 26px 0;
  cursor: pointer;
  font-size: 19px;
  font-weight: 780;
  letter-spacing: -0.02em;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 24px;
  right: 4px;
  color: var(--clay);
  font-size: 25px;
  font-weight: 400;
}

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

.faq-list details p {
  max-width: 760px;
  margin: -4px 0 28px;
  color: var(--muted);
}

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

.source-card {
  min-height: 148px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 21px;
  background: var(--paper);
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease;
}

.source-card:hover {
  transform: translateY(-3px);
  border-color: var(--clay);
}

.source-card strong {
  max-width: 460px;
  margin-bottom: auto;
  font-size: 17px;
  line-height: 1.35;
}

.source-card > span:last-child {
  margin-top: 20px;
  color: var(--sage-dark);
  font-size: 12px;
  font-weight: 800;
}

.source-card .source-type {
  margin-bottom: 14px;
}

.site-footer {
  padding-block: 56px 24px;
  background: #20231f;
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr auto;
  gap: 50px;
  align-items: start;
}

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

.footer-brand .brand-mark {
  stroke: rgba(255, 255, 255, 0.78);
}

.footer-brand .brand-dot {
  color: #d88a6c;
}

.footer-grid p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.footer-note p:first-child {
  margin-top: 0;
}

.footer-grid nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(max-content, 1fr));
  gap: 4px 24px;
  font-size: 13px;
  font-weight: 750;
}

.footer-grid nav a:last-child {
  grid-column: 1 / -1;
}

.footer-grid nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.footer-bottom {
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
}

.privacy-notice {
  position: fixed;
  right: clamp(18px, 3vw, 42px);
  bottom: clamp(18px, 3vw, 36px);
  z-index: 100;
  width: min(430px, calc(100% - 36px));
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(88, 112, 100, 0.24);
  border-radius: 22px;
  background: rgba(255, 253, 249, 0.97);
  box-shadow: 0 20px 60px rgba(49, 39, 29, 0.17);
  backdrop-filter: blur(14px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.privacy-notice[hidden] {
  display: none;
}

.privacy-notice.is-closing {
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}

.privacy-notice-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--sage-soft);
  color: var(--sage-dark);
}

.privacy-notice-icon svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.privacy-notice-copy strong {
  display: block;
  margin-bottom: 3px;
  font-family: var(--font-display);
  font-size: 17px;
}

.privacy-notice-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.privacy-notice-dismiss {
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--sage-dark);
  border-radius: 999px;
  background: var(--sage-dark);
  color: white;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}

.privacy-notice-dismiss:hover {
  background: var(--ink);
  transform: translateY(-1px);
}

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

@media (max-width: 900px) {
  .hero,
  .remove-layout,
  .own-text-card,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    gap: 64px;
    padding-top: 58px;
  }

  .hero-visual {
    width: min(100%, 560px);
    margin-inline: auto;
  }

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

  .media-bento {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .media-bento-featured {
    grid-row: auto;
    min-height: 380px;
  }

  .faq-heading {
    position: static;
    margin-bottom: 0;
  }

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

  .footer-grid nav {
    grid-column: 1 / -1;
    grid-template-columns: repeat(5, max-content);
    gap: 8px 20px;
  }

  .footer-grid nav a:last-child {
    grid-column: auto;
  }
}

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

@media (max-width: 1100px) {
  .hero-visual::before {
    right: 0;
  }
}

@media (max-width: 620px) {
  html,
  body {
    overflow-x: clip;
  }

  .hero-visual {
    display: none;
  }

  body {
    font-size: 16px;
  }

  .shell {
    width: min(calc(100% - 30px), var(--shell));
  }

  .header-inner {
    min-height: 70px;
    gap: 12px;
  }

  .top-nav {
    display: none;
  }

  .brand {
    font-size: 17px;
  }

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

  .hero {
    padding-block: 42px 72px;
  }

  h1 {
    font-size: clamp(42px, 13vw, 60px);
  }

  h2 {
    font-size: clamp(34px, 10.5vw, 48px);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-status-sticker {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
    padding: 15px 16px 15px 14px;
    border-radius: 17px 20px 19px 16px;
    transform: none;
  }

  .status-sticker-mark {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .status-sticker-mark svg {
    width: 25px;
    height: 25px;
  }

  .status-sticker-body .status-sticker-title {
    font-size: 17px;
  }

  .status-sticker-body > p:last-of-type {
    grid-column: 1 / -1;
    font-size: 13px;
  }

  .hero-visual::before {
    right: 0;
  }

  .hero-lens-card {
    display: none;
    margin-left: 0;
  }

  .lens-head {
    padding-inline: 18px;
  }

  .lens-scene {
    height: 280px;
  }

  .lens-document {
    top: 45px;
    left: 18px;
    width: 150px;
    height: 190px;
    padding: 26px 20px;
  }

  .lens-document::before {
    top: 80px;
    left: 20px;
    font-size: 24px;
  }

  .scan-lens {
    top: 52px;
    right: 22px;
    width: 168px;
    height: 168px;
    box-shadow: inset 0 0 0 12px rgba(255, 253, 249, 0.55), 0 18px 42px rgba(58, 44, 29, 0.15);
  }

  .scan-lens::after {
    right: -50px;
    width: 70px;
    height: 14px;
  }

  .lens-eye {
    width: 76px;
    height: 76px;
  }

  .lens-eye svg {
    width: 48px;
  }

  .media-bento-card,
  .media-bento-featured {
    min-height: auto;
    padding: 24px;
  }

  .media-bento-featured {
    min-height: 350px;
  }

  .media-bento-top {
    margin-bottom: 22px;
  }

  .media-bento-takeaway,
  .media-bento-action {
    margin-top: 26px !important;
  }

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

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .source-callout {
    align-items: flex-start;
    flex-direction: column;
  }

  .remove-layout {
    gap: 30px;
  }

  .remove-section::after {
    right: 0;
  }

  .own-text-card {
    padding: 28px 22px;
  }

  .rewrite-demo {
    transform: none;
  }

  .rewrite-demo-head {
    gap: 7px;
    padding-inline: 13px;
  }

  .rewrite-check {
    width: 27px;
    height: 27px;
    font-size: 12px;
  }

  .rewrite-tool {
    font-size: 11px;
    white-space: nowrap;
  }

  .rewrite-count {
    padding: 5px 6px;
    font-size: 8px;
  }

  .rewrite-demo-body {
    padding: 15px;
  }

  .sources-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    gap: 28px;
  }

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

  .footer-grid nav a:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    margin-top: 24px;
    flex-direction: column;
  }

  .privacy-notice {
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
    grid-template-columns: auto minmax(0, 1fr);
    padding: 16px;
  }

  .privacy-notice-dismiss {
    grid-column: 1 / -1;
    width: 100%;
  }
}

/* Current marking explainer */
.hero-status-confirmed {
  border-color: rgba(63, 87, 76, 0.34);
  background:
    radial-gradient(circle at 100% 0, rgba(223, 232, 223, 0.92), transparent 43%),
    rgba(255, 253, 249, 0.96);
}

.status-sticker-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 1px 18px 4px 0;
}

.status-sticker-meta .status-sticker-date {
  margin: 0;
}

.status-sticker-meta > span {
  flex: 0 0 auto;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--clay-soft);
  color: #7d402e;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.quick-answer-card {
  min-height: 238px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: var(--paper);
  box-shadow: 0 12px 38px rgba(62, 47, 31, 0.055);
}

.quick-answer-card > .quick-answer-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 27px;
  border-radius: 14px;
  background: var(--sage-soft);
  color: var(--sage-dark);
}

.quick-answer-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quick-answer-card:nth-child(2) > .quick-answer-icon {
  background: var(--clay-soft);
  color: var(--clay);
}

.quick-answer-card:nth-child(3) > .quick-answer-icon {
  background: var(--gold-soft);
  color: #7d6829;
}

.quick-answer-card h3 {
  margin-bottom: 11px;
  font-size: 23px;
  line-height: 1.18;
}

.quick-answer-card p {
  line-height: 1.55;
}

.quick-answer-card h3,
.mark-type-card h3,
.checker-card h3,
.audience-card h3 {
  font-size: 25px;
}

.quick-answer-card p,
.mark-type-card p,
.checker-card p,
.audience-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.mark-type-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.mark-type-card {
  min-height: 440px;
  display: grid;
  grid-template-rows: 220px auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 29px;
  background: var(--paper);
  box-shadow: 0 16px 45px rgba(62, 47, 31, 0.065);
}

.mark-type-card > div:last-child {
  padding: 28px 30px 30px;
}

.mark-type-visual {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 50px 65px;
  background:
    linear-gradient(rgba(88, 112, 100, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(88, 112, 100, 0.055) 1px, transparent 1px),
    #f4f5ef;
  background-size: 28px 28px;
}

.watermark-scan-lines {
  position: absolute;
  inset: 56px 52px auto 50px;
  display: grid;
  gap: 17px;
}

.watermark-scan-lines .plain-text-line {
  display: block;
  height: 8px;
  border-radius: 99px;
  background: rgba(32, 35, 31, 0.32);
}

.watermark-scan-lines .plain-text-line:nth-child(1) { width: 85%; }
.watermark-scan-lines .plain-text-line:nth-child(2) { width: 72%; }
.watermark-scan-lines .plain-text-line:nth-child(3) { width: 62%; }

.watermark-signal-lens {
  position: absolute;
  right: 42px;
  bottom: 50px;
  width: 116px;
  height: 116px;
  display: grid;
  place-items: center;
  border: 2px solid var(--sage-dark);
  border-radius: 50%;
  background: rgba(255, 253, 249, 0.92);
  box-shadow: 0 15px 35px rgba(58, 44, 29, 0.14), inset 0 0 0 9px rgba(223, 232, 223, 0.65);
}

.watermark-signal-lens::after {
  content: "";
  position: absolute;
  right: -32px;
  bottom: -14px;
  width: 48px;
  height: 12px;
  border-radius: 99px;
  background: var(--sage-dark);
  transform: rotate(46deg);
  transform-origin: left center;
}

.watermark-token-field {
  width: 64px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 5px;
}

.watermark-token-field b {
  height: 8px;
  border-radius: 4px;
  background: var(--sage);
  opacity: 0.85;
}

.watermark-token-field b:nth-child(4n),
.watermark-token-field b:nth-child(7n) {
  background: var(--clay);
  opacity: 0.7;
}

.file-receipt {
  align-items: center;
  flex-direction: row;
  gap: 0;
  background: linear-gradient(140deg, #f7ebe4, #f4f1e8);
}

.file-shape {
  position: relative;
  width: 104px;
  height: 126px;
  display: grid;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 11px;
  background: var(--paper);
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  box-shadow: 0 17px 38px rgba(62, 47, 31, 0.11);
}

.receipt-seal {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin-left: -21px;
  z-index: 1;
  border: 8px solid var(--paper);
  border-radius: 50%;
  background: var(--sage);
  color: white;
  font-size: 27px;
  box-shadow: 0 12px 30px rgba(63, 87, 76, 0.25);
}

.card-conclusion {
  margin-top: 20px !important;
  padding-top: 17px;
  border-top: 1px solid var(--line);
  color: var(--ink) !important;
  font-weight: 750;
}

.explainer-section {
  overflow: hidden;
}

.explainer-intro {
  max-width: 920px;
}

.watermark-explainer {
  padding: 24px;
  border: 1px solid rgba(32, 35, 31, 0.14);
  border-radius: 34px;
  background: rgba(255, 253, 249, 0.9);
  box-shadow: var(--shadow);
}

.explainer-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.explainer-step {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(360px, 1.28fr);
  gap: 38px;
  align-items: center;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: var(--paper);
}

.explainer-step-copy {
  position: relative;
  padding-left: 56px;
}

.step-badge {
  position: absolute;
  top: -2px;
  left: 0;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--ink);
  color: white;
  font-size: 13px;
  font-weight: 900;
}

.explainer-step h3 {
  margin-bottom: 10px;
  font-size: 28px;
}

.explainer-step p {
  margin: 0;
  color: var(--muted);
}

.flow-arrow {
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--clay);
  font-size: 25px;
}

.word-choice-demo,
.pattern-demo,
.reader-demo,
.detector-demo {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 26px;
  border-radius: 20px;
  background: var(--canvas);
}

.word-choice-demo > p {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 720;
}

.word-slot {
  color: var(--clay);
}

.word-options {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.word-options span {
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: #6d7069;
  font-size: 14px;
  font-weight: 750;
}

.word-options .option-preferred {
  border-color: rgba(88, 112, 100, 0.38);
  background: var(--sage-soft);
  color: var(--sage-dark);
}

.choice-result {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
  font-size: 17px;
}

.choice-result strong {
  color: var(--sage-dark);
}

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

.token-grid span {
  height: 15px;
  border-radius: 5px;
  background: #71a481;
}

.token-grid span.alt {
  background: #d67b60;
}

.pattern-key {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 19px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 12px;
}

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

.pattern-key i {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: #71a481;
}

.pattern-key span:last-child i {
  background: #d67b60;
}

.reader-demo {
  position: relative;
  min-height: 180px;
  align-items: center;
  flex-direction: row;
  gap: 25px;
  background: #fbf7ed;
  font-family: Georgia, serif;
  font-size: 23px;
  line-height: 1.45;
}

.reader-eye {
  width: 74px;
  height: 74px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--paper);
  color: var(--sage-dark);
  box-shadow: 0 10px 24px rgba(62, 47, 31, 0.1);
}

.reader-eye svg {
  width: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.detector-demo {
  min-height: 180px;
  align-items: center;
  flex-direction: row;
  gap: 22px;
  background: var(--sage-soft);
}

.detector-ring {
  width: 82px;
  height: 82px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--paper);
  color: var(--sage-dark);
}

.detector-ring svg {
  width: 49px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.detector-demo strong,
.detector-demo span {
  display: block;
}

.detector-demo strong {
  margin-bottom: 5px;
  font-size: 21px;
}

.detector-demo span {
  color: var(--sage-dark);
  font-size: 14px;
  font-weight: 720;
}

.technical-note {
  margin-top: 18px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--canvas);
}

.technical-note summary {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 13px;
  padding: 18px 42px 18px 0;
  cursor: pointer;
  color: var(--sage-dark);
  font-weight: 820;
  list-style: none;
}

.technical-note summary::-webkit-details-marker {
  display: none;
}

.technical-note summary::after {
  content: "+";
  position: absolute;
  top: 14px;
  right: 0;
  color: var(--clay);
  font-size: 25px;
  font-weight: 500;
}

.technical-note[open] summary::after {
  content: "−";
}

.technical-note summary small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.technical-note-body {
  padding: 3px 0 22px;
  border-top: 1px solid var(--line);
}

.technical-note-body p {
  color: var(--muted);
}

.technical-lead {
  max-width: 940px;
  margin: 21px 0 22px;
  font-size: 17px;
}

.technical-lead strong,
.technical-tradeoff strong {
  color: var(--ink);
}

.technical-process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--paper);
}

.technical-process section {
  padding: 21px;
}

.technical-process section + section {
  border-left: 1px solid var(--line);
}

.technical-process span {
  display: block;
  margin-bottom: 20px;
  color: var(--clay);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.technical-process h4,
.technical-models h4 {
  margin: 0 0 9px;
  font-size: 17px;
}

.technical-process p,
.technical-models p,
.technical-models li,
.technical-tradeoff {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
}

.technical-models {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
}

.technical-models > div {
  padding: 21px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--paper);
}

.technical-models p + p {
  margin-top: 11px;
}

.technical-boundary {
  background: var(--sage-soft) !important;
}

.technical-boundary ul {
  margin: 0;
  padding-left: 19px;
  color: var(--muted);
}

.technical-boundary li + li {
  margin-top: 7px;
}

.technical-tradeoff {
  margin: 20px 0 0;
}

.technical-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 17px;
  margin-top: 19px;
  padding-top: 17px;
  border-top: 1px solid var(--line);
  font-size: 12px;
}

.technical-links span {
  color: var(--muted);
}

.technical-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--sage-dark);
  font-weight: 780;
  text-decoration: none;
}

.technical-links a:hover {
  color: var(--clay);
}

.result-guide {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: var(--paper);
  box-shadow: 0 18px 48px rgba(62, 47, 31, 0.065);
}

.result-guide-head,
.result-guide-row {
  display: grid;
  grid-template-columns: minmax(190px, 0.72fr) minmax(0, 1.15fr) minmax(0, 1.15fr);
}

.result-guide-head {
  background: var(--ink);
  color: white;
}

.result-guide-head span {
  padding: 15px 24px;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.result-guide-head span + span,
.result-guide-row > div + div {
  border-left: 1px solid var(--line);
}

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

.result-guide-row > div {
  min-width: 0;
  padding: 25px 24px;
}

.result-status {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 17px;
  background: rgba(223, 232, 223, 0.42);
}

.result-guide-absent .result-status {
  background: rgba(241, 217, 207, 0.34);
}

.result-status-icon {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--sage-soft);
  color: var(--sage-dark);
}

.result-guide-absent .result-status-icon {
  background: var(--clay-soft);
  color: var(--clay);
}

.result-status-icon svg,
.result-takeaway svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.result-status > strong {
  font-size: 18px;
}

.result-meaning strong,
.result-limit strong {
  display: block;
  margin-bottom: 9px;
  font-size: 17px;
  line-height: 1.35;
}

.result-guide-row p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
}

.result-limit {
  background: rgba(255, 250, 246, 0.74);
}

.result-limit strong {
  color: #773f31;
}

.result-cell-label {
  display: none;
}

.result-takeaway {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
  padding: 19px 22px;
  border: 1px solid rgba(88, 112, 100, 0.24);
  border-radius: 18px;
  background: var(--sage-soft);
}

.result-takeaway > span {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--paper);
  color: var(--sage-dark);
}

.result-takeaway p {
  margin: 0;
  color: #414a44;
}

.checker-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.checker-card {
  min-height: 420px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--paper);
}

.checker-status {
  display: inline-flex;
  margin-bottom: 65px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--sage-soft);
  color: var(--sage-dark);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.07em;
}

.checker-generic .checker-status {
  background: var(--clay-soft);
  color: var(--clay);
}

.checker-card ul,
.audience-card ul {
  margin: 22px 0 0;
  padding: 18px 0 0 20px;
  border-top: 1px solid var(--line);
  color: #51544f;
}

.checker-card li + li,
.audience-card li + li {
  margin-top: 7px;
}

.checker-card > .button {
  align-self: flex-start;
  margin-top: 22px;
}

.change-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: var(--paper);
  box-shadow: 0 15px 42px rgba(62, 47, 31, 0.06);
}

.change-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 76px;
  border-bottom: 1px solid var(--line);
}

.change-row:last-child {
  border-bottom: 0;
}

.change-row > span {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 17px 23px;
}

.change-row > span:last-child {
  border-left: 1px solid var(--line);
}

.change-head {
  min-height: 54px;
  background: var(--ink);
  color: white;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.change-head > span:last-child {
  color: white;
}

.change-group {
  padding: 11px 23px;
  border-bottom: 1px solid var(--line);
  background: var(--sage-soft);
  color: var(--sage-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.change-group:nth-of-type(7) {
  background: var(--clay-soft);
  color: #7a4435;
}

.change-action {
  color: var(--ink);
  font-weight: 650;
}

.change-effect {
  align-items: flex-start !important;
  flex-direction: column;
  gap: 3px !important;
}

.change-effect strong {
  color: var(--sage-dark);
  font-size: 16px;
}

.change-effect small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.change-icon {
  width: 31px;
  height: 31px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: var(--sage-soft);
  color: var(--sage-dark);
}

.change-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.coverage-grid article {
  min-height: 270px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: var(--paper);
  box-shadow: 0 12px 38px rgba(62, 47, 31, 0.055);
}

.coverage-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 27px;
  border-radius: 14px;
  background: var(--sage-soft);
  color: var(--sage-dark);
}

.coverage-grid article:nth-child(2) .coverage-icon {
  background: var(--clay-soft);
  color: var(--clay);
}

.coverage-grid article:nth-child(3) .coverage-icon {
  background: var(--gold-soft);
  color: #7d6829;
}

.coverage-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.coverage-grid h3 {
  margin-bottom: 11px;
  font-size: 23px;
  line-height: 1.18;
}

.coverage-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.date-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 22px;
  overflow: hidden;
  border: 1px solid rgba(88, 112, 100, 0.21);
  border-radius: 19px;
  background: var(--sage-soft);
}

.date-strip > div {
  padding: 18px;
}

.date-strip > div + div {
  border-left: 1px solid rgba(88, 112, 100, 0.18);
}

.date-strip strong,
.date-strip span {
  display: block;
}

.date-strip strong {
  margin-bottom: 3px;
  color: var(--sage-dark);
  font-size: 13px;
}

.date-strip span {
  color: #5c635d;
  font-size: 12px;
}

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

.audience-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--paper);
}

.audience-featured {
  background: linear-gradient(145deg, #fffdf9, #f6eee6);
  box-shadow: 0 18px 45px rgba(62, 47, 31, 0.08);
}

.audience-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 30px;
  border-radius: 14px;
  background: var(--sage-soft);
  color: var(--sage-dark);
  font-weight: 900;
}

.audience-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.audience-card:nth-child(2) .audience-icon,
.audience-card:nth-child(3) .audience-icon {
  background: var(--clay-soft);
  color: var(--clay);
}

.promo-section {
  background: #e9eee8;
}

.source-primary:first-child {
  grid-column: 1 / -1;
  min-height: 112px;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  border-color: rgba(88, 112, 100, 0.44);
  background: linear-gradient(145deg, var(--paper), #eef3ec);
}

.source-primary:first-child .source-type,
.source-primary:first-child strong,
.source-primary:first-child > span:last-child {
  margin: 0;
}

.research-heading {
  margin: 42px 0 17px;
  font-size: 22px;
}

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

.research-links a {
  min-height: 108px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 15px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--canvas);
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease;
}

.research-links a:hover {
  transform: translateY(-2px);
  border-color: var(--clay);
}

.research-links strong {
  line-height: 1.35;
}

.research-links span {
  color: var(--sage-dark);
  font-size: 12px;
  font-weight: 760;
}

.editorial-note {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 38px;
  align-items: center;
  margin-top: 22px;
  padding: 24px 26px;
  border: 1px solid rgba(79, 109, 96, 0.24);
  border-radius: 20px;
  background: var(--sage-pale);
}

.editorial-note h3 {
  margin: 0 0 7px;
  font-size: 19px;
}

.editorial-note p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.editorial-meta {
  display: grid;
  gap: 17px;
}

.editorial-note dl {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 14px 24px;
  margin: 0;
}

.editorial-note address {
  display: grid;
  gap: 4px;
  padding-top: 16px;
  border-top: 1px solid rgba(79, 109, 96, 0.2);
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  line-height: 1.45;
}

.editorial-note address strong {
  color: var(--ink);
  font-size: 13px;
}

.editorial-note address a {
  color: var(--sage-dark);
  font-weight: 780;
  text-decoration-color: rgba(79, 109, 96, 0.4);
}

.editorial-note address > span:last-of-type {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 7px;
}

.editorial-note address > span:last-of-type a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.editorial-note .official-contact-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-self: start;
  margin-top: 3px;
}

.editorial-note dt {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.editorial-note dd {
  margin: 0;
  color: var(--sage-dark);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .top-nav {
    gap: 18px;
  }

  .quick-answer-grid,
  .coverage-grid,
  .research-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quick-answer-card:last-child,
  .coverage-grid article:last-child {
    grid-column: 1 / -1;
  }

  .explainer-step {
    grid-template-columns: 1fr;
  }

  .editorial-note {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .explainer-step-copy {
    max-width: 650px;
  }
}

@media (max-width: 620px) {
  .status-sticker-meta {
    display: block;
    margin-right: 15px;
  }

  .status-sticker-meta > span {
    display: inline-flex;
    margin-top: 6px;
  }

  .quick-answer-grid,
  .mark-type-grid,
  .checker-compare,
  .coverage-grid,
  .audience-grid,
  .research-links {
    grid-template-columns: 1fr;
  }

  .editorial-note {
    padding: 21px;
  }

  .editorial-note dl {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .quick-answer-card:last-child,
  .coverage-grid article:last-child {
    grid-column: auto;
  }

  .coverage-grid article {
    min-height: auto;
    padding: 22px;
  }

  .coverage-icon {
    margin-bottom: 24px;
  }

  .source-primary:first-child {
    grid-column: auto;
    min-height: 148px;
    display: flex;
    align-items: flex-start;
    gap: 0;
  }

  .source-primary:first-child .source-type {
    margin-bottom: 14px;
  }

  .source-primary:first-child strong {
    margin-bottom: auto;
  }

  .source-primary:first-child > span:last-child {
    margin-top: 20px;
  }

  .quick-answer-card {
    min-height: auto;
    padding: 22px;
  }

  .quick-answer-card > .quick-answer-icon,
  .audience-icon {
    margin-bottom: 24px;
  }

  .mark-type-card {
    min-height: auto;
    grid-template-rows: 185px auto;
  }

  .mark-type-card > div:last-child {
    padding: 23px;
  }

  .mark-type-visual {
    padding: 40px;
  }

  .watermark-scan-lines {
    inset: 42px 30px auto 28px;
    gap: 15px;
  }

  .watermark-signal-lens {
    right: 28px;
    bottom: 43px;
    width: 104px;
    height: 104px;
  }

  .watermark-token-field {
    width: 58px;
    gap: 4px;
  }

  .watermark-explainer {
    padding: 12px;
    border-radius: 25px;
  }

  .explainer-step {
    gap: 24px;
    padding: 22px;
  }

  .explainer-step-copy {
    padding-left: 0;
    padding-top: 51px;
  }

  .step-badge {
    top: 0;
  }

  .explainer-step h3 {
    font-size: 24px;
  }

  .word-choice-demo,
  .pattern-demo,
  .reader-demo,
  .detector-demo {
    min-height: 190px;
    padding: 20px;
  }

  .reader-demo,
  .detector-demo {
    align-items: flex-start;
    flex-direction: column;
  }

  .reader-demo {
    font-size: 20px;
  }

  .token-grid {
    gap: 5px;
  }

  .token-grid span {
    height: 12px;
  }

  .technical-note {
    padding: 0 17px;
  }

  .technical-note summary {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .technical-process,
  .technical-models {
    grid-template-columns: 1fr;
  }

  .technical-process section + section {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .technical-process span {
    margin-bottom: 10px;
  }

  .checker-card,
  .audience-card {
    min-height: auto;
    padding: 24px;
  }

  .checker-status {
    margin-bottom: 38px;
  }

  .result-guide-head {
    display: none;
  }

  .result-guide-row {
    grid-template-columns: 1fr;
  }

  .result-guide-row > div {
    padding: 20px;
  }

  .result-guide-row > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .result-status {
    align-items: center;
    flex-direction: row;
  }

  .result-cell-label {
    display: block;
    margin-bottom: 6px;
    color: var(--clay);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.07em;
    text-transform: uppercase;
  }

  .result-takeaway {
    align-items: flex-start;
    padding: 17px;
  }

  .change-table {
    border-radius: 19px;
  }

  .change-row {
    grid-template-columns: 1fr;
  }

  .change-row > span {
    padding: 15px 17px;
  }

  .change-row > span:last-child {
    padding-top: 0;
    padding-left: 61px;
    padding-bottom: 17px;
    border-left: 0;
  }

  .change-group {
    padding: 11px 17px;
  }

  .change-head {
    display: none;
  }

  .date-strip {
    grid-template-columns: 1fr;
  }

  .date-strip > div + div {
    border-top: 1px solid rgba(88, 112, 100, 0.18);
    border-left: 0;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }

  .scan-lens {
    animation: none;
  }

  .motion-ready [data-reveal],
  .motion-ready [data-reveal-group] > * {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .hero-actions,
  .site-footer,
  .privacy-notice {
    display: none;
  }

  body {
    background: white;
    color: black;
  }

  .section,
  .hero {
    min-height: auto;
    padding-block: 30px;
  }
}
