:root {
  color-scheme: light;
  --ink: #17383b;
  --ink-deep: #0d2d30;
  --muted: #587174;
  --muted-light: #d7e5e2;
  --green: #0b6b5d;
  --green-dark: #075247;
  --green-soft: #dff3eb;
  --green-pale: #f1f9f6;
  --blue: #426d91;
  --blue-soft: #e5f0f8;
  --sand: #c9724c;
  --sand-soft: #faeade;
  --cream: #fbfaf6;
  --white: #ffffff;
  --line: #dce9e5;
  --line-strong: #c9ddd7;
  --shadow-small: 0 12px 30px rgb(20 70 66 / 8%);
  --shadow-large: 0 28px 80px rgb(20 70 66 / 13%);
  --radius-small: 0.75rem;
  --radius-medium: 1.15rem;
  --radius-large: 1.75rem;
  --container: 73rem;
  --header-height: 5.5rem;
  --font-sans:
    "Aptos", "Segoe UI", "Helvetica Neue", Arial, system-ui, -apple-system,
    sans-serif;
  --font-display:
    "Aptos Display", "Segoe UI", "Helvetica Neue", Arial, system-ui, -apple-system,
    sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1.5rem);
}

body {
  min-width: 20rem;
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

a {
  color: inherit;
}

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

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

h1,
h2,
h3 {
  color: var(--ink-deep);
  font-family: var(--font-display);
  font-weight: 720;
  text-wrap: balance;
}

h1 {
  margin-bottom: 1.5rem;
  font-size: clamp(3rem, 6.1vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.058em;
}

h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.2rem, 4.3vw, 4.15rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

h3 {
  font-size: clamp(1.2rem, 1.8vw, 1.45rem);
  line-height: 1.25;
  letter-spacing: -0.025em;
}

p {
  margin-bottom: 1rem;
}

:focus-visible {
  outline: 3px solid #d36137;
  outline-offset: 4px;
  border-radius: 0.25rem;
}

::selection {
  color: var(--ink-deep);
  background: #c8ebdf;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  color: var(--white);
  background: var(--ink-deep);
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

.container {
  width: min(var(--container), calc(100% - 3rem));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: clamp(5rem, 9vw, 8rem);
}

.eyebrow {
  margin-bottom: 0.85rem;
  color: var(--green);
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #a9ddd0;
}

.section-heading {
  max-width: 46rem;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section-heading-wide {
  max-width: 58rem;
}

.section-heading h2 span {
  color: var(--green);
}

.section-heading > p:last-child {
  max-width: 44rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
}

.button {
  display: inline-flex;
  min-height: 3.2rem;
  gap: 0.65rem;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 0.8rem;
  font-size: 0.98rem;
  font-weight: 760;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 13px 28px rgb(11 107 93 / 20%);
}

.button-primary:hover {
  background: var(--green-dark);
  box-shadow: 0 16px 34px rgb(11 107 93 / 26%);
}

.button-small {
  min-height: 2.75rem;
  padding: 0.65rem 1rem;
  font-size: 0.9rem;
}

.button-quiet {
  border-color: var(--line-strong);
  color: var(--green-dark);
  background: rgb(255 255 255 / 64%);
}

.button-quiet:hover {
  border-color: #a4c8be;
  background: var(--white);
}

.button-light {
  color: var(--green-dark);
  background: var(--white);
}

.button-light:hover {
  background: #effaf6;
}

.button-outline-light {
  border-color: rgb(255 255 255 / 45%);
  color: var(--white);
  background: transparent;
}

.button-outline-light:hover {
  border-color: var(--white);
  background: rgb(255 255 255 / 9%);
}

.text-link {
  display: inline-flex;
  min-height: 2.75rem;
  gap: 0.5rem;
  align-items: center;
  color: var(--green-dark);
  font-weight: 760;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.3em;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(0.2rem);
}

/* Header */

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgb(251 250 246 / 88%);
  backdrop-filter: blur(18px);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgb(201 221 215 / 75%);
  background: rgb(251 250 246 / 96%);
  box-shadow: 0 10px 35px rgb(13 45 48 / 6%);
}

.header-inner {
  display: flex;
  min-height: var(--header-height);
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  min-height: 3rem;
  gap: 0.75rem;
  align-items: center;
  flex: none;
  text-decoration: none;
}

.brand img {
  flex: none;
  filter: drop-shadow(0 7px 12px rgb(11 107 93 / 15%));
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-copy strong {
  color: var(--ink-deep);
  font-size: 1.12rem;
  letter-spacing: -0.025em;
}

.brand-copy small {
  margin-top: 0.24rem;
  color: var(--muted);
  font-size: 0.69rem;
  font-weight: 650;
  letter-spacing: 0.025em;
}

.site-nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.site-nav ul {
  display: flex;
  gap: 1.45rem;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav ul a {
  position: relative;
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  color: #36575a;
  font-size: 0.91rem;
  font-weight: 690;
  text-decoration: none;
}

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

.site-nav ul a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  min-width: 3rem;
  min-height: 3rem;
  gap: 0.65rem;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--line-strong);
  border-radius: 0.7rem;
  color: var(--ink-deep);
  background: var(--white);
  cursor: pointer;
}

.nav-toggle-label {
  font-size: 0.88rem;
  font-weight: 720;
}

.nav-toggle-icon {
  display: flex;
  width: 1.2rem;
  gap: 0.25rem;
  flex-direction: column;
}

.nav-toggle-icon span {
  width: 100%;
  height: 2px;
  border-radius: 99px;
  background: currentcolor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon span:first-child {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon span:last-child {
  transform: translateY(-6px) rotate(-45deg);
}

/* Hero */

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  min-height: calc(100svh - var(--header-height));
  overflow: hidden;
  padding-block: clamp(3.25rem, 7vw, 6.25rem) 2.25rem;
  background:
    linear-gradient(150deg, rgb(255 255 255 / 55%), transparent 48%),
    var(--cream);
}

.hero::before {
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
  content: "";
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  pointer-events: none;
}

.hero-glow-one {
  top: -13rem;
  right: -11rem;
  width: 38rem;
  height: 38rem;
  background: radial-gradient(circle, rgb(181 229 214 / 55%), transparent 70%);
}

.hero-glow-two {
  bottom: -14rem;
  left: -18rem;
  width: 40rem;
  height: 40rem;
  background: radial-gradient(circle, rgb(220 235 246 / 60%), transparent 70%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(26rem, 0.98fr);
  gap: clamp(2.5rem, 6vw, 6.5rem);
  align-items: center;
}

.hero-copy {
  max-width: 43rem;
}

.status-pill {
  display: inline-flex;
  min-height: 2.3rem;
  gap: 0.65rem;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 0.45rem 0.78rem;
  border: 1px solid #b9dacd;
  border-radius: 999px;
  color: var(--green-dark);
  background: rgb(236 248 243 / 80%);
  font-size: 0.82rem;
  font-weight: 760;
  letter-spacing: 0.01em;
}

.status-dot {
  width: 0.55rem;
  height: 0.55rem;
  border: 2px solid #bfe6d8;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgb(11 107 93 / 8%);
}

.hero h1 span {
  display: block;
  color: var(--green);
}

.hero-lead {
  max-width: 41rem;
  margin-bottom: 1.8rem;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  gap: 1.35rem;
  align-items: center;
  flex-wrap: wrap;
}

.hero-microcopy {
  max-width: 39rem;
  margin: 1.35rem 0 0;
  padding-left: 1rem;
  border-left: 3px solid #bedacf;
  color: #62797b;
  font-size: 0.86rem;
  line-height: 1.55;
}

.hero-visual {
  position: relative;
  isolation: isolate;
}

.hero-visual::before {
  position: absolute;
  z-index: -1;
  inset: 8% 4% 4% 8%;
  border: 1px solid rgb(163 204 192 / 45%);
  border-radius: 49% 51% 44% 56% / 51% 44% 56% 49%;
  background: linear-gradient(145deg, #e9f6f1 10%, #eef5fa 75%);
  content: "";
  transform: rotate(-5deg);
}

.hero-visual img {
  width: 100%;
  filter: drop-shadow(0 24px 35px rgb(26 71 69 / 10%));
}

.visual-label {
  position: absolute;
  z-index: 2;
  top: 10%;
  right: 0;
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgb(255 255 255 / 85%);
  box-shadow: var(--shadow-small);
  font-size: 0.74rem;
  font-weight: 750;
  backdrop-filter: blur(10px);
}

.visual-label span {
  color: var(--green);
  font-size: 0.65rem;
}

.trust-bar {
  position: relative;
  display: grid;
  margin-top: clamp(3rem, 6vw, 5.5rem);
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  background: rgb(255 255 255 / 60%);
  box-shadow: 0 14px 45px rgb(21 69 65 / 5%);
  backdrop-filter: blur(10px);
}

.trust-bar p {
  display: flex;
  min-height: 4.1rem;
  gap: 0.55rem;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0.8rem 1rem;
  color: #3d5d5f;
  font-size: 0.83rem;
  font-weight: 690;
  text-align: center;
}

.trust-bar p + p {
  border-left: 1px solid var(--line);
}

.trust-bar span {
  display: inline-grid;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  color: var(--green);
  background: var(--green-soft);
  font-size: 0.73rem;
  place-items: center;
}

/* Benefits */

.section-intro {
  background: var(--white);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.benefit-card {
  position: relative;
  min-height: 20rem;
  overflow: hidden;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  background: linear-gradient(150deg, var(--white), #fbfdfc);
  box-shadow: var(--shadow-small);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.benefit-card:hover {
  border-color: #bad6ce;
  box-shadow: var(--shadow-large);
  transform: translateY(-4px);
}

.benefit-card::after {
  position: absolute;
  right: -2.5rem;
  bottom: -3.25rem;
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
  background: var(--green-pale);
  content: "";
}

.card-index {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: #9ab0ac;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.icon-box {
  display: grid;
  width: 3.25rem;
  height: 3.25rem;
  margin-bottom: 2.5rem;
  border-radius: 1rem;
  color: var(--green);
  background: var(--green-soft);
  place-items: center;
}

.icon-box-sand {
  color: var(--sand);
  background: var(--sand-soft);
}

.icon-box-blue {
  color: var(--blue);
  background: var(--blue-soft);
}

.icon-box svg {
  width: 1.65rem;
  height: 1.65rem;
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.benefit-card h3 {
  max-width: 14rem;
  margin-bottom: 0.9rem;
}

.benefit-card p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  color: var(--muted);
}

/* Process */

.section-process {
  background:
    radial-gradient(circle at 85% 20%, rgb(216 237 230 / 45%), transparent 24rem),
    var(--green-pale);
}

.process-list {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list::before {
  position: absolute;
  top: 5rem;
  bottom: 5rem;
  left: 1.75rem;
  width: 1px;
  background: linear-gradient(var(--green), var(--blue));
  content: "";
  opacity: 0.3;
}

.process-list li {
  position: relative;
  display: grid;
  min-height: 13rem;
  grid-template-columns: 3.5rem minmax(0, 1fr) 9rem;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
  padding: 1.5rem 1.75rem 1.5rem 0;
  border-bottom: 1px solid var(--line-strong);
}

.process-list li:first-child {
  border-top: 1px solid var(--line-strong);
}

.process-number {
  position: relative;
  z-index: 1;
  display: grid;
  width: 3.5rem;
  height: 3.5rem;
  border: 1px solid #b7d6cc;
  border-radius: 50%;
  color: var(--green-dark);
  background: var(--white);
  box-shadow: 0 9px 20px rgb(29 74 70 / 9%);
  font-size: 0.85rem;
  font-weight: 800;
  place-items: center;
}

.process-content {
  max-width: 46rem;
}

.process-kicker {
  margin-bottom: 0.4rem;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.process-content h3 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
}

.process-content > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.process-icon {
  display: grid;
  width: 7.5rem;
  height: 7.5rem;
  justify-self: end;
  border: 1px solid #cbe2da;
  border-radius: 2.2rem;
  color: var(--green);
  background: linear-gradient(145deg, var(--white), var(--green-soft));
  transform: rotate(3deg);
  place-items: center;
}

.process-icon-sand {
  border-color: #efd6c7;
  color: var(--sand);
  background: linear-gradient(145deg, var(--white), var(--sand-soft));
  transform: rotate(-3deg);
}

.process-icon-blue {
  border-color: #ccddea;
  color: var(--blue);
  background: linear-gradient(145deg, var(--white), var(--blue-soft));
  transform: rotate(2deg);
}

.process-icon svg {
  width: 4rem;
  height: 4rem;
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

/* Scope and boundaries */

.section-scope {
  background: var(--white);
}

.scope-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(28rem, 1.1fr);
  gap: clamp(3rem, 7vw, 7.5rem);
  align-items: center;
}

.scope-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.scope-note {
  display: grid;
  margin-top: 2rem;
  grid-template-columns: 1.5rem 1fr;
  gap: 0.85rem;
  padding: 1.1rem;
  border: 1px solid #ead6c7;
  border-radius: 0.85rem;
  background: #fffaf6;
}

.scope-note svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--sand);
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.scope-note p {
  margin: 0;
  color: #6c5a50;
  font-size: 0.88rem;
}

.scope-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background:
    radial-gradient(circle at 100% 0, #dcefe8, transparent 16rem),
    #f7fbf9;
  box-shadow: var(--shadow-large);
}

.scope-panel::before {
  position: absolute;
  top: -3.5rem;
  right: -3.5rem;
  width: 8rem;
  height: 8rem;
  border: 1px solid rgb(11 107 93 / 15%);
  border-radius: 50%;
  content: "";
}

.panel-label {
  max-width: 25rem;
  margin-bottom: 1.75rem;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 720;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.scope-list li {
  display: grid;
  min-height: 4.25rem;
  grid-template-columns: 2.2rem 1fr;
  gap: 0.75rem;
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--ink-deep);
  font-weight: 700;
}

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

.scope-list span {
  display: grid;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 0.55rem;
  color: var(--green);
  background: var(--green-soft);
  font-size: 0.66rem;
  font-weight: 800;
  place-items: center;
}

.scope-status {
  display: flex;
  gap: 0.55rem;
  align-items: center;
  margin: 1.35rem 0 0;
  color: var(--green-dark);
  font-size: 0.8rem;
  font-weight: 750;
}

.scope-status span {
  font-size: 1rem;
}

.boundary-panel {
  display: grid;
  margin-top: clamp(4.5rem, 8vw, 7rem);
  grid-template-columns: minmax(18rem, 0.75fr) minmax(30rem, 1.25fr);
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: var(--radius-large);
  color: var(--muted-light);
  background:
    radial-gradient(circle at 85% 0%, rgb(24 122 105 / 35%), transparent 22rem),
    var(--ink-deep);
  box-shadow: var(--shadow-large);
}

.boundary-heading h3 {
  margin-bottom: 1rem;
  color: var(--white);
  font-size: clamp(1.75rem, 3vw, 2.65rem);
}

.boundary-heading > p:last-child {
  margin-bottom: 0;
  color: #c3d6d2;
}

.boundary-list {
  display: grid;
  margin: 0;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  padding: 0;
  list-style: none;
}

.boundary-list li {
  display: flex;
  min-height: 4.25rem;
  gap: 0.7rem;
  align-items: center;
  padding: 0.8rem 1rem;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 0.8rem;
  color: #e3ecea;
  background: rgb(255 255 255 / 4%);
  font-size: 0.9rem;
  font-weight: 630;
}

.boundary-list span {
  display: grid;
  width: 1.45rem;
  height: 1.45rem;
  flex: none;
  border-radius: 50%;
  color: #ffc2a9;
  background: rgb(255 189 160 / 11%);
  font-size: 1rem;
  place-items: center;
}

/* Principles */

.section-principles {
  background:
    linear-gradient(180deg, var(--green-pale), rgb(247 251 249 / 20%)),
    var(--cream);
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
}

.principle-card {
  min-height: 21rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  background: rgb(255 255 255 / 78%);
  box-shadow: var(--shadow-small);
}

.principle-card-featured {
  color: var(--muted-light);
  background:
    radial-gradient(circle at 85% 0, rgb(27 139 120 / 40%), transparent 19rem),
    var(--ink-deep);
}

.principle-card-featured h3 {
  color: var(--white);
}

.principle-card-featured > p:last-child {
  color: #c6d9d5;
}

.card-eyebrow {
  margin-bottom: 0.65rem;
  color: var(--green);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.principle-card-featured .card-eyebrow {
  color: #9dd9c9;
}

.principle-card h3 {
  max-width: 28rem;
  margin-bottom: 0.9rem;
  font-size: clamp(1.4rem, 2.6vw, 2.15rem);
}

.principle-card > p:last-child,
.principle-card > div > p:last-child {
  max-width: 35rem;
  margin-bottom: 0;
  color: var(--muted);
}

.principle-graphic {
  position: relative;
  width: 8rem;
  height: 5.5rem;
  margin-bottom: 3.3rem;
}

.source-graphic span {
  position: absolute;
  left: 0;
  width: 7.25rem;
  height: 1.8rem;
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: 0.55rem;
  background: rgb(255 255 255 / 7%);
}

.source-graphic span:first-child {
  top: 0;
}

.source-graphic span:nth-child(2) {
  top: 1.65rem;
  left: 0.8rem;
}

.source-graphic span:nth-child(3) {
  top: 3.3rem;
  left: 1.6rem;
}

.source-graphic i {
  position: absolute;
  z-index: 2;
  top: 1.55rem;
  left: 5.7rem;
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #a9e1d3;
  box-shadow: 0 9px 18px rgb(0 0 0 / 16%);
}

.source-graphic i::before {
  width: 0.85rem;
  height: 0.45rem;
  margin: auto;
  border-bottom: 2px solid var(--green-dark);
  border-left: 2px solid var(--green-dark);
  content: "";
  transform: translateY(-0.1rem) rotate(-45deg);
}

.principle-symbol {
  display: grid;
  width: 4.5rem;
  height: 4.5rem;
  margin-bottom: 4.3rem;
  border-radius: 1.25rem;
  color: var(--blue);
  background: var(--blue-soft);
  font-size: 1.35rem;
  font-weight: 820;
  place-items: center;
  transform: rotate(-3deg);
}

.principle-symbol-lock {
  color: var(--sand);
  background: var(--sand-soft);
  transform: rotate(3deg);
}

.principle-symbol svg {
  width: 2.3rem;
  height: 2.3rem;
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.principle-card-wide {
  display: grid;
  min-height: 16rem;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1fr) 12rem;
  gap: 2rem;
  align-items: center;
  background: linear-gradient(135deg, #ffffff, #f6fbf9);
}

.privacy-pulse {
  position: relative;
  display: grid;
  width: 10rem;
  height: 10rem;
  justify-self: end;
  border: 1px solid #cce3db;
  border-radius: 50%;
  background: var(--green-pale);
  place-items: center;
}

.privacy-pulse::before {
  width: 4rem;
  height: 5rem;
  border: 2px solid var(--green);
  border-radius: 2.5rem 2.5rem 1.1rem 1.1rem;
  content: "";
}

.privacy-pulse span {
  position: absolute;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--green);
}

.privacy-pulse span:first-child {
  top: 1.25rem;
  left: 3.1rem;
}

.privacy-pulse span:nth-child(2) {
  top: 1.2rem;
  right: 3.15rem;
}

.privacy-pulse span:nth-child(3) {
  bottom: 1.6rem;
}

/* Status */

.section-status {
  background: var(--white);
}

.status-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(28rem, 1.15fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

.status-copy > p:not(.eyebrow, .status-callout) {
  color: var(--muted);
  font-size: 1.08rem;
}

.status-callout {
  display: inline-flex;
  margin: 1rem 0 0;
  padding: 0.65rem 0.85rem;
  border: 1px solid #b9dacd;
  border-radius: 0.65rem;
  color: var(--green-dark);
  background: var(--green-pale);
  font-size: 0.82rem;
  font-weight: 750;
}

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

.status-steps::before {
  position: absolute;
  top: 2.1rem;
  bottom: 2.1rem;
  left: 1.5rem;
  width: 2px;
  background: var(--line);
  content: "";
}

.status-steps li {
  position: relative;
  display: grid;
  min-height: 6.5rem;
  grid-template-columns: 3rem 1fr;
  gap: 1.1rem;
  align-items: center;
}

.status-marker {
  position: relative;
  z-index: 1;
  display: grid;
  width: 3rem;
  height: 3rem;
  border: 2px solid var(--line-strong);
  border-radius: 50%;
  color: #536e6b;
  background: var(--white);
  font-size: 0.76rem;
  font-weight: 800;
  place-items: center;
}

.status-steps .is-complete .status-marker {
  border-color: var(--green);
  color: var(--white);
  background: var(--green);
}

.status-steps .is-current .status-marker {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-soft);
  box-shadow: 0 0 0 7px rgb(11 107 93 / 8%);
}

.status-steps strong {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--ink-deep);
  font-size: 1.03rem;
}

.status-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* FAQ */

.section-faq {
  background: var(--green-pale);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(17rem, 0.68fr) minmax(30rem, 1.32fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}

.faq-intro > p:last-child {
  color: var(--muted);
}

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

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

.faq-list summary {
  position: relative;
  display: grid;
  min-height: 5.5rem;
  grid-template-columns: 1fr 2.5rem;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0;
  color: var(--ink-deep);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  font-weight: 720;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary span {
  position: relative;
  display: grid;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgb(255 255 255 / 65%);
  place-items: center;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  width: 0.8rem;
  height: 2px;
  border-radius: 2px;
  background: var(--green);
  content: "";
  transition: transform 180ms ease;
}

.faq-list summary span::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: rotate(0);
}

.faq-list details > div {
  max-width: 43rem;
  padding: 0 3.5rem 1.5rem 0;
  color: var(--muted);
}

.faq-list details > div p {
  margin: 0;
}

/* Final CTA */

.section-final {
  background: var(--white);
}

.final-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(2.5rem, 7vw, 6rem);
  border-radius: clamp(1.25rem, 3vw, 2.25rem);
  color: #d7e7e3;
  background:
    radial-gradient(circle at 95% 10%, rgb(45 151 131 / 45%), transparent 26rem),
    linear-gradient(135deg, #0f3638, #092a2c);
  box-shadow: var(--shadow-large);
}

.final-card h2 {
  max-width: 54rem;
  color: var(--white);
}

.final-card > p:not(.eyebrow, .contact-note) {
  max-width: 45rem;
  color: #c8d9d5;
  font-size: 1.08rem;
}

.final-actions {
  display: flex;
  gap: 0.8rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.contact-note {
  max-width: 42rem;
  margin: 1.25rem 0 0;
  color: #a9c4be;
  font-size: 0.79rem;
}

.final-decoration {
  position: absolute;
  z-index: -1;
  top: -3rem;
  right: -3rem;
  width: 21rem;
  height: 21rem;
  border: 1px solid rgb(255 255 255 / 8%);
  border-radius: 50%;
}

.final-decoration span {
  position: absolute;
  border: 1px solid rgb(255 255 255 / 8%);
  border-radius: 50%;
}

.final-decoration span:first-child {
  inset: 2.5rem;
}

.final-decoration span:nth-child(2) {
  inset: 5rem;
}

.final-decoration span:nth-child(3) {
  inset: 7.5rem;
  background: rgb(142 221 200 / 8%);
}

/* Footer */

.site-footer {
  padding-block: 4.5rem 1.5rem;
  color: #bcd0cc;
  background: #09292b;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(16rem, 0.85fr) minmax(30rem, 1.15fr);
  gap: clamp(3rem, 8vw, 8rem);
  padding-bottom: 3.5rem;
}

.brand-footer .brand-copy strong {
  color: var(--white);
}

.brand-footer .brand-copy small {
  color: #9cb8b2;
}

.footer-brand > p {
  max-width: 28rem;
  margin: 1.2rem 0 0;
  color: #9fb8b3;
  font-size: 0.9rem;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-nav > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-nav p {
  margin-bottom: 0.75rem;
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-nav a {
  min-height: 2.4rem;
  color: #aac1bc;
  font-size: 0.88rem;
  text-decoration-color: transparent;
  text-underline-offset: 0.25em;
}

.footer-nav a:hover {
  color: var(--white);
  text-decoration-color: currentcolor;
}

.footer-bottom {
  display: flex;
  min-height: 3rem;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid rgb(255 255 255 / 9%);
}

.footer-bottom p {
  margin: 0;
  color: #829f99;
  font-size: 0.74rem;
}

/* Legal pages */

.legal-page {
  background:
    radial-gradient(circle at 90% 0, #dff1ea, transparent 30rem),
    var(--cream);
}

.legal-header {
  position: relative;
  border-bottom-color: var(--line);
}

.legal-nav {
  display: flex;
  min-height: 2.75rem;
  align-items: center;
  color: var(--green-dark);
  font-size: 0.9rem;
  font-weight: 720;
  text-underline-offset: 0.25em;
}

.legal-main {
  padding-block: clamp(3.5rem, 8vw, 7rem);
}

.legal-hero {
  max-width: 52rem;
  margin-bottom: 3rem;
}

.legal-hero h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.75rem, 6vw, 5.25rem);
}

.legal-hero > p:last-child {
  max-width: 43rem;
  color: var(--muted);
  font-size: 1.1rem;
}

.legal-grid {
  display: grid;
  grid-template-columns: minmax(13rem, 0.3fr) minmax(0, 0.7fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: start;
}

.legal-toc {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  background: rgb(255 255 255 / 65%);
}

.legal-toc p {
  margin-bottom: 0.55rem;
  color: var(--ink-deep);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.legal-toc a {
  display: flex;
  min-height: 2.35rem;
  align-items: center;
  color: var(--muted);
  font-size: 0.85rem;
  text-underline-offset: 0.22em;
}

.legal-content {
  min-width: 0;
}

.legal-section {
  padding-block: 0 2.8rem;
  scroll-margin-top: calc(var(--header-height) + 1.5rem);
}

.legal-section + .legal-section {
  padding-top: 2.8rem;
  border-top: 1px solid var(--line-strong);
}

.legal-section h2 {
  margin-bottom: 1.2rem;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.legal-section h3 {
  margin: 1.8rem 0 0.7rem;
  font-size: 1.12rem;
}

.legal-section p,
.legal-section li,
.legal-section address {
  max-width: 48rem;
  color: #486467;
}

.legal-section address {
  font-style: normal;
}

.legal-section ul {
  padding-left: 1.3rem;
}

.legal-section a {
  color: var(--green-dark);
  font-weight: 680;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.25em;
  overflow-wrap: anywhere;
}

.legal-note {
  padding: 1rem 1.1rem;
  border-left: 4px solid var(--green);
  border-radius: 0 0.65rem 0.65rem 0;
  background: var(--green-pale);
}

.legal-meta {
  color: var(--muted);
  font-size: 0.82rem;
}

.simple-footer {
  padding-block: 2rem;
}

.simple-footer .footer-bottom {
  padding-top: 0;
  border-top: 0;
}

/* Progressive reveal */

.reveal-ready [data-reveal].is-visible {
  animation: reveal-rise 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes reveal-rise {
  from {
    transform: translateY(0.7rem);
  }

  to {
    transform: translateY(0);
  }
}

/* Responsive */

@media (max-width: 64rem) {
  :root {
    --header-height: 5rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(21rem, 0.75fr);
    gap: 2.5rem;
  }

  .site-nav {
    gap: 1rem;
  }

  .site-nav ul {
    gap: 0.9rem;
  }

  .site-nav ul a {
    font-size: 0.84rem;
  }

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

  .trust-bar p:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .trust-bar p:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .scope-layout,
  .status-layout {
    gap: 3.5rem;
  }

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

  .faq-layout {
    gap: 4rem;
  }
}

@media (max-width: 52rem) {
  .container {
    width: min(var(--container), calc(100% - 2rem));
  }

  .js .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    max-height: calc(100vh - var(--header-height));
    max-height: calc(100dvh - var(--header-height));
    gap: 1rem;
    align-content: start;
    padding: 1rem;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--cream);
    box-shadow: 0 20px 35px rgb(13 45 48 / 12%);
  }

  .js .site-nav {
    visibility: hidden;
    opacity: 0;
    transform: translateY(-0.75rem);
    transition:
      visibility 0s linear 180ms,
      opacity 180ms ease,
      transform 180ms ease;
  }

  .js .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .no-js .site-header {
    position: relative;
    height: auto;
  }

  .no-js .header-inner {
    flex-wrap: wrap;
    padding-block: 0.5rem;
  }

  .no-js .site-nav {
    position: static;
    display: block;
    width: 100%;
    max-height: none;
    padding: 0.25rem 0 0;
    border: 0;
    border-top: 1px solid var(--line);
    background: transparent;
    box-shadow: none;
  }

  .no-js .site-nav ul {
    display: flex;
    gap: 1.2rem;
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .no-js .site-nav ul a {
    white-space: nowrap;
  }

  .no-js .site-nav .button {
    display: none;
  }

  .site-nav ul {
    display: grid;
    gap: 0;
  }

  .site-nav ul a {
    min-height: 3.25rem;
    font-size: 1rem;
  }

  .site-nav .button {
    width: 100%;
  }

  .hero {
    min-height: auto;
  }

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

  .hero-copy {
    max-width: 48rem;
  }

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

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

  .benefit-card {
    min-height: auto;
  }

  .scope-layout,
  .status-layout,
  .faq-layout,
  .footer-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .scope-panel {
    width: 100%;
  }

  .faq-intro,
  .legal-toc {
    position: static;
  }

  .legal-toc {
    display: none;
  }

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

  .principle-card-wide {
    grid-column: auto;
  }

  .footer-nav {
    gap: 1.25rem;
  }
}

@media (max-width: 38rem) {
  .brand-copy small {
    display: none;
  }

  .nav-toggle-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .hero {
    padding-top: 2.5rem;
  }

  h1 {
    font-size: clamp(2.35rem, 12.5vw, 4rem);
  }

  .hero-actions,
  .final-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .hero-actions .text-link {
    align-self: flex-start;
  }

  .trust-bar {
    grid-template-columns: 1fr;
  }

  .trust-bar p {
    justify-content: flex-start;
    text-align: left;
  }

  .trust-bar p + p,
  .trust-bar p:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .process-list::before {
    left: 1.45rem;
  }

  .process-list li {
    min-height: 0;
    grid-template-columns: 2.9rem 1fr;
    gap: 1rem;
    padding: 1.75rem 0;
  }

  .process-number {
    width: 2.9rem;
    height: 2.9rem;
    align-self: start;
  }

  .process-icon {
    display: none;
  }

  .boundary-list {
    grid-template-columns: 1fr;
  }

  .principle-card {
    min-height: auto;
  }

  .principle-symbol,
  .principle-graphic {
    margin-bottom: 2.5rem;
  }

  .principle-card-wide {
    grid-template-columns: 1fr;
  }

  .privacy-pulse {
    width: 8rem;
    height: 8rem;
    margin-top: 1rem;
    justify-self: start;
  }

  .privacy-pulse::before {
    width: 3.25rem;
    height: 4rem;
  }

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

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .scope-list li {
    align-items: start;
    padding-block: 1rem;
  }
}

@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;
  }

  .reveal-ready [data-reveal].is-visible {
    animation: none;
  }
}

@media (forced-colors: active) {
  .button,
  .status-pill,
  .trust-bar,
  .benefit-card,
  .scope-panel,
  .boundary-panel,
  .principle-card,
  .status-callout,
  .faq-list summary span,
  .final-card {
    border: 1px solid CanvasText;
  }

  .status-dot,
  .status-marker,
  .trust-bar span,
  .boundary-list span {
    forced-color-adjust: none;
  }
}

@media print {
  .site-header,
  .hero-visual,
  .hero-actions,
  .final-actions,
  .site-footer,
  .nav-toggle {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
    font-size: 11pt;
  }

  .section,
  .hero {
    min-height: 0;
    padding-block: 1.5rem;
    background: #fff;
  }

  .benefit-card,
  .scope-panel,
  .boundary-panel,
  .principle-card,
  .final-card {
    color: #000;
    break-inside: avoid;
    border: 1px solid #888;
    background: #fff;
    box-shadow: none;
  }

  .boundary-panel *,
  .principle-card-featured *,
  .final-card * {
    color: #000 !important;
  }
}
