:root {
  --ink: #13231f;
  --green: #173b32;
  --green-deep: #0e2923;
  --sage: #8ea16f;
  --sage-light: #dfe7d2;
  --cream: #f4f1e9;
  --paper: #fbfaf6;
  --stone: #d9d7ce;
  --muted: #65706b;
  --white: #fffef9;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --page: min(1440px, calc(100% - 96px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.11;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.2'/%3E%3C/svg%3E");
}

a {
  color: inherit;
}

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

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  display: flex;
  width: 100%;
  height: 82px;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  border-bottom: 1px solid rgba(23, 59, 50, 0.13);
  background: rgba(244, 241, 233, 0.84);
  backdrop-filter: blur(18px);
  transition:
    height 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.site-header.scrolled {
  height: 68px;
  background: rgba(251, 250, 246, 0.95);
  box-shadow: 0 10px 34px rgba(17, 42, 35, 0.08);
}

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

.brand-word,
.footer-brand {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.brand-note,
.header-status,
.scan-note,
.verified-pill,
.overline,
.section-index,
.verification-strip small,
.credential-topline p,
.confirmed-badge,
.credential-source small,
.official-button small,
.footer-record {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.17em;
}

.brand-note {
  color: var(--muted);
}

.header-status {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
}

.status-dot {
  position: relative;
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #65854b;
  box-shadow: 0 0 0 5px rgba(101, 133, 75, 0.14);
}

.status-dot::after {
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(101, 133, 75, 0.35);
  border-radius: 50%;
  content: "";
  animation: pulse 2.8s ease-out infinite;
}

@keyframes pulse {
  0% {
    opacity: 1;
    transform: scale(0.55);
  }
  75%,
  100% {
    opacity: 0;
    transform: scale(1.35);
  }
}

.verification-hero {
  position: relative;
  display: grid;
  min-height: 810px;
  grid-template-columns: minmax(0, 1.06fr) minmax(420px, 0.74fr);
  gap: clamp(56px, 8vw, 128px);
  align-items: center;
  padding: 150px max(48px, calc((100vw - 1440px) / 2)) 90px;
  overflow: hidden;
}

.ambient {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(1px);
}

.ambient-one {
  top: 92px;
  right: -160px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(23, 59, 50, 0.1);
  box-shadow:
    inset 0 0 0 80px rgba(23, 59, 50, 0.018),
    inset 0 0 0 160px rgba(23, 59, 50, 0.018);
}

.ambient-two {
  bottom: -320px;
  left: -220px;
  width: 520px;
  height: 520px;
  background: rgba(142, 161, 111, 0.1);
}

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

.scan-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 26px;
  color: var(--muted);
}

.scan-note span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid var(--stone);
  border-radius: 50%;
  color: var(--green);
  font-size: 16px;
}

.verified-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px 10px 10px;
  border: 1px solid rgba(101, 133, 75, 0.35);
  border-radius: 999px;
  color: var(--green);
  background: rgba(223, 231, 210, 0.5);
}

.verified-pill svg {
  width: 23px;
  height: 23px;
  padding: 4px;
  border-radius: 50%;
  stroke: var(--white);
  stroke-width: 2.5;
  fill: none;
  background: var(--green);
}

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

