@font-face {
  font-family: "Bebas Neue";
  src: url("fonts/BebasNeue%20Book.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-ExtraBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

@view-transition {
  navigation: auto;
}

::view-transition-old(root) {
  animation: 180ms ease-in both page-fade-out;
}

::view-transition-new(root) {
  animation: 320ms ease-out both page-fade-in;
}

@keyframes page-fade-out {
  to {
    opacity: 0;
    transform: scale(0.995);
  }
}

@keyframes page-fade-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
}

:root {
  --bg: #050505;
  --bg-soft: #0c0f16;
  --text: #f5f5f5;
  --muted: #b8b8b8;
  --blue: #0a1e6d;
  --blue-light: #1f64ff;
  --border: rgba(255, 255, 255, 0.12);
  --card: rgba(255, 255, 255, 0.045);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --radius: 22px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(16, 70, 220, 0.2), transparent 35%),
    radial-gradient(circle at bottom left, rgba(31, 100, 255, 0.12), transparent 30%),
    var(--bg);
}

html.page-transition-fallback body {
  animation: fallback-page-in 280ms ease-out both;
  transition: opacity 170ms ease, transform 170ms ease;
}

html.page-transition-fallback.page-leaving body {
  opacity: 0;
  transform: translateY(-5px);
}

@keyframes fallback-page-in {
  from {
    opacity: 0;
    transform: translateY(7px);
  }
}

h1,
h2,
h3,
h4,
h5,
h6,
.eyebrow,
.quick-link strong {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 2px;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.page {
  min-height: 100vh;
  overflow: hidden;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(
    100deg,
    rgba(12, 14, 20, 0.99) 0%,
    rgba(7, 9, 14, 0.99) 48%,
    rgba(3, 4, 7, 0.99) 100%
  );
  box-shadow:
    0 10px 32px rgba(0, 0, 0, 0.22),
    inset 0 -1px 0 rgba(31, 100, 255, 0.08);
  backdrop-filter: blur(16px);
}

.navbar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 104px;
  gap: 30px;
}

.brand-area {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 0 6px;
  transform: translateX(-50%);
}

.logo {
  position: relative;
  z-index: 1;
}

.logo img {
  display: block;
  width: 100px;
  height: auto;
  filter: drop-shadow(0 7px 16px rgba(13, 55, 138, 0.2));
  transition: filter 0.3s ease, transform 0.3s ease;
}

.logo:hover img {
  filter: brightness(1.05) drop-shadow(0 9px 20px rgba(31, 100, 255, 0.32));
  transform: translateY(-1px);
}

nav ul,
.footer-nav {
  display: flex;
  align-items: center;
  list-style: none;
}

nav ul {
  gap: 30px;
}

@media (min-width: 921px) {
  #mainNav {
    width: 100%;
  }

  #mainNav > ul {
    width: 100%;
  }

  #mainNav > ul > li:nth-child(2) {
    margin-right: auto;
  }

  #mainNav > ul > li:nth-child(3) {
    margin-left: auto;
  }
}

nav a {
  color: var(--muted);
  font-size: 15px;
  letter-spacing: 0.04em;
  transition: color 0.25s ease;
}

nav a:hover,
nav a.active {
  color: var(--text);
}

#mainNav > ul > li > a,
#mainNav > ul > li > .nav-dropdown__trigger > a {
  position: relative;
  display: inline-block;
  padding: 8px 3px;
  transition: color 0.25s ease, text-shadow 0.25s ease, transform 0.25s ease;
}

#mainNav > ul > li > a::after,
#mainNav > ul > li > .nav-dropdown__trigger > a::after {
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  content: "";
  opacity: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #1f64ff, #66a0ff);
  box-shadow: 0 0 10px rgba(31, 100, 255, 0.55);
  transform: translateX(-50%);
  transition: width 0.25s ease, opacity 0.25s ease;
}

#mainNav > ul > li > a:hover,
#mainNav > ul > li > a:focus-visible,
#mainNav > ul > li > .nav-dropdown__trigger > a:hover,
#mainNav > ul > li > .nav-dropdown__trigger > a:focus-visible {
  color: white;
  text-shadow: 0 0 14px rgba(102, 160, 255, 0.35);
  transform: translateY(-1px);
}

