/* Header */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: rgba(10, 16, 28, .35);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.header.scrolled {
  background: rgba(10, 16, 28, .72)
}

.header-inner {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

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

.brand .name {
  font-weight: 800;
  letter-spacing: .06em
}

.brand .tag {
  font-size: .9rem;
  color: var(--muted);
  margin-top: 2px
}

.nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav a {
  font-size: .98rem;
  padding: 10px 10px;
  color: rgba(232, 238, 252, .82);
  border-radius: 12px;
  border: 1px solid transparent;
}

.nav a:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .06)
}

.nav a.active {
  color: var(--text);
  border-color: rgba(33, 83, 204, .35);
  background: rgba(33, 83, 204, .10)
}

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

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px
}

@media (max-width: 980px) {
  .nav {
    display: none
  }

  .burger {
    display: inline-flex
  }

  .brand {
    min-width: auto
  }
}

/* Mobile drawer */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  z-index: 60;
  display: none;
}

.drawer {
  position: fixed;
  top: 0;
  left: -320px;
  height: 100%;
  width: 300px;
  z-index: 61;
  background: rgba(10, 16, 28, .92);
  border-right: 1px solid rgba(255, 255, 255, .10);
  backdrop-filter: blur(14px);
  transition: left .22s ease;
  padding: 18px;
}

.drawer.open {
  left: 0
}

.drawer-backdrop.show {
  display: block
}

.drawer .drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between
}

.drawer .drawer-links {
  margin-top: 18px;
  display: grid;
  gap: 8px
}

.drawer .drawer-links a {
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .04);
  color: rgba(232, 238, 252, .88);
}

.drawer .drawer-links a:hover {
  border-color: rgba(33, 83, 204, .35);
  background: rgba(33, 83, 204, .10)
}

.drawer .drawer-links a.active {
  border-color: rgba(33, 83, 204, .55);
  background: rgba(33, 83, 204, .12)
}

/* Page top spacing for fixed header */
.page {
  padding-top: 70px
}

/* Hero */
.hero {
  position: relative;
  height: 78vh;
  min-height: 560px;
  max-height: 860px;
  overflow: hidden;
}

.hero .slides {
  position: absolute;
  inset: 0
}

.hero .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity .6s ease, transform .8s ease;
  background-size: cover;
  background-position: center;
}

.hero .slide.active {
  opacity: 1;
  transform: scale(1.0)
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 800px at 20% 20%, rgba(33, 83, 204, .18), transparent 55%),
    radial-gradient(1000px 700px at 80% 25%, rgba(106, 167, 255, .16), transparent 55%),
    linear-gradient(180deg, rgba(0, 0, 0, .35), rgba(11, 18, 32, .78));
}

.hero .content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero .hero-box {
  max-width: 760px;
  padding: 28px;
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(10, 16, 28, .35);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.05;
  margin-top: 12px;
}

.hero p {
  margin-top: 14px;
  color: rgba(232, 238, 252, .80);
  max-width: 70ch
}

.hero .hero-actions {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

.hero .dots {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}

.hero .dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .25);
  background: rgba(255, 255, 255, .10);
  cursor: pointer;
}

.hero .dot.active {
  background: linear-gradient(90deg, var(--primary), var(--primary2));
  border-color: transparent;
  width: 26px
}

@media (max-width: 980px) {
  .hero {
    height: 72vh;
    min-height: 520px
  }

  .hero .hero-box {
    padding: 22px
  }
}

/* Feature rows */
.feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(33, 83, 204, .10);
  border: 1px solid rgba(33, 83, 204, .18);
}

.icon svg {
  width: 22px;
  height: 22px;
  fill: rgba(232, 238, 252, .92)
}

.feature h3 {
  font-size: 1.2rem
}

.feature p {
  margin-top: 6px;
  color: var(--muted)
}

/* Solutions highlight */
.split {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  align-items: stretch;
}

@media (max-width: 980px) {
  .split {
    grid-template-columns: 1fr
  }
}

.panel {
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .06);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.panel .bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 600px at 10% 10%, rgba(33, 83, 204, .20), transparent 60%),
    radial-gradient(900px 600px at 90% 20%, rgba(106, 167, 255, .16), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(0, 0, 0, .08));
}

.panel .inner {
  position: relative;
  padding: 24px
}

.panel h3 {
  font-size: 1.4rem
}

.panel p {
  margin-top: 10px;
  color: var(--muted)
}

.panel ul {
  margin-top: 14px;
  display: grid;
  gap: 8px
}

.panel li {
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(10, 16, 28, .35);
  color: rgba(232, 238, 252, .88);
}

/* Industry tabs */
.tabs {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 18px;
  align-items: stretch;
}

@media (max-width: 980px) {
  .tabs {
    grid-template-columns: 1fr
  }
}

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

.tab {
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .04);
  cursor: pointer;
  color: rgba(232, 238, 252, .86);
}

.tab:hover {
  border-color: rgba(33, 83, 204, .35);
  background: rgba(33, 83, 204, .10)
}

.tab.active {
  border-color: rgba(33, 83, 204, .55);
  background: rgba(33, 83, 204, .12);
  color: var(--text)
}

.tabpanel {
  min-height: 260px;
}

.tabpanel h3 {
  font-size: 1.5rem
}

.tabpanel p {
  margin-top: 10px;
  color: var(--muted);
  max-width: 80ch
}

.tabpanel .mini {
  margin-top: 14px;
  display: grid;
  gap: 10px
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(10, 16, 28, .35);
  color: rgba(232, 238, 252, .90);
  font-size: .95rem;
}

/* News list */
.news-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px
}

@media (max-width:980px) {
  .news-list {
    grid-template-columns: 1fr
  }
}

.news-item h3 {
  font-size: 1.15rem
}

.news-item .meta {
  margin-top: 8px;
  color: var(--muted);
  font-size: .95rem
}

.news-item p {
  margin-top: 10px;
  color: var(--muted)
}

/* Footer */
.footer {
  padding: 40px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  background: rgba(0, 0, 0, .18);
}

.footer .footgrid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
}

@media (max-width:980px) {
  .footer .footgrid {
    grid-template-columns: 1fr
  }
}

.footer h4 {
  margin-bottom: 10px
}

.footer a {
  color: rgba(232, 238, 252, .80)
}

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

.footer .copy {
  margin-top: 18px;
  color: rgba(232, 238, 252, .62);
  font-size: .9rem;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Forms */
.form {
  display: grid;
  gap: 12px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: rgba(232, 238, 252, .84);
  font-weight: 600
}

.field input,
.field textarea {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(10, 16, 28, .35);
  color: var(--text);
  outline: none;
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(33, 83, 204, .55);
  box-shadow: 0 0 0 4px rgba(33, 83, 204, .12)
}

/* PanoViz static hero banner */
.hero.hero-static {
  height: auto;
  min-height: 0;
  max-height: none;
}

.hero.hero-static .slides,
.hero.hero-static .overlay,
.hero.hero-static .dots,
.hero.hero-static .content {
  display: none !important;
}

.hero.hero-static .hero-static-inner {
  width: 100%;
}

.hero.hero-static .hero-static-inner img {
  width: 100%;
  height: auto;
  display: block;
}

/* Lists */
.bullets {
  margin: 0;
  padding-left: 18px;
}

.bullets li {
  margin: 8px 0;
  color: var(--text);
}

.spec {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.spec li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.spec li:last-child {
  border-bottom: none;
}

.spec li span:first-child {
  color: var(--muted);
  white-space: nowrap;
}

.spec li span:last-child {
  color: var(--text);
  text-align: right;
}