/* ==========================================================================
   IPJ Solutions — landing page styles
   Design tokens mirror the Claude Design source ("IPJ Solutions.dc.html").
   ========================================================================== */

:root {
  --accent: #2f55d4;
  --accent-soft: #f3f6fe;
  --accent-border: #d9e1fa;

  --ink: #0b0f19;
  --ink-2: #2a2f3b;
  --ink-3: #3d4453;
  --body: #454b5a;
  --muted: #5a6070;
  --muted-2: #6b7280;
  --muted-3: #8a909c;
  --faint: #9aa1ad;
  --faint-2: #b4b9c2;

  --bg: #fbfbfc;
  --bg-alt: #f6f7f9;
  --surface: #fff;

  --line: #eaebef;
  --line-2: #e9eaee;
  --line-3: #e7e8ec;
  --line-4: #eeeff2;
  --line-5: #f0f1f4;
  --line-6: #f4f5f7;

  --sans: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", monospace;

  --gutter: clamp(20px, 4vw, 40px);
  --shell: 1200px;
  --radius: 11px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: #fff; }

a { color: var(--accent); text-decoration: none; }
a:hover { opacity: .82; }

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

h1, h2, h3, p, figure { margin: 0; }

[id] { scroll-margin-top: 84px; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.shell {
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 12px; top: -60px;
  z-index: 100;
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  border-radius: 9px;
  font-size: .9rem;
  font-weight: 600;
  transition: top .18s ease;
}
.skip-link:focus { top: 12px; opacity: 1; }

/* ---------- Reveal on scroll ------------------------------------------- */

@keyframes reveal {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}

.js [data-reveal] { opacity: 0; }
.js [data-reveal].is-visible {
  animation: reveal .85s cubic-bezier(.22, .61, .36, 1) forwards;
}

/* ---------- Shared atoms ------------------------------------------------ */

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 2px;
  flex: none;
}
.eyebrow > span {
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.section-title {
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  font-weight: 700;
  letter-spacing: -.028em;
  line-height: 1.1;
  margin-top: 20px;
  max-width: 18ch;
  text-wrap: balance;
}

.section-lead {
  font-size: 1.08rem;
  line-height: 1.62;
  color: var(--body);
  margin-top: 18px;
  max-width: 58ch;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-radius: var(--radius);
  font-size: .98rem;
  font-weight: 600;
  padding: 13px 24px;
  transition: background .2s, border-color .2s, box-shadow .2s, transform .2s;
}
.btn:hover { opacity: 1; }

.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover {
  background: #1c2436;
  box-shadow: 0 12px 30px -12px rgba(11, 15, 25, .45);
  transform: translateY(-1px);
}

.btn--outline {
  background: var(--surface);
  color: var(--ink);
  border: 1px solid #e1e3e8;
  padding: 13px 22px;
}
.btn--outline:hover { border-color: var(--ink); transform: translateY(-1px); }

.btn--white {
  background: #fff;
  color: var(--ink);
  padding: 14px 28px;
  font-size: 1rem;
}
.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -16px rgba(0, 0, 0, .5);
}

.btn--sm { padding: 9px 16px; font-size: .88rem; border-radius: 9px; }

/* ---------- Header ------------------------------------------------------ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(251, 251, 252, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.header__inner {
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
}
.brand:hover { opacity: 1; }

.brand__mark {
  width: 30px; height: 30px;
  flex: none;
  border-radius: 9px;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 8px -3px rgba(11, 15, 25, .45);
}

.brand__name {
  font-size: 1.08rem;
  letter-spacing: -.02em;
  font-weight: 500;
  color: var(--ink-3);
  white-space: nowrap;
}
.brand__name b { font-weight: 700; color: var(--ink); }

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__link {
  font-size: .92rem;
  font-weight: 500;
  color: var(--ink-3);
}
.nav__link:hover { color: var(--ink); opacity: 1; }

.header__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lang {
  display: flex;
  align-items: center;
  border: 1px solid #e4e5ea;
  border-radius: 8px;
  padding: 3px;
  background: #fff;
  width: max-content;
}
.lang__btn {
  font-family: var(--mono);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 5px 11px;
  border: none;
  border-radius: 6px;
  background: transparent;
  color: var(--muted-2);
  transition: background .2s, color .2s;
}
.lang__btn:hover { color: var(--ink); opacity: 1; }
.lang__btn[aria-current="true"] { background: var(--ink); color: #fff; }

.menu-toggle {
  display: none;
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid #e4e5ea;
  border-radius: 9px;
  cursor: pointer;
  color: var(--ink);
}

.mobile-menu {
  border-top: 1px solid var(--line);
  background: #fff;
  padding: 14px var(--gutter) 22px;
  flex-direction: column;
  gap: 4px;
  display: none;
}
.mobile-menu.is-open { display: flex; }

.mobile-menu__link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink-3);
  padding: 11px 0;
  border-bottom: 1px solid #f1f2f5;
}

.mobile-menu__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 14px;
}

@media (max-width: 879px) {
  .nav,
  .header__actions { display: none; }
  .menu-toggle { display: flex; }
}

/* ---------- Hero -------------------------------------------------------- */

.hero {
  max-width: var(--shell);
  margin-inline: auto;
  padding: clamp(56px, 8vw, 96px) var(--gutter) clamp(64px, 9vw, 110px);
}

.hero__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 410px), 1fr));
  gap: clamp(44px, 6vw, 80px);
  align-items: center;
}

