:root {
  color-scheme: light;
  --paper: #fcfcff;
  --paper-soft: #f6f3ff;
  --paper-raised: rgba(255, 255, 255, 0.88);
  --ink: #17141b;
  --muted: #68636f;
  --line: rgba(42, 29, 62, 0.11);
  --line-strong: rgba(42, 29, 62, 0.18);
  --plum: #812bd6;
  --plum-deep: #6417b3;
  --magenta: #ca39c8;
  --blue: #1a83df;
  --orange: #f06b3d;
  --green: #178762;
  --shadow-sm: 0 12px 32px rgba(47, 29, 72, 0.08);
  --shadow: 0 28px 80px rgba(47, 29, 72, 0.14);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 13% 8%, rgba(152, 74, 226, 0.08), transparent 28rem),
    radial-gradient(circle at 91% 14%, rgba(63, 137, 229, 0.07), transparent 25rem),
    var(--paper);
  color: var(--ink);
  font-family: ui-rounded, "SF Pro Rounded", "SF Pro Display", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

img {
  max-width: 100%;
}

.shell {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  background: rgba(252, 252, 255, 0.78);
  backdrop-filter: blur(22px) saturate(1.45);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  font-size: 17px;
  font-weight: 790;
  letter-spacing: -0.028em;
  text-decoration: none;
}

.brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 5px 8px rgba(47, 29, 72, 0.13));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 27px;
  font-size: 14px;
  font-weight: 650;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  transition: color 140ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ink);
}

.nav-links a.button.primary,
.nav-links a.button.primary:hover,
.nav-links a.button.primary[aria-current="page"] {
  color: #fff;
}

.button,
button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 13px;
  background: var(--ink);
  color: #fff;
  font: inherit;
  font-size: 15px;
  font-weight: 740;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(36, 17, 50, 0.15);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(36, 17, 50, 0.2);
}

.button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(26, 131, 223, 0.4);
  outline-offset: 3px;
}

.button.primary {
  background: linear-gradient(135deg, var(--plum-deep), var(--plum) 62%, var(--magenta));
}

.button.secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.8);
  color: var(--ink);
  box-shadow: 0 8px 22px rgba(47, 29, 72, 0.05);
}

.button.small {
  min-height: 40px;
  padding-inline: 16px;
  border-radius: 11px;
  font-size: 14px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--plum-deep);
  font-size: 13px;
  font-weight: 810;
  letter-spacing: 0.085em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--plum), var(--magenta));
  box-shadow: 0 0 0 5px rgba(129, 43, 214, 0.08);
  content: "";
}

.hero {
  display: grid;
  min-height: 760px;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: center;
  gap: clamp(42px, 6vw, 86px);
  padding: 72px 0 82px;
}

.hero-copy {
  position: relative;
  z-index: 4;
}

.hero h1,
.page-hero h1 {
  max-width: 760px;
  margin: 17px 0 22px;
  font-size: clamp(56px, 7vw, 94px);
  line-height: 0.97;
  letter-spacing: -0.064em;
}

.hero h1 span {
  background: linear-gradient(112deg, var(--plum-deep), var(--magenta) 58%, var(--orange));
  background-clip: text;
  color: transparent;
}

.hero-copy > p,
.page-hero > p {
  max-width: 610px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(19px, 1.9vw, 22px);
  line-height: 1.48;
}

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

.requirements {
  margin-top: 17px;
  color: #807a86;
  font-size: 13px;
}

.hero-stage {
  position: relative;
  min-height: 585px;
}

.icon-halo {
  position: absolute;
  width: 470px;
  height: 390px;
  border-radius: 50%;
  inset: 5px auto auto 50%;
  background:
    radial-gradient(circle at 40% 45%, rgba(165, 91, 225, 0.21), transparent 56%),
    radial-gradient(circle at 65% 54%, rgba(69, 150, 225, 0.15), transparent 58%);
  filter: blur(28px);
  transform: translateX(-50%);
}

.app-icon {
  position: absolute;
  z-index: 2;
  width: min(365px, 66%);
  inset: 2px auto auto 50%;
  filter: drop-shadow(0 24px 27px rgba(47, 29, 72, 0.18));
  transform: translateX(-50%) rotate(-1.2deg);
}

.expansion-card {
  position: absolute;
  z-index: 3;
  width: min(570px, 98%);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.96);
  border-radius: 25px;
  inset: auto 0 18px auto;
  background: rgba(255, 255, 255, 0.88);
  box-shadow:
    0 34px 90px rgba(48, 30, 76, 0.16),
    0 2px 3px rgba(45, 25, 68, 0.05);
  backdrop-filter: blur(24px) saturate(1.2);
}

.expansion-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 21px 23px 18px;
  border-bottom: 1px solid rgba(42, 29, 62, 0.08);
  font-size: 14px;
  font-weight: 770;
}

