/* =========================================================
   ASN TECHNOLOGIES — Editorial Scientific Design System v2
   Instrument Serif · Inter · Glass morphism · Light palette
   ========================================================= */

:root {
  /* Surfaces */
  --c-white: #ffffff;
  --c-paper: #f7f9fc;
  --c-ice: #eef3fa;
  --c-mist: #e3ebf5;

  /* Ink & text */
  --c-ink: #0a0e1a;
  --c-ink-soft: #1a2235;
  --c-slate: #4a5568;
  --c-mute: #6b7687;
  --c-whisper: #8a95a6;

  /* Brand */
  --c-navy: #13234a;          /* logo blue bar */
  --c-navy-deep: #0a1635;
  --c-navy-soft: #e6ebf5;
  --c-red: #d9002b;           /* logo red */
  --c-red-soft: rgba(217, 0, 43, 0.08);

  /* Hairlines */
  --hair: rgba(15, 23, 42, 0.08);
  --hair-strong: rgba(15, 23, 42, 0.14);

  /* Glass */
  --glass-bg: rgba(255, 255, 255, 0.62);
  --glass-bg-strong: rgba(255, 255, 255, 0.80);
  --glass-border: rgba(255, 255, 255, 0.90);
  --glass-shadow: 0 8px 40px -12px rgba(19, 35, 74, 0.12), 0 1px 3px rgba(15, 23, 42, 0.04);
  --glass-shadow-lift: 0 20px 60px -20px rgba(19, 35, 74, 0.22), 0 2px 8px rgba(15, 23, 42, 0.06);

  /* Typography — Inter, minimal single-family */
  --f-display: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --f-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
}

/* =========================================================
   Reset
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-size: 17px;
}

body {
  font-family: var(--f-body);
  color: var(--c-ink);
  background: var(--c-white);
  line-height: 1.55;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  font-weight: 400;
  letter-spacing: -0.005em;
}

/* Base minimal backdrop — near-white with barely-there tint */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -10;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
  pointer-events: none;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { display: block; max-width: 100%; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; font-size: inherit; color: inherit; border: none; outline: none; background: transparent; }

::selection { background: var(--c-navy); color: var(--c-white); }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--c-paper); }
::-webkit-scrollbar-thumb { background: var(--c-navy); border-radius: 10px; border: 3px solid var(--c-paper); }

/* =========================================================
   Layout
   ========================================================= */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  position: relative;
  z-index: 2;
}
.container-narrow {
  max-width: 960px;
}

section { position: relative; padding: clamp(60px, 8vw, 120px) 0; }

/* Splash removed per design feedback */

/* =========================================================
   SVG ILLUSTRATIONS — shared styles
   ========================================================= */
.svg-illustration {
  color: var(--c-navy);
  width: 100%;
  height: auto;
  display: block;
}
.svg-illustration .accent-red { color: var(--c-red); }
.svg-illustration .fill-navy { fill: var(--c-navy); }
.svg-illustration .stroke-navy { stroke: var(--c-navy); }
.svg-illustration .fill-red { fill: var(--c-red); }
.svg-illustration .stroke-red { stroke: var(--c-red); }
.svg-illustration .fill-ink { fill: var(--c-ink); }
.svg-illustration .stroke-ink { stroke: var(--c-ink); }

/* Slow rotation animation for diagrams */
@keyframes svgRotate {
  to { transform: rotate(360deg); }
}
.svg-rotate { animation: svgRotate 60s linear infinite; transform-origin: center; }
.svg-rotate-reverse { animation: svgRotate 80s linear infinite reverse; transform-origin: center; }

/* Draw-in animation */
@keyframes drawIn {
  to { stroke-dashoffset: 0; }
}
.svg-draw { stroke-dasharray: 1000; stroke-dashoffset: 1000; animation: drawIn 2.5s var(--ease-soft) forwards; }
.svg-draw-delay { animation-delay: 0.3s; }

/* Gentle pulse */
@keyframes svgPulse {
  0%, 100% { opacity: 0.6; r: var(--base-r, 4); }
  50% { opacity: 1; r: calc(var(--base-r, 4) * 1.3); }
}
.svg-pulse { animation: svgPulse 3s var(--ease) infinite; }

/* Hero molecular layout */
.home-hero-visual {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-40%);
  width: 520px;
  height: 520px;
  opacity: 0.9;
  pointer-events: none;
  z-index: 1;
}
.home-hero-main { position: relative; z-index: 2; }

/* Blob icon container */
.blob-icon {
  width: 96px;
  height: 96px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: var(--c-white);
  border-radius: 50%;
  border: 1px solid var(--hair);
  transition: all 0.4s var(--ease);
}
/* Earlier .blob:hover .blob-icon rule removed — was overridden by the
   complete rule near line 1180 anyway. */
.blob-icon svg { width: 56px; height: 56px; color: var(--c-navy); }

/* Update blob-inner to accommodate icon */
.blob-inner { grid-template-columns: auto 1fr 1.4fr auto; }

@media (max-width: 1024px) {
  .blob-inner { grid-template-columns: auto 1fr auto; }
  .blob-icon { width: 72px; height: 72px; }
  .blob-icon svg { width: 40px; height: 40px; }
  .home-hero-visual { display: none; }
}

/* CPIT illustration — positioned above stats, right side of description area */
.cpit-visual {
  position: absolute;
  right: 60px;
  top: 60px;
  width: 180px;
  opacity: 0.25;
  color: var(--c-white);
  pointer-events: none;
}
@media (max-width: 1024px) { .cpit-visual { display: none; } }

/* Material card with SVG */
.material-svg {
  width: 100%;
  height: 140px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--c-ice), var(--c-white));
  border-radius: 14px;
  border: 1px solid var(--hair);
  overflow: hidden;
  position: relative;
}
.material-svg svg { width: 110px; height: 110px; color: var(--c-navy); }

/* Benefit card with SVG */
.benefit-svg {
  width: 44px; height: 44px;
  color: var(--c-navy);
  margin-bottom: 16px;
}

/* Product detail visual */
.product-visual {
  width: 100%;
  aspect-ratio: 1;
  max-width: 340px;
  background: linear-gradient(135deg, var(--c-ice), var(--c-white));
  border: 1px solid var(--hair);
  border-radius: 28px;
  display: grid;
  place-items: center;
  padding: 40px;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}
.product-visual::before {
  content: "";
  position: absolute;
  top: -40%; right: -40%;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 0, 43, 0.08) 0%, transparent 70%);
}
.product-visual svg { width: 100%; height: auto; max-width: 240px; }

/* Flow/Circular diagram container */
.circular-section {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  margin-top: 48px;
}
.flow-diagram {
  width: 100%;
  max-width: 600px;
  aspect-ratio: 1;
  margin: 0 auto;
  position: relative;
}
.flow-diagram svg { width: 100%; height: 100%; display: block; overflow: visible; }

/* Rotating outer dashed ring */
@keyframes ringSpin {
  to { transform: rotate(360deg); }
}
.flow-outer-ring { transform-origin: center; animation: ringSpin 90s linear infinite; }

