/* ================================================================
   TJNE — Precision Industrial Edition
   Typography: Manrope (display/headings) + Inter (body) + restrained mono labels
   Palette: Graphite · Platinum · Industrial Blue · Warm Brass
   Philosophy: restrained industrial precision with international B2B clarity
   ================================================================ */

:root {
  /* Core palette */
  --ink:          #0f1720;
  --ink-2:        #182332;
  --iron:         #243247;
  --steel:        #3f5268;
  --slate:        #627386;
  --mist:         #8aa0b5;
  --silver:       #b7c7d6;
  --platinum:     #d8e3ec;
  --frost:        #eef4f8;
  --snow:         #f6f8fb;
  --white:        #ffffff;

  /* Accent — Electric Blue */
  --blue:         #0b5cab;
  --blue-2:       #1473cf;
  --blue-3:       #4b93d2;
  --blue-bg:      #e4effa;
  --blue-pale:    #f2f7fc;

  /* Accent — Warm Brass (replaces copper — more refined) */
  --brass:        #8a6a3d;
  --brass-2:      #b68b4e;
  --brass-bg:     #f7efe4;

  /* Status */
  --green:        #1f7655;
  --green-2:      #248663;
  --green-bg:     #e7f3ee;

  /* Shadows — very precise, low opacity */
  --s1: 0 1px 3px rgba(14,17,23,.06), 0 1px 2px rgba(14,17,23,.04);
  --s2: 0 4px 16px rgba(14,17,23,.07), 0 2px 6px rgba(14,17,23,.04);
  --s3: 0 12px 40px rgba(14,17,23,.09), 0 4px 12px rgba(14,17,23,.05);
  --s4: 0 24px 64px rgba(14,17,23,.12), 0 8px 24px rgba(14,17,23,.06);

  /* Geometry */
  --r:    12px;
  --r-sm: 6px;
  --r-lg: 20px;

  /* Layout */
  --max: 1240px;

  /* Transitions */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--snow);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

h1, h2, h3, h4, h5 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.018em;
  margin: 0;
  color: var(--ink);
}

.container {
  width: min(var(--max), calc(100% - 56px));
  margin-inline: auto;
}

/* ── Label / eyebrow ──────────────────────────────────────────── */
.label {
  font-family: 'Inter', sans-serif;
  font-size: .71rem;
  font-weight: 600;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.label::before {
  content: '';
  display: block;
  width: 20px;
  height: 1.5px;
  background: currentColor;
  flex-shrink: 0;
}

/* ── Header ───────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(24px) saturate(1.6);
  border-bottom: 1px solid var(--platinum);
  transition: box-shadow .3s var(--ease);
}
.site-header.scrolled {
  box-shadow: var(--s2);
}

.nav-wrap {
  height: 72px;
  display: flex;
  align-items: center;
  gap: 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
  margin-right: auto;
}
.brand-mark {
  width: 280px;
  height: 52px;
  object-fit: contain;
  object-position: left center;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1px;
  margin: 0 20px;
}
.main-nav a {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--steel);
  padding: 7px 14px;
  border-radius: var(--r-sm);
  transition: color .15s, background .15s;
  letter-spacing: .01em;
}
.main-nav a:hover { color: var(--ink); background: var(--frost); }
.main-nav a.active { color: var(--blue); background: var(--blue-pale); font-weight: 600; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--r-sm);
  letter-spacing: .02em;
  transition: background .2s, transform .2s var(--ease), box-shadow .2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-cta:hover {
  background: var(--blue);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(11,92,171,.28);
}
.nav-cta-arrow {
  font-size: 14px;
  transition: transform .2s var(--ease);
}
.nav-cta:hover .nav-cta-arrow { transform: translateX(2px); }

.mobile-menu {
  display: none;
  border: 1.5px solid var(--platinum);
  background: var(--white);
  border-radius: var(--r-sm);
  padding: 8px 12px;
  font-size: 18px;
  color: var(--ink);
  cursor: pointer;
  margin-left: auto;
}

/* ── Buttons ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--r-sm);
  padding: 13px 22px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all .22s var(--ease);
  letter-spacing: .01em;
  line-height: 1;
}
.btn-primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(14,17,23,.18);
}
.btn-primary:hover {
  background: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(11,92,171,.3);
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--silver);
}
.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-pale);
  transform: translateY(-1px);
}
.btn-sm { padding: 9px 16px; font-size: 12.5px; }

/* ── HERO ─────────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: #173754;
  overflow: hidden;
  padding: 0;
  isolation: isolate;
}

/* Precision grid background */
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Subtle gradient glow */
.hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 72% 50%, rgba(75,147,210,.10) 0%, transparent 65%),
    radial-gradient(ellipse 40% 80% at 10% 30%, rgba(138,106,61,.06) 0%, transparent 55%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

/* Left column — copy */
.hero-copy {
  padding: 88px 64px 88px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-label {
  font-family: 'Inter', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #58c37d 0%, #8be0a8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}
.hero-label::before {
  content: '';
  width: 24px;
  height: 1.5px;
  background: linear-gradient(90deg, #58c37d 0%, #8be0a8 100%);
}

.hero h1 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2.35rem, 4.6vw, 3.7rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -.03em;
  color: var(--white);
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: normal;
  color: var(--blue-3);
}

.hero-lead {
  font-size: 1rem;
  color: rgba(255,255,255,.70);
  line-height: 1.72;
  max-width: 440px;
  margin-bottom: 40px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
.hero-actions .btn-primary {
  background: var(--blue);
  box-shadow: 0 6px 24px rgba(11,92,171,.35);
}
.hero-actions .btn-primary:hover {
  background: var(--blue-2);
  box-shadow: 0 10px 32px rgba(11,92,171,.45);
}
.hero-actions .btn-outline {
  border-color: rgba(255,255,255,.2);
  color: rgba(255,255,255,.8);
  background: rgba(255,255,255,.04);
}
.hero-actions .btn-outline:hover {
  border-color: rgba(255,255,255,.5);
  color: var(--white);
  background: rgba(255,255,255,.1);
  transform: translateY(-1px);
}

/* Hero eyebrow tags */
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .03em;
  color: rgba(255,255,255,.52);
  padding: 7px 12px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 4px;
  transition: color .2s, border-color .2s, background .2s;
}
.hero-tag::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue-3);
  opacity: .7;
}
.hero-tag:hover {
  color: rgba(255,255,255,.82);
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.04);
}

