/* =========================================================
   WarpCore — Design System
   Dark industrial premium, signal-amber accent
   ========================================================= */

:root {
  --bg-0: #0a0a0b;
  --bg-1: #111114;
  --bg-2: #181a1f;
  --bg-3: #20232a;
  --border: #25272e;
  --border-strong: #3a3d46;
  --text-0: #f5f5f7;
  --text-1: #a1a1aa;
  --text-2: #71717a;
  --accent: #fbbf24;
  --accent-hover: #fcd34d;
  --accent-deep: #b45309;
  --accent-glow: rgba(251, 191, 36, 0.18);
  --success: #10b981;
  --danger: #ef4444;

  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  --max-w: 1280px;
  --gutter: clamp(20px, 4vw, 48px);
  --radius: 4px;
  --radius-lg: 12px;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg-0);
  color: var(--text-0);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }

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

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

/* =========================================================
   Layout primitives
   ========================================================= */

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: clamp(72px, 10vw, 140px) 0;
  position: relative;
}

.section-tight { padding: clamp(48px, 6vw, 96px) 0; }

.section-label {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.section-label::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--accent);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 5.2vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 500;
  max-width: 18ch;
  margin-bottom: 24px;
}

.section-lede {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.65;
  color: var(--text-1);
  max-width: 60ch;
}

.divider {
  height: 1px;
  background: var(--border);
  width: 100%;
}

/* =========================================================
   Typography
   ========================================================= */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.1;
}

p { color: var(--text-1); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-2);
}

.text-accent { color: var(--accent); }
.text-muted { color: var(--text-1); }

/* =========================================================
   Navigation
   ========================================================= */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(10, 10, 11, 0.7);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}

.nav.scrolled {
  border-bottom-color: var(--border);
  background: rgba(10, 10, 11, 0.85);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
}

.nav-brand-mark {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: var(--bg-0);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 14px;
  border-radius: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-1);
  transition: color .2s var(--ease);
  position: relative;
}

.nav-links a:hover, .nav-links a.active { color: var(--text-0); }

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 2px;
  background: var(--accent);
}

.nav-cta { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  display: none;
  width: 36px; height: 36px;
  align-items: center; justify-content: center;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
}

.nav-toggle span {
  display: block; width: 16px; height: 1.5px;
  background: var(--text-0); position: relative;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: ""; position: absolute; left: 0;
  width: 100%; height: 1.5px; background: var(--text-0);
}
.nav-toggle span::before { top: -5px; }
.nav-toggle span::after { top: 5px; }

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta .btn-secondary { display: none; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--bg-1);
    border-bottom: 1px solid var(--border);
    padding: 12px var(--gutter) 24px;
  }
  .nav-links.open li { width: 100%; }
  .nav-links.open a {
    display: block; padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
  }
}

/* =========================================================
   Buttons
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: var(--radius);
  transition: transform .15s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), box-shadow .25s var(--ease);
  border: 1px solid transparent;
  white-space: nowrap;
  position: relative;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--accent);
  color: var(--bg-0);
  box-shadow: 0 0 0 0 var(--accent-glow);
}
.btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 10px 30px -10px var(--accent-glow);
}

.btn-secondary {
  border-color: var(--border-strong);
  color: var(--text-0);
}
.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-ghost {
  color: var(--text-0);
  padding: 14px 0;
}
.btn-ghost:hover { color: var(--accent); }

.btn-arrow::after {
  content: "→";
  font-family: var(--font-mono);
  transition: transform .2s var(--ease);
}
.btn-arrow:hover::after { transform: translateX(4px); }

.btn-sm { padding: 9px 14px; font-size: 13px; }

/* =========================================================
   Hero
   ========================================================= */

