:root {
  --bg: #ffffff;
  --text: #070c18;
  --muted: #6c7280;
  --soft: #f6f8fc;
  --surface: rgba(255, 255, 255, 0.88);
  --line: rgba(28, 42, 72, 0.1);
  --blue: #0b67ff;
  --blue-2: #2457ff;
  --violet: #6257ee;
  --green: #22c55e;
  --shadow: 0 28px 70px rgba(29, 52, 110, 0.18);
  --soft-shadow: 0 18px 45px rgba(23, 43, 91, 0.1);
  --radius: 28px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 85% 16%, rgba(20, 100, 255, 0.18), transparent 26rem),
    radial-gradient(circle at 82% 62%, rgba(104, 82, 255, 0.16), transparent 22rem),
    #fff;
}

body,
button {
  font: inherit;
}

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

svg {
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: min(calc(100% - 72px), 1780px);
  margin: 0 auto;
  padding: 20px 0;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 25px;
  font-weight: 780;
  letter-spacing: 0;
}

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

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(26px, 4vw, 56px);
  font-size: 18px;
  font-weight: 680;
  color: #242937;
}

.site-nav a,
.download-link {
  transition: color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.download-link:hover {
  color: var(--blue);
}

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

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 24px rgba(30, 40, 70, 0.06);
}

.language-switcher button {
  min-height: 30px;
  border: 0;
  border-radius: 999px;
  padding: 0 10px;
  color: #6c7280;
  background: transparent;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.language-switcher button[aria-pressed="true"] {
  color: #fff;
  background: var(--blue);
}

.language-switcher button:focus-visible {
  outline: 3px solid rgba(11, 103, 255, 0.28);
  outline-offset: 2px;
}

.nav-language {
  display: none;
}

.download-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #222837;
  font-size: 18px;
  font-weight: 720;
}

.download-link svg,
.button svg,
.platform-pill svg {
  width: 20px;
  height: 20px;
}

.download-link path,
.button path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 17px;
  font-weight: 780;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button:focus-visible,
.menu-toggle:focus-visible,
.site-nav a:focus-visible,
.download-link:focus-visible {
  outline: 3px solid rgba(11, 103, 255, 0.28);
  outline-offset: 3px;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, #0068ff, #1255f4);
  box-shadow: 0 13px 24px rgba(15, 101, 255, 0.28);
}

.button-secondary {
  color: #151b2a;
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--line);
  box-shadow: 0 12px 30px rgba(30, 40, 70, 0.1);
}

.button-large {
  min-height: 64px;
  padding: 0 36px;
  border-radius: 12px;
  font-size: 20px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border: 0;
  background: transparent;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 7px auto;
  background: var(--text);
  border-radius: 99px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(420px, 0.82fr) minmax(660px, 1.18fr);
  align-items: center;
  gap: clamp(38px, 5vw, 86px);
  width: min(calc(100% - 120px), 1760px);
  min-height: 760px;
  margin: 18px auto 0;
  padding: 40px 0 70px;
}

.hero-copy {
  max-width: 690px;
  padding-top: 20px;
}

.platform-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  margin-bottom: 30px;
  border-radius: 999px;
  color: #6251df;
  background: #f0edff;
  font-size: 18px;
  font-weight: 760;
}

.platform-pill path {
  fill: currentColor;
}

