:root {
  --ink: #0b1020;
  --muted: #616a7b;
  --line: #dfe3eb;
  --paper: #f6f7fb;
  --white: #fff;
  --blue: #3157ff;
  --violet: #7257ee;
  --lime: #a8ee67;
  --radius: 24px;
  --shadow: 0 30px 80px rgba(15, 27, 62, 0.14);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
.shell {
  width: min(1240px, calc(100% - 48px));
  margin-inline: auto;
}

.nav {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(11, 16, 32, 0.08);
  background: rgba(247, 248, 251, 0.88);
  backdrop-filter: blur(18px);
}
.nav-inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  gap: 34px;
}
.wordmark {
  display: inline-flex;
  position: relative;
  align-items: baseline;
  color: var(--ink);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.06em;
}
.wordmark span {
  color: var(--blue);
}
.wordmark i {
  width: 7px;
  height: 7px;
  margin-left: 4px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(168, 238, 103, 0.18);
}
.nav nav {
  display: flex;
  margin-left: auto;
  gap: 30px;
}
.nav nav a,
.link {
  color: #394154;
  font-size: 14px;
  font-weight: 650;
}
.nav nav a:hover,
.link:hover {
  color: var(--blue);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 23px;
  border: 1px solid var(--blue);
  border-radius: 12px;
  color: white;
  background: var(--blue);
  box-shadow: 0 10px 26px rgba(49, 87, 255, 0.2);
  font-size: 15px;
  font-weight: 750;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    background 0.2s;
}
.button:hover {
  transform: translateY(-2px);
  background: #2448e8;
  box-shadow: 0 14px 32px rgba(49, 87, 255, 0.3);
}
.button.small {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 14px;
}
.button.secondary {
  border-color: #d1d7e2;
  color: var(--ink);
  background: white;
  box-shadow: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 112px 0 104px;
  background:
    radial-gradient(
      circle at 77% 28%,
      rgba(106, 86, 240, 0.12),
      transparent 26%
    ),
    linear-gradient(rgba(36, 54, 106, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 54, 106, 0.055) 1px, transparent 1px),
    #fbfcff;
  background-size:
    auto,
    48px 48px,
    48px 48px,
    auto;
}
.hero::after {
  position: absolute;
  width: 460px;
  height: 460px;
  right: -120px;
  bottom: -300px;
  border-radius: 50%;
  background: var(--blue);
  filter: blur(80px);
  opacity: 0.1;
  content: "";
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.87fr) minmax(560px, 1.13fr);
  align-items: center;
  gap: 72px;
}
.hero-copy {
  min-width: 0;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 27px;
  color: #475069;
  font-size: 13px;
  font-weight: 780;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.kicker span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(168, 238, 103, 0.2);
}
.hero h1 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(58px, 6.3vw, 92px);
  line-height: 0.96;
  letter-spacing: -0.072em;
}
.hero h1 em {
  color: var(--blue);
  font-style: normal;
}
.hero-copy > p {
  max-width: 610px;
  margin: 30px 0;
  color: #515b6e;
  font-size: 19px;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 25px;
  color: #667084;
  font-size: 13px;
}

.product-window {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(33, 47, 89, 0.16);
  border-radius: 22px;
  background: white;
  box-shadow: var(--shadow);
  transform: perspective(1300px) rotateY(-2deg) rotateX(1deg);
}
.window-top {
  display: flex;
  height: 48px;
  align-items: center;
  padding: 0 17px;
  border-bottom: 1px solid #e6e9f0;
  color: #727b8c;
  background: #fbfcfe;
  font-size: 11px;
  font-weight: 700;
}
.window-top > span {
  margin-left: 18px;
}
.window-top > b {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: 7px;
  color: #3f6d36;
}
.window-top > b i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #69c94f;
}
.traffic {
  display: flex;
  gap: 5px;
}
.traffic i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #dde2ea;
}
.traffic i:first-child {
  background: #ff7467;
}
.traffic i:nth-child(2) {
  background: #ffc764;
}
.traffic i:last-child {
  background: #72d47b;
}
.window-body {
  display: grid;
  min-height: 450px;
  grid-template-columns: 132px 1fr;
}
.window-body > aside {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 18px 12px;
  gap: 7px;
  color: #929bb0;
  background: #0e1630;
}
.window-body > aside strong {
  display: grid;
  width: 34px;
  height: 34px;
  margin: 0 5px 15px;
  place-items: center;
  border-radius: 10px;
  color: #fff;
  background: var(--blue);
  font-size: 13px;
}
.window-body > aside span {
  padding: 10px 9px;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 650;
}
.window-body > aside span.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}
.window-body > aside small {
  margin: auto 8px 4px;
  font-size: 9px;
}
.dashboard {
  min-width: 0;
  padding: 24px;
  background: #f6f8fc;
}
.dash-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.dash-title small,
.dash-grid article > small {
  color: #8a93a4;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.11em;
}
.dash-title h3 {
  max-width: 315px;
  margin: 6px 0 0;
  font-size: 18px;
  line-height: 1.15;
  letter-spacing: -0.035em;
}
.dash-title button {
  padding: 9px 11px;
  border: 0;
  border-radius: 8px;
  color: white;
  background: var(--blue);
  font-size: 9px;
  font-weight: 750;
}
.dash-grid {
  display: grid;
  margin-top: 21px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px;
}
.dash-grid article {
  min-width: 0;
  min-height: 105px;
  padding: 15px;
  border: 1px solid #e6e9f0;
  border-radius: 12px;
  background: white;
}
.dash-grid article.wide,
.dash-grid article.activity {
  grid-column: 1 / -1;
}
.dash-grid article > strong {
  display: block;
  margin-top: 9px;
  font-size: 22px;
  letter-spacing: -0.04em;
}
.dash-grid article > span {
  display: block;
  margin-top: 3px;
  color: #717a8b;
  font-size: 9px;
}
.health {
  display: grid;
  margin-top: 15px;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
}
.health span {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px;
  border-radius: 7px;
  color: #596276;
  background: #f5f7fb;
  font-size: 8px;
  white-space: nowrap;
}
.health i,
.activity li > i {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #68cb58;
}
.activity {
  min-height: 148px !important;
}
.activity ul {
  margin: 9px 0 0;
  padding: 0;
  list-style: none;
}
.activity li {
  display: grid;
  grid-template-columns: 7px 1fr auto;
  align-items: center;
  gap: 9px;
  padding: 7px 0;
  border-top: 1px solid #edf0f5;
}
.activity li span {
  min-width: 0;
}
.activity li b,
.activity li small {
  display: block;
}
.activity li b {
  font-size: 9px;
}
.activity li small,
.activity time {
  color: #9299a9;
  font-size: 8px;
}

.trust {
  padding: 34px 0;
  border-block: 1px solid var(--line);
  background: white;
}
.trust .shell {
  display: flex;
  align-items: center;
  gap: 54px;
}
.trust p {
  max-width: 160px;
  color: #7d8492;
  font-size: 11px;
  font-weight: 750;
  line-height: 1.4;
  text-transform: uppercase;
}
.trust-logos {
  display: flex;
  min-width: 0;
  flex: 1;
  align-items: center;
  justify-content: space-between;
  gap: 27px;
  filter: grayscale(1);
  opacity: 0.68;
}
.trust-logos img {
  display: block;
  width: auto;
  max-width: 145px;
  height: auto;
  max-height: 31px;
  object-fit: contain;
}
.trust-logos span {
  color: #323947;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.metrics {
  padding: 70px 0;
  background: var(--ink);
}
.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.metric-grid div {
  padding: 5px 34px;
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}
.metric-grid div:first-child {
  border: 0;
  padding-left: 0;
}
.metric-grid strong {
  display: block;
  color: white;
  font-size: 42px;
  letter-spacing: -0.055em;
}
.metric-grid span {
  display: block;
  max-width: 190px;
  margin-top: 7px;
  color: #9ca6ba;
  font-size: 13px;
  line-height: 1.45;
}

