:root {
  --page: #ffffff;
  --soft: #f5f7fa;
  --soft-blue: #eef4ff;
  --ink: #17202c;
  --muted: #657083;
  --quiet: #8b95a7;
  --line: #dce3ee;
  --line-strong: #b8c2d1;
  --blue: #2459e6;
  --blue-dark: #1844bc;
  --green: #157347;
  --green-soft: #eaf7ef;
  --amber: #946200;
  --amber-soft: #fff5d8;
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--page);
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
}

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

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

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

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

h1,
h2,
h3 {
  line-height: 1.08;
}

.content-width,
.site-header-inner,
.hero-inner {
  width: min(1200px, calc(100% - 64px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  border-bottom: 1px solid rgba(220, 227, 238, 0.9);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.site-header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
  height: 72px;
}

.marketing-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
}

.marketing-brand strong {
  font-size: 20px;
}

.marketing-mark {
  width: 34px;
  height: 34px;
  flex: none;
  background: url("/assets/foplink-icon.svg") center / contain no-repeat;
  color: transparent;
  font-size: 0;
}

.marketing-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.marketing-nav a,
.text-link {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.marketing-nav a:hover,
.text-link:hover,
.site-footer a:hover {
  color: var(--blue);
}

.nav-actions,
.hero-actions,
.final-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 20px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease, transform 150ms ease;
}

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

.button-small {
  min-height: 40px;
  padding: 0 15px;
  font-size: 13px;
}

.button-primary {
  background: var(--blue);
  color: #fff;
}

.button-primary:hover {
  background: var(--blue-dark);
}

.button-secondary {
  border-color: var(--line-strong);
  background: #fff;
  color: var(--ink);
}

.button-secondary:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.hero {
  position: relative;
  height: calc(100svh - 132px);
  min-height: 610px;
  max-height: 760px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  height: 100%;
}

.hero-copy {
  width: min(610px, 55%);
}

.section-label {
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.hero h1 {
  margin-bottom: 8px;
  font-size: 76px;
  font-weight: 900;
}

.hero-statement {
  max-width: 590px;
  margin-bottom: 18px;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.12;
}

.hero-description {
  max-width: 570px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.hero-facts span {
  position: relative;
  padding-left: 15px;
}

.hero-facts span::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.hero-product {
  position: absolute;
  z-index: 1;
  top: 32px;
  right: max(32px, calc((100vw - 1200px) / 2));
  width: 445px;
  max-width: 42vw;
  border: 1px solid var(--line-strong);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  box-shadow: 0 28px 70px rgba(23, 32, 44, 0.16);
}

.audience-strip {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.audience-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  color: var(--muted);
  font-size: 13px;
}

.audience-strip-inner > span {
  color: var(--quiet);
}

.audience-strip-inner strong {
  color: var(--ink);
  font-size: 14px;
}

.section {
  padding: 112px 0;
}

.section h2 {
  margin-bottom: 0;
  font-size: 46px;
}

.two-column,
.trust-layout,
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 96px;
  align-items: start;
}

.section-intro h2 {
  max-width: 540px;
}

.problem-copy {
  padding-top: 30px;
  color: var(--muted);
  font-size: 19px;
}

.problem-copy p:last-child {
  margin-bottom: 0;
  color: var(--ink);
}

.benefit-section,
.review-modes,
.faq-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 64px;
}

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

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.benefit-item {
  min-width: 0;
  border-top: 3px solid var(--line-strong);
  padding-top: 20px;
}

.benefit-item:nth-child(1),
.benefit-item:nth-child(3) {
  border-color: var(--blue);
}

.benefit-item:nth-child(2) {
  border-color: var(--green);
}

.benefit-item:nth-child(4) {
  border-color: var(--amber);
}

.benefit-number {
  color: var(--quiet);
  font-size: 12px;
  font-weight: 850;
}

.benefit-item h3 {
  margin: 20px 0 12px;
  font-size: 22px;
}

.benefit-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.workflow-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.workflow-list li {
  display: grid;
  grid-template-rows: 44px auto;
  gap: 22px;
  min-width: 0;
  border-top: 1px solid var(--line-strong);
  padding: 22px 24px 0 0;
}

.workflow-list li:not(:last-child) {
  margin-right: 24px;
}

.workflow-list li > span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft-blue);
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.workflow-list h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

.workflow-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.mode-grid,
.team-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.mode-item {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 38px;
}