/* Right column — visual */
.hero-visual-col {
  position: relative;
  overflow: hidden;
}

.hero-visual-col::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.15) 30%, rgba(255,255,255,.15) 70%, transparent);
  z-index: 3;
}

.hero-img-wrap {
  position: absolute;
  inset: 0;
}
.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .8s var(--ease);
  filter: brightness(.93) saturate(1);
}
.hero-visual-col:hover .hero-img-wrap img {
  transform: scale(1.025);
}

/* Overlay gradient on image */
.hero-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(14,17,23,.10) 0%, transparent 34%),
              linear-gradient(0deg, rgba(14,17,23,.20) 0%, transparent 32%);
}

.hero-badge {
  position: absolute;
  bottom: 32px;
  left: 32px;
  z-index: 4;
  background: rgba(14,17,23,.82);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r-sm);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-2);
  flex-shrink: 0;
  animation: pulse 2.4s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34,164,110,.5); }
  50% { opacity: .7; box-shadow: 0 0 0 5px rgba(34,164,110,0); }
}
.hero-badge-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: .72rem;
  color: rgba(255,255,255,.8);
  letter-spacing: .06em;
  line-height: 1.35;
}
.hero-badge-text strong {
  display: block;
  color: var(--white);
  font-weight: 500;
  font-size: .76rem;
}

/* ── Stats bar ────────────────────────────────────────────────── */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--platinum);
  position: relative;
  z-index: 10;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.stat-cell {
  padding: 28px 24px;
  border-right: 1px solid var(--platinum);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: background .2s;
}
.stat-cell:last-child { border-right: 0; }
.stat-cell:hover { background: var(--blue-pale); }

.stat-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: var(--r-sm);
  background: var(--blue-pale);
  border: 1px solid var(--blue-bg);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.stat-icon-wrap svg {
  width: 18px;
  height: 18px;
  stroke: var(--blue);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.stat-text strong {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -.03em;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 3px;
}
.stat-text small {
  font-size: .72rem;
  font-weight: 500;
  color: var(--mist);
  letter-spacing: .02em;
  font-family: 'Inter', sans-serif;
}

/* ── Section layout ───────────────────────────────────────────── */
section { padding: 80px 0; }

.section-header {
  margin-bottom: 52px;
}
.section-header.center { text-align: center; }
.section-header.center .section-desc { margin-inline: auto; }

.section-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  font-weight: 700;
  color: var(--ink);
  margin: 12px 0 14px;
  letter-spacing: -.024em;
}
.section-desc {
  font-size: .9375rem;
  color: var(--slate);
  max-width: 600px;
  line-height: 1.7;
  font-weight: 400;
}

