:root {
  --dcf-black:#03070c;
  --dcf-night:#08111b;
  --dcf-ink:#101820;
  --dcf-copy:#566472;
  --dcf-soft:#f3f6f8;
  --dcf-line:#dbe2e8;
  --dcf-blue:#1478e8;
  --dcf-blue-soft:#8fc8ff;
  --dcf-cyan:#66dcff;
  --dcf-white:#fff;
}

html {
  scroll-padding-top:124px;
}

.dcf-site-shell {
  background:var(--dcf-black);
}

.dcf-page {
  overflow:hidden;
  color:var(--dcf-ink);
  background:#fff;
  font-family:Inter,ui-sans-serif,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
}

.dcf-wide {
  width:min(1320px,calc(100% - 80px));
  margin:0 auto;
}

.dcf-eyebrow {
  margin:0;
  color:#2472bd;
  font-size:11px;
  font-weight:760;
  letter-spacing:.13em;
  text-transform:uppercase;
}

.dcf-local-nav {
  position:sticky;
  top:64px;
  z-index:28;
  color:#dbe7ef;
  border-bottom:1px solid rgba(128,158,181,.17);
  background:rgba(3,9,18,.91);
  backdrop-filter:blur(18px);
}

.dcf-local-inner {
  display:flex;
  min-height:54px;
  align-items:center;
  justify-content:space-between;
  gap:28px;
}

.dcf-local-name {
  flex:none;
  color:#f4f8fb;
  font-size:13px;
  font-weight:650;
}

.dcf-local-links {
  display:flex;
  align-items:center;
  gap:28px;
}

.dcf-local-links a {
  color:#8fa1af;
  font-size:11px;
  font-weight:620;
  transition:color .18s ease;
}

.dcf-local-links a:hover,
.dcf-local-links a[aria-current="true"] {
  color:#fff;
}

.dcf-local-links .dcf-local-cta {
  display:inline-flex;
  min-height:34px;
  align-items:center;
  padding:8px 13px;
  color:#06111b;
  background:#edf8ff;
}

.dcf-local-links .dcf-local-cta:hover {
  color:#06111b;
  background:#fff;
}

