/* Johnson Resources — homepage prototype */

:root {
  --bg: #0a0a0a;
  --bg-raised: #141414;
  --bg-card: #181818;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #ffffff;
  --text-2: #b8b6b3;
  --text-3: #7a7775;
  --red: #c8252c;
  --red-deep: #9a1c22;
  --red-tint: rgba(200, 37, 44, 0.12);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

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

/* Typography */
.eyebrow {
  font-family: "Work Sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 20px 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--red);
}

h1, h2, h3, h4 {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0;
  text-wrap: balance;
}

h1 { font-size: clamp(48px, 5.6vw, 84px); }
h2 { font-size: clamp(36px, 3.6vw, 56px); }
h3 { font-size: clamp(22px, 1.6vw, 26px); font-weight: 600; }

p { margin: 0; text-wrap: pretty; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

.container-wide {
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 48px;
}

section { padding: 120px 0; position: relative; }
section.tight { padding: 80px 0; }

/* Logo lockup */
.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  user-select: none;
}
.logo-mark {
  font-family: "UnifrakturCook", serif;
  font-weight: 700;
  font-size: 38px;
  line-height: 1;
  letter-spacing: -0.04em;
  display: inline-flex;
}
.logo-mark .j { color: var(--red); }
.logo-mark .r { color: #fff; margin-left: -8px; }
.logo-words {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 0.85;
  gap: 2px;
}
.logo-johnson {
  font-family: "Bigshot One", serif;
  color: var(--red);
  font-size: 16px;
  letter-spacing: 0.04em;
}
.logo-resources {
  font-family: "Sacramento", cursive;
  color: #fff;
  font-size: 22px;
  margin-top: -4px;
  margin-left: 4px;
}

/* Header / Nav */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 18px 0;
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s ease;
}
.site-header.transparent {
  background: linear-gradient(to bottom, rgba(0,0,0,0.65), rgba(0,0,0,0));
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 10px 18px;
  color: var(--text-2);
  transition: color 0.2s;
  position: relative;
}
.nav-link:hover, .nav-link.active { color: #fff; }
.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 18px;
  right: 18px;
  height: 2px;
  background: var(--red);
}
.nav-cta {
  margin-left: 12px;
  padding: 12px 22px;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--red-deep); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 28px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.2s;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--red);
  color: #fff;
}
.btn-primary:hover { background: var(--red-deep); }
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: var(--line-strong);
}
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.04); }
.btn-arrow {
  display: inline-block;
  width: 18px;
  height: 1px;
  background: currentColor;
  position: relative;
}
.btn-arrow::after {
  content: "";
  position: absolute;
  right: 0; top: -3px;
  width: 7px; height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

/* Hero */
.hero {
  min-height: 100vh;
  padding: 0;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.75) 60%, rgba(10,10,10,1) 100%),
    repeating-linear-gradient(135deg, #1a1612 0px, #1a1612 12px, #15110e 12px, #15110e 24px);
}
.hero-bg-photo {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-bg-photo span {
  position: absolute;
  top: 100px;
  right: 32px;
  font-family: "JetBrains Mono", "SF Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  border: 1px dashed rgba(255,255,255,0.18);
  padding: 8px 14px;
  background: rgba(0,0,0,0.4);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 180px;
  padding-bottom: 120px;
  width: 100%;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 80px;
  align-items: end;
}
.hero-headline {
  font-size: clamp(54px, 6.4vw, 96px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 0.96;
}
.hero-headline em {
  font-style: normal;
  color: var(--red);
}
.hero-sub {
  margin-top: 28px;
  max-width: 520px;
  font-size: 18px;
  color: var(--text-2);
  line-height: 1.55;
}
.hero-actions {
  margin-top: 44px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-aside {
  border-left: 1px solid var(--line);
  padding-left: 40px;
  padding-bottom: 8px;
}
.hero-aside-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 24px;
}
.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-stat-value {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-size: 44px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero-stat-value .unit { color: var(--red); }
.hero-stat-label {
  font-size: 13px;
  color: var(--text-2);
}

/* Hero bottom marquee */
.hero-marquee {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  border-top: 1px solid var(--line);
  background: rgba(0,0,0,0.5);
  padding: 18px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 80px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-3);
  white-space: nowrap;
  animation: marq 40s linear infinite;
}
.marquee-track span::before {
  content: "■";
  color: var(--red);
  margin-right: 14px;
  font-size: 8px;
  vertical-align: middle;
}
@keyframes marq {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* About section */
.section-bg-raised { background: var(--bg-raised); }

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 80px;
  align-items: start;
}
.about-image {
  aspect-ratio: 4 / 5;
  background:
    linear-gradient(135deg, rgba(200,37,44,0.04), rgba(0,0,0,0)),
    repeating-linear-gradient(45deg, #1f1c19 0px, #1f1c19 14px, #191614 14px, #19161e 28px);
  border: 1px solid var(--line);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-image::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px dashed rgba(255,255,255,0.12);
}
.about-image-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-3);
  z-index: 1;
  background: var(--bg-raised);
  padding: 8px 16px;
  border: 1px solid var(--line);
}
.about-image-tag {
  position: absolute;
  top: 24px;
  left: 24px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  z-index: 1;
}
.about-image-tag::before {
  content: "●";
  margin-right: 8px;
}
.about-copy h2 { margin-bottom: 32px; }
.about-copy p {
  font-size: 17px;
  color: var(--text-2);
  max-width: 580px;
}
.why-box {
  margin-top: 48px;
  padding: 36px;
  background: linear-gradient(135deg, #c8252c 0%, #9a1c22 100%);
  position: relative;
  overflow: hidden;
}
.why-box::before {
  content: "JR";
  position: absolute;
  right: -20px;
  bottom: -40px;
  font-family: "UnifrakturCook", serif;
  font-size: 200px;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  pointer-events: none;
}
.why-box h3 {
  font-size: 22px;
  margin-bottom: 16px;
  position: relative;
}
.why-box p {
  color: rgba(255,255,255,0.92);
  font-size: 16px;
  position: relative;
  max-width: 480px;
}
.why-box .btn {
  margin-top: 28px;
  background: #0a0a0a;
  color: #fff;
  position: relative;
}
.why-box .btn:hover { background: #000; }

/* What We Do */
.work-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 64px;
  gap: 40px;
}
.work-header h2 { max-width: 640px; }
.work-header p {
  max-width: 360px;
  color: var(--text-2);
  font-size: 16px;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.work-card {
  padding: 48px 40px 56px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: background 0.25s ease;
}
.work-card:last-child { border-right: 1px solid var(--line); }
.work-card:hover { background: var(--bg-raised); }
.work-card-num {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--text-3);
  margin-bottom: 80px;
  display: flex;
  justify-content: space-between;
}
.work-card-num .label { color: var(--red); }
.work-card h3 {
  font-size: 26px;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.work-card p {
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 36px;
}
.work-card-link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.work-card-link::after {
  content: "→";
  color: var(--red);
  transition: transform 0.2s;
}
.work-card:hover .work-card-link::after { transform: translateX(4px); }

/* Manufacturers */
.mfr-header {
  text-align: center;
  margin-bottom: 64px;
}
.mfr-header .eyebrow { justify-content: center; }
.mfr-header h2 { margin-bottom: 16px; }
.mfr-header p {
  color: var(--text-2);
  max-width: 540px;
  margin: 0 auto;
  font-size: 16px;
}
.mfr-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
}
.mfr-cell {
  aspect-ratio: 16 / 10;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px;
  transition: background 0.25s;
  position: relative;
  cursor: pointer;
}
.mfr-cell:nth-child(4n) { border-right: none; }
.mfr-cell:nth-last-child(-n+4) { border-bottom: none; }
.mfr-cell:hover { background: var(--bg-raised); }
.mfr-cell:hover .mfr-cta { opacity: 1; transform: translate(0,0); }
.mfr-logo {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.mfr-cell:hover .mfr-logo { color: #fff; }
.mfr-tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-3);
}
.mfr-cta {
  position: absolute;
  bottom: 16px;
  right: 16px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--red);
  opacity: 0;
  transform: translate(-4px, -4px);
  transition: all 0.25s;
}
.mfr-footer {
  margin-top: 56px;
  text-align: center;
}

/* Testimonials */
.testimonial-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: 80px;
  align-items: start;
}
.testimonial-side h2 { margin-bottom: 24px; }
.testimonial-side p {
  color: var(--text-2);
  font-size: 16px;
  margin-bottom: 32px;
  max-width: 360px;
}
.testimonial-nav {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
}
.tnav-btn {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  transition: all 0.2s;
}
.tnav-btn:hover { background: var(--red); border-color: var(--red); }
.testimonial-counter {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--text-3);
}
.testimonial-counter .current { color: var(--red); }