/* ── About section ────────────────────────────────────────────── */
.about-section {
  background: var(--white);
}
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.about-copy .section-title { margin-top: 12px; }
.about-copy p {
  font-size: .9375rem;
  color: var(--steel);
  line-height: 1.78;
}
.about-copy p + p { margin-top: 14px; }
.about-cta { margin-top: 32px; }

.about-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--platinum);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--s2);
}
.metric-card {
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-right: 1px solid var(--platinum);
  border-bottom: 1px solid var(--platinum);
  background: var(--white);
  transition: background .2s;
  position: relative;
}
.metric-card:hover { background: var(--frost); }
.metric-card:nth-child(3n) { border-right: 0; }
.metric-card:nth-child(n+4) { border-bottom: 0; }

.metric-num {
  font-family: 'Manrope', sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -.04em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 5px;
}
.metric-label {
  font-size: .72rem;
  font-weight: 700;
  color: var(--mist);
  letter-spacing: .04em;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
}
.metric-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--blue);
  opacity: 0;
  transition: opacity .2s;
}
.metric-card:hover .metric-accent { opacity: 1; }

/* ── Products section ─────────────────────────────────────────── */
.products-section { background: var(--snow); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--platinum);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--s2);
  background: var(--platinum);
}
.product-card {
  position: relative;
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: background .2s;
  overflow: hidden;
}
.product-card:hover { background: var(--frost); }

.product-photo {
  height: 200px;
  overflow: hidden;
  background: var(--snow);
  border-bottom: 1px solid var(--platinum);
}
.product-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease), filter .3s;
  filter: saturate(.9);
}
.product-card:hover .product-photo img {
  transform: scale(1.05);
  filter: saturate(1.05);
}

.product-accent {
  height: 2px;
  background: var(--blue);
  transition: background .2s;
}
.product-card.g .product-accent { background: var(--green-2); }
.product-card.o .product-accent { background: var(--brass); }
.product-card.p .product-accent { background: #4e6582; }

.product-body {
  padding: 24px 24px 0;
  flex: 1;
}
.product-body h3 {
  font-family: 'Manrope', sans-serif;
  font-size: .9375rem;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 14px;
}
.product-body ul {
  margin: 0 0 20px 0;
  padding: 0;
  list-style: none;
}
.product-body li {
  font-size: .8rem;
  color: var(--slate);
  line-height: 1.65;
  padding: 4px 0;
  border-bottom: 1px solid var(--frost);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.product-body li::before {
  content: '—';
  color: var(--silver);
  font-size: .7rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.product-footer {
  padding: 16px 24px 20px;
}
.product-link {
  font-family: 'Inter', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: .03em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .18s var(--ease);
}
.product-link:hover { gap: 10px; }
.product-link-arrow {
  font-size: .9rem;
  line-height: 1;
}

/* ── Applications section ─────────────────────────────────────── */
.applications-section {
  background: var(--white);
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.app-card {
  background: var(--snow);
  border: 1px solid var(--platinum);
  border-radius: var(--r);
  padding: 32px 24px;
  text-align: left;
  transition: transform .22s var(--ease), box-shadow .22s, border-color .22s, background .22s;
  position: relative;
  overflow: hidden;
}
.app-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background: linear-gradient(180deg, transparent, var(--blue-pale));
  transition: height .3s var(--ease);
}
.app-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--s3);
  border-color: var(--blue-bg);
  background: var(--white);
}
.app-card:hover::before { height: 40px; }

.app-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  font-size: 1.4rem;
  position: relative;
  z-index: 1;
}
.app-icon-wrap.water {
  background: #e7f1fb;
  box-shadow: inset 0 0 0 1px rgba(11,92,171,.14);
}
.app-icon-wrap.battery {
  background: #e7f3ee;
  box-shadow: inset 0 0 0 1px rgba(26,122,81,.15);
}
.app-icon-wrap.hydrogen {
  background: #e6f5f2;
  box-shadow: inset 0 0 0 1px rgba(36,134,99,.14);
}
.app-icon-wrap.shield {
  background: #edf1f7;
  box-shadow: inset 0 0 0 1px rgba(78,101,130,.16);
}

.app-card h3 {
  font-family: 'Manrope', sans-serif;
  font-size: .9375rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -.01em;
  position: relative;
  z-index: 1;
}
.app-card p {
  font-size: .8375rem;
  color: var(--slate);
  line-height: 1.65;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* ── Quality section ──────────────────────────────────────────── */
.quality-section {
  background: #173754;
  position: relative;
  overflow: hidden;
}
.quality-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.quality-glow {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(75,147,210,.10) 0%, transparent 70%);
  pointer-events: none;
}

