:root {
  --ink: #17221d;
  --muted: #68736d;
  --line: #dfe5e1;
  --canvas: #f4f5f2;
  --paper: #ffffff;
  --green: #23634a;
  --green-dark: #194d39;
  --green-soft: #e7f0eb;
  --sand: #f3eadb;
  --sand-line: #ddcda9;
  --shadow: 0 18px 55px rgba(23, 34, 29, .08);
  color: var(--ink);
  background: var(--canvas);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-synthesis: none;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 3%, rgba(35, 99, 74, .08), transparent 26rem),
    var(--canvas);
}

a { color: var(--green); }

a:focus-visible {
  outline: 3px solid rgba(35, 99, 74, .28);
  outline-offset: 4px;
  border-radius: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: #fff;
  background: var(--green-dark);
  border-radius: 8px;
  transform: translateY(-150%);
}

.skip-link:focus { transform: none; }

.site-header {
  width: min(1180px, calc(100% - 48px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid #769081;
  border-radius: 11px;
  background: var(--ink);
  color: #fff;
  font: 700 16px system-ui, -apple-system, "Segoe UI", sans-serif;
}

.brand strong,
.brand small { display: block; }

.brand strong {
  font: 700 17px system-ui, -apple-system, "Segoe UI", sans-serif;
  letter-spacing: .12em;
}

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

.back-link {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(255, 255, 255, .76);
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.header-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

main {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 62px;
  border: 1px solid #32433a;
  border-radius: 25px;
  background: #17221d;
  color: #fff;
  box-shadow: var(--shadow);
}

.hero::after {
  content: "";
  position: absolute;
  top: -150px;
  right: -80px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
  box-shadow: 0 0 0 75px rgba(255, 255, 255, .025), 0 0 0 150px rgba(255, 255, 255, .02);
  pointer-events: none;
}

.hero-copy,
.status-card,
.quick-facts { position: relative; z-index: 1; }

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

.eyebrow,
.section-number {
  margin: 0 0 12px;
  color: #93b9a6;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
}

h1,
h2,
h3 { font-family: system-ui, -apple-system, "Segoe UI", sans-serif; }

h1 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(36px, 6vw, 62px);
  line-height: 1.06;
  letter-spacing: -.035em;
}

.lead {
  max-width: 740px;
  margin: 24px 0 0;
  color: #c2cec7;
  font-size: 17px;
  line-height: 1.7;
}

.lead strong { color: #fff; }

.status-card {
  max-width: 850px;
  margin-top: 36px;
  padding: 17px 19px;
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 13px;
  border: 1px solid rgba(170, 209, 188, .25);
  border-radius: 14px;
  background: rgba(70, 126, 99, .18);
}

.status-dot {
  width: 9px;
  height: 9px;
  margin-top: 6px;
  border-radius: 50%;
  background: #8fc8aa;
  box-shadow: 0 0 0 5px rgba(143, 200, 170, .12);
}

.status-card strong { font-size: 14px; }

.status-card p {
  margin: 4px 0 0;
  color: #c6d4cc;
  font-size: 13px;
  line-height: 1.55;
}

.status-card p strong { color: #fff; }

.quick-facts {
  margin: 42px 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .13);
}

.quick-facts div {
  min-width: 0;
  padding: 23px 20px 0;
  border-left: 1px solid rgba(255, 255, 255, .13);
}

.quick-facts div:first-child {
  padding-left: 0;
  border-left: 0;
}

.quick-facts dt {
  color: #8fa198;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.quick-facts dd {
  margin: 7px 0 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}

.page-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 44px;
  align-items: start;
  margin-top: 38px;
}

.page-index {
  position: sticky;
  top: 24px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, .75);
}

.page-index p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.page-index ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-index li + li { margin-top: 4px; }

.page-index a {
  display: block;
  padding: 8px 9px;
  border-radius: 7px;
  color: #4f5c55;
  font-size: 13px;
  text-decoration: none;
}

.page-index a:hover {
  background: var(--green-soft);
  color: var(--green);
}

.privacy-content {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: var(--paper);
  box-shadow: 0 10px 35px rgba(23, 34, 29, .045);
}

.privacy-content section {
  padding: 42px 48px;
  scroll-margin-top: 24px;
}

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

.section-number {
  margin-bottom: 8px;
  color: var(--green);
}

h2 {
  margin: 0 0 18px;
  font-size: 25px;
  line-height: 1.25;
  letter-spacing: -.02em;
}

h3 {
  margin: 28px 0 10px;
  font-size: 17px;
}

.privacy-content p,
.privacy-content li {
  color: #536059;
  font-size: 15px;
  line-height: 1.75;
}

.privacy-content p { margin: 0; }

.privacy-content p + p { margin-top: 14px; }

.privacy-content ul {
  margin: 15px 0;
  padding-left: 22px;
}

.privacy-content li + li { margin-top: 6px; }

.identity-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--line);
}

