:root {
  --background: #f5f6f8;
  --surface: #ffffff;
  --surface-soft: rgba(255, 255, 255, 0.78);
  --surface-strong: rgba(255, 255, 255, 0.94);
  --surface-glass: rgba(255, 255, 255, 0.68);
  --ink: #1d1d1f;
  --ink-2: #53575e;
  --ink-3: #7b7f87;
  --border: #d8dce1;
  --border-strong: #bfc5cc;
  --accent: #ff8617;
  --accent-hover: #ff9a2e;
  --accent-pressed: #e87300;
  --accent-soft: #fff0e4;
  --cool: #2f6f7e;
  --cool-soft: rgba(47, 111, 126, 0.08);
  --success: #2bae66;
  --shadow: 0 30px 86px rgba(24, 29, 36, 0.15);
  --shadow-soft: 0 16px 38px rgba(24, 29, 36, 0.09);
  --shadow-hover: 0 24px 58px rgba(24, 29, 36, 0.13);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86) 0%, rgba(245, 246, 248, 0) 520px),
    linear-gradient(135deg, rgba(47, 111, 126, 0.065) 0%, rgba(47, 111, 126, 0) 36%),
    linear-gradient(28deg, rgba(255, 134, 23, 0) 52%, rgba(255, 134, 23, 0.055) 100%),
    var(--background);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(29, 29, 31, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 29, 31, 0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 68%);
}

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(calc(100% - 32px), var(--max));
  min-height: 76px;
  margin: 16px auto 0;
  padding: 10px 12px 10px 16px;
  border: 1px solid rgba(216, 220, 225, 0.78);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72));
  box-shadow: 0 16px 48px rgba(24, 29, 36, 0.08);
  backdrop-filter: blur(24px) saturate(1.22);
  transition: box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(191, 197, 204, 0.88);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.82));
  box-shadow: 0 20px 58px rgba(24, 29, 36, 0.13);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 760;
  font-size: 17px;
}

.brand img {
  display: block;
  border-radius: 11px;
  box-shadow: 0 4px 12px rgba(24, 29, 36, 0.12);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 650;
}

.nav-cta {
  margin-left: auto;
}

.main-nav a {
  position: relative;
  transition: color 160ms ease;
}

.main-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), rgba(47, 111, 126, 0.42));
  opacity: 0;
  transform: scaleX(0.55);
  transition: opacity 160ms ease, transform 160ms ease;
  content: "";
}

.main-nav a:hover {
  color: var(--ink);
}

.main-nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.language-control {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.language-control::after {
  display: none;
  content: none;
}

.language-control select {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.language-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 146px;
  min-height: 42px;
  border: 1px solid rgba(216, 220, 225, 0.9);
  border-radius: 13px;
  padding: 0 13px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 700;
  outline: none;
  cursor: pointer;
}

.language-button::after {
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  content: "";
}

.language-button:focus-visible {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(255, 134, 23, 0.13);
}

.language-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 80;
  display: grid;
  gap: 4px;
  width: 220px;
  max-height: min(420px, calc(100vh - 130px));
  overflow-y: auto;
  border: 1px solid rgba(191, 197, 204, 0.76);
  border-radius: 18px;
  padding: 8px;
  background: rgba(33, 42, 48, 0.94);
  box-shadow: 0 22px 52px rgba(24, 29, 36, 0.28);
  backdrop-filter: blur(18px) saturate(1.12);
}

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

.language-menu button {
  min-height: 38px;
  border: 0;
  border-radius: 11px;
  padding: 0 12px;
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 760;
  text-align: left;
  cursor: pointer;
}

.language-menu button:hover,
.language-menu button:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  outline: none;
}

.language-menu button[aria-selected="true"] {
  background: var(--accent);
  color: #fff;
}

.nav-cta,
.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 13px;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 760;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.nav-cta,
.button-primary {
  border: 1px solid var(--accent-pressed);
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 22px rgba(255, 134, 23, 0.22);
}

.nav-cta:hover,
.button-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 14px 30px rgba(255, 134, 23, 0.28);
  transform: translateY(-1px);
}

.button-secondary {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(24, 29, 36, 0.06);
}

.button-secondary:hover {
  border-color: var(--border-strong);
  box-shadow: 0 14px 28px rgba(24, 29, 36, 0.09);
  transform: translateY(-1px);
}

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

