/* ==========================================================================
   MARS BATHWARE — LUXURY ARCHITECTURAL ATELIER DESIGN SYSTEM (v4.0)
   Award-Winning Minimalist Design, Fluid Spatial Layouts & Micro-Precision
   ========================================================================== */

/* ── 1. Global Custom Properties ─────────────────────────────────────────── */
:root {
  /* Architectural Palette */
  --bg-dark-void: #060608;
  --bg-dark-surface: #0c0c0f;
  --bg-dark-elevated: #131318;
  --bg-dark-card: rgba(255, 255, 255, 0.025);
  
  --bg-light-chalk: #F7F6F2;
  --bg-light-surface: #FFFFFF;
  --bg-light-card: #F0EFEA;

  --accent-gold: #C5A880;
  --accent-gold-hover: #D4AF37;
  --accent-gold-soft: rgba(197, 168, 128, 0.12);
  --accent-gold-glow: rgba(197, 168, 128, 0.35);

  --text-white: #FFFFFF;
  --text-muted-dark: #9A9AA6;
  --text-muted-dim: #646470;
  
  --text-dark: #0A0A0C;
  --text-muted-light: #6C6C78;

  --border-dark: rgba(255, 255, 255, 0.08);
  --border-dark-hover: rgba(197, 168, 128, 0.4);
  --border-light: rgba(0, 0, 0, 0.08);

  /* Typography */
  --font-logo: 'Syne', sans-serif;
  --font-display: 'Space Grotesk', sans-serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Dimensions & Spacing */
  --header-height: 84px;
  --header-height-scrolled: 68px;
  --container-max: 1440px;
  --section-pad-y: clamp(80px, 9vw, 130px);

  /* Motion Curves */
  --ease-luxury: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.25, 1, 0.5, 1);
  --trans-fast: 0.25s var(--ease-luxury);
  --trans-normal: 0.45s var(--ease-luxury);
  --trans-slow: 0.8s var(--ease-luxury);
}

/* ── 2. Reset & Base Typography ──────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: var(--bg-dark-void);
  color: var(--text-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-dark-void);
  color: var(--text-white);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
}

img, picture, svg, video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--trans-fast);
}

button {
  font-family: inherit;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.display-title-1 {
  font-family: var(--font-logo);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.05;
}

.display-title-2 {
  font-family: var(--font-logo);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.1;
}

.display-title-3 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.label-eyebrow {
  font-family: var(--font-display);
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.text-gold {
  color: var(--accent-gold) !important;
}

.gold-sheen-text {
  background: linear-gradient(135deg, #FFFFFF 15%, #EDE3D6 55%, #C2A782 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* ── 3. Background Textures & Progressive Hairlines ──────────────────────── */
.arch-grid-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.arch-grid-dots-dark {
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 32px 32px;
}

.arch-grid-dots-light {
  background-image: radial-gradient(rgba(0, 0, 0, 0.06) 1px, transparent 1px);
  background-size: 32px 32px;
}

.prog-hairline-h {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  z-index: 3;
}

.prog-hairline-h.hairline-top { top: 0; }
.prog-hairline-h.hairline-bottom { bottom: 0; }

.prog-hairline-h.light-mode {
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.08), transparent);
}

.pulse-gold-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--accent-gold);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-gold);
  animation: pulseBeacon 2s infinite ease-in-out;
  flex-shrink: 0;
}

@keyframes pulseBeacon {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 8px var(--accent-gold); }
  50% { opacity: 0.4; transform: scale(0.85); box-shadow: 0 0 2px var(--accent-gold); }
}

/* ── 4. Section Containers ───────────────────────────────────────────────── */
.section-dark {
  position: relative;
  background-color: var(--bg-dark-void);
  padding: var(--section-pad-y) 0;
  overflow: hidden;
}

.section-dark-elevated {
  position: relative;
  background-color: var(--bg-dark-surface);
  padding: var(--section-pad-y) 0;
  overflow: hidden;
}

.section-light {
  position: relative;
  background-color: var(--bg-light-chalk);
  color: var(--text-dark);
  padding: var(--section-pad-y) 0;
  overflow: hidden;
}

/* ── 5. Luxury Buttons System ────────────────────────────────────────────── */
.btn-mars {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--trans-normal);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-mars-primary {
  background: linear-gradient(135deg, #C5A880 0%, #A88B68 100%);
  color: #060608;
  border: 1px solid #C5A880;
  box-shadow: 0 10px 25px rgba(197, 168, 128, 0.25);
}

.btn-mars-primary:hover {
  background: linear-gradient(135deg, #D4AF37 0%, #C5A880 100%);
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(197, 168, 128, 0.45);
}

.btn-mars-outline {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.btn-mars-outline:hover {
  background: #FFFFFF;
  border-color: #FFFFFF;
  color: #060608;
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(255, 255, 255, 0.15);
}

.btn-mars-outline-dark {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.18);
  color: #0A0A0C;
}

.btn-mars-outline-dark:hover {
  background: #0A0A0C;
  border-color: #0A0A0C;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

/* ── 6. Minimalist Header & Navigation ──────────────────────────────────── */
.mars-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  background: rgba(6, 6, 8, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--trans-normal);
}

.mars-header.header-scrolled {
  height: var(--header-height-scrolled);
  background: rgba(6, 6, 8, 0.95);
  border-bottom: 1px solid var(--border-dark);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

.header-container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  transition: transform var(--trans-fast);
}

.brand-logo-link:hover .brand-logo-img {
  transform: scale(1.03);
}

.nav-menu-desktop {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.8vw, 32px);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link-item {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  position: relative;
  padding: 6px 2px;
  transition: color var(--trans-fast);
}

.nav-link-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--accent-gold);
  transition: width 0.3s var(--ease-luxury);
}

.nav-link-item:hover,
.nav-link-item.active {
  color: #FFFFFF;
}

.nav-link-item:hover::after,
.nav-link-item.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn-icon-search {
  background: transparent;
  border: 1px solid var(--border-dark);
  color: #FFFFFF;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--trans-fast);
}

.btn-icon-search:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #FFFFFF;
}

.btn-mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #FFFFFF;
  font-size: 1.6rem;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
}

/* ── 7. Fullscreen Mobile Navigation Drawer ──────────────────────────────── */
.mobile-nav-drawer {
  position: fixed;
  inset: 0;
  background: rgba(18, 18, 20, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px 24px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-20px);
  transition: all 0.4s var(--ease-luxury);
}

.mobile-nav-drawer.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.btn-close-mobile-drawer {
  background: transparent;
  border: 1px solid var(--border-dark);
  color: #FFFFFF;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
}

.mobile-menu-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: auto 0;
}

.mobile-menu-links a {
  font-family: var(--font-logo);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  display: inline-block;
  transition: color 0.2s ease, transform 0.2s ease;
}

.mobile-menu-links a:hover,
.mobile-menu-links a.active {
  color: var(--accent-gold);
  transform: translateX(8px);
}

/* ── 8. Fullscreen Live Search Overlay ───────────────────────────────────── */
.mars-search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(18, 18, 20, 0.85);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  z-index: 100000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease-luxury);
}

.mars-search-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.search-inner-box {
  width: 100%;
  max-width: 680px;
  position: relative;
}

.btn-close-search {
  position: absolute;
  top: -60px;
  right: 0;
  background: transparent;
  border: 1px solid var(--border-dark);
  color: #FFFFFF;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
}

.search-input-field {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(182, 134, 99, 0.4);
  padding: 16px 0;
  font-family: var(--font-logo);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #FFFFFF;
  outline: none;
  transition: border-color var(--trans-fast);
  text-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.search-input-field:focus {
  border-color: #b68663;
}

/* ── 9. Minimalist Architectural Footer ──────────────────────────────────── */
.mars-footer {
  position: relative;
  background-color: #040406;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 90px 0 40px;
  overflow: hidden;
}

.footer-logo {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
}

.footer-links a {
  font-size: 0.86rem;
  color: var(--text-muted-dark);
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #FFFFFF;
  padding-left: 6px;
}

.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 36px;
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.75rem;
  color: var(--text-muted-dim);
}

.social-icon-pill {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 0.9rem;
  transition: all var(--trans-fast);
}

.social-icon-pill:hover {
  border-color: var(--accent-gold);
  background: var(--accent-gold);
  color: #060608;
  transform: translateY(-2px);
}


/* ==========================================================================
   SECTION 01: MONUMENTAL EDITORIAL HERO (ATELIER SHOWCASE)
   ========================================================================== */
.hero-monumental-section {
  position: relative;
  min-height: 100vh;
  padding-top: calc(var(--header-height) + 30px);
  padding-bottom: 70px;
  background-color: var(--bg-dark-void);
  background-image: radial-gradient(circle at 50% 40%, rgba(197, 168, 128, 0.12) 0%, rgba(14, 14, 18, 0.4) 45%, rgba(6, 6, 8, 1) 75%);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-monumental-spotlight {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 600px;
  background: radial-gradient(ellipse at top, rgba(255, 255, 255, 0.06) 0%, rgba(197, 168, 128, 0.04) 40%, transparent 70%);
  pointer-events: none;
  filter: blur(50px);
  z-index: 1;
}

.hero-top-telemetry-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.telemetry-badge-left,
.telemetry-badge-right {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #A0A0AC;
}

.hero-monumental-header-box {
  margin-bottom: 28px;
}

.hero-monumental-headline {
  font-family: var(--font-logo);
  font-size: clamp(2.4rem, 4.6vw, 4.4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 14px;
}

.headline-gold-sheen {
  background: linear-gradient(135deg, #FFFFFF 15%, #EDE3D6 55%, #C5A880 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-monumental-lead {
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 1.15vw, 1.08rem);
  color: #9A9AA6;
  line-height: 1.7;
  max-width: 620px;
  font-weight: 400;
}

.hero-category-selector-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 40px;
  padding: 6px 12px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.hero-cat-btn {
  background: transparent;
  border: none;
  color: #9292A0;
  font-family: var(--font-display);
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 30px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s var(--ease-luxury);
}

.hero-cat-btn .cat-num {
  font-size: 0.62rem;
  color: var(--accent-gold);
}

.hero-cat-btn:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.05);
}

.hero-cat-btn.active {
  background: #FFFFFF;
  color: #060608;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

.hero-cat-btn.active .cat-num {
  color: #060608;
}

.hero-monumental-stage {
  position: relative;
  width: 100%;
  max-width: 720px;
  min-height: 420px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-stage-halo {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 168, 128, 0.22) 0%, rgba(255, 255, 255, 0.02) 45%, transparent 70%);
  filter: blur(45px);
  pointer-events: none;
  z-index: 1;
}

.hero-stage-pedestal-ring {
  position: absolute;
  bottom: 20px;
  width: 440px;
  height: 120px;
  border-radius: 50%;
  border: 1px solid rgba(197, 168, 128, 0.25);
  background: radial-gradient(ellipse at center, rgba(197, 168, 128, 0.12) 0%, transparent 70%);
  transform: rotateX(70deg);
  pointer-events: none;
  z-index: 2;
  box-shadow: 0 0 35px rgba(197, 168, 128, 0.15);
}

.hero-stage-ceramic-box {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-monumental-ceramic {
  max-width: 380px;
  max-height: 410px;
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 32px 55px rgba(0, 0, 0, 0.95));
  animation: monumentalFloat 6s ease-in-out infinite;
  transition: transform 0.4s var(--ease-luxury), filter 0.4s var(--ease-luxury), opacity 0.25s ease;
  user-select: none;
}

.hero-monumental-ceramic:hover {
  filter: drop-shadow(0 38px 65px rgba(197, 168, 128, 0.35));
  transform: translateY(-6px) scale(1.02);
}

@keyframes monumentalFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

.hero-feature-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 30px;
  background: rgba(18, 18, 24, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FFFFFF;
  z-index: 10;
  transition: all 0.3s var(--ease-luxury);
}

