:root {
  color-scheme: light;
  --ink: #172033;
  --ink-soft: #516078;
  --ink-muted: #6b7890;
  --surface: #ffffff;
  --surface-soft: #f4f7fb;
  --surface-blue: #eef5ff;
  --line: #dfe6f0;
  --line-strong: #c9d5e5;
  --primary: #2256d9;
  --primary-dark: #173eaa;
  --accent: #ffb45d;
  --accent-soft: #fff0dc;
  --success: #16795b;
  --shadow-sm: 0 10px 30px rgba(23, 32, 51, 0.08);
  --shadow-lg: 0 30px 80px rgba(32, 63, 116, 0.15);
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 36px;
  --container: 1180px;
  --header-height: 76px;
  --transition: 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--surface);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

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

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(34, 86, 217, 0.35);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  transform: translateY(-160%);
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
  transition: transform var(--transition);
}

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

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.site-header[data-scrolled] {
  border-color: var(--line);
  box-shadow: 0 8px 24px rgba(23, 32, 51, 0.06);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 750;
  letter-spacing: 0.02em;
}

.brand img {
  border-radius: 12px;
  box-shadow: 0 7px 16px rgba(34, 86, 217, 0.2);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.primary-nav a {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 600;
  padding: 0 15px;
  transition: background-color var(--transition), color var(--transition);
}

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

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle svg {
  width: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 18%, rgba(255, 180, 93, 0.18), transparent 24rem),
    radial-gradient(circle at 88% 28%, rgba(34, 86, 217, 0.14), transparent 28rem),
    linear-gradient(180deg, #fbfdff 0%, #f4f7fb 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(34, 86, 217, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(34, 86, 217, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 78%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  min-height: 690px;
  align-items: center;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 80px;
  padding-block: 78px 92px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.eyebrow span {
  width: 28px;
  height: 2px;
  background: var(--primary);
}

.hero-title-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 28px;
}

.hero-app-icon {
  flex: 0 0 auto;
  border-radius: 28px;
  box-shadow: 0 18px 38px rgba(34, 86, 217, 0.2);
}

.hero-label {
  margin: 0 0 2px;
  color: var(--ink-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.hero h1,
.about-hero h1,
.legal-hero h1 {
  margin: 0;
  font-size: clamp(48px, 6vw, 78px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.hero-lead {
  max-width: 620px;
  margin: 34px 0 0;
  font-size: clamp(25px, 3vw, 38px);
  font-weight: 720;
  line-height: 1.35;
  letter-spacing: -0.025em;
}

.hero-support {
  max-width: 590px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 700;
  padding: 0 22px;
  transition: background-color var(--transition), border-color var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.button svg,
.text-link svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

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

.button--primary {
  background: var(--primary);
  box-shadow: 0 14px 28px rgba(34, 86, 217, 0.23);
  color: #fff;
}

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

.button--secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
}

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

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin: 28px 0 0;
  padding: 0;
  color: var(--ink-soft);
  font-size: 14px;
  list-style: none;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.trust-list svg {
  width: 17px;
  fill: none;
  stroke: var(--success);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.3;
}

.hero-visual {
  position: relative;
  display: flex;
  min-height: 530px;
  align-items: center;
  justify-content: center;
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(34, 86, 217, 0.18);
  border-radius: 50%;
}

.hero-orbit--one {
  width: 470px;
  height: 470px;
}

.hero-orbit--two {
  width: 360px;
  height: 360px;
  border-color: rgba(255, 180, 93, 0.34);
}

.phone-shell {
  position: relative;
  overflow: hidden;
  border: 8px solid #182034;
  border-radius: 38px;
  background: #182034;
  box-shadow: var(--shadow-lg);
}

.phone-shell::after {
  position: absolute;
  top: 9px;
  left: 50%;
  width: 26%;
  height: 5px;
  transform: translateX(-50%);
  border-radius: 99px;
  background: rgba(23, 32, 51, 0.35);
  content: "";
}

.phone-shell img {
  width: 100%;
  height: auto;
}

.phone-shell--hero {
  z-index: 2;
  width: min(290px, 68vw);
  border-width: 9px;
  border-radius: 44px;
  transform: rotate(3deg);
}

.hero-note {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 92px;
  display: flex;
  min-width: 160px;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-sm);
  padding: 15px 18px;
  backdrop-filter: blur(14px);
}

.hero-note span {
  color: var(--ink-muted);
  font-size: 12px;
}

.hero-note strong {
  color: var(--primary);
  font-size: 17px;
}

.section {
  padding-block: 104px;
}

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

.section-kicker {
  margin: 0 0 12px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.section-heading {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.6fr);
  gap: 56px;
  margin-bottom: 54px;
}

.section-heading h2,
.download-panel h2,
.company-strip h2,
.contact-section h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.25;
  letter-spacing: -0.035em;
}

.section-heading > p,
.section-heading > div > p:not(.section-kicker) {
  margin: 0;
  color: var(--ink-soft);
}

.section-heading--center {
  display: flex;
  max-width: 720px;
  align-items: center;
  flex-direction: column;
  gap: 0;
  margin-inline: auto;
  text-align: center;
}

.section-heading--center > p:last-child {
  margin-top: 18px;
}

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

.feature-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  padding: 28px;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: #b9c9e4;
  box-shadow: var(--shadow-sm);
}

.feature-index {
  position: absolute;
  top: 20px;
  right: 22px;
  color: #bdc8d8;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.feature-icon {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--surface-blue);
  color: var(--primary);
}

.feature-icon svg {
  width: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.feature-card:nth-child(2) .feature-icon,
.feature-card:nth-child(4) .feature-icon {
  background: var(--accent-soft);
  color: #b76513;
}

.feature-card h3 {
  margin: 74px 0 12px;
  font-size: 23px;
}

.feature-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
}

.screenshot-grid {
  display: grid;
  max-width: 970px;
  align-items: start;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 52px;
  margin-inline: auto;
}

.screenshot-card {
  margin: 0;
}

.screenshot-card--raised {
  margin-top: -24px;
}

.screenshot-card .phone-shell {
  width: 100%;
}

.screenshot-card figcaption {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 4px;
  padding-top: 20px;
  text-align: center;
}

.screenshot-card figcaption strong {
  font-size: 18px;
}

.screenshot-card figcaption span {
  color: var(--ink-soft);
  font-size: 14px;
}

.section--download {
  padding-top: 46px;
}

.download-panel {
  display: grid;
  overflow: hidden;
  align-items: center;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 90% 0%, rgba(255, 180, 93, 0.2), transparent 18rem),
    linear-gradient(135deg, #17254a, #173e8e);
  box-shadow: var(--shadow-lg);
  color: #fff;
  padding: 66px;
}

.download-panel .section-kicker {
  color: #9fc0ff;
}

.download-copy > p:last-child {
  max-width: 620px;
  margin: 18px 0 0;
  color: #d4def1;
}

.store-grid {
  display: grid;
  gap: 12px;
}

.store-button {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 12px 18px;
}

.store-button small {
  color: #afbed9;
}

.store-button strong {
  font-size: 17px;
}

.company-strip {
  padding-top: 42px;
}

.company-strip__inner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
  border-top: 1px solid var(--line);
  padding-top: 74px;
}

.company-strip__inner > div {
  max-width: 760px;
}

.company-strip__inner p:last-child {
  margin: 18px 0 0;
  color: var(--ink-soft);
}

.text-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  color: var(--primary);
  font-weight: 700;
}