.mode-item.is-live {
  border-top: 4px solid var(--blue);
}

.mode-kicker {
  margin-bottom: 22px;
  color: var(--green);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.mode-item.is-live .mode-kicker {
  color: var(--blue);
}

.mode-item h3 {
  max-width: 430px;
  margin-bottom: 18px;
  font-size: 30px;
}

.mode-item > p:not(.mode-kicker) {
  color: var(--muted);
}

.mode-item ul,
.check-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.mode-item li,
.check-list li {
  position: relative;
  padding-left: 22px;
}

.mode-item li::before,
.check-list li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 8px;
  height: 3px;
  background: var(--green);
  content: "";
}

.team-section {
  background: #fff;
}

.team-audience {
  min-width: 0;
  padding: 48px;
}

.client-audience {
  border-left: 4px solid var(--green);
  background: var(--green-soft);
}

.company-audience {
  border-left: 4px solid var(--blue);
  background: var(--soft-blue);
}

.team-audience h2 {
  max-width: 480px;
  font-size: 36px;
}

.team-audience .check-list {
  margin-top: 32px;
}

.agent-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #171d27;
  color: #fff;
}

.agent-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 88px;
}

.agent-layout h2 {
  margin-bottom: 24px;
}

.agent-layout > div > p:last-child {
  margin-bottom: 0;
  color: #b7c0cf;
  font-size: 18px;
}

.agent-sample {
  min-width: 0;
  overflow: auto;
  border: 1px solid #384252;
  border-radius: var(--radius);
  background: #0e131b;
  padding: 28px;
  color: #dce6f7;
  font: 14px/1.7 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  white-space: pre-wrap;
}

.trust-section {
  background: #fff;
}

.trust-layout > div:last-child {
  padding-top: 28px;
  color: var(--muted);
  font-size: 18px;
}

.inline-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--blue);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

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

.faq-list details {
  border-bottom: 1px solid var(--line-strong);
  padding: 22px 0;
}

.faq-list summary {
  position: relative;
  padding-right: 40px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 0;
  right: 4px;
  color: var(--blue);
  content: "+";
  font-size: 24px;
  font-weight: 500;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 650px;
  margin: 14px 40px 0 0;
  color: var(--muted);
}

.final-cta {
  border-bottom: 1px solid #2f3948;
  background: #17202c;
  color: #fff;
  padding: 80px 0;
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
}

.final-cta h2 {
  max-width: 720px;
  margin-bottom: 0;
  font-size: 42px;
}

.final-actions {
  flex: 0 0 auto;
  flex-direction: column;
  align-items: stretch;
}

.button-light {
  background: #fff;
  color: var(--ink);
}

.button-light:hover {
  background: var(--green-soft);
}

.final-signin {
  color: #c7d0dd;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.site-footer {
  background: #111720;
  color: #aeb8c7;
  padding: 42px 0;
}

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

.footer-brand {
  color: #fff;
}

.footer-inner p {
  margin-bottom: 0;
}

.footer-inner nav {
  display: flex;
  gap: 20px;
}

.footer-inner > span {
  color: #7e8999;
}

.footer-legal {
  max-width: 520px;
  line-height: 1.55;
  text-align: right;
}

.legal-header-inner {
  grid-template-columns: 1fr auto;
}

.legal-main {
  background: #fff;
}

.legal-width {
  width: min(860px, calc(100% - 64px));
  margin: 0 auto;
}

.legal-hero {
  border-bottom: 1px solid var(--line);
  background: var(--soft);
  padding: 88px 0 64px;
}

.legal-hero h1 {
  margin-bottom: 22px;
  font-size: 58px;
}

.legal-hero > div > p:not(.section-label) {
  max-width: 720px;
  color: var(--muted);
  font-size: 19px;
}

.legal-meta {
  display: flex;
  gap: 48px;
  margin: 36px 0 0;
}

.legal-meta div {
  display: grid;
  gap: 2px;
}