.pill {
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(129, 43, 214, 0.1);
  color: var(--plum-deep);
  font-family: ui-monospace, "SFMono-Regular", monospace;
  font-weight: 680;
}

.preview {
  min-height: 205px;
  padding: 22px 23px 24px;
  color: #302b35;
  font-size: clamp(21px, 2.25vw, 28px);
  line-height: 1.62;
  letter-spacing: -0.02em;
}

.field {
  padding: 2px 3px;
  border-bottom: 3px solid currentColor;
  color: var(--magenta);
  font-weight: 680;
}

.field.blue {
  color: var(--blue);
}

.field.orange {
  color: var(--orange);
}

.cursor {
  display: inline-block;
  width: 2px;
  height: 1.12em;
  margin-left: 2px;
  vertical-align: -0.16em;
  background: var(--orange);
  animation: blink 1.1s steps(2, jump-none) infinite;
}

.field-controls {
  display: flex;
  gap: 8px;
  padding: 12px 14px 14px;
  border-top: 1px solid rgba(42, 29, 62, 0.08);
  background: rgba(246, 243, 255, 0.58);
}

.field-controls span {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 6px;
  overflow: hidden;
  padding: 6px 9px;
  border: 1px solid rgba(42, 29, 62, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--muted);
  font-size: 11px;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
}

.dot.magenta {
  background: var(--magenta);
}

.dot.orange {
  background: var(--orange);
}

.link-mark {
  width: 11px;
  height: 7px;
  border: 1.5px solid var(--blue);
  border-radius: 999px;
  transform: rotate(-32deg);
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

.section {
  position: relative;
  padding: 112px 0;
}

.section.compact {
  padding: 78px 0;
}

.features-section::before,
.platforms-section::before {
  position: absolute;
  z-index: -1;
  inset: 0 50%;
  width: 100vw;
  border-block: 1px solid rgba(42, 29, 62, 0.06);
  background: rgba(255, 255, 255, 0.58);
  content: "";
  transform: translateX(-50%);
}

.platforms-section::before {
  background: linear-gradient(180deg, rgba(248, 246, 255, 0.72), rgba(252, 252, 255, 0.5));
}

.section-header {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: end;
  gap: 68px;
  margin-bottom: 54px;
}

.section-header h2,
.content h2 {
  margin: 10px 0 0;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.01;
  letter-spacing: -0.054em;
}

.section-header p {
  max-width: 610px;
  margin: 0;
  color: var(--muted);
  font-size: 19px;
}

.feature-grid,
.platform-grid,
.link-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.feature-grid {
  gap: 0;
}

.card {
  position: relative;
  min-width: 0;
}

.feature-grid .card {
  min-height: 230px;
  padding: 18px 32px 12px;
}

.feature-grid .card:first-child {
  padding-left: 0;
}

.feature-grid .card:last-child {
  padding-right: 0;
}

.feature-grid .card + .card {
  border-left: 1px solid var(--line);
}

.card .symbol {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 38px;
  border-radius: 14px;
  background: linear-gradient(145deg, #f2e8ff, #eceafd);
  color: var(--plum-deep);
  font-size: 21px;
  font-weight: 850;
  box-shadow: inset 0 0 0 1px rgba(129, 43, 214, 0.06);
}

.feature-grid .card.accent {
  color: inherit;
}

.feature-grid .card.accent .symbol {
  background: linear-gradient(145deg, var(--plum-deep), var(--plum));
  color: #fff;
  box-shadow: 0 12px 26px rgba(100, 23, 179, 0.2);
}

.card h3 {
  margin: 0 0 8px;
  font-size: 22px;
  letter-spacing: -0.03em;
}

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

.platform-grid {
  gap: 18px;
}

.platform-card {
  display: flex;
  min-height: 515px;
  overflow: hidden;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-sm);
}

.platform-copy {
  padding: 25px 25px 18px;
}

.platform-copy .symbol {
  width: 40px;
  height: 40px;
  margin-bottom: 24px;
  border-radius: 12px;
  font-size: 17px;
}

.platform-copy h3 {
  font-size: 21px;
}

.device-scene {
  position: relative;
  height: 252px;
  overflow: hidden;
  background:
    linear-gradient(180deg, transparent, rgba(129, 43, 214, 0.025)),
    radial-gradient(circle at 50% 100%, rgba(129, 43, 214, 0.13), transparent 64%);
}

.mac-screen {
  position: absolute;
  width: 88%;
  height: 190px;
  overflow: hidden;
  border: 5px solid #27232b;
  border-bottom-width: 8px;
  border-radius: 13px 13px 5px 5px;
  inset: 28px 6% auto;
  background: #fff;
  box-shadow: 0 17px 34px rgba(26, 20, 34, 0.17);
}

.window-bar {
  display: flex;
  height: 22px;
  align-items: center;
  gap: 4px;
  padding-left: 8px;
  border-bottom: 1px solid #ece9ef;
  background: #f6f4f8;
}

.window-bar i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #bbb5c1;
}

