:root {
  --canvas: #f6f6f3;
  --surface: #ffffff;
  --surface-subtle: #eeeeea;
  --ink: #171716;
  --muted: #666660;
  --muted-strong: #4e4e49;
  --line: #deded8;
  --line-strong: #c9c9c1;
  --accent: #5548d9;
  --accent-dark: #3f35b3;
  --accent-soft: #eeedff;
  --success: #26754b;
  --max-width: 1160px;
  --reading-width: 760px;
  --screen-shadow: 0 22px 54px rgba(24, 24, 28, 0.1);
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  min-width: 320px;
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.68;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}

h1 {
  max-width: 820px;
  font-size: clamp(3rem, 5.2vw, 4rem);
  font-weight: 740;
  letter-spacing: -0.055em;
  line-height: 0.99;
}

h2 {
  font-size: clamp(2.25rem, 4vw, 3.15rem);
  font-weight: 720;
  letter-spacing: -0.045em;
  line-height: 1.06;
}

h3 {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

::selection {
  background: #dcd9ff;
}

:focus-visible {
  outline: 3px solid rgba(63, 53, 179, 0.55);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 11px 15px;
  border-radius: 8px;
  background: var(--ink);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  transform: translateY(-180%);
}

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

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: var(--canvas);
}

.header-inner {
  display: flex;
  width: min(100% - 40px, var(--max-width));
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
  font-size: 0.98rem;
  font-weight: 730;
  letter-spacing: -0.025em;
}

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

.site-nav,
.footer-nav {
  display: flex;
  align-items: center;
}

.site-nav {
  gap: clamp(22px, 3vw, 38px);
  color: var(--muted-strong);
  font-size: 0.88rem;
  font-weight: 650;
}

.site-nav a,
.footer-nav a {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  transition: color 160ms ease;
}

.site-nav a:hover,
.footer-nav a:hover {
  color: var(--accent-dark);
}

.header-action {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  background: var(--ink);
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 700;
  white-space: nowrap;
  transition:
    background-color 160ms ease,
    border-color 160ms ease;
}

.header-action:hover {
  border-color: var(--accent-dark);
  background: var(--accent-dark);
}

.hero,
.section,
.facts,
.footer-inner,
.build-main {
  width: min(100% - 40px, var(--max-width));
  margin-right: auto;
  margin-left: auto;
}

.hero {
  padding: 76px 0 82px;
}

.hero-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(290px, 0.58fr);
  align-items: start;
  gap: clamp(50px, 8vw, 104px);
}

.kicker {
  margin-bottom: 16px;
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0.105em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero-summary {
  padding-top: 34px;
}

.hero-summary > p:first-child {
  color: var(--muted-strong);
  font-size: 1.08rem;
  line-height: 1.66;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 27px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 19px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 720;
  line-height: 1;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.button-primary {
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #ffffff;
}

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

.button-secondary {
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--ink);
}

.button-secondary:hover {
  border-color: var(--ink);
  background: var(--surface);
}

.release-status {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.status-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--success);
}

.product-figure {
  min-width: 0;
  margin: 0;
}

.hero-figure {
  margin-top: 52px;
}

.screen-frame {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: var(--surface);
  box-shadow: var(--screen-shadow);
}

.screen-frame img {
  width: 100%;
}

.hero-screen {
  aspect-ratio: 16 / 9;
}

.hero-screen img {
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.product-figure figcaption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding: 13px 2px 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.45;
}

.product-figure figcaption span:first-child {
  color: var(--ink);
  font-weight: 700;
}

.product-figure figcaption span:last-child {
  text-align: right;
}

.facts {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.facts ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.facts li {
  min-width: 0;
  padding: 23px 22px;
  border-right: 1px solid var(--line);
}

.facts li:first-child {
  padding-left: 0;
}

.facts li:last-child {
  border-right: 0;
}

.facts li > span,
.build-sidebar li > span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 680;
  letter-spacing: 0.06em;
  line-height: 1.4;
  text-transform: uppercase;
}

.facts li > strong,
.build-sidebar li > strong {
  display: block;
  margin-top: 7px;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 680;
  line-height: 1.4;
}

.section {
  padding-top: 90px;
  padding-bottom: 90px;
}

.feature-split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  align-items: center;
  gap: clamp(48px, 7vw, 86px);
}