.anchor-target {
  position: relative;
  top: -98px;
  display: block;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  gap: 62px;
  align-items: center;
  min-height: calc(100vh - 100px);
  padding: 94px 0 74px;
}

.hero-copy h1,
.section-copy h2,
.section-heading h2,
.download-panel h2 {
  margin: 0;
  color: var(--ink);
  font-weight: 820;
  letter-spacing: 0;
}

.hero-copy h1 {
  max-width: 650px;
  font-size: clamp(46px, 6vw, 76px);
  line-height: 0.96;
  text-wrap: balance;
}

.hero-copy::before {
  display: block;
  width: 68px;
  height: 3px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), rgba(47, 111, 126, 0.52));
  content: "";
}

.hero-copy p {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--ink-2);
  font-size: 20px;
  line-height: 1.55;
}

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

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  color: var(--ink-3);
  font-size: 13px;
  font-weight: 700;
}

.hero-notes span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border: 1px solid rgba(216, 220, 225, 0.8);
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.56);
}

.hero-stage {
  position: relative;
  min-height: 640px;
  perspective: 1100px;
}

.desk-scene {
  position: absolute;
  inset: 24px 0 48px 3%;
  border: 1px solid rgba(216, 220, 225, 0.82);
  border-radius: 32px;
  background:
    linear-gradient(152deg, rgba(255, 255, 255, 0.98), rgba(245, 247, 249, 0.68) 56%, rgba(255, 245, 236, 0.74)),
    var(--surface);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    var(--shadow);
  overflow: hidden;
}

.desk-scene::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(118deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0) 34%),
    linear-gradient(90deg, rgba(47, 111, 126, 0.065), rgba(47, 111, 126, 0) 44%),
    linear-gradient(rgba(29, 29, 31, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 29, 31, 0.026) 1px, transparent 1px);
  background-size: auto, auto, 40px 40px, 40px 40px;
  mask-image: linear-gradient(to bottom, black 0%, rgba(0, 0, 0, 0.72) 62%, transparent 100%);
  content: "";
}

.desk-scene::after {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 46px;
  height: 24px;
  border-radius: 50%;
  background: rgba(24, 29, 36, 0.08);
  filter: blur(10px);
  pointer-events: none;
  content: "";
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 34px;
  padding: 0 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 700;
}

