/* About Taylor Made featured stack */
.about-stack {
  position: relative;
  margin: 0 auto 72px;
  padding: clamp(2.4rem, 4vw, 3.6rem);
  background: linear-gradient(160deg, rgba(9, 16, 32, 0.96), rgba(4, 9, 20, 0.92));
  border-radius: clamp(24px, 4vw, 32px);
  box-shadow: 0 32px 86px rgba(3, 10, 26, 0.42);
  display: grid;
  gap: clamp(2rem, 3vw, 3rem);
  justify-items: center;
  overflow: hidden;
}

.about-stack::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: inherit;
  background: radial-gradient(circle at top, rgba(83, 227, 194, 0.08), rgba(44, 169, 235, 0.03));
  pointer-events: none;
}

.about-stack-media,
.about-stack-content {
  position: relative;
  z-index: 1;
  width: 100%;
}

.about-stack-media {
  display: flex;
  justify-content: center;
}

.about-stack-video-shell {
  position: relative;
  width: 100%;
  max-width: 880px;
  border-radius: clamp(22px, 3vw, 28px);
  overflow: hidden;
  background: radial-gradient(circle at 20% 20%, rgba(83, 227, 194, 0.22), rgba(6, 12, 24, 0.92));
  box-shadow: 0 28px 70px rgba(4, 12, 32, 0.45);
}

.about-stack-video-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44, 169, 235, 0.18), rgba(83, 227, 194, 0.08));
  opacity: 0.4;
  pointer-events: none;
}

.about-stack-video {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
}

.about-stack-content {
  max-width: 760px;
  text-align: center;
  display: grid;
  gap: clamp(1.4rem, 2.4vw, 2rem);
  justify-items: center;
}

.about-stack-title {
  margin: 0;
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  font-weight: 700;
  color: #f7fbff;
  letter-spacing: -0.01em;
}

.about-stack-text {
  margin: 0;
  color: rgba(213, 230, 255, 0.88);
  font-size: clamp(1.02rem, 1.8vw, 1.2rem);
  line-height: 1.7;
  max-width: 640px;
}

.about-stack-metrics {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1rem, 2vw, 1.6rem);
}

.about-stack-metric {
  min-width: 180px;
  padding: 1.1rem 1.4rem;
  border-radius: 18px;
  border: 1px solid rgba(83, 227, 194, 0.22);
  background: rgba(10, 22, 38, 0.9);
  box-shadow: inset 0 0 0 1px rgba(44, 169, 235, 0.08);
  display: grid;
  gap: 0.35rem;
  text-align: center;
}

.about-stack-metric .metric-value {
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  font-weight: 700;
  color: #53e3c2;
}

.about-stack-metric .metric-label {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(213, 230, 255, 0.68);
}

.about-stack-highlights {
  width: 100%;
  display: grid;
  gap: 1rem;
  max-width: 760px;
}

@media (min-width: 720px) {
  .about-stack-highlights {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.about-stack-highlight {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1rem 1.2rem;
  border-radius: 16px;
  background: rgba(14, 32, 54, 0.88);
  border: 1px solid rgba(44, 169, 235, 0.18);
  transition: transform 0.25s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.about-stack-highlight:hover {
  transform: translateY(-6px);
  border-color: rgba(83, 227, 194, 0.45);
  box-shadow: 0 18px 32px rgba(6, 18, 34, 0.35);
}

.about-stack-highlight i {
  font-size: 1.4rem;
  color: #53e3c2;
  flex-shrink: 0;
}

.about-stack-highlight h5 {
  margin: 0 0 0.35rem 0;
  font-size: 1.05rem;
  color: #f1f6ff;
}

.about-stack-highlight p {
  margin: 0;
  color: rgba(213, 230, 255, 0.75);
  line-height: 1.55;
  font-size: 0.95rem;
}

@media (max-width: 640px) {
  .about-stack {
    padding: 2rem;
  }

  .about-stack::after {
    inset: 10px;
  }

  .about-stack-highlights {
    gap: 1.2rem;
  }
}

/* Camera installation floating prompt */
.install-promo {
  position: fixed;
  bottom: clamp(18px, 4vw, 40px);
  right: clamp(18px, 4vw, 44px);
  z-index: 1600;
  width: min(360px, calc(100vw - 36px));
  animation: installPromoIn 0.45s ease forwards;
}

.install-promo__card {
  position: relative;
  display: grid;
  gap: 0;
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(7, 14, 28, 0.96), rgba(5, 10, 24, 0.92));
  border: 1px solid rgba(83, 227, 194, 0.28);
  box-shadow: 0 26px 60px rgba(2, 10, 30, 0.45);
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.install-promo__close {
  position: absolute;
  top: 10px;
  right: 10px;
  border: none;
  background: rgba(10, 20, 36, 0.75);
  color: rgba(247, 251, 255, 0.82);
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.install-promo__close:hover {
  transform: scale(1.05);
  background: rgba(83, 227, 194, 0.28);
  color: #051020;
}

.install-promo__media img {
  display: block;
  width: 100%;
  height: 190px;
  object-fit: cover;
  filter: saturate(1.05);
}

.install-promo__body {
  padding: 1.6rem 1.5rem 1.8rem;
  display: grid;
  gap: 0.9rem;
  color: rgba(213, 230, 255, 0.88);
}

.install-promo__eyebrow {
  margin: 0;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(83, 227, 194, 0.78);
}

.install-promo__body h3 {
  margin: 0;
  font-size: 1.5rem;
  color: #f7fbff;
  line-height: 1.3;
}

.install-promo__body p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.6;
}

.install-promo__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.install-promo__list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  position: relative;
  padding-left: 1.2rem;
}

.install-promo__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #53e3c2, #2ca9eb);
  box-shadow: 0 0 8px rgba(83, 227, 194, 0.5);
}

.install-promo__contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.4rem;
}

