

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

:root {
  --c-bg:      #0a0a0f;
  --c-bg-alt:  #0f0f1a;
  --c-fg:      #f0f0f5;
  --c-muted:   #7a7a9a;
  --c-accent:  #00e5ff;
  --c-accent2: #ff3a6e;
  --c-border:  rgba(0,229,255,0.18);
  --c-card:    #13131f;

  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: 4rem;
  --space-6: 7rem;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --font-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body:    'Inter', 'Helvetica Neue', sans-serif;

  --z-base:  0;
  --z-mid:   10;
  --z-high:  100;
  --z-top:   1000;
}

html {
  background: var(--c-bg);
  color: var(--c-fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--c-bg);
  color: var(--c-fg);
  font-family: var(--font-body);
}

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

a {
  color: var(--c-accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul, ol {
  list-style: none;
}

.site-header {
  background: rgba(10,10,15,0.96);
  border-bottom: 1px solid var(--c-border);
}

.site-header .container {
  display: flex;
  align-items: center;
  height: 72px;
  gap: var(--space-2);
}

.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: var(--space-4);
}

.logo-link {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  text-decoration: none;
}

.logo-link img {
  width: 40px;
  height: 40px;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-fg);
}

.brand-name span {
  color: var(--c-accent);
}

.page-hero {
  background: var(--c-bg-alt);
  padding-block: var(--space-5);
  border-bottom: 1px solid var(--c-border);
}

.page-hero .t-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: var(--space-2);
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.page-hero .t-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--c-accent);
}

.page-hero .t-h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}

.page-hero .t-body {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: var(--c-muted);
  max-width: 64ch;
  line-height: 1.6;
}

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

.aux-main {
  padding-block: var(--space-6);
}

.content-narrow {
  max-width: 780px;
  margin-inline: auto;
}

.about-blocks {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.about-block {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-5);
  align-items: center;
  padding-bottom: var(--space-5);
  border-bottom: 1px solid var(--c-border);
}

.about-block:last-child {
  border-bottom: none;
}

.about-block.reverse {
  direction: rtl;
}

.about-block.reverse > * {
  direction: ltr;
}

.about-block-img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--c-border);
  box-shadow: 0 0 60px rgba(0,229,255,0.08);
}

.about-block-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-block-text .t-h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: var(--space-3);
}

.about-block-text .t-body {
  font-size: 0.97rem;
  color: var(--c-muted);
  line-height: 1.7;
  margin-bottom: var(--space-2);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.value-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  text-align: center;
}

.value-icon {
  font-size: 2rem;
  margin-bottom: var(--space-2);
}

.value-card .t-h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-1);
}

.value-card .t-body {
  font-size: 0.85rem;
  color: var(--c-muted);
  line-height: 1.5;
}

.legal-content {
  font-size: 0.97rem;
  line-height: 1.75;
  color: var(--c-muted);
}

.legal-content h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--c-fg);
  margin-top: var(--space-5);
  margin-bottom: var(--space-2);
}

.legal-content p {
  margin-bottom: var(--space-3);
}

.legal-content a {
  color: var(--c-accent);
}

.legal-effective {
  font-size: 0.82rem;
  color: var(--c-muted);
  margin-bottom: var(--space-4);
  padding: var(--space-2) var(--space-3);
  border-left: 3px solid var(--c-accent);
  background: rgba(0,229,255,0.04);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.site-footer {
  background: var(--c-bg-alt);
  padding-block: var(--space-5);
  border-top: 1px solid var(--c-border);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--space-5);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--c-border);
}

.footer-tagline {
  font-size: 0.88rem;
  color: var(--c-muted);
  line-height: 1.6;
  margin-top: var(--space-2);
  max-width: 28ch;
}

.footer-col-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--c-fg);
  margin-bottom: var(--space-3);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--c-muted);
}

.footer-links a:hover {
  color: var(--c-accent);
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-4);
  gap: var(--space-3);
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.82rem;
  color: var(--c-muted);
}

.footer-legal {
  display: flex;
  gap: var(--space-3);
}

.footer-legal a {
  font-size: 0.82rem;
  color: var(--c-muted);
}

.footer-legal a:hover {
  color: var(--c-accent);
}

@media (min-width: 641px) and (max-width: 1024px) {
  .container {
    padding-inline: var(--space-3);
  }

  .about-block {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }

  .about-block.reverse {
    direction: ltr;
  }

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

  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
  }
}

@media (max-width: 640px) {
  .container {
    padding-inline: var(--space-2);
  }

  .about-block {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }

  .about-block.reverse {
    direction: ltr;
  }

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

  .footer-inner {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }

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

.about-block-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}



.cookie-legal > a { color: #81819f !important; }
.cookie-category-label > strong { color: #545456 !important; }
.cookie-category .cookie-category-desc { color: #55556c !important; }
.cookie-text > a { color: #81819f !important; }

/* wh-img-fill */
.about-block-img img,
.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}



/* wh-elem-contrast */
/* Auto: element text failed 4.5:1 against its resolved background. */
.value-card .t-body { color: #81819f !important; }
.cookie-banner .cookie-text { color: #81819f !important; }
.cookie-legal > a { color: #81819f !important; }
.hero .hero-title { color: #242425 !important; }
.hero .accent { color: #002e33 !important; }
.hero .line-dim { color: #25252e !important; }
.hero .hero-desc { color: #25252e !important; }
.hero .btn-outline { color: #002e33 !important; }
.intro-card .t-body { color: #81819f !important; }
.feature-card .t-body { color: #81819f !important; }
.step-card .t-body { color: #81819f !important; }
.product-card .t-body { color: #81819f !important; }
.product-card .product-price-unit { color: #81819f !important; }
.capability-card .t-body { color: #81819f !important; }
.contact-form .form-label { color: #81819f !important; }
.cookie-category-label > strong { color: #545456 !important; }
.cookie-category .cookie-category-desc { color: #55556c !important; }
.cookie-text > a { color: #81819f !important; }