.testimonial-card {
  padding: 56px 48px;
  border: 1px solid var(--line);
  background: var(--bg-card);
  position: relative;
}
.testimonial-quote {
  font-family: "Barlow", sans-serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin-bottom: 40px;
  color: #fff;
  text-wrap: pretty;
}
.testimonial-quote::before {
  content: "“";
  font-family: "Barlow", serif;
  font-size: 80px;
  color: var(--red);
  line-height: 0.6;
  display: block;
  margin-bottom: 16px;
}
.testimonial-attrib {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  background: var(--bg-raised);
  border: 1px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
}
.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.testimonial-name {
  font-weight: 600;
  font-size: 15px;
  color: #fff;
}
.testimonial-role {
  font-size: 13px;
  color: var(--text-2);
}

/* Applications in the Field */
.field-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 56px;
}
.field-header h2 { max-width: 540px; }
.field-header > p {
  max-width: 360px;
  color: var(--text-2);
  font-size: 16px;
}
.field-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 24px;
}
.field-stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 24px;
}
.field-cell {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-decoration: none;
  color: inherit;
}
.field-cell.portrait-tall .field-photo { aspect-ratio: 4 / 5; }
.field-cell.landscape .field-photo { aspect-ratio: 16 / 10; }
.field-photo {
  background:
    linear-gradient(135deg, rgba(200,37,44,0.04), rgba(0,0,0,0)),
    repeating-linear-gradient(135deg, #1f1c19 0px, #1f1c19 14px, #191614 14px, #191614 28px);
  border: 1px solid var(--line);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: border-color 0.25s;
}
.field-cell:hover .field-photo { border-color: var(--line-strong); }
.field-photo::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px dashed rgba(255,255,255,0.10);
  pointer-events: none;
}
.field-photo-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  z-index: 1;
}
.field-photo-tag::before {
  content: "●";
  margin-right: 8px;
}
.field-photo-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
  background: var(--bg);
  padding: 8px 14px;
  border: 1px solid var(--line);
  z-index: 1;
}
.field-cap h4 {
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0 0 6px 0;
  text-wrap: pretty;
}
.field-cell:hover .field-cap h4 { color: #fff; }
.field-meta {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-3);
}
.field-footer {
  margin-top: 56px;
  text-align: center;
}

