/* ═══════════════════════════════════════════════════════════════════════════
   Hanzom.com — Corporate Design System
   Brand: Hanzom | Gradient: #F81F01 → #EE076E
   Fonts: Poppins (head) · Montserrat (UI) · Source Sans Pro (body)
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Montserrat:wght@400;500;600;700&family=Source+Sans+Pro:wght@400;600&display=swap');

/* ── Design Tokens ── */
:root {
  /* Brand */
  --gradient:       linear-gradient(145deg, #F81F01 0%, #EE076E 100%);
  --gradient-glow:  0 4px 20px rgba(238, 7, 110, 0.30);
  --accent:         #EE076E;
  --accent-light:   #f472b6;
  --accent-soft:    rgba(238, 7, 110, 0.08);
  --accent-border:  rgba(238, 7, 110, 0.25);

  /* Surface */
  --bg-base:        #f8f8fb;
  --bg-card:        #ffffff;
  --bg-surface:     #f2f2f7;
  --border:         rgba(0, 0, 0, 0.08);
  --border-strong:  rgba(0, 0, 0, 0.14);

  /* Text */
  --text-primary:   #12121a;
  --text-muted:     #5a5a72;
  --text-dim:       #9696aa;

  /* Semantic */
  --success:        #059669;
  --warning:        #d97706;
  --danger:         #ef4444;
  --info:           #0284c7;

  /* Typography */
  --font-head:  'Poppins', sans-serif;
  --font-ui:    'Montserrat', sans-serif;
  --font-body:  'Source Sans Pro', sans-serif;

  /* Layout */
  --layout-max: 1140px;
  --radius:     14px;
  --radius-sm:  8px;
  --shadow:     0 2px 16px rgba(18, 18, 26, 0.08);
  --shadow-lg:  0 8px 40px rgba(18, 18, 26, 0.12);
}

/* Dark mode */
[data-theme="dark"] {
  --bg-base:       #0d0d18;
  --bg-card:       #16162a;
  --bg-surface:    #1a1a30;
  --border:        rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text-primary:  #f0f0fa;
  --text-muted:    #9090b0;
  --text-dim:      #5c5c7a;
  --shadow:        0 2px 16px rgba(0, 0, 0, 0.35);
  --shadow-lg:     0 8px 40px rgba(0, 0, 0, 0.50);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-base);
  -webkit-font-smoothing: antialiased;
  transition: background 0.3s, color 0.3s;
}

a { text-decoration: none; color: inherit; transition: color 0.18s; }
img { max-width: 100%; height: auto; display: block; }

/* ── Gradient text utility ── */
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ══════════════════════════════════════════════════════════════════
   NAV
   ══════════════════════════════════════════════════════════════════ */
.site-nav {
  position: fixed; top: 16px; left: 50%; transform: translateX(-50%);
  z-index: 200;
  width: calc(100% - 48px); max-width: 1100px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--border);
  border-radius: 50px;
  box-shadow: 0 4px 24px rgba(18, 18, 26, 0.10);
  padding: 0 20px;
  height: 60px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  transition: background 0.3s, border-color 0.3s;
}
[data-theme="dark"] .site-nav {
  background: rgba(22, 22, 42, 0.90);
}

/* Logo */
.nav-logo { display: flex; align-items: center; gap: 10px; }
.logo-wordmark { line-height: 1.1; }
.logo-line1 {
  font-family: var(--font-head);
  font-size: 20px; letter-spacing: -0.5px;
}
.l-han { font-weight: 400; color: var(--text-primary); }
.l-zom {
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-line2 {
  font-family: var(--font-ui);
  font-size: 8px; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--text-dim);
  text-align: right;
}
.l-dot { color: var(--accent); font-weight: 700; -webkit-text-fill-color: var(--accent); }