#mainNav > ul > li > a:hover::after,
#mainNav > ul > li > a:focus-visible::after,
#mainNav > ul > li > a.active::after,
#mainNav > ul > li > .nav-dropdown__trigger > a:hover::after,
#mainNav > ul > li > .nav-dropdown__trigger > a:focus-visible::after,
#mainNav > ul > li > .nav-dropdown__trigger > a.active::after {
  width: 100%;
  opacity: 1;
}

#mainNav > ul > li > a:focus-visible,
#mainNav > ul > li > .nav-dropdown__trigger > a:focus-visible {
  outline: 2px solid rgba(102, 160, 255, 0.55);
  outline-offset: 4px;
  border-radius: 4px;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown__trigger {
  display: flex;
  align-items: center;
  gap: 0;
}

.dropdown-toggle {
  display: grid;
  width: 16px;
  height: 20px;
  padding: 0;
  place-items: center;
  cursor: pointer;
  color: var(--muted);
  font-size: 14px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.nav-dropdown:hover .dropdown-toggle,
.nav-dropdown:focus-within .dropdown-toggle,
.nav-dropdown.open .dropdown-toggle {
  color: white;
  background: rgba(31, 100, 255, 0.12);
  transform: rotate(180deg);
}

nav .dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  z-index: 60;
  display: grid;
  width: 160px;
  padding: 9px;
  pointer-events: none;
  opacity: 0;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(8, 10, 16, 0.97);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(16px);
  transform: translate(-50%, -7px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  visibility: hidden;
  gap: 3px;
}

nav .dropdown-menu::before {
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 15px;
  content: "";
}

nav .dropdown-menu a {
  display: block;
  padding: 10px 12px;
  color: #c8c8c8;
  font-size: 13px;
  border-radius: 9px;
}

nav .dropdown-menu a:hover,
nav .dropdown-menu a:focus-visible {
  color: white;
  background: rgba(31, 100, 255, 0.16);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
  pointer-events: auto;
  opacity: 1;
  transform: translate(-50%, 0);
  visibility: visible;
}

.nav-actions {
  display: none;
}

.menu-btn {
  width: 44px;
  height: 44px;
  cursor: pointer;
  color: var(--text);
  font-size: 24px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: transparent;
}

.hero {
  padding: 96px 0 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  align-items: center;
  gap: 58px;
}

.eyebrow {
  margin-bottom: 30px;
  color: white;
  font-size: clamp(42px, 6vw, 82px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 2px;
}

.eyebrow span {
  display: block;
}

.hash {
  margin-bottom: 8px;
  color: var(--blue-light);
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(42px, 7vw, 84px);
  line-height: 0.95;
  letter-spacing: 2px;
}

.headline {
  max-width: 780px;
  margin-bottom: 36px;
  color: white;
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 800;
  line-height: 1.12;
}

.hero-card,
.content-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
}

.hero-card p,
.content-card p {
  margin-bottom: 18px;
  color: #d5d5d5;
  font-size: 18px;
}

.hero-card p:last-of-type,
.content-card p:last-child {
  margin-bottom: 0;
}

.hero-card .btn {
  margin-top: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  color: white;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  box-shadow: 0 12px 30px rgba(31, 100, 255, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(31, 100, 255, 0.36);
}

.image-wrap {
  position: relative;
}

.image-wrap::before {
  position: absolute;
  top: 12%;
  left: 12%;
  z-index: 0;
  width: 78%;
  height: 78%;
  content: "";
  border-radius: 50%;
  background: rgba(31, 100, 255, 0.28);
  filter: blur(80px);
}

.hero-image {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.hero-image img {
  width: 100%;
  min-height: 480px;
  object-fit: cover;
}

.quick-links {
  padding: 0 0 82px;
}

.quick-grid,
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.quick-link,
.info-card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--card);
  transition: 0.25s ease;
}

.quick-link:hover {
  transform: translateY(-3px);
  border-color: rgba(31, 100, 255, 0.45);
  background: rgba(31, 100, 255, 0.12);
}

.quick-link small,
.page-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-light);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quick-link strong,
.info-card h2 {
  font-size: 22px;
}