.install-promo__primary,
.install-promo__secondary,
.install-promo__dismiss {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border-radius: 999px;
  padding: 0.65rem 1.2rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.install-promo__primary {
  background: linear-gradient(135deg, #53e3c2, #2ca9eb);
  color: #04111e;
  box-shadow: 0 16px 32px rgba(44, 169, 235, 0.32);
}

.install-promo__primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 38px rgba(44, 169, 235, 0.35);
}

.install-promo__secondary {
  background: rgba(10, 24, 40, 0.85);
  border: 1px solid rgba(83, 227, 194, 0.28);
  color: rgba(213, 230, 255, 0.88);
}

.install-promo__secondary:hover {
  transform: translateY(-2px);
  background: rgba(83, 227, 194, 0.2);
  color: #04111e;
  box-shadow: 0 16px 28px rgba(83, 227, 194, 0.28);
}

.install-promo__dismiss {
  border: 1px solid rgba(0, 120, 215, 0.32);
  background: rgba(6, 16, 30, 0.6);
  color: rgba(213, 230, 255, 0.7);
  cursor: pointer;
}

.install-promo__dismiss:hover {
  transform: translateY(-2px);
  color: #f7fbff;
  border-color: rgba(83, 227, 194, 0.4);
  box-shadow: 0 12px 24px rgba(4, 16, 34, 0.4);
}

@keyframes installPromoIn {
  from {
    opacity: 0;
    transform: translate3d(0, 24px, 0) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@media (max-width: 640px) {
  .install-promo {
    left: clamp(16px, 4vw, 28px);
    right: clamp(16px, 4vw, 28px);
    bottom: clamp(16px, 6vw, 32px);
    width: auto;
  }

  .install-promo__media img {
    height: 160px;
  }

  .install-promo__contact {
    flex-direction: column;
    align-items: stretch;
  }

  .install-promo__primary,
  .install-promo__secondary,
  .install-promo__dismiss {
    justify-content: center;
  }
}
:root {
  --color-bg: #0b0d13;
  --color-surface: rgba(23, 27, 38, 0.85);
  --color-surface-solid: #171b26;
  --color-accent: #0078d7;
  --color-accent-soft: rgba(0, 120, 215, 0.25);
  --color-text: #f5f7ff;
  --color-muted: #a1acc9;
  --color-border: rgba(255, 255, 255, 0.08);
  --color-gradient-start: #0b63d5;
  --color-gradient-end: #29b3ff;
  --shadow-soft: 0 20px 45px rgba(5, 10, 30, 0.55);
  --shadow-card: 0 18px 40px rgba(5, 12, 28, 0.5);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --transition-base: 0.35s ease;
  --font-heading: "Poppins", "Manrope", sans-serif;
  --font-body: "Manrope", "Poppins", sans-serif;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  margin: 0;
  overflow-x: hidden;
}

html {
  overflow-x: clip;
}

.home-page {
  width: 100%;
  overflow-x: clip;
}

body.theme-light {
  --color-bg: #f5f7fb;
  --color-surface: rgba(255, 255, 255, 0.82);
  --color-surface-solid: #ffffff;
  --color-text: #212633;
  --color-muted: #516079;
  --color-border: rgba(22, 30, 46, 0.08);
  --shadow-soft: 0 18px 35px rgba(10, 25, 60, 0.12);
  --shadow-card: 0 25px 50px rgba(14, 22, 38, 0.2);
}

body.theme-light .logo {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(18, 29, 49, 0.08);
  box-shadow: 0 18px 34px rgba(14, 24, 44, 0.2);
}

body.theme-light .logo::before {
  background: linear-gradient(130deg, rgba(11, 99, 213, 0.28), rgba(102, 184, 255, 0.24), rgba(255, 255, 255, 0.42));
  mix-blend-mode: normal;
}

body.theme-light .logo::after {
  border-color: rgba(18, 29, 49, 0.12);
}

body.theme-light .logo:hover {
  border-color: rgba(11, 99, 213, 0.3);
  box-shadow: 0 22px 40px rgba(14, 24, 52, 0.26);
}

body.theme-light .logo-mark {
  background: radial-gradient(circle at 32% 32%, rgba(11, 99, 213, 0.28), rgba(255, 255, 255, 0.94)),
    linear-gradient(140deg, rgba(232, 239, 255, 0.95), rgba(206, 222, 255, 0.82));
  border: 1px solid rgba(11, 99, 213, 0.32);
  box-shadow: inset 0 0 14px rgba(11, 99, 213, 0.2), 0 12px 22px rgba(12, 42, 85, 0.18);
}

body.theme-light .logo-mark::after {
  border-color: rgba(11, 99, 213, 0.28);
}

body.theme-light .nav-link {
  color: rgba(33, 38, 51, 0.72);
}

body.theme-light .nav-link:hover,
body.theme-light .nav-link.active {
  color: var(--color-accent);
}

body.theme-light .nav-link::after {
  background: linear-gradient(120deg, rgba(11, 99, 213, 0.6), rgba(41, 179, 255, 0.8));
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--color-accent);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 120, 215, 0.45);
  background: linear-gradient(135deg, rgba(0, 120, 215, 0.85), rgba(41, 179, 255, 0.65));
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.04em;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 30px rgba(6, 20, 45, 0.38);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  background-size: 180% 180%;
  animation: headerCtaPulse 8s ease infinite;
}

.header-cta::before {
  content: "";
  position: absolute;
  inset: -20% -30%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.45), rgba(0, 120, 215, 0));
  transform: translateX(-120%);
  transition: transform 0.6s ease;
}

.header-cta span {
  position: relative;
  z-index: 1;
}

.header-cta i {
  position: relative;
  z-index: 1;
  font-size: 1rem;
}

.header-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 40px rgba(6, 20, 45, 0.45);
  border-color: rgba(255, 255, 255, 0.4);
}

.header-cta:hover::before {
  transform: translateX(120%);
}

.header-cta:focus-visible {
  outline: 2px solid rgba(41, 179, 255, 0.85);
  outline-offset: 4px;
}

@keyframes headerCtaPulse {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.section {
  padding: 6rem 0;
  position: relative;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 1.1rem;
  border-radius: 999px;
  background: rgba(0, 120, 215, 0.16);
  color: var(--color-accent);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(2.25rem, 3vw, 2.9rem);
  margin: 1rem 0 1.5rem;
  line-height: 1.2;
}

.section-text {
  color: var(--color-muted);
  font-size: 1.05rem;
}

.text-accent {
  color: var(--color-accent);
}

.text-gradient {
  background: linear-gradient(120deg, var(--color-gradient-start), var(--color-gradient-end));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.header {
  background: rgba(11, 13, 19, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: background var(--transition-base), border-color var(--transition-base), padding var(--transition-base);
  padding: 1.15rem 0;
  z-index: 999;
}

.header.scrolled {
  background: rgba(11, 13, 19, 0.96);
  border-color: var(--color-border);
  padding: 0.85rem 0;
}

body.theme-light .header {
  background: rgba(255, 255, 255, 0.9);
}

body.theme-light .header-cta {
  border-color: rgba(11, 99, 213, 0.45);
  background: linear-gradient(135deg, rgba(11, 99, 213, 0.92), rgba(102, 184, 255, 0.82));
  box-shadow: 0 18px 36px rgba(12, 42, 85, 0.25);
  color: #ffffff;
}

body.theme-light .header-cta:hover {
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 24px 44px rgba(12, 42, 85, 0.32);
}

.logo {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.45rem 1.05rem 0.45rem 0.55rem;
  border-radius: 24px;
  color: inherit;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(12, 16, 28, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 30px rgba(5, 10, 25, 0.45);
  backdrop-filter: blur(16px);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.logo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(11, 99, 213, 0.32), rgba(41, 179, 255, 0.2), rgba(255, 255, 255, 0.05));
  mix-blend-mode: screen;
  opacity: 0.75;
  pointer-events: none;
  z-index: 0;
}

.logo::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  pointer-events: none;
  z-index: 0;
}

.logo:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 38px rgba(5, 12, 28, 0.52);
  border-color: rgba(0, 120, 215, 0.32);
}

.logo-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: radial-gradient(circle at 35% 35%, rgba(0, 120, 215, 0.45), rgba(0, 120, 215, 0.12)),
    linear-gradient(140deg, rgba(12, 19, 34, 0.92), rgba(12, 24, 42, 0.65));
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 0 14px rgba(0, 120, 215, 0.25), 0 12px 24px rgba(5, 14, 32, 0.45);
  backdrop-filter: blur(18px);
  overflow: hidden;
  z-index: 1;
}

.logo-mark::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: conic-gradient(from 120deg, rgba(0, 120, 215, 0.05), rgba(41, 179, 255, 0.45), rgba(0, 120, 215, 0.05));
  filter: blur(18px);
  opacity: 0.7;
  pointer-events: none;
}

.logo-mark::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 0.7;
  pointer-events: none;
}

.logo-img {
  width: 48px;
  height: auto;
}

.logo-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
  letter-spacing: 0.12em;
  position: relative;
  z-index: 1;
}

.logo-title {
  font-size: 0.95rem;
  font-weight: 700;
}

.logo-subtitle {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-accent);
  letter-spacing: 0.34em;
}

.navmenu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 1.8rem;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: var(--color-muted);
  font-weight: 500;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -0.45rem;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(120deg, var(--color-gradient-start), var(--color-gradient-end));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.mobile-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--color-text);
  font-size: 1.8rem;
  flex: 0 0 auto;
  position: relative;
  z-index: 1001;
}

.theme-toggle {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  color: var(--color-muted);
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  transition: transform var(--transition-base), background var(--transition-base);
}

.theme-toggle:hover {
  background: rgba(0, 120, 215, 0.15);
  color: var(--color-text);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 8rem;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero .container-xl {
  position: relative;
  z-index: 2;
}

.hero-inner {
  width: 100%;
}

.hero-background {
  position: absolute;
  inset: -18% 0 -8% 0;
  background: radial-gradient(circle at 12% 18%, rgba(41, 179, 255, 0.55), transparent 55%),
    radial-gradient(circle at 82% 26%, rgba(0, 120, 215, 0.4), transparent 60%),
    linear-gradient(135deg, rgba(10, 15, 32, 0.98), rgba(8, 10, 20, 0.92));
  transition: transform 0.9s ease, opacity 0.6s ease;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: -10% 0 0 0;
  background: url('../img/hero-carousel/grid.svg');
  opacity: 0.2;
  mix-blend-mode: screen;
  transition: transform 1s ease;
  will-change: transform;
}

.hero-aurora {
  position: absolute;
  inset: auto 0 -26% 0;
  height: 70%;
  background: radial-gradient(circle at 50% 60%, rgba(0, 120, 215, 0.45), transparent 70%);
  filter: blur(60px);
  opacity: 0.45;
  transition: transform 1.1s ease;
  will-change: transform;
}

.hero-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.65;
  transition: transform 1.2s ease;
  will-change: transform;
}

