:root {
  --color-bg: #071012;
  --color-bg-soft: #0b171a;
  --color-bg-deep: #04090a;
  --color-surface: #101e21;
  --color-surface-2: #142529;
  --color-surface-light: #edf4f5;
  --color-white: #ffffff;
  --color-text: #eaf2f3;
  --color-text-soft: #9db0b3;
  --color-text-dark: #152326;
  --color-muted-dark: #65777a;
  --color-line: rgba(255, 255, 255, 0.1);
  --color-line-dark: rgba(14, 37, 41, 0.13);
  --color-brand: #7ccf4c;
  --color-brand-strong: #9be567;
  --color-brand-dark: #2d7f35;
  --color-blue: #78a9ff;
  --color-danger: #dc5858;
  --color-warning: #d9b560;
  --color-shadow: rgba(0, 0, 0, 0.28);

  --container: 1240px;
  --header-height: 76px;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 30px;

  --shadow-sm: 0 12px 30px rgba(0, 0, 0, 0.14);
  --shadow-md: 0 24px 70px rgba(0, 0, 0, 0.23);
  --shadow-lg: 0 34px 100px rgba(0, 0, 0, 0.36);

  --transition: 180ms ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--color-bg);
  color: var(--color-text);
  font-family:
    Inter,
    "PingFang SC",
    "Microsoft YaHei",
    "Noto Sans SC",
    Arial,
    sans-serif;
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

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

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

button {
  border: 0;
  background: none;
  cursor: pointer;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(155, 229, 103, 0.75);
  outline-offset: 3px;
}

[hidden] {
  display: none !important;
}

.site-shell {
  position: relative;
  overflow: clip;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 112px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--color-brand-strong);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0.82;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  margin-bottom: 0;
  color: inherit;
  line-height: 1.16;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(42px, 5.2vw, 76px);
  font-weight: 780;
}

h2 {
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 760;
}

h3 {
  font-size: 20px;
  font-weight: 720;
  letter-spacing: -0.02em;
}

p {
  margin-bottom: 0;
  color: var(--color-text-soft);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 56px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading.centered .eyebrow::after {
  width: 28px;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0.82;
}

.section-heading h2 {
  margin-bottom: 22px;
}

.section-heading p {
  max-width: 680px;
  font-size: 17px;
}

.section-heading.centered p {
  margin-inline: auto;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 780;
  line-height: 1.2;
  transition:
    transform var(--transition),
    background-color var(--transition),
    border-color var(--transition),
    color var(--transition),
    box-shadow var(--transition);
}

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

.button-primary {
  background: var(--color-brand);
  color: #09210d;
  box-shadow: 0 14px 32px rgba(124, 207, 76, 0.2);
}

.button-primary:hover {
  background: var(--color-brand-strong);
  box-shadow: 0 18px 42px rgba(124, 207, 76, 0.28);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.17);
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  backdrop-filter: blur(12px);
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.15);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--color-white);
}

.button-ghost:hover {
  border-color: var(--color-brand);
  color: var(--color-brand-strong);
}

.button-dark {
  background: #0b1618;
  color: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.button-dark:hover {
  background: #132326;
}

.button-outline {
  border-color: rgba(124, 207, 76, 0.48);
  color: var(--color-brand-strong);
}

.button-outline:hover {
  border-color: var(--color-brand);
  background: rgba(124, 207, 76, 0.1);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-brand-strong);
  font-size: 14px;
  font-weight: 750;
}

.text-link::after {
  content: "→";
  transition: transform var(--transition);
}

.text-link:hover::after {
  transform: translateX(4px);
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 14px;
  left: 14px;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--color-white);
  color: #111;
  font-weight: 700;
  transform: translateY(-150%);
  transition: transform var(--transition);
}

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

/* Header */

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(4, 10, 11, 0.72);
  backdrop-filter: blur(20px);
  transition:
    background-color var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.site-header.is-scrolled {
  border-bottom-color: rgba(255, 255, 255, 0.1);
  background: rgba(4, 10, 11, 0.94);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand-link {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.brand-link img {
  width: 150px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.desktop-nav a {
  position: relative;
  color: #b4c2c4;
  font-size: 14px;
  font-weight: 650;
  white-space: nowrap;
  transition: color var(--transition);
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--color-brand);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}

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

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

.header-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
}

.header-download-button {
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 7px;
  background: var(--color-brand);
  color: #0a1d0e;
  font-size: 13px;
  font-weight: 800;
  transition:
    background-color var(--transition),
    transform var(--transition);
}

.header-download-button:hover {
  background: var(--color-brand-strong);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--color-line);
  border-radius: 7px;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  border-radius: 99px;
  background: var(--color-white);
  transition:
    transform var(--transition),
    opacity var(--transition);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 999;
  top: var(--header-height);
  right: 0;
  left: 0;
  max-height: calc(100vh - var(--header-height));
  overflow-y: auto;
  padding: 12px 20px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(4, 10, 11, 0.98);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.34);
}