.window-bar i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.window-bar i:nth-child(1) { background: #ff5f57; }
.window-bar i:nth-child(2) { background: #ffbd2e; }
.window-bar i:nth-child(3) { background: #28c840; }
.window-bar span { margin-left: auto; }

.terminal-lines {
  display: grid;
  gap: 9px;
  padding: 18px 16px 22px;
  color: rgba(255, 255, 255, 0.72);
  font-family: "SF Mono", ui-monospace, Menlo, Consolas, monospace;
  font-size: 12px;
}

.terminal-lines span {
  opacity: 0;
  animation: typeIn 4.8s ease infinite;
}

.terminal-lines span:nth-child(2) { animation-delay: 0.35s; }
.terminal-lines span:nth-child(3) { animation-delay: 0.7s; }

.monitor {
  position: absolute;
  border: 7px solid #20252b;
  border-radius: 12px;
  background: #f8fafc;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 24px 54px rgba(24, 29, 36, 0.16);
}

.monitor::before {
  position: absolute;
  left: 50%;
  bottom: -58px;
  width: 14px;
  height: 50px;
  border-radius: 8px;
  background: #5b6068;
  transform: translateX(-50%);
  content: "";
}

.monitor::after {
  position: absolute;
  left: 50%;
  bottom: -68px;
  width: 82px;
  height: 12px;
  border-radius: 999px;
  background: #3e454d;
  transform: translateX(-50%);
  content: "";
}

.monitor-main {
  left: 58px;
  top: 120px;
  width: 300px;
  height: 190px;
}

.monitor-large {
  left: 32px;
  top: 82px;
  width: 384px;
  height: 242px;
}

.monitor-small {
  right: 24px;
  top: 78px;
  width: 160px;
  height: 238px;
}

.monitor-small::before {
  bottom: -34px;
  width: 9px;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(180deg, #747c86, #424a53);
}

.monitor-small::after {
  bottom: -42px;
  width: 48px;
  height: 8px;
  background: linear-gradient(180deg, #59616b, #353c44);
  box-shadow: 0 8px 16px rgba(24, 29, 36, 0.16);
}

[data-screen] {
  transition: opacity 200ms ease, filter 200ms ease, transform 200ms ease;
}

[data-screen].is-off {
  opacity: 1;
  filter: none;
}

.monitor.is-off {
  background: linear-gradient(135deg, #0f1317, #242a31);
}

[data-screen].is-off .screen-content > * {
  opacity: 0;
  visibility: hidden;
  animation: none;
}

.macbook.is-off .screensaver-preview {
  opacity: 0;
  visibility: hidden;
}

[data-screen].is-on {
  opacity: 1;
  filter: none;
}

[data-screen].is-off .screen-content,
.macbook.is-off .macbook-screen {
  background: linear-gradient(135deg, #0f1317, #242a31);
}

[data-screen].is-off .screen-content {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: none;
}

.screen-content,
.macbook-screen {
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  gap: 10px;
  padding: 20px;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #fdfefe, #eef2f6);
  transition: opacity 180ms ease;
}

.screen-content > span {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: #d8dce1;
}

.screen-content > span:nth-child(1) { width: 70%; }
.screen-content > span:nth-child(2) { width: 52%; }
.screen-content > span:nth-child(3) { width: 86%; }

.code-screen {
  padding: 0;
  background:
    radial-gradient(circle at 72% 18%, rgba(47, 111, 126, 0.14), transparent 38%),
    linear-gradient(135deg, #10151b, #151b22 54%, #0f141a);
}

.code-screen .terminal-lines {
  padding: 18px;
}

.motion-screen {
  grid-template-columns: 1fr;
  place-content: center;
  gap: 16px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), transparent 38%),
    radial-gradient(circle at 72% 20%, rgba(255, 134, 23, 0.25), transparent 36%),
    linear-gradient(145deg, #f9fafb, #eceff3 48%, #fff4e9);
}

.motion-screen span {
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, #d8dce1, var(--accent));
  animation: previewPulse 2.4s ease-in-out infinite;
}

.motion-screen span:nth-child(2) {
  width: 72%;
  animation-delay: 0.2s;
}

.motion-screen span:nth-child(3) {
  width: 54%;
  animation-delay: 0.4s;
}

.motion-screen span:nth-child(4) {
  width: 86%;
  animation-delay: 0.6s;
}

.screen-off-label {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
  place-items: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 830;
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease;
}

.screen-off-label::before {
  display: block;
  width: 30px;
  height: 20px;
  border: 2px solid currentColor;
  border-radius: 5px;
  background:
    linear-gradient(135deg, transparent 43%, currentColor 44%, currentColor 54%, transparent 55%);
  content: "";
}

[data-screen].is-off .screen-off-label,
.macbook.is-off .screen-off-label {
  opacity: 1;
}

.macbook {
  position: absolute;
  left: 22px;
  bottom: 50px;
  width: 462px;
  transition: opacity 200ms ease, filter 200ms ease;
}

.macbook-screen {
  position: relative;
  display: block;
  height: 244px;
  border: 6px solid #101316;
  border-radius: 12px 12px 7px 7px;
  background: linear-gradient(135deg, #14191f, #2d353d);
  background-clip: padding-box;
  padding: 0;
  overflow: hidden;
}

.macbook-screen::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 5px 5px 2px 2px;
  background: linear-gradient(135deg, #0f1317, #242a31);
  opacity: 0;
  pointer-events: none;
  content: "";
}

.macbook.is-off .macbook-screen::before {
  opacity: 1;
}

.screensaver-preview {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: 5px 5px 2px 2px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 196, 116, 0.88), transparent 22%),
    radial-gradient(circle at 74% 24%, rgba(47, 111, 126, 0.18), transparent 30%),
    radial-gradient(circle at 76% 28%, rgba(255, 134, 23, 0.32), transparent 28%),
    linear-gradient(145deg, #fbfcfd 0%, #eef2f6 42%, #fff4ea 100%);
  transition: opacity 180ms ease, visibility 180ms ease;
}

.screensaver-preview::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(29, 29, 31, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 29, 31, 0.04) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at 55% 42%, black 0%, transparent 70%);
  opacity: 0.46;
  pointer-events: none;
  content: "";
}

.screensaver-preview::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(112deg, rgba(255, 255, 255, 0.68), transparent 34%),
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.88), transparent 42%);
  pointer-events: none;
  content: "";
}

.screensaver-preview span {
  position: absolute;
  display: block;
  pointer-events: none;
}

.screensaver-glow {
  left: 13%;
  top: 12%;
  width: 76%;
  height: 76%;
  border-radius: 48% 52% 42% 58%;
  background:
    radial-gradient(circle at 24% 36%, rgba(255, 255, 255, 0.78), transparent 32%),
    radial-gradient(circle at 70% 54%, rgba(255, 134, 23, 0.28), transparent 36%);
  filter: blur(1px);
  animation: screensaverFloat 8s ease-in-out infinite alternate;
}

.screensaver-ribbon {
  width: 66%;
  height: 34%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.18), rgba(255, 134, 23, 0.82), rgba(255, 210, 149, 0.32));
  filter: blur(0.2px);
  transform-origin: center;
}