.hero h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(58px, 5.3vw, 94px);
  line-height: 1.08;
  font-weight: 880;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.hero h1 .title-accent {
  display: block;
  color: transparent;
  background: linear-gradient(100deg, #086cff 4%, #6657ee 96%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-subtitle {
  max-width: 620px;
  margin: 28px 0 34px;
  color: #697182;
  font-size: clamp(20px, 1.55vw, 27px);
  line-height: 1.55;
  font-weight: 520;
}

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

.compatibility {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 28px 0 0;
  color: #7c8494;
  font-size: 19px;
  font-weight: 660;
}

.compatibility [data-i18n] {
  white-space: nowrap;
}

.compatibility .separator {
  width: 1px;
  height: 18px;
  background: #c7cedc;
}

.hero-art {
  position: relative;
  min-width: 0;
}

.hero-glow {
  position: absolute;
  inset: 11% -3% -7% 5%;
  z-index: 0;
  border-radius: 50px;
  background:
    radial-gradient(circle at 58% 24%, rgba(8, 108, 255, 0.22), transparent 28rem),
    radial-gradient(circle at 68% 76%, rgba(89, 80, 238, 0.26), transparent 30rem);
  filter: blur(12px);
}

.app-window {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 650px;
  overflow: hidden;
  border: 1px solid rgba(30, 49, 90, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}

.window-dots {
  position: absolute;
  top: 21px;
  left: 25px;
  display: flex;
  gap: 10px;
}

.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
}

.dot.red { background: #ff4a4a; }
.dot.yellow { background: #ffbd2f; }
.dot.green { background: #22c55e; }

.mock-sidebar {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 78px 14px 26px;
  border-right: 1px solid rgba(34, 50, 88, 0.08);
  background: rgba(248, 250, 255, 0.7);
}

.mock-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 12px 36px;
  font-size: 25px;
}

.side-item {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 9px;
  color: #2d3444;
  font-size: 14px;
  font-weight: 760;
}

.side-item svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.side-item.active {
  color: var(--blue);
  background: #edf4ff;
  box-shadow: inset 3px 0 0 var(--blue);
}

.side-spacer {
  flex: 1;
}

.side-item.quit {
  margin-top: 24px;
}

.mock-content {
  padding: 54px 40px 36px 26px;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 94px;
  padding: 18px 17px;
  border: 1px solid rgba(33, 51, 86, 0.08);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 24px rgba(30, 42, 78, 0.08);
}

.stat-card small,
.app-row small,
.disk-card small {
  display: block;
  color: #737b8c;
  font-size: 12px;
  font-weight: 700;
}

.stat-card strong {
  display: block;
  margin-top: 4px;
  font-size: 16px;
}

.stat-icon,
.big-drive {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: #eaf1ff;
}

.stat-icon::before,
.big-drive::before {
  content: "";
  width: 27px;
  height: 18px;
  border: 3px solid var(--blue);
  border-top-width: 5px;
  border-radius: 5px;
}

.stat-icon.apps::before {
  width: 25px;
  height: 25px;
  border-width: 0;
  border-radius: 4px;
  background:
    linear-gradient(var(--blue), var(--blue)) 0 0 / 10px 10px,
    linear-gradient(var(--blue), var(--blue)) 15px 0 / 10px 10px,
    linear-gradient(var(--blue), var(--blue)) 0 15px / 10px 10px,
    linear-gradient(var(--blue), var(--blue)) 15px 15px / 10px 10px;
  background-repeat: no-repeat;
}

.stat-icon.shield {
  background: #eafff1;
}

.stat-icon.shield::before {
  width: 24px;
  height: 28px;
  border: 3px solid var(--green);
  border-radius: 12px 12px 8px 8px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(270px, 1fr) minmax(285px, 0.9fr);
  gap: 16px;
}

.panel {
  border: 1px solid rgba(33, 51, 86, 0.08);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 24px rgba(30, 42, 78, 0.06);
}

.apps-panel {
  padding: 18px 17px;
}

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

.panel h2 {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
}

.panel button {
  min-height: 34px;
  border: 0;
  border-radius: 7px;
  padding: 0 12px;
  color: #fff;
  background: var(--blue);
  font-size: 12px;
  font-weight: 760;
}

.app-list {
  display: grid;
  gap: 14px;
}

.app-row {
  display: grid;
  grid-template-columns: 18px 38px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 11px;
  min-height: 47px;
}

.check {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: var(--blue);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.3);
}

.check::after {
  content: "";
  display: block;
  width: 8px;
  height: 4px;
  margin: 5px 0 0 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.app-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  overflow: hidden;
  border-radius: 8px;
  color: #fff;
  font-size: 15px;
  font-weight: 820;
}

.app-icon.fcp {
  background: conic-gradient(from 45deg, #6ee7b7, #facc15, #ef4444, #60a5fa, #6ee7b7);
}

.app-icon.resolve {
  background:
    radial-gradient(circle at 50% 26%, #60a5fa 0 17%, transparent 18%),
    radial-gradient(circle at 28% 64%, #f87171 0 17%, transparent 18%),
    radial-gradient(circle at 72% 64%, #facc15 0 17%, transparent 18%),
    #263241;
}

.app-icon.premiere {
  background: #1c2291;
  color: #b8c7ff;
}

.app-icon.cut {
  background: #111;
  font-size: 26px;
}

.app-row strong {
  display: block;
  overflow: hidden;
  color: #171b28;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.folder {
  width: 17px;
  height: 13px;
  border: 2px solid #b2bbc9;
  border-radius: 3px;
}

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

.disk-panel,
.security-panel {
  padding: 18px;
}

.refresh {
  color: #536073;
  font-size: 25px;
}

.disk-card {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 108px;
  padding: 18px;
  border: 1px solid rgba(33, 51, 86, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.76);
}

.big-drive {
  width: 58px;
  height: 58px;
}

.disk-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 17px;
}

.security-panel h2 {
  margin-bottom: 20px;
}

.switch-row,
.select-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 42px;
  color: #1d2636;
  font-size: 12px;
  font-weight: 720;
}

.switch-row i {
  position: relative;
  width: 34px;
  height: 19px;
  border-radius: 99px;
  background: var(--blue);
}

.switch-row i::after {
  content: "";
  position: absolute;
  top: 3px;
  right: 3px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #fff;
}

.select-row strong {
  padding: 7px 9px;
  border-radius: 7px;
  background: #f3f5f9;
  color: #1d2636;
  font-size: 11px;
  white-space: nowrap;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: min(calc(100% - 160px), 1400px);
  margin: 0 auto;
  padding: 42px 0 62px;
}

.feature-strip article {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 95px;
  padding: 0 34px;
  border-right: 1px solid #e0e5ef;
}

.feature-strip article:last-child {
  border-right: 0;
}

.feature-strip h2 {
  margin: 0 0 8px;
  font-size: 21px;
}

.feature-strip p {
  margin: 0;
  color: #747c8e;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 560;
}

.strip-icon {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 16px;
}

.strip-icon svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.strip-icon.blue { color: var(--blue); background: #edf4ff; }
.strip-icon.green { color: var(--green); background: #eafff1; }
.strip-icon.violet { color: #7c3aed; background: #f3edff; }
.strip-icon.cyan { color: #0ea5e9; background: #eaf7ff; }

.works-with {
  width: min(calc(100% - 80px), 1180px);
  margin: 0 auto;
  padding: 38px 0 74px;
  text-align: center;
}

.works-with p {
  margin: 0 0 30px;
  color: #707888;
  font-size: 18px;
  font-weight: 720;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(28px, 5vw, 72px);
  color: #8f97a8;
  font-size: clamp(20px, 2vw, 31px);
  font-weight: 760;
}

.section {
  width: min(calc(100% - 120px), 1320px);
  margin: 0 auto;
  padding: 92px 0;
}

.section-split {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(460px, 1.2fr);
  gap: 70px;
  align-items: start;
}

.section-kicker {
  display: block;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 15px;
  font-weight: 820;
  text-transform: uppercase;
}

.section h2,
.section-heading h2 {
  margin: 0;
  font-size: clamp(42px, 4vw, 64px);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-copy p,
.section-heading p,
.safety-card p,
.download-panel p {
  margin: 22px 0 0;
  color: #687083;
  font-size: 20px;
  line-height: 1.6;
  font-weight: 520;
}

.download-panel .download-note {
  max-width: 640px;
  color: #7b8495;
  font-size: 15px;
  line-height: 1.55;
}

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

.feature-list article,
.faq-grid article {
  min-height: 170px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--soft-shadow);
}

.feature-list strong,
.faq-grid h3 {
  display: block;
  margin: 0 0 12px;
  font-size: 21px;
}

.feature-list p,
.faq-grid p {
  margin: 0;
  color: #6f7788;
  font-size: 16px;
  line-height: 1.62;
}

.safety-band {
  width: min(calc(100% - 80px), 1400px);
}

.safety-card,
.download-panel {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(360px, 1.1fr);
  gap: 60px;
  align-items: center;
  padding: clamp(38px, 6vw, 72px);
  border: 1px solid rgba(36, 70, 146, 0.09);
  border-radius: 32px;
  background:
    radial-gradient(circle at 92% 12%, rgba(34, 197, 94, 0.14), transparent 19rem),
    linear-gradient(135deg, #f8fbff, #ffffff);
  box-shadow: var(--soft-shadow);
}

.safety-card ul {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.safety-card li {
  position: relative;
  padding: 20px 22px 20px 54px;
  border: 1px solid rgba(34, 197, 94, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  color: #2d3545;
  font-size: 17px;
  font-weight: 660;
}

.safety-card li::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 23px;
  width: 14px;
  height: 8px;
  border-left: 3px solid var(--green);
  border-bottom: 3px solid var(--green);
  transform: rotate(-45deg);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.demo-section {
  padding-top: 82px;
}

.demo-frame {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: min(100%, 1180px);
  min-height: 660px;
  margin: 0 auto;
  padding: 0;
  border: 1px solid rgba(12, 101, 255, 0.14);
  border-radius: 28px;
  background:
    radial-gradient(circle at 11% 8%, rgba(222, 234, 251, 0.88), transparent 28rem),
    radial-gradient(circle at 92% 92%, rgba(209, 221, 249, 0.78), transparent 25rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 253, 0.92)),
    #fff;
  box-shadow: var(--shadow);
}

.demo-backdrop {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.demo-backdrop::before,
.demo-backdrop::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(229, 236, 249, 0.82);
}

.demo-backdrop::before {
  top: 18px;
  left: -62px;
  width: 430px;
  height: 430px;
}

.demo-backdrop::after {
  right: -130px;
  bottom: -190px;
  width: 520px;
  height: 360px;
}

.demo-settings-window {
  position: absolute;
  right: 42px;
  bottom: 70px;
  width: min(760px, 69%);
  height: 500px;
  overflow: hidden;
  border: 1px solid rgba(29, 49, 88, 0.14);
  border-radius: 24px;
  background: rgba(233, 237, 240, 0.92);
  box-shadow: 0 34px 70px rgba(42, 56, 82, 0.24);
  animation: demo-settings 18s ease-in-out infinite;
}

.demo-titlebar {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(31, 44, 68, 0.08);
  background: rgba(255, 255, 255, 0.96);
  color: #4a505d;
  font-size: 15px;
  font-weight: 820;
}

.demo-titlebar span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.demo-titlebar span:nth-child(1) { background: #ff4b4b; }
.demo-titlebar span:nth-child(2) { background: #ffbf16; }
.demo-titlebar span:nth-child(3) { background: #24c75f; }
.demo-titlebar strong { margin-left: 12px; }

.demo-settings-body {
  padding: 30px;
}

.demo-brand-strip {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  font-size: 30px;
  font-weight: 860;
}

.demo-brand-strip img,
.demo-notification img {
  width: 42px;
  height: 42px;
}

.demo-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.demo-stat,
.demo-app-list,
.demo-drive-panel,
.demo-security-panel,
.demo-menu-summary,
.demo-menu-row,
.demo-toggle-row,
.demo-drive-card {
  border: 1px solid rgba(34, 49, 80, 0.08);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 34px rgba(40, 52, 78, 0.08);
}

.demo-stat {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 0 14px;
  align-items: center;
  min-height: 96px;
  padding: 18px;
  border-radius: 13px;
}

.demo-stat span:not(.demo-stat-icon) {
  color: #7a828f;
  font-size: 13px;
  font-weight: 760;
}

.demo-stat strong {
  font-size: 19px;
  line-height: 1.15;
}

.demo-stat-icon {
  grid-row: span 2;
  width: 54px;
  height: 54px;
  border-radius: 13px;
  background: #e9f1ff;
}

.demo-stat-icon.disk {
  position: relative;
}

.demo-stat-icon.disk::before {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  top: 18px;
  height: 18px;
  border-radius: 7px 7px 10px 10px;
  background: var(--blue);
}

.demo-stat-icon.disk::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 14px;
  height: 4px;
  border-radius: 99px;
  background: #fff;
}

.demo-stat-icon.apps {
  background:
    linear-gradient(var(--blue), var(--blue)) 16px 15px / 11px 11px no-repeat,
    linear-gradient(var(--blue), var(--blue)) 31px 15px / 11px 11px no-repeat,
    linear-gradient(var(--blue), var(--blue)) 16px 31px / 11px 11px no-repeat,
    linear-gradient(var(--blue), var(--blue)) 31px 31px / 11px 11px no-repeat,
    #edf4ff;
}

.demo-stat-icon.shield {
  position: relative;
  background: #e8f9ee;
}

.demo-stat-icon.shield::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 13px;
  width: 20px;
  height: 26px;
  border-radius: 7px 7px 10px 10px;
  background: var(--green);
  clip-path: polygon(50% 0, 100% 15%, 92% 70%, 50% 100%, 8% 70%, 0 15%);
}

.demo-stat-icon.shield::after {
  content: "";
  position: absolute;
  left: 25px;
  top: 23px;
  width: 9px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.demo-settings-grid {
  display: grid;
  grid-template-columns: minmax(310px, 1fr) minmax(270px, 0.88fr);
  gap: 18px;
}

.demo-app-list,
.demo-drive-panel,
.demo-security-panel {
  border-radius: 15px;
}

.demo-app-list {
  min-height: 330px;
  padding: 18px;
}

.demo-panel-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: #151b27;
  font-size: 17px;
  font-weight: 820;
}

.demo-panel-title button {
  min-height: 34px;
  margin-left: auto;
  padding: 0 16px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: var(--blue);
  font-size: 13px;
  font-weight: 820;
}

.demo-mini-grid {
  width: 16px;
  height: 16px;
  background:
    linear-gradient(var(--blue), var(--blue)) 0 0 / 6px 6px no-repeat,
    linear-gradient(var(--blue), var(--blue)) 10px 0 / 6px 6px no-repeat,
    linear-gradient(var(--blue), var(--blue)) 0 10px / 6px 6px no-repeat,
    linear-gradient(var(--blue), var(--blue)) 10px 10px / 6px 6px no-repeat;
}

.demo-app-row {
  display: grid;
  grid-template-columns: 20px 38px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 64px;
  color: #242b36;
}

.demo-app-row strong {
  align-self: end;
  font-size: 15px;
  line-height: 1.15;
}

.demo-app-row small {
  grid-column: 3;
  align-self: start;
  color: #8a929f;
  font-size: 12px;
  font-weight: 680;
}

.demo-check,
.demo-app-row > span:first-child:not(.demo-app-badge) {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: #dfe5ed;
}

.demo-check {
  position: relative;
  background: var(--blue);
}

.demo-check::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 5px;
  width: 7px;
  height: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.demo-app-badge {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  box-shadow: 0 6px 14px rgba(23, 30, 44, 0.12);
}

.demo-app-badge.finalcut {
  background:
    linear-gradient(140deg, #111 0 22%, transparent 22%),
    conic-gradient(from 220deg, #ff4060, #f8d241, #46d17a, #45a7ff, #9d5cff, #ff4060);
}

.demo-app-badge.resolve {
  background: radial-gradient(circle at 32% 36%, #47d5ff 0 15%, transparent 16%),
    radial-gradient(circle at 68% 36%, #f3d34d 0 15%, transparent 16%),
    radial-gradient(circle at 50% 70%, #ff6d66 0 15%, transparent 16%),
    #17213d;
}

.demo-app-badge.premiere {
  display: grid;
  place-items: center;
  color: #b4a7ff;
  background: #19127c;
  font-size: 18px;
  font-weight: 860;
}

.demo-app-badge.dark {
  background: #070a12;
}

.demo-detail-stack {
  display: grid;
  gap: 18px;
}

.demo-drive-panel,
.demo-security-panel {
  padding: 18px;
}

.demo-drive-glyph {
  width: 22px;
  height: 14px;
  border: 2px solid var(--blue);
  border-radius: 6px 6px 8px 8px;
}

.demo-drive-card {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 0 14px;
  align-items: center;
  min-height: 96px;
  padding: 16px;
  border-radius: 12px;
}

.demo-drive-card strong {
  align-self: end;
  font-size: 23px;
}

.demo-drive-card small {
  color: #7d8591;
  font-size: 14px;
  font-weight: 680;
}

.demo-security-panel {
  display: grid;
  gap: 14px;
}

.demo-security-panel > strong {
  font-size: 20px;
}

.demo-security-panel div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: #4c5666;
  font-size: 13px;
  font-weight: 680;
}

.demo-switch {
  position: relative;
  display: inline-block;
  width: 62px;
  height: 36px;
  border-radius: 999px;
  background: var(--blue);
}

.demo-switch::after {
  content: "";
  position: absolute;
  top: 4px;
  right: 4px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.14);
}

.demo-switch.small {
  width: 46px;
  height: 27px;
}

.demo-switch.small::after {
  width: 21px;
  height: 21px;
  top: 3px;
  right: 3px;
}

.demo-select {
  padding: 7px 12px;
  border-radius: 8px;
  background: #eef0f3;
  color: #202631;
  font-weight: 820;
}

.demo-menu-card {
  position: absolute;
  left: 72px;
  top: 86px;
  z-index: 3;
  width: 334px;
  padding: 18px;
  border: 1px solid rgba(27, 39, 65, 0.14);
  border-radius: 24px;
  background: rgba(234, 239, 241, 0.95);
  box-shadow: 0 32px 68px rgba(31, 43, 65, 0.24);
  animation: demo-menu 18s ease-in-out infinite;
}

.demo-menu-head {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}

.demo-app-icon {
  grid-row: 1;
  grid-column: 1;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 16px;
  background: #d9e8ff;
}

.demo-app-icon img {
  width: 42px;
  height: 42px;
}

.demo-app-icon.is-menu-on {
  opacity: 0;
  background: #d9f2df;
  animation: demo-on-icon 18s ease-in-out infinite;
}

.demo-app-icon.is-menu-on img {
  filter: hue-rotate(270deg) saturate(1.7);
}

.demo-menu-head strong {
  display: block;
  font-size: 25px;
  line-height: 1.1;
}

.demo-menu-status {
  display: block;
  color: var(--blue);
  font-size: 15px;
  font-weight: 820;
}

.demo-menu-status.status-on {
  color: var(--green);
  opacity: 0;
  transform: translateY(-20px);
  animation: demo-status-on 18s ease-in-out infinite;
}

.demo-menu-status.status-off {
  animation: demo-status-off 18s ease-in-out infinite;
}

.demo-menu-summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px 14px;
  margin-bottom: 16px;
  padding: 16px;
  border-radius: 13px;
}

.demo-menu-summary span {
  color: #6f7781;
  font-size: 14px;
  font-weight: 760;
}

.demo-menu-summary strong {
  font-size: 18px;
  text-align: right;
}

.demo-menu-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}

.demo-menu-actions button {
  min-height: 44px;
  border: 0;
  border-radius: 9px;
  font-size: 15px;
  font-weight: 840;
}

.demo-blue-action {
  color: #fff;
  background: var(--blue);
}

.demo-gray-action {
  color: #7f878d;
  background: #dce1e4;
  animation: demo-safe-button 18s ease-in-out infinite;
}

.demo-menu-row,
.demo-toggle-row {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 48px;
  margin-bottom: 10px;
  padding: 0 14px;
  border-radius: 10px;
  font-size: 17px;
}

.demo-row-icon {
  width: 26px;
  color: #687078;
  font-size: 22px;
  text-align: center;
}

.demo-toggle-row {
  justify-content: space-between;
  width: 210px;
  min-height: 54px;
}

.demo-menu-separator {
  height: 1px;
  margin: 16px 0;
  background: rgba(116, 127, 139, 0.22);
}

.demo-notification {
  position: absolute;
  top: 94px;
  right: 66px;
  z-index: 5;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 18px;
  align-items: start;
  width: min(360px, 34%);
  padding: 22px;
  border: 1px solid rgba(29, 68, 130, 0.15);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 48px rgba(32, 45, 72, 0.17);
  opacity: 0;
  transform: translateY(14px) scale(0.96);
  animation: demo-notification 18s ease-in-out infinite;
}

.demo-notification img {
  width: 34px;
  height: 34px;
}

.demo-notification strong {
  display: block;
  margin-bottom: 8px;
  color: #252d3b;
  font-size: 18px;
}

.demo-notification span {
  color: #7f8795;
  font-size: 13px;
  font-weight: 640;
}

.demo-cursor {
  position: absolute;
  z-index: 7;
  left: 210px;
  top: 340px;
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 8px 10px rgba(11, 20, 38, 0.2));
  animation: demo-cursor 18s ease-in-out infinite;
}

.demo-cursor::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #07111f;
  clip-path: polygon(0 0, 0 100%, 27% 78%, 43% 100%, 58% 91%, 43% 68%, 76% 68%);
}

.demo-cursor::after {
  content: "";
  position: absolute;
  left: -18px;
  top: -18px;
  width: 48px;
  height: 48px;
  border: 3px solid var(--blue);
  border-radius: 50%;
  opacity: 0.9;
  animation: demo-click-ring 18s ease-in-out infinite;
}

.demo-progress {
  position: absolute;
  left: 72px;
  right: 72px;
  bottom: 38px;
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(171, 185, 207, 0.42);
}

.demo-progress span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  animation: demo-progress 18s linear infinite;
}

@keyframes demo-settings {
  0%, 18% { opacity: 0.84; transform: translateX(26px) scale(0.96); }
  28%, 74% { opacity: 1; transform: translateX(0) scale(1); }
  86%, 100% { opacity: 0.72; transform: translateX(18px) scale(0.98); }
}

@keyframes demo-menu {
  0%, 22% { transform: translate(0, 0) scale(1); }
  34%, 60% { transform: translate(-22px, 24px) scale(0.93); }
  74%, 100% { transform: translate(0, 0) scale(1); }
}

@keyframes demo-status-off {
  0%, 52% { opacity: 1; transform: translateY(0); }
  58%, 100% { opacity: 0; transform: translateY(-20px); }
}

@keyframes demo-status-on {
  0%, 52% { opacity: 0; transform: translateY(-20px); }
  58%, 100% { opacity: 1; transform: translateY(-20px); }
}

@keyframes demo-on-icon {
  0%, 52% { opacity: 0; }
  58%, 100% { opacity: 1; }
}

@keyframes demo-safe-button {
  0%, 52% { color: #858d93; background: #dce1e4; }
  58%, 100% { color: #121820; background: #d6dcdf; }
}

@keyframes demo-notification {
  0%, 42% { opacity: 0; transform: translateY(14px) scale(0.96); }
  50%, 72% { opacity: 1; transform: translateY(0) scale(1); }
  82%, 100% { opacity: 0; transform: translateY(-10px) scale(0.98); }
}

@keyframes demo-cursor {
  0%, 12% { opacity: 1; transform: translate(0, 0); }
  24% { transform: translate(88px, -24px); }
  36% { transform: translate(520px, -84px); }
  50% { transform: translate(650px, -18px); }
  64% { transform: translate(740px, 205px); }
  78%, 100% { opacity: 1; transform: translate(250px, 32px); }
}

@keyframes demo-click-ring {
  0%, 19%, 31%, 45%, 61%, 100% { opacity: 0; transform: scale(0.72); }
  22%, 34%, 48%, 64% { opacity: 0.95; transform: scale(1); }
  26%, 38%, 52%, 68% { opacity: 0; transform: scale(1.34); }
}

@keyframes demo-progress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.pricing-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 860px;
  margin: 0 auto;
  padding: 36px;
  border: 1px solid rgba(12, 101, 255, 0.16);
  border-radius: 28px;
  background:
    radial-gradient(circle at 86% 20%, rgba(11, 103, 255, 0.1), transparent 18rem),
    #fff;
  box-shadow: var(--soft-shadow);
}

.price-label {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 17px;
  font-weight: 820;
}

.pricing-card strong {
  display: block;
  font-size: 72px;
  line-height: 1;
}

.price-stack {
  display: grid;
  gap: 8px;
}

.price-original {
  width: fit-content;
  border-radius: 999px;
  background: rgba(12, 101, 255, 0.08);
  color: #687083;
  font-size: 17px;
  font-weight: 760;
  line-height: 1;
  padding: 8px 12px;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.pricing-card p {
  margin: 12px 0 0;
  color: #687083;
  font-size: 18px;
}

.pricing-card form {
  flex: 0 0 auto;
  margin: 0;
}

.pricing-card button.button {
  min-width: 190px;
}

.download-panel {
  background:
    radial-gradient(circle at 82% 12%, rgba(11, 103, 255, 0.14), transparent 20rem),
    radial-gradient(circle at 25% 95%, rgba(98, 87, 238, 0.12), transparent 18rem),
    #fff;
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

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

.setup-grid article {
  min-height: 320px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--soft-shadow);
}

.setup-grid h3 {
  margin: 0;
  font-size: 23px;
  line-height: 1.2;
}

.setup-grid ul {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.setup-grid li {
  position: relative;
  padding-left: 28px;
  color: #647085;
  font-size: 16px;
  line-height: 1.62;
  font-weight: 540;
}

.setup-grid li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 6px rgba(12, 101, 255, 0.09);
}

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

.timeline {
  display: grid;
  max-width: 960px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.timeline article {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 28px;
  border-bottom: 1px solid var(--line);
}

.timeline article:last-child {
  border-bottom: 0;
}

.timeline time {
  color: var(--blue);
  font-size: 18px;
  font-weight: 820;
}

.timeline p {
  margin: 0;
  color: #5f687a;
  font-size: 18px;
  line-height: 1.6;
}

.subpage-main {
  min-height: 62vh;
}

.subpage-hero {
  padding-top: 110px;
  padding-bottom: 64px;
}

.subpage-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(50px, 5vw, 82px);
  line-height: 1.08;
  font-weight: 880;
  letter-spacing: 0;
}

.subpage-hero p {
  max-width: 760px;
  margin: 26px 0 0;
  color: #687083;
  font-size: clamp(19px, 1.55vw, 25px);
  line-height: 1.58;
  font-weight: 520;
}

.page-card-grid,
.success-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  padding-top: 0;
}

.page-card-grid article,
.license-card,
.activation-card {
  min-height: 320px;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(circle at 90% 18%, rgba(11, 103, 255, 0.09), transparent 16rem),
    rgba(255, 255, 255, 0.84);
  box-shadow: var(--soft-shadow);
}

.page-card-grid h2,
.license-card h2,
.activation-card h2 {
  margin: 0;
  font-size: clamp(30px, 3vw, 45px);
  line-height: 1.12;
  letter-spacing: 0;
}

.page-card-grid p,
.license-card p,
.activation-card p {
  margin: 20px 0 0;
  color: #687083;
  font-size: 18px;
  line-height: 1.65;
}

.page-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.page-list.ordered {
  counter-reset: page-step;
}

.page-list li {
  position: relative;
  padding-left: 34px;
  color: #5f687a;
  font-size: 17px;
  line-height: 1.62;
  font-weight: 650;
}

.page-list li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 7px rgba(11, 103, 255, 0.09);
}

.page-list.ordered li {
  counter-increment: page-step;
  padding-left: 46px;
}

.page-list.ordered li::before {
  content: counter(page-step);
  top: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: #fff;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 9px 18px rgba(11, 103, 255, 0.18);
  font-size: 14px;
  font-weight: 820;
}

.license-card {
  display: grid;
  align-content: start;
  gap: 20px;
}

.small-label {
  margin: 0;
  color: var(--blue);
  font-size: 15px;
  font-weight: 820;
  text-transform: uppercase;
}

.license-card code {
  display: block;
  width: fit-content;
  max-width: 100%;
  overflow-wrap: anywhere;
  padding: 18px 20px;
  border: 1px solid rgba(11, 103, 255, 0.14);
  border-radius: 14px;
  color: #14203a;
  background: #f7faff;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 820;
  line-height: 1.35;
}

.site-header form,
.hero-actions form {
  margin: 0;
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 14px;
  width: min(calc(100% - 72px), 1320px);
  margin: 20px auto 0;
  padding: 64px 0 54px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.site-footer p,
.site-footer small {
  margin: 0;
  color: #7a8291;
}

.site-footer small {
  font-size: 14px;
}

.site-footer small a {
  color: #4d596d;
  font-weight: 760;
}

@media (max-width: 1320px) {
  .site-header {
    width: min(calc(100% - 42px), 1180px);
  }

  .hero {
    grid-template-columns: 1fr;
    width: min(calc(100% - 56px), 1120px);
    min-height: auto;
    padding-top: 24px;
  }

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

  .app-window {
    min-height: 600px;
  }

  .feature-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(calc(100% - 72px), 900px);
  }

  .feature-strip article:nth-child(2) {
    border-right: 0;
  }

  .feature-strip article:nth-child(n + 3) {
    border-top: 1px solid #e0e5ef;
  }

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

  .demo-menu-card {
    left: 42px;
  }

  .demo-settings-window {
    right: 30px;
    width: 72%;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--soft-shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 16px;
  }

  .nav-language {
    display: inline-flex;
    align-self: flex-start;
    margin: 12px 12px 4px;
  }

  .header-actions {
    display: none;
  }

  .hero {
    width: min(calc(100% - 36px), 760px);
  }

  .hero h1 {
    font-size: clamp(42px, 10.5vw, 70px);
  }

  .platform-pill {
    margin-bottom: 22px;
  }

  .hero-actions {
    gap: 14px;
  }

  .button-large {
    width: 100%;
  }

  .compatibility {
    flex-wrap: wrap;
  }

  .app-window {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .mock-sidebar {
    display: none;
  }

  .mock-content {
    padding: 60px 18px 18px;
  }

  .stat-row,
  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .right-stack {
    grid-template-columns: 1fr;
  }

  .section,
  .safety-band {
    width: min(calc(100% - 36px), 760px);
    padding: 70px 0;
  }

  .section-split,
  .safety-card,
  .download-panel {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .feature-list,
  .setup-grid,
  .faq-grid,
  .page-card-grid,
  .success-layout {
    grid-template-columns: 1fr;
  }

  .subpage-hero {
    padding-top: 74px;
  }

  .subpage-hero h1 {
    font-size: clamp(40px, 10vw, 66px);
  }

  .download-actions {
    justify-content: stretch;
  }

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

  .demo-frame {
    min-height: 760px;
  }

  .demo-menu-card {
    left: 34px;
    top: 42px;
  }

  .demo-settings-window {
    left: 96px;
    right: 24px;
    bottom: 72px;
    width: auto;
  }

  .demo-notification {
    top: 298px;
    right: 28px;
    width: 320px;
  }

  .demo-stat-grid {
    grid-template-columns: 1fr 1fr;
  }

  .demo-stat-grid .demo-stat:nth-child(3) {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .brand {
    font-size: 22px;
  }

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

  .hero {
    padding-bottom: 38px;
  }

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

  .hero-subtitle,
  .section-copy p,
  .section-heading p,
  .safety-card p,
  .download-panel p {
    font-size: 18px;
  }

  .feature-strip {
    grid-template-columns: 1fr;
    width: min(calc(100% - 36px), 560px);
    padding-bottom: 36px;
  }

  .feature-strip article {
    padding: 22px 0;
    border-right: 0;
    border-top: 1px solid #e0e5ef;
  }

  .feature-strip article:first-child {
    border-top: 0;
  }

  .works-with {
    width: min(calc(100% - 36px), 560px);
  }

  .compatibility {
    display: grid;
    gap: 10px;
  }

  .compatibility [data-i18n] {
    white-space: normal;
  }

  .compatibility .separator {
    display: none;
  }

  .logo-row {
    gap: 18px 28px;
    font-size: 20px;
  }

  .section h2,
  .section-heading h2 {
    font-size: 38px;
  }

  .pricing-card {
    align-items: stretch;
    flex-direction: column;
    padding: 28px;
  }

  .pricing-card strong {
    font-size: 58px;
  }

  .pricing-card button.button {
    width: 100%;
  }

  .demo-frame {
    border-radius: 20px;
    min-height: 1040px;
  }

  .demo-menu-card {
    left: 18px;
    right: 18px;
    top: 24px;
    width: auto;
    padding: 16px;
  }

  .demo-menu-head {
    grid-template-columns: 58px 1fr;
    margin-bottom: 14px;
  }

  .demo-app-icon {
    width: 56px;
    height: 56px;
  }

  .demo-menu-summary {
    padding: 14px;
  }

  .demo-menu-actions button {
    font-size: 14px;
  }

  .demo-settings-window {
    left: 18px;
    right: 18px;
    top: 568px;
    bottom: auto;
    width: auto;
    height: 420px;
    border-radius: 20px;
  }

  .demo-settings-body {
    padding: 18px;
  }

  .demo-brand-strip {
    margin-bottom: 14px;
    font-size: 24px;
  }

  .demo-brand-strip img {
    width: 36px;
    height: 36px;
  }

  .demo-stat-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .demo-stat {
    min-height: 74px;
    padding: 12px;
  }

  .demo-stat-grid .demo-stat:nth-child(n + 3),
  .demo-detail-stack {
    display: none;
  }

  .demo-settings-grid {
    grid-template-columns: 1fr;
  }

  .demo-app-list {
    min-height: 238px;
    padding: 14px;
  }

  .demo-app-row {
    min-height: 52px;
  }

  .demo-app-row:nth-of-type(n + 5) {
    display: none;
  }

  .demo-notification {
    display: none;
  }

  .demo-cursor {
    display: none;
  }

  .demo-progress {
    left: 24px;
    right: 24px;
    bottom: 24px;
  }

  .setup-grid article {
    min-height: auto;
    padding: 24px;
  }

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

body .site-header .site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(26px, 4vw, 56px);
  color: #242937;
  font-size: 18px;
  font-weight: 680;
}

body .site-header .site-nav a {
  padding: 0;
  text-decoration: none;
}

@media (max-width: 980px) {
  body .site-header .site-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--soft-shadow);
  }

  body .site-header .site-nav.is-open {
    display: flex;
  }

  body .site-header .site-nav a {
    padding: 14px 16px;
  }
}

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

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