.hero-orbit-one {
  width: 420px;
  height: 420px;
  top: 16%;
  right: 6%;
  border-color: rgba(0, 120, 215, 0.25);
}

.hero-orbit-two {
  width: 320px;
  height: 320px;
  bottom: 8%;
  left: 6%;
  border-color: rgba(41, 179, 255, 0.18);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.3rem;
  border-radius: 999px;
  background: rgba(0, 120, 215, 0.2);
  color: var(--color-text);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(0, 120, 215, 0.18);
}

.hero-title {
  font-size: clamp(2.8rem, 5vw, 3.9rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 1.6rem 0 1.4rem;
  max-width: 560px;
}

.hero-subtitle {
  color: var(--color-muted);
  font-size: 1.12rem;
  max-width: 540px;
  margin-bottom: 2.2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-actions .btn {
  padding: 0.9rem 2.6rem;
  border-radius: 999px;
  font-weight: 600;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-end));
  border: none;
  box-shadow: var(--shadow-soft);
  color: #ffffff;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(9, 16, 40, 0.55);
}

.btn-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--color-text);
  background: transparent;
  transition: background var(--transition-base), color var(--transition-base), border-color var(--transition-base);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}

.hero-glance {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  max-width: 440px;
}

.glance-item {
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(12, 16, 26, 0.75);
  box-shadow: 0 16px 32px rgba(6, 12, 28, 0.45);
  backdrop-filter: blur(12px);
}

.glance-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.35rem;
}

.glance-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text);
}

.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-carousel {
  position: relative;
  max-width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(12, 16, 26, 0.75);
  backdrop-filter: blur(18px);
  box-shadow: 0 35px 70px rgba(5, 8, 18, 0.6);
  overflow: hidden;
  padding: 2.6rem 2.6rem 3.2rem;
}

.hero-carousel-track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.74, 0.02, 0.19, 0.99);
  will-change: transform;
  max-width: 100%;
}

.hero-slide {
  min-width: 100%;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 2.4rem;
  align-items: center;
  opacity: 0.2;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide-media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: radial-gradient(circle, rgba(0, 120, 215, 0.28), transparent 70%);
  padding: 1.5rem;
  display: grid;
  place-items: center;
}

.hero-slide-media img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.hero-slide-content {
  display: grid;
  gap: 1rem;
}

.hero-slide-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.65);
}

.hero-slide-content h3 {
  font-size: 1.6rem;
  margin: 0;
}

.hero-slide-content p {
  color: var(--color-muted);
  margin: 0;
  font-size: 1rem;
}

.hero-feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.hero-monitoring-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  align-self: flex-start;
  margin-top: 0.6rem;
  padding: 0.55rem 1.35rem;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(130deg, rgba(0, 120, 215, 0.9), rgba(41, 179, 255, 0.75));
  border: 1px solid rgba(0, 120, 215, 0.55);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 16px 28px rgba(6, 20, 45, 0.32);
}

.hero-monitoring-cta i {
  font-size: 0.95rem;
}

.hero-monitoring-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 36px rgba(6, 20, 45, 0.38);
  border-color: rgba(255, 255, 255, 0.45);
}

.hero-monitoring-cta:focus-visible {
  outline: 2px solid rgba(41, 179, 255, 0.85);
  outline-offset: 4px;
}

.hero-feature-list li {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.8rem;
  border-radius: var(--radius-sm);
  background: rgba(0, 120, 215, 0.08);
  border: 1px solid rgba(0, 120, 215, 0.16);
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.82);
}

.hero-feature-list i {
  color: var(--color-accent);
  font-size: 1rem;
}

.hero-carousel-controls {
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.hero-carousel-nav {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 120, 215, 0.12);
  color: var(--color-text);
  display: grid;
  place-items: center;
  transition: transform var(--transition-base), border-color var(--transition-base);
}

.hero-carousel-nav:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 120, 215, 0.45);
}

.hero-carousel-dots {
  display: inline-flex;
  gap: 0.6rem;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  transition: transform var(--transition-base), border-color var(--transition-base), background var(--transition-base);
}

.hero-dot.is-active {
  transform: scale(1.2);
  border-color: rgba(0, 120, 215, 0.8);
  background: rgba(0, 120, 215, 0.6);
}

.hero-dot:focus-visible {
  outline: 2px solid rgba(0, 120, 215, 0.75);
  outline-offset: 3px;
}

body.theme-light .hero-badge {
  background: rgba(0, 120, 215, 0.18);
  color: #0b1b32;
}

body.theme-light .hero-subtitle {
  color: rgba(18, 29, 49, 0.7);
}

body.theme-light .hero-carousel {
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(18, 29, 49, 0.08);
  box-shadow: 0 35px 70px rgba(11, 18, 32, 0.18);
}

body.theme-light .hero {
  color: #0b1b32;
}

body.theme-light .hero-background {
  background: radial-gradient(circle at 16% 22%, rgba(0, 120, 215, 0.2), transparent 58%),
    radial-gradient(circle at 78% 18%, rgba(96, 170, 255, 0.22), transparent 62%),
    linear-gradient(135deg, rgba(243, 248, 255, 0.98), rgba(224, 236, 255, 0.94));
}

body.theme-light .hero-overlay {
  opacity: 0.12;
  mix-blend-mode: normal;
}

body.theme-light .hero-aurora {
  background: radial-gradient(circle at 50% 60%, rgba(0, 120, 215, 0.25), transparent 70%);
  filter: blur(80px);
  opacity: 0.35;
}

body.theme-light .hero-orbit {
  border-color: rgba(18, 29, 49, 0.08);
}

body.theme-light .hero-orbit-one {
  border-color: rgba(11, 99, 213, 0.18);
}

body.theme-light .hero-orbit-two {
  border-color: rgba(41, 179, 255, 0.18);
}

body.theme-light .hero-title {
  color: #0b1b32;
}

body.theme-light .hero-glance {
  color: #0b1b32;
}

body.theme-light .hero-feature-list li {
  background: rgba(0, 120, 215, 0.12);
  border-color: rgba(0, 120, 215, 0.22);
  color: rgba(18, 29, 49, 0.8);
}

body.theme-light .hero-feature-list i {
  color: rgba(20, 95, 190, 0.9);
}

body.theme-light .hero-monitoring-cta {
  background: linear-gradient(130deg, rgba(11, 99, 213, 0.92), rgba(102, 184, 255, 0.78));
  border-color: rgba(11, 99, 213, 0.48);
  box-shadow: 0 18px 34px rgba(12, 42, 85, 0.24);
  color: #ffffff;
}

body.theme-light .hero-monitoring-cta:hover {
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 24px 40px rgba(12, 42, 85, 0.3);
}

body.theme-light .glance-item {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(18, 29, 49, 0.08);
  color: rgba(18, 29, 49, 0.8);
}

body.theme-light .glance-label {
  color: rgba(18, 29, 49, 0.48);
}

body.theme-light .hero-slide-media {
  background: radial-gradient(circle, rgba(0, 120, 215, 0.12), rgba(255, 255, 255, 0.86));
}

body.theme-light .hero-slide-content p {
  color: rgba(33, 38, 51, 0.72);
}

body.theme-light .btn-outline-light {
  border-color: rgba(18, 29, 49, 0.14);
  color: var(--color-accent);
  background: rgba(255, 255, 255, 0.68);
}

body.theme-light .btn-outline-light:hover {
  background: rgba(11, 99, 213, 0.12);
  border-color: rgba(11, 99, 213, 0.35);
  color: rgba(11, 99, 213, 0.95);
}