/* Stage list alongside diagram */
.flow-stages {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.flow-stage {
  padding: 20px 0;
  border-bottom: 1px solid var(--hair);
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 20px;
  align-items: start;
  transition: all 0.3s var(--ease);
}
.flow-stage:first-child { padding-top: 0; }
.flow-stage:last-child { border-bottom: none; padding-bottom: 0; }
.flow-stage:hover { padding-left: 6px; }
.flow-stage-num {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0;
  color: var(--c-red);
  padding-top: 2px;
}
.flow-stage-body { display: flex; flex-direction: column; gap: 4px; }
.flow-stage-name {
  font-family: var(--f-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--c-ink);
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.flow-stage-desc {
  font-size: 0.9rem;
  color: var(--c-slate);
  line-height: 1.5;
}
.flow-stage-metric {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  padding-top: 2px;
}
.flow-stage-metric-num {
  font-family: var(--f-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--c-navy);
  line-height: 1;
  letter-spacing: -0.02em;
}
.flow-stage-metric-label {
  font-size: 0.84rem;
  color: var(--c-mute);
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-top: 4px;
}

@media (max-width: 1024px) {
  .circular-section { grid-template-columns: 1fr; }
  .flow-diagram { max-width: 480px; }
}

/* World map (legacy) */
.world-map {
  width: 100%;
  max-width: 900px;
  margin: 40px auto 0;
  position: relative;
}
.world-map svg { width: 100%; height: auto; }

/* =========================================================
   GLOBE — centerpiece footprint visualization
   ========================================================= */
.globe-section {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  margin-top: 48px;
}
.globe-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 560px;
  margin: 0 auto;
}
.globe-stage svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

/* Ambient breathing pulse on the outer atmosphere */
@keyframes atmoBreathe {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.02); }
}
.globe-atmosphere { transform-origin: center; animation: atmoBreathe 6s ease-in-out infinite; }

/* Slow gentle rotation of longitude lines — suggests 3D without moving continents */
@keyframes globeLongitudeDrift {
  0% { transform: rotateY(0deg); }
  100% { transform: rotateY(360deg); }
}
.globe-longitude-layer {
  transform-origin: 50% 50%;
  animation: globeLongitudeDrift 80s linear infinite;
}

/* Arc drawing animation (triggers on reveal) */
.globe-arc {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  transition: stroke-dashoffset 2.2s var(--ease);
}
.globe-section.revealed .globe-arc {
  stroke-dashoffset: 0;
}
.globe-section.revealed .globe-arc.delay-1 { transition-delay: 0.2s; }
.globe-section.revealed .globe-arc.delay-2 { transition-delay: 0.4s; }
.globe-section.revealed .globe-arc.delay-3 { transition-delay: 0.6s; }
.globe-section.revealed .globe-arc.delay-4 { transition-delay: 0.8s; }
.globe-section.revealed .globe-arc.delay-5 { transition-delay: 1.0s; }

/* HQ pin pulse */
@keyframes hqPulse {
  0% { r: 10; opacity: 0.7; }
  100% { r: 34; opacity: 0; }
}
.globe-hq-pulse {
  animation: hqPulse 2.4s ease-out infinite;
  transform-origin: center;
}
.globe-hq-pulse-2 { animation-delay: 1.2s; }

/* Pin pulse (other markets) */
@keyframes marketPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.25); opacity: 0.85; }
}
.globe-pin { transform-origin: center; transform-box: fill-box; animation: marketPulse 3s ease-in-out infinite; }
.globe-pin-2 { animation-delay: 0.5s; }
.globe-pin-3 { animation-delay: 1s; }
.globe-pin-4 { animation-delay: 1.5s; }
.globe-pin-5 { animation-delay: 2s; }

/* Legend alongside globe */
.globe-legend {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.globe-legend-head {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--c-ink);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--hair);
}
.globe-legend-item {
  display: grid;
  grid-template-columns: 20px 1fr auto;
  gap: 16px;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid var(--hair);
  transition: all 0.3s var(--ease);
  cursor: default;
}
.globe-legend-item:last-child { border-bottom: none; }
.globe-legend-item:hover { padding-left: 8px; }
.globe-legend-marker {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--c-ink);
  align-self: center;
}
.globe-legend-item.is-hq .globe-legend-marker {
  background: var(--c-red);
  box-shadow: 0 0 0 4px rgba(217, 0, 43, 0.12);
}
.globe-legend-country {
  font-family: var(--f-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--c-ink);
  letter-spacing: -0.01em;
}
.globe-legend-role {
  font-size: 0.92rem;
  color: var(--c-mute);
  font-weight: 500;
  letter-spacing: 0;
}

@media (max-width: 1024px) {
  .globe-section { grid-template-columns: 1fr; }
  .globe-stage { max-width: 440px; }
}

/* =========================================================
   Scroll Progress
   ========================================================= */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: var(--c-navy);
  z-index: 1000;
  transition: width 0.12s linear;
}

/* =========================================================
   Molecular Background (subtler)
   ========================================================= */
.molecule-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -5;
  opacity: 0.12;
  pointer-events: none;
}

/* =========================================================
   GLASS MORPHISM
   ========================================================= */
.glass {
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: 20px;
  position: relative;
}
.glass::before {
  content: "";
  position: absolute;
  top: 0; left: 12%; right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 1), transparent);
  pointer-events: none;
}

/* =========================================================
   Typography Primitives
   ========================================================= */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 0.84rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-mute);
}
.eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-red);
}
.eyebrow-num {
  font-family: var(--f-display);
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: none;
  color: var(--c-ink);
  font-weight: 900;
}

/* Big display: Inter 600 (semibold) — minimalist, never heavy */
.display-xl {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(2.4rem, 4.8vw, 4.8rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--c-ink);
}
.display-xl em {
  font-style: normal;
  color: var(--c-navy);
  font-weight: 600;
}
.display-lg {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(1.9rem, 3.5vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--c-ink);
}
.display-lg em {
  font-style: normal;
  color: var(--c-navy);
  font-weight: 600;
}
.display-md {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(1.5rem, 2.3vw, 2rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--c-ink);
}
.display-md em { font-style: normal; color: var(--c-navy); font-weight: 600; }

.lede {
  font-size: clamp(1.1rem, 1.5vw, 1.32rem);
  color: var(--c-slate);
  line-height: 1.55;
  max-width: 640px;
  font-weight: 400;
}
.body-text {
  font-size: 1.04rem;
  color: var(--c-slate);
  line-height: 1.7;
}

.section-head {
  max-width: 780px;
  margin-bottom: clamp(48px, 6vw, 72px);
}
.section-head .eyebrow { margin-bottom: 20px; }
.section-head .lede { margin-top: 24px; }

/* Section markers — DEPRECATED. Hidden globally. They added clutter without helping
   the reader; we keep the rule for safety in case some inner-page HTML still
   contains them. */
.section-marker { display: none !important; }

