/* =========================================================
   METIS INSTRUMENTS — shared stylesheet
   Design: refined editorial + engineering precision
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  /* Metis brand palette — pulled directly from the logo */
  --ink:        #000000;          /* logo background — true black */
  --ink-soft:   #0b1220;          /* slightly lifted black for depth */
  --paper:      #ffffff;          /* clean white page */
  --paper-2:    #f4f6f9;          /* subtle off-white panel */
  --rule:       #e3e7ec;          /* light grey divider */
  --navy:       #1A478D;          /* Metis wordmark navy */
  --navy-dk:    #1A478D;          /* deeper navy */
  --accent:     #19A3DD;          /* bright logo blue — primary accent */
  --accent-dk:  #1A478D;
  --highlight:  #F4BF18;          /* gold — secondary accent */
  --gold:       #F4BF18;          /* gold — accent alias */
  --muted:      #5d6373;          /* body muted text */
  --steel:      #919193;          /* subheadline grey from logo */

  --display: 'Mulish', -apple-system, system-ui, 'Segoe UI', sans-serif;
  --sans:    'Mulish', -apple-system, system-ui, 'Segoe UI', sans-serif;
  --mono:    'JetBrains Mono', ui-monospace, monospace;

  --maxw: 1280px;
  --gutter: clamp(20px, 4vw, 48px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* -------- Type scale -------- */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}
.eyebrow--light { color: rgba(255,255,255,.7); }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.02;
  margin: 0 0 0.4em;
  color: var(--navy);
}
h1 { font-size: clamp(44px, 7vw, 96px); font-weight: 800; }
h2 { font-size: clamp(32px, 4.5vw, 56px); font-weight: 700; }
h3 { font-size: clamp(22px, 2.2vw, 30px); font-weight: 700; }
h4 { font-size: 18px; font-family: var(--sans); font-weight: 700; letter-spacing: 0; color: var(--navy); }

h1 em, h2 em, h3 em {
  font-style: italic;
  color: var(--accent);
  font-weight: 700;
}

p { margin: 0 0 1em; }
.lead {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 62ch;
}

/* -------- Containers -------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.wrap--wide { max-width: 1480px; }

section { padding: clamp(64px, 10vw, 140px) 0; }

/* -------- Top announcement bar -------- */
.topbar {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 8px 0;
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.topbar__right { display: flex; gap: 24px; color: rgba(255,255,255,.65); }
.topbar__right a:hover { color: var(--paper); }

/* -------- Header / nav -------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px var(--gutter);
  max-width: var(--maxw);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0;
  line-height: 0;
}
.brand__img {
  display: block;
  height: 52px;
  width: auto;
  border-radius: 3px;
}
.nav__links {
  display: flex;
  gap: 38px;
  list-style: none;
  padding: 0; margin: 0;
  font-size: 14px;
  font-weight: 500;
}
.nav__links a {
  position: relative;
  padding: 6px 0;
  transition: color .2s;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width .3s ease;
}
.nav__links a:hover::after,
.nav__links a.active::after { width: 100%; }
.nav__links a.active { color: var(--accent); }
.nav__cta {
  padding: 10px 18px;
  background: var(--ink);
  color: var(--paper);
  font-size: 13px;
  font-weight: 500;
  border-radius: 2px;
  transition: background .2s;
}
.nav__cta:hover { background: var(--accent); }

/* -------- Buttons -------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
  transition: all .25s;
}
.btn:hover { background: var(--accent); border-color: var(--accent); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.btn--light { border-color: var(--paper); background: transparent; color: var(--paper); }
.btn--light:hover { background: var(--paper); color: var(--ink); }
.btn .arrow { transition: transform .25s; }
.btn:hover .arrow { transform: translateX(4px); }

/* -------- Hero (homepage) -------- */
.hero {
  position: relative;
  min-height: 88vh;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 75%);
}
.hero__glow {
  position: absolute;
  width: 900px; height: 900px;
  right: -250px; top: -200px;
  background: radial-gradient(circle, rgba(16,143,212,.22), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}
.hero__glow--yellow {
  position: absolute;
  width: 500px; height: 500px;
  left: -150px; bottom: -150px;
  background: radial-gradient(circle, rgba(245,209,3,.08), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero__text h1 {
  color: var(--paper);
  font-weight: 800;
}
.hero__text h1 em {
  font-style: italic;
  font-weight: 800;
  color: var(--accent);
}
.hero__lead {
  font-size: clamp(16px, 1.3vw, 19px);
  color: rgba(255,255,255,.75);
  max-width: 52ch;
  margin-top: 24px;
  line-height: 1.6;
}
.hero__cta {
  display: flex;
  gap: 14px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero__meta {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.15);
  flex-wrap: wrap;
}
.hero__meta-item .n {
  font-family: var(--display);
  font-size: 38px;
  font-weight: 400;
  color: var(--paper);
  line-height: 1;
  display: block;
}
.hero__meta-item .l {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-top: 8px;
  display: block;
}

/* Hero visual — hysteresis curve SVG */
.hero__visual {
  position: relative;
  aspect-ratio: 1;
  max-width: 520px;
  justify-self: end;
}
.hysteresis-svg {
  width: 100%; height: 100%;
}
.hysteresis-svg .axis { stroke: rgba(255,255,255,.22); stroke-width: 1; }
.hysteresis-svg .grid { stroke: rgba(255,255,255,.06); stroke-width: 1; }
.hysteresis-svg .curve {
  fill: none;
  stroke: var(--accent);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  animation: draw 4s ease-in-out .6s forwards;
  filter: drop-shadow(0 0 8px rgba(25,163,221,.45));
}
.hysteresis-svg .label {
  font-family: var(--mono);
  font-size: 10px;
  fill: rgba(255,255,255,.6);
  letter-spacing: 0.1em;
}
.hysteresis-svg .label--accent { fill: var(--accent); }
@keyframes draw { to { stroke-dashoffset: 0; } }

/* -------- Section header -------- */
/* Stacked layout: title block on top, description left-justified underneath.
   Variant.css overrides for non-product pages still take effect (centered). */
.sec-head {
  margin-bottom: 64px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--rule);
}
.sec-head__num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--accent);
}
.sec-head__title {
  margin: 0;
}
.sec-head__desc {
  color: var(--muted);
  max-width: 55ch;
  font-size: 16px;
  margin-top: 24px;
}