.mobile-menu a {
  display: flex;
  min-height: 50px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  color: #d4dfe0;
  font-size: 15px;
  font-weight: 650;
}

/* Hero */

.hero-section {
  position: relative;
  display: flex;
  min-height: 820px;
  align-items: center;
  padding: calc(var(--header-height) + 76px) 0 90px;
  overflow: hidden;
  background:
    radial-gradient(circle at 77% 47%, rgba(75, 175, 102, 0.22), transparent 31%),
    linear-gradient(135deg, #061012 0%, #081719 48%, #071112 100%);
}

.hero-background,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.28;
  filter: saturate(0.82) contrast(1.08);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 10, 11, 0.98) 0%, rgba(4, 10, 11, 0.8) 42%, rgba(4, 10, 11, 0.22) 78%, rgba(4, 10, 11, 0.78) 100%),
    linear-gradient(180deg, rgba(4, 10, 11, 0.12) 0%, rgba(4, 10, 11, 0.72) 100%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  gap: 68px;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 620px;
}

.hero-copy h1 {
  margin-bottom: 26px;
}

.hero-intro {
  max-width: 600px;
  font-size: 18px;
  line-height: 1.85;
}

.hero-platform-status {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 28px;
}

.hero-platform-status span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.05);
  color: #cfdbdc;
  font-size: 12px;
  font-weight: 720;
}

.hero-platform-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-brand);
  box-shadow: 0 0 12px rgba(124, 207, 76, 0.72);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-note {
  margin-top: 20px;
  color: #84979a;
  font-size: 12px;
}

.hero-console {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(23, 43, 47, 0.9), rgba(8, 18, 20, 0.94));
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(16px);
}

.hero-console::before {
  position: absolute;
  top: -30%;
  right: -20%;
  width: 60%;
  height: 70%;
  border-radius: 50%;
  background: rgba(124, 207, 76, 0.14);
  content: "";
  filter: blur(70px);
  pointer-events: none;
}

.console-topbar {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 52px;
  align-items: center;
  gap: 14px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  grid-template-columns: auto 1fr auto;
}

.console-dots {
  display: flex;
  gap: 6px;
}

.console-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
}

.console-dots span:first-child {
  background: var(--color-danger);
}

.console-dots span:nth-child(2) {
  background: var(--color-warning);
}

.console-dots span:nth-child(3) {
  background: var(--color-brand);
}

.console-title {
  color: #a9b8ba;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.console-state {
  display: inline-flex;
  min-height: 25px;
  align-items: center;
  padding: 5px 9px;
  border-radius: 99px;
  background: rgba(124, 207, 76, 0.12);
  color: var(--color-brand-strong);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.console-body {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 450px;
  align-items: center;
  gap: 12px;
  padding: 26px;
  grid-template-columns: minmax(0, 1fr) 210px;
}

.hero-device-stage {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
}

.hero-device-stage img {
  width: min(100%, 470px);
  max-height: 430px;
  object-fit: contain;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.35));
}

.console-platform-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.console-platform {
  display: grid;
  width: 100%;
  min-height: 86px;
  align-items: center;
  gap: 2px 10px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.035);
  text-align: left;
  grid-template-columns: 1fr auto;
  transition:
    border-color var(--transition),
    background-color var(--transition),
    transform var(--transition);
}

.console-platform:hover,
.console-platform.is-active {
  border-color: rgba(124, 207, 76, 0.42);
  background: rgba(124, 207, 76, 0.09);
  transform: translateX(-3px);
}

.platform-name {
  color: var(--color-white);
  font-size: 14px;
  font-weight: 790;
}

.platform-meta {
  color: #8ba0a3;
  font-size: 10px;
  grid-column: 1 / -1;
}

.platform-action {
  color: var(--color-brand-strong);
  font-size: 10px;
  font-weight: 750;
  grid-row: 1;
  grid-column: 2;
}

