:root {
  color-scheme: dark;
  --bg: #080a0d;
  --band: #0c1015;
  --surface: #11161d;
  --surface-raised: #161c24;
  --text: #f5f7fa;
  --muted: #a9b2be;
  --subtle: #77818e;
  --line: #28313d;
  --line-strong: #3a4656;
  --accent: #2f86ff;
  --accent-hover: #559dff;
  --accent-active: #1f6ed4;
  --teal: #8bd7c7;
  --amber: #f2c14e;
  --focus: #80b9ff;
  --radius-control: 8px;
  --radius-card: 12px;
  --radius-media: 16px;
  --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.24);
  --shadow-media: 0 24px 64px rgba(0, 0, 0, 0.38);
  --monitor-neck-ratio: 10%;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: "Segoe UI Variable Text", "Segoe UI", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background: radial-gradient(circle at 17% 25%, rgba(85, 157, 255, 0.035), transparent 28rem);
  content: "";
  pointer-events: none;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

button {
  font: inherit;
}

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

::selection {
  background: rgba(47, 134, 255, 0.35);
  color: #fff;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: var(--radius-control);
  background: var(--text);
  color: var(--bg);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 160ms ease-out;
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: 95px;
  padding-top: 12px;
  border: 0;
  background: transparent;
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1214px, calc(100% - 48px));
  height: 75px;
  padding: 0 14px 0 18px;
  gap: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  background: linear-gradient(137deg, rgba(21, 28, 37, 0.78) 4.87%, rgba(11, 17, 24, 0.91) 75.88%);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-height: 44px;
  gap: 10px;
  color: var(--text);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.015em;
}

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

.header-inner > .brand {
  gap: 9px;
  font-size: 16px;
  opacity: 0.85;
  transform-origin: left center;
  transition: opacity 180ms ease-out, transform 180ms ease-out;
}

.header-inner > .brand img {
  width: 32px;
  height: 32px;
}

.header-inner > .brand:hover {
  opacity: 1;
  transform: scale(1.03);
}

.header-inner > .brand:focus-visible {
  opacity: 1;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  margin-left: auto;
}

.primary-nav a {
  display: flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 12px;
  border: 1px solid transparent;
  border-radius: 9px;
  color: #aeb7c3;
  font-size: 14px;
  font-weight: 600;
  transition: color 180ms ease-in-out;
}

.primary-nav a:hover {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  color: #fff;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-control);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition: background 160ms ease-out, border-color 160ms ease-out, color 160ms ease-out, transform 160ms ease-out;
}

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

.button:active {
  transform: translateY(0);
}

.button svg {
  width: 18px;
  height: 18px;
  margin-right: 9px;
  fill: currentColor;
}

.button-primary {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.button-primary:hover {
  border-color: var(--accent-hover);
  background: var(--accent-hover);
}

.button-primary:active {
  border-color: var(--accent-active);
  background: var(--accent-active);
}

.button-secondary {
  border-color: var(--line-strong);
  background: var(--surface-raised);
  color: var(--text);
}

.button-secondary:hover {
  border-color: #536174;
  background: #1b222c;
}

.button-header {
  min-height: 42px;
  padding: 9px 15px;
  border-color: rgba(128, 185, 255, 0.48);
  border-radius: 11px;
  background: linear-gradient(180deg, #4193ff, #2879eb);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 8px 20px rgba(47, 134, 255, 0.22);
}

.button-primary.button-header:hover {
  border-color: rgba(166, 208, 255, 0.66);
  background: linear-gradient(180deg, #5ba3ff, #3689f6);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 10px 24px rgba(47, 134, 255, 0.3);
}

.button-header svg {
  width: 16px;
  height: 16px;
  margin-right: 7px;
}

.button-full {
  width: 100%;
}

.menu-button {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 42px;
  height: 42px;
  padding: 0;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
  color: var(--text);
  cursor: pointer;
}

.menu-button span {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 160ms ease-out, opacity 160ms ease-out;
}

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

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

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

.hero {
  position: relative;
  overflow: hidden;
  padding: 66px 0 60px;
}

.hero::before {
  display: none;
}

.dd-demo-hero::before {
  display: none;
}

.hero::after {
  position: absolute;
  right: -14%;
  bottom: 0;
  left: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(47, 134, 255, 0.6), transparent);
  content: "";
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(540px, 1.22fr);
  align-items: center;
  gap: 40px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 470px;
}

.eyebrow {
  display: flex;
  align-items: center;
  margin: 0 0 16px;
  gap: 10px;
  color: #98a4b2;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.01em;
  line-height: 1.4;
}

.eyebrow::before {
  flex: 0 0 auto;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
  content: "";
}

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

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  max-width: 13ch;
  margin: 0;
  color: var(--text);
  font-size: clamp(48px, 5vw, 66px);
  font-weight: 720;
  letter-spacing: -0.045em;
  line-height: 1.03;
}

h1 span {
  color: var(--accent-hover);
}

.hero-lead {
  max-width: 58ch;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}

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

.hero-note {
  display: flex;
  flex-wrap: wrap;
  margin: 16px 0 0;
  gap: 0;
  color: var(--subtle);
  font-size: 14px;
}

.hero-note span {
  margin: 0;
}

.hero-note span + span::before {
  margin: 0 9px;
  content: "\00b7";
}

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

.hero-product::before {
  display: none;
}

.trust {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--band);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1.1fr;
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 96px;
  padding: 20px 28px;
  gap: 8px;
  color: var(--muted);
  text-align: center;
}

.trust-item + .trust-item {
  border-left: 1px solid var(--line);
}

.trust-item strong {
  color: var(--text);
  font-size: 17px;
}

.trust-link {
  transition: background 160ms ease-out;
}

.trust-link:hover {
  background: rgba(255, 255, 255, 0.025);
}

.stars {
  color: var(--amber);
  font-size: 16px;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.section {
  padding: 96px 0;
}

.section-band {
  border-top: 1px solid rgba(40, 49, 61, 0.72);
  border-bottom: 1px solid rgba(40, 49, 61, 0.72);
  background: var(--band);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

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

.section-heading h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 46px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.section-heading > p:last-child {
  max-width: 66ch;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.section-heading-centered > p:last-child {
  margin-right: auto;
  margin-left: auto;
}

.site-video {
  display: block;
}

.product-section {
  position: relative;
}

.settings-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 370px) minmax(0, 1fr);
  align-items: center;
  width: 100%;
  margin-inline: 0;
  padding: clamp(30px, 3vw, 38px);
  overflow: hidden;
  gap: clamp(36px, 4vw, 48px);
  border: 1px solid rgba(128, 151, 180, 0.22);
  border-radius: 24px;
  background:
    radial-gradient(circle at 86% 12%, rgba(47, 134, 255, 0.13), transparent 38%),
    linear-gradient(137deg, rgba(21, 28, 37, 0.84) 4.87%, rgba(11, 17, 24, 0.94) 75.88%);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1), 0 28px 72px rgba(0, 0, 0, 0.3);
  transform: none;
}

.settings-showcase-copy {
  position: relative;
  z-index: 2;
  max-width: none;
}

