:root {
  --aero-void: #041019;
  --aero-navy: #071c2f;
  --aero-panel: #0d2c46;
  --aero-cyan: #00d4ff;
  --aero-cyan-deep: #0099bb;
  --aero-amber: #ffb02e;
  --aero-ice: #f2f8ff;
  --aero-muted: #6d8194;
  --aero-border: #d7e5f2;
  --aero-radius: 18px;
  --aero-shadow: 0 24px 70px rgba(4, 16, 25, 0.12);
}

body {
  background: #fff;
  color: var(--aero-void);
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
}

a {
  text-underline-offset: 0.2em;
}

.aero-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(215, 229, 242, 0.9);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.aero-header .wp-block-site-title a {
  color: var(--aero-void);
  text-decoration: none;
}

.aero-brand-chip,
.aero-kicker,
.aero-card-chip {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  margin: 0;
  padding: 0 10px;
  border: 1px solid rgba(0, 212, 255, 0.35);
  border-radius: 999px;
  background: rgba(0, 212, 255, 0.08);
  color: var(--aero-cyan-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.aero-nav a {
  color: var(--aero-void);
  font-weight: 600;
  text-decoration: none;
}

.aero-nav a:hover {
  color: var(--aero-cyan-deep);
}

.aero-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 28%, rgba(0, 212, 255, 0.18), transparent 30%),
    radial-gradient(circle at 20% 85%, rgba(255, 176, 46, 0.1), transparent 28%),
    linear-gradient(135deg, var(--aero-void), var(--aero-navy) 55%, #0d3856);
  color: #fff;
}

.aero-hero::before,
.aero-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.aero-hero::before {
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.14) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
}

.aero-hero::after {
  background: linear-gradient(115deg, transparent 0 40%, rgba(0, 212, 255, 0.08) 40% 40.3%, transparent 40.3% 100%);
}

.aero-hero > * {
  position: relative;
  z-index: 1;
}

.aero-title {
  max-width: 760px;
  margin-top: 18px;
  margin-bottom: 18px;
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.aero-lede {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.7;
}

.aero-primary .wp-block-button__link,
.aero-secondary .wp-block-button__link {
  border-radius: 12px;
  font-weight: 800;
  letter-spacing: -0.01em;
  padding: 0.92em 1.4em;
}

.aero-primary .wp-block-button__link {
  border: 1px solid var(--aero-cyan);
  background: var(--aero-cyan) !important;
  color: var(--aero-void) !important;
  box-shadow: 0 14px 36px rgba(0, 212, 255, 0.24);
}

.aero-secondary .wp-block-button__link {
  border-color: rgba(255, 255, 255, 0.42) !important;
  background: rgba(255, 255, 255, 0.04) !important;
  color: #fff !important;
}

.aero-visual {
  position: relative;
  min-height: 520px;
  border: 1px solid rgba(0, 212, 255, 0.22);
  border-radius: 32px;
  overflow: hidden;
  margin: 0;
  background: var(--aero-navy);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.28), inset 0 0 80px rgba(0, 212, 255, 0.08);
}

.aero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 12%, rgba(0, 212, 255, 0.22), transparent 32%),
    linear-gradient(180deg, transparent, rgba(4, 16, 25, 0.28));
  pointer-events: none;
}

.aero-visual img {
  display: block;
  width: 100%;
  min-height: 520px;
  object-fit: cover;
}

.aero-scan {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 9px),
    linear-gradient(180deg, transparent, rgba(0, 212, 255, 0.12), transparent);
  animation: aero-scan 5s linear infinite;
}

.aero-orbit {
  position: absolute;
  inset: 84px;
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 50%;
}

.orbit-two {
  inset: 126px 78px;
  transform: rotate(-28deg);
}

.aero-drone {
  position: absolute;
  inset: 50%;
  width: 250px;
  height: 250px;
  transform: translate(-50%, -50%);
}

.aero-drone .body {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 86px;
  height: 58px;
  transform: translate(-50%, -50%);
  border: 2px solid var(--aero-cyan);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.28), rgba(255, 255, 255, 0.08));
  box-shadow: 0 0 32px rgba(0, 212, 255, 0.35);
}

.aero-drone .body::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 34px;
  height: 20px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: var(--aero-cyan);
  box-shadow: 0 0 18px rgba(0, 212, 255, 0.7);
}

.aero-drone .arm {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 260px;
  height: 3px;
  transform-origin: center;
  background: linear-gradient(90deg, transparent, var(--aero-cyan), transparent);
}

.aero-drone .arm-x {
  transform: translate(-50%, -50%) rotate(35deg);
}

.aero-drone .arm-y {
  transform: translate(-50%, -50%) rotate(-35deg);
}