.subpage-main {
  min-height: 55vh;
  padding: 88px 0;
}

.page-heading {
  max-width: 850px;
  margin-bottom: 44px;
}

.page-heading h1 {
  margin-bottom: 20px;
}

.page-heading p {
  max-width: 720px;
  color: var(--muted);
  font-size: 20px;
}

.page-heading .product-page-intro {
  font-size: 17px;
}

.standard-text-page .page-heading p,
.standard-text-page .content-card p {
  font-size: 17px;
}

.content-stack {
  display: grid;
  gap: 22px;
}

.content-card h2 {
  margin-bottom: 14px;
  font-size: clamp(24px, 3vw, 34px);
}

.legal-text-page .content-stack {
  gap: 18px;
}

.legal-card {
  padding-right: clamp(24px, 6vw, 72px);
}

.legal-card h2 {
  position: relative;
  margin-bottom: 22px;
  padding-bottom: 16px;
  color: white;
  font-size: clamp(25px, 2.4vw, 32px);
  line-height: 1.18;
}

.legal-card h2::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 72px;
  height: 2px;
  content: "";
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue-light), rgba(31, 100, 255, 0));
}

.legal-card h3 {
  margin: 24px 0 10px;
  color: white;
  font-size: 19px;
}

.legal-list {
  display: grid;
  gap: 9px;
  margin: 0 0 18px;
  padding-left: 22px;
  color: #d5d5d5;
  font-size: 17px;
  line-height: 1.7;
}

.legal-list--columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 34px;
}

.legal-address {
  display: grid;
  gap: 7px;
  margin: 14px 0 20px;
  padding: 18px;
  color: #d5d5d5;
  font-style: normal;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.legal-address strong {
  color: white;
}

.legal-address a,
.legal-card a {
  width: fit-content;
  color: #a9bcff;
  font-weight: 700;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.legal-address a:hover,
.legal-card a:hover {
  color: white;
  text-shadow: 0 0 14px rgba(102, 160, 255, 0.35);
}

.legal-rights-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0;
}

.legal-rights-grid section {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
}

.legal-rights-grid h3 {
  margin-top: 0;
}

.info-card h2 {
  margin-bottom: 10px;
}

.info-card p {
  color: var(--muted);
}

.about-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 50px;
  overflow: hidden;
  padding: 50px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background:
    radial-gradient(circle at 18% 22%, rgba(31, 100, 255, 0.17), transparent 38%),
    linear-gradient(145deg, #141925, #090b11);
  box-shadow: var(--shadow);
}

.about-panel::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.55;
  background: linear-gradient(135deg, rgba(31, 100, 255, 0.16), transparent 46%);
}

.about-panel > * {
  position: relative;
  z-index: 1;
}

.about-heading {
  align-self: center;
}

.about-heading small {
  display: block;
  margin-bottom: 18px;
  color: var(--blue-light);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.about-heading h1 {
  max-width: 560px;
  margin: 0;
  color: white;
  font-size: clamp(30px, 3.1vw, 44px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 2px;
}

.about-copy p {
  margin-bottom: 18px;
  color: #d5d5d5;
  font-size: 17px;
  text-align: justify;
  hyphens: auto;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.product-grid {
  align-items: stretch;
  gap: 24px;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 26px;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025) 48%),
    rgba(9, 12, 20, 0.86);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  scroll-margin-top: 125px;
}

.product-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(31, 100, 255, 0.48);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.54), 0 0 42px rgba(31, 100, 255, 0.1);
}

.product-card__link {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
}

.product-card__link:focus-visible {
  outline: 3px solid var(--blue-light);
  outline-offset: -5px;
}

.product-card__header {
  position: static;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: auto;
  padding: 28px 28px 18px;
  text-align: left;
  border: 0;
  background: transparent;
  backdrop-filter: none;
}

.product-card__header h2 {
  color: white;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1;
  letter-spacing: 2px;
}

.product-card__image {
  position: relative;
  width: calc(100% - 56px);
  aspect-ratio: 1;
  margin: 0 auto 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 44%, rgba(255, 255, 255, 0.13), rgba(31, 100, 255, 0.08) 53%, rgba(0, 0, 0, 0.22) 72%);
  box-shadow: inset 0 0 36px rgba(31, 100, 255, 0.08), 0 18px 35px rgba(0, 0, 0, 0.28);
}

