:root {
  --ink: #1d1d1f;
  --muted: #6e6e73;
  --line: #d2d2d7;
  --line-soft: #e8e8ed;
  --soft: #f5f5f7;
  --white: #ffffff;
  --brand-orange: #ff563f;
  --text-orange: #c7352b;
  --green: #146c43;
  --blue: #0066cc;
  --blue-hover: #004f9e;
  --content-max: 1200px;
  --nav-max: 1024px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--white);
  scroll-behavior: smooth;
  scroll-padding-top: 44px;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
    "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

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

figure,
dl,
dd {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
}

[id] {
  scroll-margin-top: 44px;
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 16px;
  min-height: 40px;
  transform: translateY(-160%);
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  transition: transform 200ms var(--ease-out);
}

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

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

.global-header {
  position: sticky;
  z-index: 50;
  top: 0;
  height: 44px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  transition: background-color 200ms ease;
}

.global-header::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: rgba(29, 29, 31, 0.14);
  content: "";
  opacity: 0;
  transition: opacity 200ms ease;
}

.global-header.is-scrolled {
  background: rgba(255, 255, 255, 0.86);
}

.global-header.is-scrolled::after {
  opacity: 1;
}

.site-header {
  display: grid;
  width: min(calc(100% - 48px), var(--nav-max));
  height: 44px;
  margin-inline: auto;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand,
.footer-brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.brand {
  min-height: 44px;
}

.brand-mark {
  position: relative;
  display: block;
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 5px;
}

.brand-mark img {
  position: absolute;
  width: 42px;
  height: 42px;
  max-width: none;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
}

.site-nav {
  display: flex;
  justify-self: center;
  align-items: center;
  gap: clamp(17px, 2.2vw, 28px);
  color: #3a3a3c;
  font-size: 12px;
  font-weight: 400;
}

.site-nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  white-space: nowrap;
  transition: color 180ms ease;
}

.site-nav a:hover {
  color: var(--blue);
}

.nav-action {
  display: inline-flex;
  min-height: 30px;
  justify-self: end;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  transition: background-color 180ms ease;
}

.nav-action:hover {
  background: #343438;
}

.mobile-menu {
  display: none;
}

.hero {
  display: flex;
  min-height: calc(100svh - 44px);
  align-items: center;
  background: var(--white);
}

.hero-inner {
  display: grid;
  padding-block: clamp(120px, 11vw, 168px);
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  align-items: center;
  gap: clamp(64px, 8vw, 112px);
}

.eyebrow,
.section-kicker {
  margin: 0;
  color: var(--text-orange);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.eyebrow {
  margin-bottom: 24px;
}

.hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: 72px;
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.hero-intro {
  max-width: 700px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 24px;
  letter-spacing: -0.015em;
  line-height: 1.33;
}

.hero-actions {
  display: flex;
  margin-top: 32px;
  align-items: center;
  gap: 28px;
}

.primary-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  padding: 11px 22px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
  transition: background-color 200ms ease, transform 200ms ease;
}

.primary-button:hover {
  transform: translateY(-1px);
  background: var(--blue-hover);
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 16px;
  font-weight: 600;
  transition: color 180ms ease;
}

.text-link:hover {
  color: var(--blue-hover);
}

.hero-visual {
  display: flex;
  min-width: 0;
  align-items: center;
  flex-direction: column;
}

.logo-frame {
  position: relative;
  width: min(100%, 420px);
  aspect-ratio: 1;
  overflow: hidden;
}

.logo-frame img {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 142%;
  max-width: none;
  transform: translate(-50%, -50%);
  transition: transform 700ms var(--ease-out);
}

.logo-frame:hover img {
  transform: translate(-50%, -50%) scale(1.01);
}