/* -------- About section (homepage) -------- */
.about {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
.about__quote {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.35;
  color: var(--ink);
  border-left: 2px solid var(--accent);
  padding-left: 28px;
  margin: 0 0 32px;
}
.pillars {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
}
.pillar__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
}
.pillar__value {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  margin-top: 6px;
}

/* -------- Products grid -------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.product-card {
  position: relative;
  background: var(--paper);
  padding: 0;
  overflow: hidden;
  transition: background .3s;
  cursor: pointer;
}
.product-card__img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--paper-2);
  position: relative;
}
.product-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.6,.2,1), filter .4s;
  filter: saturate(.85);
}
.product-card:hover .product-card__img img {
  transform: scale(1.06);
  filter: saturate(1.05);
}
.product-card__body {
  padding: 32px 28px 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product-card__tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}
.product-card__title {
  font-family: var(--display);
  font-size: 28px;
  line-height: 1.1;
  margin: 2px 0 4px;
}
.product-card__desc {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}
.product-card__arrow {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
}
.product-card:hover .product-card__arrow { color: var(--accent); }

/* -------- News & Events -------- */
.news-section { background: var(--paper-2); }
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.news-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  transition: transform .3s, box-shadow .3s;
}
.news-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -20px rgba(11,18,32,.25); }
.news-card__tag {
  display: inline-block;
  padding: 4px 10px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  align-self: flex-start;
  margin: 24px 24px 0;
}
.news-card__tag--event { background: var(--accent); }
.news-card__body { padding: 20px 24px 28px; }
.news-card__date {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.news-card__title {
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.2;
  margin: 0 0 10px;
}
.news-card__desc {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

/* -------- Industries (homepage strip) -------- */
.industries {
  background: var(--ink);
  color: var(--paper);
  padding: 80px 0;
  overflow: hidden;
}
.industries__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 50px;
}
.industries__title {
  color: var(--paper);
  font-size: clamp(28px, 3.5vw, 44px);
  max-width: 14ch;
  margin: 0;
}
.industries__list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.12);
}
.industry {
  background: var(--ink);
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background .3s;
}
.industry:hover { background: var(--ink-soft); }
.industry__num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.15em;
}
.industry__name {
  font-family: var(--display);
  font-size: 18px;
  line-height: 1.2;
  color: var(--paper);
}

/* -------- CTA Banner -------- */
.cta-banner {
  background: var(--paper-2);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.cta-banner__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: center;
}
.cta-banner h2 {
  margin: 0;
  font-weight: 800;
}

/* -------- Footer -------- */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.7);
  padding: 80px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.footer-col h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--paper);
  margin: 0 0 20px;
  font-weight: 500;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; font-size: 14px; }
.footer-col a:hover { color: var(--accent); }
.footer-brand {
  display: block;
  margin-bottom: 22px;
  line-height: 0;
}
.footer-brand img {
  height: 52px;
  width: auto;
  display: block;
}
.footer-address { font-size: 14px; line-height: 1.7; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  flex-wrap: wrap;
  gap: 20px;
}

/* =========================================================
   INNER PAGES
   ========================================================= */

/* Page hero (smaller, used on non-homepage pages) */
.page-hero {
  background: var(--ink);
  color: var(--paper);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 80% 50%, black 30%, transparent 70%);
}
.page-hero__inner { position: relative; }
.breadcrumb {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 24px;
}
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--accent); }
.page-hero h1 { color: var(--paper); font-weight: 800; margin: 0 0 18px; }
.page-hero h1 em { color: var(--accent); font-style: italic; font-weight: 800; }
.page-hero p { color: rgba(255,255,255,.75); max-width: 60ch; font-size: 18px; margin: 0; }