.hero-feature-chip .chip-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-gold);
  box-shadow: 0 0 8px var(--accent-gold);
}

.hero-feature-chip.chip-left { left: 20px; top: 35%; }
.hero-feature-chip.chip-right { right: 20px; bottom: 35%; }

.hero-feature-chip:hover {
  border-color: var(--accent-gold);
  background: rgba(26, 26, 36, 0.95);
  transform: translateY(-2px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.6), 0 0 20px rgba(197, 168, 128, 0.2);
}

.hero-stage-meta-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 8px 22px;
  border-radius: 30px;
  background: rgba(15, 15, 20, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  width: fit-content;
  margin: 12px auto 0;
  font-family: var(--font-display);
  font-size: 0.70rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #E2E2EA;
}

.meta-code { color: #FFFFFF; font-weight: 700; }
.meta-cat { color: var(--accent-gold); }
.meta-divider { width: 1px; height: 12px; background: rgba(255, 255, 255, 0.16); }

.hero-monumental-footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-footer-cta-group {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-mars-monumental-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #C5A880 0%, #A88B68 100%);
  color: #060608;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 4px;
  box-shadow: 0 10px 25px rgba(197, 168, 128, 0.25);
  transition: all 0.35s var(--ease-luxury);
}

.btn-mars-monumental-primary:hover {
  background: linear-gradient(135deg, #D4AF37 0%, #C5A880 100%);
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(197, 168, 128, 0.4);
}

.btn-mars-monumental-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 4px;
  transition: all 0.35s var(--ease-luxury);
}

.btn-mars-monumental-outline:hover {
  background: #FFFFFF;
  border-color: #FFFFFF;
  color: #060608;
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(255, 255, 255, 0.15);
}

.hero-footer-telemetry-strip {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 24px);
}

.telemetry-stat {
  display: flex;
  flex-direction: column;
}

.t-val {
  font-family: var(--font-logo);
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.t-lbl {
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8A8A96;
  margin-top: 3px;
}

.t-divider {
  width: 1px;
  height: 26px;
  background: rgba(255, 255, 255, 0.08);
}

/* ==========================================================================
   SECTION 02: FEATURED GALLERY (EDITORIAL DETAIL SWITCHER)
   ========================================================================== */
.featured-detail-section {
  position: relative;
  background-color: var(--bg-light-chalk);
  color: var(--text-dark);
  padding: var(--section-pad-y) 0;
  overflow: hidden;
}

.featured-gallery-wrapper {
  display: flex;
  gap: 20px;
  align-items: center;
}

.featured-thumb-strip {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

.featured-thumb-btn {
  width: 74px;
  height: 74px;
  border-radius: 6px;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--trans-normal);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.featured-thumb-btn img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.featured-thumb-btn:hover,
.featured-thumb-btn.active {
  border-color: var(--accent-gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(197, 168, 128, 0.3);
}

.featured-main-stage {
  flex-grow: 1;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 40px 24px;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.04);
}

.featured-main-img {
  max-width: 320px;
  max-height: 380px;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.12));
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.featured-heading-title {
  font-family: var(--font-logo);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.featured-underline-bar {
  width: 48px;
  height: 2px;
  background-color: var(--accent-gold);
  margin-bottom: 20px;
}

.featured-lead-desc {
  font-size: 0.95rem;
  color: var(--text-muted-light);
  line-height: 1.7;
  margin-bottom: 24px;
}

.featured-model-code {
  font-family: var(--font-logo);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.02em;
}

.featured-model-category {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 4px;
}

.featured-model-dims {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--text-muted-light);
  margin-bottom: 28px;
}

.featured-badge-trio {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.featured-badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.featured-badge-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-light-card);
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.featured-badge-lbl {
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-dark);
  line-height: 1.3;
}

.btn-view-product {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--text-dark);
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
  transition: all var(--trans-normal);
}

.btn-view-product:hover {
  background: var(--accent-gold);
  color: #060608;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(197, 168, 128, 0.35);
}

/* ==========================================================================
   SECTION 03: ORBITAL TECHNOLOGY (6-NODE CELESTIAL ENGINE)
   ========================================================================== */
.orbital-tech-section {
  position: relative;
  background-color: var(--bg-dark-void);
  padding: var(--section-pad-y) 0;
  overflow: hidden;
}

.orbital-tech-title {
  font-family: var(--font-logo);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.orbital-tech-lead {
  font-size: 0.95rem;
  color: var(--text-muted-dark);
  line-height: 1.7;
  margin-bottom: 32px;
}

.orbital-info-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 24px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  margin-bottom: 28px;
  transition: all 0.3s var(--ease-luxury);
}

.orbital-card-tag {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-gold);
  display: block;
  margin-bottom: 8px;
}

.orbital-card-title {
  font-family: var(--font-logo);
  font-size: 1.2rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

.orbital-card-desc {
  font-size: 0.86rem;
  color: var(--text-muted-dark);
  line-height: 1.6;
  margin-bottom: 0;
}

.link-explore-tech {
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--trans-fast), color var(--trans-fast);
}

.link-explore-tech:hover {
  color: #FFFFFF;
  gap: 12px;
}

.orbital-stage-container {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbital-ring-outer {
  position: absolute;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  border: 1px dashed rgba(197, 168, 128, 0.25);
  animation: orbitSpin 60s linear infinite;
  pointer-events: none;
}

@keyframes orbitSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.orbital-center-product {
  max-width: 280px;
  max-height: 320px;
  object-fit: contain;
  filter: drop-shadow(0 25px 45px rgba(0, 0, 0, 0.95));
  z-index: 5;
  transition: all 0.4s var(--ease-luxury);
}

.orbital-nodes-left,
.orbital-nodes-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 10;
}

.orbital-node-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
  transition: all 0.3s var(--ease-luxury);
}

.orbital-nodes-right .orbital-node-item {
  flex-direction: row-reverse;
  text-align: right;
}

.orbital-node-bubble {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px;
  flex-shrink: 0;
  transition: all 0.3s var(--ease-luxury);
}

.orbital-node-bubble img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.orbital-node-text {
  font-family: var(--font-display);
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #D2D2DC;
}

.orbital-node-item:hover,
.orbital-node-item.active {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.orbital-node-item:hover .orbital-node-bubble,
.orbital-node-item.active .orbital-node-bubble {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
}

.orbital-node-item:hover .orbital-node-bubble img,
.orbital-node-item.active .orbital-node-bubble img {
  filter: brightness(0);
}

/* ==========================================================================
   SECTION 04: HORIZONTAL COLLECTIONS JOURNEY
   ========================================================================== */
.horizontal-scroll-section {
  position: relative;
  background-color: var(--bg-dark-surface);
  padding: var(--section-pad-y) 0;
  overflow: hidden;
}

.horizontal-header-bar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 40px 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 36px;
}

.horizontal-track-wrapper {
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 10px 40px 30px;
}

.horizontal-track-wrapper::-webkit-scrollbar {
  display: none;
}

.horizontal-track {
  display: flex;
  gap: 28px;
  width: max-content;
}

.horizontal-slide-item {
  width: 340px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--trans-normal);
}

.horizontal-slide-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--border-dark-hover);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.slide-number-ghost {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: var(--font-logo);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  pointer-events: none;
}

.slide-img-box {
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 24px 0;
}

.slide-img-box img {
  max-width: 220px;
  max-height: 180px;
  object-fit: contain;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.8));
  transition: transform 0.4s var(--ease-luxury);
}

.horizontal-slide-item:hover .slide-img-box img {
  transform: scale(1.06);
}

.collection-link {
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ==========================================================================
   SECTION 05: MORBI MANUFACTURING INFRASTRUCTURE
   ========================================================================== */
.craft-stage-card {
  position: relative;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 8px;
  padding: 36px 28px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  transition: all 0.45s var(--ease-luxury);
  overflow: hidden;
}

.craft-stage-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-luxury);
}

.craft-stage-card:hover {
  border-color: rgba(0, 0, 0, 0.15);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.craft-stage-card:hover::after {
  transform: scaleX(1);
}

.craft-step-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-gold);
  background: rgba(197, 168, 128, 0.1);
  border: 1px solid rgba(197, 168, 128, 0.25);
  border-radius: 20px;
  padding: 4px 12px;
  margin-bottom: 16px;
}

.craft-step-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.25;
}

.craft-step-desc {
  font-size: 0.88rem;
  color: var(--text-muted-light);
  line-height: 1.7;
}

/* ==========================================================================
   SECTION 06: GLOBAL EXPORTS (B2B PORTAL)
   ========================================================================== */
.export-stat-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 24px 20px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.4s var(--ease-luxury);
}

.export-stat-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(197, 168, 128, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.export-stat-title {
  font-family: var(--font-logo);
  font-size: 1.2rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.export-stat-sub {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted-dark);
}

.b2b-supply-card {
  background: #0d0d10;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: clamp(28px, 4vw, 48px);
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s ease;
}

.b2b-supply-card:hover {
  border-color: rgba(197, 168, 128, 0.25);
}

.b2b-check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  padding: 0;
}

.b2b-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.84rem;
  color: var(--text-muted-dark);
  line-height: 1.5;
}

.b2b-check-list li i {
  color: var(--accent-gold);
  font-size: 0.9rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ==========================================================================
   SECTION 07: 2026 CATALOGUE CTA
   ========================================================================== */
.catalogue-cta-section {
  position: relative;
  background: linear-gradient(135deg, #090910 0%, #0e0e18 50%, #090910 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.catalogue-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(197, 168, 128, 0.6), transparent);
}

.catalogue-cta-inner {
  position: relative;
  z-index: 2;
  padding: clamp(60px, 8vw, 100px) 0;
}

.catalogue-cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(197, 168, 128, 0.08) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(30px);
}

.btn-catalogue-download {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: linear-gradient(135deg, #C5A880 0%, #A88B68 100%);
  color: #000000;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  box-shadow: 0 14px 40px rgba(197, 168, 128, 0.3);
  transition: all 0.4s var(--ease-luxury);
}

.btn-catalogue-download:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(197, 168, 128, 0.45);
  color: #000000;
}

/* ==========================================================================
   PRODUCT CARDS SYSTEM (CATALOG & GRIDS)
   ========================================================================== */
.product-card-arch {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--trans-normal);
  position: relative;
  overflow: hidden;
}

.product-card-arch:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--border-dark-hover);
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6);
}

.product-card-img-wrap {
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
}

.product-card-img-wrap img {
  max-width: 100%;
  max-height: 200px;
  object-fit: contain;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.7));
  transition: transform 0.4s var(--ease-luxury);
}

.product-card-arch:hover .product-card-img-wrap img {
  transform: scale(1.05);
}

.product-card-code {
  font-family: var(--font-logo);
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 2px;
}

.product-card-cat {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-gold);
}

.product-card-dims {
  font-size: 0.8rem;
  color: var(--text-muted-dark);
}


/* ==========================================================================
   SECTION 01: ARCHITECTURAL HERO (ONE PIECE & Z-TYPE CALLOUT LEADER LINES)
   ========================================================================== */
.hero-onepiece-section {
  position: relative;
  min-height: calc(100vh - 10px);
  padding-top: calc(var(--header-height) + 24px);
  padding-bottom: 70px;
  background-color: var(--bg-dark-void);
  background-image: radial-gradient(circle at 65% 45%, rgba(197, 168, 128, 0.10) 0%, rgba(14, 14, 18, 0.3) 50%, rgba(6, 6, 8, 1) 75%);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-ambient-spotlight {
  position: absolute;
  top: -100px;
  right: 15%;
  width: 650px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.05) 0%, rgba(197, 168, 128, 0.04) 40%, transparent 70%);
  pointer-events: none;
  filter: blur(50px);
  z-index: 1;
}

.min-vh-80 {
  min-height: 80vh;
}

