/*
Theme Name: Wellock Security
Theme URI: https://www.wellocksecurity.co.zw
Author: Wellock Security Pvt Ltd
Description: Custom WordPress theme for Wellock Security — Zimbabwe's technology-driven cash management and secure financial logistics company. Dark tactical design with amber accents, converted from the original React site.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wellock-security
*/

/* ==========================================================================
   Design tokens
   ========================================================================== */
:root {
  --wl-bg: #0A0A0B;
  --wl-bg-alt: #0D0D0E;
  --wl-text: #E2E2E2;
  --wl-amber: #FFB800;
  --wl-slate: #2A2C2F;
  --wl-font-space: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
  --wl-font-inter: 'Inter', ui-sans-serif, system-ui, sans-serif;
  --wl-font-mono: 'JetBrains Mono', ui-monospace, monospace;
}

/* ==========================================================================
   Base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--wl-bg);
  color: var(--wl-text);
  font-family: var(--wl-font-inter);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--wl-font-space);
  margin: 0;
}

p { margin: 0; }

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

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

button {
  font: inherit;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  padding: 0;
}

ul { margin: 0; padding: 0; list-style: none; }

*:focus-visible {
  outline: 2px solid var(--wl-amber);
  outline-offset: 2px;
}

/* The hidden attribute must win over any component display rule. */
[hidden] { display: none !important; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--wl-bg); }
::-webkit-scrollbar-thumb { background: var(--wl-slate); border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: var(--wl-amber); }

/* Screen-reader-only text */
.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  clip-path: inset(50%);
  overflow: hidden;
  word-wrap: normal !important;
}

/* ==========================================================================
   Utilities
   ========================================================================== */
.font-space { font-family: var(--wl-font-space); }
.font-inter { font-family: var(--wl-font-inter); }
.font-mono-jb { font-family: var(--wl-font-mono); }

.wl-amber { color: var(--wl-amber); }

.wl-container { max-width: 80rem; margin-inline: auto; }
.wl-container-md { max-width: 56rem; margin-inline: auto; }
.wl-container-sm { max-width: 48rem; margin-inline: auto; }

.wl-section {
  padding: 6rem 1.5rem;
  background: var(--wl-bg);
}
.wl-section--alt { background: var(--wl-bg-alt); }
.wl-section--bordered { border-top: 1px solid var(--wl-slate); }

.laser-line {
  height: 0.5px;
  background: linear-gradient(90deg, transparent, var(--wl-amber), transparent);
}

.scan-overlay {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(255, 184, 0, 0.015) 2px,
    rgba(255, 184, 0, 0.015) 4px
  );
  pointer-events: none;
}

@keyframes glitch {
  0% { transform: translateX(0); }
  20% { transform: translateX(-2px); }
  40% { transform: translateX(2px); }
  60% { transform: translateX(-1px); }
  80% { transform: translateX(1px); }
  100% { transform: translateX(0); }
}
.glitch-hover:hover { animation: glitch 0.3s ease forwards; }

@keyframes bounce {
  0%, 100% { transform: translateY(-25%); animation-timing-function: cubic-bezier(0.8, 0, 1, 1); }
  50% { transform: none; animation-timing-function: cubic-bezier(0, 0, 0.2, 1); }
}
.animate-bounce { animation: bounce 1s infinite; }

@keyframes spin { to { transform: rotate(360deg); } }
.animate-spin { animation: spin 1s linear infinite; }

/* Mono eyebrow label + laser line row */
.wl-eyebrow-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.wl-eyebrow {
  font-family: var(--wl-font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--wl-amber);
  white-space: nowrap;
}
.wl-eyebrow-row .laser-line { flex: 1; max-width: 20rem; }

/* Section heading */
.wl-heading {
  font-weight: 700;
  line-height: 1;
  color: var(--wl-text);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  margin-bottom: 1rem;
}
.wl-heading .wl-amber { color: var(--wl-amber); }

.wl-lead {
  color: var(--wl-text);
  opacity: 0.6;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 42rem;
  margin-bottom: 3rem;
}

/* Buttons */
.wl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: var(--wl-font-space);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s;
  border: 1px solid transparent;
}
.wl-btn--solid {
  background: var(--wl-amber);
  color: var(--wl-bg);
  border-color: var(--wl-amber);
}
.wl-btn--solid:hover {
  background: transparent;
  color: var(--wl-amber);
}
.wl-btn--glow { box-shadow: 0 0 30px rgba(255, 184, 0, 0.3); }
.wl-btn--lg { padding: 1rem 2rem; }
.wl-btn--outline {
  background: transparent;
  color: var(--wl-text);
  border-color: var(--wl-slate);
}
.wl-btn--outline:hover { border-color: var(--wl-amber); color: var(--wl-amber); }
.wl-btn--outline-amber {
  background: transparent;
  color: var(--wl-amber);
  border-color: var(--wl-amber);
  font-size: 0.75rem;
  padding: 0.625rem 1.25rem;
  font-weight: 600;
}
.wl-btn--outline-amber:hover { background: var(--wl-amber); color: var(--wl-bg); }