.settings-showcase-copy h2 {
  margin: 0;
  font-size: clamp(36px, 4vw, 50px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.06;
}

.settings-showcase-copy > p:last-of-type {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.automation-highlights {
  position: relative;
  display: grid;
  margin: 32px 0 0;
  padding: 0;
  gap: 10px;
  list-style: none;
}

.automation-highlights li {
  min-width: 0;
}

.automation-chapter {
  position: relative;
  display: grid;
  grid-template-columns: 11px minmax(0, 1fr);
  width: 100%;
  padding: 15px 16px;
  column-gap: 14px;
  row-gap: 3px;
  border: 1px solid transparent;
  border-radius: 12px;
  appearance: none;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
  transition: border-color 160ms ease-out, background-color 160ms ease-out, transform 160ms ease-out;
}

.automation-chapter::before {
  position: static;
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: start;
  width: 9px;
  height: 9px;
  margin-top: 7px;
  border: 2px solid rgba(98, 165, 255, 0.45);
  border-radius: 50%;
  background: rgba(47, 134, 255, 0.65);
  box-shadow: 0 0 0 4px rgba(47, 134, 255, 0.06);
  content: "";
}

.automation-chapter:hover {
  border-color: rgba(98, 165, 255, 0.24);
  background: rgba(47, 134, 255, 0.075);
  transform: translateX(2px);
}

.automation-chapter:active {
  transform: translateX(2px) scale(0.995);
}

.automation-chapter.is-current {
  border-color: rgba(98, 165, 255, 0.28);
  background: linear-gradient(90deg, rgba(47, 134, 255, 0.12), rgba(47, 134, 255, 0.035));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.automation-chapter.is-current::before {
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(47, 134, 255, 0.09), 0 0 18px rgba(47, 134, 255, 0.3);
}

.automation-chapter strong,
.automation-chapter span {
  grid-column: 2;
}

.automation-chapter strong {
  color: var(--text);
  font-size: 17px;
  line-height: 1.35;
}

.automation-chapter span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.settings-showcase-media {
  position: relative;
  z-index: 1;
  isolation: isolate;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 788 / 656;
  border-radius: 18px;
  background: #2d2d30;
  box-shadow: inset 0 0 0 1px rgba(155, 204, 255, 0.18), 0 34px 84px rgba(0, 0, 0, 0.48), 0 0 64px rgba(47, 134, 255, 0.08), 0 0 1px rgba(155, 204, 255, 0.24);
}

.settings-showcase-media::before {
  position: absolute;
  z-index: 3;
  inset: 0;
  display: block;
  border: 1px solid #2d2d30;
  border-radius: 18px;
  box-shadow: inset 0 0 0 1px rgba(155, 204, 255, 0.14);
  content: "";
  pointer-events: none;
}

.settings-showcase-media::after {
  position: absolute;
  z-index: 4;
  top: 1.2195%;
  left: 1.5228%;
  display: block;
  width: 3.934%;
  height: auto;
  aspect-ratio: 1;
  border-radius: 21.875%;
  background: #2d2d30 url("/assets/display-dimmer-logo-header-256.png") center / contain no-repeat;
  content: "";
  pointer-events: none;
}

.settings-showcase-media video {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 18px;
  object-fit: contain;
  background: #2d2d30;
}

@media (max-width: 1040px) {
  .settings-showcase {
    grid-template-columns: 1fr;
    width: 100%;
    margin-inline: 0;
    gap: 52px;
    transform: none;
  }

  .settings-showcase-copy {
    max-width: 680px;
  }

  .settings-showcase-media {
    width: min(100%, 788px);
    margin-inline: auto;
  }
}

.dd-demo {
  --dd-card: #2c2c2e;
  --dd-border: #3a3a3c;
  --dd-control: #2c2c2e;
  --dd-text: #fff;
  --dd-subtext: #98989f;
  --dd-disabled: #6b6b70;
  --dd-button: #3d3d3f;
  --dd-button-hover: #424244;
  --dd-button-active: #424244;
  --dd-button-text: #f0f0f0;
  --dd-reset: #5a5a5f;
  --dd-reset-text: #fff;
  --dd-combo-arrow: #c7c7cc;
  --dd-rail: #454547;
  --dd-fill: #4c86ff;
  --dd-fill-hover: #3c72e6;
  --dd-thumb: #ddd;
  --dd-thumb-hover: #3c72e6;
  --dd-thumb-active: #4c86ff;
  --dd-halo: rgba(216, 216, 216, .55);
  --dd-focus: #4c86ff;
  --dd-temp-warm: #ffb24a;
  --dd-temp-neutral: #80868f;
  --dd-temp-cool: #58a6ff;
  --dd-close-hover-bg: rgba(232, 17, 35, 0.122);
  --dd-close-hover-glyph: #fff;
  --dd-close-active-bg: #e81123;
  --dd-close-active-glyph: #fff;
  position: relative;
  min-height: 570px;
  overflow: hidden;
  border: 1px solid rgba(71, 87, 108, 0.65);
  border-radius: 24px;
  background: #080a0d;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
  isolation: isolate;
}

.dd-demo.dd-demo-hero {
  --dd-screen-glow: rgba(76, 134, 255, 0.34);
  z-index: 1;
  min-height: 560px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.dd-demo.dd-demo-hero::after {
  display: none;
}

.dd-demo-stage-toolbar {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 36px;
  margin: 0 10px 14px;
  gap: 16px;
}

.dd-demo-live-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 11px;
  gap: 7px;
  border: 1px solid rgba(116, 148, 188, 0.22);
  border-radius: 999px;
  background: rgba(11, 16, 23, 0.72);
  box-shadow: 0 9px 28px rgba(0, 0, 0, 0.2);
  color: #91a0b3;
  font-size: 11px;
  line-height: 1;
  white-space: nowrap;
  backdrop-filter: blur(12px);
}

.dd-demo-live-label > i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4c9aff;
  box-shadow: 0 0 0 4px rgba(47, 134, 255, 0.12), 0 0 13px rgba(76, 154, 255, 0.75);
}

.dd-demo-live-label > strong {
  color: #dce8f6;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.dd-demo-live-label > span {
  color: #8fa2b9;
  transform: translate(-1px, -1px);
}

.dd-demo-hero .dd-demo-theme-picker {
  position: relative;
  top: auto;
  right: auto;
  flex: 0 0 auto;
}

.dd-demo-monitor {
  position: relative;
  width: 100%;
}

.dd-demo-monitor::before {
  position: absolute;
  z-index: -1;
  right: 12%;
  bottom: 36px;
  left: 12%;
  height: 46px;
  border-radius: 50%;
  background: var(--dd-screen-glow);
  filter: blur(38px);
  content: "";
  opacity: 0.82;
  transition: opacity 160ms ease-out;
}

.dd-demo-monitor-bezel {
  position: relative;
  z-index: 1;
  padding: 10px 10px 23px;
  border: 1px solid rgba(130, 150, 174, 0.45);
  border-radius: 13.2px;
  background: linear-gradient(145deg, #242c36 0%, #10161d 42%, #080c11 100%);
  box-shadow:
    0 34px 85px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.025),
    inset 0 1px rgba(255, 255, 255, 0.11),
    inset 0 -1px rgba(0, 0, 0, 0.9);
}

.dd-demo-monitor-screen {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-radius: 0;
  background: #07111c;
  box-shadow: inset 0 0 0 1px rgba(160, 203, 255, 0.11);
  isolation: isolate;
}

.dd-demo-monitor-camera {
  position: absolute;
  z-index: 4;
  top: 4px;
  left: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #536271;
  box-shadow: 0 0 0 1px #05080b, 0 0 5px rgba(71, 142, 225, 0.55);
  transform: translateX(-50%);
}

.dd-demo-monitor-brand {
  position: absolute;
  bottom: 5px;
  left: 50%;
  color: rgba(172, 190, 211, 0.48);
  font-size: 10.1px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1;
  cursor: default;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  transform: translateX(-50%);
}

.dd-demo-monitor-power {
  position: absolute;
  right: 12px;
  bottom: 7px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #318dff;
  box-shadow: 0 0 7px rgba(49, 141, 255, 0.8);
}

.dd-demo-monitor-stand {
  position: relative;
  z-index: 0;
  height: 49px;
}

.dd-demo-monitor-stand::before {
  position: absolute;
  top: -2px;
  left: 50%;
  width: 10.44%;
  /* Overlap the foot by one pixel so antialiasing cannot expose a dark seam. */
  height: 42px;
  border-radius: 0;
  clip-path: polygon(6.9% 0, 93.1% 0, 93.25% 30%, 94% 55%, 95.5% 75%, 97.5% 90%, 100% 100%, 0 100%, 2.5% 90%, 4.5% 75%, 6% 55%, 6.75% 30%);
  background:
    /* Dark top contact with a continuous per-row fade into the aluminum. */
    linear-gradient(180deg,
      rgba(2, 4, 7, 1) 0%,
      rgba(2, 4, 7, 1) 3.025%,
      rgba(3, 6, 9, 0.971) 6.05%,
      rgba(3, 6, 9, 0.790) 9.075%,
      rgba(4, 7, 10, 0.593) 12.1%,
      rgba(4, 7, 10, 0.425) 15.125%,
      rgba(5, 8, 12, 0.289) 18.15%,
      rgba(5, 8, 12, 0.183) 21.175%,
      rgba(6, 9, 13, 0.107) 24.2%,
      rgba(6, 9, 13, 0.053) 27.225%,
      rgba(6, 9, 13, 0.022) 30.25%,
      transparent 33.88%),
    /* Broad lower fold, followed by a narrow reflected-light lip at the foot. */
    linear-gradient(180deg,
      transparent 64.8%,
      rgba(5, 8, 12, 0.053) 71.4%,
      rgba(5, 8, 12, 0.158) 78%,
      rgba(5, 8, 12, 0.317) 84.6%,
      rgba(5, 8, 12, 0.449) 89%,
      rgba(5, 8, 12, 0.383) 93.4%,
      rgba(5, 8, 12, 0.277) 96.7%,
      rgba(5, 8, 12, 0.211) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018), transparent 12%, transparent 86.8%, rgba(0, 0, 0, 0.029)),
    /* Cool neutral brushed-metal tint, preserving the underlying aluminum reflections. */
    linear-gradient(180deg,
      rgba(59, 72, 85, 0.20) 0%,
      rgba(108, 119, 129, 0.10) 52%,
      rgba(47, 60, 73, 0.22) 100%),
    /*
     * Broad aluminum reflection sampled once per rendered pixel. Its highlight
     * sits below center like the reference stand, while the fold above creates
     * the visual impression that the neck bends away into the foot.
     */
    linear-gradient(180deg,
      #8f979e 0%,
      #9199a0 2.5%,
      #949ba2 5%,
      #969da4 7.5%,
      #99a0a6 10%,
      #9ba2a8 12.5%,
      #9ea4aa 15%,
      #a0a7ac 17.5%,
      #a2a9ae 20%,
      #a5abb1 22.5%,
      #a7aeb3 25%,
      #aab0b5 27.5%,
      #acb2b7 30%,
      #aeb4b9 32.5%,
      #b1b6bb 35%,
      #b3b8bd 37.5%,
      #b5babf 40%,
      #b6bcc0 42.5%,
      #b8bdc2 45%,
      #babfc3 47.5%,
      #bbc0c5 50%,
      #bcc1c6 52.5%,
      #bdc3c7 55%,
      #bec3c7 57.5%,
      #bfc4c8 60%,
      #c0c5c9 62.5%,
      #c0c5c9 65%,
      #c0c5c9 67.5%,
      #c0c5c9 70%,
      #c0c5c9 72.5%,
      #bfc4c8 75%,
      #bfc4c8 77.5%,
      #bec3c7 80%,
      #bdc2c6 82.5%,
      #bcc1c5 85%,
      #bac0c4 87.5%,
      #b9bec2 90%,
      #b7bdc1 92.5%,
      #b5bbbf 95%,
      #b3b9be 97.5%,
      #b1b7bc 100%);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.04),
    inset 0 -1px rgba(255, 255, 255, 0.12),
    0 2.2px 4.4px rgba(0, 0, 0, 0.158);
  filter: brightness(0.96);
  content: "";
  transform: translateX(-50%);
}

.dd-demo-monitor-stand::after {
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: clamp(152px, 14%, 160px);
  height: 6px;
  /* A seamless top junction with a substantially flatter cast-metal underside. */
  border-radius: 40px 40px 10px 10px / 3px 3px 1px 1px;
  background:
    linear-gradient(180deg,
      rgba(47, 60, 73, 0.30) 0%,
      rgba(104, 116, 128, 0.12) 55%,
      rgba(39, 52, 65, 0.25) 100%),
    linear-gradient(180deg,
      #98a2aa 0%,
      #9ea6ac 28%,
      #bcc4ca 55%,
      #cbd1d5 68%,
      #8b959d 84%,
      #a5aeb4 100%);
  box-shadow:
    /* Keep the darker cast shadow below the foot instead of across the join. */
    0 3.3px 3.3px -2.2px rgba(0, 0, 0, 0.290),
    inset 0 1px rgba(255, 255, 255, 0.08),
    inset 0 -1.1px rgba(0, 0, 0, 0.238);
  filter: brightness(0.96);
  content: "";
  transform: translateX(-50%);
}

.dd-demo-hero .dd-demo-preview {
  filter: url("#display-dimmer-demo-filter");
}

.dd-demo-hero .dd-demo-preview::before {
  background:
    linear-gradient(rgba(252, 252, 252, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(252, 252, 252, 0.028) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at 32% 42%, #000 0, rgba(0, 0, 0, 0.8) 52%, transparent 95%);
}

.dd-demo-hero .dd-demo-preview::after {
  background:
    radial-gradient(circle at 76% 46%, rgba(94, 168, 255, 0.12), transparent 31%),
    linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.035) 48%, transparent 68%);
}

.dd-demo-screen-caption {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: clamp(22px, 3.2vw, 38px);
  width: min(29%, 190px);
  color: #f6f9fd;
  transform: translateY(-54%);
}

.dd-demo-screen-caption > span {
  display: block;
  margin-bottom: 10px;
  color: #a9cdfd;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dd-demo-screen-caption > strong {
  display: block;
  font-size: clamp(20px, 2.1vw, 27px);
  font-weight: 690;
  letter-spacing: -0.035em;
  line-height: 1.04;
}

.dd-demo-screen-caption > p {
  margin: 12px 0 0;
  color: rgba(230, 239, 249, 0.72);
  font-size: 12px;
  line-height: 1.45;
}

.dd-demo-screen-caption .dd-demo-tone-strip {
  height: 24px;
  margin-top: 18px;
  border-radius: 6px;
}

.dd-demo-screen-caption .dd-demo-color-strip {
  height: 7px;
  margin-top: 7px;
}

.dd-demo-hero .dd-demo-window-wrap {
  z-index: 3;
  top: auto;
  right: -8px;
  bottom: 48px;
  width: min(360px, calc(100% - 40px));
  filter: drop-shadow(0 26px 34px rgba(0, 0, 0, 0.46));
  transform: none;
}

.dd-demo-taskbar {
  --dd-demo-tray-clearance: 48px;
  --dd-demo-tray-assist: 0;
  position: absolute;
  z-index: 7;
  bottom: 10px;
  right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 217px;
  height: 34px;
  padding: 3px 8px;
  gap: 7px;
  border: 1px solid rgba(204, 225, 250, 0.16);
  border-radius: 8px;
  background: rgba(13, 24, 36, 0.68);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  transform: scale(1);
  transform-origin: right bottom;
  /* This is an interactive teaching overlay, not part of the filtered desktop.
     Keeping it outside the gamma simulation makes its icon and Open demo cue
     readable even when the preview is very dim or warm. */
  filter: none;
  isolation: isolate;
  box-sizing: border-box;
  transition:
    background-color 160ms ease-out,
    border-color 160ms ease-out,
    box-shadow 160ms ease-out,
    transform 160ms ease-out;
}

.dd-demo-taskbar::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(88, 166, 255, 0.3), rgba(42, 105, 176, 0.16));
  box-shadow: 0 0 20px rgba(89, 170, 255, 0.32);
  content: "";
  opacity: var(--dd-demo-tray-assist);
  pointer-events: none;
  transition: opacity 160ms ease-out;
}

.dd-demo-taskbar > * {
  position: relative;
  z-index: 1;
}

.dd-demo-taskbar:hover {
  background: rgba(18, 32, 48, 0.84);
  border-color: rgba(214, 233, 255, 0.23);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.36);
  transform: scale(1.055);
}

.dd-demo-taskbar-dimmer {
  position: relative;
  display: grid;
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  margin: 0;
  padding: 1px;
  place-items: center;
  border: 0;
  border-radius: 6px;
  outline: 0;
  background: transparent;
  color: inherit;
  cursor: default;
  appearance: none;
  box-sizing: border-box;
  transition: background-color 160ms ease-out, box-shadow 160ms ease-out;
}

.dd-demo-taskbar-dimmer:focus-visible {
  box-shadow: 0 0 0 2px rgba(117, 189, 255, 0.72);
}

.dd-demo-taskbar-dimmer img {
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 5px;
  object-fit: contain;
  image-rendering: auto;
  filter: drop-shadow(0 0 2px rgba(117, 189, 255, 0.18));
  transition: filter 160ms ease-out;
}

.dd-demo.is-app-closed .dd-demo-taskbar-dimmer {
  background: rgba(57, 145, 255, 0.13);
  box-shadow: 0 0 10px rgba(71, 157, 255, 0.46);
}

.dd-demo.is-app-closed .dd-demo-taskbar-dimmer img {
  filter: drop-shadow(0 0 4px rgba(117, 189, 255, 0.62));
}

.dd-demo.is-app-closed .dd-demo-taskbar {
  border-color: rgba(236, 247, 255, 0.24);
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.28),
    0 0 14px rgba(245, 250, 255, 0.2);
}

.dd-demo.is-app-closed .dd-demo-taskbar:hover {
  border-color: rgba(245, 250, 255, 0.32);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.34),
    0 0 18px rgba(245, 250, 255, 0.25);
}

.dd-demo-taskbar-dimmer:hover,
.dd-demo.is-app-closed .dd-demo-taskbar-dimmer:hover {
  background: rgba(57, 145, 255, 0.24);
  box-shadow:
    0 0 12px rgba(102, 177, 255, 0.76),
    0 0 24px rgba(91, 168, 255, 0.48);
}

.dd-demo-taskbar-dimmer:hover img,
.dd-demo.is-app-closed .dd-demo-taskbar-dimmer:hover img {
  filter:
    drop-shadow(0 0 5px rgba(224, 244, 255, 0.98))
    drop-shadow(0 0 10px rgba(89, 170, 255, 0.92));
}

.dd-demo-tray-glyph {
  display: block;
  width: 18px;
  height: 16px;
  flex: 0 0 auto;
  overflow: visible;
  fill: none;
  stroke: rgba(232, 241, 251, 0.88);
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dd-demo-tray-chevron {
  width: 16px;
  stroke-width: 1.6;
}

.dd-demo-tray-network circle {
  fill: rgba(232, 241, 251, 0.88);
  stroke: none;
}

.dd-demo-tray-language {
  display: grid;
  width: 24px;
  flex: 0 0 auto;
  justify-items: center;
  gap: 1px;
  color: rgba(237, 244, 252, 0.9);
  font: 600 8px/1 "Segoe UI", sans-serif;
  letter-spacing: 0.02em;
  cursor: default;
  user-select: none;
  -webkit-user-select: none;
}

.dd-demo-tray-language b,
.dd-demo-tray-language small {
  display: block;
  font: inherit;
}

.dd-demo-screen-clock {
  position: static;
  display: grid;
  width: 62px;
  flex: 0 0 auto;
  justify-items: end;
  gap: 1px;
  color: rgba(235, 243, 252, 0.88);
  font: 8.5px/1.05 "Segoe UI", sans-serif;
  font-variant-numeric: tabular-nums;
  text-align: right;
  white-space: nowrap;
  cursor: default;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  filter: url("#display-dimmer-demo-filter");
}

.dd-demo-screen-clock > span {
  display: block;
}

.dd-demo-open-app-hint {
  position: absolute;
  z-index: 2;
  color: #ffc56f;
  font-family: "Segoe Print", "Comic Sans MS", cursive;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  visibility: hidden;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.48));
  opacity: 0;
  transition: opacity 180ms ease-out, transform 180ms ease-out, visibility 0s linear 180ms;
}

.dd-demo-open-app-hint-desktop {
  bottom: calc(100% + 5px);
  left: 50%;
  width: 180px;
  height: 58px;
  transform: translate(calc(-50% - 17px), 30px);
}

.dd-demo-open-app-hint-compact {
  display: none;
}

.dd-demo-open-app-hint > span {
  position: absolute;
  top: 0;
  right: 167px;
  left: auto;
  font-size: 18.4px;
  white-space: nowrap;
  transform: rotate(-5deg);
  transform-origin: right center;
}

.dd-demo-open-app-hint > svg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  transform: translateY(-5px);
}

.dd-demo-open-arrow-compact {
  visibility: hidden;
}

.dd-demo-open-app-hint path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.dd-demo-open-app-hint .dd-demo-open-arrow-head {
  fill: none;
  stroke: currentColor;
  stroke-linejoin: miter;
  stroke-miterlimit: 4;
}

.dd-demo.is-app-closed .dd-demo-open-app-hint {
  visibility: visible;
  opacity: 1;
  transition-delay: 50ms, 50ms, 0s;
}

.dd-demo.is-app-closed .dd-demo-open-app-hint-desktop {
  transform: translate(calc(-50% - 17px), 26px);
}

.dd-demo-screen-glass {
  position: absolute;
  z-index: 6;
  inset: 0;
  background: linear-gradient(112deg, rgba(255, 255, 255, 0.075), transparent 18%, transparent 68%, rgba(255, 255, 255, 0.025));
  pointer-events: none;
}

.dd-demo[data-dd-theme="light"] {
  --dd-card: #fff;
  --dd-border: #eaeaf0;
  --dd-control: #fff;
  --dd-text: #1d1d1f;
  --dd-subtext: #6e6e73;
  --dd-disabled: #b0b0b5;
  --dd-button: #cacace;
  --dd-button-hover: #b9b9be;
  --dd-button-active: #a9a9ae;
  --dd-button-text: #1d1d1f;
  --dd-reset: #0a84ff;
  --dd-reset-text: #fff;
  --dd-combo-arrow: #7a7a7e;
  --dd-rail: #e6e6e6;
  --dd-fill: #2b74ff;
  --dd-fill-hover: #2666e0;
  --dd-thumb: #fff;
  --dd-thumb-hover: #f5f5f5;
  --dd-thumb-active: #ececec;
  --dd-halo: rgba(0, 0, 0, .55);
  --dd-focus: #2b74ff;
  --dd-temp-warm: #d35400;
  --dd-temp-neutral: #80868f;
  --dd-temp-cool: #1769d2;
  --dd-close-hover-bg: rgba(232, 17, 35, 0.094);
  --dd-close-hover-glyph: #c42b1c;
}