/* Left Column Styling */
.hero-origin-capsule {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 30px;
  background: rgba(197, 168, 128, 0.08);
  border: 1px solid rgba(197, 168, 128, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-gold);
}

.hero-onepiece-title {
  font-family: var(--font-logo);
  font-size: clamp(2.4rem, 4.4vw, 3.8rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #FFFFFF;
}

.hero-onepiece-desc {
  font-family: var(--font-sans);
  font-size: clamp(0.92rem, 1.1vw, 1.04rem);
  color: #9A9AA6;
  line-height: 1.75;
  max-width: 500px;
  font-weight: 400;
}

.hero-model-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 18px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.pill-code {
  color: #FFFFFF;
  font-weight: 700;
}

.pill-divider {
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.18);
}

.pill-dims {
  color: var(--accent-gold);
}

.hero-action-group {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Specs Row */
.hero-specs-row {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 24px);
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.spec-stat-item {
  display: flex;
  flex-direction: column;
}

.s-val {
  font-family: var(--font-logo);
  font-size: 1.3rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.s-lbl {
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8C8C9A;
  margin-top: 3px;
}

.s-divider {
  width: 1px;
  height: 26px;
  background: rgba(255, 255, 255, 0.08);
}

/* ── RIGHT COLUMN: PRODUCT STAGE WITH Z-LEADER LINES ────────────────────── */
.hero-product-callout-stage {
  position: relative;
  width: 100%;
  max-width: 600px;
  min-height: 520px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-callout-halo {
  position: absolute;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 168, 128, 0.2) 0%, rgba(255, 255, 255, 0.02) 45%, transparent 70%);
  filter: blur(45px);
  pointer-events: none;
  z-index: 1;
}

.hero-pedestal-ellipse {
  position: absolute;
  bottom: 24px;
  width: 380px;
  height: 100px;
  border-radius: 50%;
  border: 1px solid rgba(197, 168, 128, 0.2);
  background: radial-gradient(ellipse at center, rgba(197, 168, 128, 0.12) 0%, transparent 70%);
  transform: rotateX(70deg);
  pointer-events: none;
  z-index: 2;
  box-shadow: 0 0 35px rgba(197, 168, 128, 0.15);
}

.hero-ceramic-center {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-onepiece-img {
  max-width: 360px;
  max-height: 440px;
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 32px 55px rgba(0, 0, 0, 0.95));
  animation: subtleFloat 6s ease-in-out infinite;
  transition: transform 0.4s var(--ease-luxury), filter 0.4s var(--ease-luxury);
  user-select: none;
}

.hero-onepiece-img:hover {
  filter: drop-shadow(0 38px 65px rgba(197, 168, 128, 0.35));
  transform: translateY(-6px) scale(1.02);
}

@keyframes subtleFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* ── SVG Z-TYPE / ELBOW LEADER LINES ─────────────────────────────────────── */
.hero-leader-lines-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 8;
}

.leader-line-path {
  fill: none;
  stroke: rgba(197, 168, 128, 0.65);
  stroke-width: 1.5;
  stroke-dasharray: 4 3;
  animation: lineDashFlow 20s linear infinite;
}

@keyframes lineDashFlow {
  0% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -100; }
}

.leader-dot-pulse {
  fill: var(--accent-gold);
  stroke: #FFFFFF;
  stroke-width: 1.5;
  filter: drop-shadow(0 0 6px var(--accent-gold));
  animation: dotPulse 2s infinite;
}

@keyframes dotPulse {
  0%, 100% { r: 4px; opacity: 1; }
  50% { r: 5.5px; opacity: 0.7; }
}

/* ── Z-TYPE CALLOUT BOXES ────────────────────────────────────────────────── */
.hero-z-callout {
  position: absolute;
  z-index: 10;
  background: rgba(15, 15, 20, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 12px 18px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.6);
  max-width: 220px;
  transition: all 0.35s var(--ease-luxury);
}

.hero-z-callout:hover {
  border-color: var(--accent-gold);
  background: rgba(22, 22, 30, 0.96);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7), 0 0 20px rgba(197, 168, 128, 0.25);
}

.callout-indicator-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}

.callout-pulse {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-gold);
  box-shadow: 0 0 6px var(--accent-gold);
}

.callout-tag {
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-gold);
}

.callout-title {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.25;
  margin-bottom: 2px;
}

.callout-desc {
  font-size: 0.68rem;
  color: #9A9AA6;
  line-height: 1.4;
}

/* Callout Positions */
.callout-top-right {
  top: 10px;
  right: 0px;
}

.callout-top-left {
  top: 140px;
  left: -20px;
}

.callout-bottom-right {
  bottom: 30px;
  right: -10px;
}

/* ── Responsive Adaptations ──────────────────────────────────────────────── */
@media (max-width: 991.98px) {
  .hero-product-callout-stage {
    min-height: auto;
    padding: 30px 0;
  }

  .hero-onepiece-img {
    max-width: 280px;
  }

  .hero-leader-lines-svg {
    display: none;
  }

  .hero-z-callout {
    position: static;
    max-width: 100%;
    margin: 8px 0;
  }
}


/* ==========================================================================
   SECTION 01: ARCHITECTURAL HERO (ENLARGED PRODUCT & 3S AUTO-CYCLE Z-CALLOUTS)
   ========================================================================== */
.hero-onepiece-section {
  position: relative;
  min-height: calc(100vh - 10px);
  padding-top: calc(var(--header-height) + 20px);
  padding-bottom: 60px;
  background-color: var(--bg-dark-void);
  background-image: radial-gradient(circle at 68% 45%, rgba(197, 168, 128, 0.12) 0%, rgba(14, 14, 18, 0.35) 50%, rgba(6, 6, 8, 1) 75%);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-ambient-spotlight {
  position: absolute;
  top: -100px;
  right: 12%;
  width: 750px;
  height: 700px;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.06) 0%, rgba(197, 168, 128, 0.05) 40%, transparent 70%);
  pointer-events: none;
  filter: blur(55px);
  z-index: 1;
}

.min-vh-80 {
  min-height: 80vh;
}

/* Left Column Styling */
.hero-origin-capsule {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 30px;
  background: rgba(197, 168, 128, 0.08);
  border: 1px solid rgba(197, 168, 128, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-gold);
}

.hero-onepiece-title {
  font-family: var(--font-logo);
  font-size: clamp(2.3rem, 4.2vw, 3.6rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #FFFFFF;
}

.hero-onepiece-desc {
  font-family: var(--font-sans);
  font-size: clamp(0.90rem, 1.05vw, 1rem);
  color: #9A9AA6;
  line-height: 1.7;
  max-width: 480px;
  font-weight: 400;
}

.hero-model-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 18px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.pill-code {
  color: #FFFFFF;
  font-weight: 700;
}

.pill-divider {
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.18);
}

.pill-dims {
  color: var(--accent-gold);
}

/* 4-Slide Indicator Tabs with Progress Bar */
.hero-slide-indicators {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.slide-indicator-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 8px 12px;
  color: #8C8C98;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: all 0.3s var(--ease-luxury);
}

.slide-indicator-btn .slide-num {
  font-size: 0.58rem;
  color: var(--accent-gold);
}

.slide-indicator-btn:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(197, 168, 128, 0.3);
}

.slide-indicator-btn.active {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-gold);
  color: #FFFFFF;
}

.slide-progress-bar {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.slide-indicator-btn.active .progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: var(--accent-gold);
  animation: slideTimerProgress 3s linear forwards;
}

@keyframes slideTimerProgress {
  0% { transform: scaleX(0); transform-origin: left; }
  100% { transform: scaleX(1); transform-origin: left; }
}

.hero-action-group {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Specs Row */
.hero-specs-row {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 24px);
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.spec-stat-item {
  display: flex;
  flex-direction: column;
}

.s-val {
  font-family: var(--font-logo);
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.s-lbl {
  font-family: var(--font-display);
  font-size: 0.60rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8C8C9A;
  margin-top: 2px;
}

.s-divider {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.08);
}

/* ── RIGHT COLUMN: ENLARGED PRODUCT STAGE WITH Z-LEADER LINES ─────────────── */
.hero-product-callout-stage {
  position: relative;
  width: 100%;
  max-width: 680px;
  min-height: 560px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-callout-halo {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 168, 128, 0.22) 0%, rgba(255, 255, 255, 0.02) 45%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 1;
}

.hero-pedestal-ellipse {
  position: absolute;
  bottom: 20px;
  width: 440px;
  height: 110px;
  border-radius: 50%;
  border: 1px solid rgba(197, 168, 128, 0.22);
  background: radial-gradient(ellipse at center, rgba(197, 168, 128, 0.14) 0%, transparent 70%);
  transform: rotateX(70deg);
  pointer-events: none;
  z-index: 2;
  box-shadow: 0 0 40px rgba(197, 168, 128, 0.18);
}

.hero-ceramic-center {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* Enlarged Ceramic Product */
.hero-onepiece-img {
  max-width: 450px;
  max-height: 510px;
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 35px 60px rgba(0, 0, 0, 0.95));
  animation: subtleFloat 6s ease-in-out infinite;
  transition: transform 0.4s var(--ease-luxury), filter 0.4s var(--ease-luxury), opacity 0.3s ease;
  user-select: none;
}

.hero-onepiece-img:hover {
  filter: drop-shadow(0 40px 70px rgba(197, 168, 128, 0.4));
  transform: translateY(-6px) scale(1.02);
}

@keyframes subtleFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* ── SVG Z-TYPE / ELBOW LEADER LINES ─────────────────────────────────────── */
.hero-leader-lines-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 8;
}

.leader-line-path {
  fill: none;
  stroke: rgba(197, 168, 128, 0.75);
  stroke-width: 1.5;
  stroke-dasharray: 4 3;
  animation: lineDashFlow 20s linear infinite;
  transition: d 0.4s var(--ease-luxury);
}

@keyframes lineDashFlow {
  0% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -100; }
}

.leader-dot-pulse {
  fill: var(--accent-gold);
  stroke: #FFFFFF;
  stroke-width: 1.5;
  filter: drop-shadow(0 0 8px var(--accent-gold));
  animation: dotPulse 2s infinite;
  transition: cx 0.4s var(--ease-luxury), cy 0.4s var(--ease-luxury);
}

@keyframes dotPulse {
  0%, 100% { r: 4.5px; opacity: 1; }
  50% { r: 6px; opacity: 0.7; }
}

/* ── Z-TYPE CALLOUT BOXES ────────────────────────────────────────────────── */
.hero-z-callout {
  position: absolute;
  z-index: 10;
  background: rgba(12, 12, 16, 0.90);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 12px 18px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7);
  max-width: 230px;
  transition: all 0.35s var(--ease-luxury);
}

.hero-z-callout:hover {
  border-color: var(--accent-gold);
  background: rgba(20, 20, 28, 0.96);
  transform: translateY(-3px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.8), 0 0 20px rgba(197, 168, 128, 0.3);
}

.callout-indicator-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}

.callout-pulse {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-gold);
  box-shadow: 0 0 6px var(--accent-gold);
}

.callout-tag {
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-gold);
}

.callout-title {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.25;
  margin-bottom: 2px;
}

.callout-desc {
  font-size: 0.68rem;
  color: #9A9AA6;
  line-height: 1.4;
}

/* Callout Positions */
.callout-top-right {
  top: 15px;
  right: -10px;
}

.callout-top-left {
  top: 160px;
  left: -20px;
}

.callout-bottom-right {
  bottom: 25px;
  right: -15px;
}

/* ── Responsive Adaptations ──────────────────────────────────────────────── */
@media (max-width: 991.98px) {
  .hero-product-callout-stage {
    min-height: auto;
    padding: 30px 0;
  }

  .hero-onepiece-img {
    max-width: 320px;
  }

  .hero-leader-lines-svg {
    display: none;
  }

  .hero-z-callout {
    position: static;
    max-width: 100%;
    margin: 8px 0;
  }
}


