:root {
  color-scheme: dark;
  --bg: #070707;
  --surface: rgba(24, 24, 24, 0.84);
  --surface-strong: rgba(18, 18, 18, 0.96);
  --surface-light: rgba(255, 255, 255, 0.055);
  --line: rgba(212, 212, 212, 0.18);
  --ink: #f7fbff;
  --muted: #b0b0b0;
  --muted-strong: #d6d3d1;
  --accent: #f47c20;
  --accent-2: #f47c20;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --shadow-soft: 0 16px 42px rgba(0, 0, 0, 0.28);
  --radius-lg: 30px;
  --radius: 20px;
  --max: 76rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% -10%, rgba(244, 124, 32, 0.24), transparent 28rem),
    radial-gradient(circle at 86% 8%, rgba(244, 124, 32, 0.1), transparent 26rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.032) 25%, transparent 25%) 0 0 / 22px 22px,
    var(--bg);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body::before {
  background:
    linear-gradient(rgba(244, 124, 32, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 124, 32, 0.028) 1px, transparent 1px);
  background-size: 4.5rem 4.5rem;
  content: "";
  inset: 0;
  mask-image: linear-gradient(to bottom, black, transparent 55rem);
  pointer-events: none;
  position: fixed;
  z-index: -1;
}

img,
svg,
iframe,
video {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration-color: rgba(244, 124, 32, 0.45);
  text-underline-offset: 0.22em;
  transition: border-color 180ms ease, color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

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

h1,
h2,
h3 {
  line-height: 1.05;
  letter-spacing: -0.045em;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(3rem, 8vw, 6.7rem);
  max-width: 11ch;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

h3 {
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
}

p {
  color: var(--muted);
  margin: 0 0 1rem;
}

strong {
  color: var(--ink);
}

ul,
ol {
  color: var(--muted);
}

main ul li::marker,
main ol li::marker {
  color: var(--accent-2);
}

.site-header,
.site-main,
.site-footer {
  margin: 0 auto;
  max-width: var(--max);
  padding-inline: clamp(1rem, 3vw, 2rem);
}

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(7, 7, 7, 0.78);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  display: flex;
  gap: 1.1rem;
  justify-content: space-between;
  margin-top: 1rem;
  padding-block: 0.72rem;
  position: sticky;
  top: 1rem;
  z-index: 20;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 0.75rem;
  min-width: max-content;
  text-decoration: none;
}

.brand strong {
  display: block;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.brand small {
  color: var(--muted);
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-logo {
  aspect-ratio: 1;
  border-radius: 12px;
  display: block;
  height: 2.65rem;
  object-fit: contain;
  width: 2.65rem;
}

.site-header nav {
  align-items: center;
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  gap: 0.2rem;
  justify-content: center;
}

.site-header nav a,
.lang-switch,
.header-cta,
.quick-links a,
.button-row a,
button {
  border-radius: 999px;
  font-weight: 750;
  text-decoration: none;
}

.site-header nav a {
  color: var(--muted-strong);
  font-size: 0.88rem;
  padding: 0.56rem 0.72rem;
}

.site-header nav a:hover {
  background: var(--surface-light);
  color: var(--ink);
}

.header-actions {
  align-items: center;
  display: flex;
  gap: 0.55rem;
}

.lang-switch {
  border: 1px solid var(--line);
  color: var(--muted-strong);
  padding: 0.58rem 0.85rem;
}

.header-cta,
.quick-links a:first-child,
.button-row a:first-child,
button[type="submit"],
[data-cookie-accept] {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border: 0;
  color: #1c1200;
  box-shadow: 0 14px 38px rgba(244, 124, 32, 0.22);
}

.header-cta {
  padding: 0.65rem 1rem;
}

.site-main {
  padding-block: clamp(3rem, 7vw, 6rem);
}

.site-main > section,
.site-main > article,
.site-main > h1,
.site-main > .product-grid,
.site-main > .dealer-grid,
.site-main > .video-grid,
.site-main > .quick-links,
.site-main > details,
.site-main > table,
.site-main > p {
  margin-inline: auto;
  max-width: var(--max);
}

section {
  margin-bottom: clamp(4rem, 9vw, 7rem);
}

.hero {
  align-items: center;
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: minmax(0, 1.08fr) minmax(18rem, 0.92fr);
  min-height: min(48rem, calc(100vh - 8rem));
  position: relative;
}

.hero > div {
  order: -1;
}

.hero-media {
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  height: 100%;
  margin: 0;
  max-height: 42rem;
  object-fit: cover;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.hero-matrix-visual {
  background:
    radial-gradient(circle at 72% 36%, rgba(244, 124, 32, 0.2), transparent 18rem),
    #050505;
}

.hero-matrix-visual img {
  display: block;
  filter: saturate(0.9) contrast(1.08) brightness(0.82);
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  width: 100%;
}

.hero-matrix-visual::after {
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.52), transparent 38%, rgba(244, 124, 32, 0.18)),
    linear-gradient(135deg, transparent 0 46%, rgba(244, 124, 32, 0.22) 47% 49%, transparent 50% 100%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.matrix-sweep {
  animation: matrix-scan 5.5s ease-in-out infinite;
  background: linear-gradient(90deg, transparent, rgba(244, 124, 32, 0.78), rgba(255, 202, 138, 0.55), transparent);
  filter: blur(1px);
  height: 2px;
  left: -30%;
  opacity: 0.9;
  position: absolute;
  top: 37%;
  transform: rotate(-8deg);
  width: 82%;
  z-index: 1;
}

.matrix-beam {
  background: linear-gradient(90deg, rgba(244, 124, 32, 0), rgba(244, 124, 32, 0.28), rgba(255, 180, 95, 0.08), transparent);
  clip-path: polygon(0 34%, 100% 0, 100% 100%, 0 66%);
  filter: blur(0.4px);
  height: 34%;
  left: 37%;
  opacity: 0.72;
  position: absolute;
  top: 29%;
  transform-origin: left center;
  width: 72%;
  z-index: 1;
}

.matrix-beam-one {
  animation: matrix-pulse 4.4s ease-in-out infinite;
}

.matrix-beam-two {
  animation: matrix-pulse 4.4s ease-in-out 1.1s infinite;
  top: 39%;
  transform: rotate(5deg);
}

@keyframes matrix-scan {
  0%,
  18% {
    transform: translateX(0) rotate(-8deg);
    opacity: 0;
  }

  35%,
  68% {
    opacity: 0.9;
  }

  100% {
    transform: translateX(140%) rotate(-8deg);
    opacity: 0;
  }
}

@keyframes matrix-pulse {
  0%,
  100% {
    opacity: 0.28;
    transform: scaleX(0.82);
  }

  45% {
    opacity: 0.78;
    transform: scaleX(1);
  }
}

.hero::after {
  background:
    linear-gradient(90deg, transparent, rgba(244, 124, 32, 0.82), transparent),
    linear-gradient(90deg, transparent, rgba(244, 124, 32, 0.42), transparent);
  border-radius: 999px;
  content: "";
  filter: blur(0.3px);
  height: 2px;
  inset: auto 2rem 8% 42%;
  opacity: 0.7;
  position: absolute;
}

.eyebrow {
  align-items: center;
  color: var(--accent-2);
  display: inline-flex;
  font-size: 0.77rem;
  font-weight: 850;
  gap: 0.55rem;
  letter-spacing: 0.18em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.eyebrow::before {
  background: var(--accent-2);
  border-radius: 999px;
  box-shadow: 0 0 22px var(--accent-2);
  content: "";
  height: 0.55rem;
  width: 0.55rem;
}

.lede {
  color: var(--muted-strong);
  font-size: clamp(1.1rem, 2.2vw, 1.38rem);
  max-width: 47rem;
}

.hero-copy {
  max-width: 45rem;
}

.hero-actions,
.quick-links,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.7rem 0;
}

.quick-links {
  background: linear-gradient(135deg, rgba(24, 24, 24, 0.9), rgba(18, 18, 18, 0.55));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 0.9rem;
}

.quick-links a,
.button-row a,
button {
  border: 1px solid var(--line);
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  padding: 0.82rem 1.05rem;
}

.quick-links a:not(:first-child),
.button-row a:not(:first-child),
button:not([type="submit"]):not([data-cookie-accept]) {
  background: rgba(255, 255, 255, 0.045);
}

.quick-links a:hover,
.button-row a:hover,
button:hover {
  transform: translateY(-1px);
}

.stats-row {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2rem;
}

.stat-card,
.signal-card {
  background:
    linear-gradient(135deg, rgba(244, 124, 32, 0.11), transparent 38%),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem;
}

.stat-card strong {
  display: block;
  font-size: clamp(1.45rem, 3.2vw, 2.25rem);
  letter-spacing: -0.05em;
  overflow-wrap: anywhere;
}

.stat-card span,
.signal-card span {
  color: var(--muted);
  font-size: 0.88rem;
}

.section-heading {
  align-items: end;
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
  margin-bottom: 1.6rem;
}

.section-heading p {
  max-width: 36rem;
}

.product-grid,
.dealer-grid,
.video-grid,
.blog-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
}

article,
.content-card,
details {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: clamp(1.1rem, 2.5vw, 1.6rem);
}

article:hover {
  border-color: rgba(244, 124, 32, 0.34);
}

article h2 a,
article h3 a {
  text-decoration: none;
}

.product-grid article {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.product-thumb,
.product-image {
  background:
    radial-gradient(circle at 50% 22%, rgba(244, 124, 32, 0.14), transparent 48%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) - 4px);
  object-fit: contain;
  width: 100%;
}

.product-thumb {
  aspect-ratio: 4 / 3;
  margin-bottom: 1.1rem;
  padding: 1rem;
}

.product-image {
  display: block;
  margin: 1.5rem auto 2rem;
  max-height: 32rem;
  padding: clamp(1rem, 4vw, 2rem);
}

.feature-list,
.product-grid article ul {
  display: grid;
  gap: 0.55rem;
  list-style: none;
  margin: 1rem 0;
  padding: 0;
}

.feature-list li,
.product-grid article li {
  align-items: flex-start;
  background: rgba(244, 124, 32, 0.055);
  border: 1px solid rgba(244, 124, 32, 0.16);
  border-radius: 12px;
  color: var(--muted-strong);
  display: flex;
  gap: 0.55rem;
  padding: 0.62rem 0.7rem;
}

.price-pill {
  align-self: flex-start;
  background: rgba(244, 124, 32, 0.1);
  border: 1px solid rgba(244, 124, 32, 0.32);
  border-radius: 999px;
  color: var(--accent);
  display: inline-flex;
  font-weight: 800;
  margin-top: auto;
  padding: 0.55rem 0.8rem;
  text-decoration: none;
}

.signals-intro {
  align-items: center;
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(10rem, 0.35fr) minmax(0, 1fr);
  margin-bottom: 1rem;
}

.signals-intro strong {
  display: block;
  font-size: clamp(2rem, 5vw, 3.4rem);
  letter-spacing: -0.06em;
  line-height: 1;
}

.signals-intro span {
  color: var(--muted);
  display: block;
  font-size: 0.9rem;
}

.signals-toolbar {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: 0.9rem;
  grid-template-columns: minmax(0, 1fr) minmax(12rem, 0.28fr);
  margin: 1rem 0 1.2rem;
  padding: 1rem;
}

.signals-toolbar label {
  color: var(--muted-strong);
  display: grid;
  font-size: 0.85rem;
  font-weight: 800;
  gap: 0.4rem;
}

.signals-toolbar input,
.signals-toolbar select {
  appearance: none;
  background: #151515;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--ink);
  font: inherit;
  min-height: 3rem;
  padding: 0.78rem 0.9rem;
  width: 100%;
}

.signals-toolbar option {
  background: #151515;
  color: var(--ink);
}

.signals-toolbar input:focus,
.signals-toolbar select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(244, 124, 32, 0.13);
  outline: 0;
}

.signals-table-wrapper {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  margin-top: 1rem;
  overflow-x: auto;
}

.signals-table {
  box-shadow: none;
  margin: 0;
  min-width: 58rem;
}

.signals-table td:first-child strong,
.signals-table td:first-child span {
  display: block;
}

.signals-table td:first-child span {
  color: var(--muted);
  font-size: 0.9rem;
}

.signal-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.signal-chips span {
  background: rgba(244, 124, 32, 0.1);
  border: 1px solid rgba(244, 124, 32, 0.25);
  border-radius: 999px;
  color: var(--muted-strong);
  display: inline-flex;
  font-size: 0.85rem;
  font-weight: 750;
  padding: 0.32rem 0.58rem;
}

.signals-empty {
  background: rgba(244, 124, 32, 0.08);
  border: 1px solid rgba(244, 124, 32, 0.24);
  border-radius: var(--radius);
  color: var(--muted-strong);
  padding: 1rem;
}

.prose,
.site-main > article:not(.product-card):not(.blog-card) {
  max-width: 46rem;
}

.prose {
  padding: clamp(1.25rem, 4vw, 3rem);
}

.prose p,
.prose li {
  font-size: clamp(1rem, 1.45vw, 1.08rem);
  line-height: 1.9;
}

.prose p {
  margin-bottom: 1.45rem;
}

.prose ul,
.prose ol {
  display: grid;
  gap: 0.65rem;
  margin: 1.25rem 0 1.8rem;
  padding-left: 1.35rem;
}

.prose h1 {
  font-size: clamp(2.45rem, 5.6vw, 4.5rem);
  max-width: 13ch;
  margin-bottom: 1.25rem;
}

.prose h2,
.site-main > article h2 {
  border-top: 1px solid var(--line);
  font-size: clamp(1.55rem, 2.7vw, 2.1rem);
  letter-spacing: -0.03em;
  margin-top: 3.3rem;
  padding-top: 1.35rem;
}

.prose h3,
.site-main > article h3 {
  font-size: clamp(1.18rem, 2vw, 1.42rem);
  letter-spacing: -0.02em;
  margin-top: 2.35rem;
}

.prose a,
.site-main > article a {
  color: var(--accent);
}

.article-meta,
time {
  color: var(--accent-2);
  display: inline-flex;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

details {
  margin: 0.9rem auto;
}

summary {
  color: var(--ink);
  cursor: pointer;
  font-weight: 850;
}

table {
  background: var(--surface);
  border: 1px solid var(--line);
  border-collapse: separate;
  border-radius: var(--radius);
  border-spacing: 0;
  box-shadow: var(--shadow-soft);
  margin: 1rem auto 2rem;
  overflow: hidden;
  width: 100%;
}

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 0.8rem 0.9rem;
  text-align: left;
  vertical-align: top;
}

th {
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

tr:last-child td {
  border-bottom: 0;
}

.contact-section {
  align-items: start;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 0.85fr) minmax(18rem, 1.15fr);
}

.contact-form {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: grid;
  gap: 0.85rem;
  padding: clamp(1.1rem, 3vw, 1.7rem);
}

.contact-form label {
  color: var(--muted-strong);
  display: grid;
  font-size: 0.88rem;
  font-weight: 750;
  gap: 0.35rem;
}

.contact-form input,
.contact-form textarea {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--ink);
  font: inherit;
  padding: 0.8rem 0.9rem;
  width: 100%;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(244, 124, 32, 0.13);
  outline: 0;
}

.honeypot {
  display: none;
}

.form-status {
  min-height: 1.5rem;
}

.lite-youtube {
  aspect-ratio: 16 / 9;
  background: #0b0b0b;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.lite-youtube-trigger {
  background: transparent;
  border: 0;
  display: grid;
  height: 100%;
  padding: 0;
  position: relative;
  width: 100%;
}

.lite-youtube-trigger img,
.lite-youtube iframe {
  border: 0;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.lite-youtube-trigger span {
  align-self: end;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.86), transparent);
  color: #fff;
  font-weight: 850;
  padding: 2.4rem 1rem 1rem;
  position: absolute;
  width: 100%;
}