/* "Learn more" inline link */
.wl-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--wl-font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wl-amber);
}
.wl-learn-more svg { transition: transform 0.2s; }
.wl-learn-more:hover svg { transform: translateX(4px); }

/* Icon tile */
.wl-icon-tile {
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 184, 0, 0.1);
  border: 1px solid rgba(255, 184, 0, 0.2);
  color: var(--wl-amber);
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

/* Grids */
.wl-grid { display: grid; gap: 0.125rem; }
.wl-grid--gap { gap: 1rem; }
.wl-grid-2, .wl-grid-3, .wl-grid-4, .wl-grid-5 { grid-template-columns: 1fr; }

@media (min-width: 640px) {
  .wl-grid-3.wl-grid--sm2, .wl-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .wl-grid-3--sm { grid-template-columns: repeat(3, 1fr); }
  .wl-grid-5 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
  .wl-grid-2 { grid-template-columns: repeat(2, 1fr); }
  .wl-grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .wl-grid-3 { grid-template-columns: repeat(3, 1fr); }
  .wl-grid-4 { grid-template-columns: repeat(4, 1fr); }
  .wl-grid-5 { grid-template-columns: repeat(5, 1fr); }
}

/* Slab (bordered dark card) */
.wl-slab {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  background: rgba(42, 44, 47, 0.2);
  border: 1px solid var(--wl-slate);
  transition: border-color 0.3s, background 0.3s;
}
.wl-slab--hover:hover {
  border-color: rgba(255, 184, 0, 0.4);
  background: rgba(255, 184, 0, 0.06);
}
.wl-slab__num {
  font-family: var(--wl-font-mono);
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1;
  color: var(--wl-slate);
  margin-bottom: 1rem;
}
.wl-slab__title {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--wl-text);
  margin-bottom: 0.5rem;
}
.wl-slab__desc {
  font-size: 0.875rem;
  color: var(--wl-text);
  opacity: 0.55;
  line-height: 1.5;
}

/* Stat tile */
.wl-stat {
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  border: 1px solid var(--wl-slate);
}
.wl-stat__value {
  font-family: var(--wl-font-space);
  font-weight: 700;
  font-size: 1.875rem;
  color: var(--wl-amber);
}
.wl-stat__label {
  font-family: var(--wl-font-mono);
  font-size: 0.7rem;
  margin-top: 0.5rem;
  line-height: 1.25;
  color: var(--wl-text);
  opacity: 0.5;
}

/* Framed image with scanline overlay */
.wl-media {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--wl-slate);
}
.wl-media img {
  display: block;
  width: 100%;
  object-fit: cover;
  filter: brightness(0.7) saturate(0.8);
}
.wl-media__tag {
  position: absolute;
  font-family: var(--wl-font-mono);
  font-size: 0.65rem;
  color: var(--wl-amber);
}
.wl-media__tag--tl { top: 0.75rem; left: 0.75rem; }
.wl-media__tag--bl { bottom: 0.75rem; left: 0.75rem; }
.wl-media__tag--br { bottom: 0.75rem; right: 0.75rem; }

/* Highlight panel (amber-tinted callout) */
.wl-panel-amber {
  border: 1px solid rgba(255, 184, 0, 0.25);
  background: rgba(255, 184, 0, 0.04);
  padding: 2.5rem;
}

/* ==========================================================================
   Navbar
   ========================================================================== */
.wl-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 1.25rem 0;
  transition: all 0.5s;
  background: transparent;
  border-bottom: 1px solid transparent;
}
.wl-nav--solid {
  padding: 0.75rem 0;
  background: rgba(10, 10, 11, 0.97);
  border-bottom-color: var(--wl-slate);
  backdrop-filter: blur(12px);
}
.wl-nav__inner {
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wl-nav__brand { display: flex; align-items: center; gap: 0.75rem; }
.wl-nav__brand img {
  width: 2.5rem; height: 2.5rem;
  object-fit: contain;
  border-radius: 0.25rem;
  mix-blend-mode: screen;
}
.wl-nav__brand-name {
  display: block;
  font-family: var(--wl-font-space);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  color: var(--wl-amber);
  line-height: 1.1;
}
.wl-nav__brand-sub {
  display: block;
  font-family: var(--wl-font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  color: var(--wl-text);
  opacity: 0.6;
  line-height: 1.1;
}
.wl-nav__links {
  display: none;
  align-items: center;
  gap: 1.75rem;
}
.wl-nav__link {
  font-family: var(--wl-font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wl-text);
  opacity: 0.8;
  transition: color 0.2s, opacity 0.2s;
}
.wl-nav__link:hover, .wl-nav__link--active {
  color: var(--wl-amber);
  opacity: 1;
}
.wl-nav__divider { width: 1px; height: 18px; background: var(--wl-slate); }
.wl-nav__cta {
  padding: 0.5rem 1.25rem;
  font-family: var(--wl-font-space);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--wl-amber);
  color: var(--wl-bg);
  border: 1px solid var(--wl-amber);
  transition: all 0.3s;
}
.wl-nav__cta:hover { background: transparent; color: var(--wl-amber); }
.wl-nav__burger {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px; min-height: 44px;
  color: var(--wl-text);
  border-radius: 0.25rem;
}
.wl-nav__burger .icon-close { display: none; }
.wl-nav__mobile {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.5rem;
  max-height: 80vh;
  overflow-y: auto;
  background: rgba(10, 10, 11, 0.98);
  border-top: 1px solid var(--wl-slate);
}
.wl-nav__mobile-link {
  font-family: var(--wl-font-mono);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wl-text);
  padding: 0.625rem 0;
}
.wl-nav__mobile-link--active { color: var(--wl-amber); }
.wl-nav__mobile-cta {
  margin-top: 0.75rem;
  padding: 0.75rem 1.25rem;
  text-align: center;
  font-family: var(--wl-font-space);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--wl-amber);
  color: var(--wl-bg);
}
.wl-nav--open .wl-nav__mobile { display: flex; }
.wl-nav--open .wl-nav__burger .icon-menu { display: none; }
.wl-nav--open .wl-nav__burger .icon-close { display: block; }
.wl-nav--open { background: rgba(10, 10, 11, 0.98); }