.dd-demo[data-dd-theme="slate"] {
  --dd-card: #262c35;
  --dd-border: #313a45;
  --dd-control: #262c35;
  --dd-text: #f5f7fa;
  --dd-subtext: #a6afb8;
  --dd-disabled: #77818d;
  --dd-button: #404a57;
  --dd-button-hover: #495563;
  --dd-button-active: #526070;
  --dd-button-text: #f5f7fa;
  --dd-reset: #7aa2ff;
  --dd-reset-text: #fff;
  --dd-combo-arrow: #d3dbe6;
  --dd-rail: #343c47;
  --dd-fill: #7aa2ff;
  --dd-fill-hover: #618bff;
  --dd-thumb: #e7ecf5;
  --dd-thumb-hover: #618bff;
  --dd-thumb-active: #8eb0ff;
  --dd-halo: rgba(163, 197, 255, .55);
  --dd-focus: #7aa2ff;
  --dd-temp-warm: #ffb24a;
  --dd-temp-neutral: #80868f;
  --dd-temp-cool: #58a6ff;
}

.dd-demo[data-dd-theme="lunar"] {
  --dd-card: #181b21;
  --dd-border: #262a33;
  --dd-control: #181b21;
  --dd-text: #f4f6fa;
  --dd-subtext: #c2c8d3;
  --dd-disabled: #7b828f;
  --dd-button: #373b46;
  --dd-button-hover: #404552;
  --dd-button-active: #484d5c;
  --dd-button-text: #f4f6fa;
  --dd-reset: #c2cdd8;
  --dd-reset-text: #11141a;
  --dd-combo-arrow: #e3e9f2;
  --dd-rail: #252936;
  --dd-fill: #c2cdd8;
  --dd-fill-hover: #b3c0cf;
  --dd-thumb: #f8fafd;
  --dd-thumb-hover: #b3c0cf;
  --dd-thumb-active: #d0d9e2;
  --dd-halo: rgba(255, 255, 255, .55);
  --dd-focus: #c2cdd8;
  --dd-temp-warm: #ffb24a;
  --dd-temp-neutral: #80868f;
  --dd-temp-cool: #58a6ff;
}

.dd-demo[data-dd-theme="solar"] {
  --dd-card: #fff9e8;
  --dd-border: #e6dfc9;
  --dd-control: #fff9e8;
  --dd-text: #586e75;
  --dd-subtext: #657b83;
  --dd-disabled: #a3b0b5;
  --dd-button: #e0d8c2;
  --dd-button-hover: #d7cfb6;
  --dd-button-active: #cec6aa;
  --dd-button-text: #586e75;
  --dd-reset: #268bd2;
  --dd-reset-text: #fff;
  --dd-combo-arrow: #6c8ea1;
  --dd-rail: #ede5cd;
  --dd-fill: #268bd2;
  --dd-fill-hover: #217ab9;
  --dd-thumb: #fff;
  --dd-thumb-hover: #faf7ee;
  --dd-thumb-active: #f3eedc;
  --dd-halo: rgba(38, 139, 210, .55);
  --dd-focus: #268bd2;
  --dd-temp-warm: #d9553b;
  --dd-temp-neutral: #817c6d;
  --dd-temp-cool: #1976c9;
  --dd-close-hover-bg: rgba(232, 17, 35, 0.094);
  --dd-close-hover-glyph: #c42b1c;
}

.dd-demo[data-dd-theme="cardinal"] {
  --dd-card: #fff;
  --dd-border: #f3c7c9;
  --dd-control: #fff;
  --dd-text: #2a1416;
  --dd-subtext: #7b575b;
  --dd-disabled: #c8a6a9;
  --dd-button: #e9c0c3;
  --dd-button-hover: #deb0b4;
  --dd-button-active: #d5a2a7;
  --dd-button-text: #2a1416;
  --dd-reset: #e23b3b;
  --dd-reset-text: #fff;
  --dd-combo-arrow: #9b5a5e;
  --dd-rail: #f4d1d4;
  --dd-fill: #e23b3b;
  --dd-fill-hover: #c73434;
  --dd-thumb: #fff;
  --dd-thumb-hover: #fff6f6;
  --dd-thumb-active: #f7e6e7;
  --dd-halo: rgba(226, 59, 59, .55);
  --dd-focus: #e23b3b;
  --dd-temp-warm: #d35400;
  --dd-temp-neutral: #80868f;
  --dd-temp-cool: #1769d2;
  --dd-close-hover-bg: rgba(232, 17, 35, 0.094);
  --dd-close-hover-glyph: #c42b1c;
}

.dd-demo::after {
  position: absolute;
  z-index: 4;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.035);
  border-radius: inherit;
  pointer-events: none;
  content: "";
}

.dd-demo-filter-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.dd-demo-preview {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  cursor: default;
  user-select: none;
  -webkit-user-select: none;
  background:
    radial-gradient(circle at 18% 22%, rgba(88, 166, 255, 0.46), transparent 33%),
    radial-gradient(circle at 67% 78%, rgba(255, 178, 74, 0.24), transparent 30%),
    linear-gradient(145deg, #425d7b 0%, #1d3146 43%, #0a1621 100%);
  filter: url("#display-dimmer-demo-filter");
  transform: translateZ(0);
}

.dd-demo-preview::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 46px 46px;
  content: "";
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.8), transparent 72%);
}

.dd-demo-preview::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 45%, rgba(4, 8, 13, 0.18) 70%, rgba(4, 8, 13, 0.5));
  content: "";
}

.dd-demo-preview-copy {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: clamp(34px, 5.5vw, 70px);
  width: min(39%, 400px);
  color: #f7f9fc;
  transform: translateY(-50%);
}