/* ==========================================================================
   SECTION 01: ARCHITECTURAL HERO (6-POINT BLUEPRINT CALLOUT SYSTEM)
   ========================================================================== */
.hero-onepiece-section {
  position: relative;
  min-height: 100vh;
  padding-top: calc(var(--header-height) + 20px);
  padding-bottom: 60px;
  background-color: var(--bg-dark-void);
  background-image: radial-gradient(circle at 60% 45%, rgba(197, 168, 128, 0.12) 0%, rgba(14, 14, 18, 0.4) 50%, rgba(6, 6, 8, 1) 75%);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-ambient-spotlight {
  position: absolute;
  top: -120px;
  right: 15%;
  width: 800px;
  height: 750px;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.07) 0%, rgba(197, 168, 128, 0.05) 40%, transparent 70%);
  pointer-events: none;
  filter: blur(60px);
  z-index: 1;
}

/* Left Info Column */
.hero-origin-capsule {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 30px;
  background: rgba(197, 168, 128, 0.08);
  border: 1px solid rgba(197, 168, 128, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-gold);
}

.hero-onepiece-title {
  font-family: var(--font-logo);
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #FFFFFF;
}

.hero-onepiece-desc {
  font-family: var(--font-sans);
  font-size: clamp(0.88rem, 1vw, 0.98rem);
  color: #9A9AA6;
  line-height: 1.7;
  max-width: 440px;
  font-weight: 400;
}

