:root {
  --bg: #050808;
  --bg-card: #0a1210;
  --gold: #d4af37;
  --gold-light: #ffd700;
  --gold-dark: #8b6914;
  --text: #f2f2f2;
  --text-muted: #b0bdb4;
  --border: #1e3d2a;
  --font: 'Inter', system-ui, sans-serif;
  --mono: 'JetBrains Mono', monospace;
  --fs-body: 1.0625rem;
  --fs-sm: 0.9375rem;
  --fs-xs: 0.8125rem;
  --fs-lg: 1.125rem;
  --fs-xl: 1.3rem;
  --fs-2xl: 2.15rem;
  --lh-body: 1.65;
  --lh-relaxed: 1.72;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 106.25%;
}

body {
  font-family: var(--font);
  font-size: var(--fs-body);
  background: var(--bg);
  color: var(--text);
  line-height: var(--lh-body);
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }

.container--wide {
  max-width: min(1600px, 98vw);
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2.5rem);
}

/* Header */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(5, 8, 8, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(0.75rem, 2.5vw, 2rem);
  height: 72px;
  position: relative;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.nav-right {
  display: flex; align-items: center; gap: 1rem;
}

.lang-select-wrap { display: flex; align-items: center; }

.lang-select {
  padding: 0.45rem 1.85rem 0.45rem 0.65rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--gold-light);
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  max-width: 10.5rem;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23d4af37' d='M1 1l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.45rem center;
}

.lang-select:hover, .lang-select:focus {
  border-color: var(--gold-dark);
  outline: none;
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

[dir="rtl"] .nav-links { flex-direction: row-reverse; }

[dir="rtl"] .hero-actions,
[dir="rtl"] .promo-cta-actions,
[dir="rtl"] .ai-insights-cta { direction: rtl; }

.brand {
  display: flex; align-items: center; gap: 0.65rem;
  text-decoration: none; color: var(--text);
  font-weight: 900; font-size: 1.35rem;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}

.brand-text {
  color: #fff;
  text-shadow: 0 0 24px rgba(212, 175, 55, 0.15);
}

.brand-logo-wrap {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.logo-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: visible;
  perspective: 900px;
  perspective-origin: center center;
}

.logo-bg {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  z-index: 1;
}

.logo-hex-spin {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  transform-style: preserve-3d;
  transform-origin: center center;
  animation: arl-logo-spin 4s linear infinite;
  will-change: transform;
}

.logo-hex {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.logo-hex-front {
  transform: translateZ(1px);
}

.logo-hex-back {
  transform: rotateY(180deg) translateZ(1px);
}

.hero-logo-wrap {
  width: 100%;
  max-width: min(400px, 38vw);
  margin-left: auto;
  margin-right: 0;
}

.hero-logo-wrap::after {
  content: '';
  position: absolute;
  inset: 8%;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.2), transparent 68%);
  z-index: 0;
}

@keyframes arl-logo-spin {
  from { transform: rotateY(0deg); }
  to { transform: rotateY(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .logo-hex-spin { animation-duration: 6s; }
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: clamp(0.35rem, 1.2vw, 1rem);
  list-style: none;
  min-width: 0;
  flex-wrap: wrap;
}

.nav-links a {
  color: #f5f5f5;
  text-decoration: none;
  font-size: clamp(0.88rem, 1vw, 1.02rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: color 0.2s, text-shadow 0.2s;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--gold-light);
  text-shadow: 0 0 18px rgba(255, 215, 0, 0.25);
}

.nav-contact-btn {
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  padding: 0.55rem 1.15rem;
  white-space: nowrap;
}

.nav-contact-mobile { display: none; }

.nav-toggle { display: none; background: none; border: none; color: var(--text); font-size: 1.5rem; cursor: pointer; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 1.55rem;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: #000; font-weight: 700; font-size: var(--fs-sm);
  border: none; border-radius: 6px; cursor: pointer;
  text-decoration: none; transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3); }

.btn-outline {
  background: transparent;
  color: var(--gold-light);
  border: 2px solid var(--gold);
}

.btn-outline:hover { background: rgba(212, 175, 55, 0.1); color: var(--gold-light); }

.btn-sm { padding: 0.5rem 1rem; font-size: 0.85rem; }

/* Hero */
.hero {
  position: relative;
  min-height: min(88vh, 860px);
  display: flex;
  align-items: center;
  padding-top: 72px;
  padding-bottom: 2.5rem;
  overflow-x: clip;
  overflow-y: visible;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(212, 175, 55, 0.08), transparent),
    repeating-linear-gradient(0deg, transparent, transparent 9px, rgba(30, 61, 42, 0.15) 9px, rgba(30, 61, 42, 0.15) 10px),
    repeating-linear-gradient(90deg, transparent, transparent 9px, rgba(30, 61, 42, 0.15) 9px, rgba(30, 61, 42, 0.15) 10px);
}

