:root {
  color-scheme: light;
  --ink: #10233f;
  --ink-soft: #52657d;
  --line: #dbe6f2;
  --paper: #ffffff;
  --paper-soft: #f5f9fd;
  --blue: #176fda;
  --blue-dark: #0e4d9a;
  --blue-light: #e9f3ff;
  --teal: #0b8f8a;
  --gold: #a86508;
  --gold-light: #fff4dd;
  --green: #158259;
  --green-light: #eaf8f1;
  --shadow: 0 22px 60px rgba(27, 66, 112, 0.12);
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Microsoft YaHei", sans-serif;
  color: var(--ink);
  background: #f3f8fd;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 8% -8%, rgba(96, 194, 255, 0.2), transparent 30rem),
    radial-gradient(circle at 95% 10%, rgba(103, 99, 255, 0.1), transparent 28rem),
    linear-gradient(180deg, #f9fcff 0%, #f1f7fc 48%, #ffffff 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(57, 102, 154, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57, 102, 154, 0.035) 1px, transparent 1px);
  background-size: 36px 36px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 64%);
}

a {
  color: var(--blue);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--blue-dark);
}

img {
  max-width: 100%;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 10px;
  color: #ffffff;
  background: var(--blue-dark);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(219, 230, 242, 0.85);
  background: rgba(249, 252, 255, 0.9);
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: min(1160px, calc(100% - 36px));
  min-height: 70px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  text-decoration: none;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  box-shadow: 0 8px 22px rgba(48, 89, 146, 0.2);
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  flex-wrap: wrap;
}

.top-nav a {
  min-height: 44px;
  padding: 9px 12px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  color: #405771;
  text-decoration: none;
  font-size: 14px;
  font-weight: 650;
}

.top-nav a:hover,
.top-nav a[aria-current="page"] {
  color: var(--blue-dark);
  background: var(--blue-light);
}