body.theme-light .solutions {
  background: linear-gradient(180deg, #f6f9ff 0%, #ffffff 55%, #eef4ff 100%);
}

body.theme-light .solution-card {
  border-color: rgba(18, 29, 49, 0.1);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 25px 55px rgba(14, 24, 44, 0.12);
}

body.theme-light .solution-card::before {
  background: radial-gradient(circle, rgba(11, 99, 213, 0.18), transparent 70%);
}

body.theme-light .solution-card p {
  color: rgba(33, 38, 51, 0.7);
}

body.theme-light .solution-card ul li::before {
  color: rgba(11, 99, 213, 0.9);
}

body.theme-light .solution-icon {
  background: rgba(11, 99, 213, 0.15);
  color: rgba(11, 99, 213, 0.95);
}

body.theme-light .brochures {
  background: linear-gradient(180deg, #f6f9ff 0%, #ffffff 55%, #eef4ff 100%);
}

body.theme-light .brochure-thumb {
  background: linear-gradient(135deg, rgba(11, 99, 213, 0.16), rgba(41, 179, 255, 0.1));
}

body.theme-light .brochure-outline {
  border-color: rgba(18, 29, 49, 0.12);
}

body.theme-light .brochure-meta i {
  color: rgba(11, 99, 213, 0.8);
}

body.theme-light .footer {
  background: radial-gradient(circle at top left, rgba(11, 99, 213, 0.16), transparent 55%), #f2f5fb;
}

body.theme-light .footer::before {
  background: radial-gradient(circle, rgba(11, 99, 213, 0.22), transparent 70%);
  opacity: 0.3;
}

body.theme-light .footer-top {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(18, 29, 49, 0.08);
  box-shadow: 0 25px 60px rgba(14, 24, 44, 0.12);
}

body.theme-light .footer-pill {
  background: rgba(11, 99, 213, 0.12);
  color: rgba(11, 99, 213, 0.95);
}

body.theme-light .footer-text,
body.theme-light .footer-links a,
body.theme-light .footer-contact-list {
  color: rgba(33, 38, 51, 0.7);
}

body.theme-light .footer-metric {
  border-color: rgba(18, 29, 49, 0.08);
  background: rgba(255, 255, 255, 0.86);
  color: rgba(33, 38, 51, 0.65);
}

body.theme-light .footer-metric span,
body.theme-light .footer-heading {
  color: rgba(11, 17, 32, 0.92);
}

body.theme-light .footer-links a:hover {
  color: rgba(11, 99, 213, 0.95);
}

body.theme-light .footer-contact-list i,
body.theme-light .footer-links i {
  color: rgba(11, 99, 213, 0.9);
}

body.theme-light .footer-form {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(18, 29, 49, 0.08);
}

body.theme-light .footer-form input {
  color: rgba(11, 17, 32, 0.85);
}

body.theme-light .footer-form input::placeholder {
  color: rgba(33, 38, 51, 0.45);
}

@media (max-width: 1199px) {
  .home-page [data-aos] {
    transform: none !important;
    opacity: 1 !important;
  }

  .hero-carousel {
    padding: 2.4rem 2.2rem 3rem;
  }

  .hero-slide {
    grid-template-columns: 1fr;
  }

  .hero-slide-media {
    order: -1;
  }
}

@media (max-width: 991px) {
  .header-cta {
    display: none;
  }
  .hero {
    padding-top: 7rem;
  }

  .hero-inner {
    min-height: auto;
  }

  .hero-glance {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-carousel {
    padding: 2rem 1.6rem 2.6rem;
  }

  .hero-carousel-controls {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-carousel-dots {
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .hero-title {
    font-size: clamp(2.3rem, 8vw, 3rem);
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-carousel {
    padding: 1.8rem 1.4rem 2.4rem;
  }

  .hero-slide-content h3 {
    font-size: 1.4rem;
  }

  .hero-slide-content p {
    font-size: 0.95rem;
  }
}

.section-anchor {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.hero-showcase {
  min-height: 92svh;
  padding-top: clamp(6.5rem, 9vw, 8.4rem);
  padding-bottom: clamp(2rem, 4vw, 3.8rem);
  color: #f7fbf8;
}

.hero-showcase [data-aos] {
  opacity: 1 !important;
  transform: none !important;
}

.hero-showcase .hero-background {
  inset: 0;
  background:
    linear-gradient(105deg, rgba(4, 14, 12, 0.96) 0%, rgba(8, 20, 17, 0.9) 46%, rgba(18, 17, 11, 0.82) 100%),
    url('../img/hero-fullscreen-bg.jpg') center / cover no-repeat;
}

.hero-showcase .hero-overlay {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(62, 215, 170, 0.12) 0 1px, transparent 1px 100%),
    linear-gradient(0deg, rgba(62, 215, 170, 0.1) 0 1px, transparent 1px 100%);
  background-size: 72px 72px;
  opacity: 0.22;
  mix-blend-mode: screen;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.9), transparent 78%);
}

.hero-showcase .hero-inner {
  min-height: auto !important;
}

.hero-showcase .hero-copy {
  display: grid;
  align-content: center;
  min-width: 0;
}

.hero-showcase .hero-badge {
  width: fit-content;
  border-radius: 8px;
  background: rgba(48, 230, 181, 0.14);
  border: 1px solid rgba(104, 255, 210, 0.24);
  box-shadow: none;
  color: rgba(236, 255, 247, 0.92);
}

.hero-showcase .hero-title {
  max-width: 520px;
  font-size: clamp(2.65rem, 4.7vw, 4.55rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  margin: 1.45rem 0 1.2rem;
  overflow-wrap: break-word;
}

.hero-showcase .hero-title span {
  display: block;
}

.hero-showcase .hero-subtitle {
  max-width: 500px;
  color: rgba(228, 244, 237, 0.78);
  line-height: 1.65;
  margin-bottom: 1.7rem;
}

.hero-showcase .hero-actions .btn,
.hero-showcase .hero-monitoring-cta,
.hero-showcase .hero-carousel-nav {
  border-radius: 8px;
}

.hero-showcase .hero-actions .btn {
  padding: 0.82rem 1.35rem;
}

.hero-showcase .btn-primary,
.hero-showcase .hero-monitoring-cta {
  background: linear-gradient(135deg, #24b87e, #39d6c4);
  color: #04110e;
  box-shadow: 0 18px 38px rgba(4, 20, 15, 0.34);
}

.hero-showcase .btn-outline-light {
  background: rgba(255, 255, 255, 0.06);
}

.hero-showcase .hero-glance {
  gap: 0.8rem;
}

.hero-showcase .glance-item {
  border-radius: 8px;
  background: rgba(9, 18, 16, 0.72);
  border-color: rgba(123, 255, 214, 0.14);
}

.hero-showcase .hero-carousel {
  border-radius: 8px;
  padding: clamp(1rem, 1.6vw, 1.35rem);
  background: rgba(5, 12, 10, 0.78);
  border: 1px solid rgba(178, 255, 230, 0.18);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.48);
}

.hero-showcase .hero-slide {
  grid-template-columns: minmax(0, 1.18fr) minmax(310px, 0.82fr);
  gap: clamp(1rem, 2vw, 1.7rem);
  min-height: clamp(540px, 62svh, 680px);
}

.hero-showcase .hero-slide-media {
  height: 100%;
  min-height: 430px;
  padding: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #101811;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-showcase .hero-slide-media img,
.hero-showcase .hero-slide-video video {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
}

.hero-showcase .hero-slide-video video {
  background: #020605;
}

.hero-showcase .hero-slide-content {
  align-content: center;
  gap: 0.85rem;
  padding: clamp(0.4rem, 1.4vw, 1.2rem);
}

.hero-showcase .hero-slide-kicker {
  color: #76f2cb;
  font-weight: 800;
}

.hero-showcase .hero-slide-content h3 {
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.hero-showcase .hero-slide-content p {
  color: rgba(231, 246, 241, 0.78);
  line-height: 1.65;
}

.hero-showcase .hero-monitoring-cta {
  width: fit-content;
  margin-top: 0.2rem;
  padding: 0.7rem 1rem;
  border-color: rgba(165, 255, 225, 0.28);
  font-size: 0.9rem;
}

.hero-secondary-link {
  width: fit-content;
  color: rgba(223, 255, 245, 0.72);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(118, 242, 203, 0.35);
}

.hero-secondary-link:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.7);
}

.hero-showcase .hero-feature-list {
  grid-template-columns: 1fr;
  gap: 0.5rem;
  margin-top: 0.2rem;
}

.hero-showcase .hero-feature-list li {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(142, 255, 220, 0.13);
}

.hero-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 0.4rem;
}

.hero-proof-grid span {
  border-radius: 8px;
  padding: 0.82rem 0.9rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(142, 255, 220, 0.13);
  color: rgba(232, 250, 244, 0.76);
}

.hero-proof-grid strong {
  display: block;
  color: #76f2cb;
  font-size: 1.3rem;
  line-height: 1;
}

.hero-showcase .hero-carousel-controls {
  margin-top: 1rem;
}

.hero-showcase .hero-carousel-nav {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.07);
}

.hero-showcase .hero-dot {
  width: 28px;
  height: 6px;
  border-radius: 3px;
  border: 0;
  background: rgba(255, 255, 255, 0.22);
}

.hero-showcase .hero-dot.is-active {
  transform: none;
  background: #76f2cb;
}

body.theme-light .hero-showcase {
  color: #10201a;
}

body.theme-light .hero-showcase .hero-background {
  background:
    linear-gradient(105deg, rgba(242, 251, 247, 0.96) 0%, rgba(229, 246, 239, 0.88) 50%, rgba(240, 245, 237, 0.9) 100%),
    url('../img/hero-fullscreen-bg.jpg') center / cover no-repeat;
}

body.theme-light .hero-showcase .hero-badge,
body.theme-light .hero-showcase .hero-subtitle,
body.theme-light .hero-showcase .hero-slide-content p,
body.theme-light .hero-secondary-link {
  color: rgba(19, 38, 31, 0.72);
}

body.theme-light .hero-showcase .hero-carousel,
body.theme-light .hero-showcase .glance-item {
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(20, 103, 77, 0.15);
}

body.theme-light .hero-showcase .hero-feature-list li,
body.theme-light .hero-proof-grid span {
  background: rgba(20, 103, 77, 0.07);
  border-color: rgba(20, 103, 77, 0.12);
  color: rgba(19, 38, 31, 0.78);
}

body.theme-light .hero-showcase .hero-slide-media {
  background: #eef6f1;
}

@media (max-width: 1199px) {
  .hero-showcase .hero-slide {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-showcase .hero-slide-media {
    min-height: 360px;
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 991px) {
  .hero-showcase {
    min-height: auto;
    padding-top: 6.2rem;
  }

  .hero-showcase .hero-title {
    max-width: 760px;
  }

  .hero-showcase .hero-subtitle {
    max-width: 720px;
  }
}

@media (max-width: 767px) {
  .hero-showcase .hero-carousel-controls {
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    align-items: center;
  }

  .hero-showcase .hero-carousel-dots {
    justify-content: center;
  }

  .hero-showcase .hero-proof-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .hero-showcase .hero-inner {
    --bs-gutter-x: 0;
  }

  .hero-showcase .hero-copy,
  .hero-showcase .hero-visual,
  .hero-showcase .hero-actions,
  .hero-showcase .hero-glance {
    max-width: min(340px, calc(100vw - 24px));
    overflow: hidden;
  }

  .hero-showcase .hero-title {
    font-size: clamp(1.92rem, 8.2vw, 2.28rem);
    line-height: 1.04;
    letter-spacing: -0.03em;
  }

  .hero-showcase .hero-subtitle {
    max-width: min(340px, calc(100vw - 24px));
    overflow-wrap: break-word;
  }

  .hero-showcase .hero-carousel {
    padding: 0.75rem;
  }

  .hero-showcase .hero-slide-media {
    min-height: 240px;
  }

  .hero-showcase .hero-slide-content {
    padding: 0.7rem 0.2rem 0.2rem;
  }
}

.hero-single {
  min-height: auto;
  padding-top: clamp(6rem, 8vw, 7.2rem);
  padding-bottom: clamp(1.6rem, 3vw, 2.4rem);
}

.hero-window-wrap {
  width: min(1320px, calc(100vw - 48px));
  margin-inline: auto;
}

.hero-single .hero-window {
  position: relative;
  width: 100%;
  height: clamp(560px, calc(100svh - 158px), 760px);
  min-height: 560px;
  padding: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #050807;
  border: 1px solid rgba(208, 255, 239, 0.18);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.58);
}

.hero-single .hero-carousel-track,
.hero-single .hero-slide {
  height: 100%;
}

.hero-single .hero-slide {
  position: relative;
  display: block;
  min-height: 0;
  gap: 0;
}

.hero-single .hero-slide-media {
  position: absolute;
  inset: 0;
  display: block;
  min-height: 0;
  height: 100%;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: #050807;
}

.hero-single .hero-slide-media img,
.hero-single .hero-slide-video video {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

.hero-single .hero-pdf-preview img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center;
  padding: 0;
}

.hero-pdf-backdrop {
  display: none;
}

.hero-pdf-page {
  z-index: 1;
}

.hero-single .hero-pdf-preview + .hero-slide-shade {
  background:
    linear-gradient(180deg, rgba(3, 6, 5, 0) 0%, rgba(3, 6, 5, 0.02) 55%, rgba(3, 6, 5, 0.54) 100%);
}

.hero-slide-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(3, 6, 5, 0.08) 0%, rgba(3, 6, 5, 0.2) 44%, rgba(3, 6, 5, 0.88) 100%),
    linear-gradient(90deg, rgba(3, 6, 5, 0.28) 0%, transparent 56%);
  pointer-events: none;
}

.hero-slide-caption {
  position: absolute;
  left: clamp(1rem, 3vw, 2.4rem);
  right: clamp(1rem, 3vw, 2.4rem);
  bottom: clamp(5.4rem, 7vw, 6.6rem);
  z-index: 2;
  max-width: 760px;
  color: #ffffff;
  display: grid;
  gap: 0.75rem;
}

.hero-single .hero-slide-kicker {
  width: fit-content;
  padding: 0.42rem 0.62rem;
  border-radius: 8px;
  background: rgba(8, 18, 15, 0.62);
  border: 1px solid rgba(118, 242, 203, 0.28);
  color: #8af7d1;
  backdrop-filter: blur(10px);
}

.hero-slide-caption h1,
.hero-slide-caption h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2.45rem, 5.3vw, 5.35rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
  color: #ffffff;
  text-shadow: 0 16px 34px rgba(0, 0, 0, 0.48);
}

.hero-slide-caption p {
  max-width: 620px;
  margin: 0;
  color: rgba(245, 255, 251, 0.82);
  font-size: clamp(1rem, 1.3vw, 1.14rem);
  line-height: 1.55;
}

.hero-slide-caption-compact {
  max-width: min(720px, calc(100% - 2rem));
}

.hero-slide-caption-compact .hero-caption-actions {
  margin-top: 0;
}

.hero-caption-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.35rem;
}

