:root {
  color-scheme: light;
  --blue: #4786e1;
  --blue-strong: #357af1;
  --cyan: #22aefe;
  --indigo: #060c4e;
  --violet: #7c5cff;
  --grey: #f3f5f7;
  --white: #ffffff;
  --ink: #060c4e;
  --ink-soft: #455070;
  --ink-muted: #7b84a4;
  --line: #dfe5ef;
  --line-soft: #edf1f6;
  --surface: #ffffff;
  --surface-blue: #f7fbff;
  --shadow: 0 20px 70px rgba(6, 12, 78, 0.09);
  --shadow-soft: 0 10px 34px rgba(6, 12, 78, 0.06);
  --radius: 8px;
  --max: 1180px;
  --font-heading: Montserrat, "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: Montserrat, "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-code: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  font-family: var(--font-body);
  background:
    radial-gradient(circle at 12% 8%, rgba(34, 174, 254, 0.12), transparent 28rem),
    radial-gradient(circle at 88% 3%, rgba(124, 92, 255, 0.10), transparent 26rem),
    var(--white);
  color: var(--ink);
  letter-spacing: 0;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
}

body.modal-open {
  overflow: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

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

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

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(223, 229, 239, 0.78);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  transition: box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.topbar.is-scrolled {
  border-color: rgba(223, 229, 239, 0.48);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 34px rgba(6, 12, 78, 0.10);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 172px;
}

.brand img {
  width: 172px;
  height: auto;
}

.topbar__menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  min-width: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: 24px;
}

.nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: var(--radius);
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  transition: color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.nav a[aria-current="page"],
.nav a:hover {
  background: rgba(6, 12, 78, 0.06);
  color: var(--indigo);
}

.header-email {
  display: none;
  color: var(--ink-muted);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.language-switch {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 2px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.language-switch:hover {
  border-color: rgba(71, 134, 225, 0.34);
  box-shadow: 0 10px 24px rgba(71, 134, 225, 0.12);
}

.language-switch a {
  min-width: 32px;
  min-height: 28px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  color: var(--ink-muted);
  font-size: 11px;
  font-weight: 800;
  transition: background 160ms ease, color 160ms ease;
}

.language-switch a[aria-current="true"] {
  background: var(--grey);
  color: var(--indigo);
}

.language-switch a:hover {
  background: #eef6ff;
  color: var(--blue);
}

.header-action {
  min-height: 36px;
  margin-left: 0;
}

.burger {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  gap: 5px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.burger span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--indigo);
  transition: background 160ms ease;
}

.burger:hover {
  border-color: rgba(71, 134, 225, 0.34);
  background: #eef6ff;
  box-shadow: 0 10px 24px rgba(71, 134, 225, 0.12);
}

.burger:hover span {
  background: var(--blue);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 80;
  height: 100dvh;
  display: flex;
  justify-content: flex-end;
  background: rgba(6, 12, 78, 0.34);
  backdrop-filter: blur(10px);
  opacity: 1;
  transition: opacity 240ms ease;
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu.is-closing {
  opacity: 0;
}

.mobile-menu.is-opening {
  opacity: 0;
}

.mobile-menu.is-closing .mobile-menu__panel {
  transform: translateX(100%);
}

.mobile-menu.is-opening .mobile-menu__panel {
  transform: translateX(100%);
}

.mobile-menu__panel {
  width: min(88vw, 380px);
  height: 100dvh;
  min-height: 0;
  overflow-y: auto;
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 18px;
  padding: 22px;
  background: var(--white);
  box-shadow: -22px 0 70px rgba(6, 12, 78, 0.18);
  transform: translateX(0);
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.mobile-nav {
  display: grid;
  align-content: start;
  gap: 8px;
}

.mobile-nav a {
  min-height: 38px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  border-radius: var(--radius);
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 500;
  transition: background 160ms ease, color 160ms ease;
}

.mobile-nav a:hover,
.mobile-nav a[aria-current="page"] {
  background: rgba(6, 12, 78, 0.06);
  color: var(--indigo);
}

.mobile-menu__action {
  width: 100%;
  align-self: start;
  margin-top: 2px;
}

.main {
  flex: 1;
}

.section {
  border-bottom: 1px solid var(--line-soft);
}

.section--quiet {
  background: rgba(243, 245, 247, 0.48);
}

.section--dark {
  background: var(--indigo);
  color: var(--white);
}

.section__inner {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 76px 0;
}

.section__inner--tight {
  padding: 44px 0;
}

.page-kicker {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-title,
h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  letter-spacing: 0;
  font-weight: 500;
}

.page-title {
  max-width: none;
  margin: 0;
  font-size: clamp(38px, 4.8vw, 55px);
  line-height: 1.02;
  font-weight: 500;
}

.page-lede {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.9vw, 22px);
  line-height: 1.56;
  font-weight: 500;
}

.section-copy {
  max-width: none;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.76;
  font-weight: 500;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero .section__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: 56px;
  padding-top: 40px;
  padding-bottom: 34px;
}

.hero__copy {
  position: relative;
  z-index: 1;
}

.hero .page-title {
  max-width: 760px;
  font-size: clamp(38px, 4.8vw, 55px);
}

.hero .button-row {
  flex-wrap: nowrap;
}

.hero .button {
  flex: 0 1 auto;
  white-space: nowrap;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0 0 18px;
  color: var(--ink-muted);
  font-size: 12px;
  font-weight: 650;
}

.breadcrumbs {
  /* Breadcrumbs are intentionally kept in markup but hidden until the navigation pattern is re-enabled. */
  display: none;
}

.breadcrumbs a {
  color: var(--ink-muted);
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.breadcrumbs a:hover {
  color: var(--indigo);
  background: rgba(34, 174, 254, 0.12);
  box-shadow: 0 0 0 4px rgba(34, 174, 254, 0.12);
}

.breadcrumbs a::after {
  content: "/";
  margin-left: 8px;
  color: var(--line);
}

.hero__note {
  max-width: 620px;
  margin-top: 22px;
  padding-left: 18px;
  border-left: 3px solid var(--cyan);
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.62;
}

.hero__visual {
  position: relative;
  min-height: 430px;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero__emblem {
  position: absolute;
  inset: auto -42px -10px auto;
  width: min(500px, 50vw);
  opacity: 0.58;
  filter: blur(10px) saturate(1.08);
}

.hero__orbit {
  position: relative;
  z-index: 1;
  width: min(100%, 460px);
  margin-left: auto;
  display: grid;
  gap: 12px;
}

.lab-strip {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  min-height: 58px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.70);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 14px 34px rgba(6, 12, 78, 0.08);
  backdrop-filter: blur(14px);
}

.lab-strip strong {
  font-family: var(--font-heading);
  font-size: 15px;
}

.lab-strip span {
  color: var(--blue);
  font-family: var(--font-code);
  font-size: 12px;
  font-weight: 700;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 52px;
  align-items: start;
}

.split > * {
  min-width: 0;
}

.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: 56px;
}

.product-hero > * {
  min-width: 0;
}

.stack {
  display: grid;
  gap: 16px;
}

.stack--large {
  display: grid;
  gap: 30px;
}

.eyebrow-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}

.pill {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
}

.surface-card,
.preview-list article,
.event-list article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7) inset;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 24px;
}