.quality-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 240px 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.cert-panel {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r);
  padding: 16px;
}
.cert-panel img {
  border-radius: var(--r-sm);
  filter: brightness(.9);
}

.quality-copy .label { color: var(--brass-2); }
.quality-copy .label::before { background: var(--brass-2); }

.quality-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.5rem, 2.8vw, 2.05rem);
  font-weight: 700;
  color: var(--white);
  margin: 14px 0 6px;
  letter-spacing: -.035em;
}
.quality-subtitle {
  font-size: 1rem;
  color: var(--blue-3);
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  display: block;
  margin-bottom: 20px;
}
.quality-copy p {
  font-size: .875rem;
  color: rgba(255,255,255,.66);
  line-height: 1.75;
  font-weight: 400;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 28px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  font-size: .84rem;
  color: rgba(255,255,255,.72);
  line-height: 1.55;
}
.check-list li:last-child { border-bottom: 0; }
.check-list li::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(34,164,110,.18);
  border: 1px solid rgba(34,164,110,.35);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%2322a46e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 8l3.5 3.5 6.5-7'/%3E%3C/svg%3E");
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
}

.quality-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.quality-feat {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r);
  padding: 20px;
  transition: background .2s, border-color .2s;
}
.quality-feat:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.14);
}
.quality-feat-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  font-size: 1rem;
  background: rgba(255,255,255,.08);
}
.quality-features .quality-feat:nth-child(1) .quality-feat-icon { color: #f3c56d; }
.quality-features .quality-feat:nth-child(2) .quality-feat-icon { color: #7bc0ff; }
.quality-features .quality-feat:nth-child(3) .quality-feat-icon { color: #76d7ae; }
.quality-features .quality-feat:nth-child(4) .quality-feat-icon { color: #8fd2ff; }
.quality-feat strong {
  font-family: 'Manrope', sans-serif;
  font-size: .875rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 5px;
  letter-spacing: -.01em;
}
.quality-feat small {
  font-size: .75rem;
  color: rgba(255,255,255,.56);
  line-height: 1.5;
  display: block;
  font-weight: 300;
}

.btn-quality {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.8);
}
.btn-quality:hover {
  background: var(--blue);
  border-color: transparent;
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(11,92,171,.35);
}

/* ── Resources section ────────────────────────────────────────── */
.resources-section { background: var(--snow); }

.resources-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.res-card {
  background: var(--white);
  border: 1px solid var(--platinum);
  border-radius: var(--r);
  padding: 28px 24px;
  display: block;
  transition: transform .22s var(--ease), box-shadow .22s, border-color .22s;
  color: var(--ink);
  position: relative;
}
.res-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--s3);
  border-color: var(--blue-bg);
}
.res-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--blue);
  border-radius: var(--r) var(--r) 0 0;
  opacity: 0;
  transition: opacity .2s;
}
.res-card:hover::after { opacity: 1; }

.res-icon {
  font-size: 1.6rem;
  margin-bottom: 14px;
  display: block;
}
.res-card h3 {
  font-family: 'Manrope', sans-serif;
  font-size: .9375rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -.01em;
}
.res-card p {
  font-size: .8125rem;
  color: var(--slate);
  line-height: 1.62;
  margin-bottom: 20px;
}
.res-link {
  font-size: .78rem;
  font-weight: 600;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  letter-spacing: .02em;
  font-family: 'Inter', sans-serif;
  transition: gap .18s var(--ease);
}
.res-link:hover { gap: 9px; }

/* ── Partners section ─────────────────────────────────────────── */
.partners-section {
  background: var(--white);
  border-top: 1px solid var(--platinum);
  border-bottom: 1px solid var(--platinum);
  padding: 60px 0;
}
.partners-label {
  text-align: center;
  margin-bottom: 28px;
}
.partners-label .section-desc {
  margin: 10px auto 0;
  max-width: 620px;
}
.partner-logos {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  align-items: center;
}
.partner-logo-card {
  height: 78px;
  border: 1px solid var(--platinum);
  border-radius: var(--r-sm);
  background: linear-gradient(180deg, var(--white), var(--snow));
  display: grid;
  place-items: center;
  padding: 10px 14px;
  overflow: hidden;
  transition: border-color .18s, background .18s, box-shadow .18s, transform .18s;
}
.partner-logo-card:hover {
  border-color: var(--silver);
  background: var(--white);
  box-shadow: var(--s1);
  transform: translateY(-1px);
}
.partner-logo-card img {
  max-width: 94%;
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(1) contrast(.88);
  opacity: .78;
  transition: filter .18s, opacity .18s, transform .18s;
}
.partner-logo-card:hover img {
  filter: grayscale(.1) contrast(1);
  opacity: .96;
}
.partner-more-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 26px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--blue);
  transition: gap .18s var(--ease);
}
.partner-more-link:hover { gap: 10px; }