.page-shell {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.hero {
  min-height: 660px;
  padding: 88px 0 74px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: clamp(42px, 7vw, 88px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 20px;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), #6d67ee);
  content: "";
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 760px;
  margin: 0;
  color: #0e2340;
  font-size: clamp(42px, 6.3vw, 72px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.hero-copy {
  max-width: 690px;
  margin: 25px 0 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.85;
}

.action-row {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #ffffff;
  background: linear-gradient(135deg, #1679ee, #5e5ce6);
  box-shadow: 0 13px 30px rgba(45, 93, 196, 0.24);
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.button:hover {
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(45, 93, 196, 0.3);
}

.button.secondary {
  border-color: #cddbea;
  color: #24496f;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: none;
}

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

.hero-facts {
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}

.hero-facts li {
  padding: 8px 11px;
  border: 1px solid rgba(198, 217, 237, 0.9);
  border-radius: 999px;
  color: #49627e;
  background: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.product-visual {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
}

.product-visual::before,
.product-visual::after {
  position: absolute;
  border-radius: 50%;
  content: "";
  filter: blur(1px);
}

.product-visual::before {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(69, 151, 255, 0.22), transparent 68%);
}

.product-visual::after {
  right: 5%;
  bottom: 7%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(83, 207, 188, 0.2), transparent 70%);
}

.phone {
  position: relative;
  z-index: 2;
  width: min(330px, 90%);
  padding: 12px;
  border: 1px solid rgba(217, 228, 241, 0.9);
  border-radius: 42px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow:
    0 36px 90px rgba(28, 67, 117, 0.19),
    inset 0 0 0 5px #edf3f9;
  transform: rotate(2deg);
}

.phone-screen {
  min-height: 470px;
  padding: 30px 22px 24px;
  border-radius: 32px;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 0, rgba(121, 108, 255, 0.2), transparent 15rem),
    linear-gradient(160deg, #edf8ff, #f6f5ff 62%, #ffffff);
}

.phone-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #60758d;
  font-size: 12px;
  font-weight: 700;
}

.phone-title {
  margin: 38px 0 8px;
  font-size: 28px;
  font-weight: 850;
  letter-spacing: -0.03em;
}

.phone-note {
  color: #65788f;
  font-size: 13px;
  line-height: 1.7;
}

.asset-card {
  margin-top: 24px;
  padding: 22px;
  border: 1px solid rgba(211, 225, 240, 0.92);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 35px rgba(51, 87, 131, 0.1);
}

.asset-card small {
  color: #70849a;
}

.asset-amount {
  margin: 9px 0 18px;
  font-size: 36px;
  font-weight: 880;
  letter-spacing: -0.04em;
}

.progress {
  height: 8px;
  border-radius: 999px;
  overflow: hidden;
  background: #eaf0f7;
}

.progress::before {
  width: 68%;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: linear-gradient(90deg, #1c87ef, #4cc2ad);
  content: "";
}

.mini-record {
  margin-top: 18px;
  padding: 14px;
  border: 1px solid rgba(211, 225, 240, 0.92);
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.74);
}

.mini-record-mark {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, #1785eb, #41b69f);
  font-weight: 900;
}

.mini-record strong,
.mini-record small {
  display: block;
}

.mini-record strong {
  margin-bottom: 4px;
  font-size: 13px;
}

.mini-record small {
  color: #6d8095;
  font-size: 11px;
}

.floating-card {
  position: absolute;
  z-index: 3;
  width: 196px;
  padding: 16px;
  border: 1px solid rgba(215, 228, 241, 0.96);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 17px 46px rgba(35, 71, 118, 0.16);
  backdrop-filter: blur(12px);
}

.floating-card strong,
.floating-card span {
  display: block;
}

.floating-card strong {
  margin-bottom: 6px;
  font-size: 14px;
}

.floating-card span {
  color: #668099;
  font-size: 12px;
  line-height: 1.6;
}

.floating-card.left {
  left: -5%;
  top: 21%;
}

.floating-card.right {
  right: -5%;
  bottom: 18%;
}

.section {
  padding: 82px 0;
}

.section.soft {
  position: relative;
}

.section.soft::before {
  position: absolute;
  inset: 20px max(18px, calc((100vw - 1220px) / 2));
  z-index: -1;
  border: 1px solid rgba(219, 230, 242, 0.82);
  border-radius: 38px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow);
  content: "";
}

.section-heading {
  max-width: 720px;
  margin-bottom: 38px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.section-heading p {
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.85;
}

.section-heading-centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading-centered .eyebrow {
  justify-content: center;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

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

.card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 32px rgba(37, 75, 120, 0.075);
}

.card .number,
.card .icon-mark {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  color: var(--blue-dark);
  background: var(--blue-light);
  font-size: 14px;
  font-weight: 850;
}

.card h3 {
  margin: 20px 0 10px;
  font-size: 20px;
  letter-spacing: -0.015em;
}

.card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.8;
}

.card a.more {
  margin-top: 18px;
  display: inline-flex;
  font-weight: 750;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: clamp(36px, 7vw, 90px);
}

.about-grid .section-heading {
  margin-bottom: 0;
}

.about-points {
  display: grid;
  gap: 14px;
}

.about-points article {
  padding: 20px 22px;
  border: 1px solid rgba(207, 223, 239, 0.92);
  border-radius: 18px;
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 12px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 30px rgba(37, 75, 120, 0.07);
}

.about-points strong {
  color: #1d4f83;
}

.about-points span {
  color: var(--ink-soft);
  line-height: 1.7;
}

.download-panel {
  padding: clamp(30px, 5vw, 60px);
  border: 1px solid rgba(195, 216, 237, 0.95);
  border-radius: 32px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(28px, 6vw, 72px);
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 18%, rgba(96, 109, 238, 0.18), transparent 20rem),
    linear-gradient(135deg, #edf7ff, #f7f6ff 62%, #ffffff);
  box-shadow: var(--shadow);
}

.download-panel h2 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.download-panel > div > p:not(.eyebrow) {
  max-width: 700px;
  margin: 16px 0 0;
  color: var(--ink-soft);
  line-height: 1.8;
}

.download-note {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.download-note img {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  box-shadow: 0 9px 24px rgba(48, 89, 146, 0.18);
}

.download-note strong,
.download-note small {
  display: block;
}

.download-note strong {
  margin-bottom: 4px;
}

.download-note small,
.download-action > span {
  color: #586f88;
}

.download-action {
  display: grid;
  justify-items: center;
  gap: 12px;
}

.button-large {
  min-height: 56px;
  padding: 16px 24px;
  text-align: center;
}

.download-action > span {
  font-size: 12px;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--green);
  background: var(--green-light);
  font-size: 12px;
  font-weight: 800;
}

.status::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.status.pending {
  color: var(--gold);
  background: var(--gold-light);
}

.process {
  counter-reset: process;
}

.process .card {
  position: relative;
  padding-top: 76px;
}

.process .card::before {
  position: absolute;
  top: 26px;
  left: 28px;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, #1679ee, #6262e9);
  counter-increment: process;
  content: counter(process);
  font-weight: 850;
}

.notice {
  padding: 22px 24px;
  border: 1px solid #c9dcf0;
  border-left: 5px solid var(--blue);
  border-radius: 16px;
  background: #f1f7ff;
  color: #3f5d7d;
  line-height: 1.8;
}

.notice.warning {
  border-color: #efd9a9;
  border-left-color: #c17b16;
  background: #fff9ec;
}

.info-strip {
  padding: 26px;
  border: 1px solid rgba(201, 221, 240, 0.9);
  border-radius: 22px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  background: linear-gradient(135deg, rgba(235, 246, 255, 0.92), rgba(246, 244, 255, 0.92));
}

.info-strip div {
  padding-right: 12px;
  border-right: 1px solid rgba(184, 207, 231, 0.75);
}

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

.info-strip strong,
.info-strip span {
  display: block;
}

.info-strip strong {
  margin-bottom: 8px;
  font-size: 15px;
}

.info-strip span {
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.7;
}

.invite-card {
  margin-top: 24px;
  padding: 20px 22px;
  border: 1px solid #c9dbf2;
  border-radius: 18px;
  display: none;
  background: rgba(241, 247, 255, 0.92);
}

.invite-card.is-visible {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.invite-card p {
  margin: 0;
  color: #526a84;
  line-height: 1.6;
}

.invite-code {
  display: block;
  color: #284f9a;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.copy-button {
  padding: 10px 15px;
  border: 0;
  border-radius: 11px;
  color: #ffffff;
  background: var(--blue);
  cursor: pointer;
  font: inherit;
  font-weight: 750;
  white-space: nowrap;
}

.page-hero {
  padding: 78px 0 42px;
}

.page-hero h1 {
  max-width: 880px;
  font-size: clamp(38px, 5vw, 62px);
}

.page-hero p {
  max-width: 800px;
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.85;
}

.content-layout {
  padding: 18px 0 86px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  align-items: start;
  gap: 28px;
}

.content-main {
  padding: clamp(24px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.content-main section + section {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid #e2eaf3;
}

.content-main h2 {
  margin: 0 0 14px;
  color: #183f69;
  font-size: 24px;
  letter-spacing: -0.02em;
}

.content-main h3 {
  margin: 24px 0 10px;
  font-size: 18px;
}

.content-main p,
.content-main li {
  color: #465e78;
  line-height: 1.95;
}

.content-main ul,
.content-main ol {
  padding-left: 1.3em;
}

.side-nav {
  position: sticky;
  top: 96px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.86);
}

.side-nav strong {
  display: block;
  margin-bottom: 11px;
  color: #294a6c;
  font-size: 14px;
}

.side-nav a {
  padding: 9px 10px;
  border-radius: 9px;
  display: block;
  color: #58708a;
  text-decoration: none;
  font-size: 14px;
}

.side-nav a:hover {
  color: var(--blue-dark);
  background: var(--blue-light);
}

.meta-line {
  margin-top: 14px;
  color: #73869b;
  font-size: 14px;
}

.legal-preamble {
  margin: 26px 0 34px;
  padding: 20px 22px;
  border-left: 4px solid #5d9eea;
  border-radius: 14px;
  background: #f2f7fd;
}

.table-wrap {
  width: 100%;
  margin-top: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  font-size: 14px;
}

th,
td {
  min-width: 130px;
  padding: 15px 16px;
  border-bottom: 1px solid #e3ebf3;
  text-align: left;
  vertical-align: top;
  line-height: 1.75;
}

th {
  color: #294b70;
  background: #f1f6fb;
  font-size: 13px;
}

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

.tag-list {
  margin: 16px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  list-style: none;
}

.tag-list li {
  padding: 7px 11px;
  border: 1px solid #d5e3f1;
  border-radius: 999px;
  color: #46627e;
  background: #f6faff;
  font-size: 13px;
  line-height: 1.4;
}

.site-footer {
  padding: 48px 0 28px;
  border-top: 1px solid rgba(218, 229, 240, 0.9);
  background: rgba(247, 251, 255, 0.76);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 36px;
}

.footer-brand p,
.footer-column a,
.footer-meta {
  color: #536a82;
  font-size: 13px;
  line-height: 1.8;
}

.footer-brand p {
  max-width: 480px;
}

.footer-column strong {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-column a {
  display: block;
  text-decoration: none;
}

.footer-meta {
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid #e0e9f2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-meta a {
  color: inherit;
}

@media (max-width: 960px) {
  .hero {
    min-height: auto;
    padding-top: 64px;
    grid-template-columns: 1fr;
  }

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

  .floating-card.left {
    left: 3%;
  }

  .floating-card.right {
    right: 3%;
  }

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

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

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

  .download-panel {
    grid-template-columns: 1fr;
  }

  .download-action {
    justify-items: start;
  }

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

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

  .content-layout {
    grid-template-columns: 1fr;
  }

  .side-nav {
    position: static;
    order: -1;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .nav-shell {
    width: min(100% - 24px, 1160px);
    padding: 10px 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .site-header {
    position: static;
  }

  .top-nav {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
  }

  .top-nav::-webkit-scrollbar {
    display: none;
  }

  .top-nav a {
    white-space: nowrap;
  }

  .page-shell {
    width: min(100% - 24px, 1160px);
  }

  .hero {
    padding: 50px 0 54px;
  }

  h1 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .product-visual {
    min-height: 430px;
    overflow: hidden;
  }

  .phone {
    width: min(310px, 94%);
  }

  .floating-card {
    display: none;
  }

  .section {
    padding: 62px 0;
  }

  .section.soft::before {
    inset-inline: 6px;
    border-radius: 28px;
  }

  .grid.three,
  .grid.two,
  .service-grid,
  .info-strip,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-heading-centered {
    text-align: left;
  }

  .section-heading-centered .eyebrow {
    justify-content: flex-start;
  }

  .about-points article {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .download-panel {
    border-radius: 24px;
  }

  .download-action,
  .download-action .button {
    width: 100%;
  }

  .info-strip div,
  .info-strip div:nth-child(2) {
    padding: 0 0 16px;
    border-right: 0;
    border-bottom: 1px solid rgba(184, 207, 231, 0.75);
  }

  .info-strip div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .invite-card.is-visible {
    align-items: flex-start;
    flex-direction: column;
  }

  .content-main {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .page-hero {
    padding-top: 50px;
  }

  .page-hero p {
    font-size: 16px;
  }

  .footer-brand {
    grid-column: auto;
  }
}

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

  .button {
    transition: none;
  }
}