/* Timeline (company history) */
.timeline {
  position: relative;
  padding-left: 40px;
  max-width: 820px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 10px; top: 8px; bottom: 8px;
  width: 1px;
  background: var(--rule);
}
.timeline__item {
  position: relative;
  padding-bottom: 54px;
}
.timeline__item::before {
  content: '';
  position: absolute;
  left: -34px; top: 10px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--ink);
}
.timeline__item.is-accent::before { border-color: var(--accent); background: var(--accent); }
.timeline__year {
  font-family: var(--display);
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--ink);
}
.timeline__text { color: var(--ink-soft); font-size: 16px; max-width: 62ch; }

/* Product detail page */
.product-hero {
  background: var(--paper-2);
  padding: 60px 0 80px;
}
.product-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.product-hero__img {
  aspect-ratio: 4/3;
  background: var(--paper);
  border: 1px solid var(--rule);
  overflow: hidden;
}
.product-hero__img img { width:100%; height:100%; object-fit: cover; }
.product-hero h1 em { font-style: italic; color: var(--accent); font-weight: 800; }
.product-hero .lead { margin: 20px 0 28px; }

.highlights {
  list-style: none;
  padding: 0; margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.highlights li {
  display: flex;
  gap: 14px;
  font-size: 15px;
  color: var(--ink-soft);
  padding-left: 2px;
  border-left: 2px solid var(--accent);
  padding: 4px 0 4px 16px;
}

/* Metric strip */
.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  margin: 0 0 80px;
}
.metric {
  background: var(--paper);
  padding: 36px 28px;
}
.metric__num {
  font-family: var(--display);
  font-size: 52px;
  font-weight: 400;
  line-height: 1;
  color: var(--ink);
}
.metric__unit {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent);
  margin-left: 4px;
  letter-spacing: 0.1em;
}
.metric__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 12px;
}

/* Components grid (product sub-parts) */
.components {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 60px;
}
.component h3 {
  font-family: var(--display);
  font-size: 24px;
  margin: 0 0 10px;
}
.component__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.component p { color: var(--muted); font-size: 15px; }

/* Spec table */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.spec-table td {
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
}
.spec-table tr:last-child td { border-bottom: none; }
.spec-table td:first-child {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
  width: 40%;
}
.spec-table td:last-child { color: var(--ink); font-weight: 500; }

/* FAQ accordion */
.faq-item {
  border-top: 1px solid var(--rule);
  padding: 24px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--rule); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  cursor: pointer;
  list-style: none;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 500;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+';
  font-family: var(--mono);
  font-size: 22px;
  color: var(--accent);
  transition: transform .3s;
  flex-shrink: 0;
}
details[open] .faq-q::after { transform: rotate(45deg); }
.faq-a {
  padding-top: 16px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
}
.faq-a ul { padding-left: 18px; }
.faq-a li { margin-bottom: 6px; }

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.location-card {
  padding: 36px;
  background: var(--paper-2);
  border-left: 3px solid var(--accent);
  margin-bottom: 20px;
}
.location-card h3 {
  font-family: var(--display);
  font-size: 24px;
  margin: 0 0 14px;
}
.location-card p { margin: 0 0 8px; font-size: 15px; }
.location-card a { color: var(--accent); font-weight: 500; }
.location-card a:hover { text-decoration: underline; }

.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form .full { grid-column: 1 / -1; }
.form label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 8px;
}
.form input, .form select, .form textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--paper);
  border: 1px solid var(--rule);
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  border-radius: 0;
  transition: border-color .2s;
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.form textarea { min-height: 140px; resize: vertical; }

/* Resources page */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.resource {
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--rule);
  display: flex;
  gap: 20px;
  transition: all .3s;
}
.resource:hover { border-color: var(--accent); transform: translateX(4px); }
.resource__icon {
  width: 48px; height: 48px;
  background: var(--ink);
  color: var(--paper);
  display: grid; place-items: center;
  font-family: var(--mono);
  font-size: 11px;
  flex-shrink: 0;
}
.resource h4 { margin: 0 0 6px; font-family: var(--display); font-size: 19px; font-weight: 500; }
.resource p { margin: 0; color: var(--muted); font-size: 14px; }

/* Responsive */
@media (max-width: 960px) {
  .hero__inner,
  .about,
  .cta-banner__inner,
  .product-hero__inner,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { max-width: 380px; justify-self: start; }
  .products-grid,
  .news-grid,
  .components,
  .resources-grid { grid-template-columns: 1fr; }
  .industries__list { grid-template-columns: repeat(2, 1fr); }
  .metrics, .pillars { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .nav__links { display: none; }
  .sec-head { grid-template-columns: 1fr; gap: 20px; }
  .form { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .topbar__right { display: none; }
  .industries__list { grid-template-columns: 1fr; }
  .metrics, .pillars { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero__meta { gap: 28px; }
}

/* Fade-in on scroll utility */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.in { opacity: 1; transform: none; }