.hero-single .hero-monitoring-cta,
.hero-single .hero-secondary-link {
  position: relative;
  z-index: 3;
}

.hero-single .hero-monitoring-cta {
  margin: 0;
  padding: 0.72rem 0.95rem;
  border-radius: 8px;
}

.hero-single .hero-secondary-link {
  padding: 0.68rem 0;
  color: rgba(255, 255, 255, 0.82);
}

.hero-watch-video {
  cursor: pointer;
  font-family: inherit;
}

.demo-video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 3vw, 2rem);
  background: rgba(3, 6, 5, 0.84);
  backdrop-filter: blur(14px);
}

.demo-video-modal-panel {
  position: relative;
  width: min(1120px, 100%);
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  background: #020403;
  border: 1px solid rgba(208, 255, 239, 0.22);
  box-shadow: 0 34px 96px rgba(0, 0, 0, 0.62);
}

.demo-video-modal-panel video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #020403;
}

.demo-video-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(5, 10, 8, 0.72);
  color: #ffffff;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.demo-video-modal-close:hover {
  background: rgba(16, 38, 31, 0.84);
}

.hero-single .hero-carousel-controls {
  position: absolute;
  left: clamp(1rem, 3vw, 2.4rem);
  right: clamp(1rem, 3vw, 2.4rem);
  bottom: clamp(1.15rem, 2vw, 1.6rem);
  z-index: 4;
  margin: 0;
}

.hero-single .hero-dot {
  width: 44px;
  height: 6px;
}

body.theme-light .hero-single .hero-window {
  background: #f7fbf8;
  border-color: rgba(20, 103, 77, 0.16);
}

body.theme-light .hero-slide-shade {
  background:
    linear-gradient(180deg, rgba(3, 6, 5, 0.02) 0%, rgba(3, 6, 5, 0.14) 44%, rgba(3, 6, 5, 0.82) 100%),
    linear-gradient(90deg, rgba(3, 6, 5, 0.18) 0%, transparent 56%);
}