@media (min-width: 1024px) {
  .wl-nav__links { display: flex; }
  .wl-nav__burger, .wl-nav__mobile { display: none !important; }
}

/* ==========================================================================
   Hero (front page)
   ========================================================================== */
.wl-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--wl-bg);
}
.wl-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.8;
  transition: all 0.1s;
  -webkit-mask-image: radial-gradient(circle 280px at 50% 50%, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 100%);
  mask-image: radial-gradient(circle 280px at 50% 50%, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 100%);
}
.wl-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,11,0.75) 0%, rgba(10,10,11,0.6) 50%, rgba(10,10,11,0.95) 100%);
}
.wl-hero__corner {
  position: absolute;
  top: 6rem;
  font-family: var(--wl-font-mono);
  font-size: 0.65rem;
  color: var(--wl-amber);
  opacity: 0.3;
  line-height: 1.5;
}
.wl-hero__corner--left { left: 1.5rem; }
.wl-hero__corner--right { right: 1.5rem; text-align: right; }
.wl-hero__content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 8rem 1.5rem 6rem;
  max-width: 64rem;
  margin-inline: auto;
}
.wl-hero__badge {
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 184, 0, 0.2);
  backdrop-filter: blur(20px);
  box-shadow: 0 0 60px rgba(255,184,0,0.08), inset 0 0 30px rgba(255,184,0,0.03);
}
.wl-hero__badge img {
  width: 6rem; height: 6rem;
  object-fit: contain;
  mix-blend-mode: screen;
}
.wl-hero__badge-name {
  font-family: var(--wl-font-space);
  font-weight: 700;
  font-size: 1.875rem;
  letter-spacing: 0.3em;
  color: var(--wl-amber);
}
.wl-hero__badge-sub {
  font-family: var(--wl-font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  margin-top: 0.25rem;
  color: var(--wl-text);
  opacity: 0.6;
}
.wl-hero__title {
  font-weight: 700;
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--wl-text);
  margin-bottom: 1.5rem;
}
.wl-hero__tagline {
  max-width: 42rem;
  margin-bottom: 1rem;
  color: var(--wl-text);
  opacity: 0.7;
  font-size: 1.125rem;
  line-height: 1.6;
}
.wl-hero__chip {
  font-family: var(--wl-font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  margin-bottom: 2.5rem;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  color: var(--wl-amber);
  border: 1px solid rgba(255, 184, 0, 0.3);
  background: rgba(255, 184, 0, 0.05);
}
.wl-hero__ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.wl-hero__ctas .wl-btn { min-width: 220px; }
@media (min-width: 640px) {
  .wl-hero__ctas { flex-direction: row; }
}
.wl-hero .laser-line { width: 12rem; margin-bottom: 2rem; }
.wl-hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.5;
  transition: opacity 0.2s;
  color: var(--wl-text);
}
.wl-hero__scroll:hover { opacity: 1; }
.wl-hero__scroll span {
  font-family: var(--wl-font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
}
.wl-hero__scroll svg { color: var(--wl-amber); }

/* ==========================================================================
   Page header (interior pages)
   ========================================================================== */
.wl-page-header {
  position: relative;
  overflow: hidden;
  padding: 9rem 1.5rem 4rem;
  background: var(--wl-bg);
  border-bottom: 1px solid var(--wl-slate);
}
.wl-page-header__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  filter: grayscale(0.3) contrast(1.1);
}
.wl-page-header__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,11,0.7) 0%, rgba(10,10,11,0.9) 100%);
}
.wl-page-header__corner {
  position: absolute;
  top: 7rem;
  right: 1.5rem;
  font-family: var(--wl-font-mono);
  font-size: 0.6rem;
  color: var(--wl-amber);
  opacity: 0.25;
  text-align: right;
  line-height: 1.5;
  display: none;
}
@media (min-width: 640px) {
  .wl-page-header__corner { display: block; }
}
.wl-page-header__inner {
  position: relative;
  z-index: 10;
  max-width: 80rem;
  margin-inline: auto;
}
.wl-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-family: var(--wl-font-mono);
  font-size: 0.7rem;
}
.wl-breadcrumb a { color: var(--wl-text); opacity: 0.5; transition: all 0.2s; }
.wl-breadcrumb a:hover { color: var(--wl-amber); opacity: 1; }
.wl-breadcrumb svg { color: var(--wl-slate); }
.wl-breadcrumb__current { color: var(--wl-amber); text-transform: uppercase; }
.wl-page-header__eyebrow-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.wl-page-header__eyebrow-row .laser-line { flex: 1; max-width: 200px; }
.wl-page-header__title {
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 0.95;
  color: var(--wl-text);
  margin-bottom: 1.25rem;
}
.wl-page-header__subtitle {
  max-width: 42rem;
  color: var(--wl-text);
  opacity: 0.7;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* ==========================================================================
   Front page — highlights, process, CTA band
   ========================================================================== */
.wl-overview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 5rem;
}
@media (min-width: 1024px) {
  .wl-overview-grid { grid-template-columns: 1fr 1fr; }
}
.wl-overview-grid .wl-lead { margin-bottom: 2rem; }
.wl-stats-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.wl-teaser-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.wl-services-teaser { margin-bottom: 5rem; }
.wl-pillar {
  padding: 1.5rem;
  border: 1px solid var(--wl-slate);
  background: rgba(42, 44, 47, 0.15);
}
.wl-pillar__title {
  font-family: var(--wl-font-space);
  font-weight: 700;
  font-size: 1rem;
  color: var(--wl-amber);
  margin-bottom: 0.75rem;
}
.wl-pillar__desc {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--wl-text);
  opacity: 0.6;
}
.wl-pillars { margin-bottom: 2rem; }