/* =========================================================
   Buttons & Links
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  border-radius: 100px;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--c-ink);
  color: var(--c-white);
}
.btn-primary:hover {
  background: var(--c-navy);
  transform: translateY(-1px);
}
.btn-ghost {
  background: var(--c-white);
  color: var(--c-ink);
  border: 1px solid var(--hair-strong);
}
.btn-ghost:hover {
  border-color: var(--c-ink);
  transform: translateY(-1px);
}
.btn-arrow {
  display: inline-block;
  transition: transform 0.3s var(--ease);
  font-family: var(--f-display);
  font-weight: 700;
}
.btn:hover .btn-arrow { transform: translateX(4px); }

/* Link-arrow: underlined editorial CTA */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--c-ink);
  padding-bottom: 3px;
  border-bottom: 1px solid var(--c-ink);
  transition: all 0.3s var(--ease);
}
.link-arrow .arrow {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.1rem;
  transition: transform 0.3s var(--ease);
}
.link-arrow:hover { color: var(--c-red); border-bottom-color: var(--c-red); }
.link-arrow:hover .arrow { transform: translateX(4px); }

/* =========================================================
   NAVIGATION (refined pill)
   ========================================================= */
.nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 1180px;
  z-index: 100;
  transition: all 0.4s var(--ease);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 10px 10px 24px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  backdrop-filter: blur(24px) saturate(160%);
  border-radius: 100px;
  box-shadow: 0 8px 32px -12px rgba(19, 35, 74, 0.15);
  position: relative;
}
.nav.scrolled .nav-inner {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 36px -14px rgba(19, 35, 74, 0.2);
}

.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 36px; width: auto; }

.nav-links {
  display: flex;
  gap: 2px;
}
.nav-link {
  padding: 8px 16px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--c-slate);
  border-radius: 100px;
  transition: all 0.25s var(--ease);
  position: relative;
}
.nav-link:hover {
  color: var(--c-ink);
}
.nav-link.active {
  color: var(--c-ink);
}
.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px; height: 1px;
  background: var(--c-red);
}

.nav-cta {
  padding: 10px 20px;
  background: var(--c-ink);
  color: var(--c-white);
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 100px;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
  position: relative;
}
.nav-cta:hover { background: var(--c-navy); }
.nav-cta.active { background: var(--c-red); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 0;
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--c-ink);
}
.nav-toggle span {
  display: block;
  width: 16px; height: 1.5px;
  background: var(--c-white);
  border-radius: 2px;
}

/* =========================================================
   PAGE HERO (reusable for all pages)
   ========================================================= */
.page-hero {
  padding-top: 180px;
  padding-bottom: 96px;
  min-height: 72vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-color: #0a1020;
  color: var(--c-white);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(8, 14, 28, 0.58) 0%,
      rgba(8, 14, 28, 0.52) 45%,
      rgba(8, 14, 28, 0.45) 72%,
      rgba(8, 14, 28, 0.25) 90%,
      rgba(255, 255, 255, 0.98) 100%);
  pointer-events: none;
}
.page-hero > .container { position: relative; z-index: 1; }
.page-hero-inner { max-width: 1100px; }
.page-hero .eyebrow {
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}
.page-hero .eyebrow-dot { background: #ff3355; box-shadow: 0 0 8px rgba(255, 51, 85, 0.6); }
.page-hero .display-xl {
  color: var(--c-white);
  text-shadow: 0 2px 24px rgba(8, 14, 28, 0.4);
  margin-bottom: 32px;
}
.page-hero .display-xl em {
  color: #bfd3ef;
  font-weight: 600;
  text-shadow: 0 2px 24px rgba(8, 14, 28, 0.45);
}
.page-hero .lede {
  color: #ffffff;
  font-size: clamp(1.1rem, 1.5vw, 1.25rem);
  max-width: 720px;
  text-shadow: 0 1px 16px rgba(8, 14, 28, 0.55);
}
.page-hero-meta {
  margin-top: 48px;
  display: flex;
  gap: clamp(32px, 5vw, 56px);
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}
.meta-item { min-width: 120px; }
.meta-label {
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 8px;
}
.meta-value {
  font-family: var(--f-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--c-white);
  text-shadow: 0 1px 12px rgba(8, 14, 28, 0.5);
}
.meta-value em { font-style: normal; font-weight: 600; color: #bfd3ef; }

/* Nature hero photographs — nature metaphors for each brand virtue */
/* About — granite/mountain: foundation, precision, time-tested */
.hero-about { background-image: url('https://images.unsplash.com/photo-1519681393784-d120267933ba?auto=format&fit=crop&w=2400&q=85'); background-position: center 40%; }
/* Performance Amplification — tiger: raw unmatched power amplified */
.hero-performance { background-image: url('https://images.unsplash.com/photo-1549480017-d76466a4b7e8?auto=format&fit=crop&w=2400&q=85'); background-position: center 35%; }
/* Engineering Efficiency — cheetah: raw speed and throughput */
.hero-engineering { background-image: url('https://images.unsplash.com/photo-1534759846116-5799c33ce22a?auto=format&fit=crop&w=2400&q=85'); background-position: center 30%; }
/* Eco-Materials — bamboo/forest: renewable bio-material */
.hero-eco { background-image: url('https://images.unsplash.com/photo-1441974231531-c6227db76b6e?auto=format&fit=crop&w=2400&q=85'); background-position: center 60%; }
/* Sustainability — agricultural landscape: bridging agriculture & polymers */
.hero-sustainability { background-image: url('https://images.unsplash.com/photo-1523741543316-beb7fc7023d8?auto=format&fit=crop&w=2400&q=85'); background-position: center 50%; }
/* Contact — ocean horizon: reaching, open, connecting */
.hero-contact { background-image: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=2400&q=85'); background-position: center 40%; }

/* =========================================================
   HOME HERO (unique, with atmospheric mountain background)
   ========================================================= */
.home-hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-top: 140px;
  padding-bottom: 120px;
  position: relative;
  color: var(--c-white);
  overflow: hidden;
  margin-bottom: 0;
  background-image: url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?ixlib=rb-4.0.3&auto=format&fit=crop&w=2400&q=85');
  background-size: cover;
  background-position: center 30%;
  background-color: #0a1020;
}
.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(8, 14, 28, 0.55) 0%,
      rgba(8, 14, 28, 0.50) 40%,
      rgba(8, 14, 28, 0.48) 70%,
      rgba(8, 14, 28, 0.20) 88%,
      rgba(255, 255, 255, 0.98) 100%),
    linear-gradient(90deg,
      rgba(8, 14, 28, 0.35) 0%,
      rgba(8, 14, 28, 0.1) 50%,
      rgba(8, 14, 28, 0.25) 100%);
  z-index: 0;
  pointer-events: none;
}
.home-hero .container { position: relative; z-index: 1; }
/* Dark text becomes white against mountain — with text-shadow for contrast safety */
.home-hero .home-hero-title {
  color: var(--c-white);
  text-shadow: 0 2px 24px rgba(8, 14, 28, 0.35);
}
.home-hero .home-hero-title em {
  color: #bfd3ef;
  font-weight: 600;
  text-shadow: 0 2px 24px rgba(8, 14, 28, 0.4);
}
.home-hero .lede {
  color: #ffffff;
  text-shadow: 0 1px 16px rgba(8, 14, 28, 0.55);
  font-weight: 400;
}
.home-hero .eyebrow { color: rgba(255, 255, 255, 0.95); background: rgba(255, 255, 255, 0.08); padding: 6px 14px; border-radius: 100px; border: 1px solid rgba(255, 255, 255, 0.15); backdrop-filter: blur(8px); }
.home-hero .eyebrow-dot { background: #ff3355; box-shadow: 0 0 8px rgba(255, 51, 85, 0.6); }
.home-hero .btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: var(--c-white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}
.home-hero .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}
.home-hero .btn-primary {
  background: var(--c-white);
  color: var(--c-ink);
}
.home-hero .btn-primary:hover {
  background: var(--c-red);
  color: var(--c-white);
}
.home-hero .hero-index {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 20px 22px;
  border-radius: 14px;
}
.home-hero .hero-index-label { color: rgba(255, 255, 255, 0.55); }
.home-hero .hero-index a { color: var(--c-white); }
.home-hero .hero-index a:hover { border-bottom-color: #ff3355; }
.home-hero .scroll-hint { color: rgba(255, 255, 255, 0.7); }
.home-hero .scroll-hint-line { background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), transparent); }
.home-hero-inner {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: end;
}
.home-hero-main { max-width: 1100px; }
.home-hero .eyebrow { margin-bottom: 36px; }
.home-hero-title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(2.6rem, 5.5vw, 5.4rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--c-ink);
  margin-bottom: 36px;
}
.home-hero-title .line-break { display: block; }
.home-hero-title em {
  font-style: normal;
  color: var(--c-navy);
  font-weight: 600;
}
.home-hero .lede {
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  max-width: 580px;
  margin-bottom: 44px;
}
.home-hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* hero-index aside removed — was vanity navigation; main nav handles this. */
.hero-index { display: none; }
.hero-index-label { display: none; }