.console-footer {
  position: relative;
  z-index: 2;
  display: grid;
  padding: 16px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(0, 0, 0, 0.16);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.console-footer > div {
  padding: 0 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.console-footer > div:first-child {
  padding-left: 0;
}

.console-footer > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.status-label {
  display: block;
  margin-bottom: 4px;
  color: #708386;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.console-footer strong {
  display: block;
  color: #d7e2e3;
  font-size: 11px;
  font-weight: 700;
}

/* Platforms */

.platform-section {
  background: #f3f7f7;
  color: var(--color-text-dark);
}

.platform-section .section-heading p {
  color: var(--color-muted-dark);
}

.platform-selector {
  overflow: hidden;
  border: 1px solid var(--color-line-dark);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: 0 24px 70px rgba(19, 46, 50, 0.08);
}

.platform-tabs {
  display: grid;
  padding: 8px;
  border-bottom: 1px solid var(--color-line-dark);
  background: #e9efef;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.platform-tab {
  min-height: 48px;
  border-radius: 8px;
  color: #506164;
  font-size: 14px;
  font-weight: 780;
  transition:
    background-color var(--transition),
    color var(--transition),
    box-shadow var(--transition);
}

.platform-tab:hover {
  color: #152629;
}

.platform-tab.is-active {
  background: var(--color-white);
  color: #102124;
  box-shadow: 0 5px 18px rgba(17, 39, 43, 0.09);
}

.platform-panel {
  display: grid;
  gap: 38px;
  padding: 46px;
}

.platform-panel-copy {
  display: grid;
  align-items: center;
  gap: 30px;
  grid-template-columns: 136px minmax(0, 1fr);
}

.platform-icon-box {
  display: flex;
  width: 116px;
  height: 116px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-line-dark);
  border-radius: 24px;
  background: #f5f9f9;
}

.platform-icon-box img {
  width: 76px;
  height: 76px;
  object-fit: contain;
}

.ios-preview {
  display: flex;
  width: 116px;
  height: 150px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--color-line-dark);
  border-radius: 22px;
  background: #f4f7f7;
}

.ios-preview img {
  width: auto;
  height: 136px;
  object-fit: contain;
}

.desktop-symbol {
  display: flex;
  width: 126px;
  height: 112px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.desktop-screen {
  display: block;
  width: 110px;
  height: 72px;
  border: 5px solid #173338;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(124, 207, 76, 0.28), transparent 65%),
    #dce7e8;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.8);
}

.desktop-stand {
  position: relative;
  display: block;
  width: 48px;
  height: 17px;
  border-bottom: 5px solid #173338;
}

.desktop-stand::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 6px;
  height: 13px;
  background: #173338;
  content: "";
  transform: translateX(-50%);
}

.platform-kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--color-brand-dark);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.platform-panel h3 {
  margin-bottom: 14px;
  font-size: 30px;
}

.platform-panel p {
  max-width: 800px;
  color: var(--color-muted-dark);
  font-size: 16px;
}

.platform-specs {
  display: grid;
  border-top: 1px solid var(--color-line-dark);
  border-bottom: 1px solid var(--color-line-dark);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.platform-specs > div {
  padding: 20px;
  border-right: 1px solid var(--color-line-dark);
}

.platform-specs > div:first-child {
  padding-left: 0;
}

.platform-specs > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.platform-specs span {
  display: block;
  margin-bottom: 5px;
  color: #839194;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.platform-specs strong {
  color: #1d3135;
  font-size: 14px;
}

.platform-panel-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

/* Mobile App */

.mobile-app-section {
  overflow: hidden;
  background:
    linear-gradient(180deg, #081417 0%, #0b191c 100%);
}

.mobile-app-layout {
  display: grid;
  align-items: center;
  gap: 90px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
}

.mobile-visual {
  position: relative;
  min-height: 600px;
}

.mobile-visual::before {
  position: absolute;
  top: 50%;
  left: 40%;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: rgba(124, 207, 76, 0.09);
  content: "";
  filter: blur(20px);
  transform: translate(-50%, -50%);
}

.mobile-visual-primary {
  position: absolute;
  z-index: 2;
  top: 28px;
  left: 0;
  width: min(80%, 510px);
}

.mobile-visual-primary img {
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 26px 52px rgba(0, 0, 0, 0.36));
}

.mobile-visual-secondary {
  position: absolute;
  z-index: 3;
  right: 3%;
  bottom: 6px;
  width: min(31%, 174px);
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 25px;
  background: rgba(12, 24, 27, 0.84);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(12px);
}

.mobile-visual-secondary img {
  width: 100%;
  height: auto;
  border-radius: 19px;
  object-fit: contain;
}

.mobile-visual-label {
  position: absolute;
  z-index: 4;
  right: 9%;
  top: 9%;
  min-width: 160px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(7, 16, 18, 0.88);
  box-shadow: var(--shadow-sm);
}

.mobile-visual-label span {
  display: block;
  margin-bottom: 3px;
  color: #768d90;
  font-size: 9px;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mobile-visual-label strong {
  color: var(--color-white);
  font-size: 14px;
}

.mobile-content h2 {
  margin-bottom: 24px;
}

.mobile-content > p {
  margin-bottom: 34px;
  font-size: 17px;
}

.check-list {
  border-top: 1px solid var(--color-line);
}

.check-list-item {
  display: grid;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--color-line);
  grid-template-columns: 46px 1fr;
}

.check-index {
  display: flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(124, 207, 76, 0.38);
  border-radius: 50%;
  color: var(--color-brand-strong);
  font-size: 11px;
  font-weight: 800;
}

.check-list-item h3 {
  margin-bottom: 8px;
  font-size: 17px;
}

.check-list-item p {
  font-size: 14px;
}

.inline-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
  margin-top: 32px;
}