.legal-meta dt {
  color: var(--quiet);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.legal-meta dd {
  margin: 0;
  font-size: 14px;
  font-weight: 750;
}

.legal-meta a,
.legal-article a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-article {
  padding-top: 64px;
  padding-bottom: 96px;
}

.legal-article section {
  border-bottom: 1px solid var(--line);
  padding: 0 0 42px;
  margin-bottom: 42px;
}

.legal-article h2 {
  margin-bottom: 20px;
  font-size: 29px;
}

.legal-article h3 {
  margin: 30px 0 12px;
  font-size: 19px;
}

.legal-article p,
.legal-article li {
  color: #465164;
}

.legal-article ul,
.legal-article ol {
  display: grid;
  gap: 9px;
  padding-left: 22px;
}

.legal-article strong {
  color: var(--ink);
}

.legal-contact {
  border: 1px solid var(--line) !important;
  border-left: 4px solid var(--blue) !important;
  border-radius: var(--radius);
  background: var(--soft-blue);
  padding: 32px !important;
  margin-bottom: 0 !important;
}

.legal-contact h2 {
  margin-bottom: 10px;
}

.legal-contact p:last-child {
  margin-bottom: 0;
}

.support-width {
  width: min(1120px, calc(100% - 64px));
  margin: 0 auto;
}

.support-hero {
  padding: 80px 0 56px;
}

.support-hero h1 {
  max-width: 760px;
}

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

.support-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 72px;
  align-items: start;
  padding: 64px 0 104px;
}

.support-sidebar {
  position: sticky;
  top: 104px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}

