:root {
  --paper: #f2efe7;
  --paper-deep: #e5dfd2;
  --ink: #0b1b2c;
  --ink-soft: #3f4a51;
  --blue: #0e2a45;
  --blue-light: #d8e7ed;
  --ice: #dff0f3;
  --coral: #df745f;
  --moss: #5e745d;
  --line: rgba(11, 27, 44, 0.14);
  --display: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --body: "Avenir Next", Avenir, "Segoe UI", sans-serif;
  --shadow: 0 32px 80px rgba(4, 20, 34, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 86% 4%, rgba(210, 230, 236, 0.76), transparent 24rem),
    linear-gradient(90deg, transparent 0 49.94%, rgba(11, 27, 44, 0.028) 50%, transparent 50.06%),
    var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-180%);
  border-radius: 999px;
  color: white;
  background: var(--ink);
}

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

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

.site-header {
  width: min(1320px, calc(100% - 48px));
  height: 92px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.brand img,
.footer-brand img {
  border-radius: 9px;
  box-shadow: 0 5px 16px rgba(9, 26, 44, 0.18);
}

nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

nav a {
  text-decoration: none;
}

.nav-download {
  padding: 9px 17px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  transition: color 180ms ease, background 180ms ease;
}

.nav-download:hover {
  color: var(--paper);
  background: var(--ink);
}

.hero {
  width: min(1320px, calc(100% - 48px));
  min-height: 750px;
  margin: 0 auto;
  padding: 90px 0 112px;
  display: grid;
  grid-template-columns: minmax(390px, 0.78fr) minmax(550px, 1.22fr);
  align-items: start;
  gap: 54px;
}

.eyebrow,
.section-label {
  margin: 0 0 24px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.manifesto h2,
.privacy-copy h2,
.native-heading h2,
.download-section h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.hero h1 {
  max-width: 620px;
  font-size: clamp(68px, 7.3vw, 118px);
}

.hero-intro {
  max-width: 560px;
  margin: 32px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.button {
  min-height: 54px;
  padding: 0 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button-primary {
  color: #fff;
  background: var(--ink);
  box-shadow: 0 12px 28px rgba(6, 22, 38, 0.2);
}

.button-primary:hover {
  transform: translateY(-2px);
  background: #143652;
  box-shadow: 0 17px 36px rgba(6, 22, 38, 0.25);
}

.text-link {
  position: relative;
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
}

.text-link::after {
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform-origin: left;
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: scaleX(0.45);
}

.release-line {
  margin: 18px 0 0;
  color: #6d7375;
  font-size: 11px;
}

.product-stage {
  position: relative;
  min-width: 0;
  padding: 70px 0 74px;
  isolation: isolate;
}

.product-stage::before {
  position: absolute;
  z-index: -3;
  inset: 0 3% 0 4%;
  border-radius: 50%;
  content: "";
  background: rgba(178, 210, 219, 0.36);
  filter: blur(3px);
  transform: rotate(-8deg);
}

.stage-orbit {
  position: absolute;
  z-index: -2;
  border: 1px solid rgba(14, 42, 69, 0.16);
  border-radius: 50%;
}

.stage-orbit-one {
  width: 90%;
  height: 66%;
  top: 19%;
  left: 7%;
  transform: rotate(7deg);
}

.stage-orbit-two {
  width: 68%;
  height: 92%;
  top: 4%;
  left: 18%;
  transform: rotate(67deg);
}

.app-window {
  overflow: hidden;
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(11, 27, 44, 0.19);
  border-radius: 13px;
  background: #fbfaf7;
  box-shadow: var(--shadow);
  transform: perspective(1600px) rotateY(-4deg) rotateX(1deg);
}

.window-bar {
  height: 43px;
  padding: 0 14px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid #d8d6cf;
  color: #6c7072;
  background: #eeece6;
  font-size: 10px;
}

.traffic-lights {
  display: flex;
  gap: 7px;
}

.traffic-lights i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #c5c2ba;
}

.window-bar button {
  justify-self: end;
  border: 0;
  color: #848686;
  background: none;
  letter-spacing: 0.07em;
}

.workspace {
  min-height: 486px;
  display: grid;
  grid-template-columns: 180px 1fr;
}

.workspace-sidebar {
  padding: 18px 13px;
  border-right: 1px solid #dedbd4;
  color: #5e6567;
  background: #f0eee8;
  font-size: 10px;
}

.workspace-name {
  margin-bottom: 22px;
  padding: 0 5px;
  display: flex;
  align-items: center;
  gap: 9px;
}

.workspace-name img {
  border-radius: 7px;
}

.workspace-name div {
  display: grid;
  line-height: 1.35;
}

.workspace-name b {
  color: #233746;
  font-size: 11px;
}

.workspace-name span {
  color: #909390;
  font-size: 8px;
}

.workspace-sidebar ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 3px;
  list-style: none;
}

.workspace-sidebar li {
  height: 28px;
  padding: 0 8px;
  display: flex;
  align-items: center;
  gap: 9px;
  border-radius: 5px;
}

.workspace-sidebar li.active {
  color: #172c3d;
  background: #dfddd6;
  font-weight: 650;
}

.workspace-sidebar li em {
  margin-left: auto;
  font-style: normal;
}

.workspace-sidebar > p {
  margin: 23px 8px 7px;
  color: #9a9a94;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.coral { background: var(--coral); }
.blue { background: #5b87a0; }
.moss { background: var(--moss); }

.workspace-page {
  min-width: 0;
  padding: 50px 7.5% 38px;
}

.page-kicker {
  display: flex;
  justify-content: space-between;
  color: #8b8b84;
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.workspace-page h2 {
  margin: 27px 0 6px;
  color: #112638;
  font-family: var(--display);
  font-size: clamp(27px, 3vw, 42px);
  font-weight: 500;
  letter-spacing: -0.045em;
}

.page-lead {
  margin: 0;
  color: #777b79;
  font-family: var(--display);
  font-size: 12px;
}

.note-callout {
  margin: 30px 0;
  padding: 13px 15px;
  display: flex;
  align-items: flex-start;
  gap: 11px;
  border-left: 2px solid #7299a9;
  color: #566268;
  background: #e8f0f1;
  font-size: 9px;
}

.note-callout > span {
  color: #527e90;
  font-size: 12px;
}

.note-callout p {
  margin: 0;
  display: grid;
}

.note-callout b {
  color: #314a57;
  font-size: 9px;
}

.workspace-page h3 {
  margin: 0 0 10px;
  color: #384952;
  font-size: 9px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.task-row {
  min-height: 35px;
  display: grid;
  grid-template-columns: 16px 1fr auto;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid #ece9e1;
  color: #566168;
  font-size: 9px;
}

.task-row i {
  width: 11px;
  height: 11px;
  border: 1px solid #9ba1a1;
  border-radius: 3px;
}

.task-row.done span {
  color: #929590;
  text-decoration: line-through;
}

.task-row.done i {
  position: relative;
  border-color: #648071;
  background: #648071;
}

.task-row.done i::after {
  position: absolute;
  top: 1px;
  left: 3px;
  width: 3px;
  height: 5px;
  border-right: 1px solid white;
  border-bottom: 1px solid white;
  content: "";
  transform: rotate(40deg);
}

.task-row time {
  color: #9a9b96;
  font-size: 8px;
}

.page-rule {
  margin: 30px 0 18px;
  border-top: 1px solid #ddd9d0;
}

.page-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.page-columns div {
  display: grid;
  color: #92938d;
  font-size: 7px;
  text-transform: uppercase;
}

.page-columns strong {
  color: #263e4d;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
}

.privacy-seal {
  position: absolute;
  right: -26px;
  bottom: 25px;
  padding: 14px 17px;
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 8px;
  color: white;
  background: rgba(14, 42, 69, 0.92);
  box-shadow: 0 17px 40px rgba(6, 25, 42, 0.3);
  backdrop-filter: blur(12px);
}

.privacy-seal svg {
  width: 27px;
  fill: none;
  stroke: #b7dae0;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.privacy-seal div {
  display: grid;
  line-height: 1.25;
}

.privacy-seal b { font-size: 10px; }
.privacy-seal span { color: #b7c5cd; font-size: 8px; }

.trust-strip {
  width: min(1320px, calc(100% - 48px));
  min-height: 66px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #596367;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.trust-strip span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.trust-strip i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #668395;
  box-shadow: 0 0 0 4px rgba(102, 131, 149, 0.12);
}

.manifesto,
.native-section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 150px 0;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 13px;
}

.section-label span {
  color: #879094;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 90px;
  align-items: start;
}

.manifesto h2,
.native-heading h2 {
  font-size: clamp(56px, 6vw, 88px);
}

.manifesto-copy {
  max-width: 470px;
  padding-top: 13px;
  color: var(--ink-soft);
  font-family: var(--display);
  font-size: 20px;
  line-height: 1.65;
}

.manifesto-copy p {
  margin: 0 0 23px;
}

.principle-list {
  margin-top: 110px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.principle-list article {
  min-height: 290px;
  padding: 33px 37px 24px 0;
  border-right: 1px solid var(--line);
}

.principle-list article + article {
  padding-left: 37px;
}

.principle-list article:last-child {
  border-right: 0;
}

.principle-list span,
.native-cards article > div:last-child > span {
  color: #777f80;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.principle-list h3 {
  margin: 45px 0 17px;
  font-family: var(--display);
  font-size: 27px;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.principle-list p {
  margin: 0;
  color: #687174;
  font-size: 13px;
}

.privacy-section {
  min-height: 760px;
  padding: 120px max(24px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 100px;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 21% 47%, rgba(44, 92, 114, 0.46), transparent 24rem),
    #0a2034;
}

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

.vault-ring {
  position: absolute;
  border: 1px solid rgba(169, 209, 218, 0.2);
  border-radius: 50%;
}

.ring-a {
  width: 430px;
  height: 430px;
  box-shadow: 0 0 90px rgba(71, 131, 151, 0.12) inset;
}

.ring-b {
  width: 310px;
  height: 310px;
  border-style: dashed;
  animation: slow-spin 36s linear infinite;
}

.vault-core {
  position: relative;
  z-index: 2;
  width: 190px;
  height: 190px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(205, 231, 235, 0.24);
  border-radius: 50%;
  background: rgba(7, 28, 46, 0.72);
  box-shadow: 0 0 90px rgba(90, 169, 191, 0.22);
}

.vault-core img {
  border-radius: 21px;
  box-shadow: 0 15px 38px rgba(0, 0, 0, 0.32);
}

.cipher-fragment {
  position: absolute;
  color: rgba(180, 212, 220, 0.54);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cipher-a { top: 18%; left: 8%; }
.cipher-b { right: 5%; bottom: 22%; }
.cipher-c { bottom: 10%; left: 23%; }

.section-label.light { color: #a7bec8; }
.section-label.light span { color: #7192a1; }

.privacy-copy h2 {
  font-size: clamp(50px, 5vw, 76px);
}

.privacy-copy > p {
  max-width: 550px;
  margin: 36px 0;
  color: #b9c9d0;
  font-family: var(--display);
  font-size: 19px;
  line-height: 1.7;
}

.privacy-copy ul {
  margin: 0 0 38px;
  padding: 0;
  list-style: none;
}

.privacy-copy li {
  min-height: 47px;
  display: flex;
  align-items: center;
  gap: 17px;
  border-bottom: 1px solid rgba(211, 231, 236, 0.12);
  color: #d5e0e4;
  font-size: 12px;
}

.privacy-copy li span {
  color: #718d99;
  font-family: var(--display);
}

.light-link { color: #d9e8eb; }

.native-heading {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 100px;
  align-items: end;
}

.native-heading p {
  max-width: 470px;
  margin: 0 0 5px;
  color: var(--ink-soft);
  font-family: var(--display);
  font-size: 19px;
  line-height: 1.65;
}

.native-cards {
  margin-top: 90px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  grid-template-rows: repeat(2, 280px);
  gap: 16px;
}

.native-cards article {
  position: relative;
  overflow: hidden;
  padding: 33px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.28);
}

.native-cards .card-editor {
  grid-row: 1 / 3;
}

.native-cards h3 {
  max-width: 390px;
  margin: 10px 0 0;
  font-family: var(--display);
  font-size: 29px;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.editor-glyph {
  width: 72%;
  margin: auto;
  display: grid;
  gap: 18px;
}

.editor-glyph span {
  color: #19374e;
  font-family: var(--display);
  font-size: 84px;
  letter-spacing: -0.08em;
}

.editor-glyph i {
  height: 1px;
  background: #a5adb0;
}

.editor-glyph i:nth-child(3) { width: 84%; }
.editor-glyph i:nth-child(4) { width: 62%; }

.offline-orb {
  width: 125px;
  height: 125px;
  margin: auto;
  display: grid;
  place-items: center;
  border: 1px solid #9daeb3;
  border-radius: 50%;
  color: #335362;
  font-family: var(--display);
  font-size: 17px;
}

.offline-orb i {
  position: absolute;
  width: 85px;
  height: 85px;
  border: 1px dashed #b6c2c4;
  border-radius: 50%;
}

.mini-board {
  width: 78%;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}

.mini-board i {
  height: 42px;
  border: 1px solid #aab5b7;
  border-radius: 3px;
  background: rgba(215, 229, 230, 0.42);
}

.mini-board i:nth-child(2),
.mini-board i:nth-child(6) {
  transform: translateY(10px);
}

.download-section {
  padding: 150px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.2);
}

.download-icon {
  margin-bottom: 36px;
  border-radius: 29px;
  box-shadow: 0 24px 58px rgba(6, 25, 42, 0.22);
}

.download-section h2 {
  font-size: clamp(65px, 8vw, 112px);
}

.download-section > p:not(.eyebrow) {
  max-width: 570px;
  margin: 30px auto;
  color: var(--ink-soft);
  font-family: var(--display);
  font-size: 19px;
}

.download-meta {
  margin-top: 19px;
  display: flex;
  gap: 20px;
  color: #747b7d;
  font-size: 10px;
  text-transform: uppercase;
}

.download-meta span + span::before {
  margin-right: 20px;
  content: "·";
}

.checksum-link {
  margin-top: 13px;
  color: #747b7d;
  font-size: 10px;
}

footer {
  width: min(1320px, calc(100% - 48px));
  min-height: 150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 60px;
  border-top: 1px solid var(--line);
  color: #697173;
  font-size: 11px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand div {
  display: grid;
}

.footer-brand b {
  color: var(--ink);
  font-family: var(--display);
  font-size: 18px;
}

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

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

[data-reveal] {
  opacity: 1;
  transform: none;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes slow-spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 1050px) {
  .hero {
    padding-top: 70px;
    grid-template-columns: 1fr;
  }

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

  .product-stage {
    width: 92%;
    margin: 0 auto;
  }

  .manifesto-grid,
  .native-heading,
  .privacy-section {
    grid-template-columns: 1fr;
  }

  .manifesto-copy,
  .native-heading p {
    max-width: 680px;
  }

  .privacy-section { gap: 30px; }
  .privacy-art { order: 2; }
}

@media (max-width: 760px) {
  .site-header,
  .hero,
  .trust-strip,
  .manifesto,
  .native-section,
  footer {
    width: min(100% - 32px, 620px);
  }

  .site-header { height: 76px; }

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

  .hero {
    min-height: 0;
    padding: 65px 0 80px;
    gap: 35px;
  }

  .hero h1 { font-size: clamp(58px, 18vw, 86px); }
  .hero-intro { font-size: 16px; }

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

  .product-stage {
    width: 108%;
    margin-left: -4%;
    padding: 40px 0 55px;
    overflow: hidden;
  }

  .app-window { transform: none; }
  .workspace { min-height: 370px; grid-template-columns: 98px 1fr; }
  .workspace-sidebar { padding: 12px 6px; }
  .workspace-name div { display: none; }
  .workspace-sidebar li { padding: 0 5px; gap: 5px; font-size: 8px; }
  .workspace-sidebar li em { display: none; }
  .workspace-page { padding: 34px 6% 24px; }
  .workspace-page h2 { margin-top: 17px; }
  .note-callout { margin: 20px 0; }
  .page-columns { display: none; }
  .page-rule { display: none; }
  .privacy-seal { right: 9px; bottom: 18px; }

  .trust-strip {
    padding: 17px 0;
    grid-template-columns: 1fr 1fr;
    gap: 14px 5px;
  }

  .trust-strip span { justify-content: flex-start; }

  .manifesto,
  .native-section { padding: 100px 0; }

  .manifesto-grid { gap: 40px; }
  .manifesto h2,
  .native-heading h2 { font-size: 54px; }
  .manifesto-copy { font-size: 18px; }

  .principle-list {
    margin-top: 60px;
    grid-template-columns: 1fr;
  }

  .principle-list article,
  .principle-list article + article {
    min-height: 0;
    padding: 28px 0 35px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .principle-list h3 { margin-top: 24px; }

  .privacy-section {
    padding: 95px 24px 70px;
  }

  .privacy-copy h2 { font-size: 49px; }
  .privacy-art { min-height: 390px; }
  .ring-a { width: 330px; height: 330px; }
  .ring-b { width: 245px; height: 245px; }

  .native-heading { gap: 35px; }
  .native-cards {
    margin-top: 60px;
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .native-cards article,
  .native-cards .card-editor {
    min-height: 300px;
    grid-row: auto;
  }

  .editor-glyph span { font-size: 64px; }
  .download-section { padding: 110px 20px; }
  .download-meta { gap: 8px; flex-wrap: wrap; justify-content: center; }
  .download-meta span + span::before { margin-right: 8px; }

  footer {
    padding: 35px 0;
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .footer-links { flex-wrap: wrap; }
}

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