.hero-visual figcaption {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.principles {
  border-top: 1px solid var(--line-soft);
  background: var(--white);
}

.principles-inner {
  display: grid;
  padding-block: 40px 72px;
  grid-template-columns: repeat(3, 1fr);
  color: #3a3a3c;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.principles p {
  margin: 0;
}

.principles p:nth-child(2) {
  text-align: center;
}

.principles p:last-child {
  text-align: right;
}

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

.family-intro {
  width: min(calc(100% - 128px), 840px);
  margin-inline: auto;
  padding-block: 144px;
  text-align: center;
}

.section-kicker {
  margin-bottom: 24px;
}

.family-intro h2,
.product-section h2,
.downloads-copy h2,
.purpose h2,
.contact h2 {
  margin: 0;
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.family-intro > p:last-child {
  max-width: 680px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 19px;
  letter-spacing: -0.012em;
  line-height: 1.47;
}

.product-section {
  padding-block: 144px;
  background: var(--white);
}

.product-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(380px, 0.97fr);
  align-items: center;
  gap: clamp(72px, 8vw, 112px);
}

.product-copy {
  max-width: 620px;
}

.product-index {
  display: flex;
  margin-bottom: 48px;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.product-index span:first-child::after {
  margin-left: 10px;
  color: #a1a1a6;
  content: "—";
}

.product-name {
  margin: 0 0 20px;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.product-name em {
  color: var(--text-orange);
  font-style: normal;
}

.apply-wordmark em {
  color: var(--brand-orange);
  font-style: normal;
}

.product-description {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 17px;
  letter-spacing: -0.008em;
  line-height: 1.47;
}

.product-action {
  margin-top: 28px;
}

.product-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 30px;
}

.base-visual {
  display: flex;
  padding: 56px;
  flex-direction: column;
  justify-content: center;
  background: var(--soft);
}

.base-visual .visual-label {
  color: var(--text-orange);
  font-size: 13px;
  font-weight: 600;
}

.base-visual strong {
  margin-top: auto;
  font-size: clamp(112px, 12vw, 172px);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.visual-rule {
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 36px;
  background: var(--blue);
}

.base-visual p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.4;
}

.facts {
  display: grid;
  margin-top: 44px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.facts > dl {
  min-width: 0;
  padding: 20px 20px 22px 0;
  border-top: 1px solid var(--line);
}

.facts > dl:nth-child(even) {
  padding-left: 20px;
}

.facts dt {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.facts dd {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.statement {
  display: grid;
  padding: 128px 64px;
  place-items: center;
  background: var(--soft);
  text-align: center;
}

.statement p {
  max-width: 920px;
  margin: 0;
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.product-guard {
  background: var(--white);
}

.guard-list {
  margin-top: 36px;
  border-top: 1px solid var(--line);
  list-style: none;
}

.guard-list li {
  display: flex;
  min-height: 52px;
  padding-block: 13px;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  font-weight: 600;
}

.guard-list li > span:first-child {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: #e7f4ec;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
}

.guard-visual {
  display: flex;
  padding: 56px;
  flex-direction: column;
  background: var(--soft);
}

.guard-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
}

.verified-dot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
}

.verified-dot::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.receipt-lines {
  display: grid;
  margin-top: 76px;
  gap: 13px;
}

.receipt-lines span {
  height: 10px;
  border-radius: 999px;
  background: #d9d9de;
}

.receipt-lines span:nth-child(1) {
  width: 68%;
}

.receipt-lines span:nth-child(2) {
  width: 86%;
}

.receipt-lines span:nth-child(3) {
  width: 52%;
}

.receipt-chain {
  display: flex;
  margin: auto 0 64px;
  align-items: center;
}

.receipt-chain i {
  display: block;
  width: 18px;
  height: 18px;
  border: 5px solid var(--blue);
  border-radius: 50%;
  background: var(--white);
}

.receipt-chain b {
  display: block;
  width: 27%;
  height: 2px;
  background: var(--blue);
}

.guard-visual > p {
  max-width: 360px;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.06;
}

.product-apply {
  background: var(--soft);
}

.apply-principles {
  display: flex;
  margin-top: 32px;
  flex-wrap: wrap;
  gap: 8px 0;
  color: #3a3a3c;
  font-size: 14px;
  font-weight: 600;
  list-style: none;
}

.apply-principles li:not(:last-child)::after {
  margin-inline: 12px;
  color: #a1a1a6;
  content: "•";
}

.apply-visual {
  display: flex;
  padding: 56px;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}

.apply-wordmark {
  position: absolute;
  top: 48px;
  left: 56px;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.apply-visual > p {
  margin: 0 0 12px;
  color: var(--text-orange);
  font-size: 13px;
  font-weight: 600;
}

.apply-visual > strong {
  max-width: 430px;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.04;
}

.profile-progress {
  height: 3px;
  margin-top: 48px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--line);
}

.profile-progress span {
  display: block;
  width: 72%;
  height: 100%;
  background: var(--brand-orange);
}

.apply-visual small {
  margin-top: 14px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.downloads-section {
  padding-block: 144px;
  background: var(--white);
}

.downloads-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  align-items: center;
  gap: clamp(64px, 9vw, 128px);
}

.downloads-copy {
  max-width: 720px;
}

.downloads-copy > p:last-child {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.47;
}

.download-status {
  padding: 8px 0 8px 40px;
  border-left: 1px solid var(--line);
}

.download-status > span,
.download-status > strong {
  display: block;
}

.download-status > span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.download-status > strong {
  margin-top: 8px;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.download-status button {
  min-height: 44px;
  margin-top: 24px;
  border: 0;
  border-radius: 999px;
  background: #e8e8ed;
  color: #3a3a3c;
  padding: 10px 22px;
  font-size: 15px;
  font-weight: 600;
  cursor: not-allowed;
}

.purpose-section {
  background: var(--soft);
}

.purpose {
  display: grid;
  padding-block: 144px;
  grid-template-columns: minmax(240px, 0.64fr) minmax(0, 1.36fr);
  align-items: center;
  gap: clamp(72px, 9vw, 128px);
}

.purpose-mark {
  position: relative;
  width: 100%;
  max-width: 360px;
  aspect-ratio: 1;
  overflow: hidden;
}

.purpose-mark img {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 145%;
  max-width: none;
  transform: translate(-50%, -50%);
}

.purpose > div:last-child > p:last-child {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.47;
}

.contact {
  background: var(--white);
}

.contact-inner {
  padding-block: 144px;
}

.contact-inner > p:nth-of-type(2) {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.47;
}

.contact-inner > a {
  display: inline-flex;
  min-height: 44px;
  margin-top: 32px;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-size: clamp(20px, 2.1vw, 28px);
  font-weight: 600;
  letter-spacing: -0.02em;
  overflow-wrap: anywhere;
}

.contact-inner > a:hover {
  color: var(--blue-hover);
}

.site-footer {
  background: var(--soft);
}

.site-footer > .content-shell {
  padding-block: 52px 28px;
}

.footer-main,
.footer-legal {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
}

.footer-main {
  padding-bottom: 48px;
}

.footer-main > p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.footer-actions {
  justify-self: end;
}

.footer-actions a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
}

.footer-legal {
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.footer-legal p {
  margin: 0;
}

.footer-legal p:first-child {
  grid-column: 1 / span 2;
}

.footer-legal p:last-child {
  grid-column: 3;
  text-align: right;
}

.reveal-block {
  opacity: 1;
  transform: none;
}

.motion-ready .reveal-block {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}

.motion-ready .reveal-block.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.motion-ready .product-visual.reveal-block,
.motion-ready .download-status.reveal-block {
  transition-delay: 80ms;
}

@keyframes menu-in {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .content-shell {
    width: min(calc(100% - 80px), var(--content-max));
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
    gap: 56px;
  }

  .hero h1 {
    font-size: 56px;
  }

  .hero-intro {
    font-size: 22px;
  }

  .family-intro {
    width: min(calc(100% - 80px), 760px);
  }

  .family-intro h2,
  .product-section h2,
  .downloads-copy h2,
  .purpose h2,
  .contact h2 {
    font-size: 46px;
  }

  .product-grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
    gap: 56px;
  }

  .product-visual {
    min-height: 480px;
  }

  .base-visual,
  .guard-visual,
  .apply-visual {
    padding: 44px;
  }

  .apply-wordmark {
    top: 40px;
    left: 44px;
  }

  .apply-visual > strong {
    font-size: 42px;
  }
}

@media (max-width: 900px) {
  .site-header {
    width: calc(100% - 44px);
    grid-template-columns: 1fr auto;
    gap: 16px;
  }

  .site-nav,
  .nav-action {
    display: none;
  }

  .mobile-menu {
    display: block;
    justify-self: end;
  }

  .mobile-menu summary {
    list-style: none;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu-button {
    display: inline-flex;
    min-width: 52px;
    min-height: 44px;
    align-items: center;
    justify-content: flex-end;
    color: var(--ink);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
  }

  .mobile-menu-panel {
    position: fixed;
    z-index: 49;
    top: 44px;
    right: 0;
    left: 0;
    display: grid;
    padding: 8px 22px 20px;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.98);
    animation: menu-in 200ms var(--ease-out) both;
  }

  .mobile-menu:not([open]) .mobile-menu-panel {
    display: none;
  }

  .mobile-menu-panel a {
    display: flex;
    min-height: 48px;
    align-items: center;
    border-bottom: 1px solid var(--line-soft);
    font-size: 16px;
    font-weight: 400;
  }

  .mobile-menu-panel a:last-child {
    border-bottom: 0;
  }

  .product-section,
  .downloads-section {
    padding-block: 112px;
  }

  .purpose,
  .contact-inner {
    padding-block: 112px;
  }
}

@media (max-width: 820px) {
  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding-block: 104px 96px;
    grid-template-columns: 1fr;
    gap: 56px;
  }

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

  .hero-visual {
    justify-self: center;
  }

  .logo-frame {
    width: min(64vw, 380px);
  }

  .product-grid,
  .downloads-inner,
  .purpose {
    grid-template-columns: 1fr;
  }

  .product-grid {
    gap: 64px;
  }

  .product-copy {
    max-width: 680px;
  }

  .product-visual {
    width: 100%;
    min-height: 480px;
  }

  .download-status {
    max-width: 360px;
  }

  .purpose {
    gap: 40px;
  }

  .purpose-mark {
    width: 220px;
  }
}

@media (max-width: 600px) {
  .content-shell,
  .site-header {
    width: calc(100% - 44px);
  }

  .eyebrow,
  .section-kicker {
    font-size: 13px;
  }

  .hero-inner {
    padding-block: 80px 84px;
    gap: 48px;
  }

  .hero h1 {
    font-size: 44px;
    line-height: 1.02;
  }

  .hero-intro {
    margin-top: 22px;
    font-size: 19px;
    line-height: 1.42;
  }

  .hero-actions {
    margin-top: 28px;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .logo-frame {
    width: min(88vw, 330px);
  }

  .principles-inner {
    padding-block: 32px 56px;
    grid-template-columns: 1fr;
    gap: 16px;
    font-size: 16px;
  }

  .principles p,
  .principles p:nth-child(2),
  .principles p:last-child {
    text-align: left;
  }

  .family-intro {
    width: calc(100% - 44px);
    padding-block: 88px;
    text-align: left;
  }

  .family-intro > p:last-child {
    margin-right: 0;
    margin-left: 0;
    font-size: 17px;
  }

  .family-intro h2,
  .product-section h2,
  .downloads-copy h2,
  .purpose h2,
  .contact h2,
  .statement p {
    font-size: 38px;
    line-height: 1.05;
  }

  .product-section,
  .downloads-section {
    padding-block: 88px;
  }

  .product-grid {
    gap: 48px;
  }

  .product-index {
    margin-bottom: 36px;
  }

  .product-name {
    margin-bottom: 16px;
    font-size: 19px;
  }

  .product-description,
  .downloads-copy > p:last-child,
  .purpose > div:last-child > p:last-child,
  .contact-inner > p:nth-of-type(2) {
    margin-top: 20px;
    font-size: 16px;
  }

  .product-action {
    margin-top: 24px;
  }

  .facts {
    margin-top: 36px;
    grid-template-columns: 1fr;
  }

  .facts > dl,
  .facts > dl:nth-child(even) {
    padding: 16px 0 18px;
  }

  .product-visual {
    min-height: 400px;
    border-radius: 24px;
  }

  .base-visual,
  .guard-visual,
  .apply-visual {
    padding: 32px;
  }

  .base-visual strong {
    font-size: min(30vw, 124px);
  }

  .statement {
    padding: 88px 22px;
    text-align: left;
  }

  .guard-list {
    margin-top: 32px;
  }

  .guard-visual > p {
    font-size: 30px;
  }

  .receipt-lines {
    margin-top: 56px;
  }

  .receipt-chain {
    margin-bottom: 48px;
  }

  .apply-principles {
    display: grid;
    gap: 8px;
  }

  .apply-principles li:not(:last-child)::after {
    content: none;
  }

  .apply-visual {
    min-height: 430px;
  }

  .apply-wordmark {
    top: 30px;
    left: 32px;
    font-size: 19px;
  }

  .apply-visual > strong {
    font-size: 36px;
  }

  .download-status {
    padding: 28px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .purpose,
  .contact-inner {
    padding-block: 88px;
  }

  .purpose-mark {
    width: 168px;
  }

  .contact-inner > a {
    margin-top: 28px;
    align-items: flex-start;
    font-size: 19px;
  }

  .site-footer > .content-shell {
    padding-block: 44px 24px;
  }

  .footer-main,
  .footer-legal {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-main {
    padding-bottom: 36px;
  }

  .footer-main > p {
    text-align: left;
  }

  .footer-actions {
    justify-self: start;
  }

  .footer-legal p:first-child,
  .footer-legal p:last-child {
    grid-column: 1;
    text-align: left;
  }
}

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

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

  .motion-ready .reveal-block,
  .motion-ready .reveal-block.is-visible {
    opacity: 1;
    transform: none;
  }

  .logo-frame img,
  .logo-frame:hover img {
    transform: translate(-50%, -50%);
  }
}