.wl-step {
  padding: 1.5rem;
  border: 1px solid var(--wl-slate);
  background: rgba(42, 44, 47, 0.15);
  display: flex;
  flex-direction: column;
}
.wl-step__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
.wl-step__icon {
  width: 2.5rem; height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 184, 0, 0.1);
  border: 1px solid rgba(255, 184, 0, 0.2);
  color: var(--wl-amber);
}
.wl-step__num {
  font-family: var(--wl-font-mono);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--wl-slate);
}
.wl-step__title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--wl-text);
  margin-bottom: 0.5rem;
}
.wl-step__desc {
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--wl-text);
  opacity: 0.6;
}
.wl-steps { margin-bottom: 5rem; }

.wl-trust-tile {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid var(--wl-slate);
  background: rgba(42, 44, 47, 0.15);
}
.wl-trust-tile__value {
  font-family: var(--wl-font-space);
  font-weight: 700;
  font-size: 2.25rem;
  color: var(--wl-amber);
  margin-bottom: 0.5rem;
}
.wl-trust-tile__label {
  font-family: var(--wl-font-mono);
  font-size: 0.72rem;
  line-height: 1.25;
  color: var(--wl-text);
  opacity: 0.55;
}
.wl-trust-grid { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 1024px) {
  .wl-trust-grid { grid-template-columns: repeat(4, 1fr); }
}

.wl-cta-band { text-align: center; }
.wl-cta-band .laser-line { width: 12rem; margin-inline: auto; }
.wl-cta-band__title {
  font-weight: 700;
  line-height: 1;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--wl-text);
  margin: 2rem 0 1.5rem;
}
.wl-cta-band__text {
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  color: var(--wl-text);
  opacity: 0.7;
  font-size: 1.05rem;
  line-height: 1.6;
}
.wl-cta-band .wl-btn { margin-bottom: 2.5rem; }

/* ==========================================================================
   About
   ========================================================================== */
.wl-about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .wl-about-grid { grid-template-columns: 1fr 2fr; }
  .wl-about-grid__body { padding-left: 3rem; }
}
.wl-about-heading {
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 0.95;
  color: var(--wl-text);
  margin-bottom: 1.5rem;
}
.wl-about-grid .laser-line { width: 8rem; margin-bottom: 2rem; }
.wl-vm-card {
  padding: 1rem;
  border: 1px solid var(--wl-slate);
  background: rgba(42, 44, 47, 0.3);
  margin-bottom: 1.5rem;
}
.wl-vm-card__label {
  font-family: var(--wl-font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--wl-amber);
  margin-bottom: 0.5rem;
}
.wl-vm-card__text {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--wl-text);
  opacity: 0.75;
}
.wl-about-body-lg {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--wl-text);
  opacity: 0.8;
  margin-bottom: 1.5rem;
}
.wl-about-body {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--wl-text);
  opacity: 0.7;
  margin-bottom: 2rem;
}
.wl-about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 640px) {
  .wl-about-stats { grid-template-columns: repeat(3, 1fr); }
}