body.theme-light .hero-single .hero-carousel-nav {
  color: #ffffff;
  background: rgba(5, 12, 18, 0.46);
  border-color: rgba(255, 255, 255, 0.28);
}

body.theme-light .hero-single .hero-carousel-nav:hover {
  border-color: rgba(255, 255, 255, 0.58);
}

body.theme-light .blog-stream .section-title {
  color: #ffffff;
}

@media (max-width: 991px) {
  .hero-window-wrap {
    width: min(100%, calc(100vw - 28px));
  }

  .hero-single .hero-window {
    height: min(760px, calc(100svh - 126px));
    min-height: 620px;
  }
}

@media (max-width: 575px) {
  .hero-single {
    padding-top: 5.4rem;
    padding-bottom: 1.4rem;
  }

  .hero-window-wrap {
    width: calc(100vw - 22px);
  }

  .hero-single .hero-window {
    height: min(650px, calc(100svh - 112px));
    min-height: 500px;
  }

  .hero-single .hero-pdf-preview {
    background: #050807;
  }

  .hero-single .hero-pdf-preview .hero-pdf-backdrop {
    display: block;
    z-index: 0;
    object-fit: cover;
    transform: scale(1.08);
    filter: blur(14px);
    opacity: 0.72;
  }

  .hero-single .hero-pdf-preview .hero-pdf-page {
    object-fit: contain;
    z-index: 1;
  }

  .hero-slide-caption {
    left: 0.9rem;
    right: auto;
    bottom: 4.8rem;
    width: min(318px, calc(100% - 1.8rem));
    max-width: min(318px, calc(100% - 1.8rem));
  }

  .hero-slide-caption h1,
  .hero-slide-caption h2 {
    font-size: clamp(1.85rem, 8vw, 2.18rem);
    line-height: 1;
    letter-spacing: -0.04em;
    overflow-wrap: break-word;
  }

  .hero-slide-caption p {
    max-width: min(306px, 100%);
    font-size: 0.95rem;
  }

  .hero-caption-actions {
    align-items: stretch;
    max-width: min(306px, 100%);
  }

  .hero-single .hero-monitoring-cta {
    width: 100%;
    justify-content: center;
  }

  .hero-single .hero-carousel-controls {
    left: 0.9rem;
    right: 0.9rem;
    grid-template-columns: 40px 1fr 40px;
  }

  .hero-single .hero-carousel-nav {
    width: 40px;
    height: 40px;
  }

  .hero-single .hero-dot {
    width: 28px;
  }
}

.about-content {
  padding: clamp(2rem, 3vw, 2.8rem);
  background: linear-gradient(160deg, rgba(12, 18, 40, 0.92), rgba(5, 11, 24, 0.9));
  border-radius: var(--radius-xl, 28px);
  border: 1px solid rgba(0, 120, 215, 0.15);
  box-shadow: 0 32px 64px rgba(3, 10, 26, 0.4);
  display: grid;
  gap: 1.8rem;
  height: 100%;
}

.about-content .section-text {
  margin-bottom: 0;
}

.about-metrics {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.about-metric {
  padding: 1rem 1.2rem;
  border-radius: var(--radius-md);
  background: rgba(12, 26, 48, 0.85);
  border: 1px solid rgba(0, 120, 215, 0.18);
  box-shadow: inset 0 0 0 1px rgba(83, 227, 194, 0.08);
  display: grid;
  gap: 0.35rem;
}

.about-metric-value {
  font-size: 1.6rem;
  font-weight: 700;
  color: #f7fbff;
}

.about-metric-label {
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(213, 230, 255, 0.7);
}

.about-highlights {
  margin-top: 0.6rem;
  display: grid;
  gap: 1.2rem;
}

.about-highlights-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.about-highlights .highlight {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 1.4rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 120, 215, 0.16);
  background: rgba(14, 31, 52, 0.9);
  transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}

.about-highlights .highlight:hover {
  transform: translateY(-6px);
  border-color: rgba(83, 227, 194, 0.45);
  box-shadow: 0 18px 40px rgba(15, 60, 110, 0.3);
}

.highlight-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(83, 227, 194, 0.2);
  color: #53e3c2;
  flex-shrink: 0;
}

.highlight-icon i {
  font-size: 1.5rem;
}

.highlight-body h5 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  color: #f1f6ff;
}

.highlight-body p {
  margin: 0;
  color: rgba(213, 230, 255, 0.72);
  line-height: 1.6;
}

@media (max-width: 991px) {
  .about-content {
    margin-top: 2rem;
  }
}

.solutions {
  background: linear-gradient(180deg, rgba(11, 13, 19, 0.92) 0%, rgba(11, 13, 19, 0.75) 60%, rgba(11, 13, 19, 0.92) 100%);
}

.solution-card {
  height: 100%;
  padding: 2.2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-base), border-color var(--transition-base);
}

.solution-card::before {
  content: "";
  position: absolute;
  inset: -20% -20% auto auto;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(0, 120, 215, 0.22), transparent 70%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.solution-card:hover {
  transform: translateY(-12px);
  border-color: rgba(0, 120, 215, 0.45);
}

.solution-card:hover::before {
  opacity: 1;
}

.solution-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: rgba(0, 120, 215, 0.18);
  color: var(--color-accent);
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
}

.solution-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.solution-card p {
  color: var(--color-muted);
  margin-bottom: 1.3rem;
}

.solution-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  gap: 0.55rem;
}

.solution-card ul li::before {
  content: "▹";
  color: var(--color-accent);
  margin-right: 0.5rem;
}

.solution-link {
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--color-accent);
}

.brands {
  background: radial-gradient(circle at top right, rgba(0, 120, 215, 0.22), transparent 60%);
  padding-bottom: 5rem;
}

.brands-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(11, 13, 19, 0.92), rgba(11, 13, 19, 0.75));
  padding: 3.2rem 1.5rem 1.85rem 1.5rem;
  margin-bottom: 2.2rem;
}

.brand-label {
  position: absolute;
  top: 18px;
  left: 22px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: rgba(255, 255, 255, 0.55);
  z-index: 2;
}

.brands-track {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  animation: marquee 28s linear infinite;
  will-change: transform;
}

.brands-band-reverse .brands-track {
  animation-direction: reverse;
}

.brand-card {
  flex: 0 0 auto;
  min-width: 140px;
  display: grid;
  place-items: center;
  padding: 0.85rem 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
  transition: transform var(--transition-base), border-color var(--transition-base);
}

.brand-card img {
  max-height: 42px;
  width: auto;
  filter: grayscale(10%);
  opacity: 0.92;
}

.brand-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 120, 215, 0.45);
}

.brands-note {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.8rem;
  padding: 1.2rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-muted);
}

.brands-note i {
  color: var(--color-accent);
  font-size: 1.4rem;
}

.brochures {
  background: linear-gradient(180deg, rgba(11, 13, 19, 0.92) 0%, rgba(11, 13, 19, 0.75) 60%, rgba(11, 13, 19, 0.92) 100%);
 }

.brochure-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.6rem;
 }

.brochure-grid-home {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.brochure-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--color-surface);
  box-shadow: 0 20px 45px rgba(5, 10, 30, 0.45);
  overflow: hidden;
  transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}

.brochure-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 120, 215, 0.5);
  box-shadow: 0 28px 60px rgba(5, 12, 32, 0.6);
}

.brochure-thumb {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem;
  background: linear-gradient(135deg, rgba(0, 120, 215, 0.18), rgba(255, 255, 255, 0.06));
}

.brochure-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  background: rgba(255, 255, 255, 0.96);
  border-radius: calc(var(--radius-md) - 2px);
  transition: transform 0.6s ease;
}

.brochure-card:hover .brochure-thumb img {
  transform: scale(1.06);
}

.home-order-chip {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #eff9ff;
  background: rgba(0, 84, 148, 0.84);
  border: 1px solid rgba(133, 216, 255, 0.38);
  box-shadow: 0 8px 18px rgba(3, 10, 26, 0.38);
}

