

:root {
  
  --ink:        #0a0d0b;
  --ink-2:      #0d1311;
  --ink-3:      #121815;
  --line:       rgba(230, 235, 230, 0.08);
  --line-2:     rgba(230, 235, 230, 0.14);
  --line-3:     rgba(230, 235, 230, 0.22);

  --fg:         #e6ebe6;
  --fg-2:       #b6bdb7;
  --fg-3:       #80887f;
  --fg-4:       #555a55;

  --acc:        #74b2b5;
  --acc-2:      #8dcacc;
  --acc-3:      #5a9a9d;
  --acc-dim:    rgba(116, 178, 181, 0.14);
  --acc-line:   rgba(116, 178, 181, 0.36);

  --display: 'Roboto Flex', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --sans:    'Roboto Flex', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mono:    'Roboto Mono', 'SF Mono', Menlo, Consolas, monospace;

  --container: 1240px;
  --gutter:    clamp(20px, 4vw, 40px);
  --radius:    2px;

  --ease:      cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  background: var(--ink);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
  overflow-wrap: break-word;
  font-variation-settings: "wdth" 100, "opsz" 14;
}
h1, h2, h3, h4, p, li { overflow-wrap: break-word; }

.hero-stats > div,
.hero-stats dt,
.hero-stats dd,
.product-features li,
.product-features li > *,
.standards-list li,
.standards-list li > *,
.about-card div { min-width: 0; }

body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 100;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.05 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.5;
  mix-blend-mode: overlay;
}

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { background: none; border: 0; color: inherit; font: inherit; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }

::selection { background: var(--acc); color: var(--ink); }

.skip {
  position: absolute; left: -9999px; top: 12px;
  background: var(--acc); color: var(--ink);
  padding: 10px 14px; font-family: var(--mono); font-size: 12px;
  z-index: 200;
}
.skip:focus { left: 12px; }

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

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-variation-settings: "wdth" 100, "opsz" 96;
  color: var(--fg);
}
h2 { font-size: clamp(2rem, 4vw, 3.25rem); line-height: 1.04; }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); line-height: 1.15; font-weight: 500; }
p { color: var(--fg-2); }
em { font-style: italic; font-weight: 300; font-variation-settings: "wdth" 100, "opsz" 144; }

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--fg-3);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--acc);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--acc);
}

.lead { color: var(--fg-2); font-size: 1.0625rem; max-width: 62ch; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: all 180ms var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--acc);
  color: var(--ink);
  border-color: var(--acc);
}
.btn-primary:hover {
  background: transparent;
  color: var(--acc);
  box-shadow: inset 0 0 0 1px var(--acc), 0 0 24px var(--acc-dim);
}
.btn-ghost {
  border-color: var(--line-2);
  color: var(--fg);
}
.btn-ghost:hover {
  border-color: var(--acc-line);
  color: var(--acc);
  background: var(--acc-dim);
}
.btn-link {
  padding: 11px 0;
  color: var(--fg-3);
}
.btn-link:hover { color: var(--acc); }
.btn-lg { padding: 14px 22px; font-size: 12px; }

.nav {
  position: sticky;
  top: 0; z-index: 50;
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  background: rgba(10, 13, 11, 0.72);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms var(--ease), background 200ms var(--ease);
}
.nav.is-scrolled {
  border-color: var(--line);
  background: rgba(10, 13, 11, 0.86);
}
.nav-row {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 64px;
}
.brand {
  display: inline-flex;
  align-items: center;
  color: var(--fg);
  flex-shrink: 0;
}
.brand-wordmark {
  height: 32px;
  width: auto;
  display: block;
}
.footer-brand img { height: 24px; width: auto; }

.nav-links {
  display: flex;
  gap: 24px;
  margin-left: auto;
}
.nav-links a {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-2);
  transition: color 150ms var(--ease);
  position: relative;
}
.nav-links a:hover { color: var(--acc); }
.nav-links a.is-active { color: var(--acc); }
.nav-links a.is-active::after {
  content: '';
  position: absolute;
  bottom: -22px; left: 0; right: 0;
  height: 1px;
  background: var(--acc);
}

.nav-cta { display: flex; gap: 10px; }
.nav-cta .btn-primary { padding: 9px 14px; }