.tag {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(71, 134, 225, 0.22);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink-soft);
  font-family: var(--font-code);
  font-size: 12px;
  font-weight: 700;
}

.status {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink-soft);
  font-family: var(--font-code);
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: currentColor;
}

.status--live {
  color: #0d8fca;
  background: #eaf8ff;
  border-color: rgba(34, 174, 254, 0.26);
}

.status--active {
  color: var(--blue);
  background: #edf5ff;
  border-color: rgba(71, 134, 225, 0.28);
}

.status--prototype {
  color: var(--violet);
  background: #f1edff;
  border-color: rgba(124, 92, 255, 0.28);
}

.status--archived {
  color: #8791aa;
  background: var(--grey);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.product-card {
  min-height: 310px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 26px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.98)),
    radial-gradient(circle at 86% 12%, rgba(34, 174, 254, 0.20), transparent 9rem);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(71, 134, 225, 0.45);
  box-shadow: var(--shadow);
}

.product-card__top,
.product-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.product-card__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(71, 134, 225, 0.16);
  border-radius: var(--radius);
  background: #f3f7fd;
  color: var(--blue);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  overflow: hidden;
}

.product-card__icon--image {
  width: 84px;
  height: 56px;
  border-color: transparent;
  background: transparent;
}

.product-card__icon img,
.product-detail__image {
  width: 100%;
  display: block;
  object-fit: cover;
}

.product-card__icon img {
  height: 100%;
  object-fit: contain;
}

.product-detail__media {
  min-width: 0;
}

.product-detail__image {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.product-card h3 {
  margin: 0 0 11px;
  color: var(--indigo);
  font-family: var(--font-heading);
  font-size: 34px;
  line-height: 1.08;
  font-weight: 500;
}

.product-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.58;
}

.product-card__meta {
  color: var(--ink-muted);
  font-family: var(--font-code);
  font-size: 12px;
  font-weight: 700;
}

.section-title {
  max-width: 920px;
  margin: 0;
  color: var(--indigo);
  font-size: 40px;
  line-height: 1.15;
  font-weight: 500;
}

.home-principles {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.home-principle {
  min-height: 250px;
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7) inset;
}

.home-principle span {
  width: max-content;
  padding: 4px 7px;
  border: 1px solid rgba(34, 174, 254, 0.24);
  border-radius: 999px;
  background: #eef8ff;
  color: var(--blue);
  font-family: var(--font-code);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.home-principle h3 {
  margin: 0;
  color: var(--indigo);
  font-size: 28px;
  line-height: 1.08;
  font-weight: 500;
}

.home-principle p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.64;
}

.build-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.build-flow article {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 0 4px;
}