h1 {
  max-width: 790px;
  margin: 26px 0;
  font-family: var(--serif);
  font-size: clamp(56px, 5.4vw, 86px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

h1 em,
h2 em {
  color: var(--green);
  font-weight: 500;
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 31px;
  color: #485650;
  font-size: 18px;
  line-height: 1.75;
}

.hero-lead strong {
  color: var(--ink);
  font-weight: 600;
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 22px;
  border: 1px solid var(--green);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition:
    transform 180ms ease,
    color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 12px 30px rgba(23, 59, 50, 0.16);
}

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

.button-secondary {
  background: transparent;
}

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

.scope-note {
  max-width: 640px;
  margin: 27px 0 0;
  padding-left: 16px;
  border-left: 2px solid var(--sage);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.scope-note strong {
  color: var(--ink);
}

.credential-card {
  position: relative;
  max-width: 540px;
  justify-self: end;
  padding: 34px;
  border: 1px solid rgba(23, 59, 50, 0.18);
  background: rgba(251, 250, 246, 0.87);
  box-shadow: 0 35px 90px rgba(23, 59, 50, 0.12);
  backdrop-filter: blur(12px);
}

.credential-card::before,
.credential-card::after {
  position: absolute;
  width: 28px;
  height: 28px;
  content: "";
}

.credential-card::before {
  top: 13px;
  left: 13px;
  border-top: 1px solid var(--sage);
  border-left: 1px solid var(--sage);
}

.credential-card::after {
  right: 13px;
  bottom: 13px;
  border-right: 1px solid var(--sage);
  border-bottom: 1px solid var(--sage);
}

.credential-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--stone);
}

.credential-topline p {
  margin-bottom: 6px;
  color: var(--green);
}

.credential-topline > div > span {
  color: var(--muted);
  font-size: 12px;
}

.confirmed-badge {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 7px;
  color: #587540;
}

.confirmed-badge i {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: #64834d;
  font-style: normal;
  font-size: 12px;
}

.credential-mark {
  display: flex;
  height: 132px;
  align-items: center;
  justify-content: space-between;
  padding: 18px 4px 12px;
}

.credential-mark > span {
  font-family: var(--serif);
  font-size: 62px;
  letter-spacing: -0.05em;
}

.credential-mark svg,
.official-seal svg {
  width: 104px;
  height: 104px;
  stroke: var(--sage);
  stroke-width: 1;
  fill: none;
}

.credential-mark svg path,
.official-seal svg path {
  stroke: var(--green);
  stroke-width: 3;
}

.credential-fields {
  margin: 0;
  border-top: 1px solid var(--stone);
}

.credential-fields > div {
  display: grid;
  grid-template-columns: 42% 58%;
  padding: 13px 0;
  border-bottom: 1px solid var(--stone);
}

.credential-fields dt {
  color: var(--muted);
  font-size: 11px;
}

.credential-fields dd {
  margin: 0;
  text-align: right;
  font-size: 12px;
  font-weight: 600;
}

.credential-source {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 22px;
  padding: 16px;
  color: var(--white);
  background: var(--green);
  text-decoration: none;
  font-size: 11px;
  line-height: 1.45;
}

.credential-source small {
  display: block;
  margin-bottom: 4px;
  color: var(--sage-light);
  font-size: 8px;
}

.credential-source b {
  font-size: 20px;
}

.verification-strip {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--white);
  background: var(--green);
}

.verification-strip > div {
  min-height: 112px;
  padding: 31px 42px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.verification-strip > div:last-child {
  border-right: 0;
}

.verification-strip small {
  display: block;
  margin-bottom: 9px;
  color: var(--sage-light);
  font-size: 8px;
}

.verification-strip strong {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
}

.section {
  width: var(--page);
  margin-inline: auto;
  padding-block: 120px;
}

.section-index {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--muted);
}

.section-index span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--stone);
  border-radius: 50%;
  color: var(--green);
  letter-spacing: 0;
}

.section-index p {
  margin: 0;
}

.evidence-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.78fr) minmax(420px, 1.22fr);
  gap: clamp(70px, 9vw, 150px);
  align-items: center;
  max-width: 1200px;
  margin: 60px auto 0;
}

.certificate-frame {
  position: relative;
  margin: 0;
  padding: 22px 22px 17px;
  border: 1px solid #c4c1b6;
  background: #e9e7df;
  box-shadow: 0 28px 70px rgba(19, 35, 31, 0.17);
  transform: rotate(-1.25deg);
}

.certificate-frame::before {
  position: absolute;
  inset: 11px;
  z-index: 1;
  border: 1px solid rgba(23, 59, 50, 0.22);
  content: "";
  pointer-events: none;
}

.certificate-frame img {
  width: 100%;
  filter: saturate(0.82) contrast(0.98);
}