.hero-grid {
  position: relative; z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding: clamp(2rem, 4vw, 3.5rem) 0 clamp(2rem, 3vw, 2.5rem);
}

.hero-content {
  max-width: 640px;
}

.eyebrow {
  font-family: var(--mono); font-size: 0.82rem;
  color: var(--gold); letter-spacing: 0.15em;
  text-transform: uppercase; margin-bottom: 0.5rem;
  font-weight: 700;
}

.hero h1 {
  font-size: clamp(3.25rem, 7vw, 5.25rem);
  font-weight: 900; line-height: 1;
  background: linear-gradient(180deg, #fff 30%, var(--gold-light) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.65rem;
}

.hero-tagline {
  font-size: clamp(1.1rem, 1.75vw, 1.35rem);
  font-weight: 700;
  line-height: 1.48;
  color: #ececec;
  max-width: 100%;
  margin-bottom: 0.85rem;
}

.hero-tagline strong {
  color: var(--gold-light);
  font-weight: 800;
}

.hero-sub {
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  color: #cdd6d0;
  max-width: 100%;
  margin-bottom: 1.5rem;
  line-height: var(--lh-relaxed);
  font-weight: 500;
}

.hero-sub strong { color: #fff; font-weight: 700; }

.hero-badge {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 4px;
  padding: 0.4rem 0.7rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}

/* Promo marquee */
.promo-marquee {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(90deg, rgba(139, 105, 20, 0.15), rgba(10, 18, 16, 0.9), rgba(139, 105, 20, 0.15));
  padding: 0.65rem 0;
}

.promo-marquee-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: promo-scroll 40s linear infinite;
  white-space: nowrap;
}

.promo-marquee-track span {
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--gold-light);
}

@keyframes promo-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .promo-marquee-track { animation: none; flex-wrap: wrap; width: 100%; justify-content: center; padding: 0 1rem; }
}

/* AI competitive edge banner */
.ai-edge-banner {
  position: relative;
  padding: 1.5rem 0 1.75rem;
  background: rgba(10, 18, 16, 0.85);
  border-bottom: 1px solid var(--border);
}

.ai-edge-inner { display: flex; flex-direction: column; gap: 1rem; }

.ai-edge-header { display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.5rem 1rem; }

.ai-edge-tag {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.ai-edge-title {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
  margin: 0;
}

.ai-edge-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  max-width: 100%;
}

.ai-edge-col {
  padding: 0.85rem 1rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: rgba(10, 18, 16, 0.5);
}

.ai-edge-col--arl {
  border-color: rgba(212, 175, 55, 0.35);
  background: rgba(212, 175, 55, 0.06);
}

.ai-edge-col h3 {
  font-size: 0.78rem;
  font-weight: 700;
  font-family: var(--mono);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.ai-edge-col--arl h3 { color: var(--gold-light); }
.ai-edge-col--other h3 { color: var(--text-muted); }

.ai-edge-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.ai-edge-list li {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
  padding-left: 0.85rem;
  position: relative;
}

.ai-edge-list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.ai-edge-col--other .ai-edge-list li::before { color: var(--text-muted); }

.ai-edge-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  max-width: 100%;
  line-height: 1.55;
  margin: 0;
}