.screensaver-ribbon-a {
  left: -5%;
  top: 48%;
  transform: rotate(-12deg);
  animation: ribbonDriftA 7s ease-in-out infinite alternate;
}

.screensaver-ribbon-b {
  right: -16%;
  top: 21%;
  height: 28%;
  opacity: 0.78;
  transform: rotate(18deg);
  animation: ribbonDriftB 7.6s ease-in-out infinite alternate;
}

.screensaver-orb {
  right: 12%;
  bottom: 16%;
  width: 90px;
  height: 90px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.64), rgba(255, 134, 23, 0.34));
  box-shadow: 0 20px 46px rgba(255, 134, 23, 0.18);
  transform: rotate(12deg);
  animation: orbPulse 6.4s ease-in-out infinite alternate;
}

.screensaver-line {
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(29, 29, 31, 0.26), transparent);
  opacity: 0.38;
}

.screensaver-line-a {
  left: 10%;
  bottom: 20%;
  width: 58%;
  animation: lineSlide 5.8s ease-in-out infinite alternate;
}

.screensaver-line-b {
  right: 12%;
  top: 26%;
  width: 42%;
  animation: lineSlide 6.2s ease-in-out infinite alternate-reverse;
}

.macbook-base {
  height: 12px;
  margin: 0 -18px;
  border-radius: 0 0 22px 22px;
  background: linear-gradient(180deg, #cdd2d8, #9098a2);
}

.macbook-base::after {
  display: block;
  width: 76px;
  height: 4px;
  margin: 0 auto;
  border-radius: 999px;
  background: #747c85;
  content: "";
}

.popover-demo {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 5;
  width: min(314px, 58%);
  padding: 14px;
  border: 1px solid rgba(191, 197, 204, 0.86);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(250, 251, 252, 0.84));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 30px 78px rgba(24, 29, 36, 0.22);
  backdrop-filter: blur(20px) saturate(1.14);
}

.popover-demo::before {
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: 25px;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0));
  pointer-events: none;
  content: "";
}

.popover-demo button {
  cursor: pointer;
}

.popover-topline,
.display-row,
.menu-actions {
  display: flex;
  align-items: center;
}

.popover-topline {
  justify-content: space-between;
  padding: 4px 4px 14px 6px;
  color: var(--ink-2);
  font-size: 13px;
}

.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink-2);
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(24, 29, 36, 0.06);
}

.icon-button svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-button.is-spinning svg {
  animation: spinRefresh 430ms ease-out;
}

.display-row {
  gap: 12px;
  min-height: 72px;
  padding: 11px;
  border: 1px solid rgba(216, 220, 225, 0.9);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.86));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 12px 26px rgba(24, 29, 36, 0.075);
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.display-row + .display-row {
  margin-top: 10px;
}

.display-row:hover {
  border-color: rgba(191, 197, 204, 0.98);
  box-shadow: 0 16px 30px rgba(24, 29, 36, 0.09);
  transform: translateY(-1px);
}

.display-row > div:nth-child(2) {
  min-width: 0;
  flex: 1;
}

.display-row strong {
  display: block;
  font-size: 14px;
  line-height: 1.2;
}

.display-row span {
  display: block;
  margin-top: 4px;
  color: var(--ink-3);
  font-size: 11px;
  font-weight: 650;
}

.compact-row {
  opacity: 0.82;
}

.display-row.is-off {
  opacity: 1;
}

.display-row.is-protected .toggle {
  display: none;
}

.display-icon {
  position: relative;
  flex: 0 0 36px;
  width: 36px;
  height: 30px;
}

.display-icon::before {
  position: absolute;
  inset: 4px 3px 9px;
  border: 3px solid #111315;
  border-radius: 4px;
  content: "";
}