.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 0 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, var(--accent-glow), transparent 60%),
    radial-gradient(ellipse 80% 60% at 20% 90%, rgba(180, 83, 9, 0.12), transparent 70%);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, #000 30%, transparent 80%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-1);
  margin-bottom: 32px;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.15);
  animation: pulse 2.2s var(--ease) infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.35); }
  50% { box-shadow: 0 0 0 8px rgba(251, 191, 36, 0); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 8vw, 104px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-weight: 500;
  max-width: 14ch;
  margin-bottom: 28px;
}

.hero-title em {
  font-style: normal;
  color: var(--accent);
  font-weight: 500;
}

.hero-sub {
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.55;
  color: var(--text-1);
  max-width: 56ch;
  margin-bottom: 44px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 80px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  padding-top: 28px;
}

.hero-stat {
  padding-right: 16px;
}
.hero-stat + .hero-stat {
  border-left: 1px solid var(--border);
  padding-left: 24px;
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text-0);
  margin-bottom: 8px;
}
.hero-stat-value sup {
  font-size: 0.5em;
  color: var(--accent);
  vertical-align: top;
  margin-left: 4px;
}

.hero-stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-2);
}

@media (max-width: 720px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }
  .hero-stat + .hero-stat { border-left: none; padding-left: 0; }
  .hero-stat:nth-child(3) { border-top: 1px solid var(--border); padding-top: 24px; }
  .hero-stat:nth-child(4) { border-top: 1px solid var(--border); padding-top: 24px; }
}

/* Capability strip on hero */
.cap-strip {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cap-strip-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-2);
}
.cap-strip-items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cap-strip-items span {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  padding: 7px 12px;
  border: 1px solid var(--border-strong);
  color: var(--text-1);
  border-radius: 100px;
  background: var(--bg-1);
  transition: border-color .2s var(--ease), color .2s var(--ease);
}
.cap-strip-items span:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* =========================================================
   New hero — split with PCB visual
   ========================================================= */

.hero-split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: center;
  width: 100%;
}
@media (max-width: 980px) {
  .hero-split { grid-template-columns: 1fr; }
}

.hero-visual-frame {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-1);
  aspect-ratio: 3 / 2;
}
.hero-visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-visual-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-2);
  background: rgba(10, 10, 11, 0.6);
  border: 1px solid var(--border);
  padding: 6px 10px;
  border-radius: 100px;
  backdrop-filter: blur(6px);
}
.hero-visual-corners {
  position: absolute;
  inset: 12px;
  pointer-events: none;
}
.hero-visual-corners::before,
.hero-visual-corners::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border: 1px solid var(--accent);
  opacity: 0.7;
}
.hero-visual-corners::before { top: 0; left: 0; border-right: none; border-bottom: none; }
.hero-visual-corners::after { bottom: 0; right: 0; border-left: none; border-top: none; }

/* =========================================================
   Big pull-quote / statement section
   ========================================================= */

.statement {
  padding: clamp(80px, 12vw, 160px) 0;
  background: linear-gradient(180deg, var(--bg-0), var(--bg-1) 80%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.statement::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 70% at 50% 100%, var(--accent-glow), transparent 65%);
  pointer-events: none;
}
.statement-inner {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  text-align: center;
}
.statement-mark {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 96px);
  line-height: 1;
  color: var(--accent);
  margin-bottom: 24px;
}
.statement-text {
  font-family: var(--font-display);
  font-size: clamp(26px, 4.2vw, 52px);
  line-height: 1.18;
  font-weight: 500;
  letter-spacing: -0.018em;
  color: var(--text-0);
}
.statement-text em {
  font-style: normal;
  color: var(--accent);
}
.statement-sub {
  margin-top: 32px;
  color: var(--text-1);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.6;
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
}

/* =========================================================
   Full-bleed visual band
   ========================================================= */