.ai-edge-note strong { color: var(--gold-light); font-weight: 600; }

@media (max-width: 560px) {
  .ai-edge-compare { grid-template-columns: 1fr; }
}

/* Promo CTA banner */
.promo-cta {
  padding: 2.5rem 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(10, 18, 16, 0.95));
  border-bottom: 1px solid var(--border);
}

.promo-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.promo-cta-tag {
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}

.promo-cta-text h2 {
  font-size: 1.5rem;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
  max-width: 520px;
}

.promo-cta-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 560px;
}

.promo-cta-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* EV leader section */
.ev-leader {
  background: linear-gradient(180deg, rgba(10, 18, 16, 0.5), transparent);
}

.section-eyebrow {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  display: block;
  margin-bottom: 0.75rem;
}

.ev-lead { max-width: 720px; }

.ev-lead strong { color: var(--gold-light); }

.ev-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.ev-pillar {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  transition: border-color 0.2s, transform 0.2s;
}

.ev-pillar:hover {
  border-color: var(--gold-dark);
  transform: translateY(-3px);
}

.ev-pillar-icon {
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.ev-pillar h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--gold-light);
}

.ev-pillar p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.ev-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.ev-highlight-card {
  text-align: center;
  padding: 1.75rem 1.25rem;
  border: 1px solid var(--gold-dark);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.08), var(--bg-card));
}

.ev-highlight-num {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  font-family: var(--mono);
  color: var(--gold-light);
  margin-bottom: 0.35rem;
}

.ev-highlight-card strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.ev-highlight-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.ev-subtitle {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--gold-light);
  margin: 3rem 0 0.75rem;
}

.ev-market-desc,
.ev-systems-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 720px;
  margin-bottom: 1.5rem;
}

.ev-market-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.ev-market-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.25rem;
  text-align: center;
}

.ev-market-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  font-family: var(--mono);
  color: var(--gold-light);
  margin-bottom: 0.35rem;
}

.ev-market-item span:last-child {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.ev-systems-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.ev-system-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.25rem;
  transition: border-color 0.2s;
}

.ev-system-card:hover { border-color: var(--gold-dark); }

.ev-system-card strong {
  display: block;
  font-family: var(--mono);
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.ev-system-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.ev-protocols-block p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  max-width: 680px;
}

.ev-proto-tags { margin-bottom: 0; }

.ev-coverage-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 12px;
}

.ev-coverage-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.ev-coverage-table th,
.ev-coverage-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.ev-coverage-table th {
  background: rgba(212, 175, 55, 0.08);
  color: var(--gold-light);
  font-family: var(--mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.ev-coverage-table td:first-child {
  font-weight: 700;
  color: var(--gold-light);
  white-space: nowrap;
}

.ev-coverage-table tbody tr:last-child td { border-bottom: none; }

.ev-coverage-table tbody tr:hover { background: rgba(212, 175, 55, 0.04); }

.ev-safety-desc,
.ev-coverage > p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  max-width: 680px;
}

.ev-safety-steps {
  list-style: none;
  counter-reset: ev-step;
  display: grid;
  gap: 0.75rem;
}

.ev-safety-steps li {
  counter-increment: ev-step;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem 1.25rem 1rem 3rem;
  position: relative;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.ev-safety-steps li::before {
  content: counter(ev-step);
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--gold-dark);
  color: #000;
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ev-safety-steps li strong { color: var(--text); }

.ev-func-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.ev-func-grid span {
  font-size: 0.82rem;
  padding: 0.45rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text-muted);
  background: var(--bg-card);
}

.ev-functions > p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  max-width: 680px;
}

/* Promotions grid */
.promotions { background: rgba(10, 18, 16, 0.4); }

.promo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.promo-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}

.promo-card:hover {
  border-color: var(--gold-dark);
  transform: translateY(-3px);
}

.promo-card--hot {
  border-color: var(--gold-dark);
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.1), var(--bg-card));
}

.promo-card-badge {
  font-family: var(--mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.promo-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--gold-light);
}

.promo-card > p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  flex-grow: 1;
}