.dd-demo-preview-copy > span {
  display: block;
  margin-bottom: 14px;
  color: #c9e0ff;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dd-demo-preview-copy > strong {
  display: block;
  max-width: 10ch;
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.dd-demo-preview-copy > p {
  max-width: 34ch;
  margin: 18px 0 0;
  color: rgba(239, 245, 252, 0.8);
  font-size: 16px;
  line-height: 1.55;
}

.dd-demo-tone-strip,
.dd-demo-color-strip {
  display: grid;
  overflow: hidden;
  margin-top: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
}

.dd-demo-tone-strip {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  height: 36px;
}

.dd-demo-tone-strip i:nth-child(1) { background: #f7f9fc; }
.dd-demo-tone-strip i:nth-child(2) { background: #bdc7d2; }
.dd-demo-tone-strip i:nth-child(3) { background: #7c8997; }
.dd-demo-tone-strip i:nth-child(4) { background: #3d4b59; }
.dd-demo-tone-strip i:nth-child(5) { background: #111a24; }

.dd-demo-color-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  height: 10px;
  margin-top: 10px;
  border: 0;
}

.dd-demo-color-strip i:nth-child(1) { background: #ffb24a; }
.dd-demo-color-strip i:nth-child(2) { background: #4c86ff; }
.dd-demo-color-strip i:nth-child(3) { background: #58a6ff; }

.dd-demo-window-wrap {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: clamp(28px, 5vw, 68px);
  width: min(360px, calc(100% - 40px));
  transform: translateY(-50%);
}

.dd-demo-theme-picker {
  position: absolute;
  z-index: 3;
  top: -46px;
  right: 10px;
  display: flex;
  align-items: center;
  height: 36px;
  padding: 4px 5px 4px 10px;
  gap: 8px;
  border: 1px solid rgba(128, 151, 180, 0.3);
  border-radius: 10px;
  background: rgba(9, 13, 18, 0.9);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  color: #dbe8f7;
  font-family: "Segoe UI", sans-serif;
  line-height: 1;
  cursor: default;
  user-select: none;
  -webkit-user-select: none;
  box-sizing: border-box;
  backdrop-filter: blur(12px);
}

.dd-demo-theme-picker-label {
  color: #9fb0c5;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.dd-demo-theme-control {
  position: relative;
  display: block;
  width: 152px;
  height: 28px;
}

.dd-demo-theme-trigger {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 8px;
  column-gap: 6px;
  border: 1px solid rgba(130, 153, 183, 0.28);
  border-radius: 7px;
  outline: 0;
  background: #151c25;
  color: #edf4fc;
  font: 600 12px/1 "Segoe UI", sans-serif;
  text-align: left;
  cursor: default;
  box-sizing: border-box;
}

.dd-demo-theme-trigger:hover,
.dd-demo-theme-trigger[aria-expanded="true"] {
  border-color: rgba(128, 173, 230, 0.55);
  background: #19222d;
}

.dd-demo-theme-trigger:focus-visible {
  border-color: #70a8ef;
  box-shadow: 0 0 0 2px rgba(74, 134, 214, 0.36);
}

.dd-demo-theme-trigger > [data-dd-demo-theme-name] {
  min-width: 0;
  flex: 1 1 auto;
  overflow: hidden;
  line-height: 16px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dd-demo-theme-swatch {
  display: block;
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  overflow: hidden;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--dd-option-card) 0 50%, var(--dd-option-fill) 50% 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.48);
  pointer-events: none;
  box-sizing: border-box;
}

.dd-demo-theme-arrow {
  display: block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid #c9d7e7;
  border-bottom: 1.5px solid #c9d7e7;
  pointer-events: none;
  transform: rotate(45deg);
  transform-origin: center;
}

.dd-demo-theme-trigger[aria-expanded="true"] .dd-demo-theme-arrow {
  transform: translateY(2px) rotate(225deg);
}

.dd-demo-theme-menu {
  position: absolute;
  z-index: 8;
  top: 34px;
  left: 0;
  display: grid;
  width: 100%;
  padding: 4px;
  gap: 2px;
  border: 1px solid rgba(130, 153, 183, 0.28);
  border-radius: 9px;
  outline: 0;
  background: #111821;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.42);
  color: #edf4fc;
  box-sizing: border-box;
}

.dd-demo-theme-menu[hidden] {
  display: none;
}

.dd-demo-theme-option {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 32px;
  padding: 4px 8px;
  gap: 7px;
  border: 0;
  border-radius: 6px;
  outline: 0;
  background: transparent;
  color: #edf4fc;
  font: 600 12px/1 "Segoe UI", sans-serif;
  text-align: left;
  cursor: default;
}

.dd-demo-theme-option > span:not(.dd-demo-pro-pill) {
  min-width: 0;
  flex: 1 1 auto;
}

.dd-demo-theme-option:hover,
.dd-demo-theme-option:focus-visible {
  background: #1c2734;
}

.dd-demo-theme-option[aria-selected="true"] {
  background: #213044;
}

.dd-demo-theme-swatch[data-dd-theme-swatch="dark"],
.dd-demo-theme-option[data-dd-theme-option="dark"] {
  --dd-option-card: #2c2c2e;
  --dd-option-fill: #4c86ff;
  --dd-option-pill-text: #fff;
}

.dd-demo-theme-swatch[data-dd-theme-swatch="light"],
.dd-demo-theme-option[data-dd-theme-option="light"] {
  --dd-option-card: #fff;
  --dd-option-fill: #2b74ff;
  --dd-option-pill-text: #fff;
}

.dd-demo-theme-swatch[data-dd-theme-swatch="slate"],
.dd-demo-theme-option[data-dd-theme-option="slate"] {
  --dd-option-card: #262c35;
  --dd-option-fill: #7aa2ff;
  --dd-option-pill-text: #fff;
}

.dd-demo-theme-swatch[data-dd-theme-swatch="lunar"],
.dd-demo-theme-option[data-dd-theme-option="lunar"] {
  --dd-option-card: #181b21;
  --dd-option-fill: #c2cdd8;
  --dd-option-pill-text: #11141a;
}

.dd-demo-theme-swatch[data-dd-theme-swatch="solar"],
.dd-demo-theme-option[data-dd-theme-option="solar"] {
  --dd-option-card: #fff9e8;
  --dd-option-fill: #268bd2;
  --dd-option-pill-text: #fff;
}

.dd-demo-theme-swatch[data-dd-theme-swatch="cardinal"],
.dd-demo-theme-option[data-dd-theme-option="cardinal"] {
  --dd-option-card: #fff;
  --dd-option-fill: #e23b3b;
  --dd-option-pill-text: #fff;
}

.dd-demo-pro-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 14px;
  padding: 0 4px;
  gap: 3px;
  border-radius: 7px;
  background: var(--dd-option-fill, var(--dd-fill));
  color: var(--dd-option-pill-text, var(--dd-reset-text));
  font-family: "Segoe UI", sans-serif;
  font-size: 9px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  opacity: 0.92;
  box-sizing: border-box;
}

.dd-demo-pro-pill[hidden] {
  display: none;
}

.dd-demo-pro-pill svg {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.15;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: scale(1.32);
  transform-origin: center;
  shape-rendering: geometricPrecision;
}

.dd-demo-try-it {
  position: absolute;
  z-index: 3;
  top: 79px;
  left: -102px;
  width: 128px;
  height: 58px;
  color: #ffc56f;
  font-family: "Segoe Print", "Comic Sans MS", cursive;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.48));
  opacity: 1;
  transition: opacity 180ms ease-out, visibility 180ms ease-out;
}

.dd-demo-hero .dd-demo-try-it {
  /* Keep the drag instruction above the simulated screen treatment. */
  z-index: 10;
}

.dd-demo-try-it.is-dismissed {
  visibility: hidden;
  opacity: 0;
}

.dd-demo-try-it > span {
  position: absolute;
  top: 5px;
  right: 94px;
  left: auto;
  font-size: 18.4px;
  transform: rotate(-5deg);
  transform-origin: right center;
  white-space: nowrap;
}

.dd-demo-try-it > svg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.dd-demo-try-it path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.dd-demo-try-it-compact {
  visibility: hidden;
}

.dd-demo-window {
  display: flow-root;
  width: 100%;
  height: var(--dd-window-height, 277px);
  max-height: var(--dd-window-height, 277px);
  block-size: var(--dd-window-height, 277px);
  max-block-size: var(--dd-window-height, 277px);
  margin: 0;
  color: var(--dd-text);
  font-family: "Segoe UI", sans-serif;
  font-size: 13px;
  line-height: 1;
  cursor: default;
  user-select: none;
  -webkit-user-select: none;
  opacity: 0.85;
  transition: opacity 170ms ease-out;
}

.dd-demo-window:hover,
.dd-demo.is-adjusting .dd-demo-window {
  opacity: 1;
}

.dd-demo-card {
  display: block;
  width: calc(100% - 20px);
  height: var(--dd-card-height, 257px);
  max-height: var(--dd-card-height, 257px);
  block-size: var(--dd-card-height, 257px);
  max-block-size: var(--dd-card-height, 257px);
  min-width: 0;
  margin: 10px;
  padding: 13px 13px 12px;
  border: 0;
  border-radius: 18px;
  background: var(--dd-card);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
  box-sizing: border-box;
  transition: none;
}

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

.dd-demo-titlebar {
  position: relative;
  display: grid;
  grid-template-columns: 24px 1fr 24px;
  align-items: center;
  height: 24px;
  gap: 6px;
  color: var(--dd-text);
  font-weight: 600;
  transform: translateY(-6px);
  touch-action: none;
  user-select: none;
}

.dd-demo-titlebar::before {
  position: absolute;
  top: -7px;
  right: -13px;
  bottom: 0;
  left: -13px;
  content: "";
}

.dd-demo-titlebar img {
  width: 24px;
  height: 24px;
}

.dd-demo-titlebar > span {
  overflow: hidden;
  padding-bottom: 1px;
  line-height: 18px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.dd-demo-close {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 6px;
  outline: 0;
  background: transparent;
  color: inherit;
  cursor: default;
  appearance: none;
}

.dd-demo-close::before,
.dd-demo-close::after {
  position: absolute;
  top: 11px;
  left: 6px;
  width: 12px;
  height: 1.5px;
  border-radius: 2px;
  background: var(--dd-subtext);
  content: "";
}

@media (max-width: 960px) {
  .dd-demo-try-it {
    top: -31px;
    left: 0;
    width: 76px;
    height: 166px;
  }

  .dd-demo-try-it > span {
    top: 0;
    right: auto;
    left: 0;
    font-size: 16px;
    transform-origin: left center;
  }

  .dd-demo-try-it-desktop {
    visibility: hidden;
  }

  .dd-demo-try-it-compact {
    visibility: visible;
  }

  .dd-demo-open-app-hint-desktop {
    display: none;
  }

  .dd-demo-open-app-hint-compact {
    display: block;
    bottom: calc(100% - 1px);
    left: 50%;
    width: 150px;
    height: 96px;
    transform: translate(-50%, 18px);
  }

  .dd-demo.is-app-closed .dd-demo-open-app-hint-compact {
    transform: translate(-50%, 0);
  }

  .dd-demo-open-app-hint-compact > span {
    top: 0;
    right: auto;
    left: 50%;
    font-size: 16px;
    transform: translateX(-50%) rotate(-4deg);
    transform-origin: center;
  }

  .dd-demo-open-arrow-desktop {
    visibility: hidden;
  }

  .dd-demo-open-app-hint-compact > .dd-demo-open-arrow-compact {
    visibility: visible;
    transform: none;
  }
}

.dd-demo-close::before { transform: rotate(45deg); }
.dd-demo-close::after { transform: rotate(-45deg); }

.dd-demo-close:hover {
  background: var(--dd-close-hover-bg);
}

.dd-demo-close:hover::before,
.dd-demo-close:hover::after {
  background: var(--dd-close-hover-glyph);
}

.dd-demo-close:active {
  background: var(--dd-close-active-bg);
}

.dd-demo-close:active::before,
.dd-demo-close:active::after {
  background: var(--dd-close-active-glyph);
}

.dd-demo-display-picker {
  display: grid;
  grid-template-columns: 1fr 24px;
  align-items: center;
  height: 26px;
  margin-top: 5px;
  overflow: hidden;
  border: 1px solid var(--dd-border);
  border-radius: 5px;
  background: var(--dd-control);
  color: var(--dd-text);
  box-sizing: border-box;
  user-select: none;
}

.dd-demo-display-picker span {
  padding: 0 6px;
  overflow: hidden;
  line-height: 18px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.dd-demo-display-picker i {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
}

.dd-demo-display-picker i::after {
  position: absolute;
  top: 10px;
  left: 8px;
  width: 0;
  height: 0;
  border-top: 4px solid var(--dd-combo-arrow);
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  content: "";
}

.dd-demo-display-picker:hover span,
.dd-demo-display-picker:hover i::after {
  opacity: 0.75;
}

.dd-demo-display-picker i:active::after {
  opacity: 0.6;
}

.dd-demo-controls {
  display: grid;
  margin-top: 12px;
}

.dd-demo-control {
  height: 44px;
}

.dd-demo-control[hidden],
.dd-demo-control.is-hidden {
  display: none;
}

.dd-demo-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 16px;
  gap: 8px;
}

.dd-demo-control-label {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 6px;
}

.dd-demo-label-row label {
  color: var(--dd-text);
  font-size: 13px;
  font-weight: 600;
  line-height: 16px;
}

.dd-demo-label-row output {
  min-width: 0;
  color: var(--dd-text);
  font: inherit;
  line-height: 16px;
  text-align: right;
  white-space: nowrap;
}

.dd-demo-range-shell {
  --dd-progress: 50%;
  --dd-current-fill: var(--dd-fill);
  position: relative;
  display: block;
  width: 100%;
  height: 20px;
  margin: 4px 0;
  top: var(--dd-rail-snap-y, 0px);
}

.dd-demo-range {
  position: absolute;
  z-index: 2;
  top: 0;
  right: -1px;
  bottom: 0;
  left: -1px;
  display: block;
  width: calc(100% + 2px);
  height: 20px;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  cursor: default;
  touch-action: pan-y;
  appearance: none;
  -webkit-appearance: none;
}

.dd-demo-range-visual {
  position: absolute;
  z-index: 1;
  top: calc(50% - var(--dd-rail-half-height, 3px));
  right: 0;
  left: 0;
  height: var(--dd-rail-height, 6px);
  border-radius: 3px;
  background: linear-gradient(90deg,
    var(--dd-current-fill) 0,
    var(--dd-current-fill) var(--dd-progress),
    var(--dd-rail) var(--dd-progress),
    var(--dd-rail) 100%);
  pointer-events: none;
}

.dd-demo-range-visual::before {
  content: none;
}

.dd-demo-range-shell:hover {
  --dd-current-fill: var(--dd-fill-hover);
}

.dd-demo-range:active ~ .dd-demo-range-visual,
.dd-demo-range.is-dragging ~ .dd-demo-range-visual,
.dd-demo-range.is-autoplaying ~ .dd-demo-range-visual {
  --dd-current-fill: var(--dd-fill);
}

.dd-demo-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 6px;
  border: 0;
  border-radius: 3px;
  background: transparent;
  box-shadow: none;
}

.dd-demo-range::-webkit-slider-thumb {
  width: 16px;
  height: 16px;
  margin-top: -5px;
  border: 0;
  border-radius: 50%;
  background: var(--dd-thumb);
  box-shadow: 0 0 11px var(--dd-halo);
  appearance: none;
  -webkit-appearance: none;
  transition: background-color 140ms ease-out, box-shadow 140ms ease-out;
}

.dd-demo-range:hover::-webkit-slider-thumb {
  background: var(--dd-thumb-hover);
}

.dd-demo-range:active::-webkit-slider-thumb,
.dd-demo-range.is-dragging::-webkit-slider-thumb,
.dd-demo-range.is-autoplaying::-webkit-slider-thumb {
  background: var(--dd-thumb-active);
  box-shadow: 0 0 11px var(--dd-halo);
}

.dd-demo-range::-moz-range-track {
  width: 100%;
  height: 6px;
  border: 0;
  border-radius: 3px;
  background: transparent;
  box-shadow: none;
}

.dd-demo-range::-moz-range-progress {
  height: 6px;
  border: 0;
  border-radius: 3px;
  background: transparent;
  box-shadow: none;
}

.dd-demo-range::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border: 0;
  border-radius: 50%;
  background: var(--dd-thumb);
  box-shadow: 0 0 11px var(--dd-halo);
  transition: background-color 140ms ease-out, box-shadow 140ms ease-out;
}

.dd-demo-range:hover::-moz-range-thumb {
  background: var(--dd-thumb-hover);
}

.dd-demo-range:active::-moz-range-thumb,
.dd-demo-range.is-dragging::-moz-range-thumb,
.dd-demo-range.is-autoplaying::-moz-range-thumb {
  background: var(--dd-thumb-active);
  box-shadow: 0 0 11px var(--dd-halo);
}

.dd-demo-range:focus-visible::-webkit-slider-thumb {
  box-shadow: 0 0 13px var(--dd-focus);
}

.dd-demo-range:focus-visible::-moz-range-thumb {
  box-shadow: 0 0 13px var(--dd-focus);
}

.dd-demo-range-visual-temperature {
  background: linear-gradient(90deg, var(--dd-temp-warm) 0%, var(--dd-temp-neutral) 89%, var(--dd-temp-cool) 100%);
}

.dd-demo-range-visual-temperature::before {
  display: none;
}

.dd-demo-range-shell-temperature:hover .dd-demo-range-visual-temperature {
  background: linear-gradient(90deg, var(--dd-temp-warm) 0%, var(--dd-temp-neutral) 89%, var(--dd-temp-cool) 100%);
}

.dd-demo-range-temperature:active ~ .dd-demo-range-visual-temperature,
.dd-demo-range-temperature.is-dragging ~ .dd-demo-range-visual-temperature {
  background: linear-gradient(90deg, var(--dd-temp-warm) 0%, var(--dd-temp-neutral) 89%, var(--dd-temp-cool) 100%);
}

.dd-demo-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  height: 32px;
  margin-top: 5px;
  gap: 8px;
}

.dd-demo-action {
  display: grid;
  place-items: center;
  min-width: 0;
  height: 32px;
  padding: 0 12px;
  border: 1px solid var(--dd-border);
  border-radius: 7px;
  color: var(--dd-button-text);
  font: inherit;
  line-height: 1;
  box-sizing: border-box;
}

.dd-demo-settings {
  background: var(--dd-button);
  user-select: none;
}

.dd-demo-settings:hover {
  background: var(--dd-button-hover);
  opacity: 0.92;
}

.dd-demo-settings:active {
  background: var(--dd-button-active);
  opacity: 0.85;
}

.dd-demo-reset {
  background: var(--dd-reset);
  color: var(--dd-reset-text);
  cursor: default;
}

.dd-demo-reset:not(:disabled):hover {
  opacity: 0.92;
}

.dd-demo-reset:not(:disabled):active {
  opacity: 0.85;
}

.dd-demo-reset:disabled {
  background: transparent;
  color: var(--dd-disabled);
  opacity: 1;
}

.dd-demo-reset:focus-visible {
  outline: 2px solid var(--dd-focus);
  outline-offset: 2px;
}

.feature-showcases {
  display: grid;
  width: 100%;
  margin-top: 24px;
  margin-inline: 0;
  gap: 24px;
  transform: none;
}

.feature-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(480px, 1.12fr);
  align-items: center;
  padding: clamp(36px, 4vw, 52px);
  gap: clamp(48px, 6vw, 82px);
  overflow: hidden;
  border: 1px solid rgba(128, 151, 180, 0.22);
  border-radius: 24px;
  background: linear-gradient(137deg, rgba(21, 28, 37, 0.86) 4.87%, rgba(11, 17, 24, 0.96) 75.88%);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.09), 0 24px 64px rgba(0, 0, 0, 0.25);
}

.feature-showcase-comfort {
  --temperature-ambient-level: 0.53;
  --temperature-ambient-rgb: 195, 157, 106;
  --temperature-card-rgb: 210, 161, 100;
  --temperature-card-coolness: calc(var(--temperature-coolness) * 0.55);
  --temperature-card-warmth: calc(var(--temperature-warmth) * 0.55);
  --temperature-inner-coolness: calc(var(--temperature-coolness) * 0.70);
  --temperature-inner-warmth: calc(var(--temperature-warmth) * 0.70);
  --temperature-coolness: 0;
  --temperature-warmth: 0.52;
  isolation: isolate;
  background: linear-gradient(137deg, rgba(21, 28, 37, 0.88), rgba(11, 17, 24, 0.96));
}

.feature-showcase-comfort::before,
.feature-showcase-comfort::after {
  position: absolute;
  z-index: 0;
  inset: -12%;
  content: "";
  pointer-events: none;
  transition: opacity 180ms ease-out;
}

.feature-showcase-comfort::before {
  background:
    radial-gradient(circle at 83% 48%, rgba(246, 173, 58, 0.18), transparent 35%),
    radial-gradient(circle at 96% 0%, rgba(255, 215, 116, 0.09), transparent 32%);
  opacity: calc(0.68 + var(--temperature-card-warmth) - (var(--temperature-card-coolness) * 0.3));
}

.feature-showcase-comfort::after {
  background:
    radial-gradient(circle at 83% 48%, rgba(74, 145, 235, 0.18), transparent 35%),
    radial-gradient(circle at 96% 0%, rgba(112, 187, 255, 0.09), transparent 32%);
  opacity: var(--temperature-card-coolness);
}

.feature-showcase-control {
  grid-template-areas: "compatibility-visual compatibility-copy";
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  min-height: 500px;
  gap: clamp(48px, 5vw, 68px);
  background:
    radial-gradient(circle at 22% 47%, rgba(47, 134, 255, 0.15), transparent 34%),
    linear-gradient(137deg, rgba(15, 24, 35, 0.9), rgba(10, 16, 23, 0.97));
}

.feature-showcase-control .feature-showcase-copy {
  grid-area: compatibility-copy;
  left: -8px;
}

.feature-showcase-control .feature-showcase-label {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-showcase-control .feature-showcase-label::before {
  width: 30px;
  height: 2px;
  background: #4a9cff;
  content: "";
}

.feature-showcase.feature-showcase-control h3 {
  max-width: none;
  font-size: clamp(34px, 3.05vw, 43px);
}

.feature-showcase.feature-showcase-control h3 span {
  display: block;
  white-space: nowrap;
}

.feature-showcase-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.feature-showcase-label {
  display: block;
  margin-bottom: 14px;
  color: #8cbfff;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.feature-showcase h3 {
  max-width: 15ch;
  margin: 0;
  font-size: clamp(31px, 3.2vw, 44px);
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.feature-showcase-copy > p {
  max-width: 43ch;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}

.compatibility-guide-link {
  display: inline-flex;
  align-items: center;
  margin-top: 16px;
  gap: 5px;
  font-size: 14px;
}

.feature-chips {
  display: flex;
  flex-wrap: wrap;
  margin: 26px 0 0;
  padding: 0;
  gap: 6px;
  list-style: none;
}

.feature-chips li {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px;
  border: 1px solid rgba(226, 178, 77, 0.25);
  border-radius: 999px;
  background: rgba(37, 29, 15, 0.62);
  color: #f4dfb4;
  font-size: 11px;
  font-weight: 650;
  line-height: 1.2;
}

.feature-chips li::before {
  width: 6px;
  height: 6px;
  margin-right: 6px;
  border-radius: 50%;
  background: #f2b84d;
  box-shadow: 0 0 12px rgba(242, 184, 77, 0.45);
  content: "";
}

.feature-showcase-comfort .feature-chips li {
  border-color: rgba(var(--temperature-card-rgb), 0.34);
  background: rgba(var(--temperature-card-rgb), 0.10);
  color: color-mix(in srgb, rgb(var(--temperature-card-rgb)) 42%, white);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.035),
    0 0 14px rgba(var(--temperature-card-rgb), 0.055);
  transition: border-color 180ms ease-out, background-color 180ms ease-out, box-shadow 180ms ease-out;
}

.feature-showcase-comfort .feature-chips li::before {
  background: rgb(var(--temperature-card-rgb));
  box-shadow: 0 0 12px rgba(var(--temperature-card-rgb), 0.45);
  transition: background-color 180ms ease-out, box-shadow 180ms ease-out;
}

.temperature-visual,
.control-flow {
  position: relative;
  z-index: 1;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(128, 151, 180, 0.23);
  border-radius: 20px;
  background: rgba(6, 11, 17, 0.72);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.075), 0 22px 56px rgba(0, 0, 0, 0.28);
}