.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--f-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.scroll-hint-line {
  width: 1px; height: 36px;
  background: linear-gradient(180deg, rgba(255,255,255,0.5), transparent);
}

/* =========================================================
   STATS TRUST STRIP (home page) — compressed, scannable
   ========================================================= */
.intro-strip {
  padding: clamp(56px, 8vw, 96px) 0;
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  background: linear-gradient(180deg, var(--c-white) 0%, var(--c-paper) 100%);
}
.intro-strip-head {
  text-align: center;
  margin: 0 auto clamp(36px, 5vw, 56px);
  max-width: 760px;
}
.intro-strip-head h2 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--c-ink);
}
.intro-strip-head h2 em { font-style: normal; font-weight: 600; color: var(--c-navy); }

.intro-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 40px);
  max-width: 1080px;
  margin: 0 auto;
  padding-top: clamp(8px, 1.5vw, 16px);
}
.intro-stat {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
  padding: 0 4px;
  position: relative;
}
.intro-stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0; top: 18%;
  bottom: 18%;
  width: 1px;
  background: var(--hair);
}
.intro-stat-num {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(2.6rem, 4.2vw, 3.6rem);
  line-height: 1;
  color: var(--c-navy);
  letter-spacing: -0.035em;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}
.intro-stat-num span { color: var(--c-navy); }
.intro-stat-label {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--c-slate);
  letter-spacing: 0.04em;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .intro-stats { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
  .intro-stat:not(:last-child)::after { display: none; }
  .intro-stat:nth-child(odd)::after {
    content: "";
    position: absolute;
    right: -12px; top: 18%; bottom: 18%;
    width: 1px;
    background: var(--hair);
  }
}

/* =========================================================
   PRODUCT BLOBS (the 3 big pillar cards)
   ========================================================= */
.blobs {
  padding: clamp(80px, 10vw, 140px) 0;
}
.blobs-head {
  max-width: 820px;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.blobs-head .lede { margin-top: 20px; }

.blob-stack {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2vw, 28px);
}

.blob {
  display: block;
  padding: clamp(32px, 4vw, 56px) clamp(32px, 4vw, 56px);
  background: #ffffff;
  border: 1px solid var(--hair);
  border-radius: 24px;
  position: relative;
  transition: all 0.4s var(--ease);
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.02);
}

/* Subtle differentiation via gradient accent — not shape */
.blob:nth-child(1)::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 40%; height: 100%;
  background: radial-gradient(circle at 100% 0%, rgba(19, 35, 74, 0.04) 0%, transparent 60%);
  pointer-events: none;
}
.blob:nth-child(2)::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 40%; height: 100%;
  background: radial-gradient(circle at 100% 50%, rgba(217, 0, 43, 0.03) 0%, transparent 60%);
  pointer-events: none;
}
.blob:nth-child(3)::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 40%; height: 100%;
  background: radial-gradient(circle at 100% 100%, rgba(19, 35, 74, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.blob::after {
  content: "";
  position: absolute;
  left: 0; top: 24px; bottom: 24px;
  width: 2px;
  background: var(--c-red);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.4s var(--ease);
  border-radius: 0 2px 2px 0;
}
.blob:hover::after {
  transform: scaleY(1);
}
.blob:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 23, 42, 0.15);
  box-shadow: 0 20px 40px -20px rgba(19, 35, 74, 0.12), 0 2px 6px rgba(15, 23, 42, 0.04);
}
.blob:hover .blob-title em { color: var(--c-red); }
.blob:hover .blob-icon {
  background: var(--c-ink);
  border-color: var(--c-ink);
  color: var(--c-white);
  transform: rotate(-6deg) scale(1.05);
}
/* Override the explicit navy color on the inner SVG so the strokes turn white
   on hover (otherwise stroke="currentColor" reads navy and disappears against
   the dark .blob-icon background). */
.blob:hover .blob-icon svg { color: var(--c-white); }
.blob:hover .blob-icon svg .fill-red,
.blob:hover .blob-icon svg .fill-red * { fill: #ffffff !important; color: #ffffff; }

.blob-inner {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  gap: clamp(28px, 3.5vw, 48px);
  align-items: center;
}

.blob-index {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--c-red);
  letter-spacing: -0.02em;
}

.blob-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
/* blob-eyebrow deprecated — heading already says it. Hide if any survive. */
.blob-eyebrow { display: none; }
.blob-title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--c-ink);
}
.blob-title em {
  font-style: normal;
  color: var(--c-navy);
  font-weight: 700;
}
.blob-desc {
  font-size: 1.06rem;
  color: var(--c-slate);
  line-height: 1.65;
  max-width: 580px;
}
.blob-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}
.chip {
  padding: 8px 14px;
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--c-ink);
  background: var(--c-white);
  border: 1px solid var(--hair-strong);
  border-radius: 100px;
}

.blob-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px; height: 68px;
  background: var(--c-ink);
  color: var(--c-white);
  border-radius: 50%;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.6rem;
  transition: all 0.4s var(--ease);
  flex-shrink: 0;
}
.blob:hover .blob-cta {
  background: var(--c-red);
  transform: scale(1.08);
}