/* ==========================================================================
   Services
   ========================================================================== */
.wl-service-card { cursor: pointer; min-height: 200px; }
.wl-service-card[aria-expanded="true"] {
  background: rgba(255, 184, 0, 0.06);
  border-color: rgba(255, 184, 0, 0.4);
  min-height: 340px;
}
.wl-service-card[aria-expanded="true"] .wl-slab__num { color: var(--wl-amber); }
.wl-service-card__specs { display: none; margin-top: 0.5rem; flex: 1; }
.wl-service-card[aria-expanded="true"] .wl-service-card__specs { display: block; }
.wl-service-card__specs li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.wl-service-card__specs li span:first-child { color: var(--wl-amber); flex-shrink: 0; }
.wl-service-card__specs li span:last-child {
  font-family: var(--wl-font-mono);
  font-size: 0.78rem;
  color: var(--wl-text);
  opacity: 0.75;
}
.wl-service-card__expand {
  margin-top: auto;
  font-family: var(--wl-font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--wl-amber);
  opacity: 0.6;
}
.wl-service-card[aria-expanded="true"] .wl-service-card__expand { display: none; }
.wl-services-grid { margin-bottom: 4rem; }

.wl-sectors-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 768px) {
  .wl-sectors-grid { grid-template-columns: 1fr 1fr; }
}
.wl-sectors-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}
.wl-sector-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0;
}
.wl-sector-item i {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--wl-amber);
  flex-shrink: 0;
}
.wl-sector-item span {
  font-family: var(--wl-font-mono);
  font-size: 0.75rem;
  color: var(--wl-text);
  opacity: 0.7;
}
.wl-sectors-grid .wl-media img { height: 16rem; }

/* ==========================================================================
   Industries / Client Portal feature cards
   ========================================================================== */
.wl-feature-card__title {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--wl-text);
  margin-bottom: 0.75rem;
}
.wl-feature-card__desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--wl-text);
  opacity: 0.6;
}

.wl-cta-strip {
  margin-top: 4rem;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border: 1px solid rgba(255, 184, 0, 0.25);
  background: rgba(255, 184, 0, 0.04);
  text-align: center;
}
@media (min-width: 640px) {
  .wl-cta-strip { flex-direction: row; text-align: left; }
}
.wl-cta-strip h3 {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--wl-text);
  margin-bottom: 0.5rem;
}
.wl-cta-strip p {
  font-size: 0.875rem;
  color: var(--wl-text);
  opacity: 0.65;
}
.wl-cta-strip .wl-btn { flex-shrink: 0; }

/* ==========================================================================
   Technology
   ========================================================================== */
.wl-tech-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 4rem;
}
@media (min-width: 1024px) {
  .wl-tech-grid { grid-template-columns: 5fr 7fr; }
}
.wl-tech-grid .wl-media img { height: 14rem; }
.wl-module-list { display: flex; flex-direction: column; gap: 0.125rem; }
.wl-module {
  display: flex;
  gap: 1rem;
  padding: 0.75rem;
  background: rgba(42, 44, 47, 0.2);
  border: 1px solid transparent;
  transition: border-color 0.2s;
}
.wl-module:hover { border-color: var(--wl-slate); }
.wl-module__num {
  font-family: var(--wl-font-mono);
  font-size: 0.65rem;
  color: var(--wl-amber);
  opacity: 0.5;
  min-width: 24px;
  padding-top: 0.125rem;
  flex-shrink: 0;
}
.wl-module__name {
  font-family: var(--wl-font-space);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--wl-text);
  margin-bottom: 0.25rem;
}
.wl-module__desc {
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--wl-text);
  opacity: 0.55;
}
.wl-mono-label {
  font-family: var(--wl-font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--wl-amber);
  margin-bottom: 1rem;
}
.wl-systems-grid { gap: 1rem; margin-top: 1.5rem; }
.wl-system-card {
  padding: 1.25rem;
  border: 1px solid var(--wl-slate);
  background: rgba(42, 44, 47, 0.2);
}
.wl-system-card__label {
  font-family: var(--wl-font-space);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--wl-amber);
  margin-bottom: 0.75rem;
}
.wl-system-card__desc {
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--wl-text);
  opacity: 0.6;
}
.wl-tech-divider { margin-bottom: 3rem; }

/* ==========================================================================
   Security
   ========================================================================== */