.promo-card-list {
  list-style: none;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.promo-card-list li::before { content: '✓ '; color: var(--gold); }

.promo-card-list li { margin-bottom: 0.3rem; }

.product-card--ev-wide { grid-column: 1 / -1; }

.product-features--cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.25rem 1.5rem;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }

.nice-badges { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.nice-badges span {
  font-family: var(--mono); font-size: 0.75rem;
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 4px; color: var(--gold);
  background: rgba(10, 18, 16, 0.8);
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  overflow: visible;
  padding-right: clamp(0rem, 2vw, 1.5rem);
}

/* Sections */
.section { padding: 5rem 0; }

.section-title {
  font-size: var(--fs-2xl); font-weight: 800; margin-bottom: 0.85rem;
  color: var(--gold-light);
}

.section-desc {
  color: var(--text-muted);
  font-size: var(--fs-lg);
  line-height: var(--lh-relaxed);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

/* Cards */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px; padding: 1.75rem;
  transition: border-color 0.2s, transform 0.2s;
}

.card:hover { border-color: var(--gold-dark); transform: translateY(-4px); }

.card-icon {
  color: var(--gold);
  margin-bottom: 1rem;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--gold-dark); border-radius: 8px;
  background: rgba(212, 175, 55, 0.06);
}

.card-icon svg {
  width: 26px;
  height: 26px;
  display: block;
}

.card h3 { font-size: 1.15rem; margin-bottom: 0.75rem; }

.card p { color: var(--text-muted); font-size: var(--fs-sm); margin-bottom: 1rem; line-height: var(--lh-relaxed); }

.card ul { list-style: none; font-size: var(--fs-xs); color: var(--text-muted); line-height: 1.65; }

.card li::before { content: '▸ '; color: var(--gold); }

.card li { margin-bottom: 0.35rem; }

/* Stats band */
.stats-band {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(10, 18, 16, 0.6);
  padding: 2rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stat-num {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--gold-light);
  font-family: var(--mono);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Products */
.products { background: linear-gradient(180deg, rgba(10, 18, 16, 0.3), transparent); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}

.product-card:hover { border-color: var(--gold-dark); transform: translateY(-3px); }

.product-card--featured {
  border-color: var(--gold-dark);
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.08), var(--bg-card));
}

.product-tag {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.product-card h3 { font-size: 1.15rem; margin-bottom: 0.25rem; }

.product-version {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.product-card > p { color: var(--text-muted); font-size: var(--fs-sm); margin-bottom: 1rem; flex-grow: 1; line-height: var(--lh-relaxed); }

.product-features {
  list-style: none;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.product-features li::before { content: '✓ '; color: var(--gold); }

.product-features li { margin-bottom: 0.3rem; }

.btn-block { display: block; text-align: center; width: 100%; }

/* Features grid */
.features { background: rgba(5, 8, 8, 0.5); }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.feature-item {
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-card);
  transition: border-color 0.2s;
}

.feature-item:hover { border-color: var(--gold-dark); }

.feature-icon {
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
}

.feature-item h3 { font-size: 1.02rem; margin-bottom: 0.5rem; }

.feature-item p { font-size: var(--fs-xs); color: var(--text-muted); line-height: var(--lh-relaxed); }

/* Workflow */
.workflow-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  counter-reset: step;
}

.workflow-step {
  position: relative;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-card);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: #000;
  font-weight: 800;
  font-family: var(--mono);
  border-radius: 50%;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.workflow-step h3 { font-size: 1rem; margin-bottom: 0.5rem; }

.workflow-step p { font-size: 0.85rem; color: var(--text-muted); }

/* Use cases */
.usecases { background: linear-gradient(180deg, transparent, rgba(10, 18, 16, 0.4)); }

/* Tech */
.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.tech-tags span {
  font-family: var(--mono);
  font-size: 0.8rem;
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--gold);
  background: rgba(212, 175, 55, 0.05);
}