.product-card__image::after {
  position: absolute;
  inset: 9%;
  z-index: 0;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.product-card__image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.product-card:hover .product-card__image img {
  transform: scale(1.035);
}

.product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 0 28px 26px;
}

.product-card__intro {
  min-height: 78px;
  margin-bottom: 20px;
  color: #e7e7e7;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.55;
}

.product-features {
  display: grid;
  margin-bottom: 26px;
  padding: 0;
  gap: 12px;
  list-style: none;
}

.product-features li {
  position: relative;
  padding-left: 25px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.product-features li::before {
  position: absolute;
  top: 0.56em;
  left: 1px;
  width: 8px;
  height: 8px;
  content: "";
  border-radius: 50%;
  background: var(--blue-light);
  box-shadow: 0 0 0 5px rgba(31, 100, 255, 0.1);
}

.product-specs {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}

.product-specs h3 {
  margin-bottom: 14px;
  color: var(--blue-light);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.product-specs ul {
  display: grid;
  gap: 9px;
  list-style: none;
}

.product-specs li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  color: #9d9d9d;
  font-size: 13px;
}

.product-specs strong {
  flex-shrink: 0;
  color: #f0f0f0;
  font-size: 13px;
  font-weight: 700;
}

.product-card__button {
  position: relative;
  z-index: 3;
  justify-content: space-between;
  width: calc(100% - 56px);
  margin: 0 28px 28px;
}

.product-card__button span {
  font-size: 19px;
  transition: transform 0.25s ease;
}

.product-card__button:hover span {
  transform: translate(3px, -3px);
}

.product-detail-main {
  min-height: 70vh;
  padding: 58px 0 74px;
}

.product-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: #8f96a8;
  font-size: 14px;
}

.product-breadcrumb a {
  color: #a9bcf4;
  transition: color 0.25s ease;
}

.product-breadcrumb a:hover {
  color: white;
}

.product-detail {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 30px;
  background:
    radial-gradient(circle at 12% 16%, rgba(31, 100, 255, 0.19), transparent 35%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018));
  box-shadow: var(--shadow);
}

.product-detail::before {
  position: absolute;
  inset: 0 0 auto;
  z-index: 2;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
}

.product-detail__visual {
  display: grid;
  min-height: 520px;
  padding: 40px;
  place-items: center;
  border-right: 1px solid var(--border);
  background: rgba(4, 7, 13, 0.34);
}

.product-detail__image {
  position: relative;
  width: min(100%, 376px);
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 100, 255, 0.13), rgba(0, 0, 0, 0.28) 72%);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45), 0 0 55px rgba(31, 100, 255, 0.1);
}

.product-detail__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail__content {
  display: flex;
  flex-direction: column;
  padding: 43px;
}

.product-detail__label {
  margin-bottom: 8px;
  color: var(--blue-light);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-detail__content h1 {
  margin-bottom: 13px;
  font-size: clamp(52px, 6.5vw, 84px);
}

.product-detail__lead {
  max-width: 650px;
  margin-bottom: 26px;
  color: #e2e4ea;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.55;
}

.product-detail__section {
  padding: 21px 0;
  border-top: 1px solid var(--border);
}

.product-detail__section h2 {
  margin-bottom: 14px;
  color: #dfe6ff;
  font-size: 28px;
  letter-spacing: 2px;
}

.detail-feature-list {
  display: grid;
  gap: 10px;
  list-style: none;
}

.detail-feature-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  line-height: 1.55;
}

.detail-feature-list li::before {
  position: absolute;
  top: 0.55em;
  left: 2px;
  width: 9px;
  height: 9px;
  content: "";
  border-radius: 50%;
  background: var(--blue-light);
  box-shadow: 0 0 0 5px rgba(31, 100, 255, 0.1);
}

.detail-spec-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  list-style: none;
}

.detail-spec-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 13px;
  color: #9fa4b0;
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.18);
}

.detail-spec-list strong {
  flex-shrink: 0;
  color: white;
}