/* =========================================================
   CONTENT BLOCKS (for inner pages)
   ========================================================= */
.content-block {
  padding: clamp(60px, 8vw, 100px) 0;
}
.content-block + .content-block {
  border-top: 1px solid var(--hair);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.two-col-heading { position: sticky; top: 120px; }
.two-col-body p + p { margin-top: 24px; }

.prose p {
  font-size: 1.05rem;
  color: var(--c-slate);
  line-height: 1.75;
  margin-bottom: 20px;
}
.prose p.lede-p {
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  color: var(--c-ink);
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: 32px;
}
.prose strong { color: var(--c-ink); font-weight: 600; }

/* =========================================================
   TEAM GRID (about page) — elevated editorial layout
   ========================================================= */
.team-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.team-card {
  padding: 40px 32px;
  background: #ffffff;
  border: 1px solid var(--hair);
  border-radius: 24px;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.team-card::after {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 60%; height: 50%;
  background: radial-gradient(circle at 100% 0%, rgba(19, 35, 74, 0.04) 0%, transparent 60%);
  pointer-events: none;
}
.team-card:hover {
  transform: translateY(-4px);
  border-color: rgba(15, 23, 42, 0.15);
  box-shadow: 0 20px 40px -20px rgba(19, 35, 74, 0.12);
}
.team-card.is-featured {
  background: linear-gradient(135deg, #0a1020 0%, #13234a 100%);
  color: var(--c-white);
  border-color: transparent;
}
.team-card.is-featured::after {
  background: radial-gradient(circle at 100% 0%, rgba(217, 0, 43, 0.15) 0%, transparent 60%);
}
.team-card.is-featured .team-name { color: var(--c-white); }
.team-card.is-featured .team-role { color: rgba(255, 255, 255, 0.6); }
.team-card.is-featured .team-bio { color: rgba(255, 255, 255, 0.75); }
.team-card.is-featured .team-initials {
  background: rgba(255, 255, 255, 0.1);
  color: var(--c-white);
  border-color: rgba(255, 255, 255, 0.2);
}

.team-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}
.team-initials {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--c-navy);
  background: var(--c-ice);
  border: 1px solid rgba(19, 35, 74, 0.08);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.team-heading { flex: 1; min-width: 0; }
.team-name {
  font-family: var(--f-display);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--c-ink);
  margin-bottom: 4px;
  letter-spacing: -0.015em;
}
.team-role {
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--c-mute);
}
.team-bio {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--c-slate);
  margin-top: 4px;
  position: relative;
  z-index: 1;
}
.team-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--c-red);
  position: relative;
  z-index: 1;
}
.team-card.is-featured .team-tag { color: #ff8096; }
.team-tag::before {
  content: "";
  width: 14px; height: 1px;
  background: currentColor;
}

@media (max-width: 1024px) {
  .team-featured { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .team-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   CPIT FEATURE CARD
   ========================================================= */
.cpit-feature {
  padding: clamp(40px, 5vw, 72px);
  background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-navy-deep) 100%);
  color: var(--c-white);
  border-radius: 32px;
  position: relative;
  overflow: hidden;
}
.cpit-feature::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 0, 43, 0.15) 0%, transparent 60%);
}
.cpit-label {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
  position: relative;
}
.cpit-title {
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-bottom: 24px;
  position: relative;
}
.cpit-title em { font-style: normal; font-weight: 600; color: #ffffff; opacity: 0.7; }
.cpit-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  max-width: 760px;
  margin-bottom: 48px;
  position: relative;
}
.cpit-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
}
.cpit-stat-num {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1;
  color: var(--c-white);
}
.cpit-stat-label {
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 10px;
}

/* =========================================================
   PHILOSOPHY QUOTE
   ========================================================= */
.philosophy {
  max-width: 900px;
  text-align: left;
  padding: clamp(48px, 6vw, 80px) 0;
}
.philosophy-quote {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--c-ink);
  margin-bottom: 32px;
}
.philosophy-quote em {
  font-style: normal;
  font-weight: 900;
  color: var(--c-navy);
}
.philosophy-quote::before {
  content: "\201C";
  font-family: var(--f-display);
  display: block;
  font-size: 4rem;
  line-height: 0.5;
  color: var(--c-red);
  margin-bottom: 24px;
  font-style: normal;
}
.philosophy-attr {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--c-mute);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.philosophy-attr::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--c-red);
}

/* =========================================================
   FOOTPRINT
   ========================================================= */
.footprint-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  border-top: 1px solid var(--hair);
}
.footprint-item {
  padding: 28px 24px;
  border-bottom: 1px solid var(--hair);
  border-right: 1px solid var(--hair);
  transition: background 0.25s var(--ease);
}
.footprint-item:hover { background: var(--c-paper); }
.footprint-item:nth-last-child(-n+3) { border-bottom: none; }
.footprint-marker {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--c-mute);
  margin-bottom: 10px;
}
.footprint-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-red);
}
.footprint-country {
  font-family: var(--f-display);
  font-size: 1.6rem;
  color: var(--c-ink);
  margin-bottom: 4px;
  letter-spacing: -0.005em;
}
.footprint-note {
  font-size: 0.85rem;
  color: var(--c-mute);
}

/* =========================================================
   PRODUCT DETAIL PAGES
   ========================================================= */
.product-detail {
  padding: clamp(60px, 8vw, 100px) 0;
}
.product-detail + .product-detail {
  border-top: 1px solid var(--hair);
}
.product-detail-head {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(40px, 6vw, 96px);
  margin-bottom: 48px;
  align-items: start;
}
.product-detail-head > div:first-child {
  display: flex;
  flex-direction: column;
  gap: 0;
}
/* Name & tagline appear above visual — re-ordered via flex order */
.product-detail-head .product-badge { order: 1; margin-bottom: 18px; }
.product-detail-head .product-name { order: 2; }
.product-detail-head .product-tagline { order: 3; margin-top: 12px; margin-bottom: 28px; }
.product-detail-head .product-visual { order: 4; margin-bottom: 0; max-width: 100%; }
.product-badge {
  display: inline-block;
  padding: 7px 14px;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--c-red);
  background: var(--c-red-soft);
  border-radius: 100px;
  margin-bottom: 20px;
  align-self: flex-start;
}
.product-name {
  font-family: var(--f-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--c-ink);
  margin-bottom: 16px;
}
.product-name em {
  font-style: normal;
  color: var(--c-navy);
  font-weight: 700;
}
.product-tagline {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--c-mute);
  line-height: 1.3;
}

.product-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.benefit {
  padding: 28px;
  border: 1px solid var(--hair);
  border-radius: 16px;
  background: var(--c-white);
  transition: all 0.3s var(--ease);
}
.benefit:hover {
  border-color: var(--hair-strong);
  transform: translateY(-2px);
  box-shadow: var(--glass-shadow);
}
.benefit-num {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--c-red);
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}
.benefit-text {
  font-size: 1.05rem;
  color: var(--c-ink);
  line-height: 1.55;
  font-weight: 400;
}