.display-icon::after {
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 20px;
  height: 3px;
  border-radius: 999px;
  background: #111315;
  transform: translateX(-50%);
  content: "";
}

.laptop-icon::before {
  inset: 5px 5px 12px;
  border-width: 3px;
  border-radius: 4px 4px 2px 2px;
}

.laptop-icon::after {
  left: 3px;
  right: 3px;
  bottom: 4px;
  width: auto;
  height: 4px;
  border-radius: 0 0 8px 8px;
  transform: none;
}

.vertical-icon {
  transform: rotate(90deg) scale(0.86);
}

.toggle {
  position: relative;
  flex: 0 0 auto;
  width: 48px;
  height: 30px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: #eef0f3;
  cursor: pointer;
  box-shadow: inset 0 1px 2px rgba(24, 29, 36, 0.08);
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.toggle::after {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(24, 29, 36, 0.2);
  transition: transform 160ms ease;
  content: "";
}

.toggle.is-on {
  border-color: var(--accent-pressed);
  background: var(--accent);
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.22), 0 8px 16px rgba(255, 134, 23, 0.22);
}

.toggle.is-on::after {
  transform: translateX(18px);
}

.menu-actions {
  gap: 8px;
  margin-top: 12px;
}

.menu-actions button {
  flex: 1;
  min-height: 36px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  color: var(--ink);
  font-size: 12px;
  font-weight: 760;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.menu-actions button[data-demo-reset] {
  background: var(--accent);
  border-color: var(--accent-pressed);
  color: #fff;
}

.menu-actions button:hover {
  border-color: var(--border-strong);
  box-shadow: 0 10px 18px rgba(24, 29, 36, 0.08);
  transform: translateY(-1px);
}

.pain-section,
.workflow-section,
.pricing-section,
.download-section,
.support-section {
  padding: 96px 0;
}

.pricing-section {
  padding-bottom: 42px;
}

.pain-section,
.support-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.34)),
    var(--cool-soft);
  border-top: 1px solid rgba(216, 220, 225, 0.58);
  border-bottom: 1px solid rgba(216, 220, 225, 0.58);
}

.split-section,
.support-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  gap: 64px;
  align-items: start;
}

.section-copy h2,
.section-heading h2,
.download-panel h2 {
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.02;
  text-wrap: balance;
}

.section-copy p,
.section-heading p,
.download-panel p {
  margin: 18px 0 0;
  color: var(--ink-2);
  font-size: 18px;
}

.pain-list,
.faq-list,
.support-stack {
  display: grid;
  gap: 12px;
}

.pain-list article,
.price-card,
.feature-compare,
.license-form,
.download-panel,
.faq-list details {
  border: 1px solid rgba(216, 220, 225, 0.88);
  border-radius: var(--radius-md);
  background: var(--surface-strong);
  box-shadow: var(--shadow-soft);
}

.pain-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  padding: 22px;
}

.pain-list span {
  color: var(--accent);
  font-weight: 820;
}

.pain-list h3,
.price-card h3,
.license-form h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.18;
}

.pain-list p,
.price-card p,
.license-form p,
.faq-list p {
  margin: 8px 0 0;
  color: var(--ink-2);
}

.pain-list article p {
  grid-column: 2;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 46px;
}

.workflow-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(216, 220, 225, 0.9);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(250, 251, 252, 0.8));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    var(--shadow-soft);
  overflow: hidden;
}

.workflow-track::before {
  position: absolute;
  left: 32px;
  right: 32px;
  top: 52px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 134, 23, 0.34), rgba(47, 111, 126, 0.26), rgba(216, 220, 225, 0.18));
  content: "";
}

.workflow-track article {
  position: relative;
  min-height: 280px;
  padding: 32px;
  transition: background 180ms ease;
}

.workflow-track article:hover {
  background: rgba(255, 255, 255, 0.48);
}

.workflow-track article + article {
  border-left: 1px solid rgba(216, 220, 225, 0.86);
}

.step-index {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 13px;
  background: var(--accent-soft);
  color: var(--accent-pressed);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.78);
  font-weight: 840;
}

.workflow-track h3 {
  margin: 28px 0 0;
  font-size: 28px;
  line-height: 1.05;
}