/* ── Contact section ──────────────────────────────────────────── */
.contact-section { background: var(--snow); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  border: 1px solid var(--platinum);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--s3);
  background: var(--white);
}

.contact-aside {
  background: #173754;
  padding: 52px 44px;
  position: relative;
  overflow: hidden;
}
.contact-aside::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(75,147,210,.10) 0%, transparent 70%);
}
.contact-aside::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(138,106,61,.06) 0%, transparent 70%);
}

.contact-aside .label {
  color: var(--brass-2);
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}
.contact-aside .label::before { background: var(--brass-2); }

.contact-aside h2 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.03em;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.contact-aside > p {
  font-size: .875rem;
  color: rgba(255,255,255,.68);
  line-height: 1.72;
  position: relative;
  z-index: 1;
  font-weight: 300;
}

.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 32px 0;
  position: relative;
  z-index: 1;
}
.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 14px 0;
  font-size: .875rem;
}
.contact-info-list .ci-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  display: grid;
  place-items: center;
  font-size: .9rem;
  flex-shrink: 0;
}
.contact-info-list .ci-text {
  color: rgba(255,255,255,.72);
  line-height: 1.4;
  padding-top: 6px;
  font-weight: 300;
}
.contact-info-list a {
  color: rgba(255,255,255,.72);
  transition: color .15s;
}
.contact-info-list a:hover { color: var(--white); }

.contact-tagline {
  font-size: .78rem;
  color: rgba(255,255,255,.50);
  line-height: 1.65;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 22px;
  margin-top: 28px;
  position: relative;
  z-index: 1;
  font-weight: 300;
}

.contact-form-wrap {
  padding: 48px 44px;
  background: var(--white);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}
label span {
  font-family: 'JetBrains Mono', monospace;
  font-size: .68rem;
  font-weight: 500;
  color: var(--steel);
  letter-spacing: .1em;
  text-transform: uppercase;
}

input, select, textarea {
  width: 100%;
  border: 1.5px solid var(--platinum);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  color: var(--ink);
  background: var(--snow);
  outline: none;
  transition: border-color .15s, box-shadow .15s, background .15s;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(11,92,171,.1);
  background: var(--white);
}
input::placeholder, textarea::placeholder { color: var(--silver); }
textarea { resize: vertical; }