.certificate-frame figcaption {
  padding-top: 15px;
  text-align: center;
  color: var(--muted);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.placeholder-ribbon {
  position: absolute;
  top: 30px;
  right: -15px;
  z-index: 3;
  padding: 10px 16px;
  color: var(--white);
  background: #9b6f46;
  box-shadow: 0 8px 22px rgba(56, 42, 30, 0.2);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.13em;
}

.overline {
  margin-bottom: 18px;
  color: var(--sage);
}

h2 {
  margin-bottom: 27px;
  font-family: var(--serif);
  font-size: clamp(42px, 4.1vw, 64px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.evidence-copy > p:not(.overline),
.material-copy > div > p:not(.overline),
.scope-heading > p:not(.overline) {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.evidence-note {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  margin-top: 32px;
  padding: 20px;
  border: 1px solid #d8c8b9;
  background: #f0e8df;
}

.evidence-note > span {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid #9b6f46;
  border-radius: 50%;
  color: #815d3e;
  font-family: var(--serif);
  font-style: italic;
}

.evidence-note p {
  margin: 0;
  color: #745d49;
  font-size: 12px;
  line-height: 1.55;
}

.evidence-note strong {
  display: block;
  margin-bottom: 3px;
  color: #583f2c;
}

.material-story {
  color: var(--white);
  background: var(--green-deep);
}

.material-image-wrap {
  position: relative;
  min-height: 650px;
  overflow: hidden;
}

.material-image-wrap::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(6, 24, 20, 0.06), rgba(6, 24, 20, 0.58));
}

.material-image-wrap > img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.image-label {
  position: absolute;
  right: max(48px, calc((100vw - 1440px) / 2));
  bottom: 54px;
  z-index: 2;
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(12, 37, 31, 0.6);
  backdrop-filter: blur(8px);
}

.image-label span {
  display: block;
  margin-bottom: 7px;
  color: var(--sage-light);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.2em;
}

.image-label strong {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
}

.material-copy {
  display: grid;
  grid-template-columns: 0.5fr 1.5fr;
  gap: 60px;
}

.section-index-light {
  color: rgba(255, 255, 255, 0.55);
}

.section-index-light span {
  border-color: rgba(255, 255, 255, 0.24);
  color: var(--sage-light);
}

.material-copy h2 {
  max-width: 900px;
}

.material-copy h2 em {
  color: var(--sage-light);
}

.material-copy > div > p:not(.overline) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.69);
}

.benefits-heading {
  max-width: 770px;
  margin: 56px 0 60px 25%;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--stone);
  border-bottom: 1px solid var(--stone);
}

.benefit {
  position: relative;
  min-height: 340px;
  padding: 32px;
  border-right: 1px solid var(--stone);
}

.benefit:last-child {
  border-right: 0;
}

.benefit > span {
  position: absolute;
  top: 28px;
  right: 28px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 12px;
}

.benefit svg {
  width: 55px;
  height: 55px;
  margin: 18px 0 64px;
  stroke: var(--green);
  stroke-width: 1.3;
  fill: none;
}

.benefit h3,
.scope-card h3 {
  margin-bottom: 14px;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
}

.benefit p,
.scope-card > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.scope {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(600px, 1.22fr);
  gap: clamp(60px, 8vw, 130px);
  align-items: center;
  border-top: 1px solid var(--stone);
}

.scope-heading h2 {
  max-width: 500px;
}

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

.scope-card {
  min-height: 430px;
  padding: 38px;
  border: 1px solid var(--stone);
  background: var(--paper);
}

.scope-card-dark {
  border-color: var(--green);
  color: var(--white);
  background: var(--green);
}

.scope-icon {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 92px;
  place-items: center;
  border: 1px solid var(--sage);
  border-radius: 50%;
  color: var(--green);
  font-family: var(--serif);
  font-size: 20px;
}

.scope-card-dark .scope-icon {
  color: var(--white);
}

.scope-card-dark .overline {
  color: var(--sage-light);
}

.scope-card-dark > p:last-child {
  color: rgba(255, 255, 255, 0.68);
}

.official-source {
  padding: 100px 48px;
  color: var(--white);
  background: var(--green-deep);
}

.official-inner {
  display: grid;
  width: min(1280px, 100%);
  margin: 0 auto;
  grid-template-columns: 130px minmax(360px, 1fr) minmax(360px, 0.85fr);
  gap: 52px;
  align-items: center;
}

.official-seal svg {
  width: 120px;
  height: 120px;
  stroke: rgba(255, 255, 255, 0.28);
}

.official-seal svg path {
  stroke: var(--sage-light);
}

.official-copy h2 {
  margin-bottom: 16px;
  font-size: clamp(38px, 3.8vw, 58px);
}

.official-copy h2 em {
  color: var(--sage-light);
}

.official-copy > p:last-child {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.7;
}

.official-button {
  display: flex;
  min-height: 116px;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 25px 30px;
  color: var(--ink);
  background: var(--sage-light);
  text-decoration: none;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.3;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.official-button:hover,
.official-button:focus-visible {
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
}

.official-button small {
  display: block;
  margin-bottom: 7px;
  color: #617253;
  font-family: var(--sans);
  font-size: 8px;
}

.official-button strong {
  font-family: var(--sans);
  font-size: 28px;
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 35px;
  padding: 48px;
  color: rgba(255, 255, 255, 0.55);
  background: #081d18;
  font-size: 10px;
}

.footer > div p {
  margin: 8px 0 0;
  font-size: 10px;
}

.footer-brand {
  color: var(--white);
  font-size: 20px;
}

.footer-record {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--sage-light);
  font-size: 8px;
}