/* Nav links — exact OmniMuze landing capsule pattern */
.nav-capsule {
  display: inline-flex; align-items: center;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 3px;
  gap: 2px;
}
[data-theme="dark"] .nav-capsule {
  background: rgba(255,255,255,0.06);
}
.nav-link {
  padding: 7px 18px; border-radius: 100px;
  font-family: var(--font-ui);
  font-size: 13px; font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
  transition: all 0.18s;
}
.nav-link:hover { color: var(--text-primary); background: rgba(0,0,0,0.04); }
[data-theme="dark"] .nav-link:hover { background: rgba(255,255,255,0.06); color: var(--text-primary); }
.nav-link.active {
  background: var(--bg-card); color: var(--text-primary);
  font-weight: 600;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

/* Nav actions */
.nav-actions { display: flex; align-items: center; gap: 10px; }
.btn-nav-cta {
  padding: 8px 20px; border-radius: 30px;
  background: var(--gradient); color: #fff;
  font-family: var(--font-ui); font-size: 13px; font-weight: 700;
  border: none; cursor: pointer;
  box-shadow: var(--gradient-glow);
  transition: all 0.18s;
  white-space: nowrap;
}
.btn-nav-cta:hover { opacity: .88; box-shadow: 0 6px 24px rgba(238,7,110,0.4); color: #fff; }

/* Theme toggle */
.theme-toggle {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-surface);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; cursor: pointer; transition: all 0.18s; flex-shrink: 0;
}
.theme-toggle:hover { border-color: var(--accent); color: var(--accent); }

/* ══════════════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  background: var(--bg-base);
  position: relative; overflow: hidden;
}

/* Subtle radial glow behind hero */
.hero::before {
  content: '';
  position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 700px;
  background: radial-gradient(ellipse, rgba(238,7,110,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner { max-width: 820px; margin: 0 auto; position: relative; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 18px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  border-radius: 100px;
  font-family: var(--font-ui);
  font-size: 12px; font-weight: 700;
  color: var(--accent);
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 30px;
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gradient);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .6; transform: scale(1.3); }
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(38px, 6.5vw, 70px);
  font-weight: 800; line-height: 1.08;
  letter-spacing: -1.5px;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.hero p.lead {
  font-family: var(--font-body);
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-muted);
  max-width: 580px; margin: 0 auto 44px;
  line-height: 1.75;
}

.hero-buttons {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 64px;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 34px;
  background: var(--gradient); color: #fff;
  font-family: var(--font-ui); font-size: 15px; font-weight: 700;
  border-radius: 30px; border: none; cursor: pointer;
  box-shadow: var(--gradient-glow);
  transition: all 0.20s;
}
.btn-primary:hover { opacity: .88; box-shadow: 0 8px 32px rgba(238,7,110,0.45); color: #fff; transform: translateY(-1px); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 34px;
  background: var(--bg-card); border: 1px solid var(--border-strong);
  color: var(--text-primary);
  font-family: var(--font-ui); font-size: 15px; font-weight: 600;
  border-radius: 30px; cursor: pointer;
  transition: all 0.20s;
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-soft); transform: translateY(-1px); }

/* Hero stats row */
.hero-stats {
  display: flex; align-items: center; justify-content: center;
  gap: 40px; flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat-num {
  font-family: var(--font-head);
  font-size: 28px; font-weight: 800;
  line-height: 1; margin-bottom: 4px;
}
.hero-stat-label {
  font-family: var(--font-ui);
  font-size: 12px; font-weight: 500;
  color: var(--text-dim);
  text-transform: uppercase; letter-spacing: 0.07em;
}
.hero-stat-divider { width: 1px; height: 36px; background: var(--border-strong); }

/* ══════════════════════════════════════════════════════════════════
   SECTION HELPERS
   ══════════════════════════════════════════════════════════════════ */
.section { padding: 96px 24px; }
.section-inner { max-width: var(--layout-max); margin: 0 auto; }

.section-label {
  font-family: var(--font-ui);
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--accent); margin-bottom: 14px;
}

.section-header { max-width: 640px; margin-bottom: 60px; }
.section-header.centered { text-align: center; margin-left: auto; margin-right: auto; }

.section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800; letter-spacing: -0.8px;
  color: var(--text-primary);
  margin-bottom: 14px; line-height: 1.15;
}
.section-header p {
  font-family: var(--font-body);
  font-size: 16px; color: var(--text-muted); line-height: 1.75; margin: 0;
}

/* ══════════════════════════════════════════════════════════════════
   DISCIPLINES — Editorial numbered rows, no cards
   ══════════════════════════════════════════════════════════════════ */
.discipline-list { display: flex; flex-direction: column; }

.discipline-item {
  display: grid;
  grid-template-columns: 72px 1fr 56px;
  gap: 40px;
  align-items: start;
  padding: 44px 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
  cursor: default;
}
.discipline-item:first-child { border-top: 1px solid var(--border); }
.discipline-item:hover { background: transparent; }

.discipline-num {
  font-family: var(--font-head);
  font-size: 52px; font-weight: 800; line-height: 1;
  background: var(--gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.22;
  transition: opacity 0.25s;
  padding-top: 4px;
}
.discipline-item:hover .discipline-num { opacity: 1; }

.discipline-body h3 {
  font-family: var(--font-head);
  font-size: 20px; font-weight: 700;
  color: var(--text-primary); margin-bottom: 10px;
  transition: color 0.2s;
}
.discipline-item:hover .discipline-body h3 { color: var(--accent); }

.discipline-body p {
  font-family: var(--font-body);
  font-size: 15px; color: var(--text-muted); line-height: 1.75; margin: 0;
  max-width: 580px;
}

.discipline-glyph {
  font-size: 28px; color: var(--border-strong);
  text-align: right; padding-top: 6px;
  transition: color 0.25s, transform 0.25s;
  line-height: 1;
}
.discipline-item:hover .discipline-glyph {
  color: var(--accent);
  transform: scale(1.15);
}

/* ══════════════════════════════════════════════════════════════════
   SOFTWARE PRODUCTS — Full-width split spotlight rows
   ══════════════════════════════════════════════════════════════════ */
.product-list { display: flex; flex-direction: column; gap: 2px; }

.product-spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 380px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.25s;
}
.product-spotlight:hover { box-shadow: var(--shadow-lg); }