.solutions,
.cases,
.pricing {
  padding: 120px 0;
}
.section-title {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) minmax(260px, 390px);
  align-items: end;
  gap: 30px;
}
.section-title > span,
.label {
  color: var(--blue);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.section-title h2 {
  margin: 0;
  font-size: clamp(39px, 4.4vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.058em;
}
.section-title p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}
.section-title.compact {
  grid-template-columns: 170px 1fr minmax(240px, 330px);
}
.solution-tabs {
  display: flex;
  margin-top: 70px;
  border-bottom: 1px solid #cdd3df;
  gap: 9px;
}
.solution-tabs button {
  position: relative;
  padding: 0 20px 18px;
  border: 0;
  color: #737b8b;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 750;
}
.solution-tabs button::after {
  position: absolute;
  height: 3px;
  right: 0;
  bottom: -2px;
  left: 0;
  border-radius: 3px;
  background: transparent;
  content: "";
}
.solution-tabs button.active {
  color: var(--ink);
}
.solution-tabs button.active::after {
  background: var(--blue);
}
.solution-panel {
  display: grid;
  overflow: hidden;
  min-width: 0;
  margin-top: 28px;
  grid-template-columns: minmax(0, 0.82fr) minmax(480px, 1.18fr);
  border: 1px solid #d9dee8;
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 20px 55px rgba(20, 31, 58, 0.07);
}
.solution-panel[hidden] {
  display: none;
}
.panel-copy {
  padding: 54px 50px;
}
.panel-copy h3 {
  margin: 15px 0 17px;
  font-size: clamp(32px, 3.2vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.052em;
}
.panel-copy > p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}
.panel-copy ul {
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}
.panel-copy li {
  position: relative;
  padding: 8px 0 8px 25px;
  border-bottom: 1px solid #eef0f4;
  color: #343c4c;
  font-size: 14px;
}
.panel-copy li::before {
  position: absolute;
  left: 1px;
  color: var(--blue);
  content: "✓";
  font-weight: 900;
}
.panel-actions {
  display: flex;
  margin-top: 32px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.panel-actions a {
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
}
.panel-actions strong {
  font-size: 13px;
}
.panel-demo {
  min-width: 0;
  min-height: 510px;
  color: white;
  background: #111a38;
}

.smart-demo {
  padding: 22px;
  background:
    radial-gradient(
      circle at 80% 10%,
      rgba(116, 86, 238, 0.34),
      transparent 33%
    ),
    #10162b;
}
.demo-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 4px 19px;
  font-size: 11px;
}
.demo-bar span {
  font-weight: 800;
}
.demo-bar b {
  color: var(--lime);
  font-size: 10px;
}
.room-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.room-grid article {
  min-height: 125px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
}
.room-grid small {
  color: #9ba7c0;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.room-grid strong {
  display: block;
  margin-top: 13px;
  font-size: 27px;
  letter-spacing: -0.04em;
}
.room-grid article > span {
  color: #aeb8cc;
  font-size: 11px;
}
.room-grid .room-wide {
  min-height: 162px;
  grid-column: 1/-1;
}
.timeline {
  display: grid;
  margin-top: 19px;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.timeline span {
  position: relative;
  padding: 28px 11px 11px;
  border-radius: 10px;
  color: #c4cce0;
  background: rgba(255, 255, 255, 0.06);
  font-size: 9px;
  line-height: 1.4;
}
.timeline i {
  position: absolute;
  width: 8px;
  height: 8px;
  top: 12px;
  left: 12px;
  border-radius: 50%;
  background: var(--lime);
}

.infra-demo {
  padding: 30px;
  background: #11182d;
}
.infra-head,
.osd-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
  color: #7f8ba4;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.1em;
}
.infra-head b {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--lime);
}
.infra-head i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}
.infra-row {
  display: grid;
  padding: 18px 0;
  grid-template-columns: 95px 1fr auto;
  gap: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  align-items: center;
}
.infra-row strong {
  font-size: 13px;
}
.infra-row span {
  color: #95a0b7;
  font-size: 11px;
}
.infra-row em {
  color: var(--lime);
  font-size: 10px;
  font-style: normal;
}
.infra-chart {
  margin-top: 24px;
  padding: 18px 18px 2px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
}
.infra-chart small {
  color: #8995ac;
  font-size: 9px;
  font-weight: 750;
}
.infra-chart svg {
  display: block;
  width: 100%;
  height: 125px;
  overflow: visible;
}
.infra-chart path {
  fill: none;
  stroke: #6d7fff;
  stroke-width: 3;
}
.infra-chart path.fill {
  fill: url(#none);
  stroke: none;
  opacity: 0.14;
}

.osd-demo {
  padding: 30px;
  background: linear-gradient(145deg, #0d1531, #121d43);
}
.osd-head b {
  padding: 7px 9px;
  border-radius: 6px;
  color: #0d3a00;
  background: var(--lime);
  font-size: 8px;
}
.osd-device {
  display: grid;
  min-height: 72px;
  margin: 8px 0;
  padding: 12px 16px;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 13px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.045);
}
.osd-device > i {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 9px;
  color: #8f9bb8;
  background: rgba(255, 255, 255, 0.07);
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
}
.osd-device span b,
.osd-device span small {
  display: block;
}
.osd-device span b {
  font-size: 12px;
}
.osd-device span small {
  margin-top: 3px;
  color: #8994ad;
  font-size: 9px;
}
.osd-device em {
  color: var(--lime);
  font-size: 11px;
  font-style: normal;
}
.osd-device.active {
  border-color: rgba(119, 135, 255, 0.6);
  background: rgba(78, 92, 194, 0.16);
}
.osd-device.active > i {
  color: white;
  background: var(--blue);
}

.web-demo {
  padding: 30px;
  background: #e9ecf5;
}
.browser-bar {
  display: flex;
  height: 43px;
  align-items: center;
  gap: 5px;
  padding: 0 14px;
  border-radius: 13px 13px 0 0;
  color: #757f93;
  background: white;
}
.browser-bar i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d8dce5;
}
.browser-bar span {
  flex: 1;
  margin-left: 10px;
  padding: 7px 15px;
  border-radius: 7px;
  background: #f1f3f7;
  font-size: 9px;
}
.site-mock {
  min-height: 390px;
  padding: 46px 42px;
  border-radius: 0 0 13px 13px;
  color: var(--ink);
  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(50, 87, 255, 0.15),
      transparent 30%
    ),
    #fff;
}
.site-mock > small {
  color: var(--blue);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.13em;
}
.site-mock h4 {
  max-width: 390px;
  margin: 14px 0;
  font-size: 42px;
  line-height: 1.02;
  letter-spacing: -0.055em;
}
.site-mock p {
  max-width: 320px;
  color: var(--muted);
  font-size: 12px;
}
.site-mock button {
  margin-top: 12px;
  padding: 10px 14px;
  border: 0;
  border-radius: 7px;
  color: white;
  background: var(--blue);
  font-size: 9px;
  font-weight: 750;
}
.site-cards {
  display: grid;
  margin-top: 40px;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.site-cards i {
  height: 58px;
  border: 1px solid #e3e6ed;
  border-radius: 8px;
  background: linear-gradient(135deg, #fff, #f3f5fa);
}

.reasons {
  padding: 120px 0;
  background: white;
}
.reason-list {
  margin-top: 66px;
  border-top: 1px solid var(--line);
}
.reason-list article {
  display: grid;
  padding: 32px 0;
  grid-template-columns: 85px minmax(0, 1fr) 200px;
  gap: 32px;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.reason-list article > span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
}
.reason-list h3 {
  margin: 0 0 7px;
  font-size: 25px;
  letter-spacing: -0.035em;
}
.reason-list p {
  max-width: 670px;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}
.reason-list article > b {
  justify-self: end;
  color: #7a8291;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.cases {
  color: white;
  background: #0b1020;
}
.cases .section-title > span {
  color: var(--lime);
}
.cases .section-title p {
  color: #a4adbe;
}
.case-grid-v3 {
  display: grid;
  margin-top: 70px;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 18px;
}
.case-grid-v3 article {
  min-width: 0;
  overflow: hidden;
  border-radius: var(--radius);
}
.case-grid-v3 small {
  color: #a8b4cc;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.12em;
}
.case-grid-v3 h3 {
  margin: 15px 0;
  font-size: 34px;
  letter-spacing: -0.045em;
}
.case-grid-v3 p {
  color: #bdc5d5;
  line-height: 1.65;
}
.case-feature {
  position: relative;
  min-height: 490px;
  padding: 54px;
  background:
    radial-gradient(
      circle at 92% 8%,
      rgba(168, 238, 103, 0.26),
      transparent 24%
    ),
    radial-gradient(
      circle at 82% 80%,
      rgba(100, 78, 235, 0.55),
      transparent 35%
    ),
    #263bf0;
}
.case-feature h3 {
  max-width: 540px;
  font-size: 52px;
  line-height: 1.02;
}
.case-feature p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.76);
}
.case-feature > a {
  display: inline-block;
  margin-top: 24px;
  font-weight: 800;
}
.case-stats {
  display: flex;
  position: absolute;
  right: 54px;
  bottom: 45px;
  left: 54px;
  gap: 9px;
}
.case-stats span {
  flex: 1;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.08);
  font-size: 10px;
  backdrop-filter: blur(10px);
}
.case-stats b {
  display: block;
  color: white;
  font-size: 27px;
}
.case-stack {
  display: grid;
  gap: 18px;
}
.case-stack article {
  min-height: 236px;
  padding: 35px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #121a31;
}
.case-stack h3 {
  margin: 10px 0;
}
.case-stack p {
  margin: 0;
  font-size: 13px;
}
.case-stack b {
  display: block;
  margin-top: 20px;
  color: var(--lime);
  font-size: 11px;
}

