:root {
  --plum: #2d1830;
  --berry: #c92f71;
  --berry-hover: #a92361;
  --berry-soft: #fce3ee;
  --leaf: #3e7c15;
  --leaf-soft: #e8f5df;
  --sky: #277cac;
  --sky-soft: #e0f3fc;
  --paper: #fff5fa;
  --surface: #fffbfd;
  --muted: #6d5269;
  --line: #ecd9e3;
  --shadow-soft: 0 14px 30px rgba(45, 24, 48, 0.05);
  --shadow-button: 0 10px 24px rgba(201, 47, 113, 0.2);
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--plum);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

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

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

a:focus-visible,
.table-scroll:focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: 4px;
}

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

h1,
h2,
h3 {
  letter-spacing: 0;
}

.wrap {
  width: min(var(--max-width), calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  padding: 9px 13px;
  border-radius: 6px;
  background: var(--berry);
  color: white;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.site-header {
  background: var(--paper);
}

.nav-shell {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 82px;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 10px;
  color: var(--plum);
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  color: var(--muted);
  font-size: 14px;
}

.main-nav a,
.nav-contact,
.footer-links a {
  transition: color 180ms ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"],
.nav-contact:hover,
.footer-links a:hover {
  color: var(--berry);
}

.nav-contact {
  justify-self: end;
  color: var(--berry);
  font-size: 14px;
  font-weight: 750;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--berry);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.25;
}

.eyebrow.light {
  color: var(--berry);
}

.hero-band {
  background: var(--paper);
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  min-height: 640px;
  gap: 30px;
  padding-block: 72px 90px;
}

.hero-copy h1 {
  margin-bottom: 8px;
  color: var(--plum);
  font-size: 76px;
  line-height: 1.08;
}

.hero-statement {
  margin-bottom: 24px;
  color: var(--berry);
  font-size: 44px;
  font-weight: 800;
  line-height: 1.12;
}

.hero-lede {
  max-width: 560px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.25;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

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

.button-light,
.button-dark {
  background: var(--berry);
  color: white;
  box-shadow: var(--shadow-button);
}

.button-light:hover,
.button-dark:hover {
  background: var(--berry-hover);
}

.text-link {
  display: inline-block;
  color: var(--berry);
  border-bottom: 1px solid currentColor;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.4;
  transition: color 180ms ease;
}

.text-link:hover,
.light-link:hover {
  color: var(--sky);
}

.light-link {
  color: var(--berry);
}

.hero-mark {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 430px;
}

.mark-frame,
.hero-mark::before,
.hero-mark::after {
  display: none;
}

.hero-mark img {
  position: relative;
  width: min(370px, 78vw);
  filter: drop-shadow(0 24px 30px rgba(45, 24, 48, 0.2));
  animation: float 4s ease-in-out infinite;
}

.hero-mark p {
  position: absolute;
  bottom: 2px;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

@keyframes float {
  50% {
    transform: translateY(-10px) rotate(1deg);
  }
}

.signal-band {
  padding-block: 28px 108px;
  background: var(--paper);
}

.signal-grid,
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.signal-grid article,
.step-card {
  min-height: 210px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.signal-number,
.step-index {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--berry-soft);
  color: var(--berry);
  font-size: 12px;
  font-weight: 800;
}

.signal-grid article:nth-child(2) .signal-number,
.step-card:nth-child(2) .step-index {
  background: var(--leaf-soft);
  color: var(--leaf);
}

.signal-grid article:nth-child(3) .signal-number,
.step-card:nth-child(3) .step-index {
  background: var(--sky-soft);
  color: var(--sky);
}

.signal-grid h2,
.step-card h3,
.community-list h3 {
  margin-bottom: 8px;
  color: var(--plum);
  font-size: 21px;
  line-height: 1.2;
}

.signal-grid p:last-child,
.step-card p:last-child,
.community-list p,
.section-lede,
.standards-copy,
.contact-layout > div:last-child p {
  color: var(--muted);
}

.signal-grid p:last-child,
.step-card p:last-child {
  margin-bottom: 0;
  font-size: 15px;
}

.content-band {
  padding-block: 96px 108px;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.split-heading,
.standards-layout,
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 70px;
}

.split-heading h2,
.standards-layout h2,
.contact-layout h2 {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--plum);
  font-size: 48px;
  line-height: 1.15;
}

.section-lede {
  align-self: end;
  margin-bottom: 0;
  font-size: 18px;
}

.steps-grid {
  margin-top: 38px;
}

.step-card {
  min-height: 270px;
}

.step-index {
  margin-bottom: 40px;
}

.editorial-band {
  background: var(--berry-soft);
  color: var(--plum);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.editorial-layout {
  display: grid;
  grid-template-columns: 140px 1fr 0.8fr;
  gap: 40px;
  padding-block: 92px;
}

.section-label {
  border-right: 1px solid rgba(201, 47, 113, 0.25);
}

.vertical-note {
  margin: 74px 0 0;
  color: var(--berry);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  writing-mode: vertical-rl;
}

.editorial-copy h2 {
  margin-bottom: 22px;
  color: var(--plum);
  font-size: 48px;
  line-height: 1.12;
}

.editorial-copy > p {
  max-width: 560px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 18px;
}

.community-list {
  align-self: end;
}

.community-list article {
  padding: 20px 0;
  border-top: 1px solid rgba(201, 47, 113, 0.22);
}

.community-list article:last-child {
  border-bottom: 1px solid rgba(201, 47, 113, 0.22);
}

.community-list p {
  margin-bottom: 0;
  font-size: 15px;
}

.standards-band {
  background: var(--paper);
}

.standards-copy > p {
  margin-bottom: 24px;
  font-size: 18px;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 0 0 28px;
  padding: 0;
  color: var(--plum);
  font-weight: 700;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 10px;
  align-items: baseline;
}

.check-list li::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--leaf);
  content: "";
}

.contact-band {
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.contact-layout {
  align-items: end;
  padding-block: 78px;
}

.contact-layout > div:last-child p {
  margin-bottom: 0;
  font-size: 18px;
}

.contact-layout .button-dark {
  margin-top: 20px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--paper);
  color: var(--muted);
}

.footer-layout {
  display: grid;
  grid-template-columns: 1fr 1fr auto auto;
  align-items: center;
  min-height: 104px;
  gap: 22px;
}

.footer-brand img {
  width: 34px;
  height: 34px;
}

.footer-layout p {
  margin: 0;
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 18px;
  color: var(--plum);
  font-size: 13px;
  font-weight: 700;
}

.copyright {
  text-align: right;
}

.legal-hero {
  background: var(--paper);
}

.legal-hero-layout {
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  align-items: end;
  min-height: 300px;
  gap: 40px;
  padding-block: 62px;
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  margin-bottom: 0;
  color: var(--plum);
  font-size: 54px;
  line-height: 1.08;
}

.legal-meta {
  padding-top: 10px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.legal-meta p {
  margin: 8px 0 0;
}

.legal-shell {
  display: grid;
  grid-template-columns: 200px minmax(0, 800px);
  justify-content: space-between;
  gap: 68px;
  padding-block: 72px 104px;
}

.legal-toc {
  position: sticky;
  top: 24px;
  align-self: start;
  display: grid;
  gap: 10px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
  box-shadow: var(--shadow-soft);
}

.legal-toc p {
  margin: 0 0 6px;
  color: var(--berry);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.legal-toc a {
  width: fit-content;
  transition: color 180ms ease;
}

.legal-toc a:hover {
  color: var(--berry);
}

.legal-intro {
  margin-bottom: 48px;
  color: var(--plum);
  font-size: 22px;
  font-weight: 650;
  line-height: 1.5;
}

.legal-copy section {
  scroll-margin-top: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.legal-copy h2 {
  margin-bottom: 12px;
  color: var(--plum);
  font-size: 22px;
  line-height: 1.3;
}

.legal-copy p {
  color: #543f52;
}

.legal-copy strong {
  color: var(--plum);
}

.legal-copy a {
  color: var(--berry);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.table-scroll {
  width: 100%;
  margin: 22px 0;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  text-align: left;
  font-size: 14px;
  line-height: 1.5;
}

th,
td {
  padding: 15px 16px;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

tbody tr:last-child td {
  border-bottom: 0;
}

th {
  background: var(--berry-soft);
  color: var(--plum);
  font-size: 12px;
  letter-spacing: 0.04em;
}

td:first-child {
  width: 21%;
  color: var(--plum);
  font-weight: 800;
}

@media (max-width: 900px) {
  .hero-copy h1 {
    font-size: 64px;
  }

  .hero-statement {
    font-size: 38px;
  }

  .split-heading,
  .standards-layout,
  .contact-layout {
    gap: 42px;
  }

  .split-heading h2,
  .standards-layout h2,
  .contact-layout h2,
  .editorial-copy h2 {
    font-size: 42px;
  }

  .editorial-layout {
    grid-template-columns: 100px 1fr 0.75fr;
    gap: 28px;
  }

  .legal-shell {
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 40px;
  }

  .footer-layout {
    grid-template-columns: 1fr auto;
    gap: 12px 24px;
    padding-block: 26px;
  }

  .footer-links {
    grid-column: 2;
    grid-row: 1;
  }

  .copyright {
    grid-column: 2;
    grid-row: 2;
  }
}

@media (max-width: 720px) {
  .wrap {
    width: min(100% - 28px, 560px);
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
    min-height: 70px;
  }

  .main-nav {
    display: none;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 22px;
    padding-block: 50px 64px;
  }

  .hero-mark {
    min-height: 320px;
    order: -1;
  }

  .hero-mark img {
    width: 260px;
  }

  .hero-copy h1 {
    font-size: 50px;
  }

  .hero-statement {
    font-size: 32px;
  }

  .hero-lede,
  .section-lede,
  .standards-copy > p,
  .contact-layout > div:last-child p,
  .editorial-copy > p {
    font-size: 17px;
  }

  .signal-band {
    padding-block: 0 70px;
  }

  .signal-grid,
  .steps-grid,
  .split-heading,
  .standards-layout,
  .contact-layout,
  .legal-hero-layout,
  .editorial-layout,
  .legal-shell {
    grid-template-columns: 1fr;
  }

  .signal-grid,
  .steps-grid {
    gap: 12px;
  }

  .signal-grid article,
  .step-card {
    min-height: 0;
  }

  .content-band,
  .editorial-layout {
    padding-block: 70px;
  }

  .split-heading,
  .standards-layout,
  .contact-layout,
  .legal-hero-layout {
    gap: 24px;
  }

  .split-heading h2,
  .standards-layout h2,
  .contact-layout h2,
  .editorial-copy h2 {
    font-size: 36px;
  }

  .steps-grid {
    margin-top: 34px;
  }

  .step-index {
    margin-bottom: 28px;
  }

  .section-label {
    display: flex;
    justify-content: space-between;
    border-right: 0;
    border-bottom: 1px solid rgba(201, 47, 113, 0.25);
  }

  .vertical-note {
    margin: 0 0 16px;
    writing-mode: horizontal-tb;
  }

  .contact-layout {
    padding-block: 66px;
  }

  .legal-hero-layout {
    min-height: 0;
    padding-block: 50px;
  }

  .legal-hero h1 {
    font-size: 42px;
  }

  .legal-shell {
    gap: 34px;
    padding-block: 48px 70px;
  }

  .legal-toc {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .legal-toc p {
    grid-column: 1 / -1;
  }

  .legal-intro {
    margin-bottom: 38px;
    font-size: 20px;
  }

  .footer-layout {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 0;
  }

  .copyright {
    text-align: left;
  }
}

@media (max-width: 390px) {
  .wrap {
    width: min(100% - 24px, 560px);
  }

  .brand {
    font-size: 18px;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .nav-contact {
    font-size: 13px;
  }

  .hero-copy h1 {
    font-size: 44px;
  }

  .hero-statement {
    font-size: 29px;
  }

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

  .split-heading h2,
  .standards-layout h2,
  .contact-layout h2,
  .editorial-copy h2 {
    font-size: 32px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