.full-bleed-visual {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.full-bleed-visual .container { padding: 0 var(--gutter); }
.fbv-header {
  padding: 80px var(--gutter) 0;
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
}
.fbv-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -0.02em;
  max-width: 24ch;
}
.fbv-image {
  margin-top: 56px;
  padding: 0 var(--gutter) 80px;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
}
.fbv-image img {
  width: 100%;
  display: block;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

/* =========================================================
   Bento grid — varied card sizes
   ========================================================= */

.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-top: 56px;
}
.bento .b-4 { grid-column: span 4; }
.bento .b-3 { grid-column: span 3; }
.bento .b-2 { grid-column: span 2; }
.bento .b-6 { grid-column: span 6; }

@media (max-width: 880px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento .b-4, .bento .b-3, .bento .b-2, .bento .b-6 { grid-column: span 2; }
}

/* =========================================================
   Service icon — bigger, more bespoke presentation
   ========================================================= */

.feature-icon-lg {
  width: 56px; height: 56px;
  border-radius: 10px;
  display: grid; place-items: center;
  margin-bottom: 24px;
  color: var(--accent);
  background: linear-gradient(160deg, rgba(251, 191, 36, 0.12), rgba(251, 191, 36, 0.02));
  border: 1px solid rgba(251, 191, 36, 0.2);
  position: relative;
  overflow: hidden;
}
.feature-icon-lg::before {
  content: "";
  position: absolute;
  top: 4px; left: 4px;
  width: 8px; height: 8px;
  border-top: 1px solid var(--accent);
  border-left: 1px solid var(--accent);
  opacity: 0.5;
}
.feature-icon-lg svg { width: 26px; height: 26px; position: relative; }

/* =========================================================
   Service block — alternating asymmetric rows
   ========================================================= */

.service-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  padding: 56px 0;
  position: relative;
}
.service-row.reverse { grid-template-columns: 1fr 1.4fr; }
@media (max-width: 880px) {
  .service-row, .service-row.reverse { grid-template-columns: 1fr; gap: 32px; }
}
.service-row-num {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.service-row-num::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
  max-width: 80px;
}
.service-row h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.service-row p {
  color: var(--text-1);
  font-size: 16px;
  line-height: 1.7;
}
.service-visual {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  aspect-ratio: 5 / 4;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.service-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 32px 32px;
}
.service-visual-icon {
  width: 96px; height: 96px;
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(251, 191, 36, 0.15), rgba(251, 191, 36, 0.02));
  border: 1px solid rgba(251, 191, 36, 0.25);
  display: grid;
  place-items: center;
  color: var(--accent);
  position: relative;
  z-index: 1;
}
.service-visual-icon svg { width: 44px; height: 44px; }

/* =========================================================
   Pull-strip — list of items as a marquee-style line
   ========================================================= */

.pull-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 0;
  align-items: center;
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 36px);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.pull-strip span {
  padding: 0 24px;
  color: var(--text-1);
}
.pull-strip span.on {
  color: var(--accent);
}
.pull-strip .sep {
  color: var(--border-strong);
  padding: 0 2px;
  font-family: var(--font-mono);
}

/* =========================================================
   Photo treatment — duotone (dark + amber) to brand-cohere
   stock photography and read as industry context
   ========================================================= */

.photo {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-2);
  isolation: isolate;
}
.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* light grade — keep it photographic, just nudge toward the theme */
  filter: contrast(1.04) brightness(0.92) saturate(0.92);
  transition: filter .5s var(--ease), transform .6s var(--ease);
}
/* subtle amber warmth over the midtones */
.photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(150deg, rgba(251, 191, 36, 0.14), rgba(180, 83, 9, 0.06) 55%, transparent 78%);
  mix-blend-mode: overlay;
  pointer-events: none;
}
/* gentle vignette + bottom fade for depth and caption legibility */
.photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(0deg, rgba(10, 10, 11, 0.55), transparent 42%),
    radial-gradient(ellipse 95% 95% at 50% 40%, transparent 62%, rgba(10, 10, 11, 0.4));
  pointer-events: none;
}
.photo:hover img {
  filter: contrast(1.03) brightness(1) saturate(1);
  transform: scale(1.03);
}