.hero__title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1.04;
  margin-top: 22px;
  max-width: 16ch;
  text-wrap: balance;
}

.hero__lead {
  font-size: clamp(1.02rem, 1.4vw, 1.15rem);
  line-height: 1.62;
  color: var(--body);
  margin-top: 26px;
  max-width: 52ch;
}

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

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 38px;
  padding: 0;
  list-style: none;
}
.chip {
  font-family: var(--mono);
  font-size: .72rem;
  color: var(--muted);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: 6px 13px;
  background: #fff;
}

/* ---------- Product mock ------------------------------------------------ */

.mock {
  width: 100%;
  max-width: 560px;
  margin-inline: auto;
  /* The mock is a grid item; without this its table's min-content width would
     push the hero grid wider than a narrow viewport. */
  min-width: 0;
}

.mock__frame {
  border: 1px solid var(--line-3);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  box-shadow:
    0 40px 80px -44px rgba(11, 15, 25, .28),
    0 2px 6px -2px rgba(11, 15, 25, .06);
}

.mock__bar {
  height: 44px;
  border-bottom: 1px solid var(--line-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 16px;
}
.mock__app {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--mono);
  font-size: .7rem;
  color: var(--muted-2);
  letter-spacing: .04em;
}
.mock__app::before {
  content: "";
  width: 9px; height: 9px;
  background: var(--accent);
  border-radius: 2px;
  transform: rotate(45deg);
}
.mock__dots { display: flex; gap: 6px; }
.mock__dots span {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #d7dae1;
}

.mock__body { display: flex; min-height: 290px; }

.mock__nav {
  width: 138px;
  flex: none;
  border-right: 1px solid var(--line-5);
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  background: #fcfcfd;
}
.mock__navitem {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 9px;
  border-radius: 8px;
  font-size: .82rem;
  color: var(--muted);
}
.mock__navitem::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 2px;
  background: #cdd1da;
  flex: none;
}
.mock__navitem.is-active {
  background: #f1f3f7;
  font-weight: 600;
  color: var(--ink);
}
.mock__navitem.is-active::before { background: var(--accent); }

.mock__main {
  flex: 1;
  min-width: 0;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.mock__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.mock__title { font-size: .95rem; font-weight: 700; letter-spacing: -.01em; }
.mock__search {
  font-family: var(--mono);
  font-size: .66rem;
  color: var(--faint);
  border: 1px solid #ecedf1;
  border-radius: 6px;
  padding: 4px 9px;
}

.mock__table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.mock__table th,
.mock__table td {
  text-align: left;
  padding-right: 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mock__table th:last-child,
.mock__table td:last-child { padding-right: 0; }
.mock__table th:nth-child(1) { width: 25%; }
.mock__table th:nth-child(2) { width: 28%; }
.mock__table th:nth-child(3) { width: 20%; }
.mock__table th:nth-child(4) { width: 27%; }
.mock__table thead th {
  padding-bottom: 9px;
  border-bottom: 1px solid var(--line-5);
  font-family: var(--mono);
  font-size: .6rem;
  font-weight: 400;
  letter-spacing: .09em;
  color: var(--faint);
}
.mock__table tbody td {
  padding: 10px 8px 10px 0;
  border-bottom: 1px solid var(--line-6);
  font-size: .76rem;
  color: var(--body);
  vertical-align: middle;
}
.mock__table tbody tr:last-child td { border-bottom: none; }
.mock__id { font-family: var(--mono); color: var(--ink); }
.mock__date { font-family: var(--mono); color: var(--muted-3); }

.mock__status {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted-3);
}
.mock__status::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #cdd1da;
  flex: none;
}
.mock__status--active { color: var(--accent); font-weight: 600; }
.mock__status--active::before { background: var(--accent); }
.mock__status--next { color: var(--body); }
.mock__status--next::before { background: #b9bdc7; }

.mock__foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: #f7f8fa;
  border-radius: 9px;
  padding: 11px 13px;
}
.mock__foot dt {
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .08em;
  color: var(--muted-3);
  text-transform: uppercase;
}
.mock__foot dd {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--ink);
}
.mock__foot dd::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex: none;
}

