/* ═══════════════════════════════════════════════════════════════
   nmetrix.io — onepage v4
   Bold redesign. Competitive-grade.
   Static HTML/CSS + scroll animations — no framework
═══════════════════════════════════════════════════════════════ */

:root {
  --bg-primary:    #0A0A0A;
  --bg-secondary:  #111111;
  --bg-surface:    #1A1A1A;
  --bg-border:     #262626;
  --bg-border-light: #333333;

  --text-primary:   #F0F0F0;
  --text-secondary: #999999;
  --text-muted:     #5A5A5A;

  --accent:        #00D4AA;
  --accent-dim:    rgba(0, 212, 170, 0.12);
  --accent-glow:   rgba(0, 212, 170, 0.06);
  --accent-dark:   #0A0A0A;

  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;
  --font-mono:  'JetBrains Mono', 'Fira Code', ui-monospace, monospace;

  --sp-1: 8px; --sp-2: 16px; --sp-3: 24px; --sp-4: 32px;
  --sp-5: 40px; --sp-6: 48px; --sp-7: 56px; --sp-8: 64px;
  --sp-10: 80px; --sp-12: 96px; --sp-16: 128px;

  --max-width: 1200px;
  --section-px: clamp(24px, 6vw, 120px);
  --section-py: clamp(80px, 10vw, 140px);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── RESET ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
ul { list-style: none; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; }

/* ── SCROLL ANIMATIONS ───────────────────────────────────────── */
.anim-fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  will-change: opacity, transform;
}
.anim-slide {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  will-change: opacity, transform;
}
.anim-fade.is-visible,
.anim-slide.is-visible {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}
.stats-grid .stat.is-visible:nth-child(2) { transition-delay: 0.08s; }
.stats-grid .stat.is-visible:nth-child(3) { transition-delay: 0.16s; }
.stats-grid .stat.is-visible:nth-child(4) { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  .anim-fade, .anim-slide {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }
  .grid-node, .grid-lines {
    animation: none;
  }
  html { scroll-behavior: auto; }
}

/* ── SHARED ──────────────────────────────────────────────────── */
.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--section-py) var(--section-px);
}

.section-label {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.06em;
  margin-bottom: var(--sp-3);
}

.section-title {
  font-family: var(--font-sans);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: var(--sp-2);
}
.section-title--xl {
  font-size: clamp(40px, 6vw, 72px);
  margin-bottom: var(--sp-1);
}
.section-title--accent { color: var(--accent); }

.section-subtitle {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 600px;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
  margin-bottom: var(--sp-10);
}
.section-header--center {
  text-align: center;
  align-items: center;
}

/* ── HEADER ──────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(10, 10, 10, 0.82);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--section-px);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, Georgia, serif;
  font-size: 21px;
  font-weight: 500;
  color: #FEFFE9;
  letter-spacing: -0.01em;
}
.wm-i { position: relative; display: inline-block; line-height: 1; }
.wm-i::after {
  content: '';
  position: absolute;
  top: 0.08em;
  left: 50%;
  transform: translateX(-50%);
  width: 0.3em;
  height: 0.3em;
  background: var(--accent);
  border-radius: 50%;
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-dark);
  background: var(--accent);
  border: none;
  border-radius: 6px;
  padding: 10px 24px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-lg { font-size: 15px; padding: 16px 36px; }

.btn-ghost {
  display: inline-flex; align-items: center;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  border: 1px solid var(--bg-border-light);
  border-radius: 6px;
  padding: 10px 24px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 25% 50%, rgba(0,212,170,0.05) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 30%, rgba(0,212,170,0.03) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 160px var(--section-px) 120px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: var(--sp-10);
  align-items: center;
  position: relative;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 400;
  color: var(--accent);
}

.hero-headline {
  font-family: var(--font-sans);
  font-size: clamp(44px, 6.5vw, 80px);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero-sub {
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 560px;
}

.hero-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-pillars span {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  border: 1px solid rgba(0,212,170,0.3);
  border-radius: 4px;
  padding: 8px 16px;
  transition: background 0.2s, border-color 0.2s;
}
.hero-pillars span:hover {
  background: var(--accent-dim);
  border-color: var(--accent);
}

.hero-actions {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
  padding-top: var(--sp-1);
}

/* hero network visual */
.hero-visual {
  position: relative;
  width: 360px;
  height: 360px;
}
.grid-lines {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  animation: grid-pulse 6s ease-in-out infinite;
  will-change: opacity;
}
.grid-node {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(0,212,170,0.4);
  animation: node-glow 3s ease-in-out infinite alternate;
  will-change: box-shadow;
}
.n1 { top: 17.5%; left: 17.5%; }
.n2 { top: 17.5%; left: 77.5%; animation-delay: 0.5s; }
.n3 { top: 47.5%; left: 47.5%; width: 14px; height: 14px; margin: -2px; animation-delay: 1s; }
.n4 { top: 77.5%; left: 17.5%; animation-delay: 1.5s; }
.n5 { top: 77.5%; left: 77.5%; animation-delay: 2s; }