.workflow-track p {
  margin: 14px 0 0;
  color: var(--ink-2);
}

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

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 440px;
  padding: 30px;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.price-card::before {
  position: absolute;
  left: 28px;
  right: 28px;
  top: 0;
  height: 3px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, rgba(47, 111, 126, 0.28), rgba(216, 220, 225, 0));
  content: "";
}

.price-card:hover {
  border-color: rgba(191, 197, 204, 0.98);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.price-card-pro {
  border-color: rgba(255, 134, 23, 0.45);
  background:
    linear-gradient(180deg, rgba(255, 240, 228, 0.72), rgba(255, 255, 255, 0.96)),
    linear-gradient(135deg, rgba(255, 134, 23, 0.12), rgba(47, 111, 126, 0.05));
}

.price-card-pro::before {
  background: linear-gradient(90deg, var(--accent), rgba(255, 134, 23, 0.18));
}

.price {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: 40px;
  font-weight: 840;
  line-height: 1;
}

.price-card ul {
  display: grid;
  gap: 13px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 25px;
  color: var(--ink-2);
  font-weight: 650;
}

.price-card li::before {
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(255, 134, 23, 0.12);
  content: "";
}

.feature-compare {
  margin-top: 22px;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 251, 252, 0.88)),
    linear-gradient(135deg, rgba(47, 111, 126, 0.06), rgba(255, 134, 23, 0.08));
  overflow: hidden;
}

.compare-copy {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.compare-copy h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.08;
}

.compare-copy p {
  max-width: 560px;
  margin: 0;
  color: var(--ink-2);
  font-weight: 610;
}

.feature-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.feature-table {
  width: 100%;
  min-width: 620px;
  border-collapse: separate;
  border-spacing: 0;
  color: var(--ink);
}

.feature-table th,
.feature-table td {
  border-top: 1px solid rgba(216, 220, 225, 0.86);
  padding: 15px 16px;
  text-align: center;
}

.feature-table thead th {
  border-top: 0;
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 820;
  text-transform: uppercase;
}

.feature-table th:first-child {
  width: 56%;
  text-align: left;
}

.feature-table tbody th {
  color: var(--ink);
  font-weight: 720;
}

.feature-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.55);
}

.state {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 19px;
  font-weight: 860;
  line-height: 1;
}

.state-yes {
  background: rgba(255, 134, 23, 0.14);
  color: var(--accent-pressed);
}

.state-no {
  background: rgba(118, 126, 136, 0.1);
  color: var(--ink-3);
}

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

.license-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 18px;
  padding: 24px;
}

.license-form label {
  font-size: 13px;
  font-weight: 780;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.form-row input {
  min-width: 0;
  min-height: 48px;
  border: 1px solid var(--border);
  border-radius: 13px;
  padding: 0 14px;
  background: #fff;
  color: var(--ink);
  outline: none;
}

.form-row input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(255, 134, 23, 0.14);
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--success);
  font-size: 13px;
  font-weight: 700;
}

.download-section {
  padding-top: 20px;
}

.download-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 36px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(245, 247, 249, 0.86)),
    linear-gradient(90deg, rgba(47, 111, 126, 0.08), rgba(255, 134, 23, 0.08));
}

.download-panel > div:first-child {
  max-width: 690px;
}

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

.faq-list details {
  padding: 22px 24px;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.faq-list details:hover {
  border-color: rgba(191, 197, 204, 0.98);
  box-shadow: var(--shadow-hover);
  transform: translateY(-1px);
}

.faq-list summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--ink);
  cursor: pointer;
  font-size: 18px;
  font-weight: 780;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  opacity: 0.58;
  transform: rotate(45deg);
  transition: transform 160ms ease;
  content: "";
}

.faq-list details[open] summary::after {
  transform: rotate(225deg) translate(-2px, -2px);
}

.policy-links,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.policy-links {
  border: 1px solid rgba(216, 220, 225, 0.88);
  border-radius: var(--radius-md);
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 251, 252, 0.88));
  box-shadow: var(--shadow-soft);
}

.policy-links a,
.footer-links a {
  color: var(--ink);
  font-weight: 760;
}

.policy-links a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border: 1px solid var(--border);
  border-radius: 11px;
  padding: 0 12px;
  background: #fff;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.policy-links a:hover,
.footer-links a:hover {
  color: var(--accent-pressed);
}

.policy-links a:hover {
  border-color: rgba(255, 134, 23, 0.36);
  background: var(--accent-soft);
  transform: translateY(-1px);
}