.build-flow article::before {
  content: "";
  position: relative;
  z-index: 1;
  width: 11px;
  height: 11px;
  margin: 23px 0 0;
  border: 3px solid var(--white);
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 0 0 1px rgba(71, 134, 225, 0.28), 0 10px 20px rgba(71, 134, 225, 0.20);
}

.build-flow article::after {
  content: "";
  position: absolute;
  top: 31px;
  left: 17px;
  width: calc(100% + 12px);
  height: 1px;
  background: linear-gradient(90deg, rgba(71, 134, 225, 0.42), rgba(31, 175, 253, 0.58));
}

.build-flow article:last-child::after {
  display: none;
}

.build-flow span {
  color: var(--indigo);
  font-family: var(--font-code);
  font-size: 14px;
  font-weight: 700;
}

.build-flow p {
  max-width: 190px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.56;
}

.home-section-head {
  display: grid;
  gap: 0;
}

.home-section-copy {
  max-width: none;
}

.section-kicker-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 0 16px;
}

.section-kicker-row .page-kicker {
  margin: 0;
}

.action-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: max-content;
  margin-left: auto;
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: color 160ms ease, transform 160ms ease;
}

.action-link::before {
  content: "";
  position: absolute;
  left: 0;
  right: 22px;
  bottom: -3px;
  height: 2px;
  border-radius: 999px;
  background: rgba(34, 174, 254, 0.34);
  transition: background 160ms ease, right 160ms ease;
}

.action-link::after {
  content: "->";
  margin-left: 8px;
  font-family: var(--font-code);
  font-size: 13px;
}

.action-link:hover {
  color: var(--violet);
  transform: translateX(2px);
}

.action-link:hover::before {
  right: 18px;
  background: rgba(124, 92, 255, 0.42);
}

.preview-list,
.event-list {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(250px, 1fr);
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline proximity;
  gap: 12px;
}

.preview-list article,
.event-list article {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  align-items: start;
  padding: 18px;
  scroll-snap-align: start;
}

.preview-list article::before,
.event-list article::before {
  content: "";
  position: absolute;
  inset: 12px auto 12px 0;
  width: 3px;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(180deg, var(--cyan), var(--blue));
}

.preview-list time,
.event-list time,
.event-list .timeline__date {
  color: var(--ink-muted);
  font-size: 12px;
  font-weight: 700;
}

.preview-list h3,
.event-list h3,
.event-list .timeline__title {
  margin: 0 0 5px;
  color: var(--indigo);
  font-family: var(--font-code);
  font-size: 15px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: 0;
}

.preview-list p,
.event-list p {
  margin: 0;
  color: var(--ink-soft);
  font-family: var(--font-code);
  font-size: 14px;
  line-height: 1.5;
}

.seo-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1fr);
  gap: 54px;
  align-items: start;
}

.seo-panel h2 {
  margin: 0;
  color: var(--indigo);
  font-size: 40px;
  line-height: 1.15;
  font-weight: 500;
}

.lab-panel {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.lab-panel__header {
  min-height: 46px;
  border-bottom: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 14px;
  color: var(--ink-muted);
  font-size: 12px;
  font-weight: 650;
}

.lab-panel__body {
  padding: 18px;
}

.split > .text-page > :first-child {
  margin-top: 0;
}

.changelog-list p,
.changelog-list strong {
  font-family: var(--font-code);
}

.changelog-list p {
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.46;
}

.changelog-list strong {
  display: block;
  color: var(--indigo);
}

.changelog-list__date {
  display: block;
  margin-bottom: 4px;
  color: var(--ink-muted);
  font-family: var(--font-code);
  font-size: 12px;
  font-weight: 700;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 8px;
}

.signal-cell {
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--grey);
}

.signal-cell.is-active {
  border-color: rgba(34, 174, 254, 0.34);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 8px 22px rgba(34, 174, 254, 0.18);
}

.not-found {
  position: relative;
  overflow: hidden;
}

.not-found__inner {
  display: flex;
  align-items: center;
  min-height: calc(100vh - 75px);
  padding-top: 48px;
  padding-bottom: 54px;
}

.not-found__copy {
  position: relative;
  z-index: 1;
}

.not-found__code {
  margin: 0 0 18px;
  width: max-content;
  color: transparent;
  background: linear-gradient(135deg, var(--blue), var(--cyan) 48%, var(--violet));
  background-clip: text;
  -webkit-background-clip: text;
  font-family: var(--font-code);
  font-size: clamp(78px, 12vw, 154px);
  font-weight: 700;
  line-height: 0.82;
  letter-spacing: 0;
}

.not-found .page-title {
  max-width: 760px;
}

.button-row,
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.button-row {
  margin-top: 24px;
}

.filter-row {
  margin-top: 30px;
}