.pricing {
  background: #f7f8fb;
}
.price-grid {
  display: grid;
  margin-top: 68px;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
}
.price-grid > a {
  display: flex;
  min-height: 275px;
  flex-direction: column;
  padding: 29px;
  border: 1px solid #dfe3eb;
  border-radius: 18px;
  background: white;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.price-grid > a:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 35px rgba(20, 31, 58, 0.1);
}
.price-grid small {
  color: #747d8e;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.12em;
}
.price-grid strong {
  display: block;
  margin-top: 22px;
  font-size: 39px;
  letter-spacing: -0.05em;
}
.price-grid span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}
.price-grid b {
  margin-top: auto;
  color: var(--blue);
  font-size: 13px;
}
.price-grid .featured {
  color: white;
  border-color: var(--blue);
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(168, 238, 103, 0.22),
      transparent 27%
    ),
    var(--blue);
  box-shadow: 0 20px 42px rgba(49, 87, 255, 0.22);
}
.price-grid .featured small,
.price-grid .featured span {
  color: rgba(255, 255, 255, 0.7);
}
.price-grid .featured b {
  color: var(--lime);
}

.location {
  padding: 80px 0;
  background: white;
}
.location-inner {
  display: grid;
  overflow: hidden;
  min-height: 390px;
  grid-template-columns: 0.85fr 1.15fr;
  border-radius: 26px;
  color: white;
  background: #121b34;
}
.location-inner > div:first-child {
  padding: 66px;
}
.location-inner > div:first-child > span {
  color: var(--lime);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.13em;
}
.location h2 {
  margin: 15px 0;
  font-size: 52px;
  letter-spacing: -0.055em;
}
.location p {
  max-width: 480px;
  color: #aeb8cb;
  line-height: 1.65;
}
.location a {
  display: inline-block;
  margin-top: 18px;
  color: var(--lime);
  font-weight: 800;
}
.location-map {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  background:
    linear-gradient(35deg, rgba(68, 83, 221, 0.32), transparent),
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    #1c2743;
  background-size:
    auto,
    34px 34px,
    34px 34px,
    auto;
}
.ring {
  position: absolute;
  width: 210px;
  height: 210px;
  top: 88px;
  left: 48%;
  border: 1px solid rgba(168, 238, 103, 0.35);
  border-radius: 50%;
  transform: translateX(-50%);
}
.ring.r2 {
  width: 330px;
  height: 330px;
  top: 28px;
  opacity: 0.55;
}
.pin {
  display: flex;
  position: absolute;
  top: 177px;
  left: 48%;
  align-items: center;
  gap: 8px;
  transform: translateX(-50%);
  font-weight: 850;
}
.pin b {
  width: 13px;
  height: 13px;
  border: 4px solid white;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 8px rgba(168, 238, 103, 0.16);
}
.location-map small,
.location-map em {
  position: absolute;
  color: #8490a9;
  font-size: 11px;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.location-map small {
  right: 40px;
  bottom: 32px;
}
.location-map em {
  top: 32px;
  left: 35px;
}

.final {
  padding: 105px 0;
  color: white;
  text-align: center;
  background: var(--blue);
}
.final span {
  color: var(--lime);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.final h2 {
  margin: 18px auto 35px;
  font-size: clamp(42px, 5.4vw, 74px);
  line-height: 1.03;
  letter-spacing: -0.06em;
}
.final > .shell > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.button.light {
  border-color: white;
  color: var(--ink);
  background: white;
  box-shadow: none;
}
.text-link {
  color: white;
  font-size: 14px;
  font-weight: 750;
}
footer {
  padding: 62px 0;
  color: #aeb7ca;
  background: #080c18;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.1fr;
  gap: 50px;
}
.wordmark.inverse {
  color: white;
}
.footer-grid > div:not(.footer-legal) {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-grid strong {
  margin-bottom: 7px;
  color: white;
  font-size: 12px;
}
.footer-grid a:not(.wordmark) {
  font-size: 12px;
}
.footer-grid a:hover {
  color: white;
}
.footer-legal {
  font-size: 11px;
  line-height: 1.8;
}

@media (max-width: 1080px) {
  .nav nav {
    display: none;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .hero-copy {
    max-width: 800px;
  }
  .product-window {
    max-width: 820px;
    transform: none;
  }
  .section-title,
  .section-title.compact {
    grid-template-columns: 130px 1fr;
  }
  .section-title p {
    grid-column: 2;
  }
  .solution-panel {
    grid-template-columns: 1fr;
  }
  .panel-demo {
    min-height: 470px;
  }
  .trust .shell {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }
  .trust p {
    max-width: none;
  }
  .trust-logos {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .price-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
  }
  .footer-legal {
    grid-column: 1/-1;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 30px, 1240px);
  }
  .nav-inner {
    min-height: 66px;
  }
  .nav-actions .link {
    display: none;
  }
  .button.small {
    min-height: 38px;
    padding-inline: 13px;
  }
  .hero {
    padding: 78px 0 70px;
    background-size:
      auto,
      36px 36px,
      36px 36px,
      auto;
  }
  .hero-grid {
    gap: 46px;
  }
  .hero h1 {
    font-size: clamp(48px, 15vw, 70px);
  }
  .hero-copy > p {
    font-size: 17px;
  }
  .product-window {
    overflow-x: auto;
  }
  .window-body {
    min-width: 590px;
  }
  .window-body > aside {
    display: none;
  }
  .window-body {
    grid-template-columns: 1fr;
  }
  .metrics {
    padding: 45px 0;
  }
  .metric-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 36px;
  }
  .metric-grid div,
  .metric-grid div:first-child {
    padding: 0 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.13);
  }
  .metric-grid div:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }
  .metric-grid strong {
    font-size: 34px;
  }
  .solutions,
  .cases,
  .pricing,
  .reasons {
    padding: 82px 0;
  }
  .section-title,
  .section-title.compact {
    display: block;
  }
  .section-title h2 {
    margin-top: 14px;
  }
  .section-title p {
    margin-top: 18px;
  }
  .solution-tabs {
    margin-top: 44px;
    overflow-x: auto;
  }
  .solution-tabs button {
    flex: 0 0 auto;
    padding-inline: 13px;
  }
  .panel-copy {
    padding: 38px 26px;
  }
  .panel-actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .panel-demo {
    min-height: auto;
  }
  .smart-demo,
  .infra-demo,
  .osd-demo,
  .web-demo {
    padding: 17px;
  }
  .site-mock {
    padding: 34px 24px;
  }
  .site-mock h4 {
    font-size: 34px;
  }
  .reason-list {
    margin-top: 42px;
  }
  .reason-list article {
    grid-template-columns: 45px 1fr;
    gap: 16px;
  }
  .reason-list article > b {
    grid-column: 2;
    justify-self: start;
  }
  .case-grid-v3 {
    grid-template-columns: 1fr;
  }
  .case-feature {
    min-height: 520px;
    padding: 35px 28px;
  }
  .case-feature h3 {
    font-size: 42px;
  }
  .case-stats {
    right: 28px;
    bottom: 28px;
    left: 28px;
  }
  .case-stack article {
    min-height: 215px;
  }
  .location-inner {
    grid-template-columns: 1fr;
  }
  .location-inner > div:first-child {
    padding: 45px 28px;
  }
  .location-map {
    min-height: 330px;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid > .wordmark {
    grid-column: 1/-1;
  }
}

@media (max-width: 520px) {
  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }
  .hero-note {
    flex-direction: column;
    gap: 8px;
  }
  .window-body {
    min-width: 510px;
  }
  .dashboard {
    padding: 17px;
  }
  .metric-grid {
    grid-template-columns: 1fr;
  }
  .metric-grid div,
  .metric-grid div:first-child,
  .metric-grid div:nth-child(odd) {
    padding: 0;
    border-left: 0;
  }
  .room-grid {
    grid-template-columns: 1fr;
  }
  .room-grid .room-wide {
    grid-column: auto;
  }
  .timeline {
    grid-template-columns: 1fr;
  }
  .infra-row {
    grid-template-columns: 75px 1fr;
  }
  .infra-row em {
    grid-column: 2;
  }
  .price-grid {
    grid-template-columns: 1fr;
  }
  .price-grid > a {
    min-height: 235px;
  }
  .case-stats {
    position: static;
    margin-top: 55px;
  }
  .case-feature {
    min-height: auto;
  }
  .case-stats span {
    padding: 10px;
  }
  .case-stats b {
    font-size: 22px;
  }
  .final > .shell > div {
    flex-direction: column;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid > .wordmark,
  .footer-legal {
    grid-column: auto;
  }
}

/* V5 — photographic RemoteFix identity */
:root {
  --ink: #101318;
  --muted: #626975;
  --line: #d3d6d9;
  --paper: #f1f2f2;
  --white: #ffffff;
  --blue: #9cb9dc;
  --violet: #748da9;
  --lime: #75c594;
  --shadow: 0 35px 95px rgba(0, 0, 0, 0.34);
}

body {
  color: var(--ink);
  background: var(--paper);
}
.nav {
  border-color: rgba(16, 19, 24, 0.12);
  background: rgba(247, 247, 245, 0.93);
}
.wordmark {
  gap: 3px;
  align-items: center;
  font-size: 15px;
  font-weight: 850;
  letter-spacing: 0.17em;
}
.wordmark span,
.wordmark span:last-child {
  color: var(--ink);
}
.wordmark b {
  color: #7b8796;
  font-size: 18px;
  font-weight: 350;
}
.wordmark i {
  display: none;
}
.wordmark.inverse span {
  color: white;
}
.button {
  border-color: #eef1f4;
  color: #0e1217;
  background: #eef1f4;
}
.button:hover {
  color: #0e1217;
  background: #fff;
}
.button.small {
  color: white;
  border-color: #171b22;
  background: #171b22;
}
.hero {
  color: white;
  background:
    radial-gradient(
      circle at 72% 42%,
      rgba(87, 119, 158, 0.19),
      transparent 27%
    ),
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    #090c11;
  background-size:
    auto,
    72px 72px,
    72px 72px,
    auto;
}
.hero::before {
  color: rgba(255, 255, 255, 0.018);
  content: "RemoteFix";
}
.hero::after {
  background: #7898be;
  opacity: 0.13;
}
.hero h1 em {
  display: block;
  color: #a9c4e4;
}
.kicker span {
  background: #9cb9dc;
}
.hero-copy > p {
  color: #b1b8c1;
}
.hero-note {
  color: #929aa5;
}
.button.secondary {
  border-color: rgba(255, 255, 255, 0.34);
  color: white;
}
.product-window {
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow:
    20px 24px 0 rgba(117, 145, 177, 0.12),
    var(--shadow);
}
.window-top {
  color: #6c727b;
  background: #e8e9e8;
}
.window-body {
  position: relative;
  background: url("assets/hero-remotefix-v5.png") center/cover;
}
.window-body::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 9, 13, 0.84), rgba(6, 9, 13, 0.3));
  content: "";
}
.window-body > aside,
.window-body > .dashboard {
  position: relative;
  z-index: 1;
}
.window-body > aside {
  background: rgba(9, 12, 17, 0.76);
  backdrop-filter: blur(16px);
}
.window-body > aside strong,
.dash-title button {
  background: #90add0;
}
.dashboard {
  color: white;
  background: transparent;
}
.dash-title small,
.dash-grid article > small {
  color: #abb5c3;
}
.dash-grid article {
  border-color: rgba(255, 255, 255, 0.17);
  background: rgba(7, 10, 14, 0.56);
  backdrop-filter: blur(15px);
}
.dash-grid article > span,
.activity li small,
.activity time {
  color: #aeb6c0;
}
.health span {
  color: #d0d5dc;
  background: rgba(255, 255, 255, 0.08);
}
.activity li {
  border-color: rgba(255, 255, 255, 0.12);
}
.trust {
  background: #f7f7f5;
}
.metrics {
  background: #e7e9e9;
}
.section-title > span,
.label,
.panel-actions a {
  color: #56779c;
}
.solution-tabs button.active::after {
  background: #6888ae;
}
.solution-panel {
  border-color: #cfd2d4;
  background: #fff;
  box-shadow: 14px 14px 0 #dfe1e1;
}
.panel-copy li::before {
  color: #6488b2;
}
.smart-demo,
.infra-demo,
.osd-demo {
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    #10151d;
}
.room-grid article:nth-child(2),
.room-grid article:nth-child(3) {
  border-top-color: #8cacca;
}
.infra-chart path {
  stroke: #9ab9dd;
}
.osd-device.active {
  border-color: #91b0d2;
  background: rgba(105, 139, 178, 0.18);
}
.osd-device.active > i {
  background: #6f91b9;
}
.living-showcase {
  background: #080b10;
}
.showcase-head span,
.endpoint-heading > span {
  color: #9cb9dc;
}
.scene-tabs button:hover,
.scene-tabs button.active {
  border-color: #8ba9cb;
  background: rgba(111, 145, 185, 0.16);
}
.scene-tabs button > i,
.scene-intro small,
.energy-layout small,
.now-playing > small,
.command-copy small {
  color: #a2bddc;
}
.scene-screen {
  box-shadow: 18px 18px 0 rgba(111, 145, 185, 0.13);
}
.scene-overview {
  background-image: url("assets/smart-living-v5.png");
}
.scene-facts span {
  background: rgba(7, 10, 14, 0.62);
}
.scene-dock span.active {
  color: #a7c1df;
}
.energy-ring {
  border-top-color: #91b0d1;
  border-right-color: #91b0d1;
}
.energy-graph path {
  stroke: #a2c0df;
  filter: drop-shadow(0 0 8px rgba(122, 158, 199, 0.45));
}
.energy-sources i {
  background: #9ab8d8;
}
.album-art {
  background:
    radial-gradient(circle at 68% 28%, #9bbbdc, transparent 30%),
    radial-gradient(circle at 30% 75%, #445970, transparent 35%), #11151b;
  box-shadow: 18px 18px 0 rgba(111, 145, 185, 0.18);
}
.album-art > span span {
  color: #a8c3df;
}
.waveform i,
.player button.play {
  border-color: #9bb8d8;
  background: #9bb8d8;
}
.command-grid article > i {
  color: #a9c3df;
  border-color: rgba(148, 181, 216, 0.45);
}
.endpoint-products {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-top: 150px;
  color: white;
  background: #0b0e13;
}
.endpoint-products::before {
  position: absolute;
  z-index: -2;
  inset: 0 0 auto;
  height: 720px;
  background: url("assets/endpoint-lab-v5.png") center/cover;
  content: "";
}
.endpoint-products::after {
  position: absolute;
  z-index: -1;
  inset: 0 0 auto;
  height: 760px;
  background:
    linear-gradient(
      90deg,
      rgba(6, 9, 13, 0.94) 0%,
      rgba(6, 9, 13, 0.62) 50%,
      rgba(6, 9, 13, 0.22)
    ),
    linear-gradient(0deg, #0b0e13 0%, transparent 46%);
  content: "";
}
.endpoint-heading {
  min-height: 430px;
  align-content: start;
}
.endpoint-heading h2 {
  max-width: 760px;
  text-shadow: 0 3px 25px rgba(0, 0, 0, 0.45);
}
.endpoint-heading > p {
  max-width: 370px;
  color: #c0c6ce;
}
.endpoint-catalog {
  position: relative;
  z-index: 2;
  margin-top: 25px;
  color: var(--ink);
}
.endpoint-catalog article {
  border-color: #313740;
  background: #f7f7f5;
}
.endpoint-catalog article > small,
.endpoint-main li::before,
.endpoint-main a {
  color: #547ba6;
}
.endpoint-main ul {
  background: #d7dadc;
}
.endpoint-main li {
  background: #f7f7f5;
}
.endpoint-services {
  color: white;
  border-color: #303640;
}
.endpoint-services article {
  border-color: #303640;
  background: #141920;
}
.endpoint-services i {
  color: #a4c0df;
  border-color: #3b424c;
}
.endpoint-services p {
  color: #929ba7;
}
.reasons {
  background: #f8f8f6;
}
.reason-list article > span {
  color: #5e82aa;
}
.cases {
  background: #090c11;
}
.cases .section-title > span,
.case-stack b {
  color: #9db9d9;
}
.case-feature {
  background:
    linear-gradient(120deg, rgba(6, 10, 15, 0.16), rgba(6, 10, 15, 0.82)),
    url("assets/hero-remotefix-v5.png") center/cover;
}
.case-stack article {
  background: #141920;
}
.pricing {
  background: #eef0f0;
}
.price-grid .featured {
  background: #12171e;
  box-shadow: 10px 10px 0 #8da9c8;
}
.price-grid .featured b {
  color: #a6c1de;
}
.location-inner {
  background: #10151c;
}
.location-map {
  background:
    linear-gradient(35deg, rgba(108, 143, 181, 0.22), transparent),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    #171e27;
  background-size:
    auto,
    34px 34px,
    34px 34px,
    auto;
}
.ring {
  border-color: rgba(150, 183, 217, 0.45);
}
.pin b {
  background: #9db9d8;
  box-shadow: 0 0 0 8px rgba(139, 173, 210, 0.18);
}
.final {
  background: #10151c;
}
.final span {
  color: #a4bfdd;
}
footer {
  background: #07090d;
}
@media (max-width: 760px) {
  .product-window {
    box-shadow: 10px 12px 0 rgba(111, 145, 185, 0.16);
  }
  .solution-panel {
    box-shadow: 7px 7px 0 #dfe1e1;
  }
  .endpoint-heading {
    min-height: 500px;
  }
  .endpoint-products::before {
    height: 650px;
    background-position: 64% center;
  }
  .endpoint-products::after {
    height: 690px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .product-window {
    animation: dashboardFloat 7s ease-in-out infinite;
  }
  @keyframes dashboardFloat {
    0%,
    100% {
      translate: 0 0;
    }
    50% {
      translate: 0 -7px;
    }
  }
}

/* V4 art direction — editorial, industrial and recognisably RemoteFix. */
:root {
  --ink: #151411;
  --muted: #6a655d;
  --line: #d8d2c7;
  --paper: #f2efe8;
  --white: #fffdf8;
  --blue: #ff552b;
  --violet: #d53e1e;
  --lime: #ffc84a;
  --radius: 10px;
  --shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
}

body {
  background: var(--paper);
}

.nav {
  border-color: rgba(21, 20, 17, 0.18);
  background: rgba(242, 239, 232, 0.94);
}

.wordmark {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.075em;
}

.wordmark span {
  color: var(--ink);
}

.wordmark i {
  width: 9px;
  height: 9px;
  background: var(--blue);
  box-shadow: none;
}

.button {
  min-height: 50px;
  border-radius: 4px;
  box-shadow: none;
  letter-spacing: 0.01em;
}

.button:hover {
  background: #e9451f;
  box-shadow: none;
}

.button.secondary {
  border-color: rgba(255, 253, 248, 0.5);
  color: #fffdf8;
  background: transparent;
}

.hero {
  padding: 118px 0 112px;
  color: #fffdf8;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    #151411;
  background-size: 64px 64px;
}

.hero::before {
  position: absolute;
  top: 54px;
  right: -22px;
  color: rgba(255, 255, 255, 0.027);
  content: "RemoteFix";
  font-size: clamp(100px, 15vw, 250px);
  font-weight: 950;
  letter-spacing: -0.09em;
  line-height: 1;
  white-space: nowrap;
}

.hero::after {
  width: 420px;
  height: 420px;
  right: 12%;
  bottom: -340px;
  background: var(--blue);
  filter: blur(95px);
  opacity: 0.22;
}

.hero-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 0.95fr) minmax(590px, 1.05fr);
  gap: 64px;
}

.kicker {
  color: #c7c1b7;
}

.kicker span {
  border-radius: 1px;
  background: var(--blue);
  box-shadow: none;
}

.hero h1 {
  font-size: clamp(62px, 6.6vw, 98px);
  letter-spacing: -0.078em;
}

.hero h1 em {
  color: var(--blue);
}

.hero-copy > p {
  color: #bdb7ad;
}

.hero-note {
  color: #aaa49b;
}

.product-window {
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 7px;
  box-shadow:
    24px 28px 0 rgba(255, 85, 43, 0.17),
    var(--shadow);
  transform: none;
}

.window-top {
  background: #ede9e0;
}

.window-body > aside {
  background: #24221e;
}

.window-body > aside strong,
.dash-title button {
  border-radius: 3px;
  background: var(--blue);
}

.window-body > aside span,
.dash-grid article,
.health span,
.infra-chart,
.osd-device,
.browser-bar,
.site-mock,
.site-cards i {
  border-radius: 4px;
}

.dashboard {
  background: #f3f0e9;
}

.dash-grid article {
  border-color: #ddd7cc;
  background: #fffdf8;
}

.trust {
  border-color: #d5cec1;
  background: #f2efe8;
}

.metrics {
  padding: 58px 0;
  border-block: 1px solid #c9c1b4;
  color: var(--ink);
  background: #e9e3d9;
}

.metric-grid div {
  border-color: #c9c1b4;
}

.metric-grid strong {
  color: var(--ink);
}

.metric-grid span {
  color: #6e685f;
}

.section-title > span,
.label {
  color: var(--blue);
}

.solution-tabs {
  border-color: #c6beb1;
}

.solution-tabs button {
  color: #716b62;
}

.solution-panel {
  border-color: #cfc7bb;
  border-radius: 8px;
  background: #fffdf8;
  box-shadow: 16px 16px 0 #e3ddd2;
}

.panel-copy li {
  border-color: #ded8ce;
}

.panel-demo {
  background: #211f1c;
}

.smart-demo,
.infra-demo,
.osd-demo {
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    #211f1c;
  background-size: 28px 28px;
}

.room-grid article {
  border-radius: 5px;
  background: rgba(255, 253, 248, 0.075);
}

.room-grid article:nth-child(2),
.room-grid article:nth-child(3) {
  border-top: 3px solid var(--blue);
}

.timeline span {
  border-radius: 3px;
}

.infra-chart,
.osd-device {
  background: rgba(255, 253, 248, 0.06);
}

.infra-chart path {
  stroke: var(--blue);
}

.osd-device.active {
  border-color: var(--blue);
  background: rgba(255, 85, 43, 0.13);
}

.web-demo {
  background: #d7d0c5;
}

.site-mock {
  background: #fffdf8;
}

.reasons {
  background: #fffdf8;
}

.reason-list article > span {
  color: var(--blue);
}

.cases {
  background: #181713;
}

.cases .section-title > span,
.case-stack b {
  color: var(--blue);
}

.case-grid-v3 article {
  border-radius: 7px;
}

.case-feature {
  background:
    linear-gradient(120deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.34)),
    var(--blue);
}

.case-stats span,
.case-stack article {
  border-radius: 4px;
}

.case-stack article {
  background: #25231f;
}

.pricing {
  background: #f2efe8;
}

.price-grid > a {
  border-color: #cbc3b7;
  border-radius: 6px;
  background: #fffdf8;
}

.price-grid .featured {
  border-color: var(--ink);
  color: #fffdf8;
  background: var(--ink);
  box-shadow: 10px 10px 0 var(--blue);
}

.price-grid .featured b {
  color: var(--blue);
}

.location {
  background: #fffdf8;
}

.location-inner {
  border-radius: 7px;
  background: #1e1c19;
}

.location-map {
  background:
    linear-gradient(35deg, rgba(255, 85, 43, 0.22), transparent),
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    #282520;
  background-size:
    auto,
    34px 34px,
    34px 34px,
    auto;
}

.ring {
  border-color: rgba(255, 85, 43, 0.48);
}

.pin b {
  background: var(--blue);
  box-shadow: 0 0 0 8px rgba(255, 85, 43, 0.2);
}

.final {
  background: var(--blue);
}

.final span {
  color: var(--ink);
}

footer {
  background: #11100e;
}

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

@media (max-width: 760px) {
  .hero {
    padding-top: 80px;
    background-size: 42px 42px;
  }

  .product-window {
    box-shadow: 10px 12px 0 rgba(255, 85, 43, 0.2);
  }

  .metric-grid div,
  .metric-grid div:first-child,
  .metric-grid div:nth-child(odd) {
    border-color: #c9c1b4;
  }

  .solution-panel {
    box-shadow: 7px 7px 0 #e0d9ce;
  }
}

/* Living Lab product showroom */
.living-showcase {
  overflow: hidden;
  padding: 124px 0;
  color: #fffdf8;
  background: #11100e;
}
.showcase-head {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.5fr);
  align-items: end;
  gap: 70px;
}
.showcase-head span,
.endpoint-heading > span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.13em;
}
.showcase-head h2,
.endpoint-heading h2 {
  max-width: 900px;
  margin: 17px 0 0;
  font-size: clamp(45px, 5.6vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}
.showcase-head p {
  margin: 0;
  color: #a9a39a;
  font-size: 14px;
  line-height: 1.7;
}
.living-stage {
  display: grid;
  margin-top: 66px;
  grid-template-columns: 215px minmax(0, 1fr);
  gap: 16px;
}
.scene-tabs {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.scene-tabs button {
  display: grid;
  min-height: 85px;
  padding: 15px;
  grid-template-columns: 32px 1fr;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #7d7972;
  text-align: left;
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
}
.scene-tabs button:hover,
.scene-tabs button.active {
  border-color: var(--blue);
  color: #fffdf8;
  background: rgba(255, 85, 43, 0.12);
}
.scene-tabs button > i {
  color: var(--blue);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}
.scene-tabs span,
.scene-tabs b,
.scene-tabs small {
  display: block;
}
.scene-tabs b {
  font-size: 13px;
}
.scene-tabs small {
  margin-top: 4px;
  color: #858078;
  font-size: 9px;
}
.scene-screen {
  position: relative;
  overflow: hidden;
  min-width: 0;
  min-height: 650px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background-position: center;
  background-size: cover;
  box-shadow: 18px 18px 0 rgba(255, 85, 43, 0.12);
}
.scene-screen::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(5, 7, 12, 0.92),
    rgba(5, 7, 12, 0.3) 58%,
    rgba(5, 7, 12, 0.62)
  );
  content: "";
}
.scene-overview {
  background-image: url("assets/ha/home.jpg");
}
.scene-energy {
  background-image: url("assets/ha/energie.jpg");
}
.scene-media {
  background-image: url("assets/ha/media.jpg");
}
.scene-command {
  background-image: url("assets/ha/commandcenter.jpg");
}
.scene-top {
  display: grid;
  position: relative;
  z-index: 2;
  height: 65px;
  padding: 0 28px;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(8, 10, 14, 0.42);
  backdrop-filter: blur(18px);
}
.scene-top strong {
  font-size: 13px;
}
.scene-top span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #c2beb7;
  font-size: 10px;
}
.scene-top span i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #68cf7c;
  box-shadow: 0 0 0 5px rgba(104, 207, 124, 0.13);
}
.scene-top time {
  color: #8e8981;
  font-size: 10px;
}
.scene-content {
  display: grid;
  position: relative;
  z-index: 2;
  min-height: 520px;
  padding: 65px 60px 105px;
  grid-template-columns: 1fr 210px;
  align-items: center;
  gap: 30px;
}
.scene-intro small,
.energy-layout small,
.now-playing > small,
.command-copy small {
  color: var(--blue);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.15em;
}
.scene-intro h3,
.now-playing h3,
.command-copy h3 {
  margin: 14px 0;
  font-size: clamp(40px, 4.9vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}
.scene-intro p,
.now-playing p,
.command-copy p {
  max-width: 520px;
  color: #b2aea6;
  line-height: 1.6;
}
.orb {
  display: grid;
  width: 190px;
  height: 190px;
  place-content: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  text-align: center;
  background: rgba(10, 15, 18, 0.38);
  box-shadow:
    0 0 0 20px rgba(255, 255, 255, 0.045),
    0 0 75px rgba(71, 205, 220, 0.18);
  backdrop-filter: blur(13px);
}
.orb span {
  font-size: 43px;
  font-weight: 750;
  letter-spacing: -0.06em;
}
.orb small {
  color: #a8a39c;
  font-size: 8px;
  letter-spacing: 0.18em;
}
.scene-facts {
  display: flex;
  position: absolute;
  right: 60px;
  bottom: 34px;
  left: 60px;
  gap: 8px;
}
.scene-facts span {
  min-width: 125px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #9e9991;
  background: rgba(13, 15, 18, 0.48);
  font-size: 9px;
  backdrop-filter: blur(12px);
}
.scene-facts b {
  display: block;
  color: #fffdf8;
  font-size: 24px;
}
.scene-dock {
  display: flex;
  position: absolute;
  z-index: 3;
  bottom: 20px;
  left: 50%;
  padding: 8px;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(8, 10, 13, 0.72);
  transform: translateX(-50%);
  backdrop-filter: blur(20px);
}
.scene-dock span {
  display: grid;
  width: 66px;
  height: 53px;
  place-content: center;
  color: #77736d;
  text-align: center;
  font-size: 18px;
}
.scene-dock span.active {
  color: var(--blue);
  background: rgba(255, 255, 255, 0.08);
}
.scene-dock small {
  display: block;
  margin-top: 4px;
  color: inherit;
  font-size: 7px;
}
.energy-layout {
  display: grid;
  position: relative;
  z-index: 2;
  min-height: 585px;
  padding: 60px;
  grid-template-columns: 1fr 190px;
  align-content: center;
  gap: 30px;
}
.energy-layout > div:first-child > strong {
  display: block;
  margin-top: 10px;
  font-size: 76px;
  letter-spacing: -0.075em;
}
.energy-layout > div:first-child em {
  color: #b7b1a8;
  font-size: 22px;
  font-style: normal;
}
.energy-layout > div:first-child p {
  color: #a6a198;
}
.energy-ring {
  display: grid;
  width: 170px;
  height: 170px;
  place-content: center;
  border: 15px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--blue);
  border-right-color: var(--blue);
  border-radius: 50%;
  text-align: center;
  transform: rotate(22deg);
}
.energy-ring span,
.energy-ring small {
  transform: rotate(-22deg);
}
.energy-ring span {
  font-size: 35px;
  font-weight: 800;
}
.energy-ring small {
  color: #969189;
  font-size: 7px;
}
.energy-graph {
  position: relative;
  height: 190px;
  grid-column: 1/-1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}
