@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700;800;900&family=DM+Mono:wght@300;400;500&display=swap");

:root {
  --bg: #030304;
  --bg-soft: #07070a;
  --ink: #f3f1ec;
  --muted: rgba(243, 241, 236, 0.66);
  --dim: rgba(243, 241, 236, 0.38);
  --line: rgba(243, 241, 236, 0.13);
  --line-strong: rgba(243, 241, 236, 0.22);
  --panel: rgba(13, 13, 17, 0.78);
  --accent: #9b4dff;
  --accent-soft: rgba(155, 77, 255, 0.18);
  --max: 80rem;
  --font-ui: "DM Sans", ui-sans-serif, system-ui, sans-serif;
  --font-mono: "DM Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, #030304 0, #030304 32rem, #050508 74rem, #030304 100%);
  color: var(--ink);
  font-family: var(--font-ui);
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 18% 14%, rgba(155, 77, 255, 0.08), transparent 28rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 32rem);
}

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

img,
canvas {
  display: block;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 20;
  transform: translateY(-150%);
  background: var(--ink);
  color: var(--bg);
  padding: 0.75rem 1rem;
}

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

.topbar {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding: 1.15rem 2.45rem;
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 500;
  border-bottom: 0;
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.48);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  justify-self: start;
  color: rgba(243, 241, 236, 0.78);
}

.brand img {
  width: 30px;
  height: 31px;
  object-fit: contain;
}

.brand span {
  color: rgba(243, 241, 236, 0.58);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1;
}

.main-nav {
  display: inline-flex;
  gap: 2.7rem;
  justify-self: center;
}

.main-nav a {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0;
}

.main-nav a,
.next-pill,
.hero-service-item,
.contact-panel a {
  transition:
    color 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.hero-service-item:hover,
.hero-service-item:focus-visible {
  color: #fff;
  outline: none;
}

.top-status {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  justify-self: end;
  color: rgba(243, 241, 236, 0.76);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 500;
}

.top-time {
  color: rgba(243, 241, 236, 0.92);
  font-family: var(--font-ui);
  font-weight: 600;
  letter-spacing: 0;
}

.top-mode {
  display: inline-grid;
  place-items: center;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 999px;
  background: rgba(243, 241, 236, 0.12);
  color: rgba(243, 241, 236, 0.92);
  font-size: 0.88rem;
  line-height: 1;
}

.stage {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #000;
  box-shadow: inset 0 -8rem 8rem rgba(3, 3, 4, 0.82);
}

.liquid,
.grain {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.liquid {
  z-index: 0;
}

.grain {
  z-index: 1;
  opacity: 1;
  background:
    radial-gradient(circle at 50% 47%, transparent 0 16rem, rgba(0, 0, 0, 0.08) 28rem, rgba(0, 0, 0, 0.74) 66rem),
    linear-gradient(90deg, rgba(0, 0, 0, 0.66), transparent 24%, transparent 78%, rgba(0, 0, 0, 0.68)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.48), transparent 24%, transparent 72%, rgba(0, 0, 0, 0.58));
}

.stage-center {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: min(100% - 3rem, 76rem);
  transform: translate(-50%, -50%);
  text-align: center;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.stage-center p {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: calc(100% - 2rem);
  margin: 0 auto 1.2rem;
  padding: 0.56rem 1rem 0.52rem;
  border: 1px solid rgba(243, 241, 236, 0.12);
  border-radius: 999px;
  background: rgba(10, 10, 14, 0.32);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
  color: var(--accent);
  font-family: var(--font-ui);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(155, 77, 255, 0.26);
}

.stage-center h1 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 4.45rem;
  font-weight: 300;
  line-height: 1.05;
  white-space: nowrap;
  text-shadow: 0 0 24px rgba(243, 241, 236, 0.16);
}

.stage.has-hover-preview .stage-center {
  opacity: 0;
  transform: translate(-50%, -47%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 62% 58%, rgba(155, 77, 255, 0.06), transparent 28rem),
    linear-gradient(90deg, rgba(3, 3, 4, 0.82) 0%, rgba(3, 3, 4, 0.54) 42%, rgba(3, 3, 4, 0.22) 100%);
  transition: opacity 180ms ease;
}

.stage.has-hover-preview .hero-overlay {
  opacity: 1;
}

.hero-overlay-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(20rem, 0.72fr);
  align-items: center;
  gap: 4rem;
  min-height: 100%;
  padding: 8.75rem 3.2rem 7rem;
}

.hero-overlay-title {
  margin: 0;
  max-width: 8ch;
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: clamp(4rem, 7vw, 6.7rem);
  font-weight: 300;
  line-height: 0.95;
  text-shadow: 0 0 22px rgba(243, 241, 236, 0.1);
}

.hero-overlay-copy {
  justify-self: end;
  align-self: end;
  max-width: 26rem;
  margin-bottom: 5rem;
}