.button,
.filter {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.button--primary,
.filter.is-active {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(71, 134, 225, 0.22);
}

.filter:hover {
  border-color: rgba(71, 134, 225, 0.42);
  background: #eef6ff;
  color: var(--blue);
  box-shadow: 0 10px 24px rgba(71, 134, 225, 0.12);
}

.filter.is-active:hover {
  border-color: #357af1;
  background: #357af1;
  color: var(--white);
  box-shadow: 0 14px 30px rgba(71, 134, 225, 0.28);
}

.filter.is-disabled,
.filter[aria-disabled="true"],
.segmented-control > a[aria-disabled="true"] {
  pointer-events: none;
  cursor: not-allowed;
  opacity: 0.42;
  box-shadow: none;
}

.filter.is-disabled:hover,
.filter[aria-disabled="true"]:hover,
.segmented-control > a[aria-disabled="true"]:hover {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
}

.filter:active {
  transform: translateY(1px);
  box-shadow: none;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 34px;
}

.pagination__button,
.pagination__page {
  min-width: 40px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.pagination a:hover {
  border-color: rgba(71, 134, 225, 0.36);
  background: #eef6ff;
  color: var(--blue);
  box-shadow: 0 10px 24px rgba(71, 134, 225, 0.12);
}

.pagination a:active {
  transform: translateY(1px);
  box-shadow: none;
}

.pagination .is-active {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(71, 134, 225, 0.22);
}

.pagination .is-active:hover {
  border-color: #357af1;
  background: #357af1;
  color: var(--white);
  box-shadow: 0 14px 30px rgba(71, 134, 225, 0.28);
}

.pagination .is-disabled {
  pointer-events: none;
  opacity: 0.46;
}

.button--ghost {
  background: transparent;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.metric {
  min-height: 118px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.metric strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 28px;
  line-height: 1;
  font-weight: 500;
}

.metric span {
  display: block;
  margin-top: 12px;
  color: var(--ink-muted);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.45;
}

.journal-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.64fr);
  align-items: end;
  gap: 56px;
}

.journal-summary {
  display: grid;
  gap: 0;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 251, 255, 0.94)),
    var(--white);
  box-shadow: var(--shadow-soft);
}

.journal-summary div {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  min-height: 54px;
  padding: 10px 0 10px 18px;
  border-bottom: 1px solid var(--line-soft);
}

.journal-summary div:last-child {
  border-bottom: 0;
}

