@font-face {
  font-family: "Google Sans Flex";
  src: url("./public/assets/google-sans-flex.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 1000;
  font-display: swap;
}

@font-face {
  font-family: "Material Symbols Rounded";
  src: url("./public/material-symbols/material-symbols-rounded.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: block;
}

i[class^="ri-"]:not(.ri-telegram-fill):not(.ri-google-line)::before,
i[class*=" ri-"]:not(.ri-telegram-fill):not(.ri-google-line)::before {
  width: 1em;
  overflow: hidden;
  font-family: "Material Symbols Rounded" !important;
  font-style: normal;
  font-weight: 400;
  font-feature-settings: "liga";
  letter-spacing: normal;
  text-rendering: optimizeLegibility;
  text-transform: none;
  white-space: nowrap;
  content: var(--ms-icon);
}

.ri-add-line { --ms-icon: "add"; }
.ri-alert-line, .ri-error-warning-line { --ms-icon: "warning"; }
.ri-apps-2-line { --ms-icon: "apps"; }
.ri-arrow-down-s-line { --ms-icon: "keyboard_arrow_down"; }
.ri-arrow-left-line { --ms-icon: "arrow_back"; }
.ri-arrow-right-line { --ms-icon: "arrow_forward"; }
.ri-arrow-right-up-line, .ri-external-link-line { --ms-icon: "north_east"; }
.ri-award-line { --ms-icon: "workspace_premium"; }
.ri-book-open-line { --ms-icon: "menu_book"; }
.ri-check-line { --ms-icon: "check"; }
.ri-checkbox-blank-circle-fill { --ms-icon: "radio_button_checked"; }
.ri-checkbox-blank-circle-line { --ms-icon: "radio_button_unchecked"; }
.ri-close-line { --ms-icon: "close"; }
.ri-cloud-line { --ms-icon: "cloud"; }
.ri-contrast-2-line { --ms-icon: "contrast"; }
.ri-download-2-line { --ms-icon: "download"; }
.ri-eye-off-line { --ms-icon: "visibility_off"; }
.ri-filter-3-line { --ms-icon: "filter_alt"; }
.ri-global-line { --ms-icon: "language"; }
.ri-history-line { --ms-icon: "history"; }
.ri-home-line { --ms-icon: "home"; }
.ri-group-line { --ms-icon: "group"; }
.ri-information-line { --ms-icon: "info"; }
.ri-lightbulb-line { --ms-icon: "lightbulb"; }
.ri-loader-4-line { --ms-icon: "progress_activity"; }
.ri-loop-left-line { --ms-icon: "autorenew"; }
.ri-map-pin-2-line { --ms-icon: "location_on"; }
.ri-menu-line { --ms-icon: "menu"; }
.ri-moon-line { --ms-icon: "dark_mode"; }
.ri-palette-line { --ms-icon: "palette"; }
.ri-play-circle-line { --ms-icon: "play_circle"; }
.ri-refresh-line { --ms-icon: "refresh"; }
.ri-search-line { --ms-icon: "search"; }
.ri-settings-3-line { --ms-icon: "settings"; }
.ri-shield-check-line { --ms-icon: "verified_user"; }
.ri-sun-line { --ms-icon: "light_mode"; }
.ri-translate-2 { --ms-icon: "translate"; }

:root {
  color-scheme: dark;
  --bg: #121112;
  --surface: #1c1b1e;
  --surface-raised: #212023;
  --control: #322f37;
  --control-soft: rgba(255, 255, 255, 0.06);
  --outline: #323033;
  --primary: #d0bcff;
  --primary-ink: #381e72;
  --tertiary: #efb8c7;
  --tertiary-ink: #4a2532;
  --control-active: #49454e;
  --on-control-active: #f5eefa;
  --selected-surface: #332d41;
  --primary-muted: #684fa4;
  --text: #fffbff;
  --text-soft: #cac4cf;
  --text-muted: #afa9b4;
  --text-dim: #948f99;
  --radius-card: 24px;
  --page-pad: 120px;
  --content-width: 1200px;
}

:root[data-theme="light"] {
  color-scheme: light;
  --bg: #f8f7fb;
  --surface: #fffbff;
  --surface-raised: #f2eff4;
  --control: #e7e0eb;
  --control-soft: rgba(56, 30, 114, 0.07);
  --outline: #d6d0d9;
  --primary: #6750a4;
  --primary-ink: #ffffff;
  --tertiary: #ffd8e4;
  --tertiary-ink: #31111d;
  --control-active: #e8def8;
  --on-control-active: #1d192b;
  --selected-surface: #eee7f7;
  --primary-muted: #eaddff;
  --text: #1d1b20;
  --text-soft: #49454f;
  --text-muted: #625b71;
  --text-dim: #79747e;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: "Google Sans Flex", "Noto Sans", system-ui, sans-serif;
  font-variation-settings: "ROND" 0, "GRAD" 0;
  -webkit-font-smoothing: antialiased;
  overscroll-behavior-y: none;
}

html.menu-open,
body.menu-open {
  overflow: hidden;
  overscroll-behavior: none;
}

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

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

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

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

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

.section {
  width: 100%;
  max-width: none;
  margin: 0 auto;
}

.section h2 {
  margin: 0;
  color: var(--text);
  font-size: 48px;
  font-weight: 720;
  letter-spacing: -0.03em;
  line-height: 1.25;
}

.hero {
  position: relative;
  height: 940px;
  max-width: none;
  margin: 0 auto;
  overflow: hidden;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: auto 0 0;
  height: 343px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  z-index: -2;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-glow img {
  position: absolute;
  display: block;
  max-width: none;
}

.hero-glow img:nth-child(1) {
  top: 117px;
  left: -50px;
  width: max(1414px, calc(100% - 26px));
  height: 959px;
}

.hero-glow img:nth-child(2) {
  top: 128px;
  left: -108px;
  width: 703px;
  height: 560px;
}

.hero-glow img:nth-child(3) {
  top: 470px;
  left: -354px;
  width: 718px;
  height: 503px;
}

.hero-glow img:nth-child(4) {
  top: 117px;
  right: -43px;
  width: 576px;
  height: 403px;
}

.topbar {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 74px;
  padding: 0 24px;
  background: linear-gradient(180deg, rgba(18, 17, 18, 0.9) 0%, rgba(18, 17, 18, 0.55) 65%, transparent 100%);
  pointer-events: none;
}

.topbar > * {
  pointer-events: auto;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 22px;
  font-weight: 720;
  white-space: nowrap;
}

.wordmark img {
  display: block;
  width: 24px;
  height: 24px;
}

.desktop-nav {
  position: absolute;
  left: 50%;
  display: flex;
  transform: translateX(-50%);
  gap: 4px;
}

.desktop-nav a {
  display: flex;
  align-items: center;
  height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 560;
  letter-spacing: -0.02em;
  transition: color 160ms ease, background-color 160ms ease;
}

.desktop-nav a:hover {
  background: var(--control-soft);
  color: var(--text);
}

.desktop-nav a.is-active {
  background: rgba(208, 188, 255, 0.12);
  color: var(--primary);
}

.toolbar,
.theme-switch {
  display: flex;
  align-items: center;
}

.toolbar {
  gap: 8px;
}

.theme-switch {
  gap: 2px;
  overflow: hidden;
  border-radius: 24px;
}

.language-pill,
.icon-button {
  height: 36px;
  border: 0;
  background: var(--surface);
}

.language-pill {
  display: flex;
  min-width: 70px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--text-muted);
  font-size: 14px;
  letter-spacing: -0.02em;
  line-height: 1;
  cursor: pointer;
}

.language-pill > i {
  flex: 0 0 auto;
  font-size: 20px;
  line-height: 1;
}

.language-pill .language-chevron {
  margin-left: -4px;
  font-size: 18px;
  transition: transform 180ms ease;
}

.language-pill[aria-expanded="true"] .language-chevron {
  transform: rotate(180deg);
}

.language-pill[aria-expanded="true"],
.language-pill[aria-expanded="true"]:hover {
  background: var(--tertiary);
  color: var(--tertiary-ink);
}

.language-popover {
  position: fixed;
  z-index: 120;
  display: flex;
  width: 128px;
  flex-direction: column;
  gap: 2px;
  padding: 4px;
  border: 1px solid var(--outline);
  border-radius: 14px;
  background: rgba(28, 27, 30, 0.96);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(20px);
  opacity: 0;
  transform: translateY(-6px) scale(0.98);
  transform-origin: top right;
  transition: opacity 160ms ease, transform 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

.language-popover[hidden] {
  display: none;
}

.language-popover.is-open {
  opacity: 1;
  transform: none;
}

.language-popover button {
  display: grid;
  width: 100%;
  height: 32px;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 0;
  padding: 0 10px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--text-soft);
  cursor: pointer;
  text-align: left;
}

.language-popover button > i:first-child {
  display: none;
}

.language-popover button > i:last-child {
  display: none;
}

.language-popover button.is-current {
  background: var(--control);
  color: var(--primary);
}

.language-popover button.is-current > i:last-child {
  opacity: 1;
  transform: scale(1);
}

@media (hover: hover) and (pointer: fine) {
  .language-popover button:not(.is-current):hover {
    background: #3c3942;
    color: var(--text);
  }
}

@media (hover: hover) and (pointer: fine) {
  .language-pill:hover {
    background: var(--control-soft);
    color: var(--text);
  }
}

.icon-button {
  cursor: pointer;
}

.icon-button > i {
  font-size: 24px;
  line-height: 1;
}

.icon-button {
  display: grid;
  place-items: center;
  width: 36px;
  padding: 6px;
  border-radius: 4px;
}

.icon-button--active {
  border-radius: 70px;
  background: var(--primary);
  color: var(--primary-ink);
}

.menu-button {
  border-radius: 50px;
}

html.menu-open .menu-button,
body.menu-open .menu-button {
  background: var(--tertiary);
  color: var(--tertiary-ink);
}

.mobile-menu {
  position: fixed;
  z-index: 120;
  top: 60px;
  right: 16px;
  width: min(176px, calc(100vw - 32px));
  padding: 6px;
  border: 1px solid var(--outline);
  border-radius: 20px;
  background: rgba(28, 27, 30, 0.96);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(24px);
  opacity: 0;
  transform: translateY(-8px) scale(0.98);
  transform-origin: top right;
  transition: opacity 180ms ease, transform 180ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.mobile-menu.is-open {
  opacity: 1;
  transform: none;
}

.mobile-menu a {
  display: flex;
  height: 36px;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  border-radius: 18px;
  background: transparent;
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 580;
}

.mobile-menu a.is-active {
  background: var(--control);
  color: var(--text);
}

.mobile-menu a.is-active > i {
  color: var(--primary);
}

.mobile-menu a > i {
  width: 18px;
  color: var(--text-muted);
  font-size: 18px;
}

.mobile-menu a:hover {
  background: var(--control-soft);
  color: var(--text);
}

.mobile-menu a:hover > i {
  color: var(--primary);
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  width: min(1200px, calc(100% - 48px));
  transform: translate(-50%, -50%);
  flex-direction: column;
  align-items: center;
  gap: 36px;
  text-align: center;
}

.wordmark--hero {
  display: none;
}

.release-chips,
.feature-chips,
.knowledge-links,
.person-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.chip,
.feature-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  border-radius: 12px;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.chip {
  padding: 0 12px;
  background: var(--control-soft);
  color: var(--text-soft);
}

.chip--primary {
  background: var(--primary);
  color: var(--primary-ink);
}

.chip--tertiary {
  background: var(--tertiary);
  color: var(--tertiary-ink);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.hero h1 {
  margin: 0;
  color: var(--text);
  font-size: 96px;
  font-weight: 760;
  letter-spacing: -0.035em;
  line-height: 1;
}

.hero-comma {
  display: inline-block;
  margin-left: 0.045em;
  letter-spacing: 0;
}

.hero-copy p {
  width: min(592px, 100%);
  margin: 0;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.35;
}

.hero-actions {
  display: flex;
  gap: 12px;
}

.button {
  --magnetic-x: 0px;
  --magnetic-y: 0px;
  --magnetic-scale: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 56px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 570;
  letter-spacing: -0.02em;
  transform: translate3d(var(--magnetic-x), var(--magnetic-y), 0) scale(var(--magnetic-scale));
  transform-origin: center;
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1), filter 160ms ease, background-color 160ms ease;
  will-change: transform;
}

.button:hover,
.mini-button:hover {
  filter: brightness(1.08);
}

.button:active,
.mini-button:active {
  --magnetic-scale: 0.9;
}

.hero-actions .button {
  width: 212px;
  min-height: 60px;
  font-size: 16px;
}

.button--muted {
  background: var(--control);
  color: var(--text);
}

.hero-actions .button--muted {
  background: var(--control-soft);
}

.button--primary {
  background: var(--primary);
  color: var(--primary-ink);
}

.features {
  display: grid;
  min-height: 588px;
  grid-template-columns: 470px minmax(0, 694px);
  align-items: start;
  gap: 36px;
  padding: 120px max(120px, calc((100% - 1200px) / 2));
}

.features-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.feature-chips {
  align-content: flex-start;
  width: 100%;
}

.feature-chip {
  position: relative;
  overflow: hidden;
  gap: 8px;
  padding-inline: 12px;
  border: 0;
  background: var(--surface);
  color: var(--text-muted);
  cursor: pointer;
  font-weight: 560;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 180ms ease;
}

.feature-chip--active {
  background: var(--control-active);
  color: var(--on-control-active);
}

.feature-chips .feature-chip--active {
  animation: feature-chip-select 320ms cubic-bezier(0.2, 0.9, 0.25, 1);
}

.feature-chip:active {
  transform: scale(0.94);
}

.chip-check {
  display: inline-block;
  width: 0;
  overflow: hidden;
  opacity: 0;
  transform: rotate(-24deg) scale(0.55);
  transform-origin: center;
  transition: width 180ms ease, opacity 160ms ease, transform 260ms cubic-bezier(0.2, 1.4, 0.4, 1);
}

.feature-chip--active .chip-check {
  width: 14px;
  opacity: 1;
  transform: rotate(0) scale(1);
}

.feature-chip--outline {
  border: 1px solid var(--outline);
  background: transparent;
}

.features-all,
.versions-all {
  min-height: 56px;
}

.feature-showcase {
  position: relative;
  display: block;
  height: 348px;
  overflow: hidden;
  padding: 20px;
  border-radius: var(--radius-card);
  background: var(--surface);
}

.feature-copy {
  position: relative;
  z-index: 2;
  display: flex;
  width: 239px;
  height: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  transition: opacity 120ms ease, transform 180ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.feature-copy.is-switching {
  animation: feature-copy-in 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-visual {
  position: absolute;
  top: 0;
  right: 0;
  width: 430px;
  height: 348px;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  transition: opacity 180ms ease, transform 280ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 180ms ease;
}

.feature-visual.is-switching {
  animation: feature-visual-in 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes feature-chip-select {
  0% { transform: scale(0.94); }
  62% { transform: scale(1.035); }
  100% { transform: scale(1); }
}

@keyframes feature-copy-in {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: none; }
}

@keyframes feature-visual-in {
  from { opacity: 0; transform: translateX(12px) scale(0.985); filter: blur(1.5px); }
  to { opacity: 1; transform: none; filter: blur(0); }
}

.round-icon {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--control);
  color: var(--text-soft);
  font-size: 22px;
}

.round-icon i {
  display: grid;
  width: 1em;
  height: 1em;
  place-items: center;
  line-height: 1;
}

.round-icon i::before {
  display: block;
  line-height: 1;
}

.feature-text {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: flex-end;
  gap: 4px;
}

.feature-text h3 {
  margin: 0;
  color: var(--text);
  font-size: 24px;
  font-weight: 580;
  letter-spacing: -0.02em;
}

.feature-text p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 23px;
}

.mini-button {
  --magnetic-x: 0px;
  --magnetic-y: 0px;
  --magnetic-scale: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 32px;
  padding: 0 12px 0 16px;
  border-radius: 90px;
  background: var(--primary);
  color: var(--primary-ink);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.02em;
  white-space: nowrap;
  transform: translate3d(var(--magnetic-x), var(--magnetic-y), 0) scale(var(--magnetic-scale));
  transform-origin: center;
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1), filter 160ms ease, opacity 420ms ease;
  will-change: transform;
}

.magnetic-button.is-magnetic-active {
  transition-duration: 90ms, 160ms, 160ms;
  transition-timing-function: linear, ease, ease;
  filter: brightness(1.1) drop-shadow(0 10px 18px rgba(0, 0, 0, 0.16));
}

.magnetic-button.is-pressed {
  --magnetic-scale: 0.9;
  transition-duration: 80ms, 80ms, 80ms;
}

@media (prefers-reduced-motion: reduce) {
  .magnetic-button {
    --magnetic-x: 0px !important;
    --magnetic-y: 0px !important;
    transition-duration: 0ms;
  }
}

.phone {
  position: relative;
  width: 363px;
  height: 767px;
  flex: 0 0 auto;
  overflow: hidden;
  border: 9px solid #151417;
  border-radius: 56px;
  background: #f5f5f5;
  color: #080808;
  box-shadow: 0 0 0 2px #bbb8bd, inset 0 0 0 2px #101010, 0 26px 70px rgba(0, 0, 0, 0.36);
}

.phone::after {
  content: "";
  position: absolute;
  top: 168px;
  right: -12px;
  width: 4px;
  height: 80px;
  border-radius: 4px;
  background: #8c898f;
}

.phone-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 48px;
  padding: 0 23px;
  font-size: 11px;
}

.phone-status span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.phone-status i {
  font-size: 13px;
}

.phone-camera {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 50%;
  width: 20px;
  height: 20px;
  transform: translateX(-50%);
  border: 6px solid #050505;
  border-radius: 50%;
  background: #17133b;
}

.phone-content {
  padding: 8px 12px 24px;
}

.phone-back {
  display: block;
  margin-bottom: 28px;
  font-size: 28px;
  line-height: 1;
}

.phone h4 {
  margin: 0 0 14px;
  font-size: 24px;
  line-height: 1;
}

.phone-search {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 36px;
  padding: 0 12px;
  border-radius: 8px;
  background: #e7e7e7;
  color: #808080;
  font-size: 13px;
}

.phone small {
  display: block;
  padding: 17px 18px 10px;
  color: #838383;
  font-size: 10px;
  font-weight: 650;
}

.country {
  display: grid;
  height: 48px;
  grid-template-columns: 20px 1fr 20px;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  border-bottom: 1px solid #f0f0f0;
  border-radius: 8px;
  background: #fff;
  font-size: 13px;
}

.country i {
  width: 14px;
  height: 14px;
  border: 2px solid #9b9b9b;
  border-radius: 50%;
}

.country--selected i {
  border: 4px solid #ff375f;
}

.flag {
  width: 18px;
  height: 18px;
  overflow: hidden;
  border-radius: 50%;
  background: linear-gradient(#d12b36 0 66%, #2a953f 66%);
}

.flag--au {
  background: #1a376f;
}

.flag--az {
  background: linear-gradient(#36a2d1 0 33%, #e33d4d 33% 66%, #3c9d4b 66%);
}

.flag--al {
  background: #d93b3b;
}

.features-all-mobile,
.versions-all-mobile {
  display: none;
}

.updates {
  display: grid;
  min-height: 632px;
  grid-template-columns: 345px minmax(0, 819px);
  align-items: stretch;
  gap: 36px;
  padding: 120px max(120px, calc((100% - 1200px) / 2));
}

.updates-side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.version-list {
  --version-index: 0;
  position: relative;
  width: 100%;
  padding: 2px;
  border-radius: 20px;
  background: var(--surface);
}

.version-list::before {
  position: absolute;
  z-index: 0;
  top: 2px;
  right: 2px;
  left: 2px;
  height: 36px;
  border-radius: 18px;
  background: var(--selected-surface);
  content: "";
  transform: translateY(calc(var(--version-index) * 36px));
  transition: transform 320ms cubic-bezier(0.2, 0.85, 0.25, 1);
  pointer-events: none;
}

.version-row {
  position: relative;
  z-index: 1;
  display: grid;
  width: 100%;
  height: 36px;
  grid-template-columns: 20px 32px 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 0 8px;
  border: 0;
  border-radius: 18px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-size: 12px;
  text-align: left;
}

.version-row > i {
  font-size: 14px;
}

.version-row b {
  font-weight: 570;
}

.version-row em,
.version-row time {
  opacity: 0.6;
  font-style: normal;
}

.version-row--active {
  background: transparent;
  color: var(--primary);
}

.update-carousel {
  display: none;
}

.update-card {
  --carousel-x: 0px;
  display: grid;
  height: 392px;
  grid-template-columns: 285px minmax(0, 1fr);
  overflow: hidden;
  isolation: isolate;
  border-radius: var(--radius-card);
  background: var(--surface);
  transform: translate3d(var(--carousel-x), 0, 0);
  transition: opacity 130ms ease, transform 180ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.update-card.is-updating {
  opacity: 0.5;
  transform: translate3d(var(--carousel-x), 5px, 0);
}

.update-card.is-version-leaving .update-summary,
.update-card.is-version-leaving .changes-list {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 150ms ease, transform 170ms cubic-bezier(0.4, 0, 1, 1);
}

@keyframes version-content-enter {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

.update-card.is-version-entering .update-summary,
.update-card.is-version-entering .changes-list {
  animation: version-content-enter 240ms cubic-bezier(0.16, 1, 0.3, 1);
}

.version-carousel-controls {
  display: none;
}

@keyframes version-enter-next {
  from { opacity: 0.55; transform: translate3d(28px, 0, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes version-enter-prev {
  from { opacity: 0.55; transform: translate3d(-28px, 0, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

.update-card.is-carousel-next {
  animation: version-enter-next 280ms cubic-bezier(0.16, 1, 0.3, 1);
}

.update-card.is-carousel-prev {
  animation: version-enter-prev 280ms cubic-bezier(0.16, 1, 0.3, 1);
}

.update-summary {
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
}

.release-number {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: flex-end;
  gap: 14px;
}

.release-number strong {
  color: var(--text);
  font-size: 46px;
  letter-spacing: -0.03em;
  line-height: 1;
}

.release-number span {
  color: var(--text-muted);
  font-size: 14px;
}

.changes-list {
  position: relative;
  display: flex;
  min-width: 0;
  height: 100%;
  flex-direction: column;
  gap: 2px;
  overflow: hidden;
  padding: 20px;
}

.changes-list::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 38px;
  background: linear-gradient(transparent, var(--surface));
  pointer-events: none;
}

.changes-list > div {
  display: flex;
  flex: 0 0 auto;
  align-items: flex-start;
  gap: 12px;
  min-height: 46px;
  padding: 12px;
  border-radius: 4px;
  background: var(--surface-raised);
  color: var(--text-soft);
}

.changes-list > div:first-child {
  border-radius: 16px 16px 4px 4px;
}

.changes-list > div > i {
  flex: 0 0 20px;
  color: var(--primary);
  font-size: 20px;
  line-height: 20px;
}

.changes-list p {
  margin: 0;
  font-size: 15px;
  line-height: 22px;
}

.knowledge {
  display: flex;
  min-height: 509px;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  padding: 120px max(120px, calc((100% - 1200px) / 2));
}

.knowledge-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.knowledge-copy h2 {
  font-size: 54px;
  line-height: 58px;
}

.knowledge-copy > p {
  width: 660px;
  max-width: 100%;
  margin: 0;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.25;
}

.knowledge-search {
  display: flex;
  width: 894px;
  max-width: 100%;
  flex-direction: column;
  gap: 12px;
}

.search-row {
  display: flex;
  gap: 8px;
}

.search-field {
  display: flex;
  min-width: 0;
  height: 56px;
  flex: 1;
  align-items: center;
  gap: 12px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--surface);
}

.search-field > i {
  color: var(--text-dim);
  font-size: 20px;
}

.search-field input {
  min-width: 0;
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font-size: 16px;
}

.search-field input::placeholder {
  color: #79767a;
  opacity: 1;
}

.search-submit {
  min-height: 56px;
}

.open-label-mobile {
  display: none;
}

.knowledge-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 32px;
  padding: 0 12px;
  border-radius: 12px;
  background: var(--surface);
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 560;
  white-space: nowrap;
}

.knowledge-empty {
  display: inline-flex;
  height: 32px;
  align-items: center;
  padding: 0 12px;
  color: var(--text-dim);
  font-size: 12px;
}

.team {
  display: flex;
  min-height: 524px;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  padding: 120px max(120px, calc((100% - 1200px) / 2));
}

.team-grid {
  display: flex;
  width: 100%;
  align-items: stretch;
  gap: 12px;
}

.person-card {
  display: flex;
  min-width: 0;
  min-height: 200px;
  flex: 1 1 0;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  overflow: hidden;
  padding: 16px 20px;
  border-radius: 24px;
  transition: flex-grow 340ms cubic-bezier(0.2, 0, 0, 1), flex-basis 340ms cubic-bezier(0.2, 0, 0, 1), transform 340ms cubic-bezier(0.2, 0, 0, 1), filter 340ms ease, opacity 340ms ease;
  will-change: flex-grow;
}

@media (min-width: 1041px) {
  .team-grid:hover .person-card:not(:hover) {
    flex-grow: 0.95;
    filter: saturate(0.94);
  }

  .team-grid:hover .person-card:hover {
    z-index: 3;
    flex-grow: 1.15;
    filter: saturate(1.05);
  }
}

.team-carousel-controls {
  display: none;
}

.person-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  font-size: 24px;
}

.person-top img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.person-card h3,
.person-card p {
  margin: 0;
}

.person-card h3 {
  font-size: 16px;
  font-weight: 720;
  letter-spacing: -0.03em;
}

.person-card p {
  margin-top: 4px;
  font-size: 14px;
  font-weight: 580;
  opacity: 0.65;
}

.person-tags span {
  display: inline-flex;
  height: 32px;
  align-items: center;
  padding: 0 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}

.person-card--red {
  background: #ffb2b7;
  color: #67001b;
}

.person-card--red .person-tags span {
  background: #ff8792;
  color: #881b2f;
}

.person-card--blue {
  background: #90cdff;
  color: #003450;
}

.person-card--blue .person-tags span {
  background: #5db3f1;
  color: #004b71;
}

.person-card--orange {
  background: #ffb4a2;
  color: #621100;
}

.person-card--orange .person-tags span {
  background: #ff8b6e;
  color: #83260e;
}

.person-card--pink {
  background: #ffb2bf;
  color: #660028;
}

.person-card--pink .person-tags span {
  background: #ff86a0;
  color: #88193d;
}

.download {
  position: relative;
  display: flex;
  min-height: 700px;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  overflow: hidden;
  padding: 136px max(120px, calc((100% - 1200px) / 2)) 104px;
  isolation: isolate;
  background: var(--bg);
}

.download::before,
.download::after {
  position: absolute;
  z-index: -1;
  left: 0;
  width: 100%;
  height: 180px;
  content: "";
  pointer-events: none;
}

.download::before {
  top: 0;
  background: linear-gradient(to bottom, var(--bg), transparent);
}

.download::after {
  bottom: 0;
  background: linear-gradient(to bottom, transparent, var(--bg));
}

.download-glow {
  position: absolute;
  z-index: -2;
  top: 11px;
  left: 50%;
  width: 1862px;
  max-width: none;
  height: 736px;
  transform: translateX(-50%);
  pointer-events: none;
}

.download-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.download-head h2 {
  color: var(--text);
}

.mirrors {
  display: flex;
  width: 600px;
  max-width: 100%;
  flex-direction: column;
  gap: 4px;
  overflow: visible;
  border-radius: 24px;
}

.mirror {
  --magnetic-x: 0px;
  --magnetic-y: 0px;
  --magnetic-scale: 1;
  display: flex;
  height: 84px;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 8px;
  background: var(--control-soft);
  transform: translate3d(var(--magnetic-x), var(--magnetic-y), 0) scale(var(--magnetic-scale));
  transform-origin: center;
  transition: height 240ms cubic-bezier(0.16, 1, 0.3, 1), transform 420ms cubic-bezier(0.16, 1, 0.3, 1), opacity 420ms ease;
  will-change: transform;
}

.mirror:hover {
  height: 94px;
}

.mirror:active {
  --magnetic-scale: 0.9;
}

.mirror > i {
  flex: 0 0 24px;
  font-size: 24px;
  line-height: 1;
  text-align: center;
}

.mirror > .mirror-action {
  font-size: 21px;
}

.mirror > span {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  gap: 2px;
}

.mirror strong {
  font-size: 16px;
  letter-spacing: -0.02em;
}

.mirror small {
  color: var(--text-dim);
  font-size: 14px;
  font-weight: 560;
}

.mirror--primary {
  border-radius: 24px 24px 8px 8px;
  background: var(--primary);
  color: var(--primary-ink);
}

.mirror:last-child {
  border-radius: 8px 8px 24px 24px;
}

.mirror--primary small {
  color: var(--primary-muted);
}

.footer {
  position: relative;
  max-width: none;
  min-height: 318px;
  margin: 0 auto;
  overflow: hidden;
  padding: 52px max(120px, calc((100% - 1200px) / 2)) 36px;
}

:root[data-theme="light"] .hero-glow,
:root[data-theme="light"] .download-glow {
  opacity: 0.42;
}

:root[data-theme="light"] .topbar {
  background: linear-gradient(180deg, rgba(248, 247, 251, 0.9) 0%, rgba(248, 247, 251, 0.55) 65%, transparent 100%);
}

:root[data-theme="light"] .mobile-menu {
  border-color: rgba(29, 27, 32, 0.1);
  background: rgba(255, 251, 255, 0.94);
  box-shadow: 0 22px 70px rgba(29, 27, 32, 0.16);
}

:root[data-theme="light"] .language-popover {
  border-color: rgba(29, 27, 32, 0.1);
  background: rgba(255, 251, 255, 0.96);
  box-shadow: 0 18px 54px rgba(29, 27, 32, 0.14);
}

.footer-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 12px;
  overflow: hidden;
  opacity: 1;
}

.footer-wave::before {
  position: absolute;
  top: 0;
  left: -40px;
  width: calc(100% + 80px);
  height: 10px;
  background: url("./public/assets/footer-wave.svg?v=20260803-16") repeat-x 0 0 / 40px 10px;
  content: "";
  transform: translate3d(0, 0, 0);
}

.footer-content {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.footer-brand {
  display: flex;
  width: 250px;
  flex: 0 0 250px;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-brand p {
  margin: 0;
  color: var(--text-dim);
  font-size: 14px;
  line-height: 22px;
}

.footer-links {
  display: grid;
  flex: 1;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-links h3 {
  margin: 0 0 6px;
  font-size: 22px;
}

.footer-links a {
  color: var(--text-soft);
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--primary);
}

.blueprint-credit {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-top: 28px;
  color: var(--text-dim);
  font-size: 14px;
  line-height: 22px;
}

.blueprint-credit > a {
  display: flex;
  align-items: center;
  gap: 3px;
  color: inherit;
}

.blueprint-mark {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
}

.blueprint-mark img {
  width: 17px;
  height: 17px;
}

.blueprint-credit strong {
  color: var(--text);
  font-size: 20px;
  font-variation-settings: "GRAD" 0, "ROND" 0, "wdth" 110;
  font-weight: 650;
  letter-spacing: -1.2px;
  line-height: 1;
}

:root[data-theme="light"] .blueprint-mark {
  border-radius: 8px;
  background: #1d1b20;
}

.js .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 520ms ease, transform 520ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.js .hero-content.reveal {
  transform: translate(-50%, calc(-50% + 14px));
}

.js .hero-content.reveal.is-visible {
  transform: translate(-50%, -50%);
}

.js .hero-content.reveal > * {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 500ms ease, transform 560ms cubic-bezier(0.2, 0.78, 0.2, 1);
}

.js .hero-content.reveal.is-visible > * {
  opacity: 1;
  transform: none;
}

.js .hero-content.reveal.is-visible > :nth-child(1) { transition-delay: 90ms; }
.js .hero-content.reveal.is-visible > :nth-child(2) { transition-delay: 150ms; }
.js .hero-content.reveal.is-visible > :nth-child(3) { transition-delay: 220ms; }
.js .hero-content.reveal.is-visible > :nth-child(4) { transition-delay: 300ms; }

.js .team-grid.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 420ms ease, transform 460ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.js .team-grid.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.js .changes-list > div {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 420ms ease, transform 460ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.js .update-card.is-visible .changes-list > div {
  opacity: 1;
  transform: none;
}

/* The section reveal is more specific than .update-card alone. Animate only
   the content inside the card on version change so the card frame stays put. */
.js .update-card.is-visible.is-version-leaving .update-summary,
.js .update-card.is-visible.is-version-leaving .changes-list {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 150ms ease, transform 170ms cubic-bezier(0.4, 0, 1, 1);
}

.js .update-card.is-visible.is-version-entering .update-summary,
.js .update-card.is-visible.is-version-entering .changes-list {
  animation: version-content-enter 240ms cubic-bezier(0.16, 1, 0.3, 1);
}

.js .update-card.is-visible .changes-list > div:nth-child(2) { transition-delay: 70ms; }
.js .update-card.is-visible .changes-list > div:nth-child(3) { transition-delay: 140ms; }
.js .update-card.is-visible .changes-list > div:nth-child(4) { transition-delay: 210ms; }
.js .update-card.is-visible .changes-list > div:nth-child(5) { transition-delay: 280ms; }
.js .update-card.is-visible .changes-list > div:nth-child(6) { transition-delay: 350ms; }
.js .update-card.is-visible .changes-list > div:nth-child(7) { transition-delay: 420ms; }

.js .mirrors.reveal .mirror {
  opacity: 0;
  --magnetic-y: 10px;
}

.js .mirrors.reveal.is-visible .mirror {
  opacity: 1;
  --magnetic-y: 0px;
}


.hero-glow img {
  --parallax-x: 0px;
  --parallax-y: 0px;
  will-change: transform, opacity;
}

.hero-glow img:nth-child(1) { animation: hero-orbit-one 18s ease-in-out infinite; }
.hero-glow img:nth-child(2) { animation: hero-orbit-two 14s ease-in-out infinite; }
.hero-glow img:nth-child(3) { animation: hero-orbit-three 20s ease-in-out infinite; }
.hero-glow img:nth-child(4) { animation: hero-orbit-four 16s ease-in-out infinite; }

@keyframes hero-orbit-one {
  0%, 100% { opacity: 0.9; transform: translate3d(var(--parallax-x), var(--parallax-y), 0) scale(1); }
  50% { opacity: 1; transform: translate3d(calc(var(--parallax-x) + 26px), calc(var(--parallax-y) - 16px), 0) scale(1.035); }
}

@keyframes hero-orbit-two {
  0%, 100% { opacity: 0.78; transform: translate3d(var(--parallax-x), var(--parallax-y), 0) scale(1.02); }
  50% { opacity: 1; transform: translate3d(calc(var(--parallax-x) - 20px), calc(var(--parallax-y) + 24px), 0) scale(1.08); }
}

@keyframes hero-orbit-three {
  0%, 100% { opacity: 0.72; transform: translate3d(var(--parallax-x), var(--parallax-y), 0) scale(1); }
  50% { opacity: 0.96; transform: translate3d(calc(var(--parallax-x) + 34px), calc(var(--parallax-y) - 12px), 0) scale(1.06); }
}

@keyframes hero-orbit-four {
  0%, 100% { opacity: 0.68; transform: translate3d(var(--parallax-x), var(--parallax-y), 0) scale(1.04); }
  50% { opacity: 0.94; transform: translate3d(calc(var(--parallax-x) - 30px), calc(var(--parallax-y) + 18px), 0) scale(1.1); }
}

.download-glow {
  animation: download-breathe 9s ease-in-out infinite;
}

@keyframes download-breathe {
  0%, 100% { opacity: 0.88; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.035); }
}

@media (max-width: 1439px) and (min-width: 1041px) {
  :root {
    --page-pad: 64px;
  }

  .features,
  .updates {
    gap: 32px;
    padding: 88px max(64px, calc((100% - 1200px) / 2));
  }

  .features {
    grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.3fr);
  }

  .updates {
    grid-template-columns: 300px minmax(0, 1fr);
  }

  .feature-showcase {
    grid-template-columns: minmax(190px, 1fr) 300px;
    gap: 24px;
    padding-right: 24px;
  }

  .phone {
    width: 300px;
  }

  .knowledge,
  .team,
  .download,
  .footer {
    padding-right: 64px;
    padding-left: 64px;
  }

  .topbar {
    padding-inline: 18px;
  }

  .wordmark--header span {
    display: none;
  }
}

@media (max-width: 1040px) and (min-width: 701px) {
  .features,
  .updates {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 72px 40px;
  }

  .features-intro,
  .updates-side {
    max-width: 720px;
  }

  .feature-showcase {
    width: 100%;
    grid-template-columns: minmax(210px, 1fr) minmax(280px, 330px);
    gap: 28px;
    padding-right: 24px;
  }

  .phone {
    width: min(330px, 45vw);
  }

  .update-card {
    width: 100%;
  }

  .versions-all {
    display: inline-flex;
  }

  .knowledge,
  .team,
  .download,
  .footer {
    padding-right: 40px;
    padding-left: 40px;
  }

  .team-grid {
    flex-wrap: wrap;
  }

  .person-card {
height: 200px;
  }

  .topbar {
    padding-inline: 18px;
  }

  .desktop-nav {
    display: none;
  }

  .wordmark--header span {
    display: inline;
  }
}

@media (max-width: 700px) {
  .desktop-only,
  .desktop-nav,
  .wordmark--header,
  .features-all,
  .version-list,
  .versions-all {
    display: none;
  }

  .section {
    width: 100%;
    min-height: 0;
  }

  .hero {
    width: 100%;
    height: 885px;
    border-radius: 0 0 28px 28px;
  }

  .hero-glow img:nth-child(1) {
    top: 0;
    left: 50%;
    width: 874px;
    height: 881px;
    transform: translateX(-58%);
  }

  .hero-glow img:nth-child(2) {
    top: 10px;
    left: -145px;
    width: 434px;
    height: 514px;
  }

  .hero-glow img:nth-child(3) {
    top: 324px;
    left: -297px;
    width: 444px;
    height: 462px;
  }

  .hero-glow img:nth-child(4) {
    top: 0;
    left: 482px;
    right: auto;
    width: 356px;
    height: 370px;
  }

  .topbar {
    height: 68px;
    padding: 16px;
  }

  .wordmark--header {
    display: none;
  }

  .wordmark--header span {
    display: none;
  }

  .toolbar {
    width: auto;
    min-width: 0;
    flex: 1 1 auto;
    justify-content: flex-end;
    gap: 6px;
  }

  .theme-switch {
    order: 1;
  }

  .language-pill {
    order: 2;
    min-width: 76px;
    padding-inline: 10px;
    gap: 6px;
  }

  .menu-button {
    order: 3;
    margin-left: auto;
  }

  .hero-content {
    top: calc(50% - 0.5px);
    width: 100%;
    padding: 0 16px;
  }

  .wordmark--hero {
    display: none;
  }

  .hero-copy {
    gap: 4px;
  }

  .hero h1 {
    font-size: clamp(43px, 12.1vw, 48px);
    letter-spacing: -0.035em;
    line-height: 1.2;
  }

  .hero-copy p {
    max-width: 330px;
    line-height: 1.35;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
    gap: 12px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .button--primary {
    order: -1;
  }

  .hero + .section,
  .section + .section,
  .footer {
    margin-top: 64px;
  }

  .section h2 {
    font-size: 22px;
    line-height: normal;
    letter-spacing: -0.03em;
  }

  .features {
    display: flex;
    min-height: 899px;
    flex-direction: column;
    gap: 16px;
    padding: 16px;
  }

  .features-intro {
    gap: 12px;
  }

  .feature-showcase {
    display: flex;
    width: 100%;
    height: 536px;
    flex-direction: column;
    align-items: center;
    gap: 36px;
    padding: 16px;
    border: 0;
    background: var(--surface) !important;
    box-shadow: none;
    touch-action: pan-y;
    transform-origin: center;
  }

  .feature-copy {
    width: 100%;
    height: auto;
    flex: 0 0 auto;
  }

  .feature-text {
    flex: 0 0 auto;
  }

  .feature-visual {
    top: auto;
    right: 0;
    bottom: -1px;
    width: min(430px, calc(100vw - 32px));
    height: auto;
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 84%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 0%, #000 84%, transparent 100%);
  }

  .features-all-mobile,
  .versions-all-mobile {
    display: inline-flex;
    width: 100%;
    flex: 0 0 56px;
  }

  .updates {
    display: flex;
    min-height: 554px;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    overflow: hidden;
    padding: 16px;
  }

  .updates-side {
    width: 100%;
    align-items: center;
  }

  .update-card--primary {
    display: none;
  }

  .update-carousel {
    display: flex;
    width: 100%;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    padding: 4px 24px 8px 0;
    scrollbar-width: none;
  }

  .update-carousel::-webkit-scrollbar {
    display: none;
  }

  .update-carousel .update-card {
    display: flex;
    flex: 0 0 calc(100% - 24px);
    height: 410px;
    flex-direction: column;
    scroll-snap-align: start;
  }

  .version-carousel-controls {
    display: none;
  }

  .version-carousel-controls > button {
    display: grid;
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: var(--surface);
    color: var(--text);
    cursor: pointer;
    font-size: 20px;
  }

  .version-carousel-controls > button:disabled {
    opacity: 0.32;
    cursor: default;
  }

  .version-carousel-dots {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .version-carousel-dots button {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--text-dim);
    cursor: pointer;
    opacity: 0.45;
    transition: width 180ms ease, border-radius 180ms ease, background-color 180ms ease, opacity 180ms ease;
  }

  .version-carousel-dots button.is-active {
    width: 20px;
    border-radius: 999px;
    background: var(--primary);
    opacity: 1;
  }

  .version-carousel-position {
    min-width: 34px;
    color: var(--text-dim);
    font-size: 11px;
    font-variant-numeric: tabular-nums;
    text-align: center;
  }

  .update-summary {
    width: 100%;
    height: 214px;
    flex: 0 0 214px;
  }

  .release-number {
    flex: 0 0 auto;
  }

  .changes-list {
    width: 100%;
    height: 196px;
    flex: 0 0 196px;
  }

  .changes-list p {
    font-size: 15px;
  }

  .knowledge {
    display: flex;
    min-height: 408px;
    align-items: stretch;
    gap: 12px;
    padding: 16px;
  }

  .knowledge-copy {
    align-items: flex-start;
    text-align: left;
  }

  .knowledge-copy h2 {
    font-size: 22px;
    line-height: normal;
  }

  .knowledge-copy > p {
    font-size: 17px;
    line-height: 23px;
  }

  .knowledge-search {
    width: 100%;
    flex: 1;
  }

  .search-row {
    display: contents;
  }

  .search-field,
  .search-submit {
    flex: 0 0 56px;
  }

  .search-submit {
    width: 100%;
    order: 3;
  }

  .open-label {
    display: none;
  }

  .open-label-mobile {
    display: inline;
  }

  .knowledge-links {
    order: 2;
    padding-right: 16px;
  }

  .search-field {
    order: 1;
  }

  .team {
    min-height: 0;
    align-items: center;
    gap: 12px;
    overflow: hidden;
    padding: 16px;
  }

  .team-grid {
    display: flex;
    width: calc(100% + 16px);
    align-items: stretch;
    gap: 12px;
    overflow-x: auto;
    padding: 4px 32px 8px 0;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .team-grid::-webkit-scrollbar {
    display: none;
  }

  .person-card {
    /* Every card is sized to its own content (one row of chips, no wrap) -
       exactly what the Figma source does. */
    flex: 0 0 auto;
    width: max-content;
    max-width: calc(100vw - 64px);
    min-height: 200px;
    scroll-snap-align: start;
  }

  .person-tags {
    flex-wrap: nowrap;
  }

  .download {
    min-height: 388px;
    gap: 24px;
    padding: 32px 16px;
  }

  .download-glow {
    top: -29px;
    width: 1161px;
    height: 459px;
  }

  .download-head {
    gap: 12px;
  }

  .download-head h2 {
    font-size: 22px;
  }

  .mirrors {
    width: 100%;
    flex: 0 0 220px;
  }

  .mirror {
    height: 72px;
    min-height: 72px;
    padding: 16px;
  }

  .mirror:hover {
    height: 82px;
  }

  .footer {
    width: 100%;
    min-height: 0;
    padding: 52px 16px 20px;
  }

  .footer-content {
    flex-direction: column;
    gap: 32px;
  }

  .footer-brand {
    width: 100%;
    flex-basis: auto;
  }

  .footer-brand p {
    max-width: 320px;
  }

  .footer-links {
    width: 100%;
    grid-template-columns: 1fr 1fr;
    row-gap: 32px;
  }

  .footer-links h3 {
    font-size: 18px;
  }

  .blueprint-credit {
    margin-top: 24px;
  }
}

@media (max-width: 380px) {
  .feature-chip {
    padding-inline: 10px;
    font-size: 11px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .phone {
    border-width: 7px;
  }

  .knowledge-copy > p {
    font-size: 15px;
    line-height: 21px;
  }
}

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

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