/* corner brackets overlay (matches hero visual) */
.photo-corners {
  position: absolute;
  inset: 14px;
  z-index: 3;
  pointer-events: none;
}
.photo-corners::before,
.photo-corners::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border: 1px solid var(--accent);
  opacity: 0.65;
}
.photo-corners::before { top: 0; left: 0; border-right: none; border-bottom: none; }
.photo-corners::after { bottom: 0; right: 0; border-left: none; border-top: none; }

/* small mono tag chip placed on a photo */
.photo-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 4;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-0);
  background: rgba(10, 10, 11, 0.55);
  border: 1px solid var(--border-strong);
  padding: 6px 10px;
  border-radius: 100px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
/* caption pinned to bottom-left of a photo */
.photo-caption {
  position: absolute;
  left: 20px;
  bottom: 18px;
  z-index: 4;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-1);
}
.photo-caption strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(16px, 1.6vw, 20px);
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--text-0);
  font-weight: 500;
  margin-top: 4px;
}

/* aspect helpers */
.photo-16x9 { aspect-ratio: 16 / 9; }
.photo-4x3 { aspect-ratio: 4 / 3; }
.photo-3x2 { aspect-ratio: 3 / 2; }
.photo-1x1 { aspect-ratio: 1 / 1; }
.photo-21x9 { aspect-ratio: 21 / 9; }

/* full-bleed photo band */
.photo-band {
  position: relative;
  height: clamp(340px, 48vw, 560px);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.photo-band > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.7) contrast(1.08) brightness(0.55) saturate(0.85);
  z-index: 0;
}
.photo-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(150deg, rgba(251, 191, 36, 0.18), transparent 60%);
  mix-blend-mode: overlay;
  pointer-events: none;
}
.photo-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(10, 10, 11, 0.92) 0%, rgba(10, 10, 11, 0.55) 45%, rgba(10, 10, 11, 0.25) 100%),
    linear-gradient(0deg, rgba(10, 10, 11, 0.85), transparent 50%);
  pointer-events: none;
}
.photo-band-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}
.photo-band-content h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.4vw, 52px);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -0.02em;
  max-width: 20ch;
}
.photo-band-content p {
  color: var(--text-1);
  font-size: clamp(15px, 1.4vw, 18px);
  max-width: 52ch;
  line-height: 1.6;
}

/* split: photo + text */
.photo-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.photo-split.reverse > .photo { order: 2; }
@media (max-width: 880px) {
  .photo-split { grid-template-columns: 1fr; }
  .photo-split.reverse > .photo { order: 0; }
}

/* photo grid (gallery) */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.photo-grid .pg-3 { grid-column: span 3; }
.photo-grid .pg-2 { grid-column: span 2; }
.photo-grid .pg-4 { grid-column: span 4; }
.photo-grid .pg-6 { grid-column: span 6; }
@media (max-width: 720px) {
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
  .photo-grid .pg-3, .photo-grid .pg-2, .photo-grid .pg-4, .photo-grid .pg-6 { grid-column: span 2; }
}

/* =========================================================
   WhatsApp affordances
   ========================================================= */

.wa-badge {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #ffffff;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px -10px rgba(37, 211, 102, 0.6);
}
.wa-badge svg { width: 30px; height: 30px; fill: currentColor; }

/* inline WhatsApp glyph inside a button/link */
.wa-inline {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
}

/* WhatsApp contact cards */
.wa-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 48px;
}
@media (max-width: 620px) {
  .wa-cards { grid-template-columns: 1fr; }
}

.wa-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: clamp(24px, 4vw, 40px);
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: inherit;
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.wa-card:hover {
  border-color: #25d366;
  transform: translateY(-3px);
}

