:root {
  --bg: #ffffff;
  --surface: #f6f6f7;
  --surface-strong: #eeeff1;
  --text: #34343a;
  --text-strong: #242429;
  --muted: #6e6e76;
  --faint: #9898a1;
  --line: #e6e6e9;
  --brand: #4f75d8;
  --brand-dark: #3f61bd;
  --brand-soft: #e8edfc;
  --brand-foreground: #ffffff;
  --announcement-height: 0px;
  --green: #38aa7f;
  --shadow: 0 18px 50px rgba(35, 39, 47, 0.1);
  --header-bg: rgba(255, 255, 255, 0.86);
  --shell: 1150px;
}

:root[data-theme="dark"] {
  --bg: #1b1b1f;
  --surface: #252529;
  --surface-strong: #303036;
  --text: #d6d6dc;
  --text-strong: #f1f1f3;
  --muted: #a2a2aa;
  --faint: #7d7d86;
  --line: #35353b;
  --brand: #86a5ff;
  --brand-dark: #a2b8ff;
  --brand-soft: #28334d;
  --green: #66d2a8;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.26);
  --header-bg: rgba(27, 27, 31, 0.88);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.25s ease, color 0.25s ease;
}

body.dialog-open {
  overflow: hidden;
}

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

button {
  font: inherit;
}

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

img,
svg {
  display: block;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(79, 117, 216, 0.35);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--text-strong);
  color: var(--bg);
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}

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

.page-shell {
  width: min(calc(100% - 48px), var(--shell));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 40;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled,
.site-header.menu-open {
  border-color: var(--line);
  background: var(--header-bg);
  box-shadow: 0 8px 28px rgba(31, 35, 43, 0.05);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  width: min(calc(100% - 48px), 1200px);
  height: 64px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  min-width: 190px;
  align-items: center;
  gap: 10px;
  color: var(--text-strong);
  font-size: 16px;
  font-weight: 700;
}

.brand img {
  width: 31px;
  height: 31px;
}

.brand small {
  color: var(--faint);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
  font-weight: 600;
}

.desktop-nav {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: 29px;
}

.desktop-nav a {
  position: relative;
  display: grid;
  height: 64px;
  place-items: center;
  color: var(--text);
  font-size: 14px;
  font-weight: 520;
  transition: color 0.2s ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  border-radius: 2px 2px 0 0;
  background: var(--brand);
  content: "";
  opacity: 0;
  transform: scaleX(0.45);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: var(--brand);
}

.desktop-nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-tools {
  display: flex;
  margin-left: 24px;
  padding-left: 20px;
  align-items: center;
  gap: 6px;
  border-left: 1px solid var(--line);
}

.icon-button,
.menu-button {
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.icon-button:hover,
.menu-button:hover {
  background: var(--surface);
  color: var(--text-strong);
}

.icon-button svg {
  width: 19px;
  height: 19px;
}

.theme-toggle {
  position: relative;
  width: 42px;
  height: 24px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.theme-toggle::before {
  position: absolute;
  z-index: 0;
  left: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--bg);
  box-shadow: 0 1px 4px rgba(30, 34, 41, 0.18);
  content: "";
  transition: transform 0.25s ease;
}

.theme-toggle svg {
  position: absolute;
  z-index: 1;
  width: 11px;
  height: 11px;
  transition: opacity 0.2s ease;
}

.theme-toggle .sun-icon {
  left: 5px;
  opacity: 1;
}

.theme-toggle .moon-icon {
  right: 5px;
  opacity: 0.38;
}

[data-theme="dark"] .theme-toggle::before {
  transform: translateX(18px);
}

[data-theme="dark"] .theme-toggle .sun-icon {
  opacity: 0.35;
}

[data-theme="dark"] .theme-toggle .moon-icon {
  opacity: 1;
}

.menu-button {
  display: none;
  border-radius: 8px;
}

.menu-button span {
  position: absolute;
  width: 18px;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.2s ease;
}

.menu-button span:first-child {
  transform: translateY(-4px);
}

.menu-button span:last-child {
  transform: translateY(4px);
}

.menu-button.is-active span:first-child {
  transform: rotate(45deg);
}

.menu-button.is-active span:last-child {
  transform: rotate(-45deg);
}

.mobile-nav {
  display: none;
}

#main-content {
  position: relative;
}

.announcement-bar {
  position: absolute;
  z-index: 12;
  top: 76px;
  left: 0;
  width: 100%;
}

.announcement-inner {
  display: grid;
  min-height: 44px;
  padding: 9px 11px 9px 14px;
  align-items: center;
  border: 1px solid color-mix(in srgb, var(--brand) 24%, var(--line));
  border-radius: 7px;
  background: color-mix(in srgb, var(--brand-soft) 88%, var(--bg));
  box-shadow: 0 8px 24px rgba(35, 39, 47, 0.06);
  color: var(--text);
  grid-template-columns: auto 1fr auto;
  gap: 11px;
}

.announcement-mark {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--brand) 15%, transparent);
}