.identity-card div {
  min-width: 0;
  padding: 15px 17px;
  background: #fafbf9;
}

.identity-card div:nth-child(3) { grid-column: 1 / -1; }

.identity-card span,
.identity-card strong,
.identity-card a { display: block; }

.identity-card span {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.identity-card strong,
.identity-card a {
  overflow-wrap: anywhere;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.5;
}

.identity-card a { color: var(--green); font-weight: 700; }

.scope-grid,
.role-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.info-card {
  min-width: 0;
  padding: 19px 20px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fafbf9;
}

.info-card h3 {
  margin: 4px 0 8px;
  font-size: 16px;
}

.info-card p {
  font-size: 13px;
  line-height: 1.65;
}

.card-label {
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

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

.feature-card {
  min-width: 0;
  padding: 19px 20px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fafbf9;
}

.feature-card > span {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 8px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
}

.feature-card h3 {
  margin: 12px 0 7px;
  font-size: 16px;
}

.feature-card p {
  font-size: 13px;
  line-height: 1.65;
}

.legal-basis,
.important-note {
  margin-top: 22px;
  padding: 19px 20px;
  border-radius: 13px;
}

.legal-basis {
  border: 1px solid #cddfd4;
  background: #edf5f0;
}

.legal-basis strong,
.important-note strong { display: block; font-size: 14px; }

.legal-basis p,
.important-note p { margin-top: 6px; font-size: 13px; line-height: 1.65; }

.important-note {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 13px;
  border: 1px solid var(--sand-line);
  background: #faf5eb;
}

.important-note > span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: #7c673f;
  color: #fff;
  font-weight: 700;
}

.retention-list {
  display: grid;
  gap: 12px;
}

.retention-list > div {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fafbf9;
}

.retention-list > div.retention-warning {
  border-color: var(--sand-line);
  background: #faf5eb;
}

.retention-list strong { font-size: 14px; }

.retention-list p { margin-top: 5px; font-size: 13px; line-height: 1.65; }

.fine-print {
  margin-top: 17px !important;
  color: var(--muted) !important;
  font-size: 12px !important;
}

.contact-button {
  display: inline-flex;
  margin-top: 22px;
  padding: 12px 16px;
  border-radius: 10px;
  background: var(--green);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.contact-button:hover { background: var(--green-dark); }

.secondary-button {
  display: inline-flex;
  margin-top: 22px;
  padding: 12px 16px;
  border: 1px solid var(--green);
  border-radius: 10px;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

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

.model-hero .hero-copy { max-width: 850px; }

.warning-card {
  border-color: rgba(221, 205, 169, .35);
  background: rgba(124, 103, 63, .22);
}

.steps-list {
  margin: 18px 0 0;
  padding-left: 24px;
}

.client-checklist {
  margin-top: 20px;
  padding: 20px 22px;
  border: 1px solid #cddfd4;
  border-radius: 14px;
  background: #edf5f0;
}

.client-checklist ul {
  margin: 0;
  columns: 2;
  column-gap: 38px;
}

.client-checklist li {
  break-inside: avoid;
  margin: 0 0 9px;
  font-size: 13px;
  line-height: 1.55;
}

.template-intro {
  margin-bottom: 20px !important;
}

.placeholder {
  padding: 1px 4px;
  border-radius: 4px;
  background: #f3eadb;
  color: #69542f;
  font-size: .92em;
  font-weight: 750;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.template-panel {
  overflow: hidden;
  border: 1px solid #c9d4ce;
  border-radius: 16px;
  background: #fff;
}

.template-heading {
  padding: 20px 23px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  background: var(--ink);
  color: #fff;
}

.template-heading span,
.template-heading strong {
  display: block;
}

.template-heading span {
  margin-bottom: 5px;
  color: #93b9a6;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
}

.template-heading strong {
  font-size: 18px;
}

.template-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  border-bottom: 1px solid var(--line);
  background: var(--line);
  gap: 1px;
}

.template-fields > div {
  min-width: 0;
  padding: 14px 17px;
  background: #fafbf9;
}

.template-fields dt {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.template-fields dd {
  margin: 0;
  line-height: 1.55;
}

.model-copy {
  padding: 25px 23px 28px;
}

.model-copy h3 {
  margin: 24px 0 7px;
  font-size: 15px;
}

.model-copy h3:first-child { margin-top: 0; }

.model-copy p {
  font-size: 13px;
  line-height: 1.75;
}

.notice-template {
  margin: 20px 0;
  padding: 21px 23px;
  border: 1px solid var(--sand-line);
  border-left: 5px solid #7c673f;
  border-radius: 13px;
  background: #faf5eb;
}

.notice-template p {
  color: #4f483b;
  font-size: 14px;
  line-height: 1.75;
}

.client-model-section {
  background:
    linear-gradient(180deg, rgba(231, 240, 235, .38), transparent 320px),
    #fff;
}

footer {
  width: min(1180px, calc(100% - 48px));
  margin: 42px auto 0;
  padding: 28px 0 36px;
  display: flex;
  justify-content: space-between;
  gap: 32px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

footer strong { color: var(--ink); font: 700 14px system-ui, -apple-system, "Segoe UI", sans-serif; }

footer p { margin: 4px 0 0; line-height: 1.5; }

@media (max-width: 900px) {
  .hero { padding: 45px 38px; }
  .quick-facts { grid-template-columns: 1fr 1fr; }
  .quick-facts div:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }
  .quick-facts div:nth-child(n + 3) {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .13);
  }
  .page-layout { grid-template-columns: 1fr; gap: 18px; }
  .page-index { position: static; }
  .page-index ol { display: flex; flex-wrap: wrap; gap: 4px; }
  .page-index li + li { margin-top: 0; }
  .client-checklist ul { columns: 1; }
}

@media (max-width: 620px) {
  .site-header,
  main,
  footer { width: min(100% - 28px, 1180px); }
  .site-header { min-height: 68px; }
  .back-link { padding: 8px 10px; font-size: 12px; }
  .header-links { gap: 5px; }
  .header-links .back-link:first-child { display: none; }
  .hero { padding: 34px 22px; border-radius: 18px; }
  h1 { font-size: 36px; }
  .lead { font-size: 15px; }
  .quick-facts { grid-template-columns: 1fr; }
  .quick-facts div,
  .quick-facts div:first-child,
  .quick-facts div:nth-child(3) {
    margin-top: 0;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, .13);
    border-left: 0;
  }
  .quick-facts div:first-child { border-top: 0; }
  .page-index { padding: 17px; }
  .privacy-content section { padding: 32px 22px; }
  .identity-card { grid-template-columns: 1fr; }
  .identity-card div:nth-child(3) { grid-column: auto; }
  .scope-grid,
  .role-grid,
  .feature-grid,
  .review-grid,
  .template-fields { grid-template-columns: 1fr; }
  .important-note { grid-template-columns: 1fr; }
  footer { display: block; }
  footer > p { margin-top: 16px; }
}

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