.hero-model-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 18px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.pill-code { color: #FFFFFF; font-weight: 700; }
.pill-divider { width: 1px; height: 12px; background: rgba(255, 255, 255, 0.18); }
.pill-dims { color: var(--accent-gold); }

/* 4-Slide Indicator Tabs with Progress Bar */
.hero-slide-indicators {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.slide-indicator-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 6px 10px;
  color: #8C8C98;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: all 0.3s var(--ease-luxury);
}

.slide-indicator-btn .slide-num { font-size: 0.56rem; color: var(--accent-gold); }
.slide-indicator-btn:hover { color: #FFFFFF; background: rgba(255, 255, 255, 0.06); border-color: rgba(197, 168, 128, 0.3); }
.slide-indicator-btn.active { background: rgba(255, 255, 255, 0.08); border-color: var(--accent-gold); color: #FFFFFF; }

.slide-progress-bar {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.slide-indicator-btn.active .progress-fill {
  position: absolute;
  top: 0; left: 0;
  height: 100%; width: 100%;
  background: var(--accent-gold);
  animation: slideTimerProgress 3s linear forwards;
}

@keyframes slideTimerProgress {
  0% { transform: scaleX(0); transform-origin: left; }
  100% { transform: scaleX(1); transform-origin: left; }
}

.hero-action-group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-specs-row {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.5vw, 18px);
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.spec-stat-item { display: flex; flex-direction: column; }
.s-val { font-family: var(--font-logo); font-size: 1.15rem; font-weight: 700; color: #FFFFFF; line-height: 1.1; letter-spacing: 0.02em; }
.s-lbl { font-family: var(--font-display); font-size: 0.58rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: #8C8C9A; margin-top: 2px; }
.s-divider { width: 1px; height: 22px; background: rgba(255, 255, 255, 0.08); }

/* ── RIGHT COLUMN: BLUEPRINT STAGE & 6-CALLOUT SYSTEM ─────────────────────── */
.hero-blueprint-stage {
  position: relative;
  width: 100%;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-callout-halo {
  position: absolute;
  top: 50%;
  left: 28%;
  transform: translate(-50%, -50%);
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 168, 128, 0.22) 0%, rgba(255, 255, 255, 0.02) 45%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 1;
}

.hero-pedestal-ellipse {
  position: absolute;
  bottom: 25px;
  left: 10%;
  width: 400px;
  height: 110px;
  border-radius: 50%;
  border: 1px solid rgba(197, 168, 128, 0.22);
  background: radial-gradient(ellipse at center, rgba(197, 168, 128, 0.14) 0%, transparent 70%);
  transform: rotateX(70deg);
  pointer-events: none;
  z-index: 2;
  box-shadow: 0 0 40px rgba(197, 168, 128, 0.18);
}

.hero-blueprint-ceramic-wrap {
  position: relative;
  z-index: 5;
  width: 48%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-blueprint-ceramic-img {
  max-width: 410px;
  max-height: 540px;
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 35px 60px rgba(0, 0, 0, 0.95));
  animation: subtleFloat 6s ease-in-out infinite;
  transition: transform 0.4s var(--ease-luxury), filter 0.4s var(--ease-luxury), opacity 0.3s ease;
  user-select: none;
}

.hero-blueprint-ceramic-img:hover {
  filter: drop-shadow(0 40px 70px rgba(197, 168, 128, 0.45));
  transform: translateY(-6px) scale(1.02);
}

/* SVG Leader Lines Overlay */
.blueprint-svg-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 8;
}

.bp-line {
  fill: none;
  stroke: rgba(197, 168, 128, 0.75);
  stroke-width: 1.5;
  stroke-dasharray: 4 3;
  animation: lineDashFlow 20s linear infinite;
  transition: d 0.4s var(--ease-luxury);
}

.bp-dot {
  fill: var(--accent-gold);
  stroke: #FFFFFF;
  stroke-width: 1.5;
  filter: drop-shadow(0 0 8px var(--accent-gold));
  animation: dotPulse 2s infinite;
  transition: cx 0.4s var(--ease-luxury), cy 0.4s var(--ease-luxury);
}

/* 6-Callout Stack (Right side) */
.blueprint-callouts-stack {
  position: relative;
  z-index: 10;
  width: 48%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-left: 20px;
}

.bp-callout-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 16px 8px 10px;
  border-radius: 40px;
  background: rgba(16, 16, 22, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: all 0.3s var(--ease-luxury);
  cursor: default;
}

.bp-callout-row:hover {
  background: rgba(24, 24, 34, 0.92);
  border-color: var(--accent-gold);
  transform: translateX(6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(197, 168, 128, 0.2);
}

.bp-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 2px solid var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s var(--ease-luxury);
}

.bp-icon-circle img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: brightness(0.2);
}

.bp-callout-row:hover .bp-icon-circle {
  transform: scale(1.08);
  box-shadow: 0 0 18px var(--accent-gold);
}

.bp-text-content {
  display: flex;
  flex-direction: column;
}

.bp-title {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.bp-sub {
  font-size: 0.70rem;
  color: #9A9AA6;
  line-height: 1.35;
  margin-top: 2px;
}

/* ── Responsive Adaptations ──────────────────────────────────────────────── */
@media (max-width: 1199.98px) {
  .hero-blueprint-stage {
    flex-direction: column;
    gap: 30px;
    min-height: auto;
  }
  .hero-blueprint-ceramic-wrap,
  .blueprint-callouts-stack {
    width: 100%;
  }
  .blueprint-svg-overlay {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .hero-blueprint-ceramic-img {
    max-width: 280px;
  }
  .bp-icon-circle {
    width: 40px;
    height: 40px;
  }
  .bp-title {
    font-size: 0.76rem;
  }
  .bp-sub {
    font-size: 0.65rem;
  }
}


/* ==========================================================================
   SECTION 01: ARCHITECTURAL HERO (DISTRIBUTED 4-POINT ON-SURFACE CALLOUTS)
   ========================================================================== */
.hero-onepiece-section {
  position: relative;
  min-height: 100vh;
  padding-top: calc(var(--header-height) + 20px);
  padding-bottom: 60px;
  background-color: var(--bg-dark-void);
  background-image: radial-gradient(circle at 68% 45%, rgba(197, 168, 128, 0.12) 0%, rgba(14, 14, 18, 0.35) 50%, rgba(6, 6, 8, 1) 75%);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-ambient-spotlight {
  position: absolute;
  top: -120px;
  right: 15%;
  width: 750px;
  height: 700px;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.06) 0%, rgba(197, 168, 128, 0.05) 40%, transparent 70%);
  pointer-events: none;
  filter: blur(55px);
  z-index: 1;
}

.min-vh-80 {
  min-height: 80vh;
}

/* Left Info Column */
.hero-origin-capsule {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 30px;
  background: rgba(197, 168, 128, 0.08);
  border: 1px solid rgba(197, 168, 128, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-gold);
}

.hero-onepiece-title {
  font-family: var(--font-logo);
  font-size: clamp(2.3rem, 4.2vw, 3.6rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #FFFFFF;
}

.hero-onepiece-desc {
  font-family: var(--font-sans);
  font-size: clamp(0.90rem, 1.05vw, 1rem);
  color: #9A9AA6;
  line-height: 1.7;
  max-width: 480px;
  font-weight: 400;
}

.hero-model-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 18px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.pill-code { color: #FFFFFF; font-weight: 700; }
.pill-divider { width: 1px; height: 12px; background: rgba(255, 255, 255, 0.18); }
.pill-dims { color: var(--accent-gold); }

/* 4-Slide Indicator Tabs with Progress Bar */
.hero-slide-indicators {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.slide-indicator-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 6px 10px;
  color: #8C8C98;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: all 0.3s var(--ease-luxury);
}

.slide-indicator-btn .slide-num { font-size: 0.56rem; color: var(--accent-gold); }
.slide-indicator-btn:hover { color: #FFFFFF; background: rgba(255, 255, 255, 0.06); border-color: rgba(197, 168, 128, 0.3); }
.slide-indicator-btn.active { background: rgba(255, 255, 255, 0.08); border-color: var(--accent-gold); color: #FFFFFF; }

.slide-progress-bar {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.slide-indicator-btn.active .progress-fill {
  position: absolute;
  top: 0; left: 0;
  height: 100%; width: 100%;
  background: var(--accent-gold);
  animation: slideTimerProgress 3s linear forwards;
}

@keyframes slideTimerProgress {
  0% { transform: scaleX(0); transform-origin: left; }
  100% { transform: scaleX(1); transform-origin: left; }
}

.hero-action-group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-specs-row {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.5vw, 18px);
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.spec-stat-item { display: flex; flex-direction: column; }
.s-val { font-family: var(--font-logo); font-size: 1.15rem; font-weight: 700; color: #FFFFFF; line-height: 1.1; letter-spacing: 0.02em; }
.s-lbl { font-family: var(--font-display); font-size: 0.58rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: #8C8C9A; margin-top: 2px; }
.s-divider { width: 1px; height: 22px; background: rgba(255, 255, 255, 0.08); }

/* ── RIGHT COLUMN: DISTRIBUTED 4-POINT STAGE ────────────────────────────── */
.hero-dist-stage {
  position: relative;
  width: 100%;
  max-width: 650px;
  min-height: 560px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-callout-halo {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 168, 128, 0.22) 0%, rgba(255, 255, 255, 0.02) 45%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 1;
}

.hero-pedestal-ellipse {
  position: absolute;
  bottom: 25px;
  width: 400px; height: 110px;
  border-radius: 50%;
  border: 1px solid rgba(197, 168, 128, 0.22);
  background: radial-gradient(ellipse at center, rgba(197, 168, 128, 0.14) 0%, transparent 70%);
  transform: rotateX(70deg);
  pointer-events: none;
  z-index: 2;
  box-shadow: 0 0 40px rgba(197, 168, 128, 0.18);
}

.hero-ceramic-anchor-box {
  position: relative;
  z-index: 5;
  width: 380px;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-anchored-ceramic {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 35px 60px rgba(0, 0, 0, 0.95));
  animation: subtleFloat 6s ease-in-out infinite;
  transition: transform 0.4s var(--ease-luxury), filter 0.4s var(--ease-luxury), opacity 0.3s ease;
  user-select: none;
}

.hero-anchored-ceramic:hover {
  filter: drop-shadow(0 40px 70px rgba(197, 168, 128, 0.45));
  transform: translateY(-6px) scale(1.02);
}

/* ── EXACT ON-PRODUCT SURFACE PULSE DOTS ─────────────────────────────────── */
.surface-tap-dot {
  position: absolute;
  z-index: 12;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: top 0.4s var(--ease-luxury), left 0.4s var(--ease-luxury);
}

.tap-core {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-gold);
  border: 1.5px solid #FFFFFF;
  box-shadow: 0 0 10px var(--accent-gold);
  z-index: 2;
}

.tap-ring {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--accent-gold);
  animation: tapPulseRing 2s infinite ease-out;
  opacity: 0.8;
}

@keyframes tapPulseRing {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* Initial Product Surface Anchor Coordinates */
.dot-pos-1 { top: 15%; left: 55%; }
.dot-pos-2 { top: 48%; left: 32%; }
.dot-pos-3 { top: 52%; left: 78%; }
.dot-pos-4 { top: 84%; left: 42%; }

/* SVG Dashed Leader Lines */
.dist-svg-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 8;
}

.dist-line {
  fill: none;
  stroke: rgba(197, 168, 128, 0.75);
  stroke-width: 1.5;
  stroke-dasharray: 4 3;
  animation: lineDashFlow 20s linear infinite;
  transition: d 0.4s var(--ease-luxury);
}

/* ── 4 ASYMMETRICALLY DISTRIBUTED BADGES ──────────────────────────────────── */
.dist-badge-card {
  position: absolute;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 18px 10px 10px;
  border-radius: 36px;
  background: rgba(16, 16, 22, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.7);
  max-width: 260px;
  transition: top 0.45s cubic-bezier(0.16, 1, 0.3, 1), 
              bottom 0.45s cubic-bezier(0.16, 1, 0.3, 1), 
              left 0.45s cubic-bezier(0.16, 1, 0.3, 1), 
              right 0.45s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.35s var(--ease-luxury), 
              opacity 0.25s ease;
  cursor: default;
}

.dist-badge-card:hover {
  border-color: var(--accent-gold);
  background: rgba(24, 24, 32, 0.98);
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.8), 0 0 20px rgba(197, 168, 128, 0.25);
}

.badge-icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1.5px solid var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s var(--ease-luxury);
}

.badge-icon-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: brightness(0.2);
}

.dist-badge-card:hover .badge-icon-wrap {
  transform: scale(1.08);
  box-shadow: 0 0 14px var(--accent-gold);
}

.badge-info {
  display: flex;
  flex-direction: column;
}

.b-title {
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
}

.b-desc {
  font-size: 0.65rem;
  color: #9A9AA6;
  line-height: 1.3;
  margin-top: 2px;
}

/* 4 Asymmetric Distributed Positions */
.badge-pos-top-right {
  top: 15px;
  right: -10px;
}

.badge-pos-top-left {
  top: 150px;
  left: -25px;
}

.badge-pos-mid-right {
  top: 245px;
  right: -25px;
}

.badge-pos-bottom-left {
  bottom: 40px;
  left: -20px;
}

/* ── Responsive Adaptations ──────────────────────────────────────────────── */
@media (max-width: 991.98px) {
  .hero-dist-stage {
    min-height: auto;
    padding: 30px 0;
  }
  .hero-ceramic-anchor-box {
    width: 280px;
    height: 360px;
  }
  .dist-svg-overlay {
    display: none;
  }
  .surface-tap-dot {
    display: none;
  }
  .dist-badge-card {
    position: static;
    max-width: 100%;
    margin: 8px 0;
  }
}


/* ==========================================================================
   SECTION 01: ARCHITECTURAL HERO (SOLID GROUNDING & DYNAMIC REAL-TIME SVG)
   ========================================================================== */
.hero-onepiece-section {
  position: relative;
  min-height: 100vh;
  padding-top: calc(var(--header-height) + 20px);
  padding-bottom: 60px;
  background-color: var(--bg-dark-void);
  background-image: radial-gradient(circle at 68% 45%, rgba(197, 168, 128, 0.12) 0%, rgba(14, 14, 18, 0.35) 50%, rgba(6, 6, 8, 1) 75%);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-ambient-spotlight {
  position: absolute;
  top: -120px;
  right: 15%;
  width: 750px;
  height: 700px;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.06) 0%, rgba(197, 168, 128, 0.05) 40%, transparent 70%);
  pointer-events: none;
  filter: blur(55px);
  z-index: 1;
}

.min-vh-80 {
  min-height: 80vh;
}

/* Left Info Column */
.hero-origin-capsule {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 30px;
  background: rgba(197, 168, 128, 0.08);
  border: 1px solid rgba(197, 168, 128, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-gold);
}

.hero-onepiece-title {
  font-family: var(--font-logo);
  font-size: clamp(2.3rem, 4.2vw, 3.6rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #FFFFFF;
}

.hero-onepiece-desc {
  font-family: var(--font-sans);
  font-size: clamp(0.90rem, 1.05vw, 1rem);
  color: #9A9AA6;
  line-height: 1.7;
  max-width: 480px;
  font-weight: 400;
}

.hero-model-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 18px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.pill-code { color: #FFFFFF; font-weight: 700; }
.pill-divider { width: 1px; height: 12px; background: rgba(255, 255, 255, 0.18); }
.pill-dims { color: var(--accent-gold); }

/* 4-Slide Indicator Tabs with Progress Bar */
.hero-slide-indicators {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.slide-indicator-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 6px 10px;
  color: #8C8C98;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: all 0.3s var(--ease-luxury);
}

.slide-indicator-btn .slide-num { font-size: 0.56rem; color: var(--accent-gold); }
.slide-indicator-btn:hover { color: #FFFFFF; background: rgba(255, 255, 255, 0.06); border-color: rgba(197, 168, 128, 0.3); }
.slide-indicator-btn.active { background: rgba(255, 255, 255, 0.08); border-color: var(--accent-gold); color: #FFFFFF; }

.slide-progress-bar {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.slide-indicator-btn.active .progress-fill {
  position: absolute;
  top: 0; left: 0;
  height: 100%; width: 100%;
  background: var(--accent-gold);
  animation: slideTimerProgress 3s linear forwards;
}

@keyframes slideTimerProgress {
  0% { transform: scaleX(0); transform-origin: left; }
  100% { transform: scaleX(1); transform-origin: left; }
}

.hero-action-group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-specs-row {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.5vw, 18px);
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.spec-stat-item { display: flex; flex-direction: column; }
.s-val { font-family: var(--font-logo); font-size: 1.15rem; font-weight: 700; color: #FFFFFF; line-height: 1.1; letter-spacing: 0.02em; }
.s-lbl { font-family: var(--font-display); font-size: 0.58rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: #8C8C9A; margin-top: 2px; }
.s-divider { width: 1px; height: 22px; background: rgba(255, 255, 255, 0.08); }

/* ── RIGHT COLUMN: STAGE & SOLID GROUNDED CERAMIC ────────────────────────── */
.hero-dist-stage {
  position: relative;
  width: 100%;
  max-width: 680px;
  min-height: 560px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-callout-halo {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 168, 128, 0.22) 0%, rgba(255, 255, 255, 0.02) 45%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 1;
}

.hero-pedestal-ellipse {
  position: absolute;
  bottom: 25px;
  width: 420px; height: 110px;
  border-radius: 50%;
  border: 1px solid rgba(197, 168, 128, 0.22);
  background: radial-gradient(ellipse at center, rgba(197, 168, 128, 0.14) 0%, transparent 70%);
  transform: rotateX(70deg);
  pointer-events: none;
  z-index: 2;
  box-shadow: 0 0 40px rgba(197, 168, 128, 0.18);
}

.hero-ceramic-anchor-box {
  position: relative;
  z-index: 5;
  width: 380px;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-anchored-ceramic {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 35px 60px rgba(0, 0, 0, 0.95));
  transition: opacity 0.25s ease, transform 0.25s ease;
  user-select: none;
}

.hero-anchored-ceramic:hover {
  filter: drop-shadow(0 40px 70px rgba(197, 168, 128, 0.45));
}

/* ── EXACT ON-PRODUCT SURFACE PULSE DOTS ─────────────────────────────────── */
.surface-tap-dot {
  position: absolute;
  z-index: 12;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: top 0.35s var(--ease-luxury), left 0.35s var(--ease-luxury);
}

.tap-core {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-gold);
  border: 2px solid #FFFFFF;
  box-shadow: 0 0 12px var(--accent-gold);
  z-index: 2;
}

.tap-ring {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid var(--accent-gold);
  animation: tapPulseRing 2s infinite ease-out;
  opacity: 0.85;
}

@keyframes tapPulseRing {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(1.9); opacity: 0; }
}

/* Dynamic Real-Time SVG Overlay */
.dist-svg-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 8;
  overflow: visible;
}

.dist-line {
  fill: none;
  stroke: rgba(197, 168, 128, 0.85);
  stroke-width: 1.6;
  stroke-dasharray: 5 3;
  animation: lineDashFlow 20s linear infinite;
  transition: d 0.35s var(--ease-luxury);
}

@keyframes lineDashFlow {
  0% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -100; }
}

/* ── 4 ASYMMETRICALLY DISTRIBUTED BADGES ──────────────────────────────────── */
.dist-badge-card {
  position: absolute;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 14px 8px 8px;
  border-radius: 30px;
  background: rgba(16, 16, 22, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.6);
  max-width: 230px;
  transition: all 0.35s var(--ease-luxury);
  cursor: default;
}

.dist-badge-card:hover {
  border-color: var(--accent-gold);
  background: rgba(24, 24, 32, 0.98);
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.8), 0 0 20px rgba(197, 168, 128, 0.25);
}

.badge-icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1.5px solid var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s var(--ease-luxury);
}

.badge-icon-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: brightness(0.2);
}

.dist-badge-card:hover .badge-icon-wrap {
  transform: scale(1.08);
  box-shadow: 0 0 14px var(--accent-gold);
}

.badge-info {
  display: flex;
  flex-direction: column;
}

.b-title {
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
}

.b-desc {
  font-size: 0.65rem;
  color: #9A9AA6;
  line-height: 1.3;
  margin-top: 2px;
}

/* 4 Asymmetric Distributed Positions */
.badge-pos-top-right {
  top: 15px;
  right: -10px;
}

.badge-pos-top-left {
  top: 140px;
  left: -25px;
}

.badge-pos-mid-right {
  top: 240px;
  right: -25px;
}

.badge-pos-bottom-left {
  bottom: 40px;
  left: -20px;
}

/* ── Responsive Adaptations ──────────────────────────────────────────────── */
@media (max-width: 991.98px) {
  .hero-dist-stage {
    min-height: auto;
    padding: 30px 0;
  }
  .hero-ceramic-anchor-box {
    width: 280px;
    height: 360px;
  }
  .dist-svg-overlay {
    display: none;
  }
  .surface-tap-dot {
    display: none;
  }
  .dist-badge-card {
    position: static;
    max-width: 100%;
    margin: 8px 0;
  }
}


/* ==========================================================================
   SECTION 01: ARCHITECTURAL HERO (100% PHYSICAL ON-SURFACE CALLOUT SYSTEM)
   ========================================================================== */
.hero-onepiece-section {
  position: relative;
  min-height: 100vh;
  padding-top: calc(var(--header-height) + 20px);
  padding-bottom: 60px;
  background-color: var(--bg-dark-void);
  background-image: radial-gradient(circle at 68% 45%, rgba(197, 168, 128, 0.12) 0%, rgba(14, 14, 18, 0.35) 50%, rgba(6, 6, 8, 1) 75%);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-ambient-spotlight {
  position: absolute;
  top: -120px;
  right: 15%;
  width: 750px;
  height: 700px;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.06) 0%, rgba(197, 168, 128, 0.05) 40%, transparent 70%);
  pointer-events: none;
  filter: blur(55px);
  z-index: 1;
}

.min-vh-80 { min-height: 80vh; }

/* Left Info Column */
.hero-origin-capsule {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 30px;
  background: rgba(197, 168, 128, 0.08);
  border: 1px solid rgba(197, 168, 128, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-gold);
}

.hero-onepiece-title {
  font-family: var(--font-logo);
  font-size: clamp(2.3rem, 4.2vw, 3.6rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #FFFFFF;
}

.hero-onepiece-desc {
  font-family: var(--font-sans);
  font-size: clamp(0.90rem, 1.05vw, 1rem);
  color: #9A9AA6;
  line-height: 1.7;
  max-width: 480px;
  font-weight: 400;
}

.hero-model-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 18px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.pill-code { color: #FFFFFF; font-weight: 700; }
.pill-divider { width: 1px; height: 12px; background: rgba(255, 255, 255, 0.18); }
.pill-dims { color: var(--accent-gold); }

/* 4-Slide Indicator Tabs with Progress Bar */
.hero-slide-indicators {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.slide-indicator-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 6px 10px;
  color: #8C8C98;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: all 0.3s var(--ease-luxury);
}

.slide-indicator-btn .slide-num { font-size: 0.56rem; color: var(--accent-gold); }
.slide-indicator-btn:hover { color: #FFFFFF; background: rgba(255, 255, 255, 0.06); border-color: rgba(197, 168, 128, 0.3); }
.slide-indicator-btn.active { background: rgba(255, 255, 255, 0.08); border-color: var(--accent-gold); color: #FFFFFF; }

.slide-progress-bar {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.slide-indicator-btn.active .progress-fill {
  position: absolute;
  top: 0; left: 0;
  height: 100%; width: 100%;
  background: var(--accent-gold);
  animation: slideTimerProgress 3s linear forwards;
}

@keyframes slideTimerProgress {
  0% { transform: scaleX(0); transform-origin: left; }
  100% { transform: scaleX(1); transform-origin: left; }
}

.hero-action-group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-specs-row {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.5vw, 18px);
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.spec-stat-item { display: flex; flex-direction: column; }
.s-val { font-family: var(--font-logo); font-size: 1.15rem; font-weight: 700; color: #FFFFFF; line-height: 1.1; letter-spacing: 0.02em; }
.s-lbl { font-family: var(--font-display); font-size: 0.58rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: #8C8C9A; margin-top: 2px; }
.s-divider { width: 1px; height: 22px; background: rgba(255, 255, 255, 0.08); }

/* ── RIGHT COLUMN: STAGE & TIGHT ZERO-PADDING WRAPPER ─────────────────────── */
.hero-dist-stage {
  position: relative;
  width: 100%;
  max-width: 680px;
  min-height: 560px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-callout-halo {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 168, 128, 0.22) 0%, rgba(255, 255, 255, 0.02) 45%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 1;
}

.hero-pedestal-ellipse {
  position: absolute;
  bottom: 25px;
  width: 420px; height: 110px;
  border-radius: 50%;
  border: 1px solid rgba(197, 168, 128, 0.22);
  background: radial-gradient(ellipse at center, rgba(197, 168, 128, 0.14) 0%, transparent 70%);
  transform: rotateX(70deg);
  pointer-events: none;
  z-index: 2;
  box-shadow: 0 0 40px rgba(197, 168, 128, 0.18);
}

/* Tight 1:1 Image Wrapper (Zero Padding Letterboxing) */
.hero-tight-ceramic-wrapper {
  position: relative;
  z-index: 5;
  display: inline-block;
  margin: 0 auto;
  line-height: 0;
}

.hero-tight-ceramic-img {
  display: block;
  max-height: 440px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 35px 60px rgba(0, 0, 0, 0.95));
  transition: opacity 0.25s ease, transform 0.25s ease;
  user-select: none;
}

.hero-tight-ceramic-img:hover {
  filter: drop-shadow(0 40px 70px rgba(197, 168, 128, 0.45));
}

/* ── EXACT ON-PRODUCT SURFACE PULSE DOTS ─────────────────────────────────── */
.surface-tap-dot {
  position: absolute;
  z-index: 12;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: top 0.35s var(--ease-luxury), left 0.35s var(--ease-luxury);
}

.tap-core {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent-gold);
  border: 2px solid #FFFFFF;
  box-shadow: 0 0 14px var(--accent-gold);
  z-index: 2;
}

.tap-ring {
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--accent-gold);
  animation: tapPulseRing 2s infinite ease-out;
  opacity: 0.9;
}

@keyframes tapPulseRing {
  0% { transform: scale(0.5); opacity: 1; }
  100% { transform: scale(1.9); opacity: 0; }
}

/* Dynamic Real-Time SVG Overlay */
.dist-svg-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 8;
  overflow: visible;
}

.dist-line {
  fill: none;
  stroke: rgba(197, 168, 128, 0.85);
  stroke-width: 1.6;
  stroke-dasharray: 5 3;
  animation: lineDashFlow 20s linear infinite;
  transition: d 0.35s var(--ease-luxury);
}

@keyframes lineDashFlow {
  0% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -100; }
}

/* ── 4 ASYMMETRICALLY DISTRIBUTED BADGES ──────────────────────────────────── */
.dist-badge-card {
  position: absolute;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 14px 8px 8px;
  border-radius: 30px;
  background: rgba(16, 16, 22, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.6);
  max-width: 230px;
  transition: all 0.35s var(--ease-luxury);
  cursor: default;
}

.dist-badge-card:hover {
  border-color: var(--accent-gold);
  background: rgba(24, 24, 32, 0.98);
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.8), 0 0 20px rgba(197, 168, 128, 0.25);
}

.badge-icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1.5px solid var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s var(--ease-luxury);
}

.badge-icon-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: brightness(0.2);
}

.dist-badge-card:hover .badge-icon-wrap {
  transform: scale(1.08);
  box-shadow: 0 0 14px var(--accent-gold);
}

.badge-info {
  display: flex;
  flex-direction: column;
}

.b-title {
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
}

.b-desc {
  font-size: 0.65rem;
  color: #9A9AA6;
  line-height: 1.3;
  margin-top: 2px;
}

/* 4 Asymmetric Distributed Positions */
.badge-pos-top-right {
  top: 15px;
  right: -10px;
}

.badge-pos-top-left {
  top: 140px;
  left: -25px;
}

.badge-pos-mid-right {
  top: 240px;
  right: -25px;
}

.badge-pos-bottom-left {
  bottom: 40px;
  left: -20px;
}

/* ── Responsive Adaptations ──────────────────────────────────────────────── */
@media (max-width: 991.98px) {
  .hero-dist-stage {
    min-height: auto;
    padding: 30px 0;
  }
  .hero-tight-ceramic-img {
    max-height: 320px;
  }
  .dist-svg-overlay {
    display: none;
  }
  .surface-tap-dot {
    display: none;
  }
  .dist-badge-card {
    position: static;
    max-width: 100%;
    margin: 8px 0;
  }
}


/* ==========================================================================
   SECTION 01: ARCHITECTURAL HERO (STRUCTURED 3/4 POINT BLUEPRINT SYSTEM)
   ========================================================================== */
.hero-onepiece-section {
  position: relative;
  min-height: 100vh;
  padding-top: calc(var(--header-height) + 20px);
  padding-bottom: 60px;
  background-color: var(--bg-dark-void);
  background-image: radial-gradient(circle at 68% 45%, rgba(197, 168, 128, 0.12) 0%, rgba(14, 14, 18, 0.35) 50%, rgba(6, 6, 8, 1) 75%);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-ambient-spotlight {
  position: absolute;
  top: -120px;
  right: 15%;
  width: 750px;
  height: 700px;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.06) 0%, rgba(197, 168, 128, 0.05) 40%, transparent 70%);
  pointer-events: none;
  filter: blur(55px);
  z-index: 1;
}

.min-vh-80 { min-height: 80vh; }

/* Left Info Column */
.hero-origin-capsule {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 30px;
  background: rgba(197, 168, 128, 0.08);
  border: 1px solid rgba(197, 168, 128, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-gold);
}

.hero-onepiece-title {
  font-family: var(--font-logo);
  font-size: clamp(2.3rem, 4.2vw, 3.6rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #FFFFFF;
}

.hero-onepiece-desc {
  font-family: var(--font-sans);
  font-size: clamp(0.90rem, 1.05vw, 1rem);
  color: #9A9AA6;
  line-height: 1.7;
  max-width: 480px;
  font-weight: 400;
}

.hero-model-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 18px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.pill-code { color: #FFFFFF; font-weight: 700; }
.pill-divider { width: 1px; height: 12px; background: rgba(255, 255, 255, 0.18); }
.pill-dims { color: var(--accent-gold); }

/* 4-Slide Indicator Tabs with Progress Bar */
.hero-slide-indicators {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.slide-indicator-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 6px 10px;
  color: #8C8C98;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: all 0.3s var(--ease-luxury);
}

.slide-indicator-btn .slide-num { font-size: 0.56rem; color: var(--accent-gold); }
.slide-indicator-btn:hover { color: #FFFFFF; background: rgba(255, 255, 255, 0.06); border-color: rgba(197, 168, 128, 0.3); }
.slide-indicator-btn.active { background: rgba(255, 255, 255, 0.08); border-color: var(--accent-gold); color: #FFFFFF; }

.slide-progress-bar {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.slide-indicator-btn.active .progress-fill {
  position: absolute;
  top: 0; left: 0;
  height: 100%; width: 100%;
  background: var(--accent-gold);
  animation: slideTimerProgress 3s linear forwards;
}

@keyframes slideTimerProgress {
  0% { transform: scaleX(0); transform-origin: left; }
  100% { transform: scaleX(1); transform-origin: left; }
}

.hero-action-group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-specs-row {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.5vw, 18px);
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.spec-stat-item { display: flex; flex-direction: column; }
.s-val { font-family: var(--font-logo); font-size: 1.15rem; font-weight: 700; color: #FFFFFF; line-height: 1.1; letter-spacing: 0.02em; }
.s-lbl { font-family: var(--font-display); font-size: 0.58rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: #8C8C9A; margin-top: 2px; }
.s-divider { width: 1px; height: 22px; background: rgba(255, 255, 255, 0.08); }

/* ── RIGHT COLUMN: STAGE & TIGHT ZERO-PADDING WRAPPER ─────────────────────── */
.hero-dist-stage {
  position: relative;
  width: 100%;
  max-width: 680px;
  min-height: 560px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-callout-halo {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 168, 128, 0.22) 0%, rgba(255, 255, 255, 0.02) 45%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 1;
}

.hero-pedestal-ellipse {
  position: absolute;
  bottom: 25px;
  width: 420px; height: 110px;
  border-radius: 50%;
  border: 1px solid rgba(197, 168, 128, 0.22);
  background: radial-gradient(ellipse at center, rgba(197, 168, 128, 0.14) 0%, transparent 70%);
  transform: rotateX(70deg);
  pointer-events: none;
  z-index: 2;
  box-shadow: 0 0 40px rgba(197, 168, 128, 0.18);
}

.hero-tight-ceramic-wrapper {
  position: relative;
  z-index: 5;
  display: inline-block;
  margin: 0 auto;
  line-height: 0;
}

.hero-tight-ceramic-img {
  display: block;
  max-height: 440px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 35px 60px rgba(0, 0, 0, 0.95));
  transition: opacity 0.25s ease, transform 0.25s ease;
  user-select: none;
}

.hero-tight-ceramic-img:hover {
  filter: drop-shadow(0 40px 70px rgba(197, 168, 128, 0.45));
}

/* ── EXACT ON-PRODUCT SURFACE PULSE DOTS ─────────────────────────────────── */
.surface-tap-dot {
  position: absolute;
  z-index: 12;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: top 0.35s var(--ease-luxury), left 0.35s var(--ease-luxury), opacity 0.25s ease;
}

.tap-core {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent-gold);
  border: 2px solid #FFFFFF;
  box-shadow: 0 0 14px var(--accent-gold);
  z-index: 2;
}

.tap-ring {
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--accent-gold);
  animation: tapPulseRing 2s infinite ease-out;
  opacity: 0.9;
}

@keyframes tapPulseRing {
  0% { transform: scale(0.5); opacity: 1; }
  100% { transform: scale(1.9); opacity: 0; }
}

/* Dynamic Real-Time SVG Overlay */
.dist-svg-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 8;
  overflow: visible;
}

.dist-line {
  fill: none;
  stroke: rgba(197, 168, 128, 0.85);
  stroke-width: 1.6;
  stroke-dasharray: 5 3;
  animation: lineDashFlow 20s linear infinite;
  transition: d 0.35s var(--ease-luxury), opacity 0.25s ease;
}

@keyframes lineDashFlow {
  0% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -100; }
}

/* ── ASYMMETRICALLY DISTRIBUTED STRUCTURED BADGES ────────────────────────── */
.dist-badge-card {
  position: absolute;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 14px 8px 8px;
  border-radius: 30px;
  background: rgba(16, 16, 22, 0.90);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.6);
  max-width: 240px;
  transition: all 0.35s var(--ease-luxury), opacity 0.25s ease;
  cursor: default;
}

.dist-badge-card:hover {
  border-color: var(--accent-gold);
  background: rgba(24, 24, 32, 0.98);
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.8), 0 0 20px rgba(197, 168, 128, 0.25);
}

.badge-icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1.5px solid var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s var(--ease-luxury);
}

.badge-icon-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: brightness(0.2);
}

.dist-badge-card:hover .badge-icon-wrap {
  transform: scale(1.08);
  box-shadow: 0 0 14px var(--accent-gold);
}

.badge-info {
  display: flex;
  flex-direction: column;
}

.badge-type-label {
  font-family: var(--font-display);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 2px;
}

.b-title {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
}

.b-desc {
  font-size: 0.65rem;
  color: #9A9AA6;
  line-height: 1.3;
  margin-top: 1px;
}

/* 4 Asymmetric Distributed Positions */
.badge-pos-top-right {
  top: 15px;
  right: -10px;
}

.badge-pos-top-left {
  top: 140px;
  left: -25px;
}

.badge-pos-mid-right {
  top: 240px;
  right: -25px;
}

.badge-pos-bottom-left {
  bottom: 40px;
  left: -20px;
}

/* ── Responsive Adaptations ──────────────────────────────────────────────── */
@media (max-width: 991.98px) {
  .hero-dist-stage {
    min-height: auto;
    padding: 30px 0;
  }
  .hero-tight-ceramic-img {
    max-height: 320px;
  }
  .dist-svg-overlay {
    display: none;
  }
  .surface-tap-dot {
    display: none;
  }
  .dist-badge-card {
    position: static;
    max-width: 100%;
    margin: 8px 0;
  }
}


/* ==========================================================================
   SECTION 01: ARCHITECTURAL HERO (ULTRA-MINIMALIST DUAL 2-LABEL SYSTEM)
   ========================================================================== */
.hero-onepiece-section {
  position: relative;
  min-height: 100vh;
  padding-top: calc(var(--header-height) + 20px);
  padding-bottom: 60px;
  background-color: var(--bg-dark-void);
  background-image: radial-gradient(circle at 68% 45%, rgba(197, 168, 128, 0.12) 0%, rgba(14, 14, 18, 0.35) 50%, rgba(6, 6, 8, 1) 75%);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-ambient-spotlight {
  position: absolute;
  top: -120px;
  right: 15%;
  width: 750px;
  height: 700px;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.06) 0%, rgba(197, 168, 128, 0.05) 40%, transparent 70%);
  pointer-events: none;
  filter: blur(55px);
  z-index: 1;
}