.window-bar i:first-child {
  background: #ff6f6b;
}

.window-bar i:nth-child(2) {
  background: #f7bf49;
}

.window-bar i:nth-child(3) {
  background: #5ec76e;
}

.mini-sidebar {
  position: absolute;
  display: flex;
  width: 33%;
  flex-direction: column;
  gap: 10px;
  padding: 16px 12px;
  inset: 22px auto 0 0;
  background: #f4f1f8;
  color: #3a3540;
  font-size: 10px;
}

.mini-sidebar span {
  width: 76%;
  height: 5px;
  border-radius: 99px;
  background: #d7d1dc;
}

.mini-editor {
  position: absolute;
  padding: 17px 16px;
  inset: 22px 0 0 33%;
  color: #4f4855;
  font-size: 9px;
}

.mini-editor strong {
  color: #252029;
  font-size: 11px;
}

.mini-editor p {
  margin: 12px 0 0;
  color: #514b57;
  font-size: 10px;
}

.mini-editor em,
.phone-note em {
  border-bottom: 2px solid currentColor;
  color: var(--magenta);
  font-style: normal;
  font-weight: 750;
}

.mini-editor em.blue,
.phone-note em.blue {
  color: var(--blue);
}

.mini-editor em.orange {
  color: var(--orange);
}

.mac-base {
  position: absolute;
  width: 98%;
  height: 12px;
  border-radius: 2px 2px 17px 17px;
  inset: 218px 1% auto;
  background: linear-gradient(180deg, #d9d9dd, #8d8c92);
  box-shadow: 0 6px 12px rgba(31, 26, 35, 0.15);
}

.phone {
  position: absolute;
  width: 160px;
  height: 310px;
  overflow: hidden;
  border: 5px solid #242127;
  border-radius: 31px;
  inset: 6px auto auto 50%;
  background: #fff;
  box-shadow: 0 20px 38px rgba(36, 27, 47, 0.2);
  transform: translateX(-50%);
}

.dynamic-island {
  position: absolute;
  z-index: 2;
  width: 58px;
  height: 15px;
  border-radius: 99px;
  inset: 7px auto auto 50%;
  background: #1f1c21;
  transform: translateX(-50%);
}

.phone-note {
  padding: 35px 13px 10px;
  color: #514b57;
  font-size: 8px;
}

.phone-note small {
  color: #27222b;
  font-size: 8px;
  font-weight: 750;
}

.phone-note p {
  margin: 9px 0 0;
}

.keyboard {
  position: absolute;
  display: grid;
  gap: 6px;
  padding: 10px 7px 20px;
  inset: auto 0 0;
  background: #d8d9df;
}

.keyboard div {
  display: flex;
  justify-content: center;
  gap: 3px;
}

.keyboard i {
  width: 11px;
  height: 17px;
  border-radius: 3px;
  background: #fff;
  box-shadow: 0 1px 1px rgba(18, 18, 20, 0.25);
}

.tablet {
  position: absolute;
  width: 112%;
  height: 190px;
  overflow: hidden;
  border: 6px solid #242127;
  border-radius: 15px 15px 0 0;
  inset: 35px auto auto 8%;
  background: #fff;
  box-shadow: 0 18px 38px rgba(36, 27, 47, 0.19);
}

.tablet .mini-sidebar {
  inset: 0 auto 0 0;
}

.tablet .mini-editor {
  inset: 0 0 0 33%;
}

.privacy-band {
  position: relative;
  display: grid;
  overflow: visible;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  padding: clamp(38px, 5.5vw, 68px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 12% 0%, rgba(129, 43, 214, 0.22), transparent 35%),
    linear-gradient(135deg, #17131e, #191923 68%, #151920);
  color: #fff;
  box-shadow: 0 30px 70px rgba(20, 16, 27, 0.14);
}

.privacy-panda {
  position: absolute;
  width: 150px;
  inset: auto auto -63px 54px;
  filter: drop-shadow(0 13px 17px rgba(0, 0, 0, 0.25));
}

.privacy-band h2 {
  margin: 12px 0 0;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.052em;
}

.privacy-band .eyebrow {
  color: #c283ff;
}

.privacy-list {
  display: grid;
  align-content: center;
  gap: 17px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.privacy-list li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  color: rgba(255, 255, 255, 0.77);
}

.privacy-list li::before {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  background: rgba(36, 162, 116, 0.23);
  color: #82e6bc;
  content: "✓";
  font-size: 14px;
  font-weight: 900;
}

.cta {
  padding: 112px 0 122px;
  text-align: center;
}

.cta h2 {
  max-width: 820px;
  margin: 0 auto 18px;
  font-size: clamp(46px, 6.3vw, 74px);
  line-height: 1;
  letter-spacing: -0.057em;
}

.cta p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 19px;
}

.cta .actions {
  justify-content: center;
}

.site-footer {
  padding: 29px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 19px;
}

.footer-links a {
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--ink);
}