/* Variant table/grid: applications + formats */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--hair);
}
.spec-label {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--c-mute);
  margin-bottom: 14px;
}
.spec-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.spec-list li {
  font-size: 0.98rem;
  color: var(--c-ink);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.spec-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.6em;
  width: 8px; height: 1px;
  background: var(--c-red);
}

/* =========================================================
   SUSTAINABILITY PATHS
   ========================================================= */
.paths-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.path {
  padding: clamp(32px, 4vw, 52px);
  border-radius: 28px;
  background: var(--c-white);
  border: 1px solid var(--hair);
  transition: all 0.3s var(--ease);
}
.path:hover {
  border-color: var(--c-ink);
  transform: translateY(-3px);
}
.path-tag {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--c-red);
  margin-bottom: 16px;
}
.path-title {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.05;
  color: var(--c-ink);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.path-title em { font-style: normal; font-weight: 600; color: var(--c-navy); }
.path-desc {
  font-size: 1rem;
  color: var(--c-slate);
  line-height: 1.65;
}

.materials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.material {
  padding: 28px;
  background: var(--c-white);
  border: 1px solid var(--hair);
  border-radius: 18px;
  transition: all 0.3s var(--ease);
}
.material:hover {
  transform: translateY(-2px);
  border-color: var(--hair-strong);
  box-shadow: var(--glass-shadow);
}
.material-name {
  font-family: var(--f-display);
  font-size: 1.35rem;
  color: var(--c-ink);
  margin-bottom: 10px;
  letter-spacing: -0.005em;
}
.material-name em { font-style: normal; font-weight: 600; color: var(--c-navy); }
.material-desc {
  font-size: 0.92rem;
  color: var(--c-slate);
  line-height: 1.55;
}

/* =========================================================
   VENTURES (about page)
   ========================================================= */
.ventures-split {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
}
.venture-block {
  padding: clamp(32px, 4vw, 52px);
  background: var(--c-white);
  border: 1px solid var(--hair);
  border-radius: 28px;
  transition: all 0.3s var(--ease);
}
.venture-block:hover {
  border-color: var(--hair-strong);
  box-shadow: var(--glass-shadow);
}
.venture-label {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--c-red);
  margin-bottom: 16px;
}
.venture-head {
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  line-height: 1.1;
  color: var(--c-ink);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.venture-head em { font-style: normal; font-weight: 600; color: var(--c-navy); }
.venture-desc {
  font-size: 1rem;
  color: var(--c-slate);
  line-height: 1.65;
  margin-bottom: 24px;
}
.venture-investments {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--hair);
}
.investment {
  padding: 18px;
  background: var(--c-paper);
  border-radius: 14px;
}
.investment-tag {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--c-red);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
.investment h4 {
  font-family: var(--f-display);
  font-size: 1.05rem;
  line-height: 1.2;
  color: var(--c-ink);
  margin-bottom: 8px;
  font-weight: 400;
}
.investment p {
  font-size: 0.85rem;
  color: var(--c-slate);
  line-height: 1.5;
}

.guard-partner {
  margin-top: 24px;
  padding: 20px;
  background: var(--c-red-soft);
  border: 1px solid rgba(217, 0, 43, 0.15);
  border-radius: 14px;
}
.partner-label {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--c-red);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
.partner-name {
  font-family: var(--f-display);
  font-size: 1.25rem;
  color: var(--c-ink);
  margin-bottom: 8px;
}
.partner-desc {
  font-size: 0.85rem;
  color: var(--c-slate);
  line-height: 1.5;
}

/* =========================================================
   CONTACT (info only)
   ========================================================= */
.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}
.contact-info-item {
  padding: clamp(32px, 5vw, 56px);
  border-right: 1px solid var(--hair);
}
.contact-info-item:nth-child(2n) { border-right: none; }
.contact-info-item:not(:nth-last-child(-n+2)) { border-bottom: 1px solid var(--hair); }

.contact-label {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--c-mute);
  margin-bottom: 14px;
}
.contact-value {
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  line-height: 1.1;
  color: var(--c-ink);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.contact-value em { font-style: normal; font-weight: 600; color: var(--c-navy); }
.contact-value a {
  color: inherit;
  border-bottom: 1px solid transparent;
  transition: border 0.25s var(--ease);
}
.contact-value a:hover { border-bottom-color: var(--c-red); }
.contact-note {
  font-size: 0.92rem;
  color: var(--c-slate);
  line-height: 1.55;
  max-width: 420px;
}

.contact-cta {
  margin-top: 72px;
  padding: clamp(36px, 5vw, 64px);
  background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-navy-deep) 100%);
  color: var(--c-white);
  border-radius: 32px;
  text-align: center;
}
.contact-cta-label {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 14px;
}
.contact-cta-head {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.1;
  color: var(--c-white);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.contact-cta .btn-primary {
  background: var(--c-white);
  color: var(--c-ink);
}
.contact-cta .btn-primary:hover {
  background: var(--c-red);
  color: var(--c-white);
}

/* =========================================================
   CTA SECTION (reusable page-bottom) — with dark glass panel
   ========================================================= */
.page-cta {
  padding: clamp(60px, 8vw, 100px) 0;
}
.page-cta-inner {
  position: relative;
  padding: clamp(48px, 7vw, 96px);
  background: linear-gradient(135deg, #0a1020 0%, #13234a 55%, #0a1020 100%);
  color: var(--c-white);
  border-radius: 32px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 48px;
  align-items: center;
}
.page-cta-inner::before {
  content: "";
  position: absolute;
  top: -140px; right: -140px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 0, 43, 0.22) 0%, transparent 65%);
  pointer-events: none;
}
.page-cta-inner::after {
  content: "";
  position: absolute;
  bottom: -100px; left: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(143, 190, 242, 0.15) 0%, transparent 65%);
  pointer-events: none;
}
.page-cta-eyebrow {
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 20px;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.page-cta-eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-red);
  box-shadow: 0 0 10px rgba(217, 0, 43, 0.6);
}
.page-cta-title {
  font-family: var(--f-display);
  font-size: clamp(2.1rem, 4.2vw, 3.2rem);
  line-height: 1.05;
  color: var(--c-white);
  letter-spacing: -0.02em;
  font-weight: 600;
  max-width: 720px;
  position: relative;
  margin-bottom: 18px;
}
.page-cta-title em { font-style: normal; font-weight: 600; color: #bfd3ef; }
.page-cta-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
  max-width: 620px;
  position: relative;
}
.page-cta .btn-primary {
  background: var(--c-white);
  color: var(--c-ink);
  position: relative;
  z-index: 2;
}
.page-cta .btn-primary:hover {
  background: var(--c-red);
  color: var(--c-white);
  transform: translateY(-2px);
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  padding: clamp(60px, 8vw, 96px) 0 32px;
  background: var(--c-paper);
  border-top: 1px solid var(--hair);
  position: relative;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--hair);
}
.footer-brand-text {
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  line-height: 1.15;
  color: var(--c-ink);
  margin-top: 20px;
  margin-bottom: 20px;
  max-width: 380px;
  letter-spacing: -0.01em;
}
.footer-brand-text em { font-style: normal; font-weight: 600; color: var(--c-navy); }
.footer-logo { width: 140px; margin-bottom: 8px; }
.footer-tag { font-size: 0.88rem; color: var(--c-mute); }