.energy-graph svg {
  position: absolute;
  width: 100%;
  height: 170px;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: visible;
}
.energy-graph path {
  fill: none;
  stroke: var(--blue);
  stroke-width: 4;
  filter: drop-shadow(0 0 8px rgba(255, 85, 43, 0.5));
}
.energy-graph > span {
  display: inline-block;
  width: 19.4%;
  color: #77736d;
  font-size: 8px;
  vertical-align: bottom;
}
.energy-sources {
  display: grid;
  grid-column: 1/-1;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.energy-sources span {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #a7a198;
  background: rgba(12, 14, 17, 0.5);
  font-size: 10px;
}
.energy-sources i {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--blue);
}
.energy-sources b {
  margin-right: 15px;
  color: #fffdf8;
}
.media-layout {
  display: grid;
  position: relative;
  z-index: 2;
  min-height: 585px;
  padding: 62px;
  grid-template-columns: 220px minmax(0, 1fr) 210px;
  align-items: center;
  gap: 40px;
}
.album-art {
  display: grid;
  position: relative;
  aspect-ratio: 1;
  place-content: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    radial-gradient(circle at 68% 28%, #ff633b, transparent 30%),
    radial-gradient(circle at 30% 75%, #7a3eff, transparent 35%), #18171c;
  box-shadow: 18px 18px 0 rgba(255, 85, 43, 0.18);
}
.album-art::after {
  position: absolute;
  inset: 13px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  content: "";
}
.album-art > span {
  z-index: 2;
  font-size: 27px;
  font-weight: 950;
  letter-spacing: -0.08em;
}
.album-art > span span {
  color: var(--blue);
}
.now-playing h3 {
  font-size: 48px;
}
.now-playing p {
  font-size: 13px;
}
.waveform {
  display: flex;
  height: 50px;
  margin: 25px 0;
  align-items: center;
  gap: 5px;
}
.waveform i {
  width: 4px;
  border-radius: 2px;
  background: var(--blue);
  animation: wave 1.4s ease-in-out infinite alternate;
}
.waveform i:nth-child(3n) {
  height: 90%;
}
.waveform i:nth-child(3n + 1) {
  height: 35%;
}
.waveform i:nth-child(3n + 2) {
  height: 65%;
}
.player {
  display: flex;
  align-items: center;
  gap: 8px;
}
.player button {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  background: rgba(255, 255, 255, 0.06);
}
.player button.play {
  width: 48px;
  height: 48px;
  color: #161410;
  border-color: var(--blue);
  background: var(--blue);
}
.zones {
  display: grid;
  gap: 8px;
}
.zones > span {
  display: grid;
  padding: 14px;
  grid-template-columns: 10px 1fr;
  gap: 3px 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(9, 10, 15, 0.54);
}
.zones i {
  width: 8px;
  height: 8px;
  margin-top: 4px;
  border-radius: 50%;
  background: #666;
}
.zones span.active i {
  background: #65ce78;
}
.zones b,
.zones small {
  display: block;
}
.zones b {
  font-size: 11px;
}
.zones small {
  grid-column: 2;
  color: #918c85;
  font-size: 8px;
}
.command-layout {
  display: grid;
  position: relative;
  z-index: 2;
  min-height: 585px;
  padding: 56px;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: center;
  gap: 55px;
}
.command-copy h3 {
  font-size: 50px;
}
.command-copy p {
  font-size: 13px;
}
.command-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.command-grid article {
  display: grid;
  min-width: 0;
  padding: 16px;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 12, 17, 0.58);
  backdrop-filter: blur(15px);
}
.command-grid article > i {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--blue);
  border: 1px solid rgba(255, 85, 43, 0.4);
  font-size: 9px;
  font-style: normal;
  font-weight: 850;
}
.command-grid b,
.command-grid small {
  display: block;
}
.command-grid b {
  font-size: 10px;
}
.command-grid small {
  margin-top: 3px;
  color: #85817b;
  font-size: 8px;
}
.command-grid em {
  color: #68cf7c;
  font-size: 8px;
  font-style: normal;
}