.temperature-visual {
  --dd-halo: rgba(var(--temperature-ambient-rgb), 0.55);
  --dd-focus: #4c86ff;
  --dd-thumb: #ddd;
  --dd-thumb-active: #4c86ff;
  --dd-thumb-hover: #3c72e6;
  --dd-temp-warm: #ffb24a;
  --dd-temp-neutral: #80868f;
  --dd-temp-cool: #58a6ff;
  aspect-ratio: 1.45;
  isolation: isolate;
  background: linear-gradient(145deg, rgba(19, 22, 25, 0.97), rgba(7, 12, 18, 0.96));
}

.temperature-visual::before,
.temperature-visual::after {
  position: absolute;
  z-index: 0;
  inset: -10%;
  content: "";
  pointer-events: none;
  transition: opacity 180ms ease-out;
}

.temperature-visual::before {
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 178, 59, 0.30), transparent 44%),
    radial-gradient(circle at 78% 18%, rgba(255, 214, 126, 0.12), transparent 34%);
  opacity: var(--temperature-inner-warmth);
}

.temperature-visual::after {
  background:
    radial-gradient(circle at 50% 40%, rgba(75, 145, 232, 0.22), transparent 44%),
    radial-gradient(circle at 78% 18%, rgba(126, 195, 255, 0.10), transparent 34%);
  opacity: var(--temperature-inner-coolness);
}

.temperature-visual-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 24px 28px 22px;
}

.temperature-monitor {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: min(68%, 340px);
}

.temperature-screen {
  position: relative;
  width: 100%;
  aspect-ratio: 1.68;
  overflow: hidden;
  padding: 5px 5px 7px;
  border-radius: 7.8px;
  background: #262d36;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.38);
}

.temperature-screen-panel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 0;
  background: linear-gradient(122deg, #243c50 0%, #617f93 48%, #a4b9c2 100%);
  box-shadow: inset 0 0 40px rgba(var(--temperature-ambient-rgb), 0.12);
  transition: box-shadow 180ms ease-out;
}

.temperature-screen-panel::before,
.temperature-screen-panel::after {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: "";
  pointer-events: none;
  transition: opacity 180ms ease-out;
}

.temperature-screen-panel::before {
  background:
    radial-gradient(circle at 42% 62%, rgba(255, 183, 80, 0.42), transparent 29%),
    linear-gradient(122deg, #6c3a16 0%, #bb7336 47%, #c7b588 100%);
  opacity: var(--temperature-warmth);
}

.temperature-screen-panel::after {
  background: linear-gradient(122deg, #183d67 0%, #407fb8 48%, #90b9dc 100%);
  opacity: var(--temperature-coolness);
}

.temperature-screen-header {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 32px;
  padding: 0 12px;
  background: rgba(13, 16, 20, 0.72);
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 700;
}

.temperature-screen-header i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgb(var(--temperature-ambient-rgb));
  box-shadow: 0 0 12px rgba(var(--temperature-ambient-rgb), 0.72);
  transition: background-color 180ms ease-out, box-shadow 180ms ease-out;
}

.temperature-screen-glow {
  position: absolute;
  z-index: 1;
  top: 47%;
  left: 36%;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: transparent;
  filter: blur(13px);
  transform: translate(-50%, -50%);
}

.temperature-screen-glow::before,
.temperature-screen-glow::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  content: "";
  transition: opacity 180ms ease-out;
}

.temperature-screen-glow::before {
  background: rgba(255, 202, 114, 0.22);
  opacity: var(--temperature-warmth);
}

.temperature-screen-glow::after {
  background: rgba(105, 174, 255, 0.18);
  opacity: var(--temperature-coolness);
}

.temperature-readout {
  position: absolute;
  z-index: 2;
  right: 12px;
  bottom: 12px;
  display: grid;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(16, 18, 21, 0.65);
  color: #fff5df;
  backdrop-filter: blur(8px);
}

.temperature-readout span {
  color: rgba(255, 245, 223, 0.68);
  font-size: 10px;
}

.temperature-readout output {
  display: block;
  margin-top: 1px;
  font-size: 16px;
  font-weight: 700;
}

.temperature-monitor-neck {
  width: 11.6%;
  height: 16px;
  border-radius: 0;
  clip-path: polygon(6.9% 0, 93.1% 0, 93.25% 30%, 94% 55%, 95.5% 75%, 97.5% 90%, 100% 100%, 0 100%, 2.5% 90%, 4.5% 75%, 6% 55%, 6.75% 30%);
  background:
    linear-gradient(180deg,
      rgba(2, 4, 7, 0.874) 0%,
      rgba(3, 6, 9, 0.713) 6.875%,
      rgba(4, 7, 10, 0.437) 13.75%,
      rgba(5, 8, 12, 0.184) 20.625%,
      rgba(6, 9, 13, 0.058) 27.5%,
      transparent 34.375%),
    linear-gradient(180deg,
      transparent 62.5%,
      rgba(5, 8, 12, 0.10) 68.75%,
      rgba(5, 8, 12, 0.25) 75%,
      rgba(5, 8, 12, 0.38) 81.25%,
      rgba(5, 8, 12, 0.34) 87.5%,
      rgba(5, 8, 12, 0.24) 93.75%,
      rgba(5, 8, 12, 0.18) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018), transparent 12%, transparent 88%, rgba(0, 0, 0, 0.022)),
    linear-gradient(180deg,
      #8f979e 0%,
      #9ba2a8 12.5%,
      #a7aeb3 25%,
      #b3b8bd 37.5%,
      #bbc0c5 50%,
      #c0c5c9 65%,
      #bfc4c8 77.5%,
      #b9bec2 90%,
      #b1b7bc 100%);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.05), inset 0 -1px rgba(255, 255, 255, 0.08);
  filter: brightness(0.8);
}

.temperature-monitor-foot {
  width: 15.5%;
  height: 3px;
  margin-top: -1px;
  border-radius: 12.6% / 50%;
  background: linear-gradient(180deg,
    #98a2aa 0%,
    #c4cbd0 50%,
    #717c85 100%);
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.16),
    inset 0 1px rgba(255, 255, 255, 0.06);
  filter: brightness(0.8);
}

.temperature-control {
  width: min(100%, 430px);
  margin-top: 18px;
}

.temperature-scale-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: -4px;
  color: rgba(223, 231, 241, 0.56);
  font-size: 9.5px;
  line-height: 1.25;
}

.temperature-scale-labels span {
  display: grid;
}

.temperature-scale-labels span:last-child {
  text-align: right;
}

.temperature-scale-labels strong {
  color: #eaf0f7;
  font-size: 12px;
}

.temperature-range-shell {
  --dd-rail-height: 6px;
  --dd-rail-half-height: 3px;
  height: 20px;
  margin: 4px 0;
}

.temperature-range {
  height: 20px;
  cursor: default;
}

.temperature-range::-webkit-slider-thumb {
  width: 16px;
  height: 16px;
  margin-top: -5px;
  box-shadow: 0 0 11px var(--dd-halo);
  transition: background-color 140ms ease-out, box-shadow 140ms ease-out;
}

.temperature-range:hover::-webkit-slider-thumb {
  box-shadow: 0 0 11px var(--dd-halo);
}

.temperature-range:active::-webkit-slider-thumb,
.temperature-range.is-dragging::-webkit-slider-thumb {
  box-shadow: 0 0 11px var(--dd-halo);
}

.temperature-range:focus-visible::-webkit-slider-thumb {
  box-shadow: 0 0 15px var(--dd-focus);
}

.temperature-range::-moz-range-thumb {
  width: 16px;
  height: 16px;
  box-shadow: 0 0 11px var(--dd-halo);
  transition: background-color 140ms ease-out, box-shadow 140ms ease-out;
}

.temperature-range:hover::-moz-range-thumb {
  box-shadow: 0 0 11px var(--dd-halo);
}

.temperature-range:active::-moz-range-thumb,
.temperature-range.is-dragging::-moz-range-thumb {
  box-shadow: 0 0 11px var(--dd-halo);
}

.temperature-range:focus-visible::-moz-range-thumb {
  box-shadow: 0 0 15px var(--dd-focus);
}

.control-flow {
  grid-area: compatibility-visual;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  min-height: 390px;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.compatibility-monitor-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  cursor: default;
  user-select: none;
  -webkit-user-select: none;
}

.compatibility-monitor {
  position: relative;
  width: min(74%, 388px);
  aspect-ratio: 1.64;
  padding: 10px 10px 21px;
  border: 1px solid rgba(114, 150, 188, 0.42);
  border-radius: 19px;
  background: linear-gradient(150deg, rgba(27, 40, 54, 0.98), rgba(10, 17, 25, 0.98));
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.08),
    0 24px 54px rgba(0, 0, 0, 0.28),
    0 0 54px rgba(48, 137, 239, 0.09);
}

.compatibility-screen {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(82, 140, 197, 0.34);
  border-radius: 12px;
  background:
    radial-gradient(circle at 42% 47%, rgba(52, 137, 236, 0.16), transparent 54%),
    linear-gradient(142deg, rgba(16, 42, 69, 0.98), rgba(7, 22, 37, 0.98));
  box-shadow: inset 0 0 38px rgba(24, 77, 133, 0.12);
}

.compatibility-screen::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.035), transparent 38%);
  content: "";
  pointer-events: none;
}

.compatibility-screen > strong {
  position: relative;
  z-index: 1;
  color: #e6eef8;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.compatibility-brightness {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: 63%;
  margin-top: 30px;
  gap: 18px;
}

.compatibility-brightness svg {
  flex: 0 0 auto;
  width: 25px;
  height: 25px;
  fill: none;
  stroke: rgba(139, 191, 247, 0.82);
  stroke-linecap: round;
  stroke-width: 1.55;
}

.compatibility-slider {
  position: relative;
  display: block;
  flex: 1;
  height: 6px;
  border-radius: 999px;
  background: rgba(115, 152, 190, 0.27);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.28);
}

.compatibility-slider::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 63%;
  border-radius: inherit;
  background: linear-gradient(90deg, #3689e8, #66adff);
  box-shadow: 0 0 14px rgba(66, 151, 247, 0.19);
  content: "";
}

.compatibility-slider i {
  position: absolute;
  top: 50%;
  left: 63%;
  width: 21px;
  height: 21px;
  border: 2px solid rgba(213, 233, 255, 0.86);
  border-radius: 50%;
  background: #72b3fb;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.32), 0 0 12px rgba(83, 166, 255, 0.24);
  transform: translate(-50%, -50%);
}

.compatibility-camera {
  position: absolute;
  bottom: 8px;
  left: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(96, 163, 232, 0.64);
  box-shadow: 0 0 5px rgba(86, 160, 239, 0.22);
  transform: translateX(-50%);
}

.compatibility-stand {
  position: relative;
  width: 164px;
  height: 48px;
}

.compatibility-stand::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 49px;
  height: 36px;
  border-right: 1px solid rgba(111, 145, 180, 0.33);
  border-left: 1px solid rgba(111, 145, 180, 0.33);
  background: linear-gradient(90deg, rgba(16, 29, 42, 0.7), rgba(37, 58, 79, 0.7) 50%, rgba(15, 27, 39, 0.7));
  content: "";
  transform: translateX(-50%);
}

.compatibility-stand > span {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 10px;
  border: 1px solid rgba(112, 149, 187, 0.35);
  border-radius: 999px 999px 5px 5px;
  background: linear-gradient(180deg, rgba(40, 58, 76, 0.96), rgba(15, 25, 35, 0.96));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.045), 0 5px 12px rgba(0, 0, 0, 0.2);
}

.compatibility-outcomes {
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(100%, 520px);
  margin: -1px 0 0;
  padding: 0;
  gap: 18px;
  list-style: none;
}

.compatibility-connectors {
  display: block;
  flex: 0 0 auto;
  width: min(100%, 520px);
  height: 46px;
  margin-top: 8px;
  overflow: visible;
  fill: none;
  stroke: rgba(100, 163, 226, 0.52);
  stroke-linecap: square;
  stroke-linejoin: round;
  stroke-width: 1;
  shape-rendering: geometricPrecision;
}

.compatibility-connectors path {
  vector-effect: non-scaling-stroke;
}

.compatibility-connectors circle {
  fill: rgba(110, 177, 242, 0.72);
  stroke: none;
}

.compatibility-result {
  position: relative;
  display: grid;
  align-content: center;
  min-width: 0;
  min-height: 104px;
  padding: 18px 16px;
  border: 1px solid rgba(107, 139, 173, 0.3);
  border-radius: 16px;
  background: rgba(12, 21, 31, 0.72);
  text-align: center;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.035), 0 16px 30px rgba(0, 0, 0, 0.14);
  cursor: default;
  user-select: none;
  -webkit-user-select: none;
  transition: border-color 180ms ease-out, box-shadow 180ms ease-out, background-color 180ms ease-out;
}

.compatibility-result strong {
  color: #e7eef7;
  font-size: 15px;
  line-height: 1.25;
  transition: color 180ms ease-out, text-shadow 180ms ease-out;
}

.compatibility-result small {
  margin-top: 7px;
  color: rgba(190, 207, 225, 0.7);
  font-size: 11px;
  font-weight: 550;
  line-height: 1.35;
  transition: color 180ms ease-out;
}

.compatibility-result-hardware {
  border-color: rgba(75, 157, 239, 0.5);
  background: linear-gradient(145deg, rgba(19, 52, 84, 0.9), rgba(13, 39, 65, 0.82));
}

.compatibility-result-hardware strong::before,
.compatibility-result-software strong::before {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin: 0 8px 2px 0;
  border-radius: 50%;
  background: #57a7ff;
  box-shadow: 0 0 9px rgba(73, 157, 248, 0.45);
  content: "";
}

.compatibility-result-software strong::before {
  background: #8496aa;
  box-shadow: none;
}

@media (hover: hover) and (pointer: fine) {
  .compatibility-result:hover {
    border-color: rgba(125, 160, 196, 0.43);
    background-color: rgba(16, 27, 39, 0.78);
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.05), 0 16px 30px rgba(0, 0, 0, 0.14), 0 0 22px rgba(72, 141, 214, 0.055);
  }

  .compatibility-result-hardware:hover {
    border-color: rgba(83, 166, 248, 0.67);
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.055), 0 16px 30px rgba(0, 0, 0, 0.14), 0 0 24px rgba(47, 134, 255, 0.09);
  }

  .compatibility-result:hover strong {
    color: #f1f6fc;
    text-shadow: 0 0 10px rgba(126, 185, 247, 0.1);
  }

  .compatibility-result:hover small {
    color: rgba(202, 218, 234, 0.79);
  }
}