/* Final CTA */
.final-cta {
  padding: 0;
}
.final-cta-inner {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background:
    linear-gradient(to right, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.7) 50%, rgba(10,10,10,0.3) 100%),
    repeating-linear-gradient(45deg, #1a1612 0px, #1a1612 14px, #15110e 14px, #15110e 28px);
}
.final-cta-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(200,37,44,0.18), transparent 60%);
  pointer-events: none;
}
.final-cta-photo-label {
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  z-index: 2;
}
.final-cta-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding-left: 48px;
  padding-right: 48px;
}
.final-cta h2 {
  font-size: clamp(40px, 4.6vw, 68px);
  margin-bottom: 24px;
}
.final-cta h2 em { font-style: normal; color: var(--red); }
.final-cta p {
  color: var(--text-2);
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 540px;
}
.final-cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Footer */
.site-footer {
  background: #060606;
  padding: 80px 0 32px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
.footer-brand p {
  color: var(--text-2);
  font-size: 14px;
  margin-top: 20px;
  max-width: 320px;
  line-height: 1.6;
}
.footer-col h4 {
  font-family: "Work Sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 20px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col a {
  font-size: 14px;
  color: var(--text-2);
  transition: color 0.2s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--text-3);
}
.footer-bottom a { color: var(--text-3); }
.footer-bottom a:hover { color: #fff; }

/* Section number tag */
.sec-num {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--text-3);
  margin-bottom: 8px;
  display: inline-block;
}
.sec-num .red { color: var(--red); }