.hero-overlay-kicker {
  margin: 0 0 1.45rem;
  color: rgba(243, 241, 236, 0.9);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-overlay-description {
  margin: 0;
  color: rgba(243, 241, 236, 0.86);
  font-size: 1rem;
  line-height: 1.62;
}

.hero-services {
  position: absolute;
  z-index: 4;
  bottom: 4.75rem;
  left: 2.45rem;
  display: grid;
  width: min(17rem, calc(100vw - 7rem));
}

.hero-services-list {
  display: grid;
  justify-items: start;
  gap: 1rem;
}

.hero-service-item {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0;
  border: 0;
  padding: 0;
  background: transparent;
  color: rgba(243, 241, 236, 0.5);
  font-family: var(--font-ui);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.08rem;
  line-height: 1.4;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
}

.hero-service-item::before {
  flex: 0 0 auto;
  width: 1.1rem;
  height: 1px;
  background: rgba(243, 241, 236, 0.22);
  content: "";
  transition:
    width 180ms ease,
    background 180ms ease;
}

.hero-service-item.is-active {
  color: rgba(243, 241, 236, 0.96);
  font-weight: 600;
}

.hero-service-item.is-active::before {
  width: 1.9rem;
  background: rgba(155, 77, 255, 0.9);
}

.next-pill {
  position: absolute;
  right: 2.45rem;
  bottom: 4.75rem;
  z-index: 2;
  border: 1px solid rgba(243, 241, 236, 0.66);
  border-radius: 999px;
  color: rgba(243, 241, 236, 0.86);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.15;
  padding: 0.8rem 1.1rem 0.76rem;
}

.next-pill:hover,
.next-pill:focus-visible {
  background: var(--ink);
  color: var(--bg);
  outline: none;
  transform: translateY(-1px);
}

.section {
  --bg: #ffffff;
  --bg-soft: #ffffff;
  --ink: #09090c;
  --muted: rgba(9, 9, 12, 0.68);
  --dim: rgba(9, 9, 12, 0.42);
  --line: rgba(9, 9, 12, 0.1);
  --line-strong: rgba(9, 9, 12, 0.2);
  --panel: #f0f0f0;
  position: relative;
  scroll-margin-top: 5.5rem;
  padding: 8rem 2.45rem;
  border-top: 1px solid var(--line);
  color: var(--ink);
  background: #fff;
}

.section:nth-of-type(even) {
  background: #fff;
}

.section-mark {
  max-width: var(--max);
  margin: 0 auto 2.2rem;
  color: rgba(155, 77, 255, 0.78);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.03rem;
  text-transform: uppercase;
}

.section-head {
  max-width: var(--max);
  margin: 0 auto 4.5rem;
}

.section-head.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.82fr);
  gap: 5rem;
  align-items: start;
}

.section h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: clamp(3rem, 5vw, 4.35rem);
  font-weight: 400;
  letter-spacing: 0.02rem;
  line-height: 1.06;
}

.section-head p,
.contact-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.6;
}

.offers .section-head p {
  max-width: 31rem;
  padding-top: 0.2rem;
}

.system-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line-strong);
}

.system-grid article {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 3rem;
  min-height: 20rem;
  padding: 2rem;
  border-right: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  background: var(--panel);
}

.system-grid article::before {
  position: absolute;
  top: 1.7rem;
  right: 1.7rem;
  width: 0.95rem;
  height: 0.95rem;
  border-top: 2px solid rgba(9, 9, 12, 0.8);
  border-right: 2px solid rgba(9, 9, 12, 0.8);
  content: "";
}

.system-card-copy {
  max-width: 15.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding-top: 5rem;
}

.system-card-copy span,
.method-grid span,
.outcome-list span {
  color: var(--dim);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.03rem;
  text-transform: uppercase;
}

.system-card-copy span {
  display: block;
  margin-bottom: 0;
  color: rgba(9, 9, 12, 0.86);
}

.method-grid h3,
.outcome-list h3 {
  margin: 0;
  color: var(--ink);
}

.system-card-copy p,
.method-grid p,
.offer-grid p,
.outcome-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.system-card-copy p {
  color: rgba(9, 9, 12, 0.94);
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.48;
}

.method-grid h3 {
  align-self: end;
  margin-top: 0;
  font-size: 1.65rem;
  font-weight: 500;
  line-height: 1.08;
}

.method-grid p {
  align-self: start;
}

.outcome-list p {
  grid-column: 2;
}

.method-grid {
  display: grid;
  max-width: var(--max);
  margin: 0 auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line);
}

.method-grid article {
  display: grid;
  grid-template-rows: 1rem 6.8rem 1fr;
  min-height: 21rem;
  padding: 1.45rem 1.45rem 2rem;
  border-right: 1px solid var(--line);
}