@keyframes node-glow {
  0% { box-shadow: 0 0 12px rgba(0,212,170,0.3); }
  100% { box-shadow: 0 0 28px rgba(0,212,170,0.6); }
}
@keyframes grid-pulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

/* ── CREDIBILITY ─────────────────────────────────────────────── */
.credibility {
  background: var(--bg-secondary);
  border-top: 1px solid var(--bg-border);
  border-bottom: 1px solid var(--bg-border);
}
.credibility .section-inner {
  padding-top: var(--sp-8);
  padding-bottom: var(--sp-8);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
  padding: var(--sp-4) var(--sp-4);
  border-right: 1px solid var(--bg-border);
  transition: background 0.3s;
}
.stat:last-child { border-right: none; }
.stat:hover { background: rgba(0,212,170,0.04); }

.stat-num {
  font-family: var(--font-mono);
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}
.stat-label {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ── PROBLEM SECTION (NEW) ───────────────────────────────────── */
.problem-section {
  background: var(--bg-primary);
  border-bottom: 1px solid var(--bg-border);
}
.problem-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-10);
  align-items: start;
}
.problem-left {
  position: sticky;
  top: 120px;
}
.problem-right {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.problem-card {
  background: var(--bg-surface);
  border: 1px solid var(--bg-border);
  border-radius: 12px;
  padding: var(--sp-4) var(--sp-4) var(--sp-4) var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  transition: border-color 0.3s, transform 0.3s var(--ease-out);
}
.problem-card:hover {
  border-color: rgba(0,212,170,0.35);
  transform: translateY(-2px);
}
.problem-icon {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  border-radius: 8px;
}
.problem-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}
.problem-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ── THESIS ──────────────────────────────────────────────────── */
.thesis {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--bg-border);
  overflow: hidden;
}
.thesis-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: start;
}
.thesis-left {
  position: sticky;
  top: 120px;
}
.thesis-right {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.thesis-lead {
  font-size: 20px;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.6;
  margin-bottom: var(--sp-1);
}
.thesis-right p {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
}
.thesis-close {
  font-weight: 600 !important;
  color: var(--accent) !important;
  font-size: 18px !important;
  padding-top: var(--sp-2);
  border-top: 1px solid var(--bg-border);
}

/* ── CAPABILITIES (combined) ─────────────────────────────────── */
.capabilities {
  background: var(--bg-primary);
  border-bottom: 1px solid var(--bg-border);
}

.cap-group {
  margin-bottom: var(--sp-10);
}
.cap-group:last-child { margin-bottom: 0; }

.cap-group-header {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
}
.cap-group-num {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-dark);
  background: var(--accent);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  flex-shrink: 0;
  margin-top: 2px;
}
.cap-group-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}
.cap-group-sub {
  font-size: 15px;
  color: var(--text-secondary);
  margin-top: 4px;
}

/* ── CARDS ────────────────────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
}
.card {
  background: var(--bg-surface);
  border: 1px solid var(--bg-border);
  border-radius: 12px;
  padding: var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  transition: border-color 0.3s, transform 0.3s var(--ease-out);
}
.card:hover {
  border-color: rgba(0,212,170,0.35);
  transform: translateY(-3px);
}
.card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}
.card-body {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  flex: 1;
}
.card-tags {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  line-height: 1.7;
  padding-top: var(--sp-1);
  border-top: 1px solid var(--bg-border);
}

/* ── PATTERNS ────────────────────────────────────────────────── */
.patterns-section {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--bg-border);
}
.patterns-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.pattern {
  background: var(--bg-surface);
  border: 1px solid var(--bg-border);
  border-radius: 12px;
  padding: var(--sp-5) var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  transition: border-color 0.3s;
}
.pattern:hover { border-color: rgba(0,212,170,0.25); }

.pattern-header {
  display: flex;
  align-items: baseline;
  gap: var(--sp-2);
}
.pattern-num {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
}
.pattern-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}
.pattern-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
.pattern-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pattern-col-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}
.pattern-col-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}
.pattern-col-text--accent { color: var(--accent); }