.journal-summary div::before {
  content: "";
  position: absolute;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.journal-summary strong {
  color: var(--indigo);
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
}

.journal-summary span {
  color: var(--ink-muted);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.28;
}

.journal-layout {
  display: block;
}

.segmented-control {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
}

.segmented-control > a,
.segmented-control > span,
.segmented-control > button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.segmented-control > a:hover,
.segmented-control > button:hover {
  border-color: rgba(71, 134, 225, 0.42);
  background: #eef6ff;
  color: var(--blue);
  box-shadow: 0 10px 24px rgba(71, 134, 225, 0.12);
}

.segmented-control > a[aria-current="page"],
.segmented-control > .is-active {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(71, 134, 225, 0.22);
}

.segmented-control > a[aria-current="page"]:hover,
.segmented-control > .is-active:hover {
  border-color: #357af1;
  background: #357af1;
  color: var(--white);
  box-shadow: 0 14px 30px rgba(71, 134, 225, 0.28);
}

.journal-years a,
.journal-years span {
  min-width: 72px;
}

.journal-years span {
  pointer-events: none;
  cursor: not-allowed;
  opacity: 0.42;
}

.journal-feed {
  min-width: 0;
}

.journal-toolbar {
  margin-bottom: 24px;
}

.timeline {
  grid-auto-flow: row;
  grid-auto-columns: auto;
  overflow-x: visible;
  overscroll-behavior-inline: auto;
  scroll-snap-type: none;
}

.timeline__item {
  grid-template-columns: 124px minmax(0, 1fr) auto;
  gap: 18px;
  scroll-snap-align: none;
}

.timeline__item--release {
  border-color: rgba(34, 174, 254, 0.34);
  background:
    linear-gradient(90deg, rgba(34, 174, 254, 0.10), rgba(255, 255, 255, 0.96) 34%),
    var(--white);
  box-shadow: var(--shadow-soft);
}

.timeline__item--release::before {
  background: linear-gradient(180deg, var(--cyan), var(--blue));
}

.timeline__type {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: max-content;
  margin: 0;
  padding: 3px 7px;
  border: 1px solid rgba(71, 134, 225, 0.18);
  border-radius: 999px;
  background: #eef6ff;
  color: var(--blue);
  font-family: var(--font-code);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.timeline__actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  max-width: 100%;
}

.timeline__actions--side {
  justify-self: start;
}

.timeline__item--release .timeline__type {
  border-color: rgba(34, 174, 254, 0.28);
  background: #eaf8ff;
  color: #0d8fca;
}

.timeline__item--release .timeline__type--status {
  border-color: var(--status-color, rgba(34, 174, 254, 0.28));
  background: color-mix(in srgb, var(--status-color, #0d8fca) 12%, white);
  color: var(--status-color, #0d8fca);
}

.timeline__type-marker {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 2px;
  background: currentColor;
}

.timeline__product-link {
  color: var(--blue);
  font-family: var(--font-code);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration-line: underline;
  text-decoration-color: rgba(34, 174, 254, 0.42);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  white-space: nowrap;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

.timeline__product-link:hover {
  color: var(--violet);
  text-decoration-color: rgba(124, 92, 255, 0.5);
}

.text-page {
  max-width: none;
  min-width: 0;
}

.text-page h2 {
  margin: 44px 0 12px;
  color: var(--indigo);
  font-size: 40px;
  line-height: 1.15;
}

.text-page h2:first-child {
  margin-top: 0;
}

.text-page h3 {
  margin: 38px 0 12px;
  color: var(--indigo);
  font-size: 34px;
  line-height: 1.14;
  font-weight: 500;
}

.text-page h4 {
  margin: 30px 0 10px;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.18;
  font-weight: 500;
}

.text-page p,
.text-page li {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.76;
}

.text-page p {
  margin: 0 0 18px;
}

.text-page .page-lede {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.9vw, 22px);
  line-height: 1.56;
  font-weight: 500;
}

.text-page .breadcrumbs {
  margin: 0 0 18px;
}

.text-page .breadcrumbs a {
  color: var(--ink-muted);
  font-weight: 650;
  text-decoration: none;
}

.text-page .breadcrumbs a:hover {
  color: var(--indigo);
}

.text-page a {
  color: var(--blue);
  font-weight: 500;
  text-decoration-line: underline;
  text-decoration-color: rgba(34, 174, 254, 0.42);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

.text-page a:hover {
  color: var(--violet);
  text-decoration-color: rgba(124, 92, 255, 0.46);
}

.text-page strong,
.text-page b {
  color: var(--indigo);
  font-weight: 700;
}

.text-page em,
.text-page i {
  color: var(--ink);
  font-style: italic;
}

.text-page ul,
.text-page ol {
  margin: 0 0 22px;
  padding-left: 20px;
  color: var(--ink-soft);
}

.text-page li > ul,
.text-page li > ol {
  margin: 8px 0 0;
  padding-left: 20px;
}

.text-page ul {
  list-style: none;
}

.text-page ul li {
  position: relative;
}

.text-page ul li::before {
  content: "";
  position: absolute;
  top: calc(0.88em - 3.5px);
  left: -18px;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.text-page ul ul li::before {
  top: calc(0.88em - 3px);
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.text-page ol {
  counter-reset: ordered-list;
  list-style: none;
}

.text-page ol li {
  position: relative;
  counter-increment: ordered-list;
}

.text-page ol li::before {
  content: counter(ordered-list) ".";
  position: absolute;
  top: 0.34em;
  left: -22px;
  color: var(--blue);
  font-weight: 700;
  line-height: 1;
}

.text-page ol ol {
  counter-reset: nested-list;
}

.text-page ol ol li {
  counter-increment: nested-list;
}

.text-page ol ol li::before {
  content: counter(ordered-list) "." counter(nested-list);
  top: 0.42em;
  left: -30px;
  color: var(--blue);
  font-size: 13px;
}

.text-page li + li {
  margin-top: 8px;
}

.text-page code {
  padding: 2px 6px;
  border: 1px solid rgba(71, 134, 225, 0.18);
  border-radius: 6px;
  background: #eef6ff;
  color: var(--indigo);
  font-family: var(--font-code);
  font-size: 0.92em;
}

.text-page pre {
  margin: 24px 0;
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid rgba(71, 134, 225, 0.22);
  border-radius: var(--radius);
  background: #08104a;
  box-shadow: var(--shadow-soft);
}

.text-page pre code {
  display: block;
  min-width: 100%;
  padding: 18px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #eaf8ff;
  font-size: 13px;
  line-height: 1.68;
}

.text-page blockquote {
  margin: 28px 0;
  padding: 22px 24px;
  border-left: 4px solid var(--cyan);
  border-radius: 0 var(--radius) var(--radius) 0;
  background:
    linear-gradient(90deg, rgba(34, 174, 254, 0.10), rgba(255, 255, 255, 0.92)),
    var(--white);
  color: var(--indigo);
}

.text-page blockquote p {
  margin: 0;
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.76;
  font-weight: 500;
}

.text-page blockquote br,
.text-page .callout br {
  display: block;
  content: "";
  margin-top: 0.42em;
}

.callout {
  margin: 28px 0;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(124, 92, 255, 0.22);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 0% 0%, rgba(34, 174, 254, 0.14), transparent 14rem),
    linear-gradient(180deg, #ffffff, #f8fbff);
  box-shadow: var(--shadow-soft);
}

.text-page .callout:not(:has(.callout__icon)) {
  display: block;
}

.callout__icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--blue), var(--violet));
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 500;
}

.callout__title {
  margin: 0 0 6px;
  color: var(--indigo);
  font-family: var(--font-heading);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 500;
}

.callout p {
  margin: 0;
}

.text-page .callout:not(:has(.callout__icon)) p {
  margin: 0 0 10px;
}

.text-page .callout:not(:has(.callout__icon)) p:last-child {
  margin-bottom: 0;
}

.table-wrap {
  margin: 28px 0;
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.text-page table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-size: 14px;
}

.text-page th,
.text-page td {
  padding: 14px 16px;
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  text-align: left;
  vertical-align: top;
}

.text-page th:last-child,
.text-page td:last-child {
  border-right: 0;
}

.text-page tbody tr {
  transition: background 160ms ease;
}

.text-page tbody tr:hover {
  background: #f8fbff;
}

.text-page th {
  background: linear-gradient(180deg, rgba(71, 134, 225, 0.16), rgba(34, 174, 254, 0.10));
  color: var(--indigo);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.text-page td {
  color: var(--ink-soft);
  line-height: 1.55;
}

.text-page tr:last-child td {
  border-bottom: 0;
}

.swatch-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.swatch {
  display: grid;
  gap: 10px;
  min-height: 148px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.swatch__chip {
  border-radius: 6px;
  min-height: 70px;
  border: 1px solid rgba(6, 12, 78, 0.08);
}

.swatch strong {
  font-size: 12px;
}

.swatch span {
  color: var(--ink-muted);
  font-size: 11px;
  font-weight: 650;
}

.footer {
  background: var(--indigo);
  color: rgba(255, 255, 255, 0.72);
}

.footer__inner {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 50px 0;
  display: grid;
  grid-template-columns: minmax(240px, 300px) repeat(2, minmax(104px, 1fr)) minmax(250px, auto);
  gap: clamp(32px, 4vw, 56px);
  align-items: start;
}

.footer__brand,
.footer__links {
  position: relative;
  align-self: stretch;
}

.footer__brand::after,
.footer__links::after {
  content: "";
  position: absolute;
  top: 0;
  right: -28px;
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.12);
}

.footer__links::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(50% - 14px);
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.10);
}

.footer img {
  width: 240px;
}

.footer p,
.footer a {
  max-width: 480px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.65;
}

.footer__slogan {
  margin-top: 4px !important;
  color: var(--white) !important;
  font-family: var(--font-heading);
  font-size: 15px !important;
  font-weight: 400;
  line-height: 1.2 !important;
  white-space: nowrap;
}

.footer__copy {
  margin-top: 14px !important;
  color: var(--white) !important;
  font-size: 15px !important;
  line-height: 1.2 !important;
}

.footer__credit {
  margin-top: 18px !important;
}

.footer__copy a,
.footer__credit a {
  color: var(--white);
  transition: color 160ms ease;
}

.footer__copy a:hover,
.footer__credit a:hover {
  color: var(--cyan);
}

.footer__links {
  grid-column: span 2;
  align-self: stretch;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  gap: 8px 28px;
}

.footer__links a,
.footer__cookies {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: min(100%, 220px);
  padding: 0 9px;
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.1;
  white-space: normal;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.footer__links a:hover,
.footer__cookies:hover {
  background: rgba(255, 255, 255, 0.09);
  color: var(--white);
}

.footer__links a:active,
.footer__cookies:active {
  transform: translateY(1px);
}

.footer__contacts {
  display: grid;
  grid-template-columns: 24px minmax(0, auto);
  gap: 4px 9px;
  justify-items: start;
  align-items: start;
}

.footer__email {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 24px minmax(0, auto);
  align-items: center;
  gap: 9px;
  color: var(--white);
  font-size: 15px !important;
  font-weight: 600;
  transition: color 160ms ease;
}

.footer__email:hover {
  color: var(--cyan);
}

.footer__email-icon {
  width: 22px;
  height: 22px;
  display: inline-block;
  align-self: center;
  background: url("assets/footer-email-icon.png") center / contain no-repeat;
}

.footer__contacts > p {
  grid-column: 2;
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  line-height: 1.35;
}

.footer .footer__cookies {
  grid-column: 2;
  min-height: 30px;
  padding: 0 8px;
  margin-left: -8px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
}

.footer .footer__cookies:hover {
  background: rgba(255, 255, 255, 0.07);
  color: var(--cyan);
}

.footer__credit {
  grid-column: 2;
  margin-top: 12px !important;
  color: rgba(255, 255, 255, 0.48) !important;
  font-size: 11px !important;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  box-sizing: border-box;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  padding: 24px;
  overflow: hidden;
  background: rgba(6, 12, 78, 0.42);
  backdrop-filter: blur(14px);
}

.modal[hidden] {
  display: none;
}

.modal__dialog {
  position: relative;
  width: min(100%, 480px);
  box-sizing: border-box;
  max-width: calc(100vw - 48px);
  max-height: min(760px, calc(100vh - 48px));
  overflow-y: auto;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 28px 90px rgba(6, 12, 78, 0.24);
}

.modal__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.modal__top .page-kicker {
  margin: 0;
}

.modal__title {
  margin: 0 42px 18px 0;
  color: var(--indigo);
  font-family: var(--font-heading);
  font-size: 28px;
  line-height: 1.1;
  font-weight: 500;
}

.modal__close {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.modal__close:hover {
  border-color: rgba(71, 134, 225, 0.38);
  background: #eef6ff;
  color: var(--blue);
  box-shadow: 0 10px 24px rgba(71, 134, 225, 0.16);
}

.modal__close:active {
  transform: translateY(1px);
  box-shadow: none;
}

.contact-form {
  display: grid;
  gap: 10px;
}

.contact-form label {
  display: grid;
  gap: 0;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 500;
}

.contact-form label b {
  color: #d93025;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-blue);
  color: var(--ink);
  padding: 11px 12px;
  font-weight: 500;
  outline: none;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(75, 84, 112, 0.72);
}

.contact-form input:hover,
.contact-form textarea:hover {
  border-color: rgba(71, 134, 225, 0.34);
  background: var(--white);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(71, 134, 225, 0.14);
}

.contact-form input.is-invalid,
.contact-form textarea.is-invalid {
  border-color: #d93025;
  background: #fff8f8;
  box-shadow: 0 0 0 3px rgba(217, 48, 37, 0.10);
}

.contact-form__footer {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 4px;
}

.consent {
  flex: 1 1 auto;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 10px !important;
  color: var(--ink-soft);
  font-size: 12px !important;
  line-height: 1.5;
  font-weight: 500 !important;
}

.consent input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--blue);
}

.consent a {
  color: var(--blue);
  text-decoration-line: underline;
  text-decoration-color: rgba(34, 174, 254, 0.42);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

.consent a:hover {
  color: var(--violet);
  text-decoration-color: rgba(124, 92, 255, 0.50);
}

.contact-form [data-contact-submit] {
  flex: 0 0 auto;
  width: max-content;
  min-width: 150px;
}

.cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  width: min(100% - 40px, 560px);
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(223, 229, 239, 0.92);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 70px rgba(6, 12, 78, 0.16);
  backdrop-filter: blur(18px);
}

.cookie-banner[hidden],
.cookie-modal[hidden] {
  display: none;
}

.cookie-banner__title {
  margin: 0 0 7px;
  color: var(--indigo);
  font-family: var(--font-heading);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 500;
}

.cookie-banner__text {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.58;
}

.cookie-banner__text a {
  color: var(--blue);
  font-weight: 700;
  text-decoration-line: underline;
  text-decoration-color: rgba(34, 174, 254, 0.42);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

.cookie-banner__text a:hover {
  color: var(--violet);
  text-decoration-color: rgba(124, 92, 255, 0.50);
}

.cookie-banner__actions,
.cookie-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cookie-options {
  display: grid;
  gap: 14px;
}

.cookie-option {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-blue);
}

.cookie-option input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--blue);
}

.cookie-option input:disabled {
  cursor: not-allowed;
}

.cookie-option strong {
  display: block;
  margin-bottom: 8px;
  color: var(--indigo);
  font-size: 15px;
  line-height: 1.25;
}

.cookie-option em {
  display: block;
  color: var(--ink-soft);
  font-size: 13px;
  font-style: normal;
  line-height: 1.62;
}

.cookie-modal__dialog {
  width: min(100%, 760px);
}

.cookie-modal__actions {
  margin-top: 18px;
}

.button {
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.button:not(:disabled):hover {
  border-color: rgba(71, 134, 225, 0.42);
  background: #eef6ff;
  color: var(--blue);
}

.button--primary:not(:disabled):hover {
  border-color: #357af1;
  background: #357af1;
  color: var(--white);
  box-shadow: 0 15px 32px rgba(71, 134, 225, 0.28);
}

.button:not(:disabled):active {
  transform: translateY(1px);
  box-shadow: none;
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
  box-shadow: none;
}

@media (max-width: 900px) {
  .topbar__inner {
    align-items: flex-start;
    min-height: 75px;
    padding: 14px 0;
  }

  .topbar__menu {
    display: none;
  }

  .burger {
    display: grid;
  }
}

@media (max-width: 899px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .hero .section__inner,
  .not-found__inner,
  .product-hero,
  .journal-hero,
  .journal-layout,
  .seo-panel,
  .split,
  .metrics-grid {
    grid-template-columns: 1fr;
  }

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

  .not-found__inner {
    min-height: auto;
  }

  .build-flow {
    grid-template-columns: repeat(5, minmax(150px, 1fr));
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .journal-summary {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    padding: 6px;
  }

  .journal-summary div {
    min-height: 66px;
    grid-template-columns: 1fr;
    gap: 6px;
    align-content: center;
    padding: 8px;
    text-align: center;
    border-bottom: 0;
    border-right: 1px solid var(--line-soft);
  }

  .journal-summary div:last-child {
    border-right: 0;
  }

  .journal-summary div::before {
    display: none;
  }

  .journal-summary strong {
    order: -1;
    font-size: 22px;
  }

  .journal-summary span {
    font-size: 10px;
    line-height: 1.12;
  }

  .journal-years {
    width: max-content;
    max-width: 100%;
    overflow-x: auto;
  }

  .journal-years a,
  .journal-years span {
    flex: 0 0 auto;
  }

  .hero .section__inner {
    position: relative;
    min-height: auto;
    padding-top: 52px;
    overflow: hidden;
  }

  .hero__visual {
    position: absolute;
    inset: 0 0 0 auto;
    z-index: 0;
    width: 66%;
    min-height: 0;
    overflow: hidden;
    pointer-events: none;
  }

  .hero__emblem {
    inset: 50% 0 auto auto;
    width: min(100%, 560px);
    opacity: 0.28;
    filter: blur(12px) saturate(1.08);
    transform: translateY(-50%);
  }

  .hero__orbit {
    display: none;
  }

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

  .footer__brand::after,
  .footer__links::before,
  .footer__links::after {
    display: none;
  }
}

@media (max-width: 899px) {
  .footer__inner {
    grid-template-columns: minmax(240px, 300px) repeat(2, minmax(120px, 1fr));
    gap: 42px 48px;
  }

  .footer__contacts {
    grid-column: 1 / -1;
  }

  .footer__links::after {
    display: none;
  }
}

@media (max-width: 720px) {
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer__links,
  .footer__contacts {
    grid-column: auto;
  }

  .footer__contacts {
    grid-template-columns: 1fr;
  }

  .footer__email,
  .footer__contacts > p,
  .footer .footer__cookies,
  .footer__credit {
    grid-column: 1;
  }
}

@media (max-width: 640px) {
  .brand img {
    width: 154px;
  }

  .hero .section__inner {
    position: relative;
    gap: 22px;
    padding-top: 26px;
    padding-bottom: 18px;
  }

  .hero .page-title {
    font-size: clamp(36px, 10vw, 43px);
  }

  .hero__visual {
    inset: 0 0 0 auto;
    width: 68%;
    height: 100%;
  }

  .hero__emblem {
    inset: 50% 0 auto auto;
    width: min(100%, 440px);
    opacity: 0.32;
    filter: blur(12px) saturate(1.08);
    transform: translateY(-50%);
  }

  .hero .button-row {
    width: 100%;
    gap: 7px;
  }

  .hero .button {
    min-height: 38px;
    flex: 1 1 0;
    padding: 0 8px;
    font-size: clamp(11px, 3.2vw, 13px);
  }

  .section__inner {
    padding: 52px 0;
  }

  .not-found__inner {
    gap: 30px;
    padding-top: 34px;
    padding-bottom: 42px;
  }

  .not-found__code {
    margin-bottom: 14px;
    font-size: clamp(74px, 23vw, 112px);
  }

  .not-found .button-row {
    width: 100%;
  }

  .not-found .button {
    flex: 1 1 100%;
  }

  .page-title {
    font-size: clamp(38px, 12vw, 54px);
  }

  .timeline__item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .timeline__date {
    grid-column: auto;
  }

  .timeline__actions--side {
    display: inline-flex;
    grid-column: auto;
    margin-top: 4px;
  }

  .journal-toolbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .home-principles,
  .preview-list {
    display: grid;
    grid-auto-flow: column;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline proximity;
  }

  .home-principles {
    grid-template-columns: none;
    grid-auto-columns: minmax(218px, 74vw);
  }

  .home-principle {
    min-height: auto;
    gap: 12px;
    padding: 16px;
    scroll-snap-align: start;
  }

  .home-principle h3 {
    font-size: 24px;
  }

  .preview-list {
    grid-template-columns: none;
    grid-auto-columns: minmax(250px, 78vw);
  }

  .preview-list article,
  .preview-list article:nth-child(2) {
    min-height: auto;
    scroll-snap-align: start;
  }

  .home-section-head {
    display: grid;
    align-items: start;
    gap: 16px;
  }

  .swatch-grid {
    grid-template-columns: 1fr;
  }

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

  .footer__inner {
    gap: 34px;
  }

  .footer__links {
    grid-column: auto;
  }

  .footer__links a,
  .footer__cookies {
    font-size: 15px;
  }

  .cookie-banner {
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
    padding: 16px;
  }

  .cookie-banner__actions,
  .cookie-modal__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .contact-form__footer {
    display: grid;
    gap: 10px;
  }

  .contact-form__footer .consent {
    order: -1;
  }

  .cookie-banner__actions .button,
  .cookie-modal__actions .button,
  .contact-form [data-contact-submit] {
    width: 100%;
  }

  .cookie-option {
    padding: 14px;
  }
}

@media (max-width: 589px) {
  .modal {
    place-items: center;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    padding: max(8px, env(safe-area-inset-top)) max(8px, env(safe-area-inset-right)) max(8px, env(safe-area-inset-bottom)) max(8px, env(safe-area-inset-left));
    overflow-y: hidden;
    overflow-x: hidden;
  }

  .modal__dialog {
    width: min(100%, calc(100vw - 16px));
    max-width: none;
    max-height: calc(100vh - 16px);
    max-height: calc(100dvh - 16px);
    min-width: 0;
    padding: 16px;
    margin: auto;
    overflow-x: hidden;
  }

  .modal__title {
    margin-right: 0;
    font-size: 24px;
  }

  .contact-form,
  .contact-form label,
  .contact-form input,
  .contact-form textarea {
    min-width: 0;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }
}