.method-grid article:last-child {
  border-right: 0;
}

.offer-grid {
  display: grid;
  max-width: var(--max);
  margin: 0 auto;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1.35rem;
}

.offer-grid article {
  position: relative;
  min-height: 21rem;
  padding: 2rem 2rem 2.3rem;
  border: 1px solid rgba(9, 9, 12, 0.12);
  background: #f0f0f0;
  overflow: hidden;
}

.offer-grid article:nth-child(1),
.offer-grid article:nth-child(2) {
  grid-column: span 3;
}

.offer-grid article:nth-child(n + 3) {
  grid-column: span 2;
  min-height: 18.5rem;
}

.offer-grid span {
  display: inline-block;
  margin-bottom: 0;
  color: rgba(9, 9, 12, 0.82);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.03rem;
  text-transform: uppercase;
}

.offer-grid article::after {
  position: absolute;
  top: 1.7rem;
  right: 1.7rem;
  width: 0.95rem;
  height: 0.95rem;
  border-top: 2px solid rgba(9, 9, 12, 0.8);
  border-right: 2px solid rgba(9, 9, 12, 0.8);
  content: "";
}

.offer-grid p {
  margin: 4.35rem 0 0;
  max-width: 25ch;
  color: rgba(9, 9, 12, 0.92);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.52;
}

.offer-grid article:nth-child(n + 3) p {
  margin-top: 3.75rem;
  max-width: 25ch;
  font-size: 1.1rem;
}

.outcome-wrap {
  display: grid;
  max-width: var(--max);
  margin: 0 auto;
  grid-template-columns: minmax(0, 0.92fr) minmax(22rem, 1fr);
  gap: 5rem;
  align-items: start;
}

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

.outcome-list article {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.5rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--line);
}

.outcome-list h3 {
  font-size: 1.55rem;
  font-weight: 500;
}

.contact {
  padding-bottom: 8rem;
  background: #fff;
}

.contact-shell {
  max-width: var(--max);
  margin: 0 auto;
}

.contact-shell .section-mark {
  margin-right: 0;
  margin-left: 0;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(22rem, 0.82fr);
  gap: 5rem;
  align-items: start;
  padding: 0;
}

.contact-panel h2 {
  max-width: 44rem;
}

.contact-copy {
  max-width: 36rem;
  padding-top: 0;
}

.contact-copy a {
  display: inline-flex;
  align-items: center;
  min-height: 2.8rem;
  margin-top: 1.5rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 0.82rem 1.1rem;
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.15;
}

.contact-copy a:hover,
.contact-copy a:focus-visible {
  background: var(--ink);
  color: var(--bg);
  outline: none;
  transform: translateY(-1px);
}

.contact-copy > span {
  display: block;
  margin-top: 0.9rem;
  color: var(--dim);
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.03rem;
  line-height: 1.25;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 0;
  border-top: 1px solid var(--line);
  color: rgba(243, 241, 236, 0.78);
  background: #050506;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 400;
}

.footer-liquid,
.footer-grain {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.footer-liquid {
  z-index: 0;
}

.footer-grain {
  z-index: 1;
  opacity: 1;
  background:
    radial-gradient(circle at 50% 36%, transparent 0 9rem, rgba(0, 0, 0, 0.16) 18rem, rgba(0, 0, 0, 0.82) 62rem),
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), transparent 22%, transparent 78%, rgba(0, 0, 0, 0.74)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.34) 24%, rgba(0, 0, 0, 0.36) 72%, rgba(0, 0, 0, 0.68));
}

.footer-main {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(14rem, 0.95fr) minmax(30rem, 1.35fr) minmax(14rem, 0.9fr);
  border-bottom: 1px solid rgba(243, 241, 236, 0.18);
}

.footer-column {
  min-height: 8.5rem;
  padding: 2.3rem clamp(1rem, 4.2vw, 4.9rem);
  border-right: 1px solid rgba(243, 241, 236, 0.18);
}

.footer-column:last-child {
  border-right: 0;
}

.footer-column > span {
  display: block;
  margin-bottom: 1rem;
  color: rgba(243, 241, 236, 0.48);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.03rem;
  text-transform: uppercase;
}

.footer-column nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.45rem 2.25rem;
}

.footer-column nav[aria-label="Footer navigation"] {
  flex-wrap: nowrap;
  gap: 1.25rem;
}

.footer-column nav a {
  color: rgba(243, 241, 236, 0.92);
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2;
}

.footer-bottom {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  align-items: center;
  gap: 2rem;
  min-height: 4.1rem;
  padding: 1rem clamp(1rem, 4.2vw, 4.9rem);
  color: rgba(243, 241, 236, 0.76);
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 500;
}

.footer-bottom > :nth-child(2) {
  justify-self: center;
}