/* ============================================================
   PRODUCTS PAGE
   ============================================================ */

/* Page header (smaller than hero) */
.page-hero {
  padding-top: 100px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(10,10,10,0.6), rgba(10,10,10,1) 80%),
    repeating-linear-gradient(135deg, #1a1612 0px, #1a1612 12px, #15110e 12px, #15110e 24px);
}
.page-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 30%, rgba(200,37,44,0.14), transparent 50%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.breadcrumb a {
  color: var(--text-3);
  transition: color 0.2s;
}
.breadcrumb a:hover { color: #fff; }
.breadcrumb-sep { color: var(--text-3); }
.breadcrumb-current { color: var(--red); }

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 80px;
  align-items: end;
}
.page-hero-title {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-size: clamp(48px, 5.4vw, 80px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin: 8px 0 28px 0;
  text-wrap: balance;
}
.page-hero-sub {
  max-width: 580px;
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.55;
}
.page-hero-stats {
  display: flex;
  flex-direction: column;
  gap: 28px;
  border-left: 1px solid var(--line);
  padding-left: 36px;
}
.page-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.page-stat-value {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.page-stat-value .unit { color: var(--red); }
.page-stat-label {
  font-size: 13px;
  color: var(--text-2);
}

/* Filter bar */
.filter-bar {
  background: var(--bg-raised);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 76px;
  z-index: 10;
}
.filter-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 20px 0;
}
.filter-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
}
.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.filter-chip {
  font-family: "Work Sans", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 8px 16px;
  background: transparent;
  color: var(--text-2);
  border: 1px solid var(--line);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-chip:hover {
  border-color: var(--line-strong);
  color: #fff;
}
.filter-chip.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.filter-results {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
}
.filter-results span { color: var(--text-3); margin-left: 4px; }

/* Products section + grid */
.products-section {
  padding: 80px 0 100px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 28px;
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: all 0.25s;
}
.product-card:hover {
  border-color: var(--line-strong);
  background: #1e1d1c;
  transform: translateY(-2px);
}
.product-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
}
.product-tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-2);
  padding: 5px 10px;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,0.02);
}
.product-card-badge {
  position: absolute;
  top: 28px;
  right: 28px;
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
}
.product-card-logo {
  aspect-ratio: 5 / 2;
  background:
    linear-gradient(135deg, rgba(200,37,44,0.04), rgba(0,0,0,0)),
    repeating-linear-gradient(135deg, #1f1c19 0px, #1f1c19 12px, #181614 12px, #181614 24px);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
}
.product-card-logo::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px dashed rgba(255,255,255,0.10);
  pointer-events: none;
}
.product-card-logo-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-3);
  text-align: center;
  padding: 0 12px;
  z-index: 1;
}
.product-card-body { flex: 1; }
.product-card-name {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 12px 0;
  color: #fff;
}
.product-card-blurb {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.55;
  margin: 0;
}
.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.product-card-link {
  font-family: "Work Sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
}
.product-card-arrow {
  color: var(--red);
  font-size: 18px;
  transition: transform 0.25s;
}
.product-card:hover .product-card-arrow {
  transform: translateX(6px);
}

/* Empty state */
.product-empty {
  text-align: center;
  padding: 80px 40px;
  border: 1px dashed var(--line-strong);
  background: var(--bg-card);
}
.product-empty h3 {
  margin: 16px 0 12px;
  font-size: 24px;
}
.product-empty p {
  color: var(--text-2);
  max-width: 420px;
  margin: 0 auto;
}

/* Products closing CTA */
.products-cta {
  padding: 100px 0;
  background: var(--bg-raised);
  border-top: 1px solid var(--line);
}
.products-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) auto;
  gap: 64px;
  align-items: center;
}
.products-cta-left h2 {
  font-size: clamp(32px, 3.4vw, 44px);
  margin: 8px 0 20px 0;
}
.products-cta-left p {
  color: var(--text-2);
  font-size: 17px;
  max-width: 580px;
}
.products-cta-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