.page-hero {
  max-width: 920px;
  padding: 104px 0 78px;
}

.page-hero h1 {
  font-size: clamp(54px, 7vw, 86px);
}

.content {
  max-width: 820px;
  padding: 10px 0 112px;
}

.content h2 {
  margin-top: 68px;
  font-size: clamp(32px, 4vw, 44px);
}

.content h3 {
  margin-top: 40px;
  font-size: 24px;
}

.content p,
.content li {
  color: var(--muted);
}

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

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

.content li + li {
  margin-top: 10px;
}

.notice {
  margin: 30px 0;
  padding: 22px 24px;
  border: 1px solid rgba(129, 43, 214, 0.19);
  border-radius: var(--radius-md);
  background: rgba(129, 43, 214, 0.055);
}

.notice p {
  margin: 0;
  color: var(--ink);
}

.step-list {
  display: grid;
  gap: 14px;
  margin: 32px 0;
  padding: 0;
  counter-reset: steps;
  list-style: none;
}

.step-list li {
  position: relative;
  min-height: 68px;
  padding: 17px 20px 17px 68px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(47, 29, 72, 0.035);
  counter-increment: steps;
}

.step-list li::before {
  position: absolute;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  inset: 16px auto auto 18px;
  background: var(--ink);
  color: #fff;
  content: counter(steps);
  font-size: 14px;
  font-weight: 800;
}

.support-links {
  display: grid;
  gap: 12px;
}

.support-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 20px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(47, 29, 72, 0.035);
}

.support-links span {
  color: var(--muted);
  font-size: 15px;
}

.release {
  padding: 27px 0 35px;
  border-bottom: 1px solid var(--line);
}

.release h2 {
  margin: 0;
}

.release time {
  color: var(--muted);
  font-size: 15px;
}

@media (max-width: 920px) {
  .nav-links {
    gap: 18px;
  }

  .nav-links a:not(.button) {
    display: none;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 66px;
  }

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

  .hero-stage {
    min-height: 570px;
  }

  .section-header,
  .privacy-band {
    grid-template-columns: 1fr;
  }

  .section-header {
    align-items: start;
    gap: 28px;
  }

  .privacy-band {
    gap: 42px;
  }

  .privacy-panda {
    width: 130px;
    right: 34px;
    bottom: -55px;
    left: auto;
  }

  .feature-grid,
  .platform-grid,
  .link-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid .card,
  .feature-grid .card:first-child,
  .feature-grid .card:last-child {
    min-height: auto;
    padding: 28px 0;
  }

  .feature-grid .card + .card {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .feature-grid .card .symbol {
    margin-bottom: 22px;
  }

  .platform-card {
    min-height: 470px;
  }

  .device-scene {
    height: 275px;
  }
}

@media (max-width: 560px) {
  .shell {
    width: min(calc(100% - 30px), var(--max));
  }

  .site-header {
    padding: 10px 0;
  }

  .brand span {
    display: none;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .hero {
    gap: 28px;
    padding: 50px 0 60px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(48px, 15vw, 60px);
  }

  .hero-copy > p,
  .page-hero > p {
    font-size: 18px;
  }

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

  .actions .button {
    width: 100%;
  }

  .nav-links .button {
    width: auto;
  }

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

  .app-icon {
    width: 250px;
  }

  .icon-halo {
    width: 320px;
    height: 280px;
  }

  .expansion-card {
    width: 100%;
    border-radius: 20px;
    bottom: 0;
  }

  .expansion-title {
    padding: 16px;
  }

  .preview {
    min-height: 175px;
    padding: 18px 16px 20px;
    font-size: 18px;
  }

  .field-controls {
    overflow: hidden;
    padding-inline: 9px;
  }

  .field-controls span {
    flex: 0 1 auto;
  }

  .field-controls span:last-child {
    display: none;
  }

  .section {
    padding: 82px 0;
  }

  .section.compact {
    padding: 58px 0 76px;
  }

  .section-header {
    margin-bottom: 36px;
  }

  .section-header h2 {
    font-size: 43px;
  }

  .platform-card {
    min-height: 450px;
  }

  .privacy-band {
    gap: 34px;
    padding: 34px 27px 52px;
    border-radius: 26px;
  }

  .privacy-panda {
    width: 105px;
    right: 24px;
    bottom: -45px;
  }

  .cta {
    padding-block: 96px;
  }

  .cta h2 {
    font-size: 44px;
  }

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

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

  .support-links a {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