.wl-security-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (min-width: 1024px) {
  .wl-security-grid { grid-template-columns: repeat(3, 1fr); }
}
.wl-security-col .wl-media { margin-bottom: 1rem; }
.wl-security-col .wl-media img { height: 11rem; }
.wl-checklist { display: grid; gap: 0.25rem; }
.wl-checklist li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.375rem 0;
  border-bottom: 1px solid rgba(42, 44, 47, 0.5);
}
.wl-checklist__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--wl-amber);
  flex-shrink: 0;
}
.wl-checklist__square { border-radius: 0; }
.wl-checklist__arrow { color: var(--wl-amber); font-size: 0.6rem; }
.wl-checklist span:last-child {
  font-family: var(--wl-font-mono);
  font-size: 0.78rem;
  color: var(--wl-text);
  opacity: 0.75;
}
.wl-compliance-tile {
  padding: 1.5rem;
  height: 11rem;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255,184,0,0.08) 0%, rgba(42,44,47,0.4) 100%);
  border: 1px solid rgba(255, 184, 0, 0.2);
}
.wl-compliance-tile__value {
  font-family: var(--wl-font-space);
  font-weight: 700;
  font-size: 3rem;
  line-height: 1;
  color: var(--wl-amber);
  margin-bottom: 0.5rem;
}
.wl-compliance-tile__label {
  font-family: var(--wl-font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--wl-text);
  opacity: 0.6;
}

/* ==========================================================================
   Why Wellock
   ========================================================================== */
.wl-why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .wl-why-grid { grid-template-columns: 5fr 7fr; }
}
.wl-why-grid .wl-panel-amber { padding: 1.5rem; }
.wl-why-grid .wl-media { margin-top: 2rem; }
.wl-why-grid .wl-media img { height: 13rem; filter: brightness(0.6) saturate(0.6); }
.wl-reason {
  padding: 1.5rem;
  border: 1px solid var(--wl-slate);
  background: rgba(42, 44, 47, 0.15);
  transition: border-color 0.3s, background 0.3s;
}
.wl-reason:hover {
  border-color: rgba(255, 184, 0, 0.3);
  background: rgba(255, 184, 0, 0.04);
}
.wl-reason__num {
  font-family: var(--wl-font-mono);
  font-size: 0.7rem;
  color: var(--wl-amber);
  opacity: 0.7;
  margin-bottom: 0.75rem;
}
.wl-reason__title {
  font-family: var(--wl-font-space);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--wl-text);
  margin-bottom: 0.75rem;
}
.wl-reason__desc {
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--wl-text);
  opacity: 0.6;
}
.wl-reasons-grid { grid-template-columns: 1fr; gap: 0.125rem; }
@media (min-width: 640px) {
  .wl-reasons-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.wl-faq-list { display: flex; flex-direction: column; gap: 0.125rem; }
.wl-faq-item {
  border: 1px solid var(--wl-slate);
  background: rgba(42, 44, 47, 0.15);
}
.wl-faq-item--open { background: rgba(255, 184, 0, 0.04); }
.wl-faq-item__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem;
  text-align: left;
}
.wl-faq-item__q {
  font-family: var(--wl-font-space);
  font-weight: 600;
  font-size: 1rem;
  color: var(--wl-text);
}
.wl-faq-item--open .wl-faq-item__q { color: var(--wl-amber); }
.wl-faq-item__toggle svg { flex-shrink: 0; color: var(--wl-text); opacity: 0.5; }
.wl-faq-item--open .wl-faq-item__toggle svg { color: var(--wl-amber); opacity: 1; }
.wl-faq-item__toggle .icon-minus { display: none; }
.wl-faq-item--open .wl-faq-item__toggle .icon-minus { display: block; }
.wl-faq-item--open .wl-faq-item__toggle .icon-plus { display: none; }
.wl-faq-item__a { display: none; padding: 0 1.25rem 1.25rem; }
.wl-faq-item--open .wl-faq-item__a { display: block; }
.wl-faq-item__a .laser-line { margin-bottom: 1rem; }
.wl-faq-item__a p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--wl-text);
  opacity: 0.7;
}
.wl-faq-cta { margin-top: 3rem; text-align: center; }
.wl-faq-cta p {
  font-size: 0.875rem;
  color: var(--wl-text);
  opacity: 0.6;
  margin-bottom: 1.25rem;
}

/* ==========================================================================
   Careers
   ========================================================================== */
.wl-perks { margin-bottom: 5rem; }
.wl-perk {
  padding: 1.5rem;
  border: 1px solid var(--wl-slate);
  background: rgba(42, 44, 47, 0.15);
}
.wl-perk svg { color: var(--wl-amber); margin-bottom: 1rem; }
.wl-perk h3 {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--wl-text);
  margin-bottom: 0.5rem;
}
.wl-perk p {
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--wl-text);
  opacity: 0.6;
}
.wl-roles { display: flex; flex-direction: column; gap: 0.125rem; margin-bottom: 4rem; }
.wl-role {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--wl-slate);
  background: rgba(42, 44, 47, 0.15);
  transition: border-color 0.2s;
}
.wl-role:hover { border-color: rgba(255, 184, 0, 0.3); }
@media (min-width: 768px) {
  .wl-role { flex-direction: row; align-items: center; gap: 2rem; }
  .wl-role__head { width: 33%; }
  .wl-role__desc { flex: 1; }
}
.wl-role__title {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--wl-text);
  margin-bottom: 0.5rem;
}
.wl-role__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}
.wl-role__meta span {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-family: var(--wl-font-mono);
  font-size: 0.7rem;
  color: var(--wl-text);
  opacity: 0.55;
}
.wl-role__meta svg { color: var(--wl-amber); }
.wl-role__desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--wl-text);
  opacity: 0.65;
}
.wl-careers-cta { text-align: center; }
.wl-careers-cta h3 {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--wl-text);
  margin-bottom: 0.75rem;
}
.wl-careers-cta p {
  font-size: 0.875rem;
  line-height: 1.6;
  max-width: 36rem;
  margin: 0 auto 1.5rem;
  color: var(--wl-text);
  opacity: 0.65;
}