/* On narrow screens the sidebar costs more than it shows — drop it so the
   case table keeps its full width. */
@media (max-width: 519px) {
  .mock__nav { display: none; }
  .mock__main { padding: 14px; }
}

/* ---------- Sections ---------------------------------------------------- */

.section {
  padding: clamp(72px, 10vw, 128px) var(--gutter);
  border-top: 1px solid var(--line-4);
}
.section--alt { background: var(--bg-alt); }
.section > .shell { padding-inline: 0; }

/* About */

.about__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(40px, 6vw, 72px);
  align-items: start;
}
.about__lead {
  font-size: 1.08rem;
  line-height: 1.68;
  color: var(--body);
  max-width: 56ch;
}
.about .section-title { max-width: 16ch; }

.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 28px 32px;
  margin-top: 44px;
  padding: 0;
  list-style: none;
}
.pillar__title {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  font-size: 1.02rem;
}
.pillar__title::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 2px;
  flex: none;
}
.pillar p {
  font-size: .94rem;
  line-height: 1.55;
  color: var(--muted-2);
  margin-top: 9px;
}

/* Products */

.product-card {
  margin-top: 48px;
  border: 1px solid var(--line-3);
  border-radius: 18px;
  background: #fff;
  padding: clamp(28px, 4vw, 48px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(32px, 4vw, 56px);
  align-items: start;
  box-shadow: 0 2px 4px -2px rgba(11, 15, 25, .04);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--mono);
  font-size: .66rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 6px 12px;
}
.tag--available {
  color: var(--accent);
  border: 1px solid var(--accent-border);
  background: var(--accent-soft);
}
.tag--available::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.tag--soon {
  color: var(--muted-3);
  border: 1px solid #e4e5ea;
}

.product-card__name {
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -.02em;
  margin-top: 20px;
}
.product-card__desc {
  font-size: 1.02rem;
  line-height: 1.62;
  color: var(--muted);
  margin-top: 16px;
  max-width: 42ch;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.feature {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1.02rem;
  color: var(--ink-2);
}
.feature__icon {
  flex: none;
  width: 24px; height: 24px;
  border-radius: 7px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.coming {
  margin-top: 20px;
  border: 1.5px dashed #d5d8df;
  border-radius: 18px;
  padding: clamp(22px, 3vw, 32px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 24px;
}
.coming__body { flex: 1; min-width: 220px; }
.coming__title { font-weight: 700; font-size: 1.08rem; color: var(--ink-3); }
.coming__body p {
  font-size: .95rem;
  color: var(--muted-3);
  margin-top: 6px;
  line-height: 1.5;
}

/* Why */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(235px, 1fr));
  gap: 20px;
  margin-top: 52px;
  padding: 0;
  list-style: none;
}
.card {
  border: 1px solid var(--line-2);
  border-radius: 15px;
  background: #fff;
  padding: 28px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px -24px rgba(11, 15, 25, .22);
  border-color: #d6d9e0;
}
.card__icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}
.card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 20px;
  letter-spacing: -.01em;
}
.card p {
  font-size: .95rem;
  line-height: 1.58;
  color: var(--muted-2);
  margin-top: 10px;
}