.footer-col h4 {
  font-family: var(--f-body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--c-ink);
  margin-bottom: 20px;
}
.footer-col a,
.footer-col span {
  display: block;
  font-size: 1rem;
  color: var(--c-slate);
  margin-bottom: 12px;
  transition: color 0.2s var(--ease);
}
.footer-col a:hover { color: var(--c-red); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  font-size: 0.92rem;
  color: var(--c-mute);
}
.footer-bars {
  display: flex;
  gap: 3px;
}
.footer-bars span { display: block; width: 28px; height: 3px; border-radius: 2px; }
.footer-bars .bar-navy { background: var(--c-navy); }
.footer-bars .bar-red { background: var(--c-red); }

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .home-hero-inner { grid-template-columns: 1fr; }
  .hero-index { text-align: left; margin-top: 40px; }
  .blob-inner { grid-template-columns: 1fr; text-align: left; gap: 28px; }
  .blob-cta { margin-top: 8px; }
  .two-col { grid-template-columns: 1fr; }
  .two-col-heading { position: static; }
  .product-detail-head { grid-template-columns: 1fr; }
  .ventures-split { grid-template-columns: 1fr; }
  .intro-strip-inner { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: absolute;
    top: calc(100% + 12px);
    left: 0; right: 0;
    padding: 18px;
    background: var(--c-white);
    border-radius: 24px;
    box-shadow: var(--glass-shadow);
  }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .paths-grid { grid-template-columns: 1fr; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .contact-info-item { border-right: none; border-bottom: 1px solid var(--hair); }
  .contact-info-item:last-child { border-bottom: none; }
  .page-cta-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footprint-item { border-right: none; }
}

@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; align-items: flex-start; }
  .nav { top: 10px; width: calc(100% - 20px); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* =========================================================
   WELCOME MODAL  (shown once per browser, first visit to home)
   ========================================================= */
.welcome-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(8, 14, 28, 0.45);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  backdrop-filter: blur(10px) saturate(140%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s var(--ease);
}
.welcome-overlay[hidden] { display: none; }
.welcome-overlay.is-shown {
  opacity: 1;
  pointer-events: auto;
}

.welcome-card {
  position: relative;
  width: min(540px, calc(100vw - 48px));
  background: var(--c-white);
  border-radius: 28px;
  padding: clamp(36px, 5vw, 56px) clamp(28px, 4vw, 48px);
  box-shadow:
    0 30px 80px -20px rgba(8, 14, 28, 0.45),
    0 4px 12px rgba(8, 14, 28, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.6);
  text-align: center;
  transform: scale(0.96) translateY(12px);
  transition: transform 0.55s var(--ease), opacity 0.45s var(--ease);
  opacity: 0;
  overflow: hidden;
}
.welcome-overlay.is-shown .welcome-card {
  transform: scale(1) translateY(0);
  opacity: 1;
}

/* Subtle decorative gradient blob top-right */
.welcome-card::before {
  content: "";
  position: absolute;
  top: -80px; right: -80px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 0, 43, 0.10) 0%, transparent 70%);
  pointer-events: none;
}
.welcome-card::after {
  content: "";
  position: absolute;
  bottom: -60px; left: -60px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(19, 35, 74, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.welcome-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--c-paper);
  color: var(--c-mute);
  cursor: pointer;
  transition: all 0.2s var(--ease);
  z-index: 2;
  border: 0;
  padding: 0;
}
.welcome-close:hover {
  background: var(--c-ink);
  color: var(--c-white);
}
.welcome-close svg { width: 16px; height: 16px; display: block; }

.welcome-mark {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.welcome-mark img {
  width: 64px;
  height: auto;
}

.welcome-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 6px 14px;
  background: var(--c-red-soft);
  border-radius: 100px;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--c-red);
  position: relative;
  z-index: 1;
}
.welcome-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--c-red);
  box-shadow: 0 0 10px rgba(217, 0, 43, 0.6);
  animation: welcomeDotPulse 2s ease-in-out infinite;
}
@keyframes welcomeDotPulse {
  0%, 100% { opacity: 1;    transform: scale(1); }
  50%      { opacity: 0.55; transform: scale(0.8); }
}

.welcome-title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--c-ink);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.welcome-title em {
  font-style: normal;
  font-weight: 600;
  color: var(--c-navy);
}

.welcome-sub {
  font-size: 1.04rem;
  color: var(--c-slate);
  line-height: 1.55;
  margin-bottom: 28px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.welcome-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.welcome-cta { cursor: pointer; }

@media (max-width: 480px) {
  .welcome-card { padding: 36px 24px 32px; }
  .welcome-mark img { width: 52px; }
}

/* Reduced motion: instant transition */
@media (prefers-reduced-motion: reduce) {
  .welcome-overlay,
  .welcome-card { transition: none; }
}

/* =========================================================
   PAGE FADE-IN  (cinematic page-load — runs once on first paint)
   ========================================================= */
@keyframes pageFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.page-fade {
  animation: pageFadeIn 700ms var(--ease) both;
}

/* =========================================================
   BRAND FILM SECTION  (clickable, plays with audio)
   ========================================================= */
.brand-film {
  padding: clamp(60px, 8vw, 110px) 0;
  background: linear-gradient(180deg, #ffffff 0%, var(--c-paper) 100%);
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}
.brand-film-head {
  max-width: 820px;
  margin: 0 auto clamp(40px, 5vw, 64px);
  text-align: center;
}
.brand-film-head .section-marker { justify-content: center; }
.brand-film-head .eyebrow { margin-left: auto; margin-right: auto; }
.brand-film-head .lede { margin-left: auto; margin-right: auto; max-width: 640px; }

/* The film card — frame around the video */
.film-card {
  position: relative;
  margin: 0 auto;
  max-width: 1080px;
  border-radius: clamp(16px, 2.4vw, 28px);
  overflow: hidden;
  background: #050a18;
  box-shadow:
    0 30px 80px -30px rgba(19, 35, 74, 0.35),
    0 6px 18px -6px rgba(15, 23, 42, 0.12),
    0 0 0 1px var(--hair);
  isolation: isolate;
}

/* Film aspect ratio (16:9) wrapper via padding-top on the video */
.film-video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  background: #050a18;
  object-fit: cover;
}

/* Overlay covers the video while in poster state */
.film-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
  padding: clamp(20px, 3.5vw, 36px);
  background:
    /* radial darken in middle so the play button always reads */
    radial-gradient(ellipse at center, rgba(0,0,0,0.32) 0%, rgba(0,0,0,0) 55%),
    /* darken bottom for legible text */
    linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,0.65) 100%),
    /* darken top slightly for the eyebrow chip */
    linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0) 25%),
    /* poster image */
    var(--film-poster, url('/manus-storage/intro-poster_1daac992.jpg')) center / cover no-repeat;
  color: var(--c-white);
  cursor: pointer;
  border: 0;
  text-align: left;
  transition: opacity 0.45s var(--ease), transform 0.6s var(--ease);
}
.film-card[data-state="playing"] .film-overlay {
  opacity: 0;
  transform: scale(1.02);
  pointer-events: none;
}