/* ==========================================================================
   Client Portal access panels
   ========================================================================== */
.wl-portal-panels { grid-template-columns: 1fr; }
@media (min-width: 1024px) {
  .wl-portal-panels { grid-template-columns: 1fr 1fr; }
}
.wl-portal-panel {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--wl-slate);
  background: rgba(42, 44, 47, 0.2);
}
.wl-portal-panel--amber {
  border-color: rgba(255, 184, 0, 0.25);
  background: rgba(255, 184, 0, 0.05);
}
.wl-portal-panel__label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-family: var(--wl-font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--wl-amber);
}
.wl-portal-panel h3 {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--wl-text);
  margin-bottom: 0.75rem;
}
.wl-portal-panel p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--wl-text);
  opacity: 0.65;
  margin-bottom: 1.5rem;
}
.wl-portal-panel .wl-btn { align-self: flex-start; }

/* ==========================================================================
   Contact
   ========================================================================== */
.wl-contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
@media (min-width: 1024px) {
  .wl-contact-grid { grid-template-columns: 1fr 1fr; }
}
.wl-channels { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 3rem; }
.wl-channel {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--wl-slate);
}
.wl-channel__icon {
  flex-shrink: 0;
  width: 2.5rem; height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 184, 0, 0.1);
  border: 1px solid rgba(255, 184, 0, 0.2);
  color: var(--wl-amber);
}
.wl-channel__label {
  font-family: var(--wl-font-mono);
  font-size: 0.65rem;
  color: var(--wl-text);
  opacity: 0.4;
  margin-bottom: 0.25rem;
}
.wl-channel__value { font-size: 0.875rem; color: var(--wl-text); transition: color 0.2s; }
a.wl-channel__value:hover { color: var(--wl-amber); }
.wl-services-summary {
  padding: 1.5rem;
  border: 1px solid rgba(255, 184, 0, 0.2);
  background: rgba(255, 184, 0, 0.03);
}
.wl-services-summary__list { display: grid; gap: 0.5rem; }
.wl-services-summary__list li { display: flex; align-items: center; gap: 0.5rem; }
.wl-services-summary__list li span:first-child { color: var(--wl-amber); font-size: 0.6rem; }
.wl-services-summary__list li span:last-child {
  font-family: var(--wl-font-mono);
  font-size: 0.75rem;
  color: var(--wl-text);
  opacity: 0.65;
}