/* Process */

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
  gap: 28px;
  margin-top: 52px;
  padding: 0;
  list-style: none;
  counter-reset: step;
}
.step {
  border-top: 1px solid #d6d9e0;
  padding-top: 22px;
  counter-increment: step;
}
.step::before {
  content: "0" counter(step);
  font-family: var(--mono);
  font-size: 2rem;
  font-weight: 500;
  color: #c8ccd5;
}
.step:last-child::before { color: var(--accent); }
.step h3 {
  font-size: 1.14rem;
  font-weight: 700;
  margin-top: 14px;
  letter-spacing: -.01em;
}
.step p {
  font-size: .95rem;
  line-height: 1.56;
  color: var(--muted-2);
  margin-top: 10px;
}

/* FAQ */

.faq__list {
  margin-top: 48px;
  border-top: 1px solid var(--line-2);
  max-width: 860px;
}
.faq__item {
  border-bottom: 1px solid var(--line-2);
}
.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  font-size: 1.06rem;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: "";
  flex: none;
  width: 20px; height: 20px;
  background: no-repeat center / 20px 20px
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238a909c' stroke-width='1.8' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E");
  transition: transform .25s ease;
}
.faq__item[open] .faq__q::after { transform: rotate(45deg); }
.faq__a {
  font-size: 1rem;
  line-height: 1.62;
  color: var(--muted-2);
  margin: 0 0 24px;
  max-width: 68ch;
}

/* ---------- CTA --------------------------------------------------------- */

.cta {
  background: var(--ink);
  color: #fff;
  padding: clamp(80px, 11vw, 130px) var(--gutter);
}
.cta__inner {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}
.cta .eyebrow {
  display: inline-flex;
  margin-bottom: 22px;
}
.cta .eyebrow > span { color: #9aa3b4; }
.cta__title {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.08;
  text-wrap: balance;
}
.cta__sub {
  font-size: 1.1rem;
  line-height: 1.62;
  color: rgba(255, 255, 255, .64);
  margin: 22px auto 0;
  max-width: 52ch;
}
.cta__actions {
  margin-top: 38px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.cta__alt {
  font-size: .92rem;
  color: rgba(255, 255, 255, .5);
}
.cta__alt a {
  color: #fff;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, .35);
}

/* ---------- Footer ------------------------------------------------------ */

.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: clamp(56px, 7vw, 80px) var(--gutter) 40px;
}

.footer__grid {
  max-width: var(--shell);
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 48px 40px;
}
.footer__brand { flex: 2; min-width: 260px; }
.footer__col { flex: 1; min-width: 150px; }
.footer__col--wide { min-width: 180px; }

.footer__tagline {
  font-size: .96rem;
  line-height: 1.6;
  color: var(--muted-2);
  margin-top: 18px;
  max-width: 34ch;
}
.footer__brand .lang { margin-top: 22px; }

.footer__title {
  font-family: var(--mono);
  font-size: .66rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 18px;
}
.footer__list { margin: 0; padding: 0; list-style: none; }
.footer__list li + li { margin-top: 12px; }
.footer__list a,
.footer__list span {
  display: block;
  font-size: .94rem;
  color: var(--body);
  font-style: normal;
}
.footer__list a:hover { color: var(--ink); opacity: 1; }
.footer__list .is-muted { color: var(--faint); }
.footer__addr { color: var(--muted-2); line-height: 1.5; }

.footer__bottom {
  max-width: var(--shell);
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--line-4);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}
.footer__bottom small {
  font-size: .86rem;
  color: var(--faint);
}
.footer__place {
  font-family: var(--mono);
  font-size: .72rem;
  color: var(--faint-2);
  letter-spacing: .04em;
}

/* ---------- 404 --------------------------------------------------------- */

.notfound {
  max-width: 620px;
  margin-inline: auto;
  padding: clamp(80px, 14vw, 160px) var(--gutter);
  text-align: center;
}
.notfound__code {
  font-family: var(--mono);
  font-size: 3rem;
  font-weight: 500;
  color: #c8ccd5;
}
.notfound h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -.03em;
  margin-top: 12px;
}
.notfound p {
  font-size: 1.05rem;
  line-height: 1.62;
  color: var(--body);
  margin: 18px 0 32px;
}

/* ---------- Motion preferences ------------------------------------------ */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js [data-reveal],
  .js [data-reveal].is-visible {
    opacity: 1;
    animation: none;
  }
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* ---------- Print ------------------------------------------------------- */

@media print {
  .site-header, .menu-toggle, .mobile-menu, .chips, .mock { display: none !important; }
  body { background: #fff; }
  .cta { background: #fff; color: #000; }
}