/* Windows */

.windows-section {
  background: #eef3f3;
  color: var(--color-text-dark);
}

.windows-section .section-heading p,
.windows-copy p {
  color: var(--color-muted-dark);
}

.windows-layout {
  display: grid;
  align-items: center;
  gap: 62px;
  grid-template-columns: minmax(0, 1.4fr) minmax(330px, 0.6fr);
}

.software-window {
  overflow: hidden;
  border: 1px solid rgba(14, 39, 43, 0.16);
  border-radius: 18px;
  background: var(--color-white);
  box-shadow: 0 30px 80px rgba(20, 48, 52, 0.14);
}

.software-window-bar {
  display: grid;
  min-height: 54px;
  align-items: center;
  gap: 18px;
  padding: 0 18px;
  border-bottom: 1px solid var(--color-line-dark);
  background: #e5ecec;
  grid-template-columns: auto 1fr auto;
}

.window-controls {
  display: flex;
  gap: 6px;
}

.window-controls span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #829294;
}

.window-controls span:first-child {
  background: var(--color-danger);
}

.window-controls span:nth-child(2) {
  background: var(--color-warning);
}

.window-controls span:nth-child(3) {
  background: var(--color-brand);
}

.software-window-bar strong {
  color: #3a4b4e;
  font-size: 12px;
}

.window-status {
  color: #718184;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.software-window-main {
  display: grid;
  min-height: 490px;
  grid-template-columns: 158px minmax(0, 1fr);
}

.software-sidebar {
  padding: 18px 10px;
  border-right: 1px solid var(--color-line-dark);
  background: #f5f8f8;
}

.software-sidebar button {
  width: 100%;
  min-height: 40px;
  padding: 8px 12px;
  border-radius: 7px;
  color: #748184;
  font-size: 12px;
  font-weight: 680;
  text-align: left;
}

.software-sidebar button:hover,
.software-sidebar button.is-active {
  background: #dde8e8;
  color: #1d3539;
}

.software-content {
  padding: 34px;
}

.software-summary {
  margin-bottom: 28px;
}