.ps-main {
  padding: 52px 48px;
  background: var(--bg-card);
  display: flex; flex-direction: column; justify-content: space-between;
}
.ps-panel {
  padding: 44px 40px;
  background: var(--bg-surface);
  border-left: 1px solid var(--border);
  display: flex; flex-direction: column; justify-content: center;
  gap: 0;
}
/* Reversed layout for second product */
.product-spotlight.flipped .ps-main { order: 2; border-left: 1px solid var(--border); border-right: none; }
.product-spotlight.flipped .ps-panel { order: 1; border-left: none; border-right: 1px solid var(--border); }

.product-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 13px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  border-radius: 100px;
  font-family: var(--font-ui); font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.09em;
  color: var(--accent); margin-bottom: 20px;
  align-self: flex-start;
}

.product-name {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 54px); font-weight: 800;
  letter-spacing: -1.5px; line-height: 1.0;
  color: var(--text-primary);
  margin-bottom: 14px;
}
.product-name .pn-accent {
  background: var(--gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.product-tagline {
  font-family: var(--font-body);
  font-size: 15px; color: var(--text-muted);
  line-height: 1.75; margin-bottom: 0;
}

/* Feature rows inside panel */
.product-features {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column;
}
.product-features li {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-ui); font-size: 13px; font-weight: 500;
  color: var(--text-primary);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.product-features li:first-child { border-top: 1px solid var(--border); }
.product-features li i {
  width: 28px; height: 28px;
  background: var(--accent-soft);
  border-radius: 6px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; color: var(--accent); flex-shrink: 0;
}

.btn-product {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 24px; border-radius: 30px;
  font-family: var(--font-ui); font-size: 13px; font-weight: 700;
  align-self: flex-start; margin-top: 28px;
  transition: all 0.18s;
}
.btn-product.primary { background: var(--gradient); color: #fff; box-shadow: var(--gradient-glow); }
.btn-product.primary:hover { opacity: .88; color: #fff; box-shadow: 0 6px 24px rgba(238,7,110,0.4); }
.btn-product.outline { border: 1px solid var(--border-strong); color: var(--text-primary); background: transparent; }
.btn-product.outline:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-soft); }

/* ══════════════════════════════════════════════════════════════════
   MEDIA PORTFOLIO
   ══════════════════════════════════════════════════════════════════ */
.media-section { background: var(--bg-surface); }
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.media-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: all 0.25s ease;
  display: flex; flex-direction: column;
}
.media-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-border);
}
.media-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 20px;
}
.media-icon.tech   { background: rgba(6,182,212,0.10); color: #0891b2; }
.media-icon.stream { background: rgba(124,58,237,0.10); color: #7c3aed; }
.media-icon.fashion{ background: rgba(236,72,153,0.10); color: #db2777; }

.media-card h3 {
  font-family: var(--font-head);
  font-size: 17px; font-weight: 700;
  color: var(--text-primary); margin-bottom: 6px;
}
.media-url {
  font-family: var(--font-ui); font-size: 11px; font-weight: 600;
  color: var(--accent); text-transform: lowercase;
  letter-spacing: 0.02em; margin-bottom: 14px;
}
.media-card p {
  font-family: var(--font-body);
  font-size: 13.5px; color: var(--text-muted);
  line-height: 1.65; margin: 0 0 22px; flex: 1;
}
.media-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.media-tag {
  padding: 3px 10px; border-radius: 20px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  font-family: var(--font-ui); font-size: 11px; font-weight: 600;
  color: var(--text-dim);
}
.media-card-link {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 20px;
  font-family: var(--font-ui); font-size: 12px; font-weight: 700;
  color: var(--accent);
  text-transform: uppercase; letter-spacing: 0.06em;
  align-self: flex-start;
}
.media-card-link i { font-size: 10px; transition: transform 0.15s; }
.media-card:hover .media-card-link i { transform: translateX(3px); }

/* ══════════════════════════════════════════════════════════════════
   ABOUT / MISSION
   ══════════════════════════════════════════════════════════════════ */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-content .section-label { display: block; margin-bottom: 14px; }
.about-content h2 {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800; letter-spacing: -0.8px;
  color: var(--text-primary); margin-bottom: 18px; line-height: 1.15;
}
.about-content p {
  font-family: var(--font-body);
  font-size: 15px; color: var(--text-muted); line-height: 1.8;
  margin-bottom: 16px;
}
.about-content p:last-of-type { margin-bottom: 32px; }

.about-values {
  display: flex; flex-direction: column; gap: 16px;
}
.value-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px 20px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.18s;
}
.value-item:hover { border-color: var(--accent-border); }
.value-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  background: var(--accent-soft);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--accent);
}
.value-item h4 {
  font-family: var(--font-head); font-size: 14px; font-weight: 700;
  color: var(--text-primary); margin-bottom: 3px;
}
.value-item p {
  font-family: var(--font-body); font-size: 13px; color: var(--text-muted);
  line-height: 1.55; margin: 0;
}