.footer-bottom > :nth-child(3) {
  justify-self: end;
  text-align: right;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--ink);
  outline: none;
}

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

@media (max-width: 1080px) {
  .main-nav {
    gap: 1.7rem;
  }

  .stage-center h1 {
    font-size: 3.35rem;
  }

  .hero-overlay-shell {
    grid-template-columns: minmax(0, 0.95fr) minmax(18rem, 0.7fr);
    gap: 2.6rem;
    padding: 8rem 2.45rem 7rem;
  }

  .hero-overlay-title {
    font-size: clamp(3.35rem, 7vw, 5rem);
  }

  .section h2 {
    font-size: 3.5rem;
  }

  .section-head.split,
  .outcome-wrap,
  .contact-panel {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .system-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .method-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .method-grid article:nth-child(2) {
    border-right: 0;
  }

  .method-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .offer-grid article,
  .offer-grid article:nth-child(1),
  .offer-grid article:nth-child(2),
  .offer-grid article:nth-child(n + 3) {
    grid-column: span 3;
  }

  .offer-grid article {
    min-height: 18rem;
  }

  .offer-grid p,
  .offer-grid article:nth-child(n + 3) p {
    max-width: 25ch;
    font-size: 1.12rem;
    line-height: 1.5;
  }

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

  .footer-column {
    border-right: 0;
    border-bottom: 1px solid rgba(243, 241, 236, 0.18);
  }

  .footer-column:last-child {
    border-bottom: 0;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .footer-bottom > :nth-child(2),
  .footer-bottom > :nth-child(3) {
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .topbar {
    grid-template-columns: 1fr auto;
    padding: 1.25rem 1rem 1rem;
  }

  .main-nav {
    display: none;
  }

  .brand span {
    display: none;
  }

  .stage-center {
    width: min(100% - 1.5rem, 44rem);
  }

  .stage-center h1 {
    font-size: 3.05rem;
    white-space: normal;
  }

  .stage-center p {
    font-size: 0.7rem;
    padding: 0.48rem 0.88rem 0.46rem;
  }

  .hero-services {
    right: 1rem;
    bottom: 6.4rem;
    left: 1rem;
    width: auto;
  }

  .hero-overlay-shell {
    grid-template-columns: 1fr;
    align-content: start;
    gap: 1.4rem;
    padding: 7.2rem 1rem 11rem;
  }

  .hero-overlay-title {
    max-width: 10ch;
    font-size: 2.9rem;
  }

  .hero-overlay-copy {
    justify-self: start;
    align-self: start;
    max-width: 18rem;
    margin-bottom: 0;
  }

  .hero-overlay-kicker {
    font-size: 0.7rem;
  }

  .hero-overlay-description {
    font-size: 0.92rem;
  }

  .hero-services-list {
    gap: 0.75rem;
  }

  .hero-service-item {
    font-size: 0.72rem;
  }

  .next-pill {
    right: 1rem;
    bottom: 2rem;
    left: 1rem;
    text-align: center;
  }

  .section {
    padding: 5.8rem 1rem;
  }

  .section h2 {
    font-size: 2.84rem;
  }

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

  .section-head {
    margin-bottom: 3.2rem;
  }

  .system-grid article {
    gap: 2.4rem;
    min-height: auto;
    padding: 1.45rem 1.35rem 1.55rem;
  }

  .system-card-copy {
    padding-top: 3rem;
  }

  .system-card-copy p {
    font-size: 1.38rem;
    line-height: 1.34;
  }

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

  .method-grid article,
  .method-grid article:nth-child(2) {
    display: block;
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .method-grid article:last-child {
    border-bottom: 0;
  }

  .method-grid h3 {
    margin-top: 2.8rem;
  }

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

  .offer-grid article,
  .offer-grid article:nth-child(1),
  .offer-grid article:nth-child(2),
  .offer-grid article:nth-child(n + 3) {
    grid-column: auto;
    min-height: auto;
  }

  .offer-grid article {
    padding: 1.45rem 1.35rem 1.55rem;
  }

  .offer-grid article::after {
    top: 1.2rem;
    right: 1.2rem;
  }

  .offer-grid p,
  .offer-grid article:nth-child(n + 3) p {
    margin-top: 3rem;
    max-width: 100%;
    font-size: 1.28rem;
    line-height: 1.24;
  }

  .outcome-list article {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .outcome-list p {
    grid-column: 1;
  }

  .contact {
    padding-bottom: 5rem;
  }

  .contact-panel {
    padding: 0;
  }

  .site-footer {
    font-size: 0.82rem;
  }

  .footer-column {
    min-height: auto;
    padding: 1.55rem 1rem;
  }

  .footer-column nav {
    gap: 1rem 1.45rem;
  }

  .footer-bottom {
    padding: 1.3rem 1rem 1.6rem;
  }
}