.wa-card-code {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.wa-number {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-size: clamp(24px, 5.4vw, 34px);
  white-space: nowrap;
  color: var(--text-0);
}

.wa-desc {
  color: var(--text-1);
  font-size: 15px;
  line-height: 1.55;
}

.wa-cta {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.wa-cta > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
}
.wa-cta .arr {
  font-family: var(--font-mono);
  transition: transform .2s var(--ease);
}
.wa-card:hover .wa-cta .arr { transform: translateX(4px); }

/* auto-prepend the WhatsApp glyph on any footer wa.me link, inheriting link colour */
.footer-col a[href^="https://wa.me"] {
  display: inline-flex;
  align-items: center;
}
.footer-col a[href^="https://wa.me"]::before {
  content: "";
  width: 15px;
  height: 15px;
  margin-right: 8px;
  flex-shrink: 0;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%3E%3Cpath%20d%3D%27M17.472%2014.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94%201.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198%200-.52.074-.792.372-.272.297-1.04%201.016-1.04%202.479%200%201.462%201.065%202.875%201.213%203.074.149.198%202.096%203.2%205.077%204.487.71.306%201.263.489%201.694.625.712.227%201.36.195%201.872.118.571-.085%201.758-.719%202.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421%207.403h-.004a9.87%209.87%200%2001-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86%209.86%200%2001-1.51-5.26c.001-5.45%204.436-9.884%209.888-9.884%202.64%200%205.122%201.03%206.988%202.898a9.825%209.825%200%20012.893%206.994c-.003%205.45-4.437%209.884-9.885%209.884m8.413-18.297A11.815%2011.815%200%200012.05%200C5.495%200%20.16%205.335.157%2011.892c0%202.096.547%204.142%201.588%205.945L.057%2024l6.305-1.654a11.882%2011.882%200%20005.683%201.448h.005c6.554%200%2011.89-5.335%2011.893-11.893a11.821%2011.821%200%2000-3.48-8.413z%27%2F%3E%3C%2Fsvg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%3E%3Cpath%20d%3D%27M17.472%2014.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94%201.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198%200-.52.074-.792.372-.272.297-1.04%201.016-1.04%202.479%200%201.462%201.065%202.875%201.213%203.074.149.198%202.096%203.2%205.077%204.487.71.306%201.263.489%201.694.625.712.227%201.36.195%201.872.118.571-.085%201.758-.719%202.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421%207.403h-.004a9.87%209.87%200%2001-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86%209.86%200%2001-1.51-5.26c.001-5.45%204.436-9.884%209.888-9.884%202.64%200%205.122%201.03%206.988%202.898a9.825%209.825%200%20012.893%206.994c-.003%205.45-4.437%209.884-9.885%209.884m8.413-18.297A11.815%2011.815%200%200012.05%200C5.495%200%20.16%205.335.157%2011.892c0%202.096.547%204.142%201.588%205.945L.057%2024l6.305-1.654a11.882%2011.882%200%20005.683%201.448h.005c6.554%200%2011.89-5.335%2011.893-11.893a11.821%2011.821%200%2000-3.48-8.413z%27%2F%3E%3C%2Fsvg%3E") center / contain no-repeat;
}

/* =========================================================
   Sub-hero / page header (smaller hero for inner pages)
   ========================================================= */

.page-header {
  position: relative;
  padding: 160px 0 80px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.page-header-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 50% 60% at 80% 30%, var(--accent-glow), transparent 60%);
  pointer-events: none;
}

.page-header .container { position: relative; z-index: 1; }

.page-header h1 {
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  font-weight: 500;
  max-width: 18ch;
  margin-bottom: 24px;
}

.page-header .lede {
  font-size: clamp(16px, 1.4vw, 20px);
  color: var(--text-1);
  max-width: 60ch;
  line-height: 1.6;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 28px;
}
.breadcrumb a { color: var(--text-1); transition: color .2s var(--ease); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { color: var(--border-strong); }

/* =========================================================
   Cards & feature grids
   ========================================================= */

.card {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color .25s var(--ease), background .25s var(--ease), transform .25s var(--ease);
  position: relative;
  overflow: hidden;
}

.card:hover {
  border-color: var(--border-strong);
  background: var(--bg-2);
  transform: translateY(-2px);
}

.card-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
  display: block;
}