.min-vh-80 { min-height: 80vh; }

/* Left Info Column */
.hero-origin-capsule {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 30px;
  background: rgba(197, 168, 128, 0.08);
  border: 1px solid rgba(197, 168, 128, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-gold);
}

.hero-onepiece-title {
  font-family: var(--font-logo);
  font-size: clamp(2.3rem, 4.2vw, 3.6rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #FFFFFF;
}

.hero-onepiece-desc {
  font-family: var(--font-sans);
  font-size: clamp(0.90rem, 1.05vw, 1rem);
  color: #9A9AA6;
  line-height: 1.7;
  max-width: 480px;
  font-weight: 400;
}

.hero-model-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 18px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.pill-code { color: #FFFFFF; font-weight: 700; }
.pill-divider { width: 1px; height: 12px; background: rgba(255, 255, 255, 0.18); }
.pill-dims { color: var(--accent-gold); }

/* 4-Slide Indicator Tabs with Progress Bar */
.hero-slide-indicators {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.slide-indicator-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 6px 10px;
  color: #8C8C98;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: all 0.3s var(--ease-luxury);
}

.slide-indicator-btn .slide-num { font-size: 0.56rem; color: var(--accent-gold); }
.slide-indicator-btn:hover { color: #FFFFFF; background: rgba(255, 255, 255, 0.06); border-color: rgba(197, 168, 128, 0.3); }
.slide-indicator-btn.active { background: rgba(255, 255, 255, 0.08); border-color: var(--accent-gold); color: #FFFFFF; }

.slide-progress-bar {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.slide-indicator-btn.active .progress-fill {
  position: absolute;
  top: 0; left: 0;
  height: 100%; width: 100%;
  background: var(--accent-gold);
  animation: slideTimerProgress 3s linear forwards;
}

@keyframes slideTimerProgress {
  0% { transform: scaleX(0); transform-origin: left; }
  100% { transform: scaleX(1); transform-origin: left; }
}

.hero-action-group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-specs-row {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.5vw, 18px);
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.spec-stat-item { display: flex; flex-direction: column; }
.s-val { font-family: var(--font-logo); font-size: 1.15rem; font-weight: 700; color: #FFFFFF; line-height: 1.1; letter-spacing: 0.02em; }
.s-lbl { font-family: var(--font-display); font-size: 0.58rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: #8C8C9A; margin-top: 2px; }
.s-divider { width: 1px; height: 22px; background: rgba(255, 255, 255, 0.08); }

/* ── RIGHT COLUMN: STAGE & TIGHT ZERO-PADDING WRAPPER ─────────────────────── */
.hero-dist-stage {
  position: relative;
  width: 100%;
  max-width: 680px;
  min-height: 560px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-callout-halo {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 168, 128, 0.22) 0%, rgba(255, 255, 255, 0.02) 45%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 1;
}

.hero-pedestal-ellipse {
  position: absolute;
  bottom: 25px;
  width: 420px; height: 110px;
  border-radius: 50%;
  border: 1px solid rgba(197, 168, 128, 0.22);
  background: radial-gradient(ellipse at center, rgba(197, 168, 128, 0.14) 0%, transparent 70%);
  transform: rotateX(70deg);
  pointer-events: none;
  z-index: 2;
  box-shadow: 0 0 40px rgba(197, 168, 128, 0.18);
}

.hero-tight-ceramic-wrapper {
  position: relative;
  z-index: 5;
  display: inline-block;
  margin: 0 auto;
  line-height: 0;
}

.hero-tight-ceramic-img {
  display: block;
  max-height: 440px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 35px 60px rgba(0, 0, 0, 0.95));
  transition: opacity 0.25s ease, transform 0.25s ease;
  user-select: none;
}

.hero-tight-ceramic-img:hover {
  filter: drop-shadow(0 40px 70px rgba(197, 168, 128, 0.45));
}

/* ── EXACT ON-PRODUCT SURFACE PULSE DOTS ─────────────────────────────────── */
.surface-tap-dot {
  position: absolute;
  z-index: 12;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: top 0.35s var(--ease-luxury), left 0.35s var(--ease-luxury);
}

.tap-core {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-gold);
  border: 2px solid #FFFFFF;
  box-shadow: 0 0 16px var(--accent-gold);
  z-index: 2;
}

.tap-ring {
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--accent-gold);
  animation: tapPulseRing 2s infinite ease-out;
  opacity: 0.9;
}

@keyframes tapPulseRing {
  0% { transform: scale(0.5); opacity: 1; }
  100% { transform: scale(2.0); opacity: 0; }
}

/* Dynamic Real-Time SVG Overlay */
.dist-svg-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 8;
  overflow: visible;
}

.dist-line {
  fill: none;
  stroke: rgba(197, 168, 128, 0.9);
  stroke-width: 1.8;
  stroke-dasharray: 6 3;
  animation: lineDashFlow 20s linear infinite;
  transition: d 0.35s var(--ease-luxury);
}

@keyframes lineDashFlow {
  0% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -100; }
}

.hero-action-group {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  flex-wrap: nowrap;
}

.hero-action-group .btn-mars {
  white-space: nowrap;
}

/* ── 2 ASYMMETRIC FLOATING BADGES (SLEEK LOW-HEIGHT PROFILE) ─────────────── */
.dist-badge-card {
  position: absolute;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 14px 5px 7px;
  border-radius: 28px;
  background: rgba(14, 14, 20, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  max-width: 235px;
  height: auto;
  transition: top 0.45s cubic-bezier(0.16, 1, 0.3, 1), 
              bottom 0.45s cubic-bezier(0.16, 1, 0.3, 1), 
              left 0.45s cubic-bezier(0.16, 1, 0.3, 1), 
              right 0.45s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.35s var(--ease-luxury), 
              opacity 0.25s ease;
  cursor: default;
}

.dist-badge-card:hover {
  border-color: var(--accent-gold);
  background: rgba(22, 22, 30, 0.98);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.75), 0 0 18px rgba(197, 168, 128, 0.25);
}

.badge-icon-wrap {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1.5px solid var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s var(--ease-luxury);
}

.badge-icon-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: brightness(0.2);
}

.dist-badge-card:hover .badge-icon-wrap {
  transform: scale(1.06);
  box-shadow: 0 0 10px var(--accent-gold);
}

.badge-info {
  display: flex;
  flex-direction: column;
}

.badge-type-label {
  font-family: var(--font-display);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-gold);
  line-height: 1;
  margin-bottom: 2px;
}