.tech-brands p {
  font-size: 0.8rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.brand-list { color: var(--text-muted); font-size: 0.95rem; line-height: 1.8; }

/* About values */
.about-values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.value-item strong {
  display: block;
  color: var(--gold-light);
  margin-bottom: 0.35rem;
  font-size: 1rem;
  font-weight: 800;
}

.value-item p { font-size: var(--fs-sm); color: #cdd6d0; margin: 0; line-height: var(--lh-relaxed); }

/* AI Tech platform */
.ai-tech {
  background: linear-gradient(180deg, rgba(10, 18, 16, 0.55), rgba(212, 175, 55, 0.03));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.aitech-lead { max-width: 780px; }

.aitech-lead strong { color: var(--gold-light); }

.aitech-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin: 2rem 0 2.5rem;
}

.aitech-stat {
  text-align: center;
  padding: 1.5rem 1rem;
  border: 1px solid var(--gold-dark);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.08), var(--bg-card));
}

.aitech-stat-num {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 0.35rem;
  font-family: var(--mono);
}

.aitech-stat span:last-child {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.aitech-cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.aitech-cap-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  transition: border-color 0.2s, transform 0.2s;
}

.aitech-cap-card:hover {
  border-color: var(--gold-dark);
  transform: translateY(-3px);
}

.aitech-cap-card strong {
  display: block;
  color: var(--gold-light);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.aitech-cap-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

.aitech-stack-tags { margin-bottom: 2.5rem; }

.aitech-doc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.aitech-doc-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.25rem;
  transition: border-color 0.2s, transform 0.2s;
}

.aitech-doc-card:hover {
  border-color: var(--gold-dark);
  transform: translateY(-2px);
}

.aitech-doc-icon {
  display: block;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.aitech-doc-card strong {
  display: block;
  font-size: 0.85rem;
  color: var(--gold-light);
  margin-bottom: 0.4rem;
  line-height: 1.35;
}

.aitech-doc-card p {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .aitech-stats { grid-template-columns: repeat(2, 1fr); }
  .aitech-cap-grid { grid-template-columns: repeat(2, 1fr); }
  .aitech-doc-grid { grid-template-columns: repeat(2, 1fr); }
  .about-values { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .aitech-stats,
  .aitech-cap-grid,
  .aitech-doc-grid { grid-template-columns: 1fr; }
}

/* AI Insights articles */
.ai-insights {
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.04), transparent);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.ai-articles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.ai-article-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}

.ai-article-card:hover {
  border-color: var(--gold-dark);
  transform: translateY(-3px);
}

.ai-article-card--featured {
  grid-column: 1 / -1;
  border-color: var(--gold-dark);
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.1), var(--bg-card));
}

.ai-article-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--text-muted);
}

.ai-article-tag {
  padding: 0.2rem 0.5rem;
  border: 1px solid var(--gold-dark);
  border-radius: 4px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.6rem;
}

.ai-article-card h3 {
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: 0.65rem;
  line-height: 1.35;
}

.ai-article-card--featured h3 { font-size: 1.25rem; }

.ai-article-excerpt {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.65;
  flex-grow: 1;
}

.ai-article-details summary {
  cursor: pointer;
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.ai-article-details summary::-webkit-details-marker { display: none; }

.ai-article-details summary::after {
  content: '→';
  transition: transform 0.2s;
}

.ai-article-details[open] summary::after { transform: rotate(90deg); }

.ai-article-body {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.ai-article-body p { margin-bottom: 0.85rem; }

.ai-article-body p:last-child { margin-bottom: 0; }

.ai-article-body em { color: var(--gold-light); font-style: normal; }

.ai-insights-cta { text-align: center; }

/* Download */
.download { background: linear-gradient(180deg, rgba(10, 18, 16, 0.5), transparent); }

.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.download-grid--mobile {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 1.5rem;
}

.download-grid--drivers {
  margin-bottom: 2.5rem;
}

.download-card--featured {
  border-color: var(--gold-dark);
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.08), var(--bg-card));
}

.download-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}

.download-card:hover { border-color: var(--gold-dark); transform: translateY(-3px); }

.download-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--gold-dark);
  border-radius: 8px;
  color: var(--gold);
  background: rgba(212, 175, 55, 0.06);
  margin-bottom: 1rem;
}