.site-footer {
  border-top: 1px solid rgba(216, 220, 225, 0.86);
  padding: 34px 0 42px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.46), rgba(245, 246, 248, 0.9));
  color: var(--ink-3);
  font-size: 14px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.footer-inner .brand {
  color: var(--ink);
}

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  color: var(--ink);
  font-weight: 700;
}

.footer-links {
  justify-content: center;
}

.footer-links a {
  transition: color 160ms ease;
}

.footer-separator {
  color: var(--ink-3);
}

.legal-page {
  padding: 84px 0 104px;
}

.legal-hero {
  max-width: 820px;
}

.legal-hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(42px, 6vw, 68px);
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.legal-hero p {
  margin: 18px 0 0;
  color: var(--ink-2);
  font-size: 19px;
}

.legal-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 28px;
  align-items: start;
  margin-top: 42px;
}

.legal-card,
.legal-nav {
  border: 1px solid rgba(216, 220, 225, 0.88);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 251, 252, 0.9));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    var(--shadow-soft);
}

.legal-card {
  padding: 38px;
}

.legal-card h2 {
  margin: 34px 0 0;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.16;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p,
.legal-card li {
  color: var(--ink-2);
  line-height: 1.68;
}

.legal-card p {
  margin: 10px 0 0;
}

.legal-card ul {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding-left: 20px;
}

.legal-card a {
  color: var(--accent-pressed);
  font-weight: 760;
}

.legal-nav {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 8px;
  padding: 18px;
}

.legal-nav a {
  min-height: 40px;
  border-radius: 11px;
  padding: 9px 10px;
  color: var(--ink);
  font-weight: 760;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.legal-nav a:hover {
  background: var(--accent-soft);
  color: var(--accent-pressed);
  transform: translateX(2px);
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal:not(.is-visible) {
  transform: translateY(8px);
}

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

@keyframes typeIn {
  0% { opacity: 0; transform: translateY(4px); }
  18% { opacity: 1; transform: translateY(0); }
  78% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0.45; transform: translateY(0); }
}

@keyframes previewPulse {
  0%, 100% { transform: translateX(0); opacity: 0.62; }
  50% { transform: translateX(12px); opacity: 1; }
}

@keyframes screensaverFloat {
  from { transform: translate3d(-8px, 6px, 0) scale(1.02); }
  to { transform: translate3d(10px, -8px, 0) scale(1.08); }
}

@keyframes ribbonDriftA {
  from { transform: translate3d(-10px, 5px, 0) rotate(-12deg) scale(1); }
  to { transform: translate3d(20px, -10px, 0) rotate(-8deg) scale(1.08); }
}

@keyframes ribbonDriftB {
  from { transform: translate3d(10px, -4px, 0) rotate(18deg) scale(1); }
  to { transform: translate3d(-16px, 9px, 0) rotate(14deg) scale(1.07); }
}

@keyframes orbPulse {
  from { transform: translate3d(0, 0, 0) rotate(12deg) scale(0.96); opacity: 0.72; }
  to { transform: translate3d(-14px, -10px, 0) rotate(18deg) scale(1.08); opacity: 0.95; }
}

@keyframes lineSlide {
  from { transform: translateX(-14px); }
  to { transform: translateX(18px); }
}

@keyframes spinRefresh {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.purchase-modal[hidden] {
  display: none;
}

.purchase-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 22px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(18, 22, 28, 0.38), rgba(18, 22, 28, 0.28));
  backdrop-filter: blur(14px);
}

.modal-card {
  position: relative;
  width: min(560px, 100%);
  border: 1px solid rgba(216, 220, 225, 0.9);
  border-radius: 28px;
  padding: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 251, 252, 0.94));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 34px 96px rgba(24, 29, 36, 0.27);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink-2);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.modal-close:hover {
  border-color: var(--border-strong);
  box-shadow: 0 10px 22px rgba(24, 29, 36, 0.1);
  transform: translateY(-1px);
}

.modal-copy h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.05;
}

.modal-copy p {
  margin: 12px 0 0;
  color: var(--ink-2);
}

.purchase-form {
  display: grid;
  gap: 13px;
  margin-top: 22px;
}

.purchase-form label,
.purchase-form legend {
  color: var(--ink);
  font-size: 13px;
  font-weight: 780;
}