.software-badge {
  display: inline-flex;
  margin-bottom: 13px;
  padding: 6px 9px;
  border-radius: 5px;
  background: rgba(45, 127, 53, 0.11);
  color: var(--color-brand-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.software-summary h3 {
  margin-bottom: 12px;
  font-size: 25px;
}

.software-summary p {
  color: var(--color-muted-dark);
  font-size: 14px;
}

.system-check-grid {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

.system-check {
  display: grid;
  min-height: 68px;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--color-line-dark);
  border-radius: 9px;
  background: #fbfdfd;
  grid-template-columns: 42px 1fr auto;
}

.system-icon {
  display: flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  background: #e5eeee;
  color: #355054;
  font-size: 9px;
  font-weight: 840;
}

.system-check strong,
.system-check small {
  display: block;
}

.system-check strong {
  color: #263b3f;
  font-size: 13px;
}

.system-check small {
  color: #829093;
  font-size: 11px;
}

.check-state {
  padding: 5px 8px;
  border-radius: 99px;
  font-size: 9px;
  font-weight: 800;
}

.check-state.waiting {
  background: rgba(217, 181, 96, 0.16);
  color: #8b6b20;
}

.download-progress {
  margin-bottom: 24px;
}

.progress-heading,
.progress-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.progress-heading {
  margin-bottom: 10px;
  color: #4d6266;
  font-size: 11px;
}

.progress-heading strong {
  color: #718184;
  font-size: 10px;
}

.progress-track {
  height: 7px;
  overflow: hidden;
  border-radius: 99px;
  background: #e2eaea;
}

.progress-track span {
  display: block;
  width: 14%;
  height: 100%;
  border-radius: inherit;
  background:
    repeating-linear-gradient(
      45deg,
      var(--color-brand),
      var(--color-brand) 8px,
      var(--color-brand-strong) 8px,
      var(--color-brand-strong) 16px
    );
}

.progress-meta {
  margin-top: 8px;
  color: #8a989a;
  font-size: 10px;
}

.windows-copy {
  max-width: 410px;
}

.section-number {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--color-brand-dark);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.windows-copy h3 {
  margin-bottom: 18px;
  font-size: 31px;
}

.windows-copy > p {
  margin-bottom: 30px;
}

.feature-list {
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  gap: 5px;
  padding: 17px 0;
  border-bottom: 1px solid var(--color-line-dark);
}

.feature-list li:first-child {
  border-top: 1px solid var(--color-line-dark);
}

.feature-list strong {
  color: #22363a;
  font-size: 14px;
}

.feature-list span {
  color: #718184;
  font-size: 13px;
}

/* Preflight */

.preflight-section {
  background:
    linear-gradient(180deg, #071113 0%, #091719 100%);
}

.preflight-layout {
  display: grid;
  align-items: center;
  gap: 72px;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
}

.preflight-copy h2 {
  margin-bottom: 22px;
}

.preflight-copy > p {
  margin-bottom: 32px;
  font-size: 17px;
}

.diagnostic-list {
  border-top: 1px solid var(--color-line);
}

.diagnostic-item {
  display: grid;
  gap: 15px;
  padding: 18px 0;
  border-bottom: 1px solid var(--color-line);
  grid-template-columns: 13px 1fr;
}

.diagnostic-status {
  width: 9px;
  height: 9px;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--color-brand);
  box-shadow: 0 0 14px rgba(124, 207, 76, 0.55);
}

.diagnostic-item strong {
  display: block;
  margin-bottom: 2px;
  color: var(--color-white);
  font-size: 14px;
}

.diagnostic-item p {
  font-size: 13px;
}

.preflight-visual {
  position: relative;
  padding-bottom: 70px;
}

.preflight-visual > img {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  object-fit: contain;
  box-shadow: var(--shadow-md);
}

.security-console {
  position: absolute;
  right: 6%;
  bottom: 0;
  left: 6%;
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 12px;
  background: rgba(7, 16, 18, 0.9);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(14px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.security-console > div {
  padding: 17px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.security-console > div:last-child {
  border-right: 0;
}

.security-console span,
.security-console strong {
  display: block;
}

.security-console span {
  margin-bottom: 4px;
  color: #718487;
  font-size: 9px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.security-console strong {
  color: #d7e1e2;
  font-size: 11px;
}

/* Experience */

.experience-section {
  background: #f5f8f8;
  color: var(--color-text-dark);
}

.experience-layout {
  display: grid;
  align-items: center;
  gap: 86px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
}

.experience-visual {
  position: relative;
}

.experience-visual::before {
  position: absolute;
  inset: 12% 8%;
  border-radius: 50%;
  background: rgba(124, 207, 76, 0.14);
  content: "";
  filter: blur(35px);
}

.experience-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 650px;
  object-fit: contain;
}

.experience-content h2 {
  margin-bottom: 22px;
}

.experience-content > p {
  margin-bottom: 32px;
  color: var(--color-muted-dark);
  font-size: 17px;
}

.experience-features {
  display: grid;
  border-top: 1px solid var(--color-line-dark);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.experience-features article {
  padding: 24px 20px 24px 0;
  border-right: 1px solid var(--color-line-dark);
  border-bottom: 1px solid var(--color-line-dark);
}

.experience-features article:nth-child(even) {
  padding-right: 0;
  padding-left: 20px;
  border-right: 0;
}

.experience-features article > span {
  display: block;
  margin-bottom: 12px;
  color: var(--color-brand-dark);
  font-size: 10px;
  font-weight: 840;
  letter-spacing: 0.12em;
}

.experience-features h3 {
  margin-bottom: 8px;
  font-size: 17px;
}

.experience-features p {
  color: var(--color-muted-dark);
  font-size: 13px;
}

/* Version */

.version-section {
  position: relative;
  overflow: hidden;
  background: #dfe8e9;
  color: var(--color-text-dark);
}

.version-background {
  position: absolute;
  inset: 0;
}

.version-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
  filter: saturate(0.5);
}

.version-section::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(229, 237, 238, 0.98), rgba(229, 237, 238, 0.68));
  content: "";
}

.version-layout {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  gap: 74px;
  grid-template-columns: minmax(320px, 0.76fr) minmax(0, 1.24fr);
}

.version-heading h2 {
  margin-bottom: 22px;
}

.version-heading p {
  color: var(--color-muted-dark);
  font-size: 17px;
}

.version-console {
  overflow: hidden;
  border: 1px solid rgba(13, 37, 41, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 30px 80px rgba(13, 38, 42, 0.16);
  backdrop-filter: blur(12px);
}

.version-console-header {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 20px;
  border-bottom: 1px solid var(--color-line-dark);
  background: #e7eeee;
}

.version-console-header span {
  color: #40575b;
  font-size: 12px;
  font-weight: 760;
}

.version-console-header strong {
  color: #789;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.version-status-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.version-status-card {
  min-height: 152px;
  padding: 24px;
  border-right: 1px solid var(--color-line-dark);
  border-bottom: 1px solid var(--color-line-dark);
}

.version-status-card:last-child {
  border-right: 0;
}

.version-label {
  display: block;
  margin-bottom: 15px;
  color: #7b8c8f;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.version-status-card strong,
.version-status-card small {
  display: block;
}

.version-status-card strong {
  margin-bottom: 7px;
  color: #20383c;
  font-size: 15px;
}

.version-status-card small {
  color: #849194;
  font-size: 11px;
}

.update-flow {
  padding: 8px 28px 20px;
}

.update-step {
  display: grid;
  min-height: 74px;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-line-dark);
  grid-template-columns: 38px 1fr;
}

.update-step > span {
  display: flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #e3ebeb;
  color: #607275;
  font-size: 10px;
  font-weight: 820;
}

.update-step.is-active > span {
  background: rgba(124, 207, 76, 0.18);
  color: var(--color-brand-dark);
}

.update-step strong,
.update-step small {
  display: block;
}

.update-step strong {
  color: #2b4145;
  font-size: 13px;
}

.update-step small {
  color: #879496;
  font-size: 11px;
}

.version-console > .button {
  margin: 4px 28px 28px;
}

/* FAQ */

.faq-section {
  background:
    linear-gradient(180deg, #081416 0%, #050b0c 100%);
}

.faq-list {
  max-width: 920px;
  margin-inline: auto;
  border-top: 1px solid var(--color-line);
}

.faq-item {
  border-bottom: 1px solid var(--color-line);
}

.faq-item h3 {
  margin: 0;
}

.faq-trigger {
  display: grid;
  width: 100%;
  min-height: 82px;
  align-items: center;
  gap: 20px;
  padding: 20px 4px;
  color: #e8f0f1;
  font-size: 16px;
  font-weight: 720;
  text-align: left;
  grid-template-columns: 1fr 24px;
}

.faq-trigger:hover {
  color: var(--color-brand-strong);
}

.faq-icon {
  position: relative;
  width: 20px;
  height: 20px;
}

.faq-icon::before,
.faq-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  content: "";
  transform: translate(-50%, -50%);
  transition: transform var(--transition);
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-trigger[aria-expanded="true"] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  padding: 0 52px 25px 4px;
}

.faq-answer p {
  max-width: 790px;
  font-size: 15px;
}

.faq-footer {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

/* CTA */

.download-cta-section {
  padding: 62px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background:
    linear-gradient(90deg, #112124 0%, #173329 55%, #102023 100%);
}

.download-cta-layout {
  display: grid;
  align-items: center;
  gap: 50px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.download-cta-brand {
  display: grid;
  align-items: center;
  gap: 24px;
  grid-template-columns: 90px minmax(0, 1fr);
}

.download-cta-brand img {
  width: 88px;
  height: 88px;
  border-radius: 20px;
  object-fit: contain;
}

.download-cta-brand .eyebrow {
  margin-bottom: 8px;
}

.download-cta-brand h2 {
  margin-bottom: 10px;
  font-size: 32px;
}

.download-cta-brand p {
  max-width: 680px;
  font-size: 14px;
}

.download-cta-actions {
  display: grid;
  min-width: 390px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cta-platform-button {
  min-height: 82px;
  padding: 14px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.035);
  text-align: left;
  transition:
    background-color var(--transition),
    color var(--transition);
}

.cta-platform-button:last-child {
  border-right: 0;
}

.cta-platform-button:hover {
  background: rgba(124, 207, 76, 0.11);
}

.cta-platform-button span,
.cta-platform-button strong {
  display: block;
}

.cta-platform-button span {
  margin-bottom: 5px;
  color: #899da0;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cta-platform-button strong {
  color: var(--color-white);
  font-size: 13px;
}

/* Footer */

.site-footer {
  padding: 76px 0 28px;
  background: #030708;
}

.footer-grid {
  display: grid;
  gap: 46px;
  padding-bottom: 50px;
  grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(130px, 0.6fr));
}

.footer-brand img {
  width: 150px;
  height: auto;
  margin-bottom: 22px;
}

.footer-brand p {
  max-width: 390px;
  font-size: 13px;
}

.footer-column {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
}

.footer-column h3 {
  margin-bottom: 10px;
  color: #eef4f4;
  font-size: 14px;
  letter-spacing: 0;
}

.footer-column a,
.footer-column button {
  padding: 0;
  color: #829397;
  font-size: 13px;
  text-align: left;
  transition: color var(--transition);
}

.footer-column a:hover,
.footer-column button:hover {
  color: var(--color-brand-strong);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-bottom p {
  max-width: 700px;
  color: #617174;
  font-size: 11px;
}

/* Toast */

.toast {
  position: fixed;
  z-index: 2000;
  right: 24px;
  bottom: 24px;
  display: flex;
  max-width: min(420px, calc(100% - 32px));
  min-height: 54px;
  align-items: center;
  gap: 12px;
  padding: 13px 17px;
  border: 1px solid rgba(124, 207, 76, 0.28);
  border-radius: 10px;
  background: rgba(8, 19, 21, 0.96);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
  color: var(--color-white);
  backdrop-filter: blur(14px);
  animation: toast-in 220ms ease both;
}

.toast-icon {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--color-brand);
  box-shadow: 0 0 12px rgba(124, 207, 76, 0.7);
}

.toast-message {
  font-size: 13px;
  font-weight: 650;
}

@keyframes toast-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.noscript-message {
  position: fixed;
  z-index: 3000;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 14px;
  border-radius: 8px;
  background: #fff1c4;
  color: #332400;
  font-size: 13px;
  text-align: center;
}

/* Responsive */

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

  .hero-layout {
    gap: 42px;
    grid-template-columns: minmax(0, 0.9fr) minmax(450px, 1.1fr);
  }

  .console-body {
    grid-template-columns: 1fr 180px;
  }

  .mobile-app-layout,
  .experience-layout {
    gap: 55px;
  }

  .windows-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(310px, 0.65fr);
  }

  .download-cta-layout {
    grid-template-columns: 1fr;
  }

  .download-cta-actions {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 960px) {
  :root {
    --header-height: 70px;
  }

  .desktop-nav,
  .header-download-button {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-section {
    min-height: auto;
    padding-top: calc(var(--header-height) + 70px);
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

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

  .hero-console {
    max-width: 760px;
  }

  .console-body {
    min-height: 410px;
  }

  .mobile-app-layout,
  .preflight-layout,
  .experience-layout,
  .version-layout {
    grid-template-columns: 1fr;
  }

  .mobile-visual {
    min-height: 570px;
  }

  .mobile-content,
  .preflight-copy,
  .experience-content,
  .version-heading {
    max-width: 760px;
  }

  .windows-layout {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 78px 0;
  }

  h1 {
    font-size: clamp(38px, 11vw, 54px);
  }

  h2 {
    font-size: clamp(31px, 9vw, 43px);
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .brand-link img {
    width: 132px;
  }

  .hero-section {
    padding-bottom: 62px;
  }

  .hero-intro {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .hero-console {
    border-radius: 15px;
  }

  .console-topbar {
    grid-template-columns: auto 1fr;
  }

  .console-state {
    display: none;
  }

  .console-body {
    min-height: auto;
    padding: 20px;
    grid-template-columns: 1fr;
  }

  .hero-device-stage img {
    width: min(100%, 370px);
    max-height: 330px;
  }

  .console-platform-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .console-platform {
    min-height: 90px;
    padding: 12px;
    transform: none !important;
  }

  .platform-meta {
    display: none;
  }

  .platform-action {
    grid-row: auto;
    grid-column: 1 / -1;
  }

  .console-footer {
    gap: 12px;
    grid-template-columns: 1fr;
  }

  .console-footer > div {
    padding: 0 0 12px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .console-footer > div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .platform-tabs {
    overflow-x: auto;
    grid-template-columns: repeat(3, minmax(110px, 1fr));
  }

  .platform-panel {
    gap: 28px;
    padding: 28px 20px;
  }

  .platform-panel-copy {
    gap: 22px;
    grid-template-columns: 86px 1fr;
  }

  .platform-icon-box,
  .ios-preview,
  .desktop-symbol {
    width: 80px;
  }

  .platform-icon-box {
    height: 80px;
    border-radius: 17px;
  }

  .platform-icon-box img {
    width: 56px;
    height: 56px;
  }

  .ios-preview {
    height: 115px;
  }

  .ios-preview img {
    height: 104px;
  }

  .desktop-screen {
    width: 78px;
    height: 52px;
    border-width: 4px;
  }

  .platform-panel h3 {
    font-size: 24px;
  }

  .platform-specs {
    grid-template-columns: 1fr;
  }

  .platform-specs > div {
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid var(--color-line-dark);
  }

  .platform-specs > div:last-child {
    border-bottom: 0;
  }

  .platform-panel-actions,
  .inline-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .platform-panel-actions .button,
  .inline-actions .button,
  .inline-actions .text-link {
    width: 100%;
    justify-content: center;
  }

  .mobile-app-layout {
    gap: 44px;
  }

  .mobile-visual {
    min-height: 470px;
  }

  .mobile-visual-primary {
    width: 86%;
  }

  .mobile-visual-secondary {
    right: 0;
    width: 31%;
  }

  .mobile-visual-label {
    right: 3%;
    top: 3%;
    min-width: 140px;
  }

  .software-window-main {
    grid-template-columns: 1fr;
  }

  .software-sidebar {
    display: grid;
    overflow-x: auto;
    padding: 9px;
    border-right: 0;
    border-bottom: 1px solid var(--color-line-dark);
    grid-template-columns: repeat(4, minmax(120px, 1fr));
  }

  .software-content {
    padding: 24px 18px;
  }

  .system-check {
    grid-template-columns: 38px 1fr;
  }

  .check-state {
    grid-column: 2;
    justify-self: start;
  }

  .progress-heading,
  .progress-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .preflight-layout,
  .experience-layout,
  .version-layout {
    gap: 48px;
  }

  .preflight-visual {
    padding-bottom: 0;
  }

  .security-console {
    position: static;
    margin-top: 12px;
    grid-template-columns: 1fr;
  }

  .security-console > div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .security-console > div:last-child {
    border-bottom: 0;
  }

  .experience-features {
    grid-template-columns: 1fr;
  }

  .experience-features article,
  .experience-features article:nth-child(even) {
    padding: 20px 0;
    border-right: 0;
  }

  .version-status-grid {
    grid-template-columns: 1fr;
  }

  .version-status-card {
    min-height: auto;
    border-right: 0;
  }

  .faq-trigger {
    min-height: 74px;
    font-size: 15px;
  }

  .faq-answer {
    padding-right: 20px;
  }

  .download-cta-brand {
    align-items: flex-start;
    grid-template-columns: 70px 1fr;
  }

  .download-cta-brand img {
    width: 68px;
    height: 68px;
    border-radius: 15px;
  }

  .download-cta-brand h2 {
    font-size: 27px;
  }

  .download-cta-actions {
    grid-template-columns: 1fr;
  }

  .cta-platform-button {
    min-height: 70px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .cta-platform-button:last-child {
    border-bottom: 0;
  }

  .footer-grid {
    gap: 36px 24px;
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .toast {
    right: 16px;
    bottom: 16px;
    left: 16px;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(calc(100% - 22px), var(--container));
  }

  .header-inner {
    gap: 12px;
  }

  .hero-copy h1 {
    font-size: 39px;
  }

  .hero-platform-status {
    gap: 7px;
  }

  .hero-platform-status span {
    font-size: 11px;
  }

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

  .console-platform {
    min-height: 68px;
  }

  .platform-panel-copy {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .platform-icon-box,
  .ios-preview,
  .desktop-symbol {
    width: 94px;
  }

  .mobile-visual {
    min-height: 400px;
  }

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

  .mobile-visual-secondary {
    width: 34%;
  }

  .check-list-item {
    gap: 13px;
    grid-template-columns: 36px 1fr;
  }

  .check-index {
    width: 32px;
    height: 32px;
  }

  .software-window-bar {
    gap: 8px;
    padding: 0 12px;
  }

  .software-window-bar strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .window-status {
    display: none;
  }

  .download-cta-brand {
    grid-template-columns: 1fr;
  }

  .download-cta-brand img {
    width: 76px;
    height: 76px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
img[src*="app-icon"] { object-fit: contain; }