.product-downloads {
  padding: 21px 0;
  border-top: 1px solid var(--border);
}

.product-downloads h2 {
  margin-bottom: 6px;
  color: #dfe6ff;
  font-size: 28px;
  letter-spacing: 2px;
}

.product-downloads > p {
  margin-bottom: 14px;
  color: #9399a7;
  font-size: 14px;
}

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

.download-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 9px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.2);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.download-card:hover {
  transform: translateY(-3px);
  border-color: rgba(31, 100, 255, 0.48);
  background: rgba(31, 100, 255, 0.09);
}

.download-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.download-card__icon {
  display: grid;
  width: 31px;
  height: 31px;
  flex-shrink: 0;
  place-items: center;
  color: #a9bcff;
  font-size: 11px;
  font-weight: 800;
  border: 1px solid rgba(31, 100, 255, 0.35);
  border-radius: 10px;
  background: rgba(31, 100, 255, 0.12);
}

.download-card__arrow {
  color: var(--blue-light);
  font-size: 19px;
  line-height: 1;
}

.download-card strong {
  color: #f1f2f5;
  font-size: 13px;
  line-height: 1.35;
}

.download-card small {
  margin-top: auto;
  color: #858b98;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: auto;
  padding-top: 24px;
}

.btn-secondary {
  background: transparent;
  border: 1px solid rgba(31, 100, 255, 0.55);
  box-shadow: none;
}

.btn-secondary:hover {
  background: rgba(31, 100, 255, 0.11);
  box-shadow: none;
}

.placeholder {
  border-style: dashed;
}

.placeholder strong {
  color: var(--blue-light);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 24px;
  align-items: stretch;
}