/* SCCM / OSD commercial product system */
.endpoint-products {
  padding: 124px 0;
  color: var(--ink);
  background: #e9e3d9;
}
.endpoint-heading {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 390px);
  gap: 30px 70px;
}
.endpoint-heading > span {
  grid-column: 1/-1;
}
.endpoint-heading h2 {
  margin: 0;
}
.endpoint-heading > p {
  align-self: end;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}
.endpoint-catalog {
  display: grid;
  margin-top: 66px;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 12px;
}
.endpoint-catalog article {
  position: relative;
  border: 1px solid #c7bfb2;
  background: #fffdf8;
}
.product-number {
  position: absolute;
  top: 25px;
  right: 27px;
  color: #c9c1b5;
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -0.08em;
}
.endpoint-catalog article > small {
  color: var(--blue);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.14em;
}
.endpoint-catalog h3 {
  margin: 17px 0;
  font-size: 32px;
  line-height: 1.04;
  letter-spacing: -0.045em;
}
.endpoint-catalog p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}
.endpoint-main {
  min-height: 555px;
  padding: 48px;
}
.endpoint-main h3 {
  max-width: 550px;
  font-size: 52px;
}
.endpoint-main > p {
  max-width: 630px;
}
.endpoint-main ul {
  display: grid;
  margin: 30px 0;
  padding: 0;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  list-style: none;
  background: #ded7cc;
}
.endpoint-main li {
  padding: 13px 15px;
  background: #fffdf8;
  font-size: 11px;
}
.endpoint-main li::before {
  margin-right: 9px;
  color: var(--blue);
  content: "↳";
  font-weight: 900;
}
.endpoint-main > div:last-child,
.endpoint-side article > div:last-child {
  display: flex;
  position: absolute;
  right: 48px;
  bottom: 42px;
  left: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.endpoint-main strong {
  font-size: 24px;
}
.endpoint-main a {
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
}
.endpoint-side {
  display: grid;
  gap: 12px;
}
.endpoint-side article {
  min-height: 271px;
  padding: 36px;
}
.endpoint-side article > div:last-child {
  right: 36px;
  bottom: 32px;
  left: 36px;
}
.endpoint-side strong,
.endpoint-side span {
  display: block;
}
.endpoint-side strong {
  font-size: 15px;
}
.endpoint-side span {
  color: #817a70;
  font-size: 9px;
}
.endpoint-services {
  display: grid;
  margin-top: 12px;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #c7bfb2;
  border-left: 1px solid #c7bfb2;
}
.endpoint-services article {
  min-height: 230px;
  padding: 26px;
  border-right: 1px solid #c7bfb2;
  border-bottom: 1px solid #c7bfb2;
  background: rgba(255, 253, 248, 0.48);
}
.endpoint-services i {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--blue);
  border: 1px solid #c7bfb2;
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
}
.endpoint-services h4 {
  margin: 35px 0 10px;
  font-size: 17px;
  letter-spacing: -0.03em;
}
.endpoint-services p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}
@keyframes wave {
  from {
    transform: scaleY(0.55);
  }
  to {
    transform: scaleY(1);
  }
}