.footer-record span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
}

.footer > p:last-child {
  margin: 0;
  text-align: right;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .status-dot::after {
    animation: none;
  }
}

@media (max-width: 1100px) {
  :root {
    --page: min(100% - 64px, 960px);
  }

  .verification-hero {
    grid-template-columns: 1fr;
    gap: 64px;
    padding: 140px 32px 80px;
  }

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

  .credential-card {
    width: min(650px, 100%);
    max-width: none;
    justify-self: start;
  }

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

  .verification-strip > div:nth-child(2) {
    border-right: 0;
  }

  .verification-strip > div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

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

  .scope-heading {
    max-width: 700px;
  }

  .official-inner {
    grid-template-columns: 100px 1fr;
  }

  .official-seal svg {
    width: 92px;
    height: 92px;
  }

  .official-button {
    grid-column: 2;
  }
}

@media (max-width: 760px) {
  :root {
    --page: calc(100% - 36px);
  }

  .site-header {
    height: 68px;
    padding: 0 18px;
  }

  .site-header.scrolled {
    height: 60px;
  }

  .brand {
    display: block;
  }

  .brand-word {
    display: block;
    font-size: 18px;
  }

  .brand-note {
    display: none;
  }

  .header-status {
    max-width: 145px;
    font-size: 7px;
    letter-spacing: 0.13em;
  }

  .status-dot {
    flex: 0 0 auto;
  }

  .verification-hero {
    min-height: auto;
    gap: 46px;
    padding: 112px 18px 54px;
  }

  .ambient-one {
    top: 80px;
    right: -260px;
    width: 500px;
    height: 500px;
  }

  .scan-note {
    margin-bottom: 20px;
    font-size: 8px;
  }

  .verified-pill {
    gap: 8px;
    padding: 8px 12px 8px 8px;
    font-size: 8px;
    letter-spacing: 0.12em;
  }

  .verified-pill svg {
    width: 20px;
    height: 20px;
  }

  h1 {
    margin: 21px 0;
    font-size: clamp(43px, 12vw, 58px);
    line-height: 0.98;
  }

  .hero-lead {
    margin-bottom: 25px;
    font-size: 15px;
    line-height: 1.65;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .scope-note {
    margin-top: 22px;
  }

  .credential-card {
    padding: 27px 22px;
  }

  .credential-topline {
    display: block;
  }

  .confirmed-badge {
    margin-top: 15px;
  }

  .credential-mark {
    height: 108px;
  }

  .credential-mark > span {
    font-size: 48px;
  }

  .credential-mark svg {
    width: 84px;
    height: 84px;
  }

  .credential-fields > div {
    grid-template-columns: 40% 60%;
  }

  .credential-source {
    margin-top: 18px;
  }

  .verification-strip {
    grid-template-columns: 1fr;
  }

  .verification-strip > div {
    min-height: 88px;
    padding: 22px 24px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .verification-strip > div:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .verification-strip > div:last-child {
    border-bottom: 0;
  }

  .section {
    padding-block: 80px;
  }

  .evidence-layout {
    grid-template-columns: 1fr;
    gap: 56px;
    margin-top: 42px;
  }

  .certificate-frame {
    width: min(100%, 410px);
    justify-self: center;
    padding: 16px 16px 13px;
  }

  .placeholder-ribbon {
    top: 23px;
    right: -9px;
    padding: 8px 10px;
    font-size: 6px;
  }

  h2 {
    font-size: clamp(38px, 11vw, 49px);
  }

  .material-image-wrap {
    min-height: 460px;
  }

  .material-image-wrap > img {
    object-position: 54% center;
  }

  .image-label {
    right: 18px;
    bottom: 22px;
    left: 18px;
  }

  .material-copy {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .benefits-heading {
    margin: 44px 0;
  }

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

  .benefit {
    min-height: 290px;
    border-right: 0;
    border-bottom: 1px solid var(--stone);
  }

  .benefit:last-child {
    border-bottom: 0;
  }

  .benefit svg {
    margin-bottom: 42px;
  }

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

  .scope-card {
    min-height: 340px;
    padding: 30px;
  }

  .scope-icon {
    margin-bottom: 62px;
  }

  .official-source {
    padding: 72px 18px;
  }

  .official-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .official-seal svg {
    width: 90px;
    height: 90px;
  }

  .official-button {
    grid-column: 1;
    min-height: 106px;
    padding: 22px;
    font-size: 16px;
  }

  .footer {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 38px 18px;
  }

  .footer-record {
    order: 3;
  }

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