.brochure-outline {
  position: absolute;
  inset: 12px;
  border-radius: var(--radius-md);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.brochure-card:hover .brochure-outline {
  opacity: 0.4;
}

.brochure-content {
  padding: 1.4rem 1.5rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.brochure-tag {
  align-self: flex-start;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(0, 120, 215, 0.18);
  color: var(--color-text);
}

.brochure-content h3 {
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.35;
  margin: 0;
}

.brochure-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

.brochure-meta i {
  color: var(--color-accent);
}

body.theme-light .brochure-card {
  border-color: rgba(18, 29, 49, 0.12);
  box-shadow: 0 18px 40px rgba(10, 25, 60, 0.18);
}

body.theme-light .brochure-card:hover {
  border-color: rgba(0, 120, 215, 0.35);
  box-shadow: 0 25px 60px rgba(15, 30, 60, 0.22);
}

body.theme-light .brochure-tag {
  background: rgba(0, 120, 215, 0.12);
  color: rgba(18, 29, 49, 0.85);
}

body.theme-light .brochure-meta {
  color: rgba(18, 29, 49, 0.6);
}

body.theme-light .home-order-chip {
  color: #0f3a5a;
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(15, 77, 122, 0.35);
}

.blog-stream {
  background:
    radial-gradient(1000px 420px at 100% 0%, rgba(0, 174, 255, 0.15), transparent 62%),
    radial-gradient(900px 420px at 0% 0%, rgba(77, 255, 176, 0.09), transparent 54%),
    linear-gradient(180deg, rgba(5, 13, 24, 0.92), rgba(8, 21, 34, 0.92));
}

.home-blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.home-blog-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 250px;
  border: 1px solid rgba(121, 194, 255, 0.22);
  box-shadow: 0 24px 65px rgba(3, 11, 22, 0.5);
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.home-blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(115, 237, 203, 0.58);
  box-shadow: 0 32px 75px rgba(4, 15, 29, 0.58);
}

.home-blog-card.is-hero {
  grid-row: span 2;
}

.home-blog-media,
.home-blog-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
}

.home-blog-media img {
  display: block;
  object-fit: cover;
}

.home-blog-content {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.1rem 1.2rem 1.15rem;
  background:
    linear-gradient(180deg, rgba(4, 14, 28, 0) 0%, rgba(4, 14, 28, 0.94) 54%, rgba(4, 14, 28, 0.98) 100%);
}

.home-blog-kicker {
  display: inline-flex;
  margin-bottom: 0.58rem;
  font-size: 0.72rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #c8ecff;
  border-radius: 999px;
  border: 1px solid rgba(126, 239, 205, 0.5);
  background: rgba(24, 117, 96, 0.55);
  padding: 0.28rem 0.62rem;
}

.home-blog-content h3 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.3;
}

.home-blog-card.is-hero .home-blog-content h3 {
  font-size: 1.38rem;
}

.home-blog-content p {
  margin: 0.55rem 0 0;
  color: rgba(214, 234, 249, 0.84);
  font-size: 0.92rem;
  line-height: 1.55;
}

.home-blog-card.is-hero .home-blog-content p {
  font-size: 0.98rem;
  line-height: 1.68;
}

.home-blog-meta {
  margin-top: 0.7rem;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: rgba(174, 217, 243, 0.9);
}

.home-blog-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.34rem;
}

.home-blog-read {
  margin-top: 0.72rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #93edff;
}

.home-blog-footer {
  margin-top: 1.3rem;
  display: flex;
  justify-content: center;
}

.home-blog-browse {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  color: #8de9ff;
  padding: 0.62rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(126, 239, 205, 0.4);
  background: rgba(10, 36, 55, 0.72);
}

.home-blog-browse:hover {
  color: #d6fbff;
}

.blog-empty-state {
  border-radius: var(--radius-lg);
  border: 1px dashed rgba(121, 194, 255, 0.28);
  background: rgba(9, 25, 39, 0.72);
  color: rgba(184, 223, 247, 0.82);
  text-align: center;
  padding: 2rem 1.4rem;
}

body.theme-light .blog-empty-state {
  border-color: rgba(16, 44, 78, 0.2);
  background: rgba(255, 255, 255, 0.7);
  color: rgba(20, 43, 69, 0.78);
}

body.theme-light .home-blog-card {
  border-color: rgba(16, 44, 78, 0.16);
  box-shadow: 0 22px 54px rgba(14, 40, 64, 0.2);
}

body.theme-light .home-blog-content {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(14, 35, 55, 0.88) 58%, rgba(14, 35, 55, 0.95) 100%);
}

body.theme-light .home-blog-content h3,
body.theme-light .home-blog-content p,
body.theme-light .home-blog-meta,
body.theme-light .home-blog-kicker {
  color: #eef8ff;
}

body.theme-light .home-blog-browse {
  color: #0f6da9;
  border-color: rgba(16, 44, 78, 0.2);
  background: rgba(255, 255, 255, 0.82);
}

@media (max-width: 991px) {
  .brochure-grid {
    gap: 1.2rem;
  }

  .brochure-grid-home {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-blog-grid {
    grid-template-columns: 1fr;
  }

  .home-blog-card,
  .home-blog-card.is-hero {
    min-height: 255px;
    grid-row: auto;
  }
}

@media (max-width: 575px) {
  .brochure-grid-home {
    grid-template-columns: 1fr;
  }

  .brochure-content {
    padding: 1.2rem 1.25rem 1.4rem;
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.experience {
  position: relative;
  padding-bottom: 6rem;
}

.experience-highlights {
  margin-top: 2.2rem;
  display: grid;
  gap: 1rem;
}

.experience-highlights > div {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-muted);
}

.experience-highlights i {
  font-size: 1.4rem;
  color: var(--color-accent);
}

.experience-player {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 60px rgba(5, 10, 30, 0.6);
  background: radial-gradient(circle at center, rgba(0, 120, 215, 0.2), rgba(7, 9, 16, 0.95));
}

.experience-player video {
  width: 100%;
  display: block;
  border-radius: inherit;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.5rem;
  pointer-events: none;
}

.player-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1.3rem;
  border-radius: 999px;
  background: rgba(0, 120, 215, 0.22);
  color: #fff;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
}

.player-sound {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  border: none;
  background: rgba(7, 9, 16, 0.75);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  transition: transform var(--transition-base), background var(--transition-base);
}

.player-sound:hover {
  transform: translateY(-4px);
  background: rgba(0, 120, 215, 0.35);
}

.experience-player::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 9, 16, 0.0) 40%, rgba(7, 9, 16, 0.25) 100%);
  pointer-events: none;
}

.experience-player video::-webkit-media-controls {
  filter: invert(0%);
}

.ecosystem {
  padding-bottom: 8rem;
}

.ecosystem-layout {
  margin-inline: 0;
}

.ecosystem-layout > * {
  min-width: 0;
}

.ecosystem-points {
  display: grid;
  gap: 1.4rem;
  margin-top: 2rem;
}

.ecosystem-points > div {
  display: flex;
  gap: 1rem;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  padding: 1.3rem 1.5rem;
}

.ecosystem-points i {
  font-size: 1.6rem;
  color: var(--color-accent);
}

.ecosystem-map {
  position: relative;
  height: 100%;
  min-height: 420px;
  border-radius: var(--radius-lg);
  background: linear-gradient(140deg, rgba(0, 120, 215, 0.18), rgba(11, 13, 19, 0.8));
  border: 1px solid rgba(0, 120, 215, 0.15);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.map-core {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1.5rem;
  background: rgba(11, 13, 19, 0.9);
  border-radius: 50%;
  border: 1px solid rgba(0, 120, 215, 0.3);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.45);
  font-weight: 600;
}

.map-node {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(11, 13, 19, 0.82);
  border: 1px solid rgba(0, 120, 215, 0.3);
  display: grid;
  place-items: center;
  text-align: center;
  gap: 0.35rem;
  color: var(--color-muted);
  font-size: 0.95rem;
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.35);
}

.map-node i {
  font-size: 1.5rem;
  color: var(--color-accent);
}

.node-one {
  top: 12%;
  left: 50%;
  transform: translateX(-50%);
}

.node-two {
  top: 50%;
  right: 8%;
  transform: translateY(-50%);
}

.node-three {
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
}

.node-four {
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
}

.map-links {
  position: absolute;
  inset: 0;
  fill: none;
  stroke: rgba(0, 120, 215, 0.22);
  stroke-width: 2;
}

