:root {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #182230;
  background: #f7fbff;
  line-height: 1.55;
  font-synthesis: none;
  --ink: #182230;
  --muted: #5f7188;
  --blue: #0868d7;
  --blue-dark: #064a9b;
  --line: #d7e5f0;
  --white: #fff;
  --green: #08745c;
  --red: #ad2f44;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #eaf6ff 0%, #f8fbff 48%, #eef8ff 100%);
  background-attachment: fixed;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible {
  outline: 3px solid rgba(78, 182, 255, .42);
  outline-offset: 3px;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(215, 229, 240, .8);
  background: rgba(248, 252, 255, .92);
  backdrop-filter: blur(18px);
}

.site-nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-cloud {
  width: 40px;
  height: 22px;
  flex: 0 0 auto;
  background: linear-gradient(135deg, #38bdf8 0%, #2563eb 68%, #1f2933 100%);
  -webkit-mask: url("/assets/orgrecon-cloud-mark.png") center / contain no-repeat;
  mask: url("/assets/orgrecon-cloud-mark.png") center / contain no-repeat;
}

.brand-word {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1;
}

.brand-org {
  color: #1f2933;
}

.brand-recon {
  color: #2563eb;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  color: #42536a;
  font-size: 14px;
  font-weight: 600;
}

.nav-links > a:not(.nav-button):hover,
.site-footer a:hover {
  color: var(--blue);
}

.nav-button,
.primary-button,
.secondary-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--blue);
  border-radius: 10px;
  font-weight: 720;
}

.nav-button,
.secondary-button {
  border-color: #bfd2e1;
  background: rgba(255, 255, 255, .9);
  color: #284058;
}

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

.eyebrow {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.privacy-hero {
  padding: clamp(82px, 10vw, 132px) 0 clamp(70px, 9vw, 112px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
  align-items: center;
  gap: clamp(54px, 8vw, 110px);
}

.privacy-hero h1 {
  max-width: 830px;
  margin: 17px 0 24px;
  font-size: clamp(46px, 6.2vw, 76px);
  line-height: 1;
  letter-spacing: -.055em;
}

.hero-intro {
  max-width: 760px;
  margin: 0;
  color: #52667f;
  font-size: clamp(18px, 1.8vw, 21px);
}

.privacy-promise {
  padding: 30px;
  border: 1px solid #c7deee;
  border-radius: 20px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 22px 60px rgba(17, 66, 105, .1);
}

.privacy-promise > strong {
  display: block;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.12;
  letter-spacing: -.035em;
}

.privacy-promise p {
  margin: 18px 0 24px;
  color: var(--muted);
}

.promise-status {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: #3f566e;
  font-size: 13px;
  font-weight: 650;
}

.promise-status span {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green);
}

.privacy-section {
  padding: clamp(72px, 9vw, 112px) 0;
  border-top: 1px solid rgba(197, 220, 237, .7);
}

.section-heading {
  max-width: 760px;
}

.section-heading-centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.privacy-cta h2 {
  margin: 12px 0 16px;
  font-size: clamp(34px, 4.7vw, 54px);
  line-height: 1.08;
  letter-spacing: -.045em;
}

.section-heading p,
.privacy-cta p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px;
}

.role-grid article,
.contract-card {
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 8px 28px rgba(20, 64, 100, .05);
}

.role-grid article {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: 24px;
}

.role-number {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 10px;
  background: #ddecfb;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 800;
}

.role-grid h3 {
  margin: 24px 0 10px;
  font-size: 20px;
  letter-spacing: -.02em;
}

.role-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.role-grid article > strong {
  margin-top: auto;
  padding-top: 24px;
  color: var(--blue-dark);
  font-size: 13px;
}

.contract-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.contract-card {
  padding: clamp(26px, 3.4vw, 40px);
}

.retained-card {
  border-top: 4px solid var(--green);
}

.discarded-card {
  border-top: 4px solid var(--red);
}

.contract-label {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #3b5168;
  font-size: 13px;
  font-weight: 780;
  letter-spacing: .025em;
  text-transform: uppercase;
}

.contract-label span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: #e2f4ed;
  color: var(--green);
}

.discarded-card .contract-label span {
  background: #fae8ec;
  color: var(--red);
}

.contract-card h3 {
  margin: 20px 0 18px;
  font-size: 25px;
  letter-spacing: -.025em;
}

.contract-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contract-card li {
  position: relative;
  padding-left: 20px;
  color: #536880;
}

.contract-card li::before {
  content: "";
  position: absolute;
  top: .65em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #75a7cb;
}

.contract-card code {
  display: block;
  overflow-wrap: anywhere;
  margin-top: 26px;
  padding: 14px;
  border: 1px solid #c9e4d9;
  border-radius: 9px;
  background: #f5fbf8;
  color: #225346;
  font: 12px/1.55 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.discard-note {
  margin: 26px 0 0;
  padding: 14px;
  border: 1px solid #efd0d7;
  border-radius: 9px;
  background: #fff8f9;
  color: #754350;
  font-size: 13px;
  font-weight: 650;
}

.processing-layout {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(460px, 1.2fr);
  align-items: start;
  gap: clamp(56px, 9vw, 120px);
}

.processing-steps {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.processing-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 17px;
  padding: 0 0 30px;
}

.processing-steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 42px;
  bottom: 4px;
  left: 20px;
  width: 1px;
  background: #b9d7ea;
}

.processing-steps li > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid #b9d7ea;
  border-radius: 50%;
  background: #f8fcff;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 800;
}

.processing-steps strong {
  display: block;
  margin: 1px 0 4px;
  font-size: 17px;
}

.processing-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.privacy-cta {
  padding: clamp(70px, 9vw, 104px) 0;
  border-top: 1px solid rgba(197, 220, 237, .8);
}

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

.cta-inner > div:first-child {
  max-width: 720px;
}

.cta-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
  flex-wrap: wrap;
}

.site-footer {
  border-top: 1px solid rgba(197, 220, 237, .8);
  padding: 38px 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px 40px;
}

.footer-inner p {
  margin: 5px 0 0;
}

.footer-inner nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.site-footer .footer-copyright {
  display: block;
  margin-top: 8px;
}

@media (max-width: 940px) {
  .hero-grid,
  .processing-layout {
    grid-template-columns: 1fr;
  }

  .privacy-promise {
    max-width: 610px;
  }

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

  .role-grid article {
    min-height: 285px;
  }

  .processing-layout {
    gap: 46px;
  }

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .privacy-wrap {
    width: min(100% - 28px, 1180px);
  }

  .nav-links {
    gap: 9px;
  }

  .nav-links a:not(.nav-button) {
    display: none;
  }

  .privacy-hero h1 {
    font-size: 43px;
  }

  .role-grid,
  .contract-grid {
    grid-template-columns: 1fr;
  }

  .role-grid article {
    min-height: 0;
  }

  .role-grid article > strong {
    margin-top: 28px;
  }

  .privacy-promise,
  .contract-card {
    padding: 24px;
  }

  .cta-actions,
  .cta-actions a {
    width: 100%;
  }

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