.site-footer {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.5fr 1fr 1fr;
  margin-bottom: 2rem;
  padding-block: 2.4rem;
}

.site-footer h2 {
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  margin-bottom: 0.7rem;
  text-transform: uppercase;
}

.site-footer p,
.site-footer a {
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-brand .brand-logo {
  height: 3rem;
  width: 3rem;
}

.cookie-banner {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(7, 7, 7, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  bottom: 1rem;
  box-shadow: var(--shadow);
  color: #fff;
  display: flex;
  gap: 1rem;
  left: 50%;
  max-width: min(48rem, calc(100vw - 2rem));
  padding: 1rem;
  position: fixed;
  transform: translateX(-50%);
  width: max-content;
  z-index: 40;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  margin: 0;
}

.cookie-banner a {
  color: #fff;
  text-decoration: underline;
}

@media (max-width: 62rem) {
  .site-header {
    align-items: stretch;
    border-radius: var(--radius);
    flex-direction: column;
    position: relative;
    top: auto;
  }

  .site-header nav {
    justify-content: flex-start;
  }

  .header-actions {
    justify-content: space-between;
  }

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

  .hero > div {
    order: 0;
  }

  .hero-media {
    aspect-ratio: 16 / 10;
  }

  .stats-row {
    grid-template-columns: 1fr;
  }

  .signals-intro,
  .signals-toolbar {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 42rem) {
  h1 {
    font-size: clamp(2.55rem, 15vw, 4rem);
  }

  .site-main {
    padding-block: 2.4rem;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .cookie-banner {
    align-items: stretch;
    flex-direction: column;
    left: 1rem;
    transform: none;
    width: calc(100vw - 2rem);
  }
}