/* ══════════════════════════════════════════════════════════════════
   CONTACT / CTA SECTION
   ══════════════════════════════════════════════════════════════════ */
.contact-section { background: var(--bg-base); }
.contact-box {
  max-width: 720px; margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  padding: 64px 48px;
  text-align: center;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow);
}
.contact-box::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: var(--gradient);
}
.contact-box h2 {
  font-family: var(--font-head);
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 800; letter-spacing: -0.5px;
  color: var(--text-primary); margin-bottom: 14px;
}
.contact-box p {
  font-family: var(--font-body);
  font-size: 15px; color: var(--text-muted);
  margin-bottom: 36px; line-height: 1.75; max-width: 500px; margin-left: auto; margin-right: auto;
}
.contact-email-link {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px;
  background: var(--gradient); color: #fff;
  font-family: var(--font-ui); font-size: 15px; font-weight: 700;
  border-radius: 30px;
  box-shadow: var(--gradient-glow);
  margin-bottom: 24px;
  transition: all 0.20s;
}
.contact-email-link:hover { opacity: .88; color: #fff; box-shadow: 0 8px 32px rgba(238,7,110,0.45); transform: translateY(-2px); }
.contact-secondary-links {
  display: flex; gap: 24px; justify-content: center; flex-wrap: wrap;
  font-family: var(--font-ui); font-size: 13px; font-weight: 600;
  color: var(--text-muted);
}
.contact-secondary-links a:hover { color: var(--accent); }

/* ══════════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding: 44px 24px;
}
.footer-inner {
  max-width: var(--layout-max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand .logo-line1 { font-size: 22px; margin-bottom: 10px; }
.footer-brand p {
  font-family: var(--font-body); font-size: 13px;
  color: var(--text-dim); line-height: 1.65;
}

.footer-col h4 {
  font-family: var(--font-ui);
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.10em;
  color: var(--text-dim); margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-family: var(--font-body); font-size: 13px; color: var(--text-muted);
  transition: color 0.15s;
}
.footer-col ul li a:hover { color: var(--accent); }

.footer-bottom {
  max-width: var(--layout-max); margin: 32px auto 0;
  padding-top: 24px; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-family: var(--font-body); font-size: 12px; color: var(--text-dim); }
.footer-bottom a { color: var(--text-dim); }
.footer-bottom a:hover { color: var(--accent); }

/* ══════════════════════════════════════════════════════════════════
   SCROLL ANIMATIONS
   ══════════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.10s; }
.reveal-delay-2 { transition-delay: 0.20s; }
.reveal-delay-3 { transition-delay: 0.30s; }
.reveal-delay-4 { transition-delay: 0.40s; }

/* ══════════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .site-nav { width: calc(100% - 32px); }
  .nav-capsule .nav-link:nth-child(-n+2) { display: none; }
  /* Disciplines */
  .discipline-item { grid-template-columns: 56px 1fr; gap: 24px; }
  .discipline-glyph { display: none; }
  .discipline-num { font-size: 40px; }
  /* Products */
  .product-spotlight { grid-template-columns: 1fr; min-height: auto; }
  .product-spotlight .ps-panel { border-left: none; border-top: 1px solid var(--border); }
  .product-spotlight.flipped .ps-main { order: 1; border-left: none; }
  .product-spotlight.flipped .ps-panel { order: 2; border-right: none; border-top: 1px solid var(--border); }
  .ps-main { padding: 36px 28px; }
  .ps-panel { padding: 28px 28px; }
  /* Media + Layout */
  .media-grid { grid-template-columns: repeat(2, 1fr); }
  .about-layout { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 600px) {
  .hero h1 { letter-spacing: -0.8px; }
  .hero-stats { gap: 20px; }
  .hero-stat-divider { display: none; }
  .discipline-item { grid-template-columns: 1fr; gap: 10px; }
  .discipline-num { font-size: 32px; opacity: 1; }
  .media-grid { grid-template-columns: 1fr; }
  .contact-box { padding: 40px 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section { padding: 64px 20px; }
}