.feature-copy {
  min-width: 0;
}

.feature-copy h2,
.section-intro h2,
.privacy-copy h2,
.release-panel h2,
.build-preview h2 {
  margin-top: 0;
}

.section-lede {
  margin-top: 22px;
  color: var(--muted-strong);
  font-size: 1.03rem;
  line-height: 1.72;
}

.detail-list {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.detail-list > li {
  display: grid;
  grid-template-columns: minmax(130px, 0.75fr) minmax(0, 1.25fr);
  gap: 18px;
  padding: 17px 0;
  border-top: 1px solid var(--line);
}

.detail-list > li:last-child {
  border-bottom: 1px solid var(--line);
}

.detail-list strong {
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.45;
}

.detail-list span {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.55;
}

.section-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.band-inner {
  padding-top: 88px;
  padding-bottom: 88px;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.62fr);
  align-items: end;
  gap: clamp(44px, 8vw, 108px);
  margin-bottom: 50px;
}

.section-intro .section-lede {
  margin-top: 0;
}

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

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 50px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.workflow-steps article {
  min-width: 0;
  padding: 25px 28px 27px;
  border-right: 1px solid var(--line);
}

.workflow-steps article:first-child {
  padding-left: 0;
}

.workflow-steps article:last-child {
  padding-right: 0;
  border-right: 0;
}

.step-number {
  margin-bottom: 22px;
  color: var(--accent-dark);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.workflow-steps article > p:last-child {
  margin-top: 8px;
  font-size: 0.86rem;
  line-height: 1.58;
}

.interface-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(48px, 7vw, 86px);
}

.plain-list {
  margin: 31px 0 0;
  padding: 0;
  list-style: none;
}

.plain-list li {
  padding: 13px 0;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 650;
  line-height: 1.45;
}

.plain-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.interface-gallery {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(0, 1.7fr) minmax(150px, 0.65fr);
  align-items: start;
  gap: 18px;
}

.interface-gallery .product-figure figcaption {
  display: block;
}

.interface-gallery .product-figure figcaption span {
  display: block;
  text-align: left;
}

.interface-gallery .product-figure figcaption span:last-child {
  margin-top: 3px;
}

.privacy-release {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(60px, 10vw, 132px);
  border-top: 1px solid var(--line);
}

.privacy-copy .section-lede {
  max-width: 540px;
}

.release-panel {
  padding-left: clamp(38px, 5vw, 70px);
  border-left: 1px solid var(--line);
}

.release-panel > p:not(.kicker) {
  margin-top: 18px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 29px;
  color: var(--accent-dark);
  font-size: 0.9rem;
  font-weight: 720;
}

.text-link span {
  font-size: 1.1em;
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--surface-subtle);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(280px, 1.25fr) minmax(220px, 0.75fr) auto;
  align-items: center;
  gap: 48px;
  padding-top: 45px;
  padding-bottom: 45px;
}

.footer-brand img {
  width: 36px;
  height: 36px;
}

.footer-inner > div:first-child > p {
  max-width: 440px;
  margin-top: 13px;
  font-size: 0.82rem;
  line-height: 1.55;
}

.footer-nav {
  flex-wrap: wrap;
  gap: 12px 24px;
  color: var(--muted-strong);
  font-size: 0.8rem;
  font-weight: 650;
}

.creator-link {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 650;
}

.creator-link img {
  width: 46px;
  height: auto;
}

/* Build notes */
.build-main {
  max-width: 1040px;
}

.build-hero {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  align-items: start;
  gap: 27px;
  padding: 82px 0 68px;
  border-bottom: 1px solid var(--line);
}

.build-hero > img {
  width: 88px;
  height: 88px;
}

.build-hero h1 {
  max-width: none;
  font-size: clamp(3rem, 6vw, 4.45rem);
}

.build-intro {
  max-width: 650px;
  margin-top: 22px;
  color: var(--muted-strong);
  font-size: 1.08rem;
}

.build-layout {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: clamp(56px, 9vw, 104px);
  padding: 70px 0 94px;
}

.build-sidebar ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.build-sidebar li {
  padding: 15px 0;
  border-top: 1px solid var(--line);
}

.build-sidebar li:last-child {
  border-bottom: 1px solid var(--line);
}