/* Multi-step form */
.wl-form-box { border: 1px solid var(--wl-slate); background: rgba(42, 44, 47, 0.15); }
.wl-form-progress { display: flex; border-bottom: 1px solid var(--wl-slate); }
.wl-form-progress__step {
  flex: 1;
  padding: 0.75rem;
  text-align: center;
  font-family: var(--wl-font-mono);
  font-size: 0.65rem;
  color: var(--wl-slate);
  border-bottom: 2px solid transparent;
  transition: all 0.3s;
}
.wl-form-progress__step--active {
  color: var(--wl-amber);
  background: rgba(255, 184, 0, 0.06);
  border-bottom-color: var(--wl-amber);
}
.wl-form-progress__step--done { color: var(--wl-text); cursor: pointer; }
.wl-form { padding: 2rem; }
.wl-form__step { display: none; }
.wl-form__step--active { display: block; }
.wl-form__label {
  font-family: var(--wl-font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--wl-amber);
  margin-bottom: 1.5rem;
}
.wl-choice-list { display: grid; gap: 0.5rem; }
.wl-choice-list--2col { grid-template-columns: repeat(2, 1fr); margin-bottom: 1.5rem; }
.wl-choice {
  padding: 0.75rem;
  text-align: left;
  border: 1px solid var(--wl-slate);
  background: transparent;
  color: var(--wl-text);
  font-size: 0.875rem;
  transition: all 0.2s;
}
.wl-choice--mono { font-family: var(--wl-font-mono); font-size: 0.75rem; }
.wl-choice--selected {
  border-color: var(--wl-amber);
  background: rgba(255, 184, 0, 0.08);
  color: var(--wl-amber);
}
.wl-form__next {
  margin-top: 1.5rem;
  width: 100%;
  padding: 0.75rem;
  font-family: var(--wl-font-space);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--wl-slate);
  color: var(--wl-bg);
  cursor: not-allowed;
  transition: all 0.2s;
}
.wl-form__next--ready { background: var(--wl-amber); cursor: pointer; }
.wl-field { margin-bottom: 1rem; }
.wl-field label {
  display: block;
  font-family: var(--wl-font-mono);
  font-size: 0.65rem;
  color: var(--wl-text);
  opacity: 0.5;
  margin-bottom: 0.25rem;
}
.wl-field input, .wl-field textarea {
  width: 100%;
  padding: 0.75rem;
  font-family: var(--wl-font-inter);
  font-size: 0.9rem;
  background: rgba(42, 44, 47, 0.4);
  border: 1px solid var(--wl-slate);
  color: var(--wl-text);
  outline: none;
  transition: border-color 0.2s;
  resize: none;
}
.wl-field input:focus, .wl-field textarea:focus { border-color: var(--wl-amber); }
.wl-form__submit {
  width: 100%;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--wl-font-space);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--wl-amber);
  color: var(--wl-bg);
  border: 1px solid var(--wl-amber);
  transition: all 0.2s;
}
.wl-form__submit:hover:not(:disabled) { background: transparent; color: var(--wl-amber); }
.wl-form__submit:disabled { opacity: 0.7; cursor: wait; }
.wl-form-error {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 80, 80, 0.4);
  background: rgba(255, 80, 80, 0.06);
}
.wl-form-error svg { color: #ff6b6b; flex-shrink: 0; margin-top: 2px; }
.wl-form-error p { font-size: 0.875rem; color: var(--wl-text); margin-bottom: 0.25rem; }
.wl-form-error a {
  font-family: var(--wl-font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wl-amber);
}
.wl-form-success {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  border: 1px solid rgba(255, 184, 0, 0.3);
  background: rgba(255, 184, 0, 0.04);
}
.wl-form-success__check {
  font-family: var(--wl-font-space);
  font-weight: 700;
  font-size: 2.25rem;
  color: var(--wl-amber);
  margin-bottom: 1rem;
}
.wl-form-success h3 {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--wl-text);
  margin-bottom: 1rem;
}
.wl-form-success p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--wl-text);
  opacity: 0.6;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.wl-footer {
  background: var(--wl-bg);
  border-top: 1px solid var(--wl-slate);
  padding: 3rem 1.5rem;
}
.wl-footer .laser-line { margin-bottom: 2.5rem; }
.wl-footer__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .wl-footer__grid { grid-template-columns: repeat(5, 1fr); }
}
.wl-footer__brand { grid-column: span 2; }
.wl-footer__brand-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.wl-footer__brand-link img {
  width: 2.5rem; height: 2.5rem;
  object-fit: contain;
  mix-blend-mode: screen;
}
.wl-footer__brand-name {
  font-family: var(--wl-font-space);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  color: var(--wl-amber);
}
.wl-footer__brand-sub {
  font-family: var(--wl-font-mono);
  font-size: 0.65rem;
  color: var(--wl-text);
  opacity: 0.5;
}
.wl-footer__tagline {
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--wl-text);
  opacity: 0.5;
  margin-bottom: 1.25rem;
}
.wl-footer__contacts a, .wl-footer__contacts span {
  display: block;
  font-family: var(--wl-font-mono);
  font-size: 0.75rem;
  color: var(--wl-text);
  opacity: 0.6;
  margin-bottom: 0.375rem;
}
.wl-footer__contacts a:hover { color: var(--wl-amber); opacity: 1; }
.wl-footer__heading {
  font-family: var(--wl-font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--wl-amber);
  margin-bottom: 1rem;
}
.wl-footer__links a {
  display: block;
  font-family: var(--wl-font-mono);
  font-size: 0.75rem;
  color: var(--wl-text);
  opacity: 0.55;
  margin-bottom: 0.5rem;
  transition: color 0.2s, opacity 0.2s;
}
.wl-footer__links a:hover { color: var(--wl-amber); opacity: 1; }
.wl-footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
}
@media (min-width: 640px) {
  .wl-footer__bottom { flex-direction: row; }
}
.wl-footer__bottom p {
  font-family: var(--wl-font-mono);
  font-size: 0.65rem;
  color: var(--wl-text);
  opacity: 0.3;
}

/* ==========================================================================
   Generic content page / 404
   ========================================================================== */
.wl-content {
  padding: 9rem 1.5rem 6rem;
  min-height: 60vh;
}
.wl-content--under-header { padding-top: 6rem; }
.wl-content .wl-prose h1, .wl-content .wl-prose h2, .wl-content .wl-prose h3 {
  color: var(--wl-text);
  margin: 1.5rem 0 0.75rem;
}
.wl-content .wl-prose p {
  color: var(--wl-text);
  opacity: 0.75;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.wl-content .wl-prose a { color: var(--wl-amber); }
.wl-content .wl-prose ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; opacity: 0.75; }
.wl-404 { text-align: center; padding-top: 12rem; }
.wl-404__code {
  font-family: var(--wl-font-mono);
  font-weight: 700;
  font-size: 5rem;
  color: var(--wl-amber);
  line-height: 1;
  margin-bottom: 1rem;
}
.wl-404 h1 { font-size: 1.5rem; margin-bottom: 1rem; }
.wl-404 p { opacity: 0.6; margin-bottom: 2rem; }