.nav-toggle {
  display: none;
  width: 32px; height: 32px;
  flex-direction: column; gap: 5px; justify-content: center; align-items: center;
}
.nav-toggle span {
  width: 18px; height: 1.5px; background: var(--fg);
  transition: all 180ms var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

[hidden] { display: none !important; }
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 18px var(--gutter) 28px;
  border-top: 1px solid var(--line);
  gap: 6px;
}
@media (max-width: 920px) {
  .mobile-menu:not([hidden]) { display: flex; }
}
.mobile-menu a {
  padding: 12px 0;
  font-family: var(--mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-2);
  border-bottom: 1px solid var(--line);
}
.mobile-menu a:last-child { border-bottom: 0; }
.mobile-menu .btn-primary {
  margin-top: 16px;
  padding: 13px 18px;
  justify-content: center;
  color: var(--ink);
  border: 1px solid var(--acc);
}
.mobile-menu .btn-primary:hover,
.mobile-menu .btn-primary:focus-visible {
  background: var(--acc-2);
  color: var(--ink);
  box-shadow: none;
}

@media (max-width: 920px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; margin-left: auto; }
}

.hero {
  position: relative;
  padding: clamp(80px, 14vh, 160px) 0 clamp(60px, 10vh, 110px);
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: -1;
  color: rgba(116, 178, 181, 0.10);
}
.hero-grid { position: relative; width: 100%; height: 100%; }
.grid-stroke { color: rgba(230, 235, 230, 0.05); }
.hero-ring { color: rgba(116, 178, 181, 0.20); }

.hero-ring {
  transform-box: view-box;
  transform-origin: 600px 320px;
  animation: hero-ring-breathe 7s var(--ease) infinite;
}
.hero-ring-2 { animation-delay: -2.3s; }
.hero-ring-3 { animation-delay: -4.6s; }
@keyframes hero-ring-breathe {
  0%, 100% { stroke-opacity: 0.5; transform: scale(0.985); }
  50%      { stroke-opacity: 1;   transform: scale(1.015); }
}
.hero-sweep {
  transform-box: view-box;
  transform-origin: 600px 320px;
  animation: hero-sweep-spin 9s linear infinite;
}
@keyframes hero-sweep-spin {
  to { transform: rotate(360deg); }
}
.hero-hub-glow {
  transform-box: view-box;
  transform-origin: 600px 320px;
  animation: hero-hub-pulse 3.4s var(--ease) infinite;
}
@keyframes hero-hub-pulse {
  0%, 100% { opacity: 0.08; transform: scale(0.7); }
  50%      { opacity: 0.22; transform: scale(1.3); }
}
.hero-blip {
  opacity: 0;
  animation: hero-blip-flash 4s var(--ease) infinite;
}
.hero-blip-2 { animation-delay: -1.7s; }
.hero-blip-3 { animation-delay: -3s; }
@keyframes hero-blip-flash {
  0%, 100% { opacity: 0; }
  8%       { opacity: 0.6; }
  45%      { opacity: 0.08; }
  65%      { opacity: 0; }
}

.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 35%, rgba(116, 178, 181, 0.10), transparent 70%),
    linear-gradient(to bottom, transparent 60%, var(--ink));
}

.hero-inner { position: relative; max-width: 980px; }
.hero-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2.125rem, 7.4vw, 6rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 22px 0 24px;
  font-variation-settings: "wdth" 100, "opsz" 144, "GRAD" 0;
  color: var(--fg);
  overflow-wrap: break-word;
}
.hero-title .accent {
  color: var(--acc);
  font-style: italic;
  font-weight: 300;
  font-variation-settings: "wdth" 100, "opsz" 144, "slnt" -10;
}
.hero-sub {
  font-size: clamp(1.0625rem, 1.4vw, 1.25rem);
  color: var(--fg-2);
  max-width: 62ch;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 72px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.hero-stats > div {
  padding-right: 24px;
  position: relative;
}
.hero-stats > div + div { padding-left: 24px; border-left: 1px solid var(--line); }
.hero-stats dt {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--acc);
  margin-bottom: 6px;
}
.hero-stats dd {
  font-size: 14px;
  color: var(--fg-2);
}
@media (max-width: 820px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 18px 0; }
  .hero-stats > div:nth-child(odd) { border-left: 0; padding-left: 0; }
  .hero-stats > div { padding-bottom: 18px; border-bottom: 1px solid var(--line); }
  .hero-stats > div:nth-child(3), .hero-stats > div:nth-child(4) { border-bottom: 0; padding-bottom: 0; }
  .hero-stats > div + div { border-left: 0; padding-left: 0; }
  .hero-stats > div:nth-child(even) { padding-left: 24px; border-left: 1px solid var(--line); }
}