@media (max-width: 1080px) {
  .living-stage {
    grid-template-columns: 1fr;
  }
  .scene-tabs {
    flex-direction: row;
    overflow-x: auto;
  }
  .scene-tabs button {
    min-width: 190px;
    flex: 1;
  }
  .media-layout {
    padding: 45px 36px;
    grid-template-columns: 180px 1fr;
  }
  .zones {
    grid-column: 1/-1;
    grid-template-columns: repeat(3, 1fr);
  }
  .command-layout {
    gap: 30px;
  }
  .endpoint-services {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 760px) {
  .living-showcase,
  .endpoint-products {
    padding: 84px 0;
  }
  .showcase-head,
  .endpoint-heading {
    display: block;
  }
  .showcase-head p,
  .endpoint-heading > p {
    margin-top: 24px;
  }
  .living-stage {
    margin-top: 42px;
  }
  .scene-screen {
    min-height: 650px;
  }
  .scene-top {
    padding-inline: 16px;
    grid-template-columns: 1fr auto;
  }
  .scene-top time {
    display: none;
  }
  .scene-content {
    padding: 48px 25px 120px;
    grid-template-columns: 1fr;
    align-content: center;
  }
  .orb {
    width: 135px;
    height: 135px;
    justify-self: end;
  }
  .orb span {
    font-size: 31px;
  }
  .scene-facts {
    right: 25px;
    bottom: 80px;
    left: 25px;
  }
  .scene-dock {
    bottom: 15px;
  }
  .scene-dock span {
    width: 49px;
  }
  .energy-layout {
    padding: 45px 24px;
    grid-template-columns: 1fr 125px;
  }
  .energy-layout > div:first-child > strong {
    font-size: 54px;
  }
  .energy-ring {
    width: 120px;
    height: 120px;
    border-width: 10px;
  }
  .energy-sources {
    grid-template-columns: 1fr;
  }
  .media-layout {
    padding: 45px 25px;
    grid-template-columns: 120px 1fr;
    gap: 23px;
  }
  .now-playing h3 {
    font-size: 35px;
  }
  .zones {
    grid-template-columns: 1fr;
  }
  .command-layout {
    padding: 45px 24px;
    grid-template-columns: 1fr;
  }
  .command-copy h3 {
    font-size: 41px;
  }
  .endpoint-catalog {
    grid-template-columns: 1fr;
  }
  .endpoint-main {
    min-height: 620px;
    padding: 35px 25px;
  }
  .endpoint-main h3 {
    font-size: 41px;
  }
  .endpoint-main ul {
    grid-template-columns: 1fr;
  }
  .endpoint-main > div:last-child {
    right: 25px;
    bottom: 30px;
    left: 25px;
    align-items: flex-start;
    flex-direction: column;
  }
  .endpoint-side article {
    min-height: 290px;
  }
  .endpoint-services {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 520px) {
  .scene-tabs button {
    min-width: 165px;
  }
  .scene-screen {
    min-height: 720px;
  }
  .scene-content {
    min-height: 590px;
  }
  .scene-facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .scene-facts span {
    min-width: 0;
    padding: 9px;
  }
  .scene-facts b {
    font-size: 19px;
  }
  .energy-layout {
    min-height: 650px;
    grid-template-columns: 1fr;
  }
  .energy-ring {
    position: absolute;
    top: 105px;
    right: 24px;
  }
  .energy-graph {
    margin-top: 40px;
  }
  .media-layout {
    min-height: 650px;
    grid-template-columns: 1fr;
  }
  .album-art {
    width: 150px;
  }
  .command-grid {
    grid-template-columns: 1fr;
  }
}