.card h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.card p {
  color: var(--text-1);
  font-size: 15px;
  line-height: 1.6;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 56px;
}

.feature-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 56px;
}

@media (max-width: 980px) { .feature-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .feature-grid-4 { grid-template-columns: 1fr; } }

.feature-icon {
  width: 44px; height: 44px;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  display: grid; place-items: center;
  margin-bottom: 24px;
  color: var(--accent);
  background: rgba(251, 191, 36, 0.06);
}
.feature-icon svg { width: 22px; height: 22px; }

/* =========================================================
   Two-column layouts
   ========================================================= */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}

.split-narrow {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}

@media (max-width: 840px) {
  .split, .split-narrow { grid-template-columns: 1fr; gap: 40px; }
}

/* =========================================================
   Product showcase
   ========================================================= */

.product-card {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}

.product-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}

.product-card-visual {
  aspect-ratio: 4 / 3;
  background: var(--bg-2);
  position: relative;
  display: grid;
  place-items: center;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.product-card-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.product-card-visual svg { position: relative; z-index: 1; width: 70%; max-height: 80%; }

.product-card-body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.product-card-code {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.product-card-name {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: -0.01em;
  font-weight: 500;
}

.product-card-desc {
  color: var(--text-1);
  font-size: 15px;
  line-height: 1.55;
}

.product-card-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.spec-chip {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  padding: 6px 10px;
  border: 1px solid var(--border);
  color: var(--text-1);
  border-radius: 100px;
  background: var(--bg-2);
}

.product-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.product-card-footer a {
  color: var(--text-0);
  font-weight: 500;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color .2s var(--ease), gap .2s var(--ease);
}
.product-card-footer a:hover { color: var(--accent); gap: 12px; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
}

@media (max-width: 980px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .product-grid { grid-template-columns: 1fr; } }

/* =========================================================
   Product detail page
   ========================================================= */

.pd-hero {
  padding: 140px 0 80px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.pd-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 70% 50%, var(--accent-glow), transparent 65%);
  pointer-events: none;
}

.pd-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 880px) { .pd-hero-inner { grid-template-columns: 1fr; } }

.pd-hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.0;
  font-weight: 500;
  letter-spacing: -0.025em;
  margin: 12px 0 20px;
}

.pd-hero-sub {
  color: var(--text-1);
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.55;
  margin-bottom: 36px;
  max-width: 50ch;
}

.pd-hero-visual {
  aspect-ratio: 1 / 1;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.pd-hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.pd-hero-visual svg { position: relative; z-index: 1; width: 65%; }

.spec-table {
  border-top: 1px solid var(--border);
}
.spec-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}
.spec-row dt {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-2);
}
.spec-row dd {
  color: var(--text-0);
  font-size: 15px;
  line-height: 1.5;
}

@media (max-width: 640px) {
  .spec-row { grid-template-columns: 1fr; gap: 6px; }
}

/* =========================================================
   Solutions page — industry list
   ========================================================= */

.industry-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
  margin-top: 56px;
}

.industry-row {
  display: grid;
  grid-template-columns: 80px 1fr 1.4fr auto;
  gap: 24px;
  align-items: center;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left .3s var(--ease), background .3s var(--ease);
}

.industry-row:hover {
  padding-left: 12px;
  background: linear-gradient(90deg, rgba(251, 191, 36, 0.03), transparent 60%);
}

.industry-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-2);
  letter-spacing: 0.1em;
}