.aero-drone .rotor {
  position: absolute;
  width: 76px;
  height: 76px;
  border: 2px solid rgba(0, 212, 255, 0.86);
  border-radius: 50%;
  box-shadow: 0 0 28px rgba(0, 212, 255, 0.24);
}

.aero-drone .rotor::before,
.aero-drone .rotor::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 62px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  transform: translate(-50%, -50%) rotate(24deg);
}

.aero-drone .rotor::after {
  transform: translate(-50%, -50%) rotate(-24deg);
}

.rotor-a { left: 0; top: 28px; }
.rotor-b { right: 0; top: 28px; }
.rotor-c { left: 0; bottom: 28px; }
.rotor-d { right: 0; bottom: 28px; }

.aero-drone .antenna {
  position: absolute;
  left: 50%;
  top: 42px;
  width: 2px;
  height: 52px;
  background: var(--aero-amber);
  transform: translateX(-50%);
}

.aero-drone .antenna::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -8px;
  width: 12px;
  height: 12px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: var(--aero-amber);
  box-shadow: 0 0 18px rgba(255, 176, 46, 0.8);
}

.aero-hud {
  position: absolute;
  max-width: 170px;
  padding: 13px 15px;
  border: 1px solid rgba(0, 212, 255, 0.26);
  border-radius: 16px;
  background: rgba(4, 16, 25, 0.72);
  box-shadow: inset 0 0 24px rgba(0, 212, 255, 0.08);
}

.aero-hud strong,
.aero-hud span {
  display: block;
}

.aero-hud strong {
  color: var(--aero-cyan);
  font-size: 0.92rem;
}

.aero-hud span {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.74rem;
}

.hud-battery { left: 26px; top: 34px; }
.hud-gnss { right: 24px; top: 116px; }
.hud-motor { left: 42px; bottom: 48px; }