@media (max-width: 1040px) {
  .feature-showcases {
    width: 100%;
    margin-top: 20px;
    margin-inline: 0;
    gap: 20px;
    transform: none;
  }

  .feature-showcase,
  .feature-showcase-control {
    grid-template-columns: 1fr;
    padding: clamp(32px, 5vw, 48px);
    gap: 40px;
  }

  .feature-showcase-control {
    grid-template-areas:
      "compatibility-copy"
      "compatibility-visual";
    min-height: 0;
  }

  .feature-showcase-copy {
    max-width: 680px;
  }

  .feature-showcase-control .feature-showcase-copy {
    order: initial;
  }

  .temperature-visual,
  .control-flow {
    width: min(100%, 680px);
    margin-inline: auto;
  }
}

@media (max-width: 560px) {
  .compatibility-monitor {
    width: min(78%, 330px);
  }

  .compatibility-outcomes {
    gap: 10px;
  }

  .compatibility-result {
    min-height: 96px;
    padding: 15px 9px;
    border-radius: 13px;
  }

  .compatibility-result strong {
    font-size: 13px;
  }

  .compatibility-result small {
    font-size: 9.5px;
  }
}

.scroll-reveal {
  opacity: 1;
  translate: 0 0;
}

html.reveal-enabled .scroll-reveal {
  opacity: 0;
  translate: 0 18px;
  transition:
    opacity 560ms cubic-bezier(0.22, 1, 0.36, 1),
    translate 620ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, translate;
}

html.reveal-enabled .scroll-reveal.is-visible {
  opacity: 1;
  translate: 0 0;
  will-change: auto;
}

@media (prefers-reduced-motion: reduce) {
  html.reveal-enabled .scroll-reveal,
  html.reveal-enabled .scroll-reveal.is-visible {
    opacity: 1;
    translate: none;
    transition: none;
  }
}

.guide-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(47, 134, 255, 0.45);
  border-radius: 10px;
  background: rgba(47, 134, 255, 0.08);
  color: #44a3fd;
  transition: color 160ms ease-out;
}

.guide-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transition: filter 160ms ease-out;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1160px;
  margin-inline: auto;
}

.pricing-section {
  padding-top: 72px;
  padding-bottom: 72px;
}

.pricing-section .section-heading {
  margin-bottom: 28px;
}

.price-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-width: 0;
  padding: 29px 31px 27px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(22, 28, 36, 0.9), rgba(12, 17, 23, 0.98)),
    var(--surface);
  box-shadow:
    0 16px 42px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.price-card-pro {
  position: relative;
  z-index: 1;
  margin: 0;
  border-color: rgba(47, 134, 255, 0.76);
  background:
    radial-gradient(circle at 78% 0%, rgba(47, 134, 255, 0.12), transparent 38%),
    linear-gradient(145deg, rgba(20, 30, 43, 0.95), rgba(11, 17, 24, 0.99)),
    var(--surface);
  box-shadow:
    0 0 0 1px rgba(47, 134, 255, 0.07),
    0 26px 64px rgba(0, 0, 0, 0.34),
    0 0 42px rgba(47, 134, 255, 0.08);
}

.price-card-heading {
  display: block;
  min-height: 0;
  padding-bottom: 19px;
  border-bottom: 1px solid var(--line);
}

.price-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
}

.price-card-heading h3 {
  flex: 0 0 auto;
  margin: 0;
  font-size: 34px;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.price-card-heading p {
  max-width: none;
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}

.plan-label {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 11px;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  background: var(--surface-raised);
  font-size: 13px;
  font-weight: 700;
}

.price {
  display: block;
  min-width: 0;
  margin-left: auto;
  padding: 0;
  border: 0;
  background: transparent;
  font-variant-numeric: tabular-nums;
  text-align: right;
  transform: none;
}

.price span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: none;
  white-space: nowrap;
}

.price strong {
  display: block;
  color: #f4f8fd;
  font-size: 34px;
  letter-spacing: -0.045em;
  line-height: 1.08;
  white-space: nowrap;
  transform: none;
}

.price small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.015em;
}

.check-list {
  display: grid;
  margin: 22px 0 24px;
  padding: 0;
  gap: 12px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  color: #e8edf3;
  font-size: 15.5px;
  line-height: 1.46;
}

.check-list li::before {
  position: absolute;
  top: 3px;
  left: 0;
  display: block;
  width: 16px;
  height: 20px;
  border: 0;
  color: #8292a5;
  content: "✓";
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
}

.price-card-pro .check-list li::before {
  color: #57a9ff;
}

.check-list strong {
  color: #f5f8fc;
  font-weight: 750;
}

.price-card-action {
  display: grid;
  grid-template-rows: 50px minmax(42px, auto) minmax(25px, auto);
  align-content: end;
  margin-top: 0;
}

.price-card-action p {
  display: flex;
  min-height: 0;
  align-items: center;
  justify-content: center;
  margin: 6px 2px 0;
  color: #aeb9c7;
  font-size: 14px;
  line-height: 1.45;
  text-align: center;
}

.price-card-provider {
  gap: 8px;
}

.price-card-provider img {
  display: block;
  width: auto;
  height: 20px;
  flex: 0 0 auto;
}

.price-card-secondary-link {
  align-self: center;
  justify-self: center;
  color: #80b9ff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
}

.price-card-secondary-link:hover {
  color: #b7d7ff;
}

.price-card-secondary-spacer {
  display: block;
  min-height: 25px;
}

.pricing-hardware-note {
  display: grid;
  max-width: 780px;
  margin: 20px auto 0;
  gap: 2px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.55;
  text-align: center;
}

.text-link,
.faq a {
  color: #79b6ff;
  font-weight: 650;
  text-decoration: underline;
  text-decoration-color: rgba(121, 182, 255, 0.5);
  text-underline-offset: 3px;
}

.text-link:hover,
.faq a:hover,
.faq a:focus-visible {
  color: #a2ccff;
  text-decoration-color: currentColor;
  text-decoration-thickness: 2px;
}

.reviews-heading-row {
  margin-bottom: 36px;
}

.reviews-heading-row .section-heading {
  margin-bottom: 0;
}

.rating-actions {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  margin-top: 20px;
  column-gap: 20px;
  row-gap: 8px;
}

.rating-summary {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  color: inherit;
}

.rating-summary .stars {
  font-size: 15px;
}

.rating-summary strong {
  font-size: 22px;
  line-height: 1;
}

.rating-summary > span:not(.stars) {
  color: var(--muted);
  font-size: 14px;
}

.store-reviews-link {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  color: #75b4ff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  white-space: nowrap;
  transition: color 180ms ease-out, text-shadow 180ms ease-out;
}

.store-reviews-link:hover,
.store-reviews-link:focus-visible {
  color: #a4d0ff;
  text-shadow: 0 0 11px rgba(85, 157, 255, 0.28);
}

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

.review-card {
  display: flex;
  flex-direction: column;
  min-height: 226px;
  margin: 0;
  padding: 24px 26px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.review-card::before {
  margin-bottom: 10px;
  color: rgba(85, 157, 255, 0.62);
  content: "“";
  font-family: Georgia, serif;
  font-size: 50px;
  line-height: 0.72;
}

.review-card blockquote {
  margin: 0;
  color: #e8edf3;
  font-size: 18px;
  line-height: 1.58;
}

.review-card figcaption {
  display: flex;
  flex-direction: column;
  margin-top: auto;
  padding-top: 26px;
}

.review-author {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.review-card .review-country {
  color: #8f99a6;
  font-size: 14px;
}

@media (hover: hover) and (pointer: fine) {
  .review-card:hover {
    border-color: rgba(91, 112, 137, 0.72);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
  }
}

.help-layout {
  display: block;
}

.help-layout > .section-heading {
  max-width: none;
  margin-bottom: 36px;
}

.help-heading h2 {
  max-width: 760px;
}

.help-heading > p:last-of-type {
  max-width: 78ch;
  margin-top: 16px;
}

.help-comparison-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
  margin-top: 22px;
}

.help-comparison-links > span {
  margin-right: 4px;
  color: #aeb9c8;
  font-size: 14px;
  font-weight: 650;
}

.help-comparison-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 6px 11px;
  border: 1px solid rgba(87, 106, 130, 0.55);
  border-radius: 8px;
  background: rgba(37, 44, 53, 0.72);
  color: #d9e7f8;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  transition: border-color 160ms ease-out, background 160ms ease-out, color 160ms ease-out;
}

.help-comparison-links a span {
  color: #76b5ff;
  font-size: 15px;
  line-height: 1;
}

.help-comparison-links a:hover,
.help-comparison-links a:focus-visible {
  border-color: rgba(113, 174, 245, 0.85);
  background: rgba(50, 67, 88, 0.8);
  color: #fff;
}

.help-comparison-links a:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

@media (max-width: 620px) {
  .help-comparison-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 20px;
  }

  .help-comparison-links > span {
    grid-column: 1 / -1;
    margin: 0 0 2px;
  }

  .help-comparison-links a {
    justify-content: space-between;
    min-width: 0;
  }
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 24px;
}

.help-guides {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface);
}

.help-panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 69px;
  padding: 16px 20px;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.help-panel-heading h3 {
  margin: 0;
  font-size: 21px;
}

.help-panel-heading .text-link {
  flex: 0 0 auto;
  margin: 0;
  font-size: 14px;
  text-decoration: none;
}

.guide-list {
  overflow: hidden;
}

.guide-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  min-height: 74px;
  padding: 12px 16px;
  gap: 12px;
  transition: none;
}

.guide-row + .guide-row {
  border-top: 1px solid var(--line);
}

.guide-row > span:nth-child(2) {
  display: flex;
  flex-direction: column;
}

.guide-row strong {
  color: #c5c9ce;
  line-height: 1.35;
  transition: color 160ms ease-out, text-shadow 160ms ease-out;
}

.guide-row small {
  margin-top: 3px;
  color: #98a0ab;
  font-size: 14px;
  line-height: 1.35;
  transition: color 160ms ease-out, text-shadow 160ms ease-out;
}

.row-arrow {
  color: #67acfd;
  font-size: 22px;
  text-shadow: none;
  transition: color 160ms ease-out, text-shadow 160ms ease-out;
}

.guide-row:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: -3px;
}

.guide-row:focus-visible strong {
  color: #fff;
  text-shadow: 0 0 13px rgba(112, 178, 255, 0.34);
}

.guide-row:focus-visible small {
  color: #cbd4df;
  text-shadow: 0 0 10px rgba(112, 178, 255, 0.18);
}

.guide-row:focus-visible .guide-icon {
  color: #83c5ff;
}

.guide-row:focus-visible .guide-icon svg {
  filter: drop-shadow(0 0 5px rgba(69, 164, 255, 0.52));
}

.guide-row:focus-visible .row-arrow {
  color: #a0cfff;
  text-shadow: 0 0 10px rgba(105, 173, 255, 0.5);
}

@media (hover: hover) and (pointer: fine) {
  .guide-row:hover strong {
    color: #fff;
    text-shadow: 0 0 13px rgba(112, 178, 255, 0.34);
  }

  .guide-row:hover small {
    color: #cbd4df;
    text-shadow: 0 0 10px rgba(112, 178, 255, 0.18);
  }

  .guide-row:hover .guide-icon {
    color: #83c5ff;
  }

  .guide-row:hover .guide-icon svg {
    filter: drop-shadow(0 0 5px rgba(69, 164, 255, 0.52));
  }

  .guide-row:hover .row-arrow {
    color: #a0cfff;
    text-shadow: 0 0 10px rgba(105, 173, 255, 0.5);
  }
}

.text-link {
  display: inline-block;
  margin-top: 20px;
}

.faq {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface);
}

.faq h3 {
  display: flex;
  align-items: center;
  min-height: 69px;
  margin: 0;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  font-size: 21px;
}

.faq details + details {
  border-top: 1px solid var(--line);
}

.faq summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 64px;
  padding: 16px 50px 16px 20px;
  color: #c5c9ce;
  font-weight: 650;
  line-height: 1.4;
  cursor: pointer;
  list-style: none;
  transition: color 160ms ease-out, text-shadow 160ms ease-out;
}

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

.faq summary::after {
  position: absolute;
  top: 50%;
  right: 23px;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid #9da8b6;
  border-bottom: 1.5px solid #9da8b6;
  content: "";
  transform: translateY(-70%) rotate(45deg);
  transition: border-color 160ms ease-out, filter 160ms ease-out, transform 160ms ease-out;
}

.faq details[open] summary::after {
  transform: translateY(-25%) rotate(225deg);
}

.faq summary:hover,
.faq summary:focus-visible {
  color: #fff;
  text-shadow: 0 0 13px rgba(112, 178, 255, 0.34);
}

.faq summary:hover::after,
.faq summary:focus-visible::after {
  border-color: #bad8fa;
  filter: drop-shadow(0 0 4px rgba(105, 173, 255, 0.48));
}

.faq details p {
  margin: -4px 0 0;
  padding: 0 24px 22px;
  color: var(--muted);
  font-size: 15px;
}

.coverage-section {
  margin-top: 64px;
  padding: 56px 0 0;
  border-top: 1px solid rgba(40, 49, 61, 0.72);
  background: transparent;
}

.coverage-heading {
  margin-bottom: 30px;
}

.coverage-heading .eyebrow {
  margin-bottom: 14px;
}

.coverage-heading h2 {
  margin: 0;
  font-size: clamp(30px, 3.2vw, 40px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.coverage-heading > div > p {
  max-width: none;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
  white-space: nowrap;
}

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

.coverage-card {
  --publisher-accent: var(--accent);
  --publisher-border: rgba(47, 134, 255, 0.52);
  position: relative;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  min-width: 0;
  min-height: 228px;
  padding: 24px;
  border: 1px solid rgba(58, 70, 86, 0.78);
  border-radius: var(--radius-card);
  background: linear-gradient(145deg, rgba(22, 28, 36, 0.92), rgba(14, 18, 24, 0.96));
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  transition: border-color 180ms ease-out, box-shadow 180ms ease-out, transform 180ms ease-out;
}

.coverage-card::before {
  position: absolute;
  top: 0;
  right: 24px;
  left: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--publisher-accent), transparent);
  content: "";
  opacity: 0.58;
  transition: opacity 180ms ease-out;
}

.coverage-card-majorgeeks {
  --publisher-accent: #9fbd72;
  --publisher-border: rgba(159, 189, 114, 0.5);
}

.coverage-card-softpedia {
  --publisher-accent: #69aefd;
  --publisher-border: rgba(105, 174, 253, 0.52);
}

.coverage-card-ghacks {
  --publisher-accent: #ee9a50;
  --publisher-border: rgba(238, 154, 80, 0.5);
}

.coverage-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 16px;
}

.coverage-brand {
  color: var(--text);
  font-size: 19px;
  font-weight: 750;
  letter-spacing: -0.025em;
  line-height: 1;
}

.coverage-brand strong {
  color: var(--publisher-accent);
  font-weight: 800;
}

.coverage-brand-softpedia {
  color: #8cc2ff;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.055em;
}

.coverage-brand-ghacks strong {
  color: var(--publisher-accent);
}

.coverage-kind {
  color: #8e9cac;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1.35;
  text-align: right;
  text-transform: uppercase;
}