.b-title {
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.15;
}

.b-desc {
  font-size: 0.60rem;
  color: #9A9AA6;
  line-height: 1.2;
  margin-top: 1px;
}

/* 2 Diagonal Asymmetric Positions */
.badge-pos-top-right {
  top: 25px;
  right: -15px;
}

.badge-pos-bottom-left {
  bottom: 60px;
  left: -20px;
}

/* ── Responsive Adaptations ──────────────────────────────────────────────── */
@media (max-width: 991.98px) {
  .hero-dist-stage {
    min-height: auto;
    padding: 30px 0;
  }
  .hero-tight-ceramic-img {
    max-height: 320px;
  }
  .dist-svg-overlay {
    display: none;
  }
  .surface-tap-dot {
    display: none;
  }
  .dist-badge-card {
    position: static;
    max-width: 100%;
    margin: 10px 0;
  }
}


/* ==========================================================================
   SECTION 01: 3D HYDRAULIC ANATOMY HERO (SMOOTH ANIMATION & INTERACTIVE STAGE)
   ========================================================================== */
.hero-anatomy-section {
  position: relative;
  min-height: 100vh;
  padding-top: calc(var(--header-height) + 20px);
  padding-bottom: 60px;
  background-color: var(--bg-dark-void);
  background-image: radial-gradient(circle at 72% 48%, rgba(0, 168, 255, 0.08) 0%, rgba(197, 168, 128, 0.09) 30%, rgba(14, 14, 18, 0.4) 60%, rgba(6, 6, 8, 1) 85%);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-anatomy-glow {
  position: absolute;
  top: 15%;
  right: 18%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 150, 255, 0.12) 0%, rgba(197, 168, 128, 0.08) 40%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 1;
  animation: anatomyGlowPulse 8s ease-in-out infinite alternate;
}