.contact-details-card,
.contact-form-card {
  background:
    radial-gradient(circle at 18% 22%, rgba(31, 100, 255, 0.14), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
}

.contact-details-card {
  display: flex;
  flex-direction: column;
}

.contact-details-card p {
  max-width: 520px;
}

.contact-details {
  display: grid;
  gap: 8px;
  margin-top: auto;
  padding-top: 20px;
  color: #d5d5d5;
  font-style: normal;
}

.contact-details strong {
  margin-bottom: 4px;
  color: white;
  font-size: 19px;
}

.contact-details a {
  width: fit-content;
  color: #a9bcff;
  font-weight: 700;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.contact-details a:hover {
  color: white;
  text-shadow: 0 0 14px rgba(102, 160, 255, 0.35);
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 15px;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 12px;
  outline: none;
  background: rgba(0, 0, 0, 0.28);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--blue-light);
}

.contact-form .btn {
  justify-self: start;
  cursor: pointer;
  border: 0;
}

.contact-form .btn:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.contact-form__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-feedback {
  max-width: 520px;
  margin: 0;
  padding: 14px 16px;
  color: #dff0ff;
  font-size: 15px;
  font-weight: 700;
  border: 1px solid rgba(31, 100, 255, 0.34);
  border-radius: 12px;
  background: rgba(31, 100, 255, 0.16);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.contact-feedback.visible {
  opacity: 1;
  transform: translateY(0);
}

.contact-feedback.error {
  color: #ffe1e1;
  border-color: rgba(255, 90, 90, 0.34);
  background: rgba(255, 70, 70, 0.14);
}

footer {
  padding: 18px 0 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(
    100deg,
    rgba(12, 14, 20, 0.99) 0%,
    rgba(7, 9, 14, 0.99) 48%,
    rgba(3, 4, 7, 0.99) 100%
  );
  box-shadow:
    0 -10px 32px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(31, 100, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  column-gap: 40px;
  row-gap: 12px;
  margin-bottom: 12px;
}

.footer-logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-self: start;
  padding: 5px 0;
}

.footer-logo::before {
  content: none;
}

.footer-logo img {
  position: relative;
  z-index: 1;
  display: block;
  width: 96px;
  height: auto;
  filter: drop-shadow(0 7px 16px rgba(13, 55, 138, 0.2));
  transition: filter 0.3s ease, transform 0.3s ease;
}

.footer-logo:hover img {
  filter: brightness(1.05) drop-shadow(0 9px 20px rgba(31, 100, 255, 0.32));
  transform: translateY(-1px);
}

.footer-nav {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px 28px;
}

.footer-nav a {
  color: var(--muted);
  font-size: 14px;
}

.footer-nav a:hover {
  color: white;
}

.legal {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 10px;
  color: #8d8d8d;
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.legal a {
  color: #c7c7c7;
}

@media (max-width: 920px) {
  .navbar {
    min-height: 92px;
  }

  .logo img {
    width: 84px;
  }

  .nav-actions {
    display: block;
    margin-left: auto;
  }

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 20px;
    pointer-events: none;
    opacity: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    background: linear-gradient(100deg, rgba(12, 14, 20, 0.99), rgba(3, 4, 7, 0.99));
    transform: translateY(-120%);
    transition: 0.25s ease;
  }

  nav.open {
    pointer-events: auto;
    opacity: 1;
    transform: translateY(0);
  }

  nav ul {
    flex-direction: column;
    align-items: flex-start;
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    gap: 18px;
  }

  #mainNav > ul > li {
    margin-right: 0;
    margin-left: 0;
  }

  .nav-dropdown,
  .nav-dropdown__trigger {
    width: 100%;
  }

  .nav-dropdown__trigger {
    justify-content: space-between;
  }

  .dropdown-toggle {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
  }

  nav .dropdown-menu {
    position: static;
    display: none;
    width: 100%;
    margin-top: 8px;
    padding: 7px;
    pointer-events: auto;
    opacity: 1;
    border-radius: 12px;
    background: rgba(31, 100, 255, 0.07);
    box-shadow: none;
    transform: none;
    visibility: visible;
  }

  nav .dropdown-menu::before {
    display: none;
  }

  .nav-dropdown.open .dropdown-menu {
    display: grid;
    transform: none;
  }

  .hero {
    padding-top: 62px;
  }

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

  .about-panel {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 38px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-image img {
    min-height: 360px;
  }

  .quick-grid,
  .card-grid {
    grid-template-columns: 1fr;
  }

  .product-grid {
    width: min(620px, 100%);
    margin: 0 auto;
  }

  .product-card__intro {
    min-height: auto;
  }

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

  .product-detail__visual {
    min-height: auto;
    padding: 34px;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .product-detail__image {
    width: min(100%, 344px);
  }

  .product-detail__content {
    padding: 34px;
  }

  .legal-card {
    padding-right: 34px;
  }

  .legal-list--columns,
  .legal-rights-grid {
    grid-template-columns: 1fr;
  }

  .footer-nav {
    justify-content: flex-start;
  }

  .legal {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .hero-card,
  .content-card {
    padding: 24px;
  }

  .about-panel {
    padding: 24px;
    border-radius: 22px;
  }

  .about-copy p {
    font-size: 16px;
  }

  .hero-card p,
  .content-card p {
    font-size: 16px;
  }

  .page-heading .product-page-intro {
    font-size: 16px;
  }

  .standard-text-page .page-heading p,
  .standard-text-page .content-card p {
    font-size: 16px;
  }

  .subpage-main {
    padding: 62px 0;
  }

  .product-card__header {
    padding: 24px 22px 16px;
  }

  .product-card__image {
    width: calc(100% - 44px);
  }

  .product-card__body {
    padding: 0 22px 22px;
  }

  .product-card__button {
    width: calc(100% - 44px);
    margin: 0 22px 22px;
  }

  .product-detail-main {
    padding: 38px 0 54px;
  }

  .product-detail {
    border-radius: 22px;
  }

  .product-detail__visual,
  .product-detail__content {
    padding: 21px 18px;
  }

  .product-detail__lead {
    font-size: 16px;
  }

  .detail-spec-list {
    grid-template-columns: 1fr;
  }

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

  .product-detail__actions .btn {
    width: 100%;
  }

}

@media (prefers-reduced-motion: reduce) {
  ::view-transition-old(root),
  ::view-transition-new(root),
  html.page-transition-fallback body {
    animation: none;
    transition: none;
  }

  #mainNav > ul > li > a,
  #mainNav > ul > li > .nav-dropdown__trigger > a,
  #mainNav > ul > li > a::after,
  #mainNav > ul > li > .nav-dropdown__trigger > a::after {
    transition: none;
  }
}