/* ── TECH STACK ──────────────────────────────────────────────── */
.stack-section {
  background: var(--bg-primary);
  border-bottom: 1px solid var(--bg-border);
}
.stack-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}
.stack-col {
  padding: var(--sp-4) var(--sp-3);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  border-right: 1px solid var(--bg-border);
  transition: background 0.3s;
}
.stack-col:last-child { border-right: none; }
.stack-col:hover { background: rgba(0,212,170,0.03); }
.stack-col-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.1em;
  padding-bottom: var(--sp-2);
  border-bottom: 1px solid var(--bg-border);
}
.stack-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.stack-list li {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  transition: color 0.2s;
}
.stack-col:hover .stack-list li { color: var(--text-primary); }

/* ── PRODUCT: HUBFISCAL ──────────────────────────────────────── */
.product-section {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--bg-border);
}
.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-10);
  align-items: center;
}
.product-left {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.product-philosophy {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.65;
}
.product-card {
  background: var(--bg-primary);
  border: 1px solid var(--accent);
  border-radius: 12px;
  padding: var(--sp-5) var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  box-shadow: 0 0 60px rgba(0,212,170,0.06);
}
.product-card-top {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.product-name {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-primary);
}
.product-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-dark);
  background: var(--accent);
  border-radius: 4px;
  padding: 5px 12px;
  white-space: nowrap;
}
.product-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
}
.product-body {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}
.product-close {
  font-size: 15px;
  font-weight: 600;
  color: var(--accent);
  line-height: 1.6;
}

/* ── FOOTER ──────────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--bg-border);
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--sp-12) var(--section-px) var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
}

.footer-cta-block {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  max-width: 600px;
}
.footer-cta {
  font-family: var(--font-sans);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
  letter-spacing: -0.025em;
}
.footer-cta-sub {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.footer-contacts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
  max-width: 600px;
}
.contact-card {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
  background: var(--bg-surface);
  border: 1px solid var(--bg-border);
  border-radius: 12px;
  padding: var(--sp-3) var(--sp-3);
  transition: border-color 0.3s, transform 0.3s var(--ease-out);
}
.contact-card:hover {
  border-color: rgba(0,212,170,0.4);
  transform: translateY(-2px);
}
.contact-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.contact-email {
  font-size: 16px;
  font-weight: 500;
  color: var(--accent);
}

.footer-divider {
  border: none;
  border-top: 1px solid var(--bg-border);
}
.footer-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}
.footer-slogan {
  font-size: 13px;
  color: var(--text-muted);
}
.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 140px;
  }
  .hero-visual { display: none; }

  .problem-layout,
  .thesis-layout,
  .product-layout {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
  }
  .problem-left,
  .thesis-left {
    position: static;
  }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: none; border-bottom: 1px solid var(--bg-border); }
  .stat:nth-last-child(-n+2) { border-bottom: none; }

  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .stack-grid { grid-template-columns: repeat(3, 1fr); }
  .stack-col:nth-child(3) { border-right: none; }
  .stack-col:nth-child(-n+3) { border-bottom: 1px solid var(--bg-border); }
  .pattern-grid { grid-template-columns: 1fr; gap: var(--sp-3); }

  .footer-bottom { flex-direction: column; gap: var(--sp-3); align-items: flex-start; }
}

@media (max-width: 768px) {
  :root {
    --section-px: 20px;
    --section-py: var(--sp-8);
  }
  .hero-inner { padding: 120px 20px 80px; gap: var(--sp-5); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-lg, .hero-actions .btn-ghost { width: 100%; justify-content: center; }
  .hero-pillars span { font-size: 11px; padding: 6px 12px; }

  .stats-grid { grid-template-columns: 1fr 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .stack-grid { grid-template-columns: repeat(2, 1fr); }
  .stack-col:nth-child(3) { border-right: 1px solid var(--bg-border); }
  .stack-col:nth-child(odd) { border-right: 1px solid var(--bg-border); }
  .stack-col:nth-child(even) { border-right: none; }
  .stack-col { border-bottom: 1px solid var(--bg-border); }
  .stack-col:nth-last-child(-n+2) { border-bottom: none; }
  .pattern { padding: var(--sp-3); }
  .product-card { padding: var(--sp-4); }
  .footer-contacts { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat { border-bottom: 1px solid var(--bg-border); border-right: none; }
  .stat:last-child { border-bottom: none; }
  .stack-grid { grid-template-columns: 1fr; }
  .stack-col { border-right: none !important; border-bottom: 1px solid var(--bg-border); }
  .stack-col:last-child { border-bottom: none; }
  .header-inner { padding: 0 16px; }
  .hero-pillars { flex-direction: column; align-items: flex-start; }
}

/* ── FOCUS / ACCESSIBILITY ───────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

@media print {
  .site-header { position: static; }
  .hero { min-height: auto; }
  .hero-visual { display: none; }
  .anim-fade, .anim-slide { opacity: 1; transform: none; }
}