.announcement-inner p {
  margin: 0;
  overflow-wrap: anywhere;
  font-size: 12px;
  line-height: 1.6;
}

.announcement-inner button {
  display: grid;
  width: 30px;
  height: 30px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.announcement-inner button:hover {
  background: var(--bg);
  color: var(--text-strong);
}

.announcement-inner button svg {
  width: 15px;
  height: 15px;
}

.hero {
  position: relative;
  min-height: 750px;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 750px;
  padding-top: 100px;
  padding-bottom: 70px;
  align-items: center;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 50px;
}

body.has-announcement .hero-inner {
  padding-top: calc(112px + var(--announcement-height));
}

.hero-aura {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  filter: blur(22px);
  pointer-events: none;
}

.hero-aura--blue {
  top: 40px;
  right: 22%;
  width: 410px;
  height: 410px;
  background: radial-gradient(circle, rgba(111, 176, 255, 0.28), transparent 68%);
}

.hero-aura--green {
  top: 70px;
  right: -30px;
  width: 540px;
  height: 540px;
  background: radial-gradient(circle, rgba(81, 215, 155, 0.28), transparent 68%);
}

.hero-aura--yellow {
  top: 130px;
  right: -220px;
  width: 580px;
  height: 580px;
  background: radial-gradient(circle, rgba(232, 213, 91, 0.2), transparent 65%);
}

[data-theme="dark"] .hero-aura {
  opacity: 0.58;
}

.hero-badge {
  display: inline-flex;
  margin: 0 0 21px;
  align-items: center;
  gap: 9px;
  color: var(--green);
  font-size: 13px;
  font-weight: 650;
}

.hero-badge > span:first-child {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #51bd8e;
  box-shadow: 0 0 0 5px rgba(81, 189, 142, 0.13);
}

.hero h1 {
  margin: 0;
  color: var(--text-strong);
  line-height: 1.08;
  letter-spacing: 0;
}

.gradient-name {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 5px;
  background: linear-gradient(100deg, var(--brand) 0%, #47bba6 52%, #c9bf42 100%);
  background-clip: text;
  color: transparent;
  font-size: 64px;
  font-weight: 800;
  line-height: 1.06;
  overflow-wrap: anywhere;
}

.hero h1 strong {
  display: block;
  font-size: 57px;
  font-weight: 790;
  overflow-wrap: anywhere;
  white-space: pre-line;
}

.hero-description {
  max-width: 590px;
  margin: 25px 0 28px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.hero-actions,
.download-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 11px;
}

.pill-button {
  display: inline-flex;
  min-height: 43px;
  padding: 0 20px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 650;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.pill-button svg {
  width: 17px;
  height: 17px;
}

.pill-button:hover {
  transform: translateY(-2px);
}

.pill-button--primary {
  background: var(--brand);
  box-shadow: 0 9px 22px rgba(79, 117, 216, 0.22);
  color: var(--brand-foreground);
}

.pill-button--primary:hover {
  background: var(--brand-dark);
  box-shadow: 0 12px 28px rgba(79, 117, 216, 0.28);
}

.pill-button--soft {
  background: var(--surface-strong);
  color: var(--text);
}

.pill-button--soft:hover {
  background: var(--line);
  color: var(--text-strong);
}

.inline-email {
  display: inline-flex;
  margin-top: 25px;
  padding: 0;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
}

.inline-email span {
  padding: 3px 7px;
  border-radius: 4px;
  background: var(--surface);
  color: var(--faint);
  font-size: 10px;
}

.inline-email .email-value {
  padding: 0;
  background: transparent;
  color: inherit;
  font-size: inherit;
}

.inline-email svg {
  width: 14px;
  height: 14px;
}

.inline-email:hover {
  color: var(--brand);
}

.hero-visual {
  position: relative;
  min-height: 500px;
}

.hero-product-visual {
  min-height: 540px;
}

.hero-icon-card {
  position: absolute;
  z-index: 3;
  top: 155px;
  left: 22px;
  width: 205px;
  height: 205px;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.9);
  border-radius: 28%;
  background: #fbfcfa;
  box-shadow: 0 26px 55px rgba(24, 69, 78, 0.2);
  transform: rotate(-5deg);
}

.hero-icon-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-phone {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 13px;
  width: 235px;
  padding: 8px;
  overflow: hidden;
  border: 1px solid rgba(29, 46, 54, 0.2);
  border-radius: 31px;
  background: #171b22;
  box-shadow: 0 32px 70px rgba(24, 56, 62, 0.2);
  transform: rotate(2deg);
  transition: transform 0.3s ease;
}

.hero-phone:hover {
  transform: rotate(0deg) translateY(-4px);
}

.hero-phone img {
  width: 100%;
  height: auto;
  border-radius: 23px;
}

.product-chip {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  min-height: 38px;
  padding: 0 13px;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(214, 216, 221, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 32px rgba(37, 64, 66, 0.12);
  color: #385057;
  font-size: 11px;
  font-weight: 650;
  backdrop-filter: blur(12px);
}

[data-theme="dark"] .product-chip {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(38, 38, 43, 0.88);
  color: #d5dddc;
}

.product-chip span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #54cbd1;
  box-shadow: 0 0 0 4px rgba(84, 203, 209, 0.13);
}

.product-chip svg {
  width: 16px;
  height: 16px;
  color: var(--brand);
}

.product-chip--top {
  top: 78px;
  left: 3px;
}

.product-chip--bottom {
  right: 8px;
  bottom: 20px;
}

.logo-halo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 410px;
  height: 410px;
  border: 1px solid rgba(87, 136, 203, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 40px rgba(80, 185, 156, 0.035), 0 0 0 80px rgba(223, 201, 74, 0.025);
  transform: translate(-50%, -50%);
}

.hero-logo-wrap {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 285px;
  height: 285px;
  transform: translate(-50%, -50%) rotate(-4deg);
  transition: transform 0.35s ease;
}

.hero-logo-wrap:hover {
  transform: translate(-50%, -52%) rotate(0deg);
}

.hero-logo-wrap img {
  width: 100%;
  height: 100%;
  border-radius: 28%;
  filter: drop-shadow(0 30px 32px rgba(40, 55, 50, 0.18));
}

.code-chip {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  min-height: 37px;
  padding: 0 13px;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(214, 216, 221, 0.86);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 14px 34px rgba(40, 48, 45, 0.1);
  color: #565b60;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  backdrop-filter: blur(12px);
  animation: float 5s ease-in-out infinite;
}

[data-theme="dark"] .code-chip {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(38, 38, 43, 0.78);
  color: #c1c3c8;
}

.code-chip span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #50bc8c;
  box-shadow: 0 0 0 4px rgba(80, 188, 140, 0.13);
}

.code-chip svg {
  width: 16px;
  height: 16px;
  color: var(--brand);
}

.code-chip--top {
  top: 73px;
  left: 30px;
}

.code-chip--right {
  top: 190px;
  right: -5px;
  animation-delay: 0.8s;
}

.code-chip--bottom {
  bottom: 57px;
  left: 52px;
  animation-delay: 1.4s;
}

.section-block {
  padding: 100px 0;
}

.section-heading {
  display: flex;
  margin-bottom: 38px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.section-heading--center {
  align-items: center;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}

.section-eyebrow {
  margin: 0 0 9px;
  color: var(--brand);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0;
}

.section-heading h2,
.download-copy h2,
.about-inner h2 {
  margin: 0;
  color: var(--text-strong);
  font-size: 42px;
  line-height: 1.2;
  letter-spacing: 0;
}

.section-heading > p {
  max-width: 400px;
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

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

.feature-card {
  position: relative;
  display: block;
  min-height: 205px;
  padding: 25px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  text-align: left;
  transition: transform 0.22s ease, border-color 0.22s ease, background-color 0.22s ease, box-shadow 0.22s ease;
}

.feature-card:hover {
  border-color: var(--line);
  background: var(--bg);
  box-shadow: 0 14px 35px rgba(36, 40, 48, 0.08);
  transform: translateY(-4px);
}

.feature-icon {
  display: grid;
  width: 45px;
  height: 45px;
  margin-bottom: 23px;
  place-items: center;
  border-radius: 8px;
}

.feature-icon svg {
  width: 21px;
  height: 21px;
}

.feature-icon--blue { background: #e8edfc; color: #567be0; }
.feature-icon--purple { background: #eee9fa; color: #8869cb; }
.feature-icon--green { background: #e1f3eb; color: #3aa77f; }
.feature-icon--orange { background: #f8ecdf; color: #cb8545; }
.feature-icon--red { background: #f8e7e6; color: #cf6a64; }
.feature-icon--cyan { background: #e2f1f4; color: #3d99a8; }

[data-theme="dark"] .feature-icon--blue { background: #29334d; color: #89a6ff; }
[data-theme="dark"] .feature-icon--purple { background: #352d47; color: #b29ae8; }
[data-theme="dark"] .feature-icon--green { background: #213b32; color: #65cba6; }
[data-theme="dark"] .feature-icon--orange { background: #423327; color: #e0a46e; }
[data-theme="dark"] .feature-icon--red { background: #402c2d; color: #e58f89; }
[data-theme="dark"] .feature-icon--cyan { background: #233b40; color: #73c2ce; }

.feature-card h3 {
  margin: 0 0 9px;
  color: var(--text-strong);
  font-size: 17px;
  font-weight: 680;
  line-height: 1.35;
}

.feature-card p {
  max-width: 270px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.card-arrow {
  position: absolute;
  top: 28px;
  right: 28px;
  color: var(--faint);
  font-size: 15px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.feature-card:hover .card-arrow {
  color: var(--brand);
  transform: translate(2px, -2px);
}

.updates-section {
  border-top: 1px solid var(--line);
  background: var(--bg);
}

.updates-toolbar {
  display: flex;
  min-height: 44px;
  margin-bottom: 20px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.update-filters {
  display: grid;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface);
  grid-template-columns: repeat(3, minmax(0, auto));
  gap: 3px;
}

.update-filters button {
  min-height: 34px;
  padding: 0 15px;
  border: 0;
  border-radius: 5px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  transition: background-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.update-filters button:hover:not(:disabled) {
  color: var(--text-strong);
}

.update-filters button.is-active {
  background: var(--bg);
  box-shadow: 0 2px 8px rgba(35, 39, 47, 0.07);
  color: var(--brand);
}

.update-filters button:disabled {
  cursor: default;
  opacity: 0.55;
}

.updates-count {
  color: var(--faint);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
}

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

.update-entry {
  display: flex;
  min-width: 0;
  min-height: 290px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  flex-direction: column;
}

.update-entry-heading {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.update-entry-kind {
  display: inline-flex;
  min-height: 24px;
  padding: 0 8px;
  align-items: center;
  border-radius: 4px;
  background: color-mix(in srgb, var(--brand) 11%, var(--bg));
  color: var(--brand);
  font-size: 10px;
  font-weight: 700;
}

.update-entry--progress .update-entry-kind {
  background: color-mix(in srgb, var(--green) 12%, var(--bg));
  color: var(--green);
}

.update-entry-heading time {
  min-width: 0;
  overflow: hidden;
  color: var(--faint);
  font-size: 10px;
  font-variant-numeric: tabular-nums;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.update-entry h3 {
  margin: 20px 0 8px;
  color: var(--text-strong);
  font-size: 19px;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.update-entry-summary {
  margin: 0;
  color: var(--text);
  font-size: 13px;
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.update-entry-content {
  margin: 10px 0 22px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
  overflow-wrap: anywhere;
  white-space: pre-line;
}

.update-progress,
.update-release-details {
  margin-top: auto;
  padding-top: 17px;
  border-top: 1px solid var(--line);
}

.update-progress-heading {
  display: flex;
  margin-bottom: 10px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.update-stage {
  color: var(--text);
  font-size: 11px;
  font-weight: 650;
}

.update-percent {
  color: var(--brand);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
}

.update-progress-track {
  height: 7px;
  overflow: hidden;
  border-radius: 4px;
  background: var(--surface-strong);
}

.update-progress-track span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--brand);
}

.update-release-details {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
}

.update-release-details > span {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 3px;
}

.update-release-details small {
  color: var(--faint);
  font-size: 9px;
}

.update-release-details strong,
.update-release-details time {
  min-width: 0;
  color: var(--text-strong);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  font-weight: 650;
  overflow-wrap: anywhere;
}

.updates-state {
  display: flex;
  min-height: 230px;
  padding: 28px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.updates-loading {
  flex-direction: column;
  gap: 13px;
}

.updates-spinner {
  width: 25px;
  height: 25px;
  border: 2px solid var(--line);
  border-top-color: var(--brand);
  border-radius: 50%;
  animation: updates-spin 0.75s linear infinite;
}

.updates-error,
.updates-empty {
  flex-direction: column;
}

.updates-state-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: var(--brand-soft);
  color: var(--brand);
}

.updates-error .updates-state-icon {
  background: color-mix(in srgb, #d55b5b 12%, var(--bg));
  color: #c65050;
}

.updates-state-icon svg {
  width: 20px;
  height: 20px;
}

.updates-state > div {
  display: grid;
  gap: 4px;
}

.updates-state strong {
  color: var(--text-strong);
  font-size: 13px;
}

.updates-state p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.updates-retry {
  display: inline-flex;
  min-height: 36px;
  padding: 0 13px;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--bg);
  color: var(--text);
  cursor: pointer;
  font-size: 11px;
  font-weight: 650;
}

.updates-retry:hover {
  border-color: color-mix(in srgb, var(--brand) 35%, var(--line));
  color: var(--brand);
}

.updates-retry svg {
  width: 15px;
  height: 15px;
}

.showcase {
  overflow: hidden;
  background: var(--surface);
}

.showcase-frame {
  position: relative;
  width: min(100%, 1040px);
  margin: 0 auto;
}

.slides {
  position: relative;
  min-height: 650px;
}

.preview-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  grid-template-columns: 0.38fr 0.62fr;
  gap: 44px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(22px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.preview-slide.is-active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.preview-copy > span {
  color: var(--brand);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
  font-weight: 700;
}

.preview-copy h3 {
  margin: 14px 0 13px;
  color: var(--text-strong);
  font-size: 30px;
  line-height: 1.3;
  letter-spacing: 0;
}

.preview-copy p {
  max-width: 280px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.real-shot-stage {
  display: grid;
  min-height: 620px;
  place-items: center;
  border-radius: 8px;
  background:
    radial-gradient(circle at 40% 28%, rgba(80, 197, 206, 0.16), transparent 34%),
    radial-gradient(circle at 72% 70%, rgba(79, 117, 216, 0.14), transparent 36%),
    var(--bg);
}

.phone-frame {
  width: 270px;
  padding: 8px;
  overflow: hidden;
  border: 1px solid rgba(35, 47, 53, 0.2);
  border-radius: 32px;
  background: #171b22;
  box-shadow: 0 30px 65px rgba(27, 55, 62, 0.2);
}

.phone-frame img {
  width: 100%;
  height: auto;
  border-radius: 24px;
}

.app-window {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg);
  box-shadow: var(--shadow);
}

.app-topbar {
  display: flex;
  height: 42px;
  padding: 0 15px;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.app-topbar i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d66d64;
}

.app-topbar i:nth-child(2) { background: #d3ad4d; }
.app-topbar i:nth-child(3) { background: #54b784; }

.app-topbar b {
  margin-left: auto;
  color: var(--faint);
  font-size: 9px;
  font-weight: 600;
}

.app-layout {
  display: grid;
  height: 390px;
  grid-template-columns: 68px 1fr;
}

.app-sidebar {
  display: flex;
  padding: 22px 0;
  align-items: center;
  flex-direction: column;
  gap: 19px;
  background: #24262c;
}

.app-sidebar strong {
  display: grid;
  width: 29px;
  height: 29px;
  margin-bottom: 7px;
  place-items: center;
  border-radius: 7px;
  background: linear-gradient(135deg, #5d84e2, #45b795);
  color: #fff;
  font-size: 10px;
}

.app-sidebar span {
  width: 18px;
  height: 4px;
  border-radius: 2px;
  background: #545760;
}

.app-sidebar span.is-selected {
  background: #7fa2f0;
}

.app-content {
  padding: 38px 42px;
  background: var(--bg);
}

.app-content small,
.version-copy small {
  color: var(--brand);
  font-size: 8px;
  font-weight: 700;
}

.app-content h4 {
  margin: 6px 0 25px;
  color: var(--text-strong);
  font-size: 24px;
}

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

.metric-row div {
  display: flex;
  min-height: 80px;
  padding: 14px;
  flex-direction: column;
  justify-content: center;
  border-radius: 7px;
  background: var(--surface);
}

.metric-row em {
  color: var(--text-strong);
  font-size: 20px;
  font-style: normal;
  font-weight: 750;
}

.metric-row span {
  margin-top: 4px;
  color: var(--faint);
  font-size: 8px;
}

.fake-chart {
  display: flex;
  height: 150px;
  margin-top: 18px;
  padding: 22px 24px;
  align-items: flex-end;
  justify-content: space-between;
  border-radius: 7px;
  background: var(--surface);
}

.fake-chart span {
  width: 8%;
  border-radius: 4px 4px 1px 1px;
  background: linear-gradient(#5e82df, #4db893);
  opacity: 0.82;
}

.fake-chart span:nth-child(1) { height: 34%; }
.fake-chart span:nth-child(2) { height: 62%; }
.fake-chart span:nth-child(3) { height: 49%; }
.fake-chart span:nth-child(4) { height: 82%; }
.fake-chart span:nth-child(5) { height: 58%; }
.fake-chart span:nth-child(6) { height: 92%; }
.fake-chart span:nth-child(7) { height: 74%; }

.command-bg {
  display: grid;
  height: 390px;
  padding: 34px;
  place-items: center;
  background: linear-gradient(135deg, #e8edfc, #e6f5ef 55%, #f5f2d9);
}

[data-theme="dark"] .command-bg {
  background: linear-gradient(135deg, #242d44, #203a31 55%, #3c3925);
}

.command-panel {
  width: min(100%, 430px);
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  background: var(--bg);
  box-shadow: 0 26px 60px rgba(37, 47, 47, 0.2);
}

.command-search {
  display: flex;
  height: 47px;
  padding: 0 13px;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--line);
  color: var(--faint);
  font-size: 12px;
}

.command-search span {
  font-size: 22px;
}

.command-item {
  display: grid;
  min-height: 55px;
  padding: 0 12px;
  align-items: center;
  border-radius: 6px;
  grid-template-columns: 30px 1fr auto;
  gap: 10px;
  color: var(--muted);
}

.command-item.is-selected {
  background: var(--surface);
  color: var(--text-strong);
}

.command-item > span {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 6px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 13px;
}

.command-item b {
  font-size: 11px;
  font-weight: 650;
}

.command-item small {
  color: var(--faint);
  font-size: 8px;
}

.update-content {
  display: grid;
  height: 390px;
  padding: 45px;
  align-items: center;
  background: var(--bg);
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
}

.version-mark {
  display: flex;
  width: 190px;
  height: 190px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #5e85e2, #44bb92 58%, #d4c84f);
  box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.25), 0 22px 40px rgba(70, 125, 114, 0.18);
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.version-mark span {
  font-size: 54px;
}

.version-copy h4 {
  margin: 8px 0 22px;
  color: var(--text-strong);
  font-size: 24px;
}

.version-copy p {
  display: flex;
  margin: 10px 0;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 11px;
}

.version-copy p span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
}

.slider-arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--bg);
  box-shadow: 0 8px 22px rgba(30, 35, 43, 0.1);
  color: var(--text);
  cursor: pointer;
  transform: translateY(-50%);
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.slider-arrow:hover {
  border-color: var(--brand);
  color: var(--brand);
  transform: translateY(-50%) scale(1.05);
}

.slider-arrow svg {
  width: 19px;
  height: 19px;
}

.slider-arrow--prev { left: -62px; }
.slider-arrow--next { right: -62px; }

.slider-dots {
  display: flex;
  margin-top: 28px;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.slider-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--line);
  cursor: pointer;
  transition: width 0.2s ease, border-radius 0.2s ease, background-color 0.2s ease;
}

.slider-dots button.is-active {
  width: 25px;
  border-radius: 4px;
  background: var(--brand);
}

.download-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}

.download-section::before {
  position: absolute;
  top: -220px;
  right: -130px;
  width: 580px;
  height: 580px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(83, 125, 221, 0.12), rgba(70, 190, 151, 0.08) 45%, transparent 70%);
  content: "";
}

.download-inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
}

.download-copy h2 {
  max-width: 550px;
}

.download-copy > p:not(.section-eyebrow) {
  max-width: 560px;
  margin: 20px 0 28px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.text-button {
  display: inline-flex;
  min-height: 42px;
  padding: 0 10px;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  color: var(--brand);
  cursor: pointer;
  font-size: 13px;
  font-weight: 650;
}

.text-button span {
  transition: transform 0.2s ease;
}

.text-button:hover span {
  transform: translateX(4px);
}

.release-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 20px 50px rgba(36, 42, 49, 0.08);
}

.release-top {
  display: grid;
  padding-bottom: 22px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 48px 1fr auto;
  gap: 14px;
}

.release-top img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
}

.release-top div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.release-top small {
  color: var(--faint);
  font-size: 10px;
}

.release-top strong {
  color: var(--text-strong);
  font-size: 14px;
}

.release-status {
  display: inline-flex;
  min-height: 27px;
  padding: 0 9px;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  background: var(--bg);
  color: var(--muted);
  font-size: 10px;
}

.release-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e0aa50;
}

.release-info {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}

.release-info:last-child {
  border-bottom: 0;
}

.release-info span {
  color: var(--muted);
}

.release-info strong,
.release-info button {
  border: 0;
  background: transparent;
  color: var(--text-strong);
  font-size: 12px;
  font-weight: 650;
}

.release-info button {
  cursor: pointer;
}

.release-info button:hover {
  color: var(--brand);
}

.about-section {
  background: var(--surface);
}

.about-inner {
  display: grid;
  align-items: start;
  grid-template-columns: 0.65fr 1.15fr 0.7fr;
  gap: 65px;
}

.about-inner > p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.about-contact {
  display: flex;
  padding-top: 3px;
  flex-direction: column;
  gap: 10px;
}

.about-contact small {
  color: var(--faint);
  font-size: 10px;
}

.about-contact button {
  display: inline-flex;
  padding: 0;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  color: var(--text-strong);
  cursor: pointer;
  font-size: 12px;
  font-weight: 650;
  overflow-wrap: anywhere;
}

.about-contact button:hover {
  color: var(--brand);
}

.about-contact svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

footer {
  border-top: 1px solid var(--line);
  background: var(--bg);
}

.footer-inner {
  display: grid;
  min-height: 120px;
  align-items: center;
  color: var(--faint);
  font-size: 11px;
  grid-template-columns: 1fr auto 1fr;
}

.brand--footer {
  min-width: 0;
  font-size: 14px;
}

.brand--footer img {
  width: 28px;
  height: 28px;
}

.footer-inner p:last-child {
  text-align: right;
}

.community-dialog {
  width: min(calc(100% - 32px), 450px);
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--bg);
  box-shadow: 0 35px 90px rgba(17, 22, 28, 0.3);
  color: var(--text);
}

.community-dialog::backdrop {
  background: rgba(13, 16, 20, 0.5);
  backdrop-filter: blur(5px);
}

.community-dialog[open] {
  animation: dialog-in 0.24s ease-out;
}

.dialog-close {
  position: absolute;
  top: 17px;
  right: 17px;
  display: grid;
  width: 36px;
  height: 36px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  color: var(--muted);
  cursor: pointer;
}

.dialog-close svg {
  width: 16px;
  height: 16px;
}

.dialog-icon {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 8px;
  background: var(--brand-soft);
  color: var(--brand);
}

.dialog-icon svg {
  width: 23px;
  height: 23px;
}

.dialog-eyebrow {
  margin: 0 0 7px;
  color: var(--brand);
  font-size: 10px;
  font-weight: 750;
}

.community-dialog h2 {
  margin: 0 0 14px;
  color: var(--text-strong);
  font-size: 27px;
  letter-spacing: 0;
}

.community-dialog > p:not(.dialog-eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.dialog-action {
  width: 100%;
  margin-top: 24px;
}

.dialog-copy {
  width: 100%;
  margin-top: 11px;
  padding: 9px;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 10px;
}

.dialog-copy:hover {
  color: var(--brand);
}

.toast {
  position: fixed;
  z-index: 80;
  bottom: 24px;
  left: 50%;
  display: flex;
  min-height: 46px;
  padding: 0 17px;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: #25262b;
  box-shadow: 0 16px 40px rgba(20, 23, 29, 0.24);
  color: #f4f4f5;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  font-size: 12px;
}

.toast svg {
  width: 16px;
  height: 16px;
  color: #70d1aa;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal--delay { transition-delay: 0.08s; }
.reveal--delay-2 { transition-delay: 0.16s; }

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

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@keyframes dialog-in {
  from { opacity: 0; transform: translateY(9px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

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

@media (max-width: 1180px) {
  .slider-arrow--prev { left: 8px; }
  .slider-arrow--next { right: 8px; }

  .slider-arrow {
    top: auto;
    bottom: 2px;
    transform: none;
  }

  .slider-arrow:hover {
    transform: scale(1.05);
  }
}

@media (max-width: 980px) {
  .desktop-nav {
    gap: 20px;
  }

  .brand {
    min-width: 165px;
  }

  .hero-inner {
    min-height: auto;
    padding-top: 140px;
    padding-bottom: 80px;
    grid-template-columns: 1fr;
  }

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

  .hero-visual {
    width: min(100%, 620px);
    min-height: 470px;
    margin: 0 auto;
  }

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

  .preview-slide {
    grid-template-columns: 0.32fr 0.68fr;
    gap: 24px;
  }

  .download-inner {
    gap: 45px;
  }

  .about-inner {
    grid-template-columns: 0.6fr 1.4fr;
    gap: 45px;
  }

  .about-contact {
    grid-column: 2;
  }
}

@media (max-width: 760px) {
  .page-shell,
  .header-inner {
    width: min(calc(100% - 36px), var(--shell));
  }

  .desktop-nav,
  .community-icon {
    display: none;
  }

  .header-tools {
    margin-left: auto;
    padding-left: 0;
    border-left: 0;
  }

  .menu-button {
    display: grid;
  }

  .mobile-nav {
    display: flex;
    max-height: 0;
    padding: 0 18px;
    overflow: hidden;
    flex-direction: column;
    background: var(--header-bg);
    opacity: 0;
    transition: max-height 0.25s ease, opacity 0.2s ease, padding 0.25s ease;
    backdrop-filter: blur(16px);
  }

  .mobile-nav.is-open {
    max-height: 410px;
    padding-top: 7px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--line);
    opacity: 1;
  }

  .mobile-nav a,
  .mobile-nav button {
    min-height: 45px;
    padding: 0 7px;
    border: 0;
    border-bottom: 1px solid var(--line);
    background: transparent;
    color: var(--text);
    cursor: pointer;
    text-align: left;
    font-size: 13px;
    font-weight: 560;
  }

  .mobile-nav button {
    border-bottom: 0;
    color: var(--brand);
  }

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .announcement-bar {
    top: 72px;
  }

  .announcement-inner {
    width: min(calc(100% - 36px), var(--shell));
  }

  body.has-announcement .hero-inner {
    padding-top: calc(92px + var(--announcement-height));
  }

  .hero-inner {
    padding-top: 122px;
    padding-bottom: 55px;
    gap: 28px;
  }

  .hero-aura--blue {
    right: -100px;
    width: 300px;
    height: 300px;
  }

  .hero-aura--green {
    top: 490px;
    right: -120px;
    width: 380px;
    height: 380px;
  }

  .hero-aura--yellow {
    top: 560px;
    right: -220px;
    width: 400px;
    height: 400px;
  }

  .hero-badge {
    margin-bottom: 17px;
    font-size: 12px;
  }

  .gradient-name {
    font-size: 49px;
  }

  .hero h1 strong {
    font-size: 42px;
    line-height: 1.16;
  }

  .hero-description {
    margin: 21px 0 24px;
    font-size: 15px;
  }

  .hero-actions {
    gap: 8px;
  }

  .pill-button {
    min-height: 42px;
    padding: 0 17px;
    font-size: 13px;
  }

  .inline-email {
    max-width: 100%;
    flex-wrap: wrap;
    overflow-wrap: anywhere;
  }

  .hero-visual {
    min-height: 390px;
  }

  .logo-halo {
    width: 310px;
    height: 310px;
    box-shadow: 0 0 0 28px rgba(80, 185, 156, 0.035), 0 0 0 56px rgba(223, 201, 74, 0.025);
  }

  .hero-logo-wrap {
    width: 225px;
    height: 225px;
  }

  .code-chip {
    font-size: 9px;
  }

  .code-chip--top { top: 37px; left: 0; }
  .code-chip--right { top: 160px; right: 0; }
  .code-chip--bottom { bottom: 35px; left: 15px; }

  .section-block {
    padding: 76px 0;
  }

  .section-heading {
    margin-bottom: 30px;
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
  }

  .section-heading--center {
    align-items: center;
  }

  .section-heading h2,
  .download-copy h2,
  .about-inner h2 {
    font-size: 32px;
  }

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

  .feature-card {
    min-height: 190px;
  }

  .updates-toolbar {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .update-filters {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .updates-count {
    align-self: flex-start;
  }

  .updates-list {
    grid-template-columns: 1fr;
  }

  .update-entry {
    min-height: 0;
    padding: 22px;
  }

  .slides {
    min-height: 670px;
  }

  .preview-slide {
    align-items: stretch;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    gap: 25px;
  }

  .preview-copy {
    padding: 0 5px;
  }

  .preview-copy h3 {
    font-size: 25px;
  }

  .app-window {
    align-self: start;
  }

  .app-layout,
  .command-bg,
  .update-content {
    height: 385px;
  }

  .app-layout {
    grid-template-columns: 52px 1fr;
  }

  .app-content {
    padding: 28px 18px;
  }

  .metric-row {
    gap: 6px;
  }

  .metric-row div {
    min-height: 74px;
    padding: 10px;
  }

  .metric-row em {
    font-size: 17px;
  }

  .fake-chart {
    height: 145px;
    padding: 20px 16px;
  }

  .command-bg {
    padding: 19px;
  }

  .command-item {
    grid-template-columns: 30px 1fr;
  }

  .command-item small {
    display: none;
  }

  .update-content {
    padding: 28px 20px;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 18px;
  }

  .version-mark {
    width: 135px;
    height: 135px;
    font-size: 20px;
  }

  .version-mark span {
    font-size: 40px;
  }

  .version-copy {
    width: 100%;
  }

  .version-copy h4 {
    margin: 5px 0 13px;
    font-size: 19px;
  }

  .version-copy p {
    margin: 7px 0;
  }

  .slider-dots {
    margin-top: 20px;
  }

  .slider-arrow {
    bottom: -7px;
  }

  .download-inner {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-contact {
    grid-column: auto;
  }

  .footer-inner {
    display: flex;
    min-height: 170px;
    padding: 32px 0;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
  }

  .footer-inner p {
    margin: 0;
  }

  .footer-inner p:last-child {
    text-align: left;
  }

  .community-dialog {
    padding: 32px 23px 25px;
  }
}

@media (max-width: 390px) {
  .brand {
    min-width: 0;
    font-size: 14px;
  }

  .brand > span {
    white-space: nowrap;
  }

  .brand small {
    display: none;
  }

  .gradient-name {
    font-size: 44px;
  }

  .hero h1 strong {
    font-size: 37px;
  }

  .hero-actions .pill-button {
    flex: 1 1 auto;
  }

  .update-filters button {
    padding: 0 8px;
    font-size: 11px;
  }

  .update-entry {
    padding: 19px;
  }

  .update-entry h3 {
    font-size: 18px;
  }

  .update-release-details {
    gap: 12px;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 760px) {
  .hero-product-visual {
    min-height: 435px;
  }

  .hero-icon-card {
    top: 130px;
    left: 0;
    width: 150px;
    height: 150px;
    border-width: 6px;
  }

  .hero-phone {
    top: 8px;
    right: 0;
    width: 180px;
    padding: 6px;
    border-radius: 25px;
  }

  .hero-phone img {
    border-radius: 19px;
  }

  .product-chip--top {
    top: 44px;
    left: 2px;
  }

  .product-chip--bottom {
    right: 0;
    bottom: 15px;
  }

  .slides {
    min-height: 760px;
  }

  .real-shot-stage {
    min-height: 620px;
  }

  .phone-frame {
    width: min(255px, 78vw);
  }
}