.build-sidebar li > strong {
  font-size: 0.9rem;
}

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

.build-content h2 {
  max-width: 690px;
}

.build-summary {
  max-width: 680px;
  margin-top: 21px;
  color: var(--muted-strong);
  font-size: 1.04rem;
}

.release-list {
  margin: 42px 0 0;
  padding: 0;
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.release-list li {
  display: grid;
  grid-template-columns: minmax(150px, 0.55fr) minmax(0, 1.45fr);
  gap: 26px;
  padding: 21px 0;
  border-top: 1px solid var(--line);
}

.release-list strong,
.release-list span {
  font-size: 0.88rem;
  line-height: 1.55;
}

.release-list strong {
  color: var(--ink);
  font-weight: 700;
}

.release-list span {
  color: var(--muted);
}

.availability-note {
  margin-top: 34px;
  padding: 17px 20px;
  border-left: 3px solid var(--accent);
  background: var(--accent-soft);
}

.availability-note p {
  color: var(--muted-strong);
  font-size: 0.85rem;
  line-height: 1.6;
}

.build-preview {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(48px, 8vw, 90px);
  padding: 88px 0 96px;
  border-top: 1px solid var(--line);
}

.build-preview > div > p:last-child {
  margin-top: 21px;
}

/* Privacy policy */
.legal-main {
  width: min(100% - 40px, 1040px);
  margin-right: auto;
  margin-left: auto;
}

.legal-hero {
  max-width: 820px;
  padding: 82px 0 66px;
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  max-width: none;
}

.legal-intro {
  max-width: 720px;
  margin-top: 24px;
  color: var(--muted-strong);
  font-size: 1.08rem;
}

.legal-updated {
  margin-top: 19px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 650;
}

.legal-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: clamp(56px, 9vw, 104px);
  padding: 66px 0 94px;
}

.legal-sidebar {
  align-self: start;
}

.legal-sidebar nav {
  display: grid;
  border-top: 1px solid var(--line);
}

.legal-sidebar a {
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted-strong);
  font-size: 0.82rem;
  font-weight: 650;
  line-height: 1.4;
}

.legal-sidebar a:hover {
  color: var(--accent-dark);
}

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

.legal-summary {
  margin-bottom: 48px;
  padding: 24px 26px;
  border-left: 3px solid var(--accent);
  background: var(--accent-soft);
}