.dcf-hero {
  position:relative;
  overflow:hidden;
  color:#fff;
  background:
    radial-gradient(circle at 76% 42%,rgba(36,116,196,.13),transparent 33%),
    linear-gradient(120deg,#02060a 0%,#06101a 58%,#03070c 100%);
}

.dcf-hero::before {
  content:"";
  position:absolute;
  inset:0;
  opacity:.12;
  background-image:
    linear-gradient(rgba(104,148,185,.11) 1px,transparent 1px),
    linear-gradient(90deg,rgba(104,148,185,.11) 1px,transparent 1px);
  background-size:88px 88px;
  mask-image:linear-gradient(90deg,#000,transparent 46%);
  pointer-events:none;
}

.dcf-hero-inner {
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:minmax(380px,.84fr) minmax(520px,1.16fr);
  gap:58px;
  min-height:610px;
  align-items:center;
  padding-top:66px;
  padding-bottom:66px;
}

.dcf-hero-copy {
  max-width:590px;
}

.dcf-hero .dcf-eyebrow {
  color:var(--dcf-cyan);
}

.dcf-hero h1 {
  margin:18px 0 0;
  font-size:clamp(58px,5.3vw,80px);
  font-weight:620;
  line-height:.98;
  letter-spacing:-.057em;
}

.dcf-hero h1 span {
  color:var(--dcf-blue-soft);
}

.dcf-hero-lead {
  margin:24px 0 0;
  color:#b6c2cc;
  font-size:18px;
  line-height:1.55;
}

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

.dcf-button {
  display:inline-flex;
  min-height:48px;
  align-items:center;
  justify-content:center;
  gap:16px;
  padding:13px 20px;
  border:1px solid transparent;
  font-size:12px;
  font-weight:720;
  transition:transform .18s ease,border-color .18s ease,background .18s ease,color .18s ease;
}

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

.dcf-button-primary {
  color:#03111d;
  border-color:var(--dcf-cyan);
  background:var(--dcf-cyan);
}

.dcf-button-primary:hover {
  border-color:#b8f7ff;
  background:#b8f7ff;
}

.dcf-button-secondary {
  color:#e6f0f6;
  border-color:#3c5162;
  background:rgba(5,17,29,.56);
}

.dcf-button-secondary:hover {
  color:#fff;
  border-color:#738797;
  background:rgba(11,31,48,.8);
}

.dcf-hero-platforms {
  display:flex;
  align-items:center;
  gap:19px;
  margin-top:30px;
  color:#a9bac7;
}

.dcf-hero-platforms > span {
  padding-right:18px;
  border-right:1px solid #324454;
  color:#718695;
  font-size:10px;
  font-weight:680;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.dcf-hero-platforms > div {
  display:flex;
  align-items:center;
  gap:8px;
}

.dcf-hero-platforms svg {
  width:17px;
  height:17px;
  fill:currentColor;
}

.dcf-hero-platforms b {
  font-size:11px;
  font-weight:620;
}

.dcf-hero-product {
  position:relative;
  width:100%;
  max-width:760px;
  margin:0;
  justify-self:center;
  aspect-ratio:16/9;
}

.dcf-hero-product::after {
  content:"";
  position:absolute;
  left:18%;
  right:18%;
  bottom:4%;
  height:8%;
  border-radius:50%;
  background:rgba(25,97,167,.22);
  filter:blur(24px);
  pointer-events:none;
}

.dcf-hero-product img {
  position:relative;
  z-index:1;
  display:block;
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center;
}

.dcf-key-facts {
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  border-top:1px solid rgba(148,177,199,.24);
}

.dcf-key-facts > div {
  display:flex;
  min-height:108px;
  flex-direction:column;
  justify-content:center;
  padding:22px 34px;
  border-right:1px solid rgba(148,177,199,.18);
}

.dcf-key-facts > div:first-child {
  padding-left:0;
}

.dcf-key-facts > div:last-child {
  border-right:0;
}

.dcf-key-facts strong {
  color:#f8fbfd;
  font-size:28px;
  font-weight:570;
  letter-spacing:-.035em;
}

.dcf-key-facts span {
  margin-top:7px;
  color:#758c9c;
  font-size:11px;
}

.dcf-hardware {
  padding:118px 0 124px;
  background:#fff;
}

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

.dcf-section-heading-compact h2 {
  margin:0;
  font-size:clamp(46px,5vw,70px);
  font-weight:570;
  line-height:1;
  letter-spacing:-.055em;
}

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

.dcf-product-view {
  position:relative;
  min-width:0;
  margin:0;
  overflow:hidden;
  aspect-ratio:16/9;
  background:#03070c;
}

.dcf-product-view img {
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .55s ease;
}

.dcf-product-view:hover img {
  transform:scale(1.018);
}

.dcf-product-view figcaption {
  position:absolute;
  left:22px;
  bottom:20px;
  min-width:120px;
  padding:12px 14px;
  color:#fff;
  border-left:2px solid #4ca7ff;
  background:rgba(3,10,17,.73);
  backdrop-filter:blur(10px);
}

.dcf-product-view figcaption span,
.dcf-product-view figcaption strong {
  display:block;
}

.dcf-product-view figcaption span {
  color:#8aa7bc;
  font-size:8px;
  font-weight:760;
  letter-spacing:.11em;
}

.dcf-product-view figcaption strong {
  margin-top:5px;
  font-size:13px;
  font-weight:620;
}

.dcf-interface-line {
  display:grid;
  grid-template-columns:minmax(180px,1fr) 80px minmax(180px,1fr) 80px minmax(180px,1fr);
  align-items:center;
  margin-top:18px;
  padding:28px 34px;
  color:#fff;
  background:#07111b;
}

.dcf-interface-line > div {
  display:grid;
  grid-template-columns:auto 1fr;
  column-gap:14px;
  align-items:baseline;
}

.dcf-interface-line small {
  grid-column:1/-1;
  margin-bottom:7px;
  color:#638097;
  font-size:8px;
  font-weight:760;
  letter-spacing:.12em;
}

.dcf-interface-line strong {
  color:#eef5f9;
  font-size:15px;
  font-weight:620;
}

.dcf-interface-line span {
  color:#8398a7;
  font-size:10px;
}

.dcf-interface-line > i {
  position:relative;
  display:block;
  height:1px;
  margin:0 18px;
  background:#34526a;
}

.dcf-interface-line > i::after {
  content:"";
  position:absolute;
  top:-2px;
  right:0;
  width:5px;
  height:5px;
  border-radius:50%;
  background:#65dfff;
  box-shadow:0 0 12px #65dfff;
}

.dcf-capabilities {
  padding:116px 0;
  color:#fff;
  background:
    radial-gradient(circle at 18% 24%,rgba(30,116,193,.16),transparent 32%),
    #06101a;
}

.dcf-capabilities-layout {
  display:grid;
  grid-template-columns:minmax(300px,.78fr) minmax(540px,1.22fr);
  gap:100px;
  align-items:start;
}

.dcf-capabilities .dcf-eyebrow {
  color:#69caff;
}

.dcf-capabilities h2 {
  margin:18px 0 0;
  font-size:clamp(48px,4.7vw,68px);
  font-weight:560;
  line-height:1.02;
  letter-spacing:-.055em;
}

.dcf-capability-list {
  border-top:1px solid #324859;
}

.dcf-capability-list article {
  display:grid;
  grid-template-columns:45px 1fr;
  gap:20px;
  min-height:118px;
  align-items:center;
  padding:22px 0;
  border-bottom:1px solid #273b4b;
}

.dcf-capability-list article > strong {
  color:#7192aa;
  font-size:10px;
  font-weight:720;
}

.dcf-capability-list h3 {
  margin:0;
  color:#f0f6fa;
  font-size:21px;
  font-weight:610;
}

.dcf-capability-list p {
  margin:8px 0 0;
  color:#8fa2b0;
  font-size:13px;
}

.dcf-installation {
  padding:118px 0 124px;
  background:#eef2f5;
}

.dcf-installation-layout {
  display:grid;
  grid-template-columns:minmax(310px,.68fr) minmax(620px,1.32fr);
  gap:84px;
  align-items:center;
}

.dcf-installation-copy h2 {
  max-width:520px;
  margin:18px 0 0;
  font-size:clamp(44px,4.35vw,64px);
  font-weight:570;
  line-height:1.02;
  letter-spacing:-.054em;
}

.dcf-installation-copy > p:last-of-type {
  max-width:500px;
  margin:24px 0 0;
  color:var(--dcf-copy);
  font-size:15px;
  line-height:1.68;
}

.dcf-installation-points {
  margin:36px 0 0;
  border-top:1px solid #aebbc5;
}

.dcf-installation-points > div {
  display:grid;
  grid-template-columns:minmax(126px,.78fr) minmax(150px,1.22fr);
  gap:18px;
  padding:17px 0;
  border-bottom:1px solid #cbd4db;
}

.dcf-installation-points dt {
  color:#132635;
  font-size:11px;
  font-weight:720;
}

.dcf-installation-points dd {
  margin:0;
  color:#6b7984;
  font-size:11px;
}

.dcf-installation-stage {
  min-width:0;
  margin:0;
}

.dcf-installation-media {
  position:relative;
  overflow:hidden;
  aspect-ratio:4/3;
  background:#050a0e;
  box-shadow:0 34px 80px rgba(32,49,62,.18);
}

.dcf-installation-scene,
.dcf-installation-scene-focus {
  position:absolute;
  inset:0;
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}

.dcf-installation-scene {
  filter:brightness(.68) saturate(.72) blur(.7px);
  transform:scale(1.004);
}

.dcf-installation-scene-focus {
  z-index:1;
  clip-path:inset(41.4% 48.7% 37.4% 35.3%);
}

.dcf-installation-focus-frame {
  position:absolute;
  z-index:2;
  left:35.3%;
  top:41.4%;
  width:16%;
  height:21.2%;
  border:1px solid rgba(102,220,255,.92);
  box-shadow:0 0 0 6px rgba(102,220,255,.1),0 0 28px rgba(40,163,225,.28);
  pointer-events:none;
}

.dcf-installation-detail {
  position:absolute;
  z-index:3;
  right:20px;
  bottom:20px;
  display:grid;
  grid-template-columns:140px minmax(150px,1fr);
  width:min(395px,52%);
  overflow:hidden;
  color:#fff;
  border:1px solid rgba(125,202,241,.38);
  background:rgba(4,12,19,.93);
  box-shadow:0 18px 48px rgba(0,0,0,.38);
  backdrop-filter:blur(12px);
}

.dcf-installation-detail img {
  display:block;
  width:140px;
  height:180px;
  object-fit:cover;
}

.dcf-installation-detail > div {
  display:flex;
  min-width:0;
  flex-direction:column;
  justify-content:center;
  padding:16px 17px;
}

.dcf-installation-detail span,
.dcf-installation-stage figcaption span {
  color:#67cfff;
  font-size:8px;
  font-weight:760;
  letter-spacing:.11em;
}

.dcf-installation-detail strong {
  margin-top:8px;
  color:#f4f8fb;
  font-size:12px;
  font-weight:610;
  line-height:1.4;
}

.dcf-installation-stage figcaption {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  min-height:50px;
  padding:13px 16px;
  color:#fff;
  background:#07111b;
}

.dcf-installation-stage figcaption strong {
  color:#d8e5ed;
  font-size:11px;
  font-weight:580;
}

.dcf-software {
  padding:122px 0;
  background:var(--dcf-soft);
}

.dcf-software-layout {
  display:grid;
  grid-template-columns:minmax(300px,.68fr) minmax(610px,1.32fr);
  gap:92px;
  align-items:center;
}

.dcf-software-copy h2,
.dcf-spec-heading h2,
.dcf-resources h2 {
  margin:17px 0 0;
  font-size:clamp(43px,4.25vw,62px);
  font-weight:570;
  line-height:1.03;
  letter-spacing:-.052em;
}

.dcf-software-copy > p:last-of-type {
  max-width:460px;
  margin:23px 0 0;
  color:var(--dcf-copy);
  font-size:15px;
  line-height:1.68;
}

.dcf-os-badges {
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:31px;
}

.dcf-os-badges span {
  display:flex;
  min-height:42px;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  color:#263847;
  border:1px solid #cad4dc;
  background:#fff;
  font-size:11px;
  font-weight:680;
}

.dcf-os-badges svg {
  width:18px;
  height:18px;
  fill:#1e78cf;
}

.dcf-device-manager {
  overflow:hidden;
  color:#20252a;
  border:1px solid #bcc6ce;
  border-radius:8px;
  background:#fff;
  box-shadow:0 28px 70px rgba(39,61,77,.16),0 4px 14px rgba(39,61,77,.08);
}

.dcf-window-titlebar {
  display:flex;
  min-height:46px;
  align-items:center;
  justify-content:space-between;
  border-bottom:1px solid #e3e7ea;
  background:#f8f9fa;
}

.dcf-window-app {
  display:flex;
  align-items:center;
  gap:10px;
  padding-left:16px;
}

.dcf-window-app > span {
  width:15px;
  height:15px;
  border:2px solid #387ab7;
  border-radius:2px;
  box-shadow:inset 0 0 0 2px #fff;
  background:#71aede;
}

.dcf-window-app b {
  color:#2a3035;
  font-size:12px;
  font-weight:550;
}

.dcf-window-actions {
  display:flex;
  height:46px;
}

.dcf-window-actions i {
  position:relative;
  width:46px;
}

.dcf-window-actions i::before {
  content:"";
  position:absolute;
  top:22px;
  left:19px;
  width:9px;
  height:1px;
  background:#58616a;
}

.dcf-window-actions i:nth-child(2)::before {
  top:17px;
  height:8px;
  border:1px solid #58616a;
  background:transparent;
}

.dcf-window-actions i:last-child::before,
.dcf-window-actions i:last-child::after {
  top:22px;
  height:1px;
  transform:rotate(45deg);
}

.dcf-window-actions i:last-child::after {
  content:"";
  position:absolute;
  left:19px;
  width:9px;
  background:#58616a;
  transform:rotate(-45deg);
}

.dcf-window-toolbar {
  display:flex;
  min-height:42px;
  align-items:center;
  gap:15px;
  padding:0 15px;
  color:#66717a;
  border-bottom:1px solid #e3e7ea;
  font-size:17px;
}

.dcf-window-toolbar i {
  width:16px;
  height:16px;
  border:1px solid #7a8791;
  border-radius:2px;
  background:linear-gradient(135deg,#e9f3fa 50%,#89afd0 50%);
}

.dcf-device-tree {
  min-height:280px;
  padding:27px 24px 34px;
  font-family:"Segoe UI",Arial,sans-serif;
}

.dcf-tree-computer,
.dcf-tree-group,
.dcf-tree-device {
  display:flex;
  min-height:40px;
  align-items:center;
  gap:10px;
  font-size:13px;
}

.dcf-tree-computer strong,
.dcf-tree-group strong {
  font-weight:560;
}

.dcf-tree-group {
  margin-left:28px;
}

.dcf-tree-device {
  position:relative;
  margin-left:71px;
  color:#242a2f;
}

.dcf-tree-device::before {
  content:"";
  position:absolute;
  left:-21px;
  top:-20px;
  width:14px;
  height:40px;
  border-left:1px solid #c7cdd2;
  border-bottom:1px solid #c7cdd2;
}

.dcf-caret {
  width:12px;
  color:#58636c;
  font-size:14px;
}

.dcf-computer-icon,
.dcf-port-icon,
.dcf-device-icon {
  display:block;
  flex:none;
  width:18px;
  height:14px;
  border:1px solid #697985;
  border-radius:2px;
  background:linear-gradient(#89b9dd 0 62%,#e7edf1 62%);
}

.dcf-port-icon {
  width:13px;
  height:18px;
  border-radius:1px 4px 4px 1px;
  background:#dce5eb;
  box-shadow:inset 4px 0 #637d91;
}

.dcf-device-icon {
  width:12px;
  height:17px;
  border-color:#62829a;
  border-radius:1px 4px 4px 1px;
  background:#d9e7f0;
  box-shadow:inset 3px 0 #5583a5;
}

.dcf-window-status {
  display:flex;
  min-height:50px;
  align-items:center;
  justify-content:flex-end;
  gap:9px;
  padding:0 20px;
  color:#51616d;
  border-top:1px solid #e4e8eb;
  background:#fafbfb;
  font-size:10px;
  font-weight:620;
}

.dcf-window-status i {
  width:7px;
  height:7px;
  border-radius:50%;
  background:#2684d4;
  box-shadow:0 0 0 4px rgba(38,132,212,.12);
}

.dcf-specifications {
  padding:118px 0 104px;
  background:#fff;
}

.dcf-spec-layout {
  display:grid;
  grid-template-columns:minmax(310px,.72fr) minmax(570px,1.28fr);
  gap:100px;
  align-items:start;
}

.dcf-spec-heading a {
  display:inline-block;
  margin-top:28px;
  color:#166eb8;
  font-size:12px;
  font-weight:700;
}

.dcf-spec-list {
  margin:0;
  border-top:1px solid #9eacb7;
}

.dcf-spec-list > div {
  display:grid;
  grid-template-columns:minmax(155px,.65fr) minmax(260px,1.35fr);
  gap:28px;
  padding:23px 0;
  border-bottom:1px solid var(--dcf-line);
}

.dcf-spec-list dt {
  color:#7b8994;
  font-size:11px;
  font-weight:600;
}

.dcf-spec-list dd {
  margin:0;
  color:#192530;
  font-size:14px;
  font-weight:540;
  line-height:1.45;
}

.dcf-spec-list dd strong {
  color:#096fca;
  font-size:17px;
  font-weight:700;
}

.dcf-host-note {
  display:flex;
  align-items:center;
  gap:25px;
  margin-top:60px;
  padding:22px 0;
  border-top:1px solid #b3c0ca;
  border-bottom:1px solid #b3c0ca;
}

.dcf-host-note strong {
  flex:none;
  color:#172531;
  font-size:10px;
  font-weight:760;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.dcf-host-note p {
  margin:0;
  color:#5b6873;
  font-size:12px;
}

.dcf-resources {
  padding:100px 0;
  border-top:1px solid var(--dcf-line);
  background:#f6f8fa;
}

.dcf-resources-layout {
  display:grid;
  grid-template-columns:minmax(300px,.8fr) minmax(520px,1.2fr);
  gap:100px;
  align-items:start;
}

.dcf-resources h2 {
  max-width:570px;
  font-size:45px;
}

.dcf-resource-links {
  border-top:1px solid #aebac4;
}

.dcf-resource-links a {
  display:flex;
  min-height:63px;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:16px 4px;
  border-bottom:1px solid #d0d8df;
  transition:color .18s ease,padding .18s ease;
}

.dcf-resource-links a:hover {
  padding-left:10px;
  color:#086fca;
}

.dcf-resource-links span {
  font-size:13px;
  font-weight:630;
}

.dcf-resource-links b {
  color:#2282cc;
  font-size:14px;
}

.dcf-final-cta {
  padding:98px 0;
  color:#fff;
  background:
    radial-gradient(circle at 78% 20%,rgba(26,132,218,.24),transparent 35%),
    #06101a;
}

.dcf-final-layout {
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:70px;
}

.dcf-final-cta .dcf-eyebrow {
  color:#66c9ff;
}

.dcf-final-cta h2 {
  max-width:790px;
  margin:17px 0 0;
  font-size:clamp(42px,4.5vw,64px);
  font-weight:560;
  line-height:1.03;
  letter-spacing:-.052em;
}

.dcf-button-light {
  flex:none;
  color:#05101a;
  background:#fff;
}

.dcf-button-light:hover {
  background:#dff5ff;
}

@media (max-width:1120px) {
  .dcf-wide {
    width:min(100% - 56px,1200px);
  }

  .dcf-hero-inner {
    grid-template-columns:minmax(340px,.9fr) minmax(440px,1.1fr);
    gap:32px;
  }

  .dcf-capabilities-layout,
  .dcf-installation-layout,
  .dcf-software-layout,
  .dcf-spec-layout,
  .dcf-resources-layout {
    gap:62px;
  }
}

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

  .dcf-local-nav {
    top:60px;
  }

  .dcf-local-links {
    gap:20px;
  }

  .dcf-local-links a:not(.dcf-local-cta) {
    display:none;
  }

  .dcf-hero-inner {
    grid-template-columns:1fr;
    gap:15px;
    min-height:auto;
    padding-top:76px;
    padding-bottom:24px;
  }

  .dcf-hero-copy {
    max-width:700px;
  }

  .dcf-hero-product {
    max-width:750px;
  }

  .dcf-capabilities-layout,
  .dcf-installation-layout,
  .dcf-software-layout,
  .dcf-spec-layout,
  .dcf-resources-layout {
    grid-template-columns:1fr;
  }

  .dcf-capabilities-layout,
  .dcf-installation-layout,
  .dcf-software-layout {
    gap:50px;
  }

  .dcf-software-copy > p:last-of-type {
    max-width:650px;
  }
}

@media (max-width:700px) {
  .dcf-wide {
    width:calc(100% - 38px);
  }

  .dcf-local-inner {
    min-height:50px;
  }

  .dcf-local-name {
    max-width:180px;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
  }

  .dcf-hero-inner {
    padding-top:60px;
  }

  .dcf-hero h1 {
    font-size:clamp(48px,12vw,66px);
  }

  .dcf-hero-lead {
    font-size:16px;
  }

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

  .dcf-key-facts > div,
  .dcf-key-facts > div:first-child {
    min-height:100px;
    padding:18px 12px;
  }

  .dcf-key-facts > div:nth-child(even) {
    border-right:0;
  }

  .dcf-key-facts > div:nth-child(n+3) {
    border-top:1px solid rgba(148,177,199,.18);
  }

  .dcf-key-facts strong {
    font-size:22px;
  }

  .dcf-key-facts span {
    font-size:9px;
    line-height:1.35;
  }

  .dcf-hardware,
  .dcf-capabilities,
  .dcf-installation,
  .dcf-software,
  .dcf-specifications {
    padding:82px 0;
  }

  .dcf-section-heading-compact {
    align-items:flex-start;
    flex-direction:column;
    gap:16px;
    margin-bottom:38px;
  }

  .dcf-product-gallery {
    grid-template-columns:1fr;
  }

  .dcf-interface-line {
    grid-template-columns:1fr;
    gap:0;
    padding:26px 24px;
  }

  .dcf-interface-line > div {
    min-height:70px;
    align-content:center;
  }

  .dcf-interface-line > i {
    width:1px;
    height:28px;
    margin:0 0 0 6px;
  }

  .dcf-interface-line > i::after {
    top:auto;
    right:-2px;
    bottom:0;
  }

  .dcf-capabilities h2,
  .dcf-installation-copy h2,
  .dcf-software-copy h2,
  .dcf-spec-heading h2 {
    font-size:42px;
  }

  .dcf-device-tree {
    min-height:250px;
    padding:24px 14px 30px;
  }

  .dcf-tree-computer,
  .dcf-tree-group,
  .dcf-tree-device {
    font-size:12px;
  }

  .dcf-tree-group {
    margin-left:18px;
  }

  .dcf-tree-device {
    margin-left:58px;
  }

  .dcf-spec-list > div {
    grid-template-columns:1fr;
    gap:7px;
  }

  .dcf-host-note {
    align-items:flex-start;
    flex-direction:column;
    gap:10px;
  }

  .dcf-installation-detail {
    right:10px;
    bottom:10px;
    grid-template-columns:86px 1fr;
    width:min(295px,58%);
  }

  .dcf-installation-detail img {
    width:86px;
    height:111px;
  }

  .dcf-installation-detail > div {
    padding:12px 13px;
  }

  .dcf-resources {
    padding:78px 0;
  }

  .dcf-resources h2 {
    font-size:39px;
  }

  .dcf-final-cta {
    padding:78px 0;
  }

  .dcf-final-layout {
    align-items:flex-start;
    flex-direction:column;
    gap:35px;
  }
}

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

  .dcf-local-nav {
    top:56px;
  }

  .dcf-local-name {
    max-width:150px;
    font-size:11px;
  }

  .dcf-local-links .dcf-local-cta {
    min-height:32px;
    padding:7px 10px;
    font-size:10px;
  }

  .dcf-hero-actions {
    align-items:stretch;
    flex-direction:column;
  }

  .dcf-button {
    width:100%;
  }

  .dcf-hero-platforms {
    flex-wrap:wrap;
    gap:13px 16px;
  }

  .dcf-hero-platforms > span {
    width:100%;
    padding:0;
    border-right:0;
  }

  .dcf-key-facts strong {
    font-size:19px;
  }

  .dcf-key-facts > div:nth-child(4) strong {
    font-size:15px;
  }

  .dcf-window-actions i {
    width:34px;
  }

  .dcf-window-actions i::before,
  .dcf-window-actions i:last-child::after {
    left:13px;
  }

  .dcf-device-tree {
    overflow-x:auto;
  }

  .dcf-tree-computer,
  .dcf-tree-group,
  .dcf-tree-device {
    min-width:285px;
  }
}

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

  .dcf-local-nav {
    top:56px;
  }
}

@media (prefers-reduced-motion:reduce) {
  .dcf-button,
  .dcf-product-view img,
  .dcf-resource-links a {
    transition:none;
  }
}