.purchase-form input[type="email"] {
  min-height: 48px;
  border: 1px solid var(--border);
  border-radius: 13px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.9);
  outline: none;
}

.purchase-form input[type="email"]:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(255, 134, 23, 0.14);
}

.purchase-form fieldset {
  display: grid;
  gap: 9px;
  margin: 0;
  border: 0;
  padding: 0;
}

.purchase-form fieldset label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  border: 1px solid var(--border);
  border-radius: 13px;
  padding: 0 13px;
  background: #fff;
}

.purchase-form input[type="radio"] {
  accent-color: var(--accent);
}

.purchase-summary {
  display: grid;
  gap: 4px;
  border: 1px solid rgba(255, 134, 23, 0.3);
  border-radius: 16px;
  padding: 16px;
  background:
    linear-gradient(135deg, var(--accent-soft), rgba(255, 255, 255, 0.72));
}

.purchase-summary span {
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 650;
}

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

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

@media (max-width: 980px) {
  .site-header {
    flex-wrap: wrap;
    justify-content: center;
  }

  .main-nav {
    order: 3;
    width: 100%;
    gap: 18px;
    overflow-x: auto;
    padding: 4px 0;
  }

  .language-control {
    order: 2;
  }

  .hero,
  .split-section,
  .support-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 56px;
  }

  .hero-stage {
    min-height: 570px;
  }

  .desk-scene {
    left: 0;
  }

  .workflow-track,
  .pricing-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .workflow-track::before {
    display: none;
  }

  .legal-nav {
    position: static;
  }

  .workflow-track article + article {
    border-left: 0;
    border-top: 1px solid rgba(216, 220, 225, 0.86);
  }

  .download-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .download-actions {
    justify-content: flex-start;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    width: min(calc(100% - 20px), var(--max));
    margin-top: 10px;
    border-radius: 18px;
  }

  .nav-cta {
    display: none;
  }

  .hero-copy h1 {
    font-size: clamp(40px, 12vw, 54px);
  }

  .hero-copy p,
  .section-copy p,
  .section-heading p,
  .download-panel p {
    font-size: 16px;
  }

  .section-shell {
    width: min(calc(100% - 22px), var(--max));
  }

  .hero-stage {
    display: grid;
    gap: 14px;
    min-height: auto;
  }

  .desk-scene {
    position: relative;
    inset: auto;
    min-height: 452px;
    border-radius: 24px;
  }

  .monitor-large {
    left: 18px;
    top: 38px;
    width: min(255px, calc(100% - 126px));
    height: 166px;
  }

  .monitor-small {
    left: auto;
    right: 18px;
    top: 48px;
    width: 82px;
    height: 152px;
  }

  .macbook {
    left: 22px;
    right: 22px;
    bottom: 58px;
    width: auto;
  }

  .macbook-screen {
    height: 168px;
  }

  .macbook-base {
    margin: 0 -12px;
  }

  .popover-demo {
    position: relative;
    inset: auto;
    z-index: 1;
    width: 100%;
    border-radius: 22px;
  }

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

  .display-row:hover,
  .price-card:hover,
  .faq-list details:hover {
    transform: none;
  }

  .display-row.is-protected::after {
    content: "";
    display: none;
  }

  .hero-actions,
  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-actions .button,
  .form-row .button,
  .form-row input {
    width: 100%;
  }

  .form-row {
    display: grid;
  }

  .pain-section,
  .workflow-section,
  .pricing-section,
  .download-section,
  .support-section {
    padding: 64px 0;
  }

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

  .pain-list article p {
    grid-column: auto;
  }

  .price-card,
  .feature-compare,
  .license-form,
  .download-panel {
    padding: 22px;
  }

  .compare-copy {
    display: grid;
    gap: 10px;
    margin-bottom: 14px;
  }

  .compare-copy h3 {
    font-size: 24px;
  }

  .compare-copy p {
    max-width: none;
  }

  .feature-table {
    min-width: 0;
    table-layout: fixed;
  }

  .feature-table th,
  .feature-table td {
    padding: 13px 6px;
  }

  .feature-table th:first-child {
    width: 62%;
  }

  .feature-table thead th {
    font-size: 11px;
  }

  .feature-table tbody th {
    font-size: 15px;
    line-height: 1.35;
    word-break: break-word;
  }

  .state {
    width: 24px;
    height: 24px;
    font-size: 17px;
  }

  .modal-card,
  .legal-card {
    padding: 26px;
  }
}