.trust {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 32px 0;
  background: var(--ink-2);
}
.trust-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-3);
  text-align: center;
  margin-bottom: 18px;
}
.trust-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(20px, 6vw, 80px) clamp(28px, 6vw, 80px);
  list-style: none; padding: 0;
  flex-wrap: wrap;
  row-gap: 12px;
}
.trust-row li {
  display: flex;
  align-items: center;
  min-width: 0;
}
.trust-row a {
  display: inline-flex;
  align-items: center;
  opacity: 0.62;
  transition: opacity 200ms var(--ease), filter 200ms var(--ease);
  filter: grayscale(1) brightness(1.05);
}
.trust-row a:hover,
.trust-row a:focus-visible {
  opacity: 1;
  filter: grayscale(0) brightness(1);
}
.trust-row img {
  height: clamp(28px, 3vw, 38px);
  width: auto;
  display: block;
  max-width: 100%;
  object-fit: contain;
}
.trust-row li:nth-child(2) img { height: clamp(20px, 2.2vw, 28px); }
.trust-row li:nth-child(3) img { height: clamp(36px, 4vw, 48px); }
.trust-row li:nth-child(4) img { height: clamp(24px, 2.6vw, 32px); }

.section {
  padding: clamp(80px, 12vw, 140px) 0;
  position: relative;
}
.section-alt { background: var(--ink-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.section-head {
  max-width: 760px;
  margin-bottom: clamp(48px, 6vw, 72px);
}
.section-head h2 {
  margin-top: 16px;
  margin-bottom: 18px;
}

.products {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.product {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--ink-3), var(--ink-2));
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 0;
  position: relative;
  transition: border-color 200ms var(--ease), transform 200ms var(--ease);
  overflow: hidden;
}
.product-flip { direction: rtl; }
.product-flip > * { direction: ltr; }

.product-figure {
  margin: 0;
  padding: 36px;
  border-right: 1px solid var(--line);
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(116, 178, 181, 0.05), transparent 70%),
    var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  overflow: hidden;
}
.product-flip .product-figure {
  border-right: 0;
  border-left: 1px solid var(--line);
}
.product-figure img {
  width: 100%;
  height: 100%;
  max-height: 360px;
  object-fit: contain;
  object-position: center;
  display: block;
  opacity: 0.95;
}

.product-body {
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
}

@media (max-width: 880px) {
  .product { grid-template-columns: 1fr; }
  .product-flip { direction: ltr; }
  .product-figure { border-right: 0; border-bottom: 1px solid var(--line); min-height: 220px; padding: 24px; }
  .product-flip .product-figure { border-left: 0; border-bottom: 1px solid var(--line); }
  .product-body { padding: 32px; }
}
.product:hover {
  border-color: var(--acc-line);
  transform: translateY(-2px);
}
.product::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 36px; height: 36px;
  border-top: 1px solid var(--acc);
  border-left: 1px solid var(--acc);
  opacity: 0; transition: opacity 200ms var(--ease);
}
.product::after {
  content: '';
  position: absolute; bottom: 0; right: 0;
  width: 36px; height: 36px;
  border-bottom: 1px solid var(--acc);
  border-right: 1px solid var(--acc);
  opacity: 0; transition: opacity 200ms var(--ease);
}
.product:hover::before, .product:hover::after { opacity: 0.6; }

.product-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--acc);
}
.product-body h3 {
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  margin: 4px 0 2px;
  font-variation-settings: "wdth" 100, "opsz" 144;
}
.product-summary {
  color: var(--fg-2);
  font-size: 1rem;
  max-width: 52ch;
  margin-bottom: 8px;
}

.product-features {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  border-top: 1px solid var(--line);
}
.product-features li {
  display: grid;
  grid-template-columns: minmax(120px, 32%) 1fr;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--fg-2);
  font-size: 14px;
  line-height: 1.5;
}
.product-features li span {
  font-family: var(--mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg);
  padding-top: 2px;
}
@media (max-width: 560px) {
  .product-features li { grid-template-columns: 1fr; gap: 6px; }
}

.product-foot {
  display: flex;
  gap: 16px;
  margin-top: 14px;
  padding-top: 4px;
  align-items: center;
  flex-wrap: wrap;
}

.capabilities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (max-width: 720px) { .capabilities { grid-template-columns: 1fr; } }

.cap {
  background: var(--ink-2);
  padding: 36px;
}
.cap-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.10em;
  color: var(--acc);
  margin-bottom: 18px;
}
.cap h3 {
  font-family: var(--display);
  font-size: 1.625rem;
  margin-bottom: 12px;
  font-variation-settings: "opsz" 48;
}

.standards-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
@media (max-width: 920px) { .standards-grid { grid-template-columns: 1fr; } }

.standards-copy h2 { margin: 18px 0 18px; }
.standards-copy .lead { margin-bottom: 28px; }