.support-sidebar-title {
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.support-sidebar nav {
  display: grid;
}

.support-sidebar a {
  display: flex;
  gap: 10px;
  border-top: 1px solid var(--line);
  padding: 12px 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.support-sidebar a:hover {
  color: var(--blue);
}

.support-sidebar a span {
  color: var(--quiet);
  font-size: 11px;
}

.support-content {
  min-width: 0;
}

.support-intro {
  max-width: 690px;
  padding-bottom: 48px;
}

.support-intro h2,
.support-category h2 {
  margin-bottom: 14px;
  font-size: 34px;
}

.support-intro > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.support-category {
  scroll-margin-top: 104px;
  border-top: 1px solid var(--line);
  padding: 56px 0 16px;
}

.support-category-heading {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: start;
  margin-bottom: 28px;
}

.support-category-heading .section-label {
  margin-bottom: 7px;
}

.support-category-number {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  background: var(--soft-blue);
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
}

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

.support-guide-list details {
  border-bottom: 1px solid var(--line);
}

.support-guide-list summary {
  display: grid;
  grid-template-columns: 34px 1fr 20px;
  gap: 12px;
  align-items: center;
  padding: 20px 4px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 800;
  list-style: none;
}

.support-guide-list summary::-webkit-details-marker {
  display: none;
}

.support-guide-list summary::after {
  color: var(--blue);
  content: "+";
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
}

.support-guide-list details[open] summary::after {
  content: "−";
}

.support-guide-list summary span {
  color: var(--quiet);
  font-size: 11px;
}

.support-guide-list details > div {
  max-width: 690px;
  padding: 0 40px 22px 50px;
}

.support-guide-list details > div p {
  margin-bottom: 0;
  color: #465164;
}

.support-guide-list a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.support-contact {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: center;
  margin-top: 56px !important;
}

.support-contact > div {
  max-width: 580px;
}

.support-contact .button {
  flex: none;
  color: #fff;
  text-decoration: none;
}

@media (max-width: 1080px) {
  .marketing-nav {
    display: none;
  }

  .site-header-inner {
    grid-template-columns: 1fr auto;
  }

  .hero-copy {
    width: 56%;
  }

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

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

  .hero-product {
    right: 24px;
    width: 390px;
  }

  .benefit-grid,
  .workflow-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px 24px;
  }

  .workflow-list li:not(:last-child) {
    margin-right: 0;
  }

  .two-column,
  .trust-layout,
  .faq-layout,
  .agent-layout {
    gap: 56px;
  }
}

@media (max-width: 820px) {
  .content-width,
  .site-header-inner,
  .hero-inner {
    width: min(100% - 40px, 680px);
  }

  .site-header-inner {
    height: 64px;
    gap: 18px;
  }

  .legal-width {
    width: min(100% - 40px, 680px);
  }

  .support-width {
    width: min(100% - 40px, 680px);
  }

  .support-layout {
    display: block;
    padding-top: 40px;
  }

  .support-sidebar {
    position: static;
    margin-bottom: 48px;
  }

  .support-sidebar nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 20px;
  }

  .legal-hero {
    padding: 64px 0 48px;
  }

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

  .text-link {
    display: none;
  }

  .marketing-brand strong {
    font-size: 18px;
  }

  .hero {
    display: flex;
    height: auto;
    min-height: 0;
    max-height: none;
    flex-direction: column;
    padding-top: 38px;
  }

  .hero-inner {
    display: block;
    order: 1;
    height: auto;
  }

  .hero-copy {
    width: 100%;
  }

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

  .hero-statement {
    max-width: 620px;
    font-size: 28px;
  }

  .hero-description {
    margin-bottom: 22px;
    font-size: 16px;
  }

  .hero-facts {
    display: none;
  }

  .hero-product {
    position: static;
    order: 2;
    width: min(420px, calc(100% - 40px));
    max-width: none;
    height: 230px;
    margin: 28px auto 0;
    object-fit: cover;
    object-position: top;
    box-shadow: 0 18px 44px rgba(23, 32, 44, 0.14);
  }

  .audience-strip-inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 22px 0;
  }

  .audience-strip-inner > span {
    grid-column: 1 / -1;
  }

  .section {
    padding: 80px 0;
  }

  .section h2,
  .final-cta h2 {
    font-size: 36px;
  }

  .two-column,
  .trust-layout,
  .faq-layout,
  .agent-layout,
  .mode-grid,
  .team-layout {
    grid-template-columns: 1fr;
  }

  .problem-copy,
  .trust-layout > div:last-child {
    padding-top: 0;
  }

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

  .team-audience {
    padding: 34px;
  }

  .final-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .final-actions {
    width: 100%;
    max-width: 360px;
  }

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

  .footer-inner p {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .footer-inner nav {
    grid-column: 1 / -1;
  }

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

@media (max-width: 560px) {
  .support-hero-actions {
    display: grid;
  }

  .support-sidebar nav {
    grid-template-columns: 1fr;
  }

  .support-category-heading {
    grid-template-columns: 44px 1fr;
    gap: 14px;
  }

  .support-category-number {
    width: 44px;
    height: 44px;
  }

  .support-intro h2,
  .support-category h2 {
    font-size: 28px;
  }

  .support-guide-list summary {
    grid-template-columns: 28px 1fr 18px;
    gap: 8px;
    font-size: 15px;
  }

  .support-guide-list details > div {
    padding: 0 28px 20px 36px;
  }

  .support-contact {
    flex-direction: column;
    align-items: stretch;
  }

  .support-contact .button {
    width: 100%;
  }
  .content-width,
  .site-header-inner,
  .hero-inner {
    width: calc(100% - 28px);
  }

  .marketing-mark {
    width: 32px;
    height: 32px;
    font-size: 17px;
  }

  .nav-actions .button {
    min-height: 38px;
    padding: 0 11px;
    font-size: 12px;
  }

  .legal-home-link {
    display: none;
  }

  .legal-width {
    width: calc(100% - 28px);
  }

  .legal-hero {
    padding: 48px 0 38px;
  }

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

  .legal-hero > div > p:not(.section-label) {
    font-size: 16px;
  }

  .legal-meta {
    display: grid;
    gap: 18px;
  }

  .legal-article {
    padding-top: 44px;
    padding-bottom: 64px;
  }

  .legal-article h2 {
    font-size: 25px;
  }

  .legal-contact {
    padding: 24px !important;
  }

  .hero {
    padding-top: 30px;
  }

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

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

  .hero-description {
    font-size: 15px;
    line-height: 1.55;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

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

  .hero-product {
    height: 190px;
    margin-top: 22px;
  }

  .audience-strip-inner {
    gap: 12px 18px;
    font-size: 12px;
  }

  .audience-strip-inner strong {
    font-size: 13px;
  }

  .section {
    padding: 64px 0;
  }

  .section h2,
  .final-cta h2 {
    font-size: 31px;
  }

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

  .benefit-item h3,
  .workflow-list h3 {
    font-size: 20px;
  }

  .mode-item,
  .team-audience {
    padding: 26px;
  }

  .mode-item h3,
  .team-audience h2 {
    font-size: 27px;
  }

  .agent-sample {
    padding: 20px;
    font-size: 12px;
  }

  .final-cta {
    padding: 64px 0;
  }

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

  .footer-inner p,
  .footer-inner nav {
    grid-column: 1;
  }

  .footer-inner nav {
    flex-wrap: wrap;
  }

  .footer-legal {
    grid-column: 1;
  }
}

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

  .button {
    transition: none;
  }
}