.industry-name {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.industry-desc {
  color: var(--text-1);
  font-size: 15px;
  line-height: 1.55;
}

.industry-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

@media (max-width: 840px) {
  .industry-row {
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "num name"
      "num desc"
      "num tag";
    gap: 8px 20px;
    padding: 28px 0;
  }
  .industry-num { grid-area: num; align-self: start; padding-top: 8px; }
  .industry-name { grid-area: name; }
  .industry-desc { grid-area: desc; }
  .industry-tag { grid-area: tag; margin-top: 4px; }
}

/* =========================================================
   Process / steps
   ========================================================= */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 56px;
  counter-reset: step;
}

.step {
  padding: 28px;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
}

.step-num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}

.step h4 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
  letter-spacing: -0.005em;
}

.step p { font-size: 14px; color: var(--text-1); line-height: 1.6; }

@media (max-width: 980px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .steps { grid-template-columns: 1fr; } }

/* =========================================================
   Stats band
   ========================================================= */

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-1);
}

.stats-band .stat {
  padding: 56px clamp(16px, 3vw, 40px);
  border-right: 1px solid var(--border);
}
.stats-band .stat:last-child { border-right: none; }

.stat-value {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text-0);
  margin-bottom: 10px;
}
.stat-value sup { color: var(--accent); font-size: 0.5em; vertical-align: top; }

.stat-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-2);
}

@media (max-width: 880px) {
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .stats-band .stat:nth-child(2) { border-right: none; }
  .stats-band .stat:nth-child(1), .stats-band .stat:nth-child(2) {
    border-bottom: 1px solid var(--border);
  }
}

@media (max-width: 480px) {
  .stats-band { grid-template-columns: 1fr; }
  .stats-band .stat { border-right: none !important; border-bottom: 1px solid var(--border); }
  .stats-band .stat:last-child { border-bottom: none; }
}

/* =========================================================
   CTA band
   ========================================================= */

.cta-band {
  padding: clamp(72px, 9vw, 120px) 0;
  position: relative;
  overflow: hidden;
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 100%, var(--accent-glow), transparent 70%);
  pointer-events: none;
}

.cta-band-inner {
  position: relative;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.cta-band p {
  color: var(--text-1);
  font-size: clamp(15px, 1.3vw, 18px);
  margin-bottom: 32px;
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
}

.cta-band-actions { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* =========================================================
   Forms (contact)
   ========================================================= */

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-grid .full { grid-column: 1 / -1; }

@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: 8px; }

.field label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-2);
}

.field input,
.field select,
.field textarea {
  background: var(--bg-1);
  border: 1px solid var(--border);
  color: var(--text-0);
  padding: 14px 16px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color .2s var(--ease), background .2s var(--ease);
  width: 100%;
}

.field textarea { min-height: 160px; resize: vertical; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--bg-2);
}

.field input::placeholder,
.field textarea::placeholder { color: var(--text-2); }

.form-success {
  display: none;
  padding: 16px 18px;
  border: 1px solid var(--success);
  background: rgba(16, 185, 129, 0.08);
  color: var(--success);
  border-radius: var(--radius);
  font-size: 14px;
  margin-bottom: 24px;
}
.form-success.show { display: block; }

/* spam honeypot — hidden from humans, tempting to bots */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* =========================================================
   Footer
   ========================================================= */

.footer {
  padding: 96px 0 32px;
  border-top: 1px solid var(--border);
  background: var(--bg-0);
  position: relative;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
}

@media (max-width: 880px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand-col { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
}

.footer-brand-col p {
  font-size: 14px;
  max-width: 36ch;
  margin-top: 16px;
}

.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-2);
  font-weight: 500;
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  color: var(--text-1);
  font-size: 14px;
  transition: color .2s var(--ease);
}
.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-2);
  letter-spacing: 0.04em;
}

/* =========================================================
   Reveal animation
   ========================================================= */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* =========================================================
   Utility
   ========================================================= */

.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }
.mt-6 { margin-top: 64px; }
.mt-8 { margin-top: 96px; }

.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.gap-2 { gap: 12px; }
.gap-3 { gap: 16px; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