.standards-list {
  list-style: none; padding: 0; margin: 0;
  border-top: 1px solid var(--line);
}
.standards-list li {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.std-code {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--acc);
}
.std-text {
  color: var(--fg-2);
  font-size: 15px;
}
@media (max-width: 560px) {
  .standards-list li { grid-template-columns: 1fr; gap: 6px; }
}

.steps {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; } }

.steps li {
  background: var(--ink);
  padding: 40px 32px;
  position: relative;
}
.step-num {
  font-family: var(--display);
  font-size: 4rem;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: var(--fg-4);
  display: block;
  margin-bottom: 18px;
  line-height: 0.9;
  font-variation-settings: "opsz" 144;
}
.steps h3 {
  font-family: var(--display);
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--acc);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
@media (max-width: 820px) { .about-grid { grid-template-columns: 1fr; } }
.about-grid h2 { margin: 18px 0 24px; }
.about-grid p { margin-bottom: 16px; max-width: 56ch; }

.about-card {
  border: 1px solid var(--line);
  background: var(--ink-2);
  padding: 28px;
}
.about-card dl {
  display: flex; flex-direction: column;
  gap: 18px;
  margin: 0;
}
.about-card div { display: flex; flex-direction: column; gap: 4px; }
.about-card dt {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--fg-3);
}
.about-card dd { color: var(--fg); font-size: 15px; margin: 0; }

.contact-copy { max-width: 52ch; position: relative; z-index: 1; }
.contact-copy h2 { margin: 18px 0 18px; }
.contact-copy .lead { margin-bottom: 36px; max-width: 52ch; }

.contact-email {
  display: inline-block;
  max-width: 100%;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.25rem, 4vw, 2rem);
  letter-spacing: -0.025em;
  font-variation-settings: "wdth" 100, "opsz" 96;
  color: var(--acc);
  overflow-wrap: break-word;
  transition: color 150ms var(--ease);
}
.contact-email:hover { color: var(--fg); }

.contact-addr {
  display: block;
  margin-top: 28px;
  font-style: normal;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 1.8;
  color: var(--fg-3);
}

.contact-bg {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  align-items: center;
  pointer-events: none;
  z-index: 0;
}
.contact-bg svg {
  grid-column: 2;
  justify-self: center;
  width: min(95%, 720px);
  height: min(100%, 720px);
  display: block;
  transform: scale(1.5);
  transform-origin: center;
}
@media (max-width: 920px) {
  .contact-bg {
    grid-template-columns: 1fr;
    opacity: 0.3;
  }
  .contact-bg svg {
    grid-column: 1;
    width: 100%;
    height: auto;
    max-width: 520px;
    transform: none;
  }
}
#contact { overflow: hidden; }
#contact .container { position: relative; z-index: 1; }

.footer {
  border-top: 1px solid var(--line);
  padding: 40px 0 32px;
  background: var(--ink);
}
.footer-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.footer-row > * { min-width: 0; }
@media (max-width: 720px) {
  .footer-row { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start !important; }
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--fg-2);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
}
.footer-brand svg { color: var(--acc); }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.footer-links a {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--fg-3);
}
.footer-links a:hover { color: var(--acc); }
.footer-meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  line-height: 1.9;
  color: var(--fg-3);
  margin: 0;
}
.footer-meta a { color: var(--fg-3); }
.footer-meta a:hover { color: var(--acc); }

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

:focus-visible {
  outline: 2px solid var(--acc);
  outline-offset: 2px;
}

.inner {
  padding: clamp(80px, 12vh, 140px) 0 clamp(60px, 8vh, 100px);
  min-height: 70vh;
}
.inner .crumbs {
  display: flex;
  gap: 10px;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--fg-3);
  margin-bottom: 28px;
}
.inner .crumbs a { color: var(--fg-3); }
.inner .crumbs a:hover { color: var(--acc); }
.inner .crumbs span { color: var(--fg-4); }
.inner h1 {
  font-family: var(--display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  font-variation-settings: "opsz" 144;
}
.inner .lead-xl {
  font-size: 1.125rem;
  color: var(--fg-2);
  max-width: 60ch;
  margin-bottom: 40px;
}
.product-hero {
  position: relative;
  border: 1px solid var(--line);
  background:
    radial-gradient(ellipse 70% 55% at 50% 45%, rgba(116, 178, 181, 0.06), transparent 70%),
    var(--ink-2);
  padding: clamp(28px, 4vw, 56px);
  margin: 0 0 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: clamp(280px, 38vw, 460px);
}
.product-hero img {
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}