.download-icon svg { width: 22px; height: 22px; }

.download-os {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
}

.download-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }

.download-card > p {
  color: var(--text-muted);
  font-size: 0.88rem;
  flex-grow: 1;
  margin-bottom: 1rem;
}

.download-meta {
  display: flex;
  gap: 1rem;
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.download-meta span:first-child { color: var(--gold); }

.download-guide {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem 2rem;
  background: var(--bg-card);
}

.download-guide h3 {
  font-size: 1rem;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.download-guide ol {
  margin-left: 1.25rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.download-guide li { margin-bottom: 0.5rem; }

.download-note {
  margin-top: 1.25rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
}

/* FAQ */
.faq { background: rgba(10, 18, 16, 0.3); }

.faq-list { max-width: 720px; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 0.75rem;
  background: var(--bg-card);
  overflow: hidden;
}

.faq-item summary {
  padding: 1rem 1.25rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  float: right;
  color: var(--gold);
  font-family: var(--mono);
}

.faq-item[open] summary::after { content: '−'; }

.faq-item p {
  padding: 0 1.25rem 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Footer links */
.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #c8d2cb;
  text-decoration: none;
  font-size: var(--fs-sm);
  font-weight: 600;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold-light); }

/* Trademark */
.trademark { background: linear-gradient(180deg, transparent, rgba(10, 18, 16, 0.5)); }

.trademark-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}

.lead { font-size: 1.05rem; margin-bottom: 1rem; }

.trademark p { color: var(--text-muted); margin-bottom: 1rem; }

.tm-info {
  display: grid; gap: 1rem; margin-top: 2rem;
  padding: 1.5rem; border: 1px solid var(--border); border-radius: 8px;
}

.tm-info span { font-size: 0.75rem; color: var(--gold); text-transform: uppercase; letter-spacing: 0.1em; }

.tm-info p { margin: 0; color: var(--text); font-size: 0.95rem; }

.tm-visual {
  text-align: center; padding: 3rem;
  border: 2px solid var(--gold-dark); border-radius: 16px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.05), transparent);
}

.tm-wordmark {
  font-size: 5rem; font-weight: 900;
  background: linear-gradient(180deg, #fff, var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tm-sub {
  font-family: var(--mono); font-size: 0.85rem;
  color: var(--text-muted); letter-spacing: 0.2em; margin-top: 0.5rem;
}

/* About */
.about-wrap .section-title { margin-bottom: 1.75rem; }

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) min(380px, 100%);
  gap: clamp(1.5rem, 3vw, 2.75rem);
  align-items: start;
}

.about-story p {
  color: #d5ddd7;
  margin-bottom: 1.1rem;
  font-size: var(--fs-lg);
  line-height: var(--lh-relaxed);
}

.about-story p strong {
  color: #fff;
  font-weight: 700;
}

.about-trust-card {
  background: linear-gradient(145deg, rgba(10, 18, 16, 0.95), rgba(212, 175, 55, 0.06));
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 12px;
  padding: 1.35rem 1.5rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.about-trust-badge {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 4px;
  padding: 0.35rem 0.6rem;
  margin-bottom: 0.85rem;
}

.about-trust-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
}

.about-trust-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.1rem;
  line-height: 1.55;
}

.about-trust-list { margin: 0; }

.about-trust-row {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 0.65rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(30, 61, 42, 0.65);
}

.about-trust-row:last-of-type { border-bottom: none; }

.about-trust-row dt {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold);
}

.about-trust-row dd {
  margin: 0;
  font-size: 0.92rem;
  color: #e8ece9;
  line-height: 1.5;
  font-weight: 600;
}

.about-trust-row a {
  color: var(--gold-light);
  text-decoration: none;
}

.about-trust-row a:hover { text-decoration: underline; }

.about-trust-note {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
  font-style: italic;
}

/* Contact */
.contact-box {
  max-width: 520px; margin: 0 auto; text-align: center;
}

.contact-box h2 { margin-bottom: 0.5rem; }