.map-links .orbit {
  stroke-dasharray: 6 10;
}

.stats {
  background: radial-gradient(circle at top, rgba(0, 120, 215, 0.18), transparent 60%);
}

.stat-card {
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  padding: 2rem 1.2rem;
  background: var(--color-surface);
  box-shadow: var(--shadow-soft);
}

.stat-value {
  font-size: 2.4rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.35rem;
}

.contact-info {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  padding: 2.4rem;
  display: grid;
  gap: 1.6rem;
  box-shadow: var(--shadow-card);
}

.info-item {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}

.info-item i {
  font-size: 1.7rem;
  color: var(--color-accent);
}

.info-item-link {
  text-decoration: none;
  color: inherit;
  padding: 0.45rem 0.6rem;
  margin: -0.45rem -0.6rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition-base), transform var(--transition-base), color var(--transition-base), box-shadow var(--transition-base);
}

.info-item-link:hover {
  background: rgba(0, 120, 215, 0.12);
  color: var(--color-text);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 120, 215, 0.18);
}

.info-item-link:focus-visible {
  background: rgba(0, 120, 215, 0.18);
  color: var(--color-text);
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 120, 215, 0.35);
}

.social-links {
  display: flex;
  gap: 0.8rem;
}

.social-links a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-text);
  transition: transform var(--transition-base), border-color var(--transition-base);
}

.social-links a:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 120, 215, 0.65);
}

.contact-form {
  padding: 2.4rem;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}

.contact-form .form-control,
.contact-form textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--color-text);
  border-radius: var(--radius-sm);
  padding: 0.85rem;
}

body.theme-light .contact-form .form-control,
body.theme-light .contact-form textarea {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(22, 30, 46, 0.08);
}

.contact-form .form-label {
  font-weight: 600;
  color: var(--color-text);
}

.footer {
  background: radial-gradient(circle at top left, rgba(0, 120, 215, 0.2), transparent 55%), #070910;
  padding: 5rem 0 2.5rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  inset: -40% -40% auto auto;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(0, 120, 215, 0.18), transparent 70%);
  opacity: 0.4;
  filter: blur(0px);
}

.footer-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  padding: 2.4rem 2.8rem;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  margin-bottom: 3.2rem;
  flex-wrap: wrap;
}

.footer-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1.2rem;
  border-radius: 999px;
  background: rgba(0, 120, 215, 0.18);
  color: var(--color-accent);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.footer-headline {
  margin: 0;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-weight: 600;
  max-width: 720px;
}

.footer-cta {
  white-space: nowrap;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2.5rem;
  margin-bottom: 2.8rem;
}

.footer-column {
  position: relative;
}

.footer-logo {
  gap: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}

.footer-text {
  color: var(--color-muted);
  margin-bottom: 1.5rem;
}

.footer-metrics {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-metric {
  flex: 1 1 150px;
  padding: 1rem 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-muted);
}

.footer-metric span {
  display: block;
  color: var(--color-text);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.footer-heading {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-text);
  margin-bottom: 1.2rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--color-muted);
  transition: color var(--transition-base), transform var(--transition-base);
}

.footer-links a:hover {
  color: var(--color-text);
  transform: translateX(6px);
}

.footer-links i {
  color: var(--color-accent);
}

.footer-contact-list {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: grid;
  gap: 0.75rem;
  color: var(--color-muted);
}

.footer-contact-list i {
  color: var(--color-accent);
  margin-right: 0.6rem;
}

.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: inherit;
  text-decoration: none;
  padding: 0.35rem 0.5rem;
  margin: -0.35rem -0.5rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
}

.footer-contact-link:hover {
  color: var(--color-text);
  transform: translateX(6px);
  box-shadow: 0 0 0 3px rgba(0, 120, 215, 0.18);
}

.footer-contact-link:focus-visible {
  color: var(--color-text);
  outline: none;
  transform: translateX(6px);
  box-shadow: 0 0 0 3px rgba(0, 120, 215, 0.3);
}

.footer-contact-link i {
  margin-right: 0;
}

.footer-form {
  margin-top: 1rem;
  display: flex;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 0.4rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-form input {
  flex: 1;
  border: none;
  background: transparent;
  color: var(--color-text);
  padding: 0.65rem 0.85rem;
}

.footer-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footer-form button {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  border: none;
  background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-end));
  color: #fff;
  display: grid;
  place-items: center;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.6rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 1.6rem;
  color: var(--color-muted);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--color-muted);
}

.footer-legal {
  display: flex;
  gap: 1.2rem;
}

.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-end));
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.2rem;
  box-shadow: var(--shadow-card);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-base), transform var(--transition-base);
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(-10px);
}

@media (max-width: 1199px) {
  .navmenu {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    padding: 7rem 2rem 3rem;
    flex-direction: column;
    justify-content: flex-start;
    background: rgba(11, 13, 19, 0.97);
    backdrop-filter: blur(18px);
    transform: translateY(-120%);
    transition: transform var(--transition-base);
  }

  .navmenu.open {
    transform: translateY(0);
  }

  .nav-list {
    flex-direction: column;
    gap: 1.5rem;
    font-size: 1.3rem;
  }

  .mobile-nav-toggle {
    display: inline-flex;
  }

  .theme-toggle {
    margin-left: 1rem;
  }

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

  .brands-track {
    gap: 2.5rem;
  }
}

@media (max-width: 991px) {
  .header {
    padding: 0.85rem 0;
  }

  .header .container-xl {
    justify-content: flex-start !important;
  }

  .theme-toggle {
    margin-left: auto;
  }

  .logo {
    max-width: calc(100vw - 128px);
  }

  .section {
    padding: 4.5rem 0;
  }

  .hero {
    padding-top: 6rem;
  }

  .hero .container-xl,
  .header .container-xl,
  .footer .container-xl {
    max-width: 100%;
  }

  .hero-title,
  .hero-subtitle,
  .section-title,
  .section-text,
  .footer-headline {
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: none;
  }

  .about-media {
    margin-inline: auto;
    max-width: 460px;
  }

  .ecosystem-map {
    margin-inline: auto;
    max-width: 520px;
    width: 100%;
  }

  .contact-form,
  .contact-info {
    padding: 2rem;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-cta {
    width: 100%;
    text-align: center;
    white-space: normal;
  }

  .brand-card {
    min-width: 120px;
    padding: 0.75rem 1.2rem;
  }
}

@media (max-width: 575px) {
  .header .container-xl {
    gap: 0.6rem;
  }

  .logo {
    gap: 0.65rem;
    padding: 0.38rem 0.72rem 0.38rem 0.45rem;
    border-radius: 18px;
  }

  .logo-mark {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .logo-img {
    width: 38px;
  }

  .logo-title {
    font-size: 0.8rem;
  }

  .logo-subtitle {
    font-size: 0.62rem;
    letter-spacing: 0.22em;
  }

  .theme-toggle {
    width: 42px;
    height: 42px;
    margin-left: auto;
  }

  .mobile-nav-toggle {
    width: 42px;
    height: 42px;
    font-size: 1.6rem;
    padding: 0.35rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-actions {
    display: grid;
    gap: 1rem;
  }

  .hero-actions .btn {
    width: 100%;
    padding: 0.88rem 1.2rem;
  }

  .hero-title {
    max-width: 100%;
    font-size: 2.35rem;
  }

  .hero-carousel {
    border-radius: 18px;
  }

  .hero-slide-media {
    padding: 1rem;
    border-radius: 16px;
  }

  .hero-slide-kicker {
    width: 100%;
    white-space: normal;
  }

  .solution-card {
    padding: 2rem;
  }

  .map-node {
    width: 100px;
    height: 100px;
  }

  .map-core {
    width: 160px;
    height: 160px;
  }

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

  .footer-top,
  .contact-form,
  .contact-info {
    padding: 1.45rem;
  }

  .footer-legal {
    flex-wrap: wrap;
  }

  .footer-form {
    flex-direction: column;
  }

  .footer-form button {
    width: 100%;
  }

  .footer-social {
    flex-direction: column;
    align-items: flex-start;
  }

  .brands-track {
    gap: 1.8rem;
    animation-duration: 22s;
  }

  .brand-card img {
    max-height: 32px;
  }

  .player-overlay {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

  .player-sound {
    width: auto;
  }
}