/* Big circular play button, centered */
.film-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(76px, 9vw, 104px);
  height: clamp(76px, 9vw, 104px);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  border: 0;
  display: grid;
  place-items: center;
  color: var(--c-ink);
  transition: all 0.35s var(--ease);
  box-shadow:
    0 20px 60px -10px rgba(0, 0, 0, 0.6),
    0 4px 12px -4px rgba(0, 0, 0, 0.4),
    0 0 0 8px rgba(255, 255, 255, 0.10);
}
.film-play::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.55);
  animation: filmRing 2.4s ease-out infinite;
}
@keyframes filmRing {
  0%   { opacity: 0.85; transform: scale(0.9); }
  80%  { opacity: 0;    transform: scale(1.45); }
  100% { opacity: 0;    transform: scale(1.45); }
}
.film-play svg {
  width: 30%;
  height: 30%;
  margin-left: 6%;  /* optical centering — play triangle is right-heavy */
  display: block;
  color: var(--c-ink);
}
.film-overlay:hover .film-play {
  background: var(--c-red);
  color: var(--c-white);
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow:
    0 24px 80px -12px rgba(217, 0, 43, 0.65),
    0 6px 16px -4px rgba(217, 0, 43, 0.4),
    0 0 0 10px rgba(217, 0, 43, 0.15);
}
.film-overlay:hover .film-play svg { color: var(--c-white); }

/* Bottom-left meta — minimal: just one line of context, no chip */
.film-overlay-meta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 620px;
}
/* Eyebrow + duration: deprecated — were redundant noise. Hide if any survive. */
.film-overlay-eyebrow,
.film-overlay-duration { display: none; }
.film-live-dot { display: none; }
.film-overlay-title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(1.2rem, 1.9vw, 1.7rem);
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--c-white);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.55);
}

/* film-caption deprecated — was a tiny credit line nobody read. Hide if any survive. */
.film-caption { display: none; }

@media (max-width: 600px) {
  .film-overlay-title { font-size: 1.08rem; line-height: 1.3; }
}

/* =========================================================
   WHATSAPP BUTTON  (brand green, instant trust)
   ========================================================= */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: #25D366;
  color: #ffffff;
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  border-radius: 100px;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 14px -4px rgba(37, 211, 102, 0.45);
}
.btn-whatsapp:hover {
  background: #1ebe5b;
  transform: translateY(-1px);
  box-shadow: 0 8px 22px -6px rgba(37, 211, 102, 0.55);
  color: #ffffff;
}
.btn-whatsapp svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* WhatsApp variant inside dark CTAs */
.contact-cta .btn-whatsapp { box-shadow: 0 8px 24px -8px rgba(37, 211, 102, 0.6); }

/* Floating WhatsApp button (bottom-right of every page) */
.whatsapp-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: #ffffff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  z-index: 90;
  box-shadow: 0 12px 30px -8px rgba(37, 211, 102, 0.55), 0 2px 6px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.whatsapp-fab::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.45);
  opacity: 0;
  animation: fabPulse 2.6s ease-out infinite;
}
@keyframes fabPulse {
  0%   { opacity: 0.7; transform: scale(0.85); }
  80%  { opacity: 0;   transform: scale(1.4);  }
  100% { opacity: 0;   transform: scale(1.4);  }
}
.whatsapp-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 16px 38px -10px rgba(37, 211, 102, 0.65), 0 4px 10px rgba(0, 0, 0, 0.15);
}
.whatsapp-fab svg { width: 26px; height: 26px; }
.whatsapp-fab-tip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: var(--c-ink);
  color: var(--c-white);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s var(--ease);
}
.whatsapp-fab:hover .whatsapp-fab-tip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
.whatsapp-fab-tip::after {
  content: "";
  position: absolute;
  right: -4px; top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 8px; height: 8px;
  background: var(--c-ink);
}
@media (max-width: 480px) {
  .whatsapp-fab { right: 16px; bottom: 16px; width: 52px; height: 52px; }
  .whatsapp-fab svg { width: 24px; height: 24px; }
  .whatsapp-fab-tip { display: none; }
}

/* =========================================================
   CONTACT PAGE — direct contact cards (refined for 2 channels)
   ========================================================= */
.contact-channels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 8px;
}
.contact-channel {
  position: relative;
  padding: clamp(32px, 4vw, 48px);
  border-radius: 28px;
  background: var(--c-white);
  border: 1px solid var(--hair);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 0.35s var(--ease);
  overflow: hidden;
}
.contact-channel::after {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  background: radial-gradient(circle at 100% 0%, rgba(19, 35, 74, 0.04) 0%, transparent 60%);
  pointer-events: none;
}
.contact-channel.is-whatsapp::after {
  background: radial-gradient(circle at 100% 0%, rgba(37, 211, 102, 0.08) 0%, transparent 60%);
}
.contact-channel:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 23, 42, 0.16);
  box-shadow: 0 24px 50px -24px rgba(19, 35, 74, 0.18);
}
.contact-channel-head {
  display: flex;
  align-items: center;
  gap: 16px;
}
.contact-channel-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--c-ice);
  color: var(--c-navy);
  flex-shrink: 0;
  border: 1px solid rgba(19, 35, 74, 0.08);
}
.contact-channel.is-whatsapp .contact-channel-icon {
  background: #25D366;
  color: #ffffff;
  border-color: transparent;
}
.contact-channel-icon svg { width: 22px; height: 22px; }
.contact-channel-eyebrow {
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--c-mute);
  margin-bottom: 4px;
}
.contact-channel-name {
  font-family: var(--f-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--c-ink);
  letter-spacing: -0.015em;
}
.contact-channel-value {
  font-family: var(--f-display);
  font-size: clamp(1.4rem, 2vw, 1.75rem);
  font-weight: 500;
  color: var(--c-ink);
  letter-spacing: -0.01em;
  line-height: 1.2;
  word-break: break-all;
}
.contact-channel-value a { color: inherit; }
.contact-channel-note {
  font-size: 0.92rem;
  color: var(--c-slate);
  line-height: 1.6;
  flex-grow: 1;
}
.contact-channel-cta {
  margin-top: 8px;
  align-self: flex-start;
}

@media (max-width: 768px) {
  .contact-channels { grid-template-columns: 1fr; }
}

/* Dual CTA stack — for footer + contact CTA */
.cta-stack {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

/* =========================================================
   HERO INDEX BADGE — refined for video hero contrast
   ========================================================= */
.home-hero.has-video .hero-index {
  background: rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 22px 24px;
  border-radius: 16px;
  box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.30);
}
.home-hero.has-video .hero-index a:hover {
  border-bottom-color: #ff3355;
}