.contact-box > p { color: var(--text-muted); margin-bottom: 2rem; font-size: var(--fs-lg); line-height: var(--lh-relaxed); }

.contact-form {
  display: flex; flex-direction: column; gap: 1rem; text-align: left;
}

.contact-form input,
.contact-form textarea {
  padding: 0.85rem 1rem;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 6px; color: var(--text); font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none; border-color: var(--gold);
}

.contact-note { margin-top: 1rem; }

.contact-lines {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
}

.contact-line {
  margin: 0;
  font-size: var(--fs-sm);
  color: var(--text-muted);
  line-height: var(--lh-relaxed);
}

.contact-line a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
}

.contact-line a:hover { color: var(--gold-light); text-decoration: underline; }

.contact-box .contact-lines { text-align: center; }

.footer-contact {
  margin-top: 0.55rem;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0; margin-top: 2rem;
}

.footer-inner { text-align: center; }

.footer-brand { font-size: 1.2rem; margin-bottom: 0.65rem; font-weight: 700; }

.footer-brand strong { color: var(--gold-light); }

.footer p {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  line-height: var(--lh-relaxed);
}

.footer-copy {
  text-align: center;
  margin-top: 1rem;
  font-weight: 600;
  color: #c8d2cb;
}

.footer-domain {
  margin-top: 0.5rem;
}

.footer-domain a {
  color: var(--gold);
  text-decoration: none;
}

.footer-domain a:hover { color: var(--gold-light); }

.contact-note a { color: var(--gold); }

/* Responsive */
@media (max-width: 768px) {
  .nav {
    display: flex;
    justify-content: space-between;
    height: 64px;
  }

  .nav-toggle { display: block; }

  .nav-actions { gap: 0.5rem; }

  .nav-contact-btn { display: none; }

  .nav-contact-mobile { display: list-item; }

  .nav-contact-mobile a {
    color: var(--gold-light);
    font-weight: 800;
  }

  .nav-links {
    display: none; position: absolute; top: 64px; left: 0; right: 0;
    flex-direction: column; background: var(--bg);
    padding: 1rem; border-bottom: 1px solid var(--border);
    width: 100%;
    justify-content: flex-start;
    gap: 0.5rem;
  }

  .nav-links a {
    font-size: 1rem;
    font-weight: 700;
    padding: 0.35rem 0;
  }

  .nav-links.open { display: flex; }

  .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 2rem; }

  .hero-content { max-width: none; margin: 0 auto; }

  .hero-tagline { margin-left: auto; margin-right: auto; }

  .hero-sub { margin-left: auto; margin-right: auto; }

  .hero-actions { justify-content: center; }

  .nice-badges { justify-content: center; }

  .hero-visual { order: -1; justify-content: center; padding-right: 0; }

  .hero-logo-wrap { max-width: 220px; margin-left: auto; margin-right: auto; }

  .trademark-grid { grid-template-columns: 1fr; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .product-grid { grid-template-columns: 1fr; }

  .product-features--cols { grid-template-columns: 1fr; }

  .ev-pillars { grid-template-columns: 1fr; }

  .ev-highlights { grid-template-columns: 1fr; }

  .ev-market-grid { grid-template-columns: repeat(2, 1fr); }

  .ev-systems-grid { grid-template-columns: 1fr; }

  .promo-grid { grid-template-columns: 1fr; }

  .promo-cta-inner { flex-direction: column; text-align: center; }

  .promo-cta-actions { justify-content: center; }

  .promo-cta-text h2, .promo-cta-text p { max-width: none; }

  .ai-articles-grid { grid-template-columns: 1fr; }

  .ai-article-card--featured { grid-column: auto; }

  .feature-grid { grid-template-columns: repeat(2, 1fr); }

  .workflow-steps { grid-template-columns: 1fr; }

  .about-layout { grid-template-columns: 1fr; }

  .about-trust-card { order: -1; }

  .about-values { grid-template-columns: 1fr; }

  .download-grid { grid-template-columns: 1fr; }

  .download-grid--mobile { grid-template-columns: 1fr; }

  .nav-links { gap: 0.75rem; font-size: 0.85rem; }
}
