:root {
  --navy: #102b5c;
  --navy-deep: #0b1d3f;
  --green: #2f6b57;
  --green-dark: #245342;
  --paper: #f7f5f1;
  --cream: #f0ebe3;
  --white: #ffffff;
  --ink: #223044;
  --muted: #697386;
  --border: #e7e4de;
  --peach: #d99f8b;
  --soft-green: #eaf3ee;
  --soft-red: #fff2ef;
  --shadow: 0 24px 70px rgba(16, 43, 92, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 245, 241, 0.94);
  border-bottom: 1px solid rgba(231, 228, 222, 0.9);
  backdrop-filter: blur(14px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.brand-logo {
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
}

.brand span {
  display: grid;
  line-height: 1.1;
}

.brand strong {
  color: var(--navy-deep);
  font-size: 17px;
  letter-spacing: 0.08em;
}

.brand small {
  max-width: 310px;
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

nav a {
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

nav a:hover,
nav a:focus-visible {
  color: var(--green);
}

nav .nav-cta {
  background: var(--navy);
  color: var(--white);
  padding: 10px 15px;
  border-radius: 8px;
}

nav .nav-cta:hover,
nav .nav-cta:focus-visible {
  background: var(--green);
  color: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 86px;
  background:
    radial-gradient(circle at 85% 12%, rgba(217, 159, 139, 0.2), transparent 30%),
    linear-gradient(140deg, #faf8f4 0%, #f4f1ea 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -180px;
  bottom: -240px;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(47, 107, 87, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 65px rgba(47, 107, 87, 0.035), 0 0 0 130px rgba(47, 107, 87, 0.025);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(310px, 0.75fr);
  align-items: center;
  gap: 70px;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(42px, 5.2vw, 70px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

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

h2 {
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(31px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

h3 {
  color: var(--navy-deep);
  line-height: 1.25;
}

.lead {
  max-width: 720px;
  margin: 28px 0 0;
  color: #34455c;
  font-size: 20px;
  line-height: 1.55;
}

.hero-note {
  max-width: 690px;
  margin: 18px 0 0;
  padding-left: 18px;
  border-left: 3px solid var(--peach);
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-size: 15px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

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

.button.primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(47, 107, 87, 0.2);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--green-dark);
}

.button.secondary {
  border-color: #cfd5cf;
  background: rgba(255, 255, 255, 0.6);
  color: var(--navy);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: var(--green);
  background: var(--white);
}

.microcopy {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.promise-card {
  position: relative;
  padding: 38px 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: var(--navy-deep);
  color: var(--white);
  box-shadow: var(--shadow);
}

.promise-card::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -90px;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.promise-kicker {
  color: #bdd7ca;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.promise-card h2 {
  margin: 13px 0 25px;
  color: var(--white);
  font-size: clamp(32px, 3.3vw, 44px);
}

.check-list,
.cross-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.cross-list li {
  position: relative;
  padding-left: 29px;
}

.check-list li + li,
.cross-list li + li {
  margin-top: 13px;
}

.check-list li::before {
  content: "\2713";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--green);
  font-weight: 900;
}

.promise-card .check-list li::before {
  color: #9bc7b2;
}

.compact {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.trust-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

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

.trust-grid > div {
  display: grid;
  gap: 2px;
  padding: 24px 28px;
  border-left: 1px solid var(--border);
}

.trust-grid > div:last-child {
  border-right: 1px solid var(--border);
}

.trust-grid strong {
  color: var(--navy-deep);
  font-size: 14px;
}

.trust-grid span {
  color: var(--muted);
  font-size: 12px;
}

.section {
  padding: 104px 0;
}

.section-heading {
  max-width: 770px;
  margin: 0 auto 50px;
  text-align: center;
}

.section-heading.left {
  margin: 0;
  text-align: left;
}

.section-heading > p:last-child,
.section-intro {
  margin: 19px 0 0;
  color: var(--muted);
  font-size: 18px;
}

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

.scope-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.scope-card {
  position: relative;
  padding: 42px;
  border: 1px solid var(--border);
  border-radius: 18px;
}

.scope-do {
  background: linear-gradient(180deg, #f4faf6 0%, #ffffff 100%);
}

.scope-dont {
  background: linear-gradient(180deg, #fff7f5 0%, #ffffff 100%);
}

.scope-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 22px;
  font-weight: 900;
}

.scope-do .scope-icon {
  background: var(--soft-green);
  color: var(--green);
}

.scope-dont .scope-icon {
  background: var(--soft-red);
  color: #a35246;
}

.scope-card h3 {
  margin: 21px 0 26px;
  font-size: 23px;
}

.scope-card li {
  color: #42516a;
  font-size: 15px;
}

.cross-list li::before {
  content: "\2014";
  position: absolute;
  top: 0;
  left: 0;
  color: #b56255;
  font-weight: 900;
}

.boundary-note {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 30px;
  margin-top: 24px;
  padding: 28px 32px;
  border: 1px solid #d9e1dc;
  border-radius: 12px;
  background: #f8faf8;
}

.boundary-note strong {
  color: var(--green-dark);
  font-size: 18px;
}

.boundary-note p {
  margin: 0;
  color: var(--muted);
}

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

.process-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: start;
  gap: 80px;
}

.steps {
  display: grid;
  gap: 0;
  margin-top: 40px;
}

.steps article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  padding: 25px 0;
  border-top: 1px solid var(--border);
}

.steps article:last-child {
  border-bottom: 1px solid var(--border);
}

.steps article > span {
  color: var(--peach);
  font-size: 17px;
  font-weight: 800;
}

.steps h3 {
  margin: 0;
  font-size: 18px;
}

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

.tools-card {
  position: sticky;
  top: 112px;
  padding: 38px;
  border: 1px solid rgba(16, 43, 92, 0.12);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.tools-card h3 {
  margin: 0 0 18px;
  font-size: 28px;
}

.tools-card > p:not(.eyebrow) {
  color: var(--muted);
}

.tools-card ul {
  margin: 25px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--border);
  list-style: none;
}

.tools-card li {
  position: relative;
  padding-left: 20px;
  color: #42516a;
  font-size: 14px;
}

.tools-card li + li {
  margin-top: 10px;
}

.tools-card li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

.white-label-section {
  background: var(--navy-deep);
  color: var(--white);
}

.white-label-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.white-label-section .eyebrow {
  color: #9bc7b2;
}

.white-label-section h2 {
  color: var(--white);
}

.white-label-section p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.pill-row span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 700;
}

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

.faq-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 80px;
  align-items: start;
}

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

details {
  border-bottom: 1px solid var(--border);
}

summary {
  position: relative;
  padding: 24px 44px 24px 0;
  color: var(--navy-deep);
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  top: 20px;
  right: 5px;
  color: var(--green);
  font-size: 24px;
}

details[open] summary::after {
  content: "−";
}

details p {
  max-width: 700px;
  margin: -3px 0 24px;
  color: var(--muted);
}

.cta-section {
  padding: 0 0 100px;
  background: var(--white);
}

.cta-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: center;
  padding: 48px 52px;
  border-radius: 18px;
  background: var(--green);
  color: var(--white);
  box-shadow: 0 25px 60px rgba(47, 107, 87, 0.18);
}

.cta-card .eyebrow {
  color: #d7e9df;
}

.cta-card h2 {
  color: var(--white);
  font-size: clamp(29px, 3.5vw, 42px);
}

.cta-card p:not(.eyebrow) {
  max-width: 720px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

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

.legal-note {
  padding: 34px 0;
  border-top: 1px solid var(--border);
  background: var(--paper);
}

.legal-note p {
  max-width: 1000px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.legal-note .official-links {
  margin-top: 9px;
}

.legal-note a {
  color: var(--navy);
}

footer {
  padding: 42px 0;
  background: #08162f;
  color: rgba(255, 255, 255, 0.7);
}

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

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

.footer-brand small {
  color: rgba(255, 255, 255, 0.56);
}

.footer-inner a {
  color: var(--white);
}

.footer-inner p {
  margin: 4px 0 0;
  font-size: 12px;
}

.footer-meta {
  text-align: right;
}

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

@media (max-width: 900px) {
  nav > a:not(.nav-cta) {
    display: none;
  }

  .hero {
    padding: 70px 0;
  }

  .hero-grid,
  .scope-grid,
  .process-grid,
  .white-label-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .process-grid,
  .white-label-grid,
  .faq-grid {
    gap: 45px;
  }

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

  .trust-grid > div:nth-child(2) {
    border-right: 1px solid var(--border);
  }

  .trust-grid > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }

  .boundary-note {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .tools-card {
    position: static;
  }

  .cta-card {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .cta-card .button {
    justify-self: start;
  }

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

  .footer-meta {
    grid-column: 1 / -1;
    text-align: left;
  }
}

@media (max-width: 600px) {
  .shell {
    width: min(100% - 28px, 1160px);
  }

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

  .brand strong {
    font-size: 15px;
  }

  .brand small {
    font-size: 9px;
  }

  .site-header nav {
    display: none;
  }

  .hero {
    padding: 54px 0 60px;
  }

  h1 {
    font-size: clamp(38px, 12.2vw, 52px);
  }

  .lead {
    font-size: 17px;
  }

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

  .promise-card,
  .scope-card,
  .tools-card {
    padding: 28px 24px;
  }

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

  .trust-grid > div,
  .trust-grid > div:nth-child(2),
  .trust-grid > div:last-child {
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .trust-grid > div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 76px 0;
  }

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

  .cta-section {
    padding-bottom: 70px;
  }

  .cta-card {
    padding: 34px 26px;
  }

  .cta-card .button {
    width: 100%;
  }

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

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

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