/* Presentation tokens mirror the existing MatOS/Open Design workspace chrome.
   This static site has no application runtime, account state or remote fonts. */
:root {
  color-scheme: light;
  --bg: #faf9f7;
  --panel: #fffefc;
  --text: #1a1916;
  --muted: #74716b;
  --border: #e1e5eb;
  --accent: #c96442;
  --accent-strong: #b45a3b;
  --accent-tint: #fbeee5;
  --sans:
    -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei UI",
    "Noto Sans", Arial, sans-serif;
  --mono: ui-monospace, "SF Mono", Consolas, monospace;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
summary:focus-visible {
  outline: 3px solid #2563eb;
  outline-offset: 5px;
}
img {
  display: block;
}
h1,
h2,
h3,
p {
  margin: 0;
}
::selection {
  background: #f5d8cb;
}
.section-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 36px;
  padding-right: 36px;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 20;
  background: var(--panel);
  padding: 12px;
}
.skip-link:focus {
  top: 12px;
}
.site-header {
  height: 82px;
  border-bottom: 1px solid #e8e6e1;
  background: rgba(250, 249, 247, 0.96);
}
.nav-wrap {
  max-width: 1280px;
  height: 100%;
  margin: auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 23px;
  font-weight: 650;
  letter-spacing: -0.7px;
}
.site-header nav {
  display: flex;
  gap: 34px;
  color: #605d57;
  font-size: 14px;
}
.site-header nav a:hover {
  color: var(--accent);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 8px;
  background: var(--accent-strong);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  transition:
    background 0.12s,
    transform 0.12s;
  box-shadow: 0 1px 2px #643e2012;
}
.button:hover {
  background: #a44f32;
  transform: translateY(-1px);
}
.button span {
  font-size: 19px;
  line-height: 1;
}
.button-small {
  min-height: 38px;
  padding: 9px 16px;
  gap: 15px;
  font-size: 13px;
}
.text-link {
  display: inline-flex;
  gap: 16px;
  align-items: center;
  font-size: 14px;
  font-weight: 550;
}
.text-link:hover {
  color: var(--accent);
}
.hero {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 45px;
  align-items: center;
  padding-top: 84px;
  padding-bottom: 70px;
  min-height: 670px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.55px;
  color: var(--muted);
  line-height: 1.6;
}
.hero .eyebrow {
  font-size: 12px;
  letter-spacing: 0.5px;
}
.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6e8770;
  display: inline-block;
  flex-shrink: 0;
}
.eyebrow-divider {
  margin: 0 2px;
  color: #c3bfb7;
}
.hero h1 {
  font-size: clamp(34px, 4.1vw, 50px);
  line-height: 1.27;
  font-weight: 650;
  letter-spacing: -2px;
  margin: 24px 0;
}
.hero-break {
  display: none;
}
.accent-text {
  color: var(--accent);
}
.hero-description {
  font-size: 15px;
  line-height: 1.95;
  color: var(--muted);
  letter-spacing: 0.15px;
}
.hero-actions {
  display: flex;
  gap: 27px;
  align-items: center;
  margin-top: 31px;
}
.entry-caption {
  color: var(--muted);
  font-size: 11px;
  margin-top: 12px;
}
.hero-tags {
  display: flex;
  gap: 17px;
  margin-top: 39px;
  color: #646059;
  font-size: 11px;
}
.hero-tags span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-tags span:before {
  content: "";
  width: 3px;
  height: 3px;
  background: #aaa49a;
  border-radius: 50%;
}
.preview-wrap {
  min-width: 0;
  position: relative;
  padding-top: 8px;
}
.preview-wrap:before {
  content: "";
  position: absolute;
  inset: -30px -25px 30px;
  z-index: -1;
  background-image: radial-gradient(#cfc6b7 1px, transparent 1px);
  background-size: 20px 20px;
  mask-image: radial-gradient(ellipse, #0007, transparent 70%);
}
.workspace-preview {
  border: 1px solid #d9d8d1;
  border-radius: 12px;
  overflow: hidden;
  background: #fffefc;
  box-shadow:
    0 18px 55px #3f342210,
    0 3px 10px #3f342206;
  transform: rotate(-1deg);
}
.window-bar {
  height: 36px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 13px;
  background: #f2f1ee;
  border-bottom: 1px solid #e4e1dc;
  font-size: 9px;
  color: #7b766d;
}
.window-dots {
  display: flex;
  gap: 5px;
}
.window-dots i {
  height: 6px;
  width: 6px;
  background: #d0ccc4;
  border-radius: 50%;
}
.preview-label {
  margin-left: auto;
  font-size: 9px;
  letter-spacing: 0.5px;
}
.workspace-content {
  display: flex;
  min-height: 398px;
}
.preview-sidebar {
  width: 123px;
  flex-shrink: 0;
  padding: 19px 10px 12px;
  background: #f6f5f1;
  border-right: 1px solid #e9e6e0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.preview-logo {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  margin-bottom: 21px;
  padding-left: 4px;
}
.sidebar-item {
  display: flex;
  gap: 7px;
  font-size: 10px;
  color: #827d75;
  padding: 8px 9px;
  border-radius: 5px;
}
.sidebar-item.active {
  background: #ebe8e1;
  color: #302d27;
}
.sidebar-item > span {
  width: 12px;
  text-align: center;
}
.sidebar-heading {
  font-size: 8px;
  color: #a49c91;
  margin: 19px 9px 6px;
}
.sidebar-project {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 9px;
  color: #726c63;
  margin-left: 11px;
}
.project-dot {
  height: 4px;
  width: 4px;
  background: var(--accent);
  border-radius: 50%;
}
.sidebar-bottom {
  margin-top: auto;
  display: flex;
  gap: 6px;
  align-items: center;
  color: #736c61;
  font-size: 8px;
  line-height: 1.6;
  padding: 10px 2px 0;
}
.sidebar-bottom small {
  font-size: 6px;
  color: #998f83;
}
.avatar {
  width: 23px;
  height: 23px;
  border: 1px solid #d8d2c8;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 9px;
}
.preview-main {
  flex: 1;
  min-width: 0;
}
.preview-breadcrumb {
  padding: 17px 17px 15px;
  font-size: 9px;
  color: #a39b90;
  display: flex;
  align-items: center;
  gap: 7px;
}
.preview-breadcrumb strong {
  font-weight: 500;
  color: #49433b;
}
.private-tag {
  margin-left: auto;
  font-size: 7px;
  background: #f3f1ee;
  border: 1px solid #e7e3dd;
  padding: 2px 5px;
  border-radius: 4px;
}
.preview-tabs {
  display: flex;
  gap: 20px;
  border-bottom: 1px solid #eeeae4;
  padding: 0 17px;
  color: #999083;
  font-size: 9px;
}
.preview-tabs span {
  padding: 0 0 10px;
}
.preview-tabs .selected {
  border-bottom: 2px solid var(--accent);
  color: var(--accent);
}
.chat-demo {
  padding: 16px 17px;
}
.user-bubble {
  font-size: 10px;
  line-height: 1.8;
  padding: 9px 12px;
  border-radius: 8px;
  background: #f1eee8;
  margin-left: 25px;
  margin-bottom: 20px;
  max-width: 290px;
  color: #514a40;
}
.assistant-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
}
.assistant-label strong {
  font-weight: 600;
}
.assistant-label > span {
  font-family: var(--mono);
  font-size: 8px;
  border: 1px solid #efd5c9;
  color: var(--accent);
  border-radius: 4px;
  padding: 2px 5px;
}
.assistant-copy {
  font-size: 10px;
  line-height: 1.7;
  margin-top: 10px;
  color: #61594e;
}
.context-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 10px;
}
.context-chips > span {
  font-size: 8px;
  border: 1px solid #e8e3da;
  border-radius: 4px;
  padding: 3px 5px;
  color: #7d7465;
}
.context-chips i {
  font-style: normal;
  color: var(--accent);
  margin-right: 2px;
}
.workflow-preview {
  border: 1px solid #e5e1d9;
  border-radius: 6px;
  margin-top: 13px;
  padding: 11px 12px 5px;
}
.workflow-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 9px;
  margin-bottom: 7px;
}
.workflow-title > span:last-child {
  font-size: 6px;
  font-family: var(--mono);
  letter-spacing: 1px;
  color: #a79d8d;
}
.workflow-step {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 7px 0;
  border-top: 1px solid #f2eee8;
  font-size: 8px;
  color: #665e50;
}
.workflow-step b {
  font-family: var(--mono);
  font-size: 7px;
  font-weight: 400;
  color: #b09d80;
}
.workflow-step i {
  margin-left: auto;
  font-style: normal;
  color: #b1a796;
}
.composer-demo {
  margin-top: 15px;
  border: 1px solid #e3ddd4;
  border-radius: 6px;
  padding: 10px;
  color: #aaa092;
  font-size: 9px;
  background: #fff;
}
.composer-demo > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}
.send-demo {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  background: var(--accent);
  color: #fff;
  border-radius: 4px;
  font-size: 13px;
}
.preview-note {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 10px;
  color: #958a78;
  margin: 20px 7px 0;
}
.note-mark {
  font-size: 20px;
  color: #c9b598;
}
.note-index {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 1px;
}
.research-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  border-top: 1px solid #e7e4dd;
  border-bottom: 1px solid #e7e4dd;
  padding-top: 23px;
  padding-bottom: 23px;
  font-size: 13px;
  color: #74716b;
}
.research-strip .strip-label {
  font-size: 11px;
  color: #a09a8f;
  letter-spacing: 1px;
  padding-right: 15px;
}
.capabilities {
  padding-top: 91px;
  padding-bottom: 85px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 33px;
}
h2 {
  font-size: 32px;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: -1px;
}
.section-heading h2 {
  margin-top: 12px;
}
.section-heading > p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.feature-card {
  background: var(--panel);
  border: 1px solid #e4e1da;
  border-radius: 12px;
  padding: 28px 30px 25px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.feature-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  font-size: 22px;
  margin-bottom: 21px;
}
.icon-orange {
  color: #b7603e;
  background: #faede3;
}
.icon-blue {
  color: #577490;
  background: #eaf0f4;
}
.icon-green {
  color: #55735e;
  background: #ecf1e9;
}
.icon-purple {
  color: #847193;
  background: #f0ebf3;
}
.feature-number {
  position: absolute;
  top: 33px;
  right: 30px;
  font-size: 10px;
  font-family: var(--mono);
  color: #c1b8aa;
}
.feature-card h3 {
  font-size: 18px;
  letter-spacing: -0.3px;
  font-weight: 600;
  margin-bottom: 11px;
}
.feature-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.95;
  max-width: 430px;
  margin-bottom: 25px;
}
.card-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  font-size: 10px;
  color: #877c6c;
  min-height: 25px;
}
.mini-label {
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.8px;
  border: 1px solid #e5e0d6;
  border-radius: 4px;
  padding: 4px 6px;
  color: #a19480;
}
.asset-mini {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-top: auto;
}
.asset-mini span,
.mini-flow span {
  padding: 5px 12px;
  border: 1px solid #e8e3db;
  border-radius: 5px;
  font-size: 10px;
  color: #847966;
  background: #fbfaf7;
}
.mini-flow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.mini-flow i {
  font-style: normal;
  color: #c0b6a5;
}
.research-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 85px;
  padding-top: 63px;
  padding-bottom: 79px;
  border-top: 1px solid #e7e4dd;
}
.research-intro h2 {
  margin: 14px 0 20px;
}
.research-intro > p:not(.eyebrow) {
  font-size: 13px;
  line-height: 2;
  color: var(--muted);
  max-width: 355px;
}
.research-intro .text-link {
  margin-top: 25px;
  color: var(--accent);
  font-size: 12px;
}
.research-steps {
  list-style: none;
  padding: 0;
  margin: 0;
}
.research-steps li {
  display: flex;
  gap: 22px;
  padding: 25px 0;
  border-bottom: 1px solid #e7e4dd;
}
.research-steps li:first-child {
  padding-top: 4px;
}
.research-steps li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.step-index {
  font-family: var(--mono);
  color: var(--accent);
  font-size: 11px;
  padding-top: 5px;
}
.research-steps h3 {
  font-size: 16px;
  font-weight: 550;
  margin-bottom: 9px;
}
.research-steps p {
  font-size: 12px;
  line-height: 1.9;
  color: var(--muted);
}
.access-section {
  padding-top: 20px;
  padding-bottom: 72px;
}
.access-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  background: #f1eee7;
  border: 1px solid #e5dfd4;
  border-radius: 12px;
  padding: 41px 43px;
}
.access-panel h2 {
  margin: 14px 0 15px;
  font-size: 30px;
}
.access-panel p:not(.eyebrow) {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.9;
}
.access-action {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}
.access-action > span {
  font-size: 9px;
  color: #887f70;
}
.faq {
  max-width: 820px;
  margin: 36px auto 0;
}
.faq details {
  border-bottom: 1px solid #e7e4dd;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
  font-weight: 500;
  padding: 20px 0;
  min-height: 54px;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary > span {
  font-size: 17px;
  color: #9a8f7d;
}
.faq details[open] summary > span {
  transform: rotate(45deg);
}
.faq details p {
  font-size: 12px;
  line-height: 1.95;
  color: var(--muted);
  padding: 0 30px 20px 0;
  overflow-wrap: anywhere;
}
.site-footer {
  border-top: 1px solid #e7e4dd;
  display: flex;
  align-items: center;
  gap: 22px;
  padding-top: 28px;
  padding-bottom: 34px;
}
.site-footer .brand {
  font-size: 18px;
}
.site-footer > p {
  font-size: 11px;
  color: var(--muted);
}
.footer-end {
  font-family: var(--mono);
  font-size: 9px;
  color: #9b9283;
  margin-left: auto;
  display: flex;
  gap: 22px;
}
.footer-end > span {
  font-family: var(--sans);
}
@media (min-width: 1250px) {
  .hero h1 {
    font-size: 50px;
  }
}
@media (max-width: 1020px) {
  .hero {
    gap: 26px;
    padding-top: 60px;
    min-height: 610px;
  }
  .hero h1 {
    font-size: clamp(30px, 4.1vw, 42px);
  }
  .hero-break {
    display: block;
  }
  .desktop-break {
    display: none;
  }
  .hero-description {
    max-width: 330px;
  }
  .preview-sidebar {
    width: 104px;
    padding-left: 6px;
    padding-right: 6px;
  }
  .preview-breadcrumb {
    padding-left: 12px;
    padding-right: 12px;
  }
  .preview-tabs {
    gap: 16px;
    padding-left: 12px;
  }
  .chat-demo {
    padding-left: 12px;
    padding-right: 12px;
  }
  .hero-actions {
    gap: 20px;
  }
  .hero-actions .button {
    gap: 14px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .hero-actions .text-link {
    font-size: 12px;
    gap: 7px;
  }
  .research-section {
    gap: 45px;
  }
  .access-panel {
    padding: 34px 30px;
  }
  .section-wrap {
    padding-left: 28px;
    padding-right: 28px;
  }
  .nav-wrap {
    padding-left: 28px;
    padding-right: 28px;
  }
}
@media (max-width: 760px) {
  .site-header {
    height: 70px;
  }
  .nav-wrap {
    padding: 0 21px;
    gap: 12px;
  }
  .site-header nav {
    gap: 18px;
    font-size: 12px;
  }
  .site-header nav a:nth-child(2) {
    display: none;
  }
  .brand {
    font-size: 21px;
  }
  .brand img {
    width: 28px;
    height: 28px;
  }
  .button-small {
    font-size: 11px;
    gap: 9px;
    padding: 8px 11px;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 45px;
    padding-bottom: 35px;
    gap: 37px;
  }
  .hero h1 {
    font-size: 44px;
    line-height: 1.32;
    letter-spacing: -1.7px;
    margin: 20px 0;
  }
  .hero-break {
    display: none;
  }
  .hero-description {
    max-width: 460px;
    font-size: 14px;
  }
  .hero-actions {
    margin-top: 25px;
    gap: 25px;
  }
  .hero-tags {
    margin-top: 24px;
  }
  .preview-wrap {
    max-width: 570px;
    width: 100%;
    justify-self: center;
    padding-top: 0;
  }
  .preview-wrap:before {
    inset: -15px 0 20px;
  }
  .workspace-preview {
    transform: none;
  }
  .workspace-content {
    min-height: 374px;
  }
  .preview-sidebar {
    width: 120px;
  }
  .chat-demo {
    padding: 14px 17px;
  }
  .preview-note {
    margin-top: 12px;
  }
  .research-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px 8px;
    font-size: 10px;
    text-align: center;
    padding-top: 19px;
    padding-bottom: 20px;
  }
  .research-strip .strip-label {
    grid-column: 1/-1;
    font-size: 10px;
    padding: 0;
    margin-bottom: 2px;
  }
  .capabilities {
    padding-top: 55px;
    padding-bottom: 48px;
  }
  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
  }
  .section-heading > p {
    font-size: 12px;
  }
  .section-heading > p br {
    display: none;
  }
  h2 {
    font-size: 28px;
  }
  .feature-card {
    padding: 23px;
  }
  .feature-card h3 {
    font-size: 16px;
  }
  .feature-card p {
    font-size: 12px;
    line-height: 1.9;
    margin-bottom: 19px;
  }
  .feature-grid {
    gap: 14px;
  }
  .feature-number {
    right: 23px;
    top: 27px;
  }
  .feature-icon {
    margin-bottom: 17px;
  }
  .card-detail {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
  .asset-mini {
    gap: 4px;
  }
  .asset-mini span {
    padding: 4px 8px;
  }
  .mini-flow {
    gap: 6px;
  }
  .mini-flow span {
    padding: 4px 8px;
  }
  .research-section {
    grid-template-columns: 1fr;
    gap: 31px;
    padding-top: 42px;
    padding-bottom: 40px;
  }
  .research-intro h2 br {
    display: none;
  }
  .research-intro > p:not(.eyebrow) {
    max-width: 500px;
  }
  .research-intro .text-link {
    margin-top: 17px;
  }
  .research-steps li {
    gap: 18px;
    padding: 20px 0;
  }
  .access-section {
    padding-bottom: 43px;
  }
  .access-panel {
    align-items: flex-start;
    flex-direction: column;
    padding: 29px;
    gap: 25px;
  }
  .access-panel h2 {
    font-size: 28px;
  }
  .access-action {
    align-items: flex-start;
    gap: 10px;
  }
  .faq {
    margin-top: 22px;
  }
  .site-footer {
    flex-wrap: wrap;
    padding-top: 24px;
    gap: 12px 19px;
  }
  .footer-end {
    width: 100%;
    margin: 4px 0 0;
    justify-content: space-between;
  }
  .section-wrap {
    padding-left: 21px;
    padding-right: 21px;
  }
  .hero .eyebrow {
    font-size: 10px;
  }
  .eyebrow {
    font-size: 9px;
    letter-spacing: 1.25px;
  }
}
@media (max-width: 440px) {
  .site-header nav {
    display: none;
  }
  .hero h1 {
    font-size: clamp(30px, 9.5vw, 39px);
  }
  .hero-description {
    font-size: 13px;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .feature-card {
    padding: 25px;
  }
  .feature-card p {
    max-width: 100%;
  }
  .card-detail {
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }
  .preview-sidebar {
    display: none;
  }
  .workspace-content {
    min-height: 360px;
  }
  .preview-breadcrumb {
    padding-top: 14px;
  }
  .preview-main .chat-demo {
    padding: 14px 18px;
  }
  .user-bubble {
    margin-bottom: 15px;
  }
  .preview-note {
    font-size: 9px;
  }
  .preview-label {
    font-size: 8px;
  }
  .workspace-preview {
    border-radius: 10px;
  }
  .access-panel {
    padding: 26px 22px;
  }
  .access-action .button {
    gap: 17px;
    padding-left: 17px;
    padding-right: 17px;
    font-size: 13px;
  }
  .access-action > span {
    font-size: 8px;
  }
  .research-intro h2 {
    font-size: 26px;
  }
  .faq summary {
    font-size: 12px;
  }
  .site-footer > p {
    font-size: 10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .button {
    transition: none;
  }
  .button:hover {
    transform: none;
  }
}