.form-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}
.form-note {
  font-size: .75rem;
  color: var(--mist);
  line-height: 1.5;
  margin: 0;
}
.hp-field { position: absolute; left: -9999px; opacity: 0; }
.form-ok { color: var(--green) !important; font-weight: 600 !important; }
.form-error { color: #b42318 !important; font-weight: 600 !important; }

/* ── Footer ───────────────────────────────────────────────────── */
.site-footer {
  background: #173754;
  color: rgba(255,255,255,.56);
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(5, 1fr);
  gap: 32px;
  padding: 60px 0 48px;
}
.footer-brand img {
  width: 160px;
  object-fit: contain;
  margin-bottom: 18px;
  opacity: .9;
}
.footer-brand p {
  font-size: .78rem;
  color: rgba(255,255,255,.50);
  line-height: 1.72;
  max-width: 300px;
  font-weight: 300;
}
.footer-socials {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}
.footer-social-btn {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: transparent;
  border: 0;
  display: grid;
  place-items: center;
  padding: 0;
  color: inherit;
  transition: transform .2s, filter .2s, opacity .2s;
  cursor: pointer;
  overflow: visible;
}
.footer-social-btn img {
  width: 32px;
  height: 32px;
  display: block;
  object-fit: contain;
  opacity: .92;
  transition: transform .2s, filter .2s, opacity .2s;
}
.footer-social-btn:hover {
  background: transparent;
  border-color: transparent;
  transform: translateY(-1px);
}
.footer-social-btn:hover img {
  opacity: 1;
  filter: brightness(1.08) saturate(1.06);
}

.site-footer h3 {
  font-family: 'Inter', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 0 0 18px;
}
.site-footer a,
.site-footer address > p {
  display: block;
  color: rgba(255,255,255,.56);
  font-size: .78rem;
  margin: 9px 0;
  transition: color .15s;
  line-height: 1.45;
  font-style: normal;
  font-weight: 300;
}
.site-footer a:hover { color: rgba(255,255,255,.85); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  font-size: .72rem;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: .04em;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 18px 0;
  color: rgba(255,255,255,.40);
}

/* ── Scroll reveal animation ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}
.reveal.visible {
  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; }

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .main-nav, .nav-cta { display: none; }
  .mobile-menu { display: block; }
  .main-nav.open {
    display: flex;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 72px;
    background: var(--white);
    border: 1px solid var(--platinum);
    border-radius: var(--r);
    box-shadow: var(--s3);
    padding: 10px;
    flex-direction: column;
    align-items: stretch;
    z-index: 500;
    max-height: calc(100vh - 92px);
    overflow: auto;
  }
  .main-nav.open a { padding: 12px 16px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-copy { padding: 64px 0; }
  .hero-visual-col {
    height: 360px;
    position: relative;
  }
  .hero-img-wrap { position: absolute; }
  .stats-inner { grid-template-columns: repeat(3, 1fr); }
  .stat-cell:nth-child(3) { border-right: 0; }
  .stat-cell:nth-child(4) { border-top: 1px solid var(--platinum); }
  .about-layout { grid-template-columns: 1fr; gap: 44px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .app-grid { grid-template-columns: repeat(2, 1fr); }
  .quality-layout { grid-template-columns: 1fr 1fr; }
  .cert-panel { display: none; }
  .resources-grid { grid-template-columns: repeat(2, 1fr); }
  .partner-logos { grid-template-columns: repeat(3, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
  .brand-mark { width: 220px !important; }
}

@media (max-width: 680px) {
  .container { width: calc(100% - 32px); }
  .nav-wrap { height: 64px; }
  .main-nav.open { top: 64px; }
  .brand-mark { width: 180px !important; }
  section { padding: 56px 0; }
  .hero-copy { padding: 48px 0; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat-cell:nth-child(2) { border-right: 0; }
  .stat-cell:nth-child(3) { border-right: 1px solid var(--platinum); border-top: 1px solid var(--platinum); }
  .stat-cell:nth-child(5) { border-right: 0; }
  .about-metrics { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: 1fr; background: none; border: none; border-radius: 0; box-shadow: none; gap: 12px; }
  .product-card { border: 1px solid var(--platinum); border-radius: var(--r); box-shadow: var(--s1); }
  .app-grid { grid-template-columns: 1fr; }
  .quality-layout { grid-template-columns: 1fr; }
  .quality-features { grid-template-columns: 1fr; }
  .resources-grid { grid-template-columns: 1fr; }
  .partner-logos { grid-template-columns: repeat(2, 1fr); }
  .contact-aside, .contact-form-wrap { padding: 36px 28px; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom .container { flex-direction: column; gap: 6px; text-align: center; }
}
  
/* Footer legal/social alignment */
.footer-bottom a{display:inline;color:rgba(255,255,255,.40);font-size:inherit;margin:0}.footer-bottom a:hover{color:#fff}.footer-socials a{display:grid;text-decoration:none}

/* Language selector */
.language-switcher{position:relative;flex-shrink:0;margin-right:10px}
.lang-current{height:38px;display:inline-flex;align-items:center;gap:6px;border:1px solid var(--platinum,var(--line,#dce8f4));background:rgba(255,255,255,.76);color:var(--steel,var(--text-2,#2c4560));border-radius:10px;padding:0 11px;font-family:inherit;font-size:12.5px;font-weight:700;letter-spacing:.02em;cursor:pointer;transition:background .18s,border-color .18s,color .18s,box-shadow .18s}
.lang-current:hover,.language-switcher:focus-within .lang-current{background:var(--blue-pale,var(--sky,#e8f3ff));border-color:var(--blue-bg,var(--line-2,#c8daed));color:var(--blue,#1a4a8a);box-shadow:0 8px 20px rgba(11,31,58,.08)}
.lang-caret{font-size:12px;line-height:1;opacity:.75;transform:translateY(-1px)}
.lang-menu{position:absolute;right:0;top:calc(100% + 8px);width:190px;background:rgba(255,255,255,.98);border:1px solid var(--platinum,var(--line,#dce8f4));border-radius:14px;box-shadow:0 18px 48px rgba(11,31,58,.14);padding:7px;opacity:0;visibility:hidden;transform:translateY(6px);transition:opacity .18s,visibility .18s,transform .18s;z-index:400}
.language-switcher:hover .lang-menu,.language-switcher:focus-within .lang-menu,.language-switcher.open .lang-menu{opacity:1;visibility:visible;transform:translateY(0)}
.lang-menu a{display:flex;align-items:center;justify-content:space-between;gap:10px;padding:9px 10px;border-radius:9px;color:var(--text-2,#2c4560);font-size:13px;font-weight:700;line-height:1.2;transition:background .15s,color .15s}
.lang-menu a small{font-size:11px;font-weight:500;color:var(--muted,#5e7898)}
.lang-menu a:hover{background:var(--blue-pale,var(--sky,#e8f3ff));color:var(--blue,#1a4a8a)}
.lang-menu a.active{background:var(--blue-pale,var(--sky,#e8f3ff));color:var(--blue,#1a4a8a)}
.mobile-language-row{display:none}
@media (max-width:1100px){
  .language-switcher{display:none}
  .main-nav.open .mobile-language-row{display:block;border-top:1px solid var(--platinum,var(--line,#dce8f4));margin-top:8px;padding:12px 8px 4px}
  .mobile-language-row>span{display:block;font-size:11px;font-weight:800;color:var(--muted,#5e7898);text-transform:uppercase;letter-spacing:.1em;margin:0 8px 8px}
  .mobile-language-row>div{display:flex;flex-wrap:wrap;gap:6px}
  .mobile-language-row a{display:inline-flex!important;padding:7px 9px!important;border-radius:8px!important;border:1px solid var(--platinum,var(--line,#dce8f4));font-size:12px!important;font-weight:700!important;color:var(--text-2,#2c4560)!important;background:#fff!important}
  .mobile-language-row a.active{background:var(--blue-pale,var(--sky,#e8f3ff))!important;color:var(--blue,#1a4a8a)!important;border-color:var(--blue-bg,var(--line-2,#c8daed))}
}


/* v33 unified inline SVG icon system */
.app-icon-wrap svg,
.quality-feat-icon svg,
.res-icon svg,
.contact-info-list .ci-icon svg{
  width:22px;
  height:22px;
  stroke:currentColor;
  stroke-width:1.9;
  fill:none;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.res-icon{
  width:48px;
  height:48px;
  border-radius:10px;
  display:grid !important;
  place-items:center;
  margin-bottom:14px;
  color:var(--blue);
  background:var(--blue-pale);
  border:1px solid var(--blue-bg);
}
@media (max-width: 768px){
  .stats-inner{grid-template-columns:repeat(2, minmax(0,1fr));}
  .stat-cell{padding:22px 18px;border-top:1px solid var(--platinum);}
  .stat-cell:nth-child(1),.stat-cell:nth-child(2){border-top:0;}
  .stat-cell:nth-child(2n){border-right:0;}
  .stat-cell:nth-child(2n+1){border-right:1px solid var(--platinum);}
}
@media (max-width: 420px){
  .stat-cell{padding:18px 14px;gap:10px;}
  .stat-icon-wrap{width:36px;height:36px;}
  .stat-text strong{font-size:1.12rem;}
}


/* ── Extended homepage refinement: image handling and logo visibility ── */
.page-home .hero-label {
  background: linear-gradient(90deg, #8fc7ff 0%, #d7eaff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.page-home .hero-label::before {
  background: linear-gradient(90deg, #8fc7ff 0%, #d7eaff 100%);
}
.page-home .hero-img-wrap {
  inset: 54px 0 54px 48px;
  border-radius: 20px 0 0 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 22px 70px rgba(0,0,0,.24);
}
.page-home .hero-img-wrap img {
  object-position: center center;
  filter: brightness(.88) saturate(.96) contrast(1.02);
}
.page-home .hero-img-wrap::after {
  background:
    linear-gradient(90deg, rgba(23,55,84,.26) 0%, rgba(23,55,84,.06) 45%, rgba(14,17,23,.10) 100%),
    linear-gradient(0deg, rgba(14,17,23,.28) 0%, transparent 42%);
}
.page-home .hero-badge {
  left: 80px;
  bottom: 82px;
}
.page-home .hero-badge-dot {
  background: var(--blue-3);
  animation: none;
}
.page-home .stat-cell:first-child .stat-icon-wrap svg {
  stroke: var(--blue);
}
.page-home .product-photo {
  height: 188px;
}
.page-home .product-body h3 {
  min-height: 2.35em;
}
.page-home .product-body li {
  line-height: 1.48;
}
.page-home .app-card {
  min-height: 250px;
}
.page-home .cert-panel {
  align-self: stretch;
  display: flex;
  align-items: center;
}
.page-home .cert-panel img {
  max-height: 330px;
  width: 100%;
  object-fit: contain;
  background: rgba(255,255,255,.95);
}
.page-home .partner-logo-card.logo-soft-bg {
  background: #eef3f7;
}
.page-home .partner-logo-card.logo-soft-bg img {
  filter: grayscale(1) contrast(1.08) brightness(.82);
  opacity: .92;
}
.page-home .partner-logo-card.logo-soft-bg:hover img {
  filter: grayscale(.15) contrast(1.05) brightness(.92);
  opacity: 1;
}
.page-home .contact-aside > p {
  max-width: 430px;
}

@media (max-width: 980px) {
  .page-home .hero-img-wrap {
    inset: 24px;
    border-radius: 18px;
  }
  .page-home .hero-badge {
    left: 48px;
    bottom: 48px;
  }
}
@media (max-width: 560px) {
  .page-home .hero-img-wrap {
    inset: 14px;
    border-radius: 14px;
  }
  .page-home .hero-badge {
    left: 28px;
    bottom: 28px;
    max-width: calc(100% - 56px);
  }
  .page-home .product-body h3 {
    min-height: 0;
  }
}

.page-home .check-list li::before {
  background: rgba(75,147,210,.16);
  border-color: rgba(75,147,210,.38);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%234b93d2' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 8l3.5 3.5 6.5-7'/%3E%3C/svg%3E");
}


.scope-note {
  max-width: 860px;
  margin: 14px auto 0;
  padding: 12px 16px;
  border: 1px solid rgba(32, 91, 139, 0.18);
  border-radius: 14px;
  background: rgba(235, 244, 252, 0.72);
  color: #33516a;
  font-size: 0.92rem;
  line-height: 1.65;
}


/* ── V60 hero refinement: stronger headline, still scope-safe ── */
.page-home .hero h1 {
  font-size: clamp(2.75rem, 5.2vw, 4.45rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  max-width: 780px;
}
.page-home .hero h1 em {
  color: #9dccff;
  position: relative;
}
.page-home .hero-lead {
  max-width: 540px;
  font-size: 1.04rem;
  color: rgba(255,255,255,.76);
}
.page-home .hero-copy {
  padding-right: 42px;
}
.page-home .hero-actions {
  margin-bottom: 38px;
}
.page-home .hero-tag {
  color: rgba(255,255,255,.64);
  background: rgba(255,255,255,.035);
}
.page-home .hero-tag:nth-child(3)::before {
  background: var(--brass-2);
}
.page-home .hero-badge {
  background: rgba(10, 26, 42, .86);
}
@media (max-width: 980px) {
  .page-home .hero h1 {
    font-size: clamp(2.4rem, 8vw, 4rem);
  }
  .page-home .hero-lead {
    max-width: 620px;
  }
  .page-home .hero-copy {
    padding-right: 0;
  }
}
@media (max-width: 560px) {
  .page-home .hero h1 {
    font-size: clamp(2.15rem, 10vw, 3.1rem);
    line-height: 1.02;
  }
  .page-home .hero-lead {
    font-size: .98rem;
  }
}

/* ── V62 Hero option 1: full-line electrochemistry emphasis ── */
.page-home .hero,
.page-home .hero-copy,
.page-home .hero h1 {
  overflow: visible;
}
.page-home .hero h1 {
  font-size: clamp(2.65rem, 5vw, 4.25rem);
  line-height: 1.08;
  letter-spacing: -0.042em;
  max-width: 820px;
  margin-bottom: 28px;
  padding-bottom: .08em;
}
.page-home .hero h1 span,
.page-home .hero h1 em {
  display: block;
}
.page-home .hero h1 em {
  font-style: normal;
  color: transparent;
  background: linear-gradient(90deg, #d7eaff 0%, #8fc7ff 42%, #4b93d2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  white-space: nowrap;
  padding-bottom: .06em;
}
@media (max-width: 980px) {
  .page-home .hero h1 {
    font-size: clamp(2.35rem, 7.6vw, 3.85rem);
    line-height: 1.09;
    max-width: 760px;
  }
}
@media (max-width: 560px) {
  .page-home .hero h1 {
    font-size: clamp(2.05rem, 9.2vw, 2.95rem);
    line-height: 1.1;
    letter-spacing: -0.035em;
  }
}