.legal-summary h2 {
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.legal-summary ul,
.legal-section ul {
  margin: 17px 0 0;
  padding-left: 20px;
}

.legal-summary li,
.legal-section li {
  padding-left: 4px;
  color: var(--muted-strong);
  font-size: 0.94rem;
  line-height: 1.65;
}

.legal-summary li + li,
.legal-section li + li {
  margin-top: 6px;
}

.legal-section {
  padding: 0 0 42px;
  scroll-margin-top: 96px;
}

.legal-section + .legal-section {
  padding-top: 42px;
  border-top: 1px solid var(--line);
}

.legal-section h2 {
  font-size: clamp(1.7rem, 3vw, 2.15rem);
  letter-spacing: -0.035em;
}

.legal-section h3 {
  margin-top: 27px;
}

.legal-section p {
  margin-top: 17px;
}

.legal-section a {
  color: var(--accent-dark);
  font-weight: 650;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal-section a:hover {
  text-decoration-thickness: 2px;
}

@media (max-width: 1040px) {
  .header-inner,
  .hero,
  .section,
  .facts,
  .footer-inner,
  .build-main,
  .legal-main {
    width: min(100% - 48px, var(--max-width));
  }

  .hero-intro-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 48px;
  }

  .feature-split,
  .interface-section {
    gap: 48px;
  }

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

  .creator-link {
    justify-self: start;
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 118px;
  }

  .header-inner {
    min-height: 0;
    flex-wrap: wrap;
    gap: 0 20px;
    padding: 10px 0;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    gap: 26px;
    margin-top: 9px;
    padding-top: 9px;
    overflow-x: auto;
    border-top: 1px solid var(--line);
    scrollbar-width: none;
  }

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

  .hero {
    padding-top: 58px;
    padding-bottom: 64px;
  }

  .hero-intro-grid,
  .section-intro,
  .feature-split,
  .interface-section,
  .privacy-release,
  .build-preview {
    grid-template-columns: 1fr;
  }

  .hero-intro-grid,
  .section-intro {
    gap: 27px;
  }

  .hero-summary {
    max-width: 600px;
    padding-top: 0;
  }

  .hero-figure {
    margin-top: 40px;
  }

  .section {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .feature-split,
  .interface-section {
    gap: 45px;
  }

  .feature-figure {
    order: 2;
  }

  .feature-copy {
    order: 1;
  }

  .section-intro {
    margin-bottom: 38px;
  }

  .section-intro .section-lede {
    max-width: 620px;
  }

  .band-inner {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .screen-pair {
    gap: 35px;
  }

  .workflow-steps {
    margin-top: 42px;
  }

  .workflow-steps article {
    padding-right: 20px;
    padding-left: 20px;
  }

  .interface-section > .feature-copy {
    order: initial;
  }

  .interface-gallery {
    order: initial;
  }

  .release-panel {
    padding-top: 44px;
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

  .creator-link {
    grid-column: 1 / -1;
  }

  .build-layout {
    grid-template-columns: 170px minmax(0, 1fr);
    gap: 48px;
  }

  .build-preview {
    gap: 38px;
  }

  .legal-layout {
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 48px;
  }
}

@media (max-width: 640px) {
  .header-inner,
  .hero,
  .section,
  .facts,
  .footer-inner,
  .build-main,
  .legal-main {
    width: min(100% - 28px, var(--max-width));
  }

  h1 {
    font-size: clamp(2.45rem, 10.5vw, 2.8rem);
    letter-spacing: -0.05em;
  }

  h2 {
    font-size: clamp(2rem, 9.7vw, 2.55rem);
  }

  .header-action {
    min-height: 38px;
    padding: 0 13px;
    font-size: 0.78rem;
  }

  .brand {
    font-size: 0.91rem;
  }

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

  .site-nav {
    gap: 23px;
    font-size: 0.79rem;
  }

  .hero {
    padding-top: 48px;
    padding-bottom: 54px;
  }

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

  .button {
    width: 100%;
  }

  .hero-screen {
    aspect-ratio: 68 / 41;
  }

  .product-figure figcaption {
    display: block;
  }

  .product-figure figcaption span {
    display: block;
    text-align: left;
  }

  .product-figure figcaption span:last-child {
    margin-top: 3px;
    text-align: left;
  }

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

  .facts li {
    padding: 18px 14px;
    border-bottom: 1px solid var(--line);
  }

  .facts li:nth-child(2) {
    border-right: 0;
  }

  .facts li:nth-child(3) {
    padding-left: 0;
    border-bottom: 0;
  }

  .facts li:nth-child(4) {
    border-right: 0;
    border-bottom: 0;
  }

  .section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .section-lede {
    font-size: 0.98rem;
  }

  .detail-list > li {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .band-inner {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .screen-pair,
  .workflow-steps,
  .interface-gallery {
    grid-template-columns: 1fr;
  }

  .workflow-steps {
    border-bottom: 0;
  }

  .workflow-steps article,
  .workflow-steps article:first-child,
  .workflow-steps article:last-child {
    padding: 23px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .step-number {
    margin-bottom: 13px;
  }

  .command-figure {
    max-width: 300px;
  }

  .privacy-release {
    gap: 44px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 36px;
    padding-bottom: 36px;
  }

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

  .creator-link {
    grid-column: auto;
  }

  .build-hero {
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 18px;
    padding: 54px 0 48px;
  }

  .build-hero > img {
    width: 62px;
    height: 62px;
  }

  .build-hero h1 {
    font-size: clamp(2rem, 8.6vw, 2.35rem);
    letter-spacing: -0.045em;
  }

  .build-intro,
  .build-hero .release-status {
    grid-column: 1 / -1;
  }

  .build-layout {
    grid-template-columns: 1fr;
    gap: 49px;
    padding: 52px 0 66px;
  }

  .build-sidebar ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 20px;
  }

  .release-list li {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .build-preview {
    gap: 36px;
    padding: 58px 0 66px;
  }

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

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 48px 0 66px;
  }

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

  .legal-summary {
    margin-bottom: 40px;
    padding: 21px 20px;
  }

  .legal-section {
    padding-bottom: 34px;
  }

  .legal-section + .legal-section {
    padding-top: 34px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