.site-footer {
  background: #111827;
  color: #d6dcea;
  padding: 70px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(300px, 1.8fr) 1fr 1fr;
  gap: 60px;
}

.brand--footer {
  color: #fff;
}

.footer-brand p {
  max-width: 500px;
  margin: 18px 0 0;
  color: #9eabc0;
}

.footer-grid h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.08em;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.footer-grid > div:not(.footer-brand) a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  color: #aeb8ca;
  font-size: 14px;
  transition: color var(--transition);
}

.footer-grid a:hover,
.footer-bottom a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #273147;
  margin-top: 56px;
  padding-top: 24px;
  color: #8490a5;
  font-size: 13px;
}

.footer-bottom p {
  margin: 0;
}

.legal-hero,
.about-hero {
  background:
    radial-gradient(circle at 85% 15%, rgba(34, 86, 217, 0.14), transparent 24rem),
    linear-gradient(180deg, #fbfdff 0%, #f3f7fc 100%);
  padding-block: 84px;
}

.legal-container {
  max-width: 860px;
}

.legal-hero h1 {
  font-size: clamp(42px, 5vw, 64px);
}

.legal-hero p:last-child {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.legal-section {
  padding-top: 72px;
}

.legal-document {
  font-family: "Noto Serif SC", "Songti SC", SimSun, serif;
}

.legal-document > h2 {
  margin: 54px 0 20px;
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 27px;
  line-height: 1.4;
}

.legal-document > h3 {
  margin: 34px 0 12px;
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 19px;
}

.legal-document > p {
  margin: 0 0 15px;
  color: #334158;
  font-size: 17px;
  line-height: 2;
  text-align: justify;
}

.legal-document .legal-date {
  margin: 0;
  color: var(--ink-muted);
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 14px;
  line-height: 1.8;
}

.legal-document .legal-bullet {
  position: relative;
  padding-left: 24px;
}

.legal-document .legal-bullet::before {
  position: absolute;
  top: 0;
  left: 4px;
  color: var(--primary);
  content: "•";
}

.legal-highlight,
.legal-contact,
.agreement-closing {
  border: 1px solid #cbdcf7;
  border-radius: var(--radius-md);
  background: var(--surface-blue);
  margin: 0 0 44px;
  padding: 30px;
}

.legal-highlight h2,
.legal-contact h2 {
  margin: 0 0 14px;
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 24px;
}

.legal-highlight p:not(.section-kicker),
.legal-contact p {
  margin: 0 0 12px;
  color: #334d75;
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.8;
}

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

.legal-document .agreement-closing {
  margin: 52px 0 0;
  color: var(--ink);
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-weight: 700;
  line-height: 1.7;
  text-align: center;
}

.legal-contact {
  margin: 52px 0 0;
}

.about-hero__grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
  gap: 80px;
}

.about-hero h1 {
  font-size: clamp(42px, 5vw, 66px);
}

.about-hero p:last-child {
  max-width: 690px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.about-mark {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-mark img {
  border-radius: 42px;
  box-shadow: var(--shadow-lg);
  transform: rotate(6deg);
}

.company-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  margin: 0;
  background: var(--line);
}

.company-detail-grid > div {
  min-height: 132px;
  background: var(--surface);
  padding: 28px;
}

.company-detail-grid > .company-detail-grid__wide {
  grid-column: 1 / -1;
}

.company-detail-grid__wide dd {
  color: var(--ink-muted);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.9;
}

.company-detail-grid dt {
  margin-bottom: 12px;
  color: var(--ink-muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.company-detail-grid dd {
  margin: 0;
  font-size: 18px;
  font-weight: 650;
  overflow-wrap: anywhere;
}

.ownership-card {
  display: grid;
  align-items: start;
  grid-template-columns: auto 1fr;
  gap: 24px;
  border-radius: var(--radius-md);
  background: #17254a;
  color: #fff;
  margin-top: 26px;
  padding: 36px;
}

.ownership-card .feature-icon {
  background: rgba(255, 255, 255, 0.11);
  color: #fff;
}

.ownership-card h2 {
  margin: 0 0 10px;
  font-size: 23px;
}

.ownership-card p {
  margin: 0;
  color: #ced9ed;
}

.contact-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 0.75fr;
  gap: 80px;
}

.contact-grid > div:first-child > p:last-child {
  color: var(--ink-soft);
}

.contact-card {
  display: grid;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  padding: 30px;
}

.contact-card span {
  color: var(--ink-muted);
  font-size: 13px;
}

.contact-card a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  color: var(--primary);
  font-size: 20px;
  font-weight: 700;
}

@media (max-width: 1000px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 36px;
  }

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

  .feature-card {
    min-height: 290px;
  }

  .feature-card h3 {
    margin-top: 48px;
  }

  .download-panel {
    padding: 52px;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 68px;
  }

  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .nav-toggle {
    display: inline-flex;
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    left: 16px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 3px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--surface);
    box-shadow: var(--shadow-lg);
    padding: 8px;
  }

  .primary-nav[data-open] {
    display: flex;
  }

  .primary-nav a {
    min-height: 48px;
    border-radius: 12px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-block: 58px 80px;
  }

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

  .hero-visual {
    min-height: 500px;
  }

  .hero-note {
    right: 12%;
  }

  .section {
    padding-block: 82px;
  }

  .section-heading,
  .download-panel,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .screenshot-grid {
    gap: 24px;
  }

  .download-panel {
    padding: 48px;
  }

  .company-strip__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 28px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .about-hero__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-mark {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .hero-title-row {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .hero-lead {
    font-size: 28px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

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

  .hero-orbit--one {
    width: 390px;
    height: 390px;
  }

  .hero-orbit--two {
    width: 310px;
    height: 310px;
  }

  .phone-shell--hero {
    width: 250px;
  }

  .hero-note {
    right: 0;
    bottom: 70px;
  }

  .feature-grid,
  .screenshot-grid,
  .company-detail-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 0;
  }

  .feature-card h3 {
    margin-top: 34px;
  }

  .screenshot-grid {
    max-width: 320px;
    gap: 54px;
  }

  .screenshot-card--raised {
    margin-top: 0;
  }

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

  .footer-grid {
    gap: 36px;
  }

  .legal-hero,
  .about-hero {
    padding-block: 60px;
  }

  .legal-section {
    padding-top: 54px;
  }

  .legal-document > p {
    font-size: 16px;
    line-height: 1.9;
    text-align: left;
  }

  .legal-highlight,
  .legal-contact,
  .agreement-closing,
  .ownership-card {
    padding: 24px;
  }

  .ownership-card {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