.coverage-card-title {
  max-width: 28ch;
  color: #edf1f6;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.35;
}

.coverage-card-copy {
  margin: 10px 0 22px;
  color: #9da7b3;
  font-size: 14px;
  line-height: 1.55;
}

.coverage-cta {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  margin-top: auto;
  gap: 8px;
  color: #75b4ff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  transition: color 180ms ease-out, text-shadow 180ms ease-out;
}

.coverage-cta > span {
  font-size: 15px;
  transition: transform 180ms ease-out;
}

.coverage-card:focus-visible {
  outline-offset: 4px;
}

@media (hover: hover) and (pointer: fine) {
  .coverage-card:hover {
    border-color: var(--publisher-border);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
    transform: translateY(-2px);
  }

  .coverage-card:hover::before {
    opacity: 0.9;
  }

  .coverage-card:hover .coverage-cta {
    color: #a4d0ff;
    text-shadow: 0 0 12px rgba(85, 157, 255, 0.3);
  }

  .coverage-card:hover .coverage-cta > span {
    transform: translate(2px, -2px);
  }
}

.closing-cta {
  padding: 48px 0;
  background: #090c10;
}

.closing-cta-card {
  position: relative;
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: space-between;
  padding: 24px 30px;
  gap: 30px;
  border: 1px solid rgba(66, 84, 108, 0.72);
  border-radius: 18px;
  background:
    radial-gradient(circle at 10% 20%, rgba(47, 134, 255, 0.13), transparent 42%),
    linear-gradient(118deg, #111822 0%, #0d1219 58%, #0a0e13 100%);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.025);
}

.closing-cta-copy {
  position: relative;
  z-index: 1;
}

.closing-cta-copy h2 {
  max-width: none;
  margin: 0;
  color: var(--text);
  font-size: clamp(25px, 2.4vw, 30px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.closing-cta-copy p {
  max-width: 58ch;
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.closing-cta-button {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  min-width: 154px;
}

@media (max-width: 720px) {
  .closing-cta {
    padding: 38px 0;
  }

  .closing-cta-card {
    align-items: stretch;
    padding: 22px;
    flex-direction: column;
    gap: 18px;
  }

  .closing-cta-copy h2 {
    max-width: none;
    font-size: 24px;
  }

  .closing-cta-button {
    width: 100%;
  }
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #07090c;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.15fr) minmax(0, 1.85fr);
  padding-top: 56px;
  padding-bottom: 48px;
  gap: 80px;
}

.footer-brand p {
  max-width: 36ch;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
}

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

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

.footer-links h2 {
  margin: 0 0 6px;
  color: var(--subtle);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.075em;
  line-height: 1.35;
  text-transform: uppercase;
}

.footer-links a {
  color: var(--muted);
  font-size: 14px;
  transition: color 160ms ease-out;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 24px;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: var(--subtle);
  font-size: 12px;
}

@media (max-width: 1180px) and (min-width: 961px) {
  .hero-grid {
    grid-template-columns: minmax(310px, 0.72fr) minmax(520px, 1.28fr);
    gap: 32px;
  }

  h1 {
    font-size: clamp(46px, 5vw, 56px);
  }

  .hero-lead {
    font-size: 17px;
  }

  .dd-demo-screen-caption {
    left: 22px;
    width: min(30%, 160px);
  }

  .dd-demo-screen-caption > strong {
    font-size: 20px;
  }

  .dd-demo-screen-caption > p {
    display: none;
  }

  .dd-demo-hero .dd-demo-window-wrap {
    width: min(330px, calc(100% - 30px));
  }
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-copy {
    max-width: 720px;
    margin-inline: auto;
    text-align: center;
  }

  .hero-copy .eyebrow,
  .hero-actions {
    justify-content: center;
  }

  h1 {
    max-width: 14ch;
    margin-inline: auto;
  }

  .hero-lead {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-product {
    width: min(100%, 760px);
    margin-inline: auto;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 620px;
    gap: 16px;
  }

}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 92px;
  }

  .container {
    width: min(100% - 48px, 1184px);
  }

  .site-header {
    height: 80px;
    padding-top: 8px;
  }

  .header-inner {
    height: 64px;
    padding: 0 10px 0 12px;
    gap: 12px;
    border-radius: 16px;
  }

  .menu-button {
    display: flex;
    width: 44px;
    height: 44px;
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: min(320px, calc(100vw - 48px));
    padding: 8px;
    gap: 2px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    background: rgba(12, 16, 22, 0.96);
    box-shadow: 0 22px 52px rgba(0, 0, 0, 0.46);
    backdrop-filter: blur(20px) saturate(135%);
    -webkit-backdrop-filter: blur(20px) saturate(135%);
  }

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

  .primary-nav a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 11px 14px;
  }

  .hero {
    padding: 54px 0 50px;
  }

  .settings-showcase {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .settings-showcase-copy {
    max-width: 680px;
  }

  .settings-showcase-media {
    width: min(100%, 720px);
    margin-inline: auto;
  }

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

  .trust-item {
    min-height: 68px;
    padding: 14px 20px;
  }

  .trust-item + .trust-item {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section {
    padding: 72px 0;
  }

  .reviews-heading-row {
    margin-bottom: 32px;
  }

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

  .review-card {
    min-height: 0;
  }

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

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

  .coverage-card {
    min-height: 0;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 780px) {
  .dd-demo {
    min-height: 720px;
  }

  .dd-demo-preview::after {
    background: linear-gradient(180deg, transparent 36%, rgba(4, 8, 13, 0.18) 58%, rgba(4, 8, 13, 0.52));
  }

  .dd-demo-preview-copy {
    top: 52px;
    left: 34px;
    width: calc(100% - 68px);
    transform: none;
  }

  .dd-demo-preview-copy > strong {
    max-width: 15ch;
  }

  .dd-demo-preview-copy > p {
    max-width: 42ch;
  }

  .dd-demo-tone-strip {
    max-width: 420px;
  }

  .dd-demo-color-strip {
    max-width: 420px;
  }

  .dd-demo-window-wrap {
    top: auto;
    right: auto;
    bottom: 24px;
    left: 50%;
    width: min(360px, calc(100% - 32px));
    transform: translateX(-50%);
  }

  .dd-demo.dd-demo-hero {
    min-height: 0;
  }

  .dd-demo-hero .dd-demo-window-wrap {
    top: auto;
    right: 12px;
    bottom: 40px;
    left: auto;
    width: min(360px, calc(100% - 32px));
    transform: none;
  }

  .dd-demo-monitor-screen {
    aspect-ratio: 16 / 9;
  }

  .dd-demo-monitor-stand {
    height: 44px;
  }
}

@media (max-width: 620px) {
  html {
    scroll-padding-top: 84px;
  }

  .container {
    width: calc(100% - 40px);
  }

  .coverage-heading > div > p {
    font-size: 16px;
    white-space: normal;
  }

  .settings-showcase-media,
  .settings-showcase-media::before,
  .settings-showcase-media video {
    border-radius: 14px;
  }

  .site-header {
    height: 72px;
    padding-top: 6px;
  }

  .header-inner {
    height: 60px;
    padding: 0 8px;
    gap: 10px;
    border-radius: 15px;
  }

  .brand span {
    font-size: 16px;
  }

  .header-inner > .brand img {
    width: 44px;
    height: 44px;
  }

  .button-header {
    min-height: 44px;
    padding: 8px 12px;
    font-size: 14px;
  }

  .button-header svg {
    width: 16px;
    height: 16px;
    margin-right: 7px;
  }

  .primary-nav {
    width: calc(100vw - 40px);
  }

  .hero {
    padding: 36px 0 38px;
  }

  .eyebrow {
    margin-bottom: 14px;
  }

  h1 {
    max-width: none;
    font-size: clamp(38px, 10vw, 42px);
    line-height: 1.04;
  }

  .hero-copy .eyebrow {
    flex-direction: column;
    gap: 8px;
  }

  .hero-lead {
    margin-top: 18px;
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 24px;
  }

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

  .hero-note span + span::before {
    display: none;
  }

  .hero-note {
    display: grid;
    gap: 3px;
  }

  .hero-grid {
    gap: 20px;
  }

  .trust-item {
    flex-wrap: wrap;
    min-height: 64px;
    font-size: 14px;
  }

  .trust-item strong {
    font-size: 16px;
  }

  .section {
    padding: 64px 0;
  }

  .coverage-section {
    margin-top: 48px;
    padding: 48px 0 0;
  }

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

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

  .section-heading > p:last-child {
    margin-top: 16px;
    font-size: 16px;
  }

  .dd-demo {
    min-height: 660px;
    margin-right: -20px;
    margin-left: -20px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .dd-demo::after {
    border-right: 0;
    border-left: 0;
  }

  .dd-demo-preview-copy {
    top: 36px;
    left: 24px;
    width: calc(100% - 48px);
  }

  .dd-demo-preview-copy > span {
    margin-bottom: 10px;
  }

  .dd-demo-preview-copy > strong {
    font-size: clamp(31px, 10vw, 38px);
  }

  .dd-demo-preview-copy > p {
    margin-top: 12px;
    font-size: 14px;
  }

  .dd-demo-tone-strip {
    height: 30px;
    margin-top: 18px;
  }

  .dd-demo-window-wrap {
    bottom: 12px;
    width: min(360px, calc(100% - 12px));
  }

  .dd-demo.dd-demo-hero {
    min-height: 395px;
    margin-right: 0;
    margin-left: 0;
    border: 0;
    border-radius: 0;
  }

  .dd-demo.dd-demo-hero::after {
    display: none;
  }

  .dd-demo-hero .dd-demo-window-wrap {
    top: 46px;
    right: 50%;
    bottom: auto;
    left: auto;
    width: min(360px, calc(100% - 14px));
    transform: translateX(50%);
  }

  .dd-demo-stage-toolbar {
    justify-content: center;
    margin: 0 0 12px;
  }

  .dd-demo-live-label {
    display: none;
  }

  .dd-demo-monitor-bezel {
    padding: 8px 8px 18px;
    border-radius: 10.2px;
  }

  .dd-demo-monitor-screen {
    height: 320px;
    aspect-ratio: auto;
    border-radius: 0;
  }

  .dd-demo-monitor-brand {
    bottom: 4px;
  }

  .dd-demo-monitor-power {
    bottom: 5px;
  }

  .dd-demo-monitor-stand {
    display: none;
  }

  .dd-demo-monitor::before {
    right: 8%;
    bottom: -6px;
    left: 8%;
    height: 34px;
  }

  .dd-demo-screen-clock {
    display: none;
  }

  .dd-demo-screen-caption {
    display: none;
  }

  .settings-showcase-copy h2 {
    font-size: 34px;
  }

  .settings-showcase {
    padding: 24px 20px;
    gap: 32px;
    border-radius: 18px;
  }

  .settings-showcase-copy > p:last-of-type {
    margin-top: 18px;
    font-size: 16px;
  }

  .automation-highlights {
    margin-top: 26px;
    gap: 10px;
  }

  .automation-chapter {
    padding: 14px;
  }

  .feature-showcases {
    margin-top: 16px;
    gap: 16px;
  }

  .feature-showcase,
  .feature-showcase-control {
    padding: 28px 20px;
    gap: 32px;
    border-radius: 18px;
  }

  .feature-showcase h3 {
    font-size: 29px;
  }

  .feature-showcase.feature-showcase-control h3 {
    font-size: clamp(25px, 7.2vw, 29px);
  }

  .feature-showcase-copy > p {
    margin-top: 15px;
    font-size: 16px;
  }

  .feature-chips {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 22px;
  }

  .feature-chips li {
    justify-content: center;
  }

  .feature-chips li:last-child {
    grid-column: 1 / -1;
  }

  .temperature-visual,
  .control-flow {
    aspect-ratio: 1.25;
    border-radius: 15px;
  }

  .temperature-visual {
    aspect-ratio: 1.08;
  }

  .temperature-visual-inner {
    padding: 18px 18px 17px;
  }

  .temperature-monitor {
    width: min(90%, 320px);
  }

  .temperature-readout {
    right: 8px;
    bottom: 8px;
    padding: 6px 8px;
    border-radius: 6px;
  }

  .temperature-readout span {
    font-size: 9px;
  }

  .temperature-readout output {
    font-size: 14px;
  }

  .temperature-monitor-neck {
    height: 12px;
  }

  .temperature-control {
    margin-top: 12px;
  }

  .control-flow {
    min-height: 360px;
    aspect-ratio: auto;
  }

  .control-flow-inner {
    padding: 24px 18px 34px;
  }

  .price-card {
    padding: 22px 20px 18px;
  }

  .price-card-heading {
    min-height: 0;
  }

  .price {
    min-width: 128px;
  }

  .price strong {
    font-size: 32px;
  }

  .check-list {
    margin: 18px 0 22px;
    gap: 9px;
  }

  .price-card-action p {
    min-height: 0;
  }

  .rating-summary {
    width: auto;
  }

  .review-card {
    min-height: 0;
    padding: 24px 20px;
  }

  .guide-row {
    min-height: 74px;
    padding: 13px 14px;
    gap: 12px;
  }

  .guide-icon {
    width: 40px;
    height: 40px;
  }

  .guide-row small {
    font-size: 13px;
  }

  .faq h3,
  .faq summary {
    padding-left: 20px;
  }

  .faq details p {
    padding-right: 20px;
    padding-left: 20px;
  }

  .footer-main {
    padding-top: 48px;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 32px;
  }

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

@media (max-width: 420px) {
  .brand span {
    display: none;
  }

  .price-card-heading {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .price-card-heading > div:first-child,
  .price {
    grid-template-rows: auto auto;
  }

  .price {
    align-self: flex-start;
    text-align: left;
  }

  .price span {
    white-space: normal;
  }
}

@media (max-width: 370px) {
  .feature-showcase.feature-showcase-control h3 {
    font-size: clamp(21px, 6.75vw, 25px);
  }
}

@media (max-width: 350px) {
  .hero-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 340px) {
  .button-header {
    width: 44px;
    padding: 0;
  }

  .button-header span {
    display: none;
  }

  .button-header svg {
    width: 18px;
    height: 18px;
    margin: 0;
  }
}

/* Full-width interactive monitor hero. The simulated desktop is filtered as one
   surface; the app, demo controls, glass, and monitor hardware stay crisp. */
.hero {
  padding: 24px 0 36px;
}

.hero-grid {
  display: block;
}

.hero .hero-product {
  width: 100%;
  margin-inline: auto;
}

.dd-demo.dd-demo-hero {
  min-height: 0;
}

.dd-demo-stage-toolbar {
  position: absolute;
  z-index: 20;
  top: 18px;
  right: 28px;
  left: 28px;
  justify-content: flex-start;
  min-height: 36px;
  margin: 0;
  gap: 12px;
  pointer-events: none;
}

.dd-demo-stage-toolbar > * {
  pointer-events: auto;
}

.dd-demo-live-label {
  margin-right: auto;
}

.dd-demo-hero .dd-demo-theme-picker,
.dd-demo-visibility-picker {
  position: relative;
  top: auto;
  right: auto;
  display: flex;
  align-items: center;
  height: 36px;
  padding: 4px 5px 4px 10px;
  flex: 0 0 auto;
  gap: 8px;
  border: 1px solid rgba(128, 151, 180, 0.3);
  border-radius: 10px;
  background: rgba(9, 13, 18, 0.9);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  color: #dbe8f7;
  font-family: "Segoe UI", sans-serif;
  line-height: 1;
  cursor: default;
  user-select: none;
  -webkit-user-select: none;
  box-sizing: border-box;
  backdrop-filter: blur(12px);
}

.dd-demo-visibility-control {
  position: relative;
  display: block;
  width: 170px;
  height: 28px;
}

.dd-demo-visibility-trigger {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 8px;
  column-gap: 7px;
  border: 1px solid rgba(130, 153, 183, 0.28);
  border-radius: 7px;
  outline: 0;
  background: #151c25;
  color: #edf4fc;
  font: 600 12px/1 "Segoe UI", sans-serif;
  text-align: left;
  cursor: default;
  box-sizing: border-box;
}

.dd-demo-visibility-trigger:hover,
.dd-demo-visibility-trigger[aria-expanded="true"] {
  border-color: rgba(128, 173, 230, 0.55);
  background: #19222d;
}

.dd-demo-visibility-trigger:focus-visible {
  border-color: #70a8ef;
  box-shadow: 0 0 0 2px rgba(74, 134, 214, 0.36);
}

.dd-demo-visibility-trigger > [data-dd-demo-visibility-summary] {
  min-width: 0;
  flex: 1 1 auto;
  overflow: hidden;
  line-height: 16px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dd-demo-visibility-trigger[aria-expanded="true"] .dd-demo-theme-arrow {
  transform: translateY(2px) rotate(225deg);
}

.dd-demo-visibility-menu {
  position: absolute;
  z-index: 9;
  top: 34px;
  right: 0;
  display: grid;
  width: 220px;
  padding: 4px;
  gap: 2px;
  border: 1px solid rgba(130, 153, 183, 0.28);
  border-radius: 9px;
  background: #111821;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.44);
  box-sizing: border-box;
}

.dd-demo-visibility-menu[hidden] {
  display: none;
}

.dd-demo-visibility-option {
  position: relative;
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  align-items: center;
  min-height: 34px;
  padding: 5px 8px;
  gap: 8px;
  border-radius: 6px;
  color: #dce7f4;
  font: 600 12px/1.25 "Segoe UI", sans-serif;
  cursor: default;
  touch-action: manipulation;
}

.dd-demo-visibility-option:hover,
.dd-demo-visibility-option:focus-within {
  background: #1b2b3e;
}

.dd-demo-visibility-option input {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: default;
  pointer-events: auto;
}

.dd-demo-visibility-option > i {
  position: relative;
  display: block;
  width: 14px;
  height: 14px;
  border: 1px solid #63758a;
  border-radius: 4px;
  background: #0e141c;
  box-sizing: border-box;
}

.dd-demo-visibility-option input:checked + i {
  border-color: #4b91ee;
  background: #2f86ff;
}

.dd-demo-visibility-option input:checked + i::after {
  position: absolute;
  top: 2px;
  left: 4px;
  width: 4px;
  height: 7px;
  border-right: 1.5px solid #fff;
  border-bottom: 1.5px solid #fff;
  content: "";
  transform: rotate(45deg);
}

.dd-demo-visibility-option input:focus-visible + i {
  box-shadow: 0 0 0 2px rgba(112, 168, 239, 0.44);
}

.dd-demo-monitor-screen {
  height: auto;
  aspect-ratio: 16 / 9;
}

.dd-demo-screen-filtered {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  filter: url("#display-dimmer-demo-filter");
}

/* Safari has a long-standing tendency to retain oversized backing surfaces
   for off-screen HTML elements using url()-based SVG filters. The slider
   values remain intact; the filter is restored as soon as the hero returns. */
.dd-demo.is-demo-offscreen .dd-demo-screen-filtered {
  filter: none;
}

.dd-demo-hero .dd-demo-preview,
.dd-demo-hero .dd-demo-screen-clock {
  filter: none;
}

.dd-demo-hero .dd-demo-preview {
  transform: none;
}

.dd-demo-desktop-swatches {
  position: absolute;
  z-index: 1;
  top: 82px;
  right: clamp(24px, 2.8vw, 34px);
  width: clamp(325.8px, 28.71vw, 347.4px);
  opacity: 0.64;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.24));
}

.dd-demo-desktop-swatches .dd-demo-color-strip,
.dd-demo-desktop-swatches .dd-demo-tone-strip {
  max-width: none;
  margin: 0;
}

.dd-demo-desktop-swatches .dd-demo-color-strip {
  height: 8.232px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 5px;
}

.dd-demo-desktop-swatches .dd-demo-color-strip i:nth-child(2) {
  background: #d5dce5;
}

.dd-demo-desktop-swatches .dd-demo-tone-strip {
  height: 26.754px;
  margin-top: 10.78px;
  border-color: transparent;
  border-radius: 6px;
}

.dd-demo-hero .dd-demo-preview::before,
.dd-demo-hero .dd-demo-preview::after {
  pointer-events: none;
}

.dd-demo-hero .hero-copy {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: clamp(44px, 5vw, 70px);
  width: min(47%, 520px);
  max-width: none;
  margin: 0;
  text-align: left;
  transform: translateY(-48%);
}

.dd-demo-hero .hero-copy .eyebrow,
.dd-demo-hero .hero-actions {
  justify-content: flex-start;
}

.dd-demo-hero .hero-copy .eyebrow {
  color: #c8d6e7;
}

.dd-demo-hero h1 {
  max-width: 18ch;
  margin: 0;
  font-size: clamp(46px, 4vw, 56px);
}

.dd-demo-hero .hero-lead {
  max-width: 54ch;
  margin-top: 18px;
  color: #ced9e6;
  font-size: 17px;
  line-height: 1.5;
}

.dd-demo-hero .hero-actions {
  margin-top: 22px;
}

.dd-demo-hero .hero-actions .button {
  width: 150px;
}

.dd-demo-hero .hero-note {
  margin-top: 12px;
  color: #838e9c;
  font-size: 13px;
}

.dd-demo-hero .dd-demo-window-wrap {
  z-index: 8;
  top: auto;
  right: 25px;
  bottom: 151px;
  width: min(360px, calc(100% - 40px));
  filter: drop-shadow(0 26px 34px rgba(0, 0, 0, 0.5));
  opacity: 1;
  visibility: visible;
  transform: none;
  transition: opacity 160ms ease-out, visibility 0s linear;
}

.dd-demo-hero.is-app-closed .dd-demo-window-wrap {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 140ms ease-in, visibility 0s linear 140ms;
}

@media (max-width: 1100px) and (min-width: 901px) {
  .dd-demo-stage-toolbar {
    right: 20px;
    left: 20px;
  }

  .dd-demo-visibility-control {
    width: 156px;
  }

  .dd-demo-hero .dd-demo-theme-control {
    width: 142px;
  }

  .dd-demo-hero .hero-copy {
    left: 42px;
    width: 48%;
  }

  .dd-demo-hero h1 {
    font-size: 46px;
  }

  .dd-demo-hero .hero-lead {
    max-width: 49ch;
    font-size: 16px;
  }

  .dd-demo-hero .dd-demo-window-wrap {
    right: 21px;
    width: 344px;
  }
}

@media (max-width: 900px) {
  .hero {
    padding: 26px 0 34px;
  }

  .dd-demo-stage-toolbar {
    right: 22px;
    left: 22px;
    justify-content: center;
  }

  .dd-demo-live-label {
    display: none;
  }

  .dd-demo-monitor-screen {
    height: 780px;
    aspect-ratio: auto;
  }

  .dd-demo-desktop-swatches {
    display: none;
  }

  .dd-demo-hero .hero-copy {
    top: 72px;
    left: 50%;
    width: min(calc(100% - 72px), 660px);
    max-width: 660px;
    text-align: center;
    transform: translateX(-50%);
  }

  .dd-demo-hero .hero-copy .eyebrow,
  .dd-demo-hero .hero-actions {
    justify-content: center;
  }

  .dd-demo-hero h1 {
    max-width: 18ch;
    margin-inline: auto;
    font-size: clamp(44px, 6.2vw, 50px);
  }

  .dd-demo-hero .hero-lead {
    max-width: 58ch;
    margin-right: auto;
    margin-left: auto;
  }

  .dd-demo-hero .dd-demo-window-wrap {
    right: calc(50% + 15px);
    bottom: 151px;
    width: min(360px, calc(100% - 36px));
    transform: translateX(50%);
  }
}

@media (max-width: 620px) {
  .hero {
    padding: 20px 0 24px;
  }

  .dd-demo-stage-toolbar {
    top: 14px;
    right: 12px;
    left: 12px;
    gap: 8px;
  }

  .dd-demo-hero .dd-demo-theme-picker,
  .dd-demo-visibility-picker {
    height: 34px;
    padding: 3px;
    gap: 0;
  }

  .dd-demo-stage-toolbar .dd-demo-theme-picker-label {
    display: none;
  }

  .dd-demo-visibility-control {
    width: 158px;
  }

  .dd-demo-hero .dd-demo-theme-control {
    width: 138px;
  }

  .dd-demo-visibility-menu {
    right: auto;
    left: 0;
    width: 206px;
  }

  .dd-demo-monitor-bezel {
    padding: 8px 8px 18px;
    border-radius: 10.2px;
  }

  .dd-demo-monitor-screen {
    height: 850px;
    border-radius: 0;
  }

  .dd-demo-monitor-stand {
    display: none;
  }

  .dd-demo-hero .hero-copy {
    top: 66px;
    width: calc(100% - 32px);
  }

  .dd-demo-hero .hero-copy .eyebrow {
    flex-direction: row;
    gap: 8px;
    font-size: 12px;
  }

  .dd-demo-hero h1 {
    max-width: none;
    font-size: clamp(36px, 10vw, 40px);
  }

  .dd-demo-hero .hero-lead {
    margin-top: 16px;
    font-size: 16px;
  }

  .dd-demo-hero .hero-actions {
    margin-top: 20px;
  }

  .dd-demo-hero .hero-actions .button {
    width: 100%;
    padding-inline: 12px;
    white-space: nowrap;
  }

  .dd-demo-hero .hero-actions .button svg {
    margin-right: 7px;
  }

  .dd-demo-hero .hero-note {
    margin-top: 10px;
  }

  .dd-demo-hero .dd-demo-window-wrap {
    right: calc(50% + 15px);
    bottom: 93px;
    width: min(360px, calc(100% - 18px));
    transform: translateX(50%);
  }

  .dd-demo-screen-clock {
    right: 10px;
    bottom: 10px;
    display: grid;
  }

  .dd-demo-monitor::before {
    bottom: -4px;
  }
}

@media (max-width: 390px) {
  .dd-demo-stage-toolbar {
    gap: 6px;
  }

  .dd-demo-visibility-control {
    width: 148px;
  }

  .dd-demo-hero .dd-demo-theme-control {
    width: 130px;
  }

  .dd-demo-monitor-screen {
    height: 880px;
  }

  .dd-demo-hero .hero-copy {
    top: 62px;
    width: calc(100% - 26px);
  }

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

@media (max-width: 350px) {
  .dd-demo-monitor-camera {
    top: 3px;
  }

  .dd-demo-visibility-control {
    width: 142px;
  }

  .dd-demo-hero .dd-demo-theme-control {
    width: 120px;
  }

  .dd-demo-monitor-screen {
    height: 940px;
  }
}

/* Keep the compact app window on the monitor screen's mathematical centerline.
   The instruction remains absolutely positioned in its own left-side lane, so
   its geometry cannot pull the window off-center. */
@media (max-width: 960px) {
  .dd-demo-hero .dd-demo-window-wrap {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }

  .dd-demo-try-it {
    left: -11px;
  }
}

@media (max-width: 960px) and (orientation: landscape) {
  /* A phone in landscape previously inherited the 780-940px portrait canvas.
     At a 3x device scale that made the SVG-filtered layer disproportionately
     expensive. Keep the real monitor aspect ratio in this orientation. */
  .dd-demo-monitor-screen {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .dd-demo-hero .hero-copy {
    top: clamp(54px, 7vw, 64px);
    left: clamp(24px, 4.5vw, 44px);
    width: min(46%, 390px);
    max-width: none;
    text-align: left;
    transform: none;
  }

  /* Keep the homepage eyebrow below the overlaid demo controls. Move the
     complete copy/CTA group together so its internal rhythm stays intact. */
  .hero .dd-demo-hero .hero-copy {
    top: clamp(54px, 7vw, 64px);
  }

  .dd-demo-hero .hero-copy .eyebrow,
  .dd-demo-hero .hero-actions {
    justify-content: flex-start;
  }

  .dd-demo-hero .hero-copy .eyebrow {
    margin-bottom: 8px;
    font-size: 11px;
  }

  .dd-demo-hero h1 {
    max-width: none;
    margin-inline: 0;
    font-size: clamp(28px, 4.5vw, 38px);
    line-height: 1.02;
  }

  .dd-demo-hero .hero-lead {
    max-width: 42ch;
    margin: 10px 0 0;
    font-size: clamp(12px, 1.8vw, 15px);
    line-height: 1.35;
  }

  .dd-demo-hero .hero-actions {
    display: flex;
    flex-wrap: nowrap;
    margin-top: 12px;
    gap: 8px;
  }

  .dd-demo-hero .hero-actions .button {
    width: 142px;
    min-height: 42px;
    padding: 9px 14px;
    font-size: 14px;
  }

  .dd-demo-hero .hero-note {
    display: none;
  }

  .dd-demo-hero .dd-demo-window-wrap {
    right: clamp(12px, 3vw, 25px);
    left: auto;
    transform: none;
  }

  .dd-demo-try-it {
    display: none;
  }

  /* Avoid promoting every newly revealed section to another large compositor
     layer while iOS is still retiring its portrait layers after rotation. */
  html.reveal-enabled .scroll-reveal,
  html.reveal-enabled .scroll-reveal.is-visible {
    opacity: 1;
    translate: none;
    transition: none;
    will-change: auto;
  }
}

@media (max-width: 720px) and (orientation: landscape) {
  /* Short landscape screens need the same lowered start without letting the
     CTA row run into the simulated taskbar. */
  .hero .dd-demo-hero .hero-copy {
    top: 54px;
    left: clamp(18px, 4vw, 28px);
    width: min(46%, 310px);
  }

  .hero .dd-demo-hero .hero-copy .eyebrow {
    margin-bottom: 6px;
  }

  .hero .dd-demo-hero h1 {
    max-width: none;
    font-size: 27px;
  }

  .hero .dd-demo-hero .hero-lead {
    max-width: none;
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.3;
  }

  .hero .dd-demo-hero .hero-actions {
    margin-top: 8px;
    gap: 6px;
  }

  .hero .dd-demo-hero .hero-actions .button {
    width: 136px;
    min-height: 36px;
    padding: 7px 10px;
    font-size: 13px;
  }
}

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

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