@keyframes anatomyGlowPulse {
  0% { transform: scale(0.9) translate(0, 0); opacity: 0.7; }
  100% { transform: scale(1.15) translate(-20px, 15px); opacity: 1; }
}

/* Left Column Chips */
.anatomy-feature-chips {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.anatomy-chip {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 6px 14px;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #B5B5C2;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s var(--ease-luxury);
}

.anatomy-chip i {
  color: var(--accent-gold);
  font-size: 0.8rem;
}

.anatomy-chip:hover {
  background: rgba(197, 168, 128, 0.12);
  border-color: rgba(197, 168, 128, 0.4);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.anatomy-chip.active {
  background: rgba(197, 168, 128, 0.18);
  border-color: var(--accent-gold);
  color: #FFFFFF;
  box-shadow: 0 0 16px rgba(197, 168, 128, 0.25);
}

/* Action Group Single Row */
.hero-action-group {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  flex-wrap: nowrap;
}

.hero-action-group .btn-mars {
  white-space: nowrap;
}

/* ── RIGHT COLUMN: 3D ANATOMY STAGE ───────────────────────────────────────── */
.hero-anatomy-stage {
  position: relative;
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  perspective: 1200px;
  transform-style: preserve-3d;
}

.anatomy-frame-card {
  position: relative;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: visible;
  transform-style: preserve-3d;
  transition: transform 0.25s ease-out;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.anatomy-cutaway-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  user-select: none;
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.9)) drop-shadow(0 0 35px rgba(0, 160, 255, 0.18));
  transition: filter 0.4s ease, transform 0.4s ease;
}

.anatomy-frame-card:hover .anatomy-cutaway-img {
  filter: drop-shadow(0 35px 70px rgba(0, 0, 0, 0.95)) drop-shadow(0 0 45px rgba(197, 168, 128, 0.35));
}

/* ── 7 INTERACTIVE PULSING HOTSPOTS ───────────────────────────────────────── */
.anatomy-hotspot {
  position: absolute;
  z-index: 15;
  width: 24px;
  height: 24px;
  transform: translate(-50%, -50%);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hotspot-core-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #b68663;
  border: 2px solid #FFFFFF;
  box-shadow: 0 0 12px #b68663, 0 0 20px rgba(182, 134, 99, 0.8);
  transition: all 0.3s var(--ease-luxury);
  z-index: 2;
}

.hotspot-pulse-ring {
  position: absolute;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid #b68663;
  animation: hotspotPulse 2.2s infinite ease-out;
  opacity: 0.85;
}

@keyframes hotspotPulse {
  0% { transform: scale(0.6); opacity: 1; }
  60% { transform: scale(1.9); opacity: 0.3; }
  100% { transform: scale(2.6); opacity: 0; }
}

.anatomy-hotspot:hover .hotspot-core-dot,
.anatomy-hotspot.highlighted .hotspot-core-dot {
  background: var(--accent-gold);
  border-color: #FFFFFF;
  transform: scale(1.35);
  box-shadow: 0 0 16px var(--accent-gold), 0 0 30px rgba(197, 168, 128, 0.9);
}

.anatomy-hotspot:hover .hotspot-pulse-ring,
.anatomy-hotspot.highlighted .hotspot-pulse-ring {
  border-color: var(--accent-gold);
}

/* ── EXPANDING HOVER TOOLTIPS ────────────────────────────────────────────── */
.hotspot-tooltip {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px) scale(0.95);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  width: 220px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(12, 12, 18, 0.96);
  border: 1px solid rgba(197, 168, 128, 0.4);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.8), 0 0 20px rgba(197, 168, 128, 0.2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  gap: 3px;
  z-index: 25;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.hotspot-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: rgba(197, 168, 128, 0.4) transparent transparent transparent;
}

.anatomy-hotspot:hover .hotspot-tooltip,
.anatomy-hotspot.highlighted .hotspot-tooltip {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateX(-50%) translateY(0) scale(1);
}

.tt-tag {
  font-family: var(--font-display);
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-gold);
}

.tt-title {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
}

.tt-desc {
  font-size: 0.62rem;
  color: #9A9AA6;
  line-height: 1.3;
}

/* Bottom HUD */
.anatomy-bottom-hud {
  display: flex;
  justify-content: center;
  margin-top: 14px;
}

.hud-pill {
  font-family: var(--font-display);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #8C8C9A;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 5px 16px;
  backdrop-filter: blur(10px);
}

.text-gold {
  color: var(--accent-gold);
}

/* ── Responsive Adaptations ──────────────────────────────────────────────── */
@media (max-width: 991.98px) {
  .hero-anatomy-stage {
    margin-top: 20px;
  }
  .hotspot-tooltip {
    width: 180px;
    padding: 8px 10px;
  }
}

/* ==========================================================================
   SOFT PREMIUM HERO UI (DEEP ELEGANCE)
   ========================================================================== */
.hero-soft-premium {
  position: relative;
  background: radial-gradient(circle at 70% 50%, #1e1d1c 0%, #11100f 60%, #090908 100%);
  color: #fff;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 80px;
}

.soft-ambient-light-1 {
  position: absolute;
  top: -10%; left: 20%;
  width: 50vw; height: 50vw;
  background: radial-gradient(circle, rgba(197, 168, 128, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
}

.soft-ambient-light-2 {
  position: absolute;
  bottom: 10%; right: 10%;
  width: 40vw; height: 40vw;
  background: radial-gradient(circle, rgba(135, 206, 235, 0.04) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
}

.soft-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.5;
  z-index: 1;
}

/* Typography & Layout */
.hero-text-content {
  padding-right: 40px;
}

.premium-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: #c5a880;
  margin-bottom: 24px;
}
.premium-badge .badge-dot {
  width: 6px; height: 6px;
  background: #c5a880;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(197, 168, 128, 0.6);
}

.premium-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.premium-italic {
  font-style: italic;
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  color: #c5a880;
}

.premium-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #9a9a9a;
  max-width: 480px;
  margin-bottom: 35px;
  font-weight: 300;
}

/* Chips */
.premium-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.soft-chip {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #a8a8a8;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  cursor: pointer;
}

.soft-chip:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.soft-chip.active {
  background: rgba(197, 168, 128, 0.15);
  border-color: rgba(197, 168, 128, 0.4);
  color: #c5a880;
}

/* Actions */
.premium-actions {
  display: inline-flex;
  gap: 16px;
  margin-bottom: 50px;
}

.btn-premium-solid {
  background: #c5a880;
  color: #111;
  padding: 14px 32px;
  border-radius: 40px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-premium-solid:hover {
  background: #d4b890;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(197, 168, 128, 0.2);
}

.btn-premium-outline {
  background: transparent;
  color: #fff;
  padding: 14px 32px;
  border-radius: 40px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border: 1px solid rgba(255,255,255,0.2);
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-premium-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.05);
}

/* Stats */
.premium-stats {
  display: flex;
  align-items: center;
  gap: 25px;
}
.stat-item {
  display: flex;
  flex-direction: column;
}
.stat-item strong {
  font-size: 1.4rem;
  font-weight: 400;
  color: #fff;
  font-family: var(--font-display);
}
.stat-item span {
  font-size: 0.65rem;
  color: #888;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.stat-divider {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.1);
}

/* Right Stage */
.premium-stage {
  position: relative;
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}

.premium-shadow-plate {
  position: absolute;
  bottom: -5%;
  left: 10%;
  right: 10%;
  height: 30px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.6) 0%, transparent 70%);
  filter: blur(15px);
  z-index: 1;
}

.premium-image-wrapper {
  position: relative;
  z-index: 2;
  /* Smooth floating animation */
  animation: softFloat 6s ease-in-out infinite;
}

@keyframes softFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.premium-cutaway-img {
  width: 100%;
  max-width: 650px;
  height: 450px;
  object-fit: contain;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
}

/* Soft Premium Hotspots */
.anatomy-hotspot {
  position: absolute;
  z-index: 15;
  width: 24px;
  height: 24px;
  transform: translate(-50%, -50%);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.soft-dot {
  width: 8px !important;
  height: 8px !important;
  background: rgba(255,255,255,0.9) !important;
  box-shadow: 0 0 10px rgba(255,255,255,0.8), 0 0 20px rgba(197,168,128,0.4) !important;
  border: none !important;
  transition: all 0.4s ease !important;
}

.soft-ring {
  width: 28px !important;
  height: 28px !important;
  border: 1px solid rgba(255,255,255,0.4) !important;
  animation: softPulse 2.5s infinite ease-out !important;
}

@keyframes softPulse {
  0% { transform: scale(0.5); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

.anatomy-hotspot:hover .soft-dot,
.anatomy-hotspot.highlighted .soft-dot {
  background: #c5a880 !important;
  transform: scale(1.5) !important;
  box-shadow: 0 0 15px #c5a880 !important;
}

.anatomy-hotspot:hover .soft-ring,
.anatomy-hotspot.highlighted .soft-ring {
  border-color: #c5a880 !important;
}

/* Premium Tooltip */
.premium-tt {
  background: rgba(20, 19, 18, 0.85) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4) !important;
  border-radius: 16px !important;
  padding: 14px 18px !important;
  width: 240px !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
}
.premium-tt::after {
  border-color: rgba(255, 255, 255, 0.08) transparent transparent transparent !important;
}

.pt-tag {
  font-family: var(--font-display);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  color: #c5a880;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}
.pt-title {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: #fff;
  display: block;
  margin-bottom: 6px;
  font-weight: 400;
}
.pt-desc {
  font-size: 0.65rem;
  color: #9a9a9a;
  line-height: 1.4;
  margin: 0;
}

/* ==========================================================================
   SOFT PREMIUM CAROUSEL
   ========================================================================== */
.premium-carousel-wrapper {
  position: relative;
  width: 100%;
  height: 600px;
  perspective: 1200px;
}

.premium-slide {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s ease-in-out, visibility 1.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.premium-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.premium-carousel-controls {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.p-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.p-dot:hover {
  background: rgba(255, 255, 255, 0.5);
}

.p-dot.active {
  background: #c5a880;
  border-color: rgba(197, 168, 128, 0.8);
  box-shadow: 0 0 10px rgba(197, 168, 128, 0.5);
  transform: scale(1.2);
}

@media (max-width: 991px) {
  .premium-carousel-wrapper {
    height: 400px;
  }
}

/* Global Visibility fixes for Automated Production Hub Text (All Views) */
.section-dark p.text-muted {
  color: #cccccc !important;
  font-size: 0.95rem !important;
  line-height: 1.6 !important;
}
.section-dark p.text-muted.small {
  font-size: 0.85rem !important;
}

/* Premium Specification Matrix */
.premium-matrix-container {
  width: 100%;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.05);
  overflow: hidden;
  font-family: var(--font-sans);
}
.matrix-header {
  grid-template-columns: 1.5fr 1fr 1.2fr 1.2fr 1fr 1fr;
  background: #f8f9fa;
  padding: 20px 30px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.mh-col {
  font-weight: 700;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.75rem;
}
.matrix-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1.2fr 1fr 1fr;
  padding: 20px 30px;
  align-items: center;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}
.matrix-row:hover {
  background: #fafafa;
  transform: translateX(5px);
}
.matrix-row:last-child {
  border-bottom: none;
}
.mr-title strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: #222;
}
.badge-gold-soft {
  background: rgba(182, 134, 99, 0.1);
  color: #b68663;
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
}
.tech-text {
  color: #555;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tech-text i {
  color: #b68663;
  font-size: 1.1rem;
}
.btn-matrix-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #000;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-matrix-action:hover {
  color: #b68663;
}