.aero-metrics {
  margin-top: -36px;
  background: linear-gradient(180deg, var(--aero-navy), #fff 42px);
}

.aero-metric {
  height: 100%;
  padding: 24px;
  border: 1px solid var(--aero-border);
  border-radius: var(--aero-radius);
  background: #fff;
  box-shadow: var(--aero-shadow);
}

.aero-metric-value {
  margin: 0;
  color: var(--aero-cyan-deep);
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 800;
}

.aero-metric-label {
  margin: 6px 0 0;
  color: var(--aero-muted);
}

.aero-systems,
.aero-product-band.is-alt {
  background:
    linear-gradient(135deg, rgba(0, 212, 255, 0.06), transparent 38%),
    var(--aero-ice);
}

.aero-section-title,
.aero-band-title {
  margin-bottom: 10px;
  color: var(--aero-void);
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

.aero-section-copy {
  max-width: 720px;
  color: var(--aero-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.aero-systems .aero-section-copy {
  margin-left: auto;
  margin-right: auto;
}

.aero-external-catalog {
  margin-top: 44px;
}

.aero-catalog-toolbar,
.aero-external-heading {
  display: flex;
  gap: 24px;
  align-items: flex-end;
  justify-content: space-between;
}

.aero-catalog-toolbar h2,
.aero-external-heading h3 {
  margin: 8px 0 0;
  color: var(--aero-void);
  letter-spacing: -0.04em;
}

.aero-catalog-toolbar h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.aero-catalog-updated,
.aero-external-heading p {
  color: var(--aero-muted);
}

.aero-external-section {
  margin-top: 36px;
  padding: 28px;
  border: 1px solid var(--aero-border);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--aero-shadow);
}

.aero-external-heading {
  margin-bottom: 24px;
}

.aero-external-heading a {
  flex: 0 0 auto;
  padding: 10px 14px;
  border: 1px solid rgba(0, 212, 255, 0.35);
  border-radius: 999px;
  color: var(--aero-cyan-deep);
  font-weight: 800;
  text-decoration: none;
}

.aero-external-heading a::after,
.aero-external-link::after {
  content: ">";
  margin-left: 0.35em;
  font-size: 0.88em;
}

.aero-external-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.aero-external-card {
  display: flex;
  min-height: 100%;
  padding: 14px;
  border: 1px solid var(--aero-border);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(4, 16, 25, 0.08);
  color: var(--aero-void);
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.aero-external-card:hover {
  border-color: rgba(0, 212, 255, 0.65);
  box-shadow: 0 26px 70px rgba(4, 16, 25, 0.14);
  transform: translateY(-4px);
}

.aero-external-image {
  display: grid;
  min-height: 155px;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(0, 212, 255, 0.08), transparent),
    var(--aero-ice);
  overflow: hidden;
  place-items: center;
}

.aero-external-image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
}

.aero-external-title {
  min-height: 4.2em;
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.38;
}

.aero-external-price {
  margin-top: auto;
  color: var(--aero-cyan-deep);
  font-size: 1rem;
  font-weight: 900;
}

.aero-external-link {
  display: inline-flex;
  width: fit-content;
  color: var(--aero-muted);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.aero-catalog-error {
  padding: 16px;
  border: 1px solid rgba(255, 176, 46, 0.36);
  border-radius: 14px;
  background: rgba(255, 176, 46, 0.08);
  color: #6b4a00;
}

.aero-system-card {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--aero-shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.aero-system-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 80px rgba(4, 16, 25, 0.18);
}

.aero-system-card .wp-block-cover__background {
  background: linear-gradient(180deg, rgba(4, 16, 25, 0.2), rgba(4, 16, 25, 0.84)) !important;
  opacity: 1 !important;
}

.aero-system-card h3 {
  margin-top: 14px;
  font-size: 1.55rem;
}

.aero-system-card p {
  color: rgba(255, 255, 255, 0.84);
}

.aero-system-card a {
  color: var(--aero-cyan);
  font-weight: 800;
  text-decoration: none;
}

.aero-product-band {
  position: relative;
  overflow: hidden;
}

.aero-product-band::before {
  content: "";
  position: absolute;
  right: -120px;
  top: 40px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(0, 212, 255, 0.18);
  border-radius: 50%;
}

.aero-product-band > * {
  position: relative;
  z-index: 1;
}

.aero-product-band .woocommerce ul.products,
.woocommerce ul.products,
.wc-block-grid__products {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 34px;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none !important;
}

.woocommerce ul.products li.product {
  width: auto !important;
  margin: 0 !important;
  padding: 16px;
  border: 1px solid var(--aero-border);
  border-radius: var(--aero-radius);
  background: #fff;
  box-shadow: var(--aero-shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.woocommerce ul.products li.product:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 80px rgba(4, 16, 25, 0.16);
}

.woocommerce ul.products li.product a img {
  border-radius: 12px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--aero-ice);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  margin: 0;
  min-height: 3.8em;
  color: var(--aero-void);
  font-size: 0.96rem;
  line-height: 1.35;
}

.woocommerce ul.products li.product .price {
  margin-top: auto;
  color: var(--aero-cyan-deep);
  font-size: 1rem;
  font-weight: 800;
}

.woocommerce ul.products li.product .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.wc-block-components-button {
  border-radius: 12px !important;
  min-height: 44px;
}

.woocommerce ul.products li.product .button {
  width: 100%;
  background: var(--aero-void) !important;
  color: #fff !important;
  text-align: center;
}

.woocommerce ul.products li.product .button:hover {
  background: var(--aero-cyan-deep) !important;
}

.tax-product_cat .woocommerce-products-header,
.post-type-archive-product .woocommerce-products-header {
  margin-bottom: 28px;
  padding: 34px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(0, 212, 255, 0.09), transparent 45%),
    var(--aero-ice);
}

.single-product div.product {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 32px;
  align-items: start;
}

.single-product div.product .summary,
.single-product div.product .woocommerce-product-gallery {
  padding: 24px;
  border: 1px solid var(--aero-border);
  border-radius: var(--aero-radius);
  background: #fff;
  box-shadow: var(--aero-shadow);
}

.single-product div.product .summary .price {
  color: var(--aero-cyan-deep);
  font-size: 1.5rem;
  font-weight: 800;
}

.aero-cta,
.aero-footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 12%, rgba(0, 212, 255, 0.18), transparent 28%),
    linear-gradient(135deg, var(--aero-void), var(--aero-navy));
  color: #fff;
}

.aero-cta p {
  color: rgba(255, 255, 255, 0.78);
}

.aero-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.aero-footer-links li + li {
  margin-top: 8px;
}

.aero-footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.aero-footer a:hover {
  color: var(--aero-cyan);
}

.aero-footer-separator {
  border-color: rgba(255, 255, 255, 0.14);
  margin-top: 34px;
  margin-bottom: 22px;
}

@keyframes aero-scan {
  from {
    background-position: 0 -220px, 0 0;
  }

  to {
    background-position: 0 220px, 0 0;
  }
}

@media (max-width: 1024px) {
  .aero-visual {
    min-height: 440px;
  }

  .aero-product-band .woocommerce ul.products,
  .woocommerce ul.products,
  .wc-block-grid__products,
  .aero-external-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 700px) {
  .aero-header-inner,
  .aero-brand {
    flex-wrap: wrap !important;
    gap: 12px;
  }

  .aero-title {
    font-size: clamp(2.25rem, 12vw, 3.4rem);
  }

  .aero-visual {
    min-height: 380px;
  }

  .aero-hud {
    display: none;
  }

  .aero-product-band .woocommerce ul.products,
  .woocommerce ul.products,
  .wc-block-grid__products,
  .aero-external-grid {
    grid-template-columns: 1fr;
  }

  .aero-catalog-toolbar,
  .aero-external-heading {
    align-items: flex-start;
    flex-direction: column